:root {
      --ink: #07152e;
      --navy: #0a2450;
      --blue: #0d5ac4;
      --blue-bright: #2b8cff;
      --gold: #e9b83f;
      --cream: #f5f3ed;
      --white: #ffffff;
      --muted: #667185;
      --line: rgba(7, 21, 46, .12);
      --shadow: 0 24px 70px rgba(2, 15, 39, .16);
      --radius: 22px;
    }

    *, *::before, *::after { box-sizing: border-box; }
    html { scroll-behavior: smooth; scroll-padding-top: 78px; }
    body {
      margin: 0;
      background: var(--white);
      color: var(--ink);
      font-family: "Manrope", sans-serif;
      line-height: 1.65;
      overflow-x: hidden;
    }
    body.menu-open { overflow: hidden; }
    img { max-width: 100%; display: block; }
    button, input, select, textarea { font: inherit; }
    a { color: inherit; }
    section { position: relative; padding: 112px 5vw; }
    .shell { width: min(1180px, 100%); margin: 0 auto; }
    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      margin: 0 0 14px;
      color: var(--blue);
      font-size: .72rem;
      font-weight: 800;
      letter-spacing: .16em;
      text-transform: uppercase;
    }
    .eyebrow::before { content: ""; width: 30px; height: 2px; background: currentColor; }
    .display {
      margin: 0;
      font-family: "DM Serif Display", serif;
      font-size: clamp(2.45rem, 5vw, 5rem);
      font-weight: 400;
      line-height: .98;
      letter-spacing: -.035em;
    }
    .section-title {
      max-width: 760px;
      margin: 0;
      font-family: "DM Serif Display", serif;
      font-size: clamp(2.25rem, 4vw, 4rem);
      font-weight: 400;
      line-height: 1.03;
      letter-spacing: -.025em;
    }
    .lead {
      max-width: 660px;
      margin: 22px 0 0;
      color: var(--muted);
      font-size: 1.04rem;
    }
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 11px;
      min-height: 52px;
      padding: 0 24px;
      border: 1px solid transparent;
      border-radius: 999px;
      font-size: .82rem;
      font-weight: 800;
      letter-spacing: .04em;
      text-decoration: none;
      transition: transform .25s, background .25s, border-color .25s, color .25s;
    }
    .btn:hover { transform: translateY(-2px); }
    .btn-gold { background: var(--gold); color: var(--ink); }
    .btn-gold:hover { background: #ffd05c; }
    .btn-ghost { border-color: rgba(255,255,255,.35); color: var(--white); }
    .btn-ghost:hover { border-color: var(--gold); color: var(--gold); }

    /* Navigation */
    .nav {
      position: fixed;
      inset: 0 0 auto;
      z-index: 1000;
      height: 78px;
      display: flex;
      align-items: center;
      border-bottom: 1px solid rgba(255,255,255,.13);
      background: rgba(5, 18, 43, .88);
      backdrop-filter: blur(16px);
      transition: background .25s, box-shadow .25s;
    }
    .nav.scrolled { background: rgba(5, 18, 43, .97); box-shadow: 0 10px 35px rgba(0,0,0,.16); }
    .nav-inner {
      width: min(1280px, 90vw);
      margin: auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 30px;
    }
    .brand {
      display: flex;
      align-items: center;
      color: var(--white);
      text-decoration: none;
      min-width: 190px;
    }
    .brand-logo { width: 190px; height: 58px; object-fit: contain; object-position: left center; }
    .nav-links { display: flex; align-items: center; gap: 28px; margin: 0; padding: 0; list-style: none; }
    .nav-links a {
      color: rgba(255,255,255,.72);
      font-size: .75rem;
      font-weight: 700;
      text-decoration: none;
      transition: color .2s;
    }
    .nav-links a:hover, .nav-links a.active { color: var(--gold); }
    .nav-cta { min-height: 42px; padding-inline: 18px; }
    .menu-toggle {
      display: none;
      width: 44px;
      height: 44px;
      border: 1px solid rgba(255,255,255,.2);
      border-radius: 50%;
      background: transparent;
      color: white;
      cursor: pointer;
    }

    /* Hero */
    .hero {
      min-height: 100vh;
      padding: 150px 5vw 110px;
      display: flex;
      align-items: center;
      color: var(--white);
      background-image:
        linear-gradient(90deg, rgba(2,12,31,.98) 0%, rgba(2,14,35,.86) 35%, rgba(2,14,35,.2) 70%, rgba(2,14,35,.4) 100%),
        url("../img/hero-1.webp");
      background-size: cover;
      background-position: center;
    }
    .hero::after {
      content: "";
      position: absolute;
      inset: auto 0 0;
      height: 180px;
      background: linear-gradient(transparent, rgba(4,18,43,.62));
      pointer-events: none;
    }
    .hero-content { position: relative; z-index: 2; max-width: 700px; }
    .hero .eyebrow { color: var(--gold); }
    .hero-title { max-width: 680px; }
    .hero-title em { color: var(--gold); font-style: normal; }
    .hero-copy { max-width: 600px; margin: 26px 0 32px; color: rgba(255,255,255,.73); font-size: 1.07rem; }
    .hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
    .scroll-cue {
      position: absolute;
      z-index: 4;
      left: 50%;
      bottom: 24px;
      width: 42px;
      height: 42px;
      display: grid;
      place-items: center;
      border: 1px solid rgba(255,255,255,.22);
      border-radius: 50%;
      color: var(--gold);
      background: rgba(5,20,47,.62);
      text-decoration: none;
      backdrop-filter: blur(12px);
      transform: translateX(-50%);
      animation: scrollPulse 1.8s ease-in-out infinite;
    }
    @keyframes scrollPulse {
      0%, 100% { transform: translate(-50%, 0); opacity: .72; }
      50% { transform: translate(-50%, 8px); opacity: 1; }
    }
    .hero-proof {
      position: absolute;
      z-index: 3;
      right: 5vw;
      bottom: 92px;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      width: min(660px, 60vw);
      background: rgba(5,20,47,.84);
      border: 1px solid rgba(255,255,255,.17);
      border-radius: 18px;
      backdrop-filter: blur(18px);
      overflow: hidden;
    }
    .proof-item { padding: 24px 26px; border-right: 1px solid rgba(255,255,255,.12); }
    .proof-item:last-child { border-right: 0; }
    .proof-value { display: block; color: var(--gold); font-family: "DM Serif Display", serif; font-size: 2rem; line-height: 1; }
    .proof-label { display: block; margin-top: 8px; color: rgba(255,255,255,.58); font-size: .66rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }

    /* Services */
    .services { background: linear-gradient(180deg, var(--ink) 0%, var(--navy) 100%); color: var(--white); overflow: hidden; }
    .services-heading { display: grid; grid-template-columns: .8fr 1.2fr; gap: 60px; align-items: end; margin-bottom: 54px; }
    .services-heading .lead { margin: 0; justify-self: end; }
    .services .eyebrow { color: var(--gold); }
    .services .section-title { color: var(--white); }
    .services .lead { color: rgba(255,255,255,.68); }
    .service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
    .service-card {
      position: relative;
      min-height: 400px;
      padding: 0;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      background: var(--ink);
      border: 1px solid rgba(255,255,255,.12);
      border-radius: 26px;
      overflow: hidden;
      color: var(--white);
      box-shadow: 0 18px 48px rgba(2, 15, 39, .14);
      transition: transform .45s ease, box-shadow .45s ease, border-color .45s ease;
    }
    .service-card:hover { transform: translateY(-10px); box-shadow: 0 26px 70px rgba(2, 15, 39, .28), 0 0 42px rgba(13,90,196,.26); border-color: rgba(233,184,63,.34); }
    .service-card img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: .48;
      transform: scale(1.01);
      transition: transform .75s ease, opacity .45s ease, filter .45s ease;
    }
    .service-card:hover img { transform: scale(1.12); opacity: .62; filter: saturate(1.08) contrast(1.06); }
    .service-card::before {
      content: "";
      position: absolute;
      inset: 0;
      z-index: 1;
      background:
        linear-gradient(180deg, rgba(7,21,46,.08) 0%, rgba(7,21,46,.42) 42%, rgba(7,21,46,.95) 100%),
        radial-gradient(circle at 50% 0%, rgba(233,184,63,.18), transparent 44%);
      transition: opacity .45s ease;
    }
    .service-card:hover::before { opacity: .95; }
    .service-card-content {
      position: relative;
      z-index: 2;
      width: 100%;
      padding: 30px;
    }
    .service-icon {
      width: 52px;
      height: 52px;
      display: grid;
      place-items: center;
      margin-bottom: 76px;
      border: 1px solid rgba(255,255,255,.24);
      border-radius: 15px;
      background: rgba(255,255,255,.08);
      color: var(--gold);
      font-size: 1.2rem;
      backdrop-filter: blur(12px);
      transition: color .3s, border-color .3s, background .3s, transform .3s;
    }
    .service-card:hover .service-icon { background: var(--gold); border-color: var(--gold); color: var(--ink); transform: translateY(-5px); }
    .service-num { position: absolute; z-index: 2; top: 24px; right: 26px; color: rgba(255,255,255,.18); font-family: "DM Serif Display", serif; font-size: 3rem; line-height: 1; }
    .service-card:hover .service-num { color: rgba(233,184,63,.38); }
    .service-card h3 { margin: 0 0 10px; font-size: 1.1rem; line-height: 1.25; color: var(--white); }
    .service-card p { margin: 0; color: rgba(255,255,255,.68); font-size: .84rem; }
    .service-card:hover p { color: rgba(255,255,255,.84); }

    /* Precision */
    .precision { padding: 0; background: var(--ink); color: var(--white); }
    .precision-grid { display: grid; grid-template-columns: 1fr 1fr; min-height: 720px; }
    .precision-image { position: relative; overflow: hidden; }
    .precision-image img { width: 100%; height: 100%; object-fit: cover; }
    .precision-image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, transparent 45%, rgba(7,21,46,.88)); }
    .precision-copy { padding: 100px clamp(35px, 7vw, 110px); display: flex; flex-direction: column; justify-content: center; }
    .precision .eyebrow { color: var(--gold); }
    .precision .section-title { color: var(--white); }
    .precision .lead { color: rgba(255,255,255,.62); }
    .promise-list { margin: 36px 0 0; padding: 0; list-style: none; }
    .promise-list li { display: grid; grid-template-columns: 42px 1fr; gap: 15px; padding: 17px 0; border-top: 1px solid rgba(255,255,255,.1); }
    .promise-list i { color: var(--gold); margin-top: 5px; }
    .promise-list strong { display: block; margin-bottom: 3px; font-size: .9rem; }
    .promise-list span { color: rgba(255,255,255,.5); font-size: .78rem; }
    .diff-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 34px; }
    .diff-card-dark { padding: 18px; border: 1px solid rgba(255,255,255,.12); border-radius: 15px; background: rgba(255,255,255,.045); }
    .diff-card-dark i { color: var(--gold); margin-bottom: 13px; }
    .diff-card-dark strong { display: block; margin-bottom: 5px; font-size: .88rem; }
    .diff-card-dark span { display: block; color: rgba(255,255,255,.54); font-size: .74rem; line-height: 1.55; }

    /* Infrastructure */
    .infrastructure { background: var(--white); }
    .infrastructure .lead { line-height: 1.45; }
    .infra-head { display: flex; justify-content: space-between; gap: 50px; align-items: end; margin-bottom: 56px; }
    .metric-row { display: grid; grid-template-columns: repeat(4, minmax(112px, 1fr)); gap: 12px; min-width: min(520px, 100%); }
    .metric {
      padding: 18px 16px;
      border: 1px solid var(--line);
      border-radius: 18px;
      background: var(--cream);
      box-shadow: 0 10px 28px rgba(7,21,46,.06);
    }
    .metric strong { display: block; color: var(--blue); font-family: "DM Serif Display", serif; font-size: 2.35rem; line-height: .95; }
    .metric span { display: block; margin-top: 8px; color: var(--muted); font-size: .62rem; font-weight: 800; letter-spacing: .07em; line-height: 1.25; text-transform: uppercase; }
    .infra-collage { display: grid; grid-template-columns: 1.2fr .8fr; grid-template-rows: 285px 285px; gap: 16px; }
    .infra-photo { position: relative; border-radius: var(--radius); overflow: hidden; }
    .infra-photo:first-child { grid-row: 1 / 3; }
    .infra-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s; }
    .infra-photo:hover img { transform: scale(1.035); }
    .photo-label {
      position: absolute;
      left: 20px;
      bottom: 20px;
      padding: 9px 13px;
      border: 1px solid rgba(255,255,255,.2);
      border-radius: 999px;
      background: rgba(5,18,43,.72);
      color: white;
      font-size: .68rem;
      font-weight: 800;
      backdrop-filter: blur(10px);
    }
    .infra-detail-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 34px; margin-top: 42px; }
    .infra-list, .warehouse-list { margin: 0; padding: 0; list-style: none; }
    .infra-list li, .warehouse-list li { display: flex; gap: 11px; padding: 9px 0; border-bottom: 1px solid var(--line); color: var(--muted); font-size: .82rem; line-height: 1.35; }
    .infra-list li::before, .warehouse-list li::before { content: "\f00c"; color: var(--blue); font-family: "Font Awesome 6 Free"; font-weight: 900; }
    .warehouse-panel { padding: 28px; border-radius: 20px; background: var(--cream); }
    .warehouse-panel h3 { margin: 0 0 8px; font-family: "DM Serif Display", serif; font-size: 1.7rem; font-weight: 400; }
    .warehouse-panel p { margin: 0 0 12px; color: var(--muted); font-size: .82rem; line-height: 1.4; }

    /* Coverage */
    .coverage { min-height: 760px; display: flex; align-items: center; color: var(--white); overflow: hidden; background: var(--ink); }
    .coverage-bg { position: absolute; inset: 0; }
    .coverage-bg img { width: 100%; height: 100%; object-fit: cover; }
    .coverage-bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(3,15,38,.99) 0%, rgba(3,15,38,.91) 42%, rgba(3,15,38,.2) 82%); }
    .coverage-content { position: relative; z-index: 2; width: min(630px, 55%); }
    .coverage .eyebrow { color: var(--gold); }
    .coverage .lead { color: rgba(255,255,255,.65); }
    .location-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 34px; }
    .location {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      padding: 16px;
      border: 1px solid rgba(255,255,255,.13);
      border-radius: 14px;
      background: rgba(7,27,61,.68);
      backdrop-filter: blur(12px);
    }
    .location i { margin-top: 5px; color: var(--gold); }
    .location strong { display: block; font-size: .82rem; }
    .location span { color: rgba(255,255,255,.48); font-size: .69rem; }
    .coverage-note { margin-top: 14px; padding: 16px; border-left: 3px solid var(--gold); background: rgba(7,27,61,.76); color: rgba(255,255,255,.64); font-size: .76rem; }
    .coverage-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 16px; }
    .coverage-actions a { padding: 10px 14px; border: 1px solid rgba(255,255,255,.17); border-radius: 999px; color: white; font-size: .7rem; font-weight: 800; text-decoration: none; }

    /* Gallery */
    .gallery { background: var(--cream); }
    .gallery-head { display: flex; justify-content: space-between; gap: 40px; align-items: end; margin-bottom: 48px; }
    .gallery-head .lead { margin: 0; max-width: 430px; }
    .gallery-grid { display: grid; grid-template-columns: 1.25fr .75fr .75fr; grid-template-rows: 260px 260px; gap: 12px; }
    .gallery-item { position: relative; border: 0; padding: 0; border-radius: 18px; overflow: hidden; cursor: pointer; background: var(--navy); }
    .gallery-item:first-child { grid-row: 1 / 3; }
    .gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s, opacity .4s; }
    .gallery-item:hover img { transform: scale(1.045); opacity: .78; }
    .gallery-item::after {
      content: "\f00e";
      position: absolute;
      right: 18px;
      bottom: 18px;
      width: 42px;
      height: 42px;
      display: grid;
      place-items: center;
      border-radius: 50%;
      background: var(--gold);
      color: var(--ink);
      font-family: "Font Awesome 6 Free";
      font-weight: 900;
      transform: translateY(12px);
      opacity: 0;
      transition: .3s;
    }
    .gallery-item:hover::after { transform: none; opacity: 1; }
    .gallery-more { margin-top: 22px; display: flex; justify-content: flex-end; }
    .gallery-more button { border: 0; background: transparent; color: var(--blue); font-size: .78rem; font-weight: 800; cursor: pointer; }
    .gallery-item.extra { display: none; }
    .gallery-grid.expanded { grid-template-rows: repeat(4, 260px); }
    .gallery-grid.expanded .gallery-item.extra { display: block; }

    /* Clients and reasons */
    .clients { background: var(--white); overflow: hidden; }
    .client-track { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 42px; }
    .client-slot {
      min-height: 120px;
      display: grid;
      place-items: center;
      padding: 18px 22px;
      border: 1px solid var(--line);
      border-radius: 18px;
      background: var(--white);
      box-shadow: 0 10px 28px rgba(7,21,46,.06);
      transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
    }
    .client-slot:hover {
      transform: translateY(-4px);
      border-color: rgba(13,90,196,.22);
      box-shadow: 0 18px 44px rgba(7,21,46,.1);
    }
    .client-slot img {
      max-width: 100%;
      max-height: 70px;
      object-fit: contain;
      filter: saturate(.92);
      transition: filter .25s ease, transform .25s ease;
    }
    .client-slot:hover img { filter: saturate(1.05); transform: scale(1.03); }
    .reasons { background: var(--cream); }
    .reason-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 44px; }
    .reason-card { padding: 30px; border: 1px solid var(--line); border-radius: var(--radius); background: white; }
    .reason-card i { width: 50px; height: 50px; display: grid; place-items: center; margin-bottom: 28px; border-radius: 14px; background: var(--navy); color: var(--gold); }
    .reason-card h3 { margin: 0 0 10px; font-size: 1rem; }
    .reason-card p { margin: 0; color: var(--muted); font-size: .82rem; }
    .contact-quote { margin-top: 28px; padding: 22px; border: 1px solid rgba(233,184,63,.24); border-radius: 16px; background: rgba(233,184,63,.08); color: rgba(255,255,255,.75); font-size: .82rem; font-style: italic; }
    .contact-quote small { display: block; margin-top: 10px; color: rgba(255,255,255,.45); font-style: normal; }

    /* Contact */
    .contact { background: var(--ink); color: var(--white); overflow: hidden; }
    .contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 80px; align-items: start; }
    .contact .eyebrow { color: var(--gold); }
    .contact .lead { color: rgba(255,255,255,.57); }
    .contact-details { display: grid; gap: 13px; margin-top: 38px; }
    .contact-link {
      display: flex;
      align-items: center;
      gap: 14px;
      padding: 16px 0;
      border-top: 1px solid rgba(255,255,255,.1);
      color: rgba(255,255,255,.7);
      text-decoration: none;
      font-size: .82rem;
    }
    .contact-link i { width: 30px; color: var(--gold); text-align: center; }
    .contact-link strong { display: block; color: white; font-size: .68rem; letter-spacing: .08em; text-transform: uppercase; }
    .quote-card { padding: 38px; border: 1px solid rgba(255,255,255,.14); border-radius: 24px; background: rgba(255,255,255,.05); }
    .quote-card h3 { margin: 0 0 22px; font-family: "DM Serif Display", serif; font-size: 2rem; font-weight: 400; }
    .form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
    .form-honey { display: none; }
    .field { display: grid; gap: 7px; }
    .field.full { grid-column: 1 / -1; }
    .field label { color: rgba(255,255,255,.52); font-size: .65rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
    .field input, .field select, .field textarea {
      width: 100%;
      min-height: 50px;
      padding: 12px 14px;
      border: 1px solid rgba(255,255,255,.15);
      border-radius: 11px;
      background: rgba(255,255,255,.07);
      color: white;
      outline: none;
    }
    .field textarea { min-height: 105px; resize: vertical; }
    .field input:focus, .field select:focus, .field textarea:focus { border-color: var(--gold); }
    .field input::placeholder, .field textarea::placeholder { color: rgba(255,255,255,.3); }
    .field option { background: var(--ink); }
    .form-submit { width: 100%; margin-top: 18px; border: 0; cursor: pointer; }
    .form-note { min-height: 22px; margin: 10px 0 0; color: var(--gold); font-size: .72rem; text-align: center; }
    .form-note.success, .form-note.error { padding: 12px 14px; border-radius: 12px; font-weight: 800; }
    .form-note.success { color: #d7f8e4; background: rgba(34, 197, 94, .14); border: 1px solid rgba(34, 197, 94, .28); }
    .form-note.error { color: #ffe1e1; background: rgba(239, 68, 68, .14); border: 1px solid rgba(239, 68, 68, .28); }
    .privacy-note { margin: 14px 0 0; color: rgba(255,255,255,.45); font-size: .7rem; text-align: center; }
    .privacy-note a,
    .footer-privacy { color: var(--gold); font-weight: 800; text-decoration: none; }
    .privacy-note a:hover,
    .footer-privacy:hover { text-decoration: underline; }

    /* Footer and floating contact */
    footer { padding: 35px 5vw; background: #040d1e; color: rgba(255,255,255,.4); }
    .footer-inner { width: min(1180px, 100%); margin: auto; display: flex; align-items: center; justify-content: space-between; gap: 24px; font-size: .7rem; }
    .footer-logo { width: 180px; height: 58px; object-fit: contain; object-position: left center; }
    .wa-fab { position: fixed; right: 22px; bottom: 22px; z-index: 950; display: grid; justify-items: end; gap: 9px; }
    .wa-menu { display: grid; gap: 8px; transform: translateY(10px); opacity: 0; visibility: hidden; transition: .25s; }
    .wa-menu.open { transform: none; opacity: 1; visibility: visible; }
    .wa-option { padding: 10px 15px; border-radius: 999px; background: white; color: var(--ink); box-shadow: 0 8px 30px rgba(0,0,0,.18); font-size: .74rem; font-weight: 800; text-decoration: none; }
    .wa-toggle { width: 55px; height: 55px; border: 0; border-radius: 50%; background: #25d366; color: white; box-shadow: 0 12px 32px rgba(37,211,102,.3); font-size: 1.35rem; cursor: pointer; }

    /* Lightbox and reveals */
    .lightbox { position: fixed; inset: 0; z-index: 3000; display: none; place-items: center; padding: 30px; background: rgba(1,7,18,.94); }
    .lightbox.open { display: grid; }
    .lightbox img { max-width: min(1100px, 88vw); max-height: 82vh; border-radius: 14px; object-fit: contain; }
    .lightbox button { position: absolute; border: 0; color: white; background: rgba(255,255,255,.1); cursor: pointer; }
    .lb-close { top: 24px; right: 24px; width: 44px; height: 44px; border-radius: 50%; }
    .lb-prev, .lb-next { top: 50%; width: 48px; height: 48px; border-radius: 50%; transform: translateY(-50%); }
    .lb-prev { left: 24px; }
    .lb-next { right: 24px; }
    .lb-caption { position: absolute; bottom: 22px; color: rgba(255,255,255,.68); font-size: .76rem; }
    .reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
    .reveal.visible { opacity: 1; transform: none; }

    @media (max-width: 980px) {
      section { padding: 90px 5vw; }
      .nav-links {
        position: fixed;
        inset: 78px 0 0;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        padding: 25px 5vw;
        background: var(--ink);
        transform: translateX(100%);
        transition: transform .3s;
      }
      .nav-links.open { transform: none; }
      .nav-links li { width: 100%; border-bottom: 1px solid rgba(255,255,255,.1); }
      .nav-links a { display: block; padding: 18px 0; font-size: .9rem; }
      .nav .nav-cta { display: none; }
      .menu-toggle { display: block; }
      .hero { min-height: 100vh; background-position: 58% center; }
      .hero-proof { left: 5vw; right: 5vw; width: auto; }
      .services-heading, .precision-grid, .contact-grid { grid-template-columns: 1fr; }
      .services-heading .lead { justify-self: start; }
      .service-grid { grid-template-columns: 1fr 1fr; }
      .precision-image { min-height: 520px; }
      .precision-image::after { background: linear-gradient(transparent 55%, var(--ink)); }
      .precision-copy { padding-top: 20px; }
      .infra-head { align-items: flex-start; flex-direction: column; }
      .infra-detail-grid { grid-template-columns: 1fr; }
      .coverage-content { width: min(700px, 78%); }
      .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 320px 220px 220px; }
      .gallery-item:first-child { grid-column: 1 / 3; grid-row: auto; }
      .gallery-grid.expanded { grid-template-rows: 320px repeat(4, 220px); }
    }

    @media (max-width: 660px) {
      .display { font-size: clamp(2.65rem, 13vw, 4rem); }
      .section-title { font-size: clamp(2.2rem, 11vw, 3.1rem); }
      .brand { min-width: 165px; }
      .brand-logo { width: 165px; height: 52px; }
      .hero { min-height: 1040px; padding-top: 118px; padding-bottom: 260px; align-items: flex-start; background-position: 66% center; }
      .hero::before { content: ""; position: absolute; inset: 0; background: rgba(2,12,31,.25); }
      .hero-copy { font-size: .93rem; }
      .hero-actions { display: grid; gap: 12px; margin-bottom: 34px; }
      .hero-proof { bottom: 86px; grid-template-columns: 1fr; }
      .proof-item { display: flex; flex-direction: column; align-items: flex-start; gap: 5px; padding: 13px 18px; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.1); }
      .proof-item:last-child { border-bottom: 0; }
      .proof-value { min-width: 0; font-size: 1.55rem; }
      .proof-label { margin: 0; }
      .service-grid { grid-template-columns: 1fr; }
      .service-card { min-height: 360px; }
      .precision-image { min-height: 420px; }
      .precision-copy { padding: 55px 5vw 80px; }
      .metric-row { display: grid; grid-template-columns: 1fr 1fr; width: 100%; min-width: 0; }
      .scroll-cue { bottom: 28px; }
      .infra-collage { grid-template-columns: 1fr; grid-template-rows: 360px 230px 230px; }
      .infra-photo:first-child { grid-row: auto; }
      .coverage { min-height: 900px; align-items: flex-end; }
      .coverage-bg::after { background: linear-gradient(0deg, rgba(3,15,38,.99) 15%, rgba(3,15,38,.55) 100%); }
      .coverage-content { width: 100%; }
      .location-grid, .form-grid { grid-template-columns: 1fr; }
      .field.full { grid-column: auto; }
      .gallery-head { align-items: flex-start; flex-direction: column; }
      .gallery-grid { grid-template-columns: 1fr; grid-template-rows: repeat(5, 260px); }
      .gallery-item:first-child { grid-column: auto; }
      .gallery-grid.expanded { grid-template-rows: repeat(10, 260px); }
      .client-track, .reason-grid { grid-template-columns: 1fr 1fr; }
      .footer-inner { align-items: flex-start; flex-direction: column; }
      .quote-card { padding: 25px 20px; }
      .lb-prev { left: 8px; }
      .lb-next { right: 8px; }
    }
    @media (max-width: 480px) {
      .diff-cards, .client-track, .reason-grid { grid-template-columns: 1fr; }
    }

    @media (prefers-reduced-motion: reduce) {
      html { scroll-behavior: auto; }
      *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
      .reveal { opacity: 1; transform: none; }
    }
