@import url("https://fonts.googleapis.com/css2?family=Roboto+Slab:wght@400;600;700&family=Roboto:wght@400;500;700&display=swap");

:root {
      --charcoal: #1c1c1e;
      --teal: #0d9488;
      --white: #ffffff;
      --light-gray: #f5f5f5;
      --medium-gray: #e8e8e8;
      --text-dark: #2c2c2e;
      --text-light: #666666;
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    html, body {
      font-family: 'Roboto', system-ui, -apple-system, sans-serif;
      color: var(--text-dark);
      line-height: 1.6;
      background-color: var(--white);
    }

    img {
      max-width: 100%;
      height: auto;
      display: block;
    }

    /* Typography */
    h1, h2, h3, h4, h5, h6 {
      font-family: 'Roboto Slab', serif;
      font-weight: 700;
      line-height: 1.2;
      margin-bottom: 0.5rem;
    }

    h1 {
      font-size: 3.5rem;
      letter-spacing: -0.02em;
    }

    h2 {
      font-size: 2.5rem;
      letter-spacing: -0.01em;
    }

    h3 {
      font-size: 1.5rem;
    }

    p {
      font-size: 1rem;
      margin-bottom: 1.5rem;
      color: var(--text-light);
    }

    a {
      color: var(--teal);
      text-decoration: none;
      transition: color 0.3s ease;
    }

    a:hover {
      color: var(--charcoal);
    }

    /* Header & Navigation */
    header {
      background-color: var(--white);
      border-bottom: 1px solid var(--medium-gray);
      padding: 1.5rem 2rem;
      position: sticky;
      top: 0;
      z-index: 100;
    }

    .header-container {
      max-width: 1400px;
      margin: 0 auto;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .logo {
      font-family: 'Roboto Slab', serif;
      font-size: 1.5rem;
      font-weight: 700;
      color: var(--charcoal);
    }

    .logo-tagline {
      font-size: 0.75rem;
      color: var(--text-light);
      font-family: 'Roboto', system-ui, sans-serif;
      font-weight: 400;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      margin-top: 0.25rem;
    }

    nav a {
      margin-left: 2.5rem;
      font-size: 0.95rem;
      font-weight: 500;
      color: var(--text-dark);
      position: relative;
    }

    nav a.active {
      color: var(--teal);
      font-weight: 600;
    }

    nav a:hover {
      color: var(--teal);
    }

    /* Main Content */
    main {
      max-width: 1400px;
      margin: 0 auto;
    }

    section {
      padding: 5rem 2rem;
    }

    .section-heading {
      margin-bottom: 0.75rem;
    }

    .section-subheading {
      font-size: 1.25rem;
      color: var(--text-light);
      margin-bottom: 3rem;
      font-weight: 400;
    }

    /* Hero Split Section */
    .hero-split {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: center;
      padding: 6rem 2rem;
    }

    .hero-text h1 {
      color: var(--charcoal);
      margin-bottom: 1rem;
    }

    .hero-text p {
      font-size: 1.1rem;
      color: var(--text-light);
      margin-bottom: 2rem;
    }

    .hero-text-accent {
      color: var(--teal);
      font-weight: 600;
    }

    .hero-image {
      position: relative;
      height: 500px;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    }

    .hero-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    /* Services Grid */
    .services-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 3rem;
      margin-top: 3rem;
    }

    .service-item {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 3rem;
      align-items: center;
    }

    .service-item:nth-child(even) {
      direction: rtl;
    }

    .service-item:nth-child(even) > * {
      direction: ltr;
    }

    .service-content h3 {
      color: var(--charcoal);
      margin-bottom: 1rem;
    }

    .service-content p {
      color: var(--text-light);
      margin-bottom: 1.5rem;
    }

    .service-image {
      height: 300px;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    }

    .service-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    /* Process Section */
    .process-steps {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 3rem;
      margin-top: 3rem;
    }

    .process-step {
      padding: 2rem;
      background-color: var(--light-gray);
      border-radius: 8px;
      border-left: 4px solid var(--teal);
    }

    .process-step h3 {
      color: var(--charcoal);
      margin-bottom: 0.75rem;
    }

    .process-step p {
      color: var(--text-light);
      font-size: 0.95rem;
    }

    /* Coverage Section */
    .coverage-content {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 3rem;
      align-items: center;
    }

    .coverage-text h3 {
      color: var(--charcoal);
      margin-bottom: 1rem;
    }

    .coverage-image {
      height: 350px;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    }

    .coverage-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    /* Visual Consistency Section */
    .consistency-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 3rem;
      align-items: center;
      margin-top: 3rem;
    }

    .consistency-image {
      height: 350px;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    }

    .consistency-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .consistency-text h3 {
      color: var(--charcoal);
      margin-bottom: 1rem;
    }

    /* CTA Footer Section */
    .cta-section {
      background-color: var(--teal);
      color: var(--white);
      text-align: center;
      padding: 6rem 2rem;
      border-radius: 0;
      margin: 5rem 0 0 0;
    }

    .cta-section h2 {
      color: var(--white);
      margin-bottom: 1rem;
    }

    .cta-section p {
      color: rgba(255, 255, 255, 0.9);
      font-size: 1.1rem;
      margin-bottom: 2.5rem;
    }

    .cta-button {
      display: inline-block;
      background-color: var(--charcoal);
      color: var(--white);
      padding: 1rem 2.5rem;
      border-radius: 6px;
      font-weight: 600;
      font-size: 1rem;
      transition: background-color 0.3s ease;
    }

    .cta-button:hover {
      background-color: var(--white);
      color: var(--teal);
    }

    /* Footer */
    footer {
      background-color: var(--charcoal);
      color: var(--white);
      margin-top: 0;
    }

    .footer-top {
      max-width: 1400px;
      margin: 0 auto;
      padding: 3rem 2rem;
      display: grid;
      grid-template-columns: 1fr 1fr 1fr 1fr;
      gap: 2rem;
    }

    .footer-column h4 {
      font-family: 'Roboto Slab', serif;
      font-size: 1rem;
      margin-bottom: 1rem;
      color: var(--white);
    }

    .footer-column a {
      display: block;
      margin-bottom: 0.75rem;
      color: rgba(255, 255, 255, 0.7);
      font-size: 0.9rem;
    }

    .footer-column a:hover {
      color: var(--teal);
    }

    .footer-column p {
      color: rgba(255, 255, 255, 0.7);
      font-size: 0.9rem;
      margin-bottom: 0.75rem;
    }

    .footer-bottom {
      background-color: #0f0f11;
      padding: 1.5rem 2rem;
      text-align: center;
      font-size: 0.85rem;
      color: rgba(255, 255, 255, 0.6);
      border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    /* Responsive */
    @media (max-width: 768px) {
      h1 {
        font-size: 2.5rem;
      }

      h2 {
        font-size: 1.75rem;
      }

      .hero-split {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 3rem 2rem;
      }

      .hero-image {
        height: 350px;
      }

      .service-item {
        grid-template-columns: 1fr;
        gap: 2rem;
      }

      .service-item:nth-child(even) {
        direction: ltr;
      }

      .service-image {
        height: 250px;
      }

      .process-steps {
        grid-template-columns: 1fr;
        gap: 2rem;
      }

      .coverage-content {
        grid-template-columns: 1fr;
        gap: 2rem;
      }

      .coverage-image {
        height: 250px;
      }

      .consistency-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
      }

      .consistency-image {
        height: 250px;
      }

      nav a {
        margin-left: 1.5rem;
        font-size: 0.85rem;
      }

      .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
      }

      section {
        padding: 3rem 2rem;
      }

      .cta-section {
        padding: 4rem 2rem;
      }
    }

    @media (max-width: 480px) {
      h1 {
        font-size: 2rem;
      }

      h2 {
        font-size: 1.5rem;
      }

      .header-container {
        flex-direction: column;
        gap: 1rem;
      }

      nav a {
        margin-left: 1rem;
        font-size: 0.8rem;
      }

      .hero-text h1 {
        font-size: 2rem;
      }

      .footer-top {
        grid-template-columns: 1fr;
        gap: 1.5rem;
      }
    }
/* ── image safety ── */
img { max-width: 100%; height: auto; display: block; }
img[style*='width:'] { max-width: 100%; }
