/* ============================================================
       GENESIS LAWN CARE — Stylesheet
       Design system: deep forest + warm gold, organic serif + clean sans,
       generous whitespace, photographic hero, conversion-first.
       ============================================================ */

    *, *::before, *::after { box-sizing: border-box; }

    :root {
      /* Color */
      --forest-950: #07180e;
      --forest-900: #0d2818;
      --forest-800: #1a3a2a;
      --forest-700: #2d5a3d;
      --forest-600: #3f7551;
      --forest-500: #5a9070;
      --sage-400:   #8eb39b;
      --moss-300:   #b8d4be;
      --cream:      #f9f7f3;
      --sand:       #ede7da;
      --paper:      #fdfbf7;
      --gold-700:   #9c7a2e;
      --gold-600:   #b8923a;
      --gold-500:   #d4a648;
      --gold-400:   #e3bc6a;
      --charcoal:   #1c211e;
      --slate:      #4b524d;
      --mute:       #7c8480;

      /* Type */
      --display: 'Fraunces', 'Cormorant Garamond', Georgia, serif;
      --sans:    'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;

      /* Layout */
      --maxw:        1240px;
      --gutter:      clamp(1.25rem, 4vw, 2.5rem);
      --radius-sm:   8px;
      --radius:      14px;
      --radius-lg:   22px;
      --shadow-sm:   0 2px 8px rgba(13, 40, 24, 0.06);
      --shadow:      0 12px 32px rgba(13, 40, 24, 0.12);
      --shadow-lg:   0 24px 60px rgba(13, 40, 24, 0.18);

      /* Motion */
      --ease:        cubic-bezier(0.22, 1, 0.36, 1);
    }

    html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
    @media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

    body {
      margin: 0;
      font-family: var(--sans);
      font-size: 17px;
      line-height: 1.65;
      color: var(--charcoal);
      background: var(--paper);
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      text-rendering: optimizeLegibility;
    }

    img { max-width: 100%; height: auto; display: block; }

    a { color: var(--forest-700); text-decoration: none; transition: color .2s var(--ease); }
    a:hover { color: var(--gold-600); }

    h1, h2, h3, h4 {
      font-family: var(--display);
      font-weight: 600;
      color: var(--forest-900);
      letter-spacing: -0.015em;
      margin: 0 0 .6em;
      line-height: 1.1;
    }
    h1 { font-size: clamp(2.4rem, 5.6vw, 4.4rem); font-weight: 500; }
    h2 { font-size: clamp(1.9rem, 3.6vw, 2.9rem); }
    h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); }
    p  { margin: 0 0 1em; }

    .container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter); }

    /* Common section pattern */
    section { padding: clamp(4rem, 9vw, 7rem) 0; }
    .eyebrow {
      display: inline-flex; align-items: center; gap: .5rem;
      font-family: var(--sans);
      font-size: .78rem;
      letter-spacing: .18em;
      text-transform: uppercase;
      font-weight: 600;
      color: var(--gold-600);
      margin-bottom: 1rem;
    }
    .eyebrow::before { content:""; display:block; width: 28px; height: 1px; background: var(--gold-500); }

    .section-head { max-width: 720px; margin-bottom: clamp(2rem, 4vw, 3.5rem); }
    .section-head p { color: var(--slate); font-size: 1.08rem; }

    /* Buttons */
    .btn {
      display: inline-flex; align-items: center; gap: .55rem;
      padding: .95rem 1.6rem;
      font-family: var(--sans);
      font-size: .96rem;
      font-weight: 600;
      letter-spacing: .01em;
      border-radius: 999px;
      border: 1.5px solid transparent;
      cursor: pointer;
      transition: transform .2s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease), color .25s var(--ease);
      text-decoration: none;
      white-space: nowrap;
    }
    .btn-primary {
      background: var(--gold-500);
      color: var(--forest-950);
      box-shadow: 0 8px 20px rgba(212, 166, 72, 0.32);
    }
    .btn-primary:hover { background: var(--gold-400); transform: translateY(-2px); color: var(--forest-950); }
    .btn-ghost {
      background: transparent;
      color: var(--cream);
      border-color: rgba(255,255,255,.4);
    }
    .btn-ghost:hover { background: rgba(255,255,255,.08); color: #fff; }
    .btn-dark {
      background: var(--forest-800);
      color: var(--cream);
    }
    .btn-dark:hover { background: var(--forest-900); color: var(--cream); transform: translateY(-2px); }
    .btn .arrow { transition: transform .2s var(--ease); }
    .btn:hover .arrow { transform: translateX(4px); }

    /* ----------------- NAV ----------------- */
    .nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 50;
      transition: background .35s var(--ease), box-shadow .35s var(--ease), padding .35s var(--ease), backdrop-filter .35s var(--ease);
      padding: 1.4rem 0;
    }
    .nav.scrolled {
      background: rgba(253, 251, 247, 0.92);
      backdrop-filter: saturate(160%) blur(14px);
      -webkit-backdrop-filter: saturate(160%) blur(14px);
      box-shadow: 0 1px 0 rgba(13, 40, 24, .06), 0 12px 28px rgba(13, 40, 24, .05);
      padding: 0.9rem 0;
    }
    .nav .container { display: flex; align-items: center; justify-content: space-between; gap: 2rem; }

    .brand {
      display: flex; align-items: center; gap: .65rem;
      color: var(--cream);
      font-family: var(--display);
      font-weight: 600;
      font-size: 1.4rem;
      letter-spacing: -0.01em;
      transition: color .3s var(--ease);
    }
    .nav.scrolled .brand { color: var(--forest-900); }
    .brand-mark {
      width: 36px; height: 36px;
      display: grid; place-items: center;
      background: var(--gold-500);
      border-radius: 50%;
      color: var(--forest-950);
      box-shadow: 0 4px 14px rgba(212, 166, 72, 0.4);
    }
    .brand-mark svg { width: 22px; height: 22px; }
    .brand small { display:block; font-family: var(--sans); font-size: .7rem; letter-spacing: .14em; font-weight: 500; text-transform: uppercase; opacity: .75; margin-top: 2px; }

    .nav-links {
      display: flex; align-items: center; gap: 2rem;
      list-style: none; margin: 0; padding: 0;
    }
    .nav-links a {
      color: var(--cream);
      font-weight: 500;
      font-size: .95rem;
      position: relative;
    }
    .nav-links a::after {
      content: ""; position: absolute; left: 0; right: 0; bottom: -6px;
      height: 2px; background: var(--gold-500);
      transform: scaleX(0); transform-origin: left;
      transition: transform .25s var(--ease);
    }
    .nav-links a:hover::after { transform: scaleX(1); }
    .nav.scrolled .nav-links a { color: var(--forest-800); }
    .nav.scrolled .nav-links a:hover { color: var(--forest-700); }

    .nav-cta { display: flex; gap: .75rem; align-items: center; }
    .phone-link {
      display: inline-flex; align-items: center; gap: .5rem;
      color: var(--cream); font-weight: 600; font-size: .95rem;
    }
    .nav.scrolled .phone-link { color: var(--forest-800); }
    .phone-link svg { width: 18px; height: 18px; }

    .menu-toggle {
      display: none;
      width: 44px; height: 44px;
      background: transparent;
      border: 1.5px solid rgba(255,255,255,.35);
      border-radius: 50%;
      align-items: center; justify-content: center;
      cursor: pointer;
    }
    .nav.scrolled .menu-toggle { border-color: var(--forest-800); }
    .menu-toggle svg { width: 20px; height: 20px; stroke: var(--cream); }
    .nav.scrolled .menu-toggle svg { stroke: var(--forest-800); }

    /* ----------------- HERO ----------------- */
    .hero {
      position: relative;
      min-height: 100vh;
      min-height: 100svh;
      padding: 9rem 0 5rem;
      color: var(--cream);
      isolation: isolate;
      overflow: hidden;
      display: flex; align-items: center;
    }
    .hero::before {
      content: "";
      position: absolute; inset: 0; z-index: -2;
      background: url('images/hero_lawn.webp') center / cover no-repeat;
      transform: scale(1.05);
    }
    .hero::after {
      content: "";
      position: absolute; inset: 0; z-index: -1;
      background:
        linear-gradient(180deg, rgba(7, 24, 14, 0.55) 0%, rgba(7, 24, 14, 0.35) 35%, rgba(7, 24, 14, 0.78) 100%),
        linear-gradient(120deg, rgba(13, 40, 24, 0.65) 0%, rgba(7, 24, 14, 0.15) 60%);
    }
    .hero-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 4rem; align-items: end; }
    .hero h1 { color: #fff; max-width: 18ch; }
    .hero h1 em { font-style: italic; font-weight: 500; color: var(--gold-400); }
    .hero .lead {
      font-size: clamp(1.05rem, 1.4vw, 1.22rem);
      color: rgba(249, 247, 243, 0.86);
      max-width: 52ch;
      margin-top: 1.6rem;
      margin-bottom: 2.4rem;
    }
    .hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; }
    .hero-meta {
      display: grid; grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem;
      padding: 1.6rem 1.8rem;
      background: rgba(7, 24, 14, .55);
      backdrop-filter: blur(8px);
      border-radius: var(--radius-lg);
      border: 1px solid rgba(255,255,255,.1);
      margin-bottom: 2rem;
    }
    .hero-meta div strong {
      display: block;
      font-family: var(--display);
      font-size: 2rem;
      font-weight: 500;
      color: var(--gold-400);
      line-height: 1;
      margin-bottom: .35rem;
    }
    .hero-meta div span {
      font-size: .82rem;
      letter-spacing: .04em;
      color: rgba(249, 247, 243, 0.78);
    }
    .scroll-hint {
      position: absolute;
      left: 50%; bottom: 2rem;
      transform: translateX(-50%);
      color: rgba(255,255,255,.6);
      font-size: .75rem;
      letter-spacing: .25em;
      text-transform: uppercase;
      display: flex; flex-direction: column; align-items: center; gap: .6rem;
    }
    .scroll-hint::after {
      content: "";
      width: 1px; height: 30px;
      background: linear-gradient(180deg, rgba(255,255,255,.6), transparent);
      animation: scrollPulse 2.2s ease-in-out infinite;
    }
    @keyframes scrollPulse {
      0%, 100% { transform: scaleY(0.4); transform-origin: top; opacity: .3; }
      50%      { transform: scaleY(1); opacity: 1; }
    }

    /* ----------------- TRUST STRIP ----------------- */
    .trust {
      background: var(--forest-900);
      color: var(--cream);
      padding: 1.4rem 0;
    }
    .trust .container {
      display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1.5rem 2.5rem;
      align-items: center;
    }
    .trust-item {
      display: inline-flex; align-items: center; gap: .65rem;
      font-size: .9rem;
      letter-spacing: .01em;
      font-weight: 500;
    }
    .trust-item svg { width: 20px; height: 20px; color: var(--gold-500); flex-shrink: 0; }

    /* ----------------- SERVICES ----------------- */
    .services { background: var(--paper); }
    .services-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
      gap: 1.4rem;
    }
    .service-card {
      position: relative;
      background: #fff;
      border-radius: var(--radius-lg);
      overflow: hidden;
      box-shadow: var(--shadow-sm);
      transition: transform .4s var(--ease), box-shadow .4s var(--ease);
      border: 1px solid rgba(13, 40, 24, .06);
      display: flex; flex-direction: column;
    }
    .service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
    .service-img {
      aspect-ratio: 4 / 3;
      width: 100%;
      object-fit: cover;
      transition: transform .8s var(--ease);
    }
    .service-card:hover .service-img { transform: scale(1.06); }
    .service-body { padding: 1.6rem 1.6rem 1.8rem; flex: 1; display: flex; flex-direction: column; }
    .service-icon {
      width: 44px; height: 44px;
      display: grid; place-items: center;
      background: var(--moss-300);
      color: var(--forest-800);
      border-radius: 12px;
      margin-bottom: 1rem;
    }
    .service-card h3 { margin: 0 0 .5rem; font-size: 1.3rem; }
    .service-card p { color: var(--slate); font-size: .96rem; margin-bottom: 1.2rem; }
    .service-link {
      margin-top: auto;
      display: inline-flex; align-items: center; gap: .4rem;
      color: var(--forest-700); font-weight: 600; font-size: .92rem;
    }
    .service-link .arrow { transition: transform .25s var(--ease); }
    .service-card:hover .service-link .arrow { transform: translateX(4px); }

    /* ----------------- PROCESS ----------------- */
    .process { background: var(--forest-900); color: var(--cream); position: relative; overflow: hidden; }
    .process::before {
      content:""; position:absolute; inset:0;
      background: radial-gradient(ellipse at top left, rgba(212,166,72,.08), transparent 60%);
      pointer-events:none;
    }
    .process h2 { color: #fff; }
    .process .section-head p { color: rgba(249, 247, 243, .78); }
    .process .eyebrow { color: var(--gold-400); }
    .process-grid {
      display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 1.5rem;
      counter-reset: step;
    }
    .step {
      counter-increment: step;
      padding: 2rem 1.6rem;
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(255,255,255,.08);
      border-radius: var(--radius-lg);
      position: relative;
    }
    .step::before {
      content: counter(step, decimal-leading-zero);
      position: absolute; top: 1.2rem; right: 1.6rem;
      font-family: var(--display);
      font-size: 1.6rem;
      color: var(--gold-500);
      opacity: .65;
    }
    .step h3 { color: var(--gold-400); font-size: 1.15rem; margin-top: 2.2rem; }
    .step p { color: rgba(249, 247, 243, .78); font-size: .94rem; margin: 0; }

    /* ----------------- GALLERY ----------------- */
    .gallery { background: var(--sand); }
    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(12, 1fr);
      grid-auto-rows: 180px;
      gap: 1rem;
    }
    .gallery-item {
      position: relative;
      overflow: hidden;
      border-radius: var(--radius);
      cursor: pointer;
    }
    .gallery-item img {
      width: 100%; height: 100%; object-fit: cover;
      transition: transform .8s var(--ease);
    }
    .gallery-item:hover img { transform: scale(1.08); }
    .gallery-item::after {
      content: attr(data-caption);
      position: absolute; left: 0; right: 0; bottom: 0;
      padding: 1.4rem 1.2rem 1rem;
      background: linear-gradient(180deg, transparent, rgba(7,24,14,.85));
      color: var(--cream);
      font-size: .88rem;
      font-weight: 500;
      letter-spacing: .02em;
      opacity: 0;
      transform: translateY(8px);
      transition: opacity .35s var(--ease), transform .35s var(--ease);
    }
    .gallery-item:hover::after { opacity: 1; transform: translateY(0); }

    /* Masonry-ish layout via spans */
    .g1 { grid-column: span 6; grid-row: span 2; }
    .g2 { grid-column: span 6; grid-row: span 1; }
    .g3 { grid-column: span 3; grid-row: span 1; }
    .g4 { grid-column: span 3; grid-row: span 1; }
    .g5 { grid-column: span 4; grid-row: span 2; }
    .g6 { grid-column: span 4; grid-row: span 1; }
    .g7 { grid-column: span 4; grid-row: span 1; }

    /* ----------------- WHY US ----------------- */
    .why { background: var(--paper); }
    .why-grid {
      display: grid; grid-template-columns: 1fr 1fr; gap: 4.5rem; align-items: center;
    }
    .why-media {
      position: relative;
      border-radius: var(--radius-lg);
      overflow: hidden;
      aspect-ratio: 4 / 5;
      box-shadow: var(--shadow);
    }
    .why-media img { width: 100%; height: 100%; object-fit: cover; }
    .why-media .badge {
      position: absolute; bottom: 1.6rem; left: 1.6rem;
      background: var(--gold-500);
      color: var(--forest-950);
      padding: 1rem 1.3rem;
      border-radius: var(--radius);
      font-family: var(--display);
      font-weight: 600;
      box-shadow: var(--shadow);
    }
    .why-media .badge strong { display:block; font-size: 1.8rem; line-height: 1; margin-bottom: .15rem; }
    .why-media .badge span { font-family: var(--sans); font-size: .75rem; letter-spacing: .1em; text-transform: uppercase; font-weight: 600; }

    .values { display: grid; gap: 1.6rem; }
    .value {
      display: grid; grid-template-columns: 52px 1fr; gap: 1.2rem;
      padding-bottom: 1.6rem;
      border-bottom: 1px solid rgba(13, 40, 24, .08);
    }
    .value:last-child { border-bottom: none; padding-bottom: 0; }
    .value-icon {
      width: 52px; height: 52px;
      background: var(--forest-900);
      color: var(--gold-400);
      border-radius: 14px;
      display: grid; place-items: center;
    }
    .value-icon svg { width: 26px; height: 26px; }
    .value h3 { margin-bottom: .35rem; }
    .value p { color: var(--slate); margin: 0; font-size: .98rem; }

    /* ----------------- TESTIMONIALS ----------------- */
    .testimonials { background: var(--forest-800); color: var(--cream); position: relative; overflow: hidden; }
    .testimonials::before {
      content:""; position:absolute; inset:0;
      background: radial-gradient(ellipse at bottom right, rgba(212,166,72,.10), transparent 60%);
      pointer-events:none;
    }
    .testimonials h2 { color: #fff; }
    .testimonials .eyebrow { color: var(--gold-400); }
    .testimonials .section-head p { color: rgba(249, 247, 243, .78); }
    .quote-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 1.5rem;
    }
    .quote {
      padding: 2rem 1.8rem;
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(255,255,255,.08);
      border-radius: var(--radius-lg);
      display: flex; flex-direction: column;
    }
    .quote-mark {
      font-family: var(--display);
      font-size: 3.5rem;
      line-height: .8;
      color: var(--gold-500);
      margin-bottom: .5rem;
    }
    .quote blockquote {
      font-family: var(--display);
      font-style: italic;
      font-size: 1.12rem;
      line-height: 1.55;
      color: rgba(249, 247, 243, .92);
      margin: 0 0 1.4rem;
      flex: 1;
    }
    .quote-author { display:flex; align-items:center; gap:.85rem; }
    .quote-avatar {
      width: 44px; height: 44px;
      border-radius: 50%;
      background: var(--forest-600);
      color: var(--cream);
      display: grid; place-items: center;
      font-family: var(--display);
      font-size: 1.1rem;
      font-weight: 600;
    }
    .quote-author strong { display: block; font-weight: 600; font-size: .95rem; color: var(--cream); }
    .quote-author span { font-size: .82rem; color: rgba(249,247,243,.65); }
    .stars { color: var(--gold-500); font-size: 1rem; letter-spacing: .15em; margin-bottom: 1rem; }

    /* ----------------- PLANS ----------------- */
    .plans { background: var(--paper); }
    .plans-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 1.4rem;
    }
    .plan {
      background: #fff;
      border-radius: var(--radius-lg);
      padding: 2.2rem 1.8rem;
      border: 1px solid rgba(13, 40, 24, .08);
      position: relative;
      display: flex; flex-direction: column;
    }
    .plan.featured {
      background: var(--forest-900);
      color: var(--cream);
      transform: translateY(-12px);
      box-shadow: var(--shadow-lg);
      border-color: transparent;
    }
    .plan-badge {
      position: absolute; top: -14px; left: 1.8rem;
      background: var(--gold-500);
      color: var(--forest-950);
      padding: .35rem 1rem;
      border-radius: 999px;
      font-size: .7rem;
      font-weight: 700;
      letter-spacing: .12em;
      text-transform: uppercase;
    }
    .plan h3 { color: var(--forest-800); margin: 0 0 .25rem; }
    .plan.featured h3 { color: var(--gold-400); }
    .plan-sub { color: var(--slate); font-size: .92rem; margin-bottom: 1.5rem; }
    .plan.featured .plan-sub { color: rgba(249,247,243,.7); }
    .plan-price { font-family: var(--display); font-size: 2.4rem; color: var(--forest-900); font-weight: 500; line-height: 1; margin-bottom: .25rem; }
    .plan.featured .plan-price { color: #fff; }
    .plan-price small { font-family: var(--sans); font-size: .9rem; color: var(--mute); font-weight: 500; }
    .plan.featured .plan-price small { color: rgba(249,247,243,.6); }
    .plan-note { font-size: .82rem; color: var(--mute); margin-bottom: 1.6rem; }
    .plan.featured .plan-note { color: rgba(249,247,243,.55); }
    .plan ul { list-style: none; padding: 0; margin: 0 0 1.8rem; display: grid; gap: .65rem; }
    .plan li {
      display: grid; grid-template-columns: 22px 1fr; gap: .65rem; align-items: flex-start;
      font-size: .95rem; color: var(--charcoal);
    }
    .plan.featured li { color: rgba(249,247,243,.9); }
    .plan li svg { width: 18px; height: 18px; color: var(--forest-600); margin-top: 2px; }
    .plan.featured li svg { color: var(--gold-400); }
    .plan .btn { width: 100%; justify-content: center; margin-top: auto; }

    /* ----------------- AREAS ----------------- */
    .areas { background: var(--sand); }
    .areas-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 4rem; align-items: center; }
    .areas-list { columns: 2; gap: 1.2rem; }
    .areas-list li {
      list-style: none;
      padding: .55rem 0;
      border-bottom: 1px dashed rgba(13, 40, 24, .15);
      font-weight: 500;
      color: var(--forest-800);
      break-inside: avoid;
      display: flex; align-items: center; gap: .55rem;
    }
    .areas-list li::before {
      content:""; width: 6px; height: 6px; border-radius:50%; background: var(--gold-500);
    }
    .areas-map {
      aspect-ratio: 4 / 3;
      border-radius: var(--radius-lg);
      overflow: hidden;
      box-shadow: var(--shadow);
      background: var(--forest-800);
      position: relative;
    }
    .areas-map iframe { width:100%; height:100%; border:0; display:block; filter: saturate(.7) contrast(1.05); }

    /* ----------------- CTA / CONTACT ----------------- */
    .contact { background: var(--forest-950); color: var(--cream); position: relative; overflow: hidden; }
    .contact::before {
      content:""; position:absolute; inset:0;
      background-image:
        radial-gradient(ellipse 80% 50% at 20% 0%, rgba(58, 117, 81, .25), transparent 60%),
        radial-gradient(ellipse 60% 40% at 90% 100%, rgba(212, 166, 72, .15), transparent 65%);
      pointer-events:none;
    }
    .contact h2 { color: #fff; max-width: 18ch; }
    .contact .section-head p { color: rgba(249, 247, 243, .8); }
    .contact .eyebrow { color: var(--gold-400); }

    .contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }

    .info-block { display: grid; gap: 1.5rem; margin-top: 2rem; }
    .info-item { display: grid; grid-template-columns: 44px 1fr; gap: 1rem; }
    .info-item .ic {
      width: 44px; height: 44px;
      background: rgba(255,255,255,.06);
      border-radius: 12px;
      display: grid; place-items: center;
      color: var(--gold-400);
    }
    .info-item .ic svg { width: 22px; height: 22px; }
    .info-item strong { display: block; color: var(--gold-400); font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; font-weight: 600; margin-bottom: .25rem; }
    .info-item a, .info-item p { color: var(--cream); font-size: 1.05rem; margin: 0; }
    .info-item a:hover { color: var(--gold-400); }

    .form {
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(255,255,255,.08);
      border-radius: var(--radius-lg);
      padding: 2.2rem;
      backdrop-filter: blur(8px);
    }
    .form h3 { color: #fff; margin-bottom: 1.4rem; }
    .field { display: block; margin-bottom: 1.1rem; }
    .field label {
      display:block;
      font-size: .78rem; font-weight: 600;
      letter-spacing: .08em; text-transform: uppercase;
      color: rgba(249,247,243,.75);
      margin-bottom: .45rem;
    }
    .field input, .field textarea, .field select {
      width: 100%;
      background: rgba(255,255,255,.06);
      border: 1px solid rgba(255,255,255,.12);
      border-radius: 10px;
      padding: .85rem 1rem;
      color: #fff;
      font-family: var(--sans);
      font-size: 1rem;
      transition: border-color .2s var(--ease), background .2s var(--ease);
    }
    .field input:focus, .field textarea:focus, .field select:focus {
      outline: none;
      border-color: var(--gold-500);
      background: rgba(255,255,255,.08);
    }
    .field input::placeholder, .field textarea::placeholder { color: rgba(249,247,243,.4); }
    .field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
    .form .btn { width: 100%; justify-content: center; }
    .form-note { font-size: .8rem; color: rgba(249,247,243,.55); margin-top: 1rem; text-align: center; }

    /* ----------------- FOOTER ----------------- */
    footer {
      background: #050f08;
      color: rgba(249, 247, 243, .7);
      padding: 3.5rem 0 2rem;
      font-size: .92rem;
    }
    .foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 2.5rem; margin-bottom: 2.5rem; }
    .foot-grid h4 {
      font-family: var(--sans);
      font-size: .78rem;
      letter-spacing: .14em;
      text-transform: uppercase;
      color: var(--gold-400);
      margin-bottom: 1rem;
    }
    .foot-grid ul { list-style: none; padding: 0; margin: 0; display: grid; gap: .55rem; }
    .foot-grid a { color: rgba(249,247,243,.7); }
    .foot-grid a:hover { color: var(--gold-400); }
    .foot-brand { display: flex; align-items: center; gap: .65rem; color: #fff; font-family: var(--display); font-size: 1.3rem; margin-bottom: .8rem; }
    .foot-bottom {
      border-top: 1px solid rgba(255,255,255,.08);
      padding-top: 1.5rem;
      display: flex; flex-wrap: wrap; gap: 1rem;
      justify-content: space-between;
      font-size: .82rem;
      color: rgba(249,247,243,.45);
    }

    /* ----------------- REVEAL ANIMATION ----------------- */
    .reveal { opacity: 0; transform: translateY(24px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
    .reveal.in { opacity: 1; transform: none; }
    @media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

    /* ----------------- RESPONSIVE ----------------- */
    @media (max-width: 980px) {
      .hero-grid, .why-grid, .areas-grid, .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
      .why-media { aspect-ratio: 5 / 4; }
      .gallery-grid { grid-auto-rows: 150px; }
      .plan.featured { transform: none; }
    }
    @media (max-width: 760px) {
      .nav-links, .nav-cta .phone-link, .nav-cta .btn { display: none; }
      .menu-toggle { display: inline-flex; }
      .nav-cta { gap: .5rem; }
      .hero { min-height: 92vh; padding-top: 8rem; }
      .hero-meta { grid-template-columns: 1fr; gap: 1rem; padding: 1.2rem 1.4rem; }
      .hero-meta div { display: flex; align-items: baseline; gap: .8rem; }
      .hero-meta div strong { font-size: 1.4rem; }
      .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; }
      .g1, .g2, .g3, .g4, .g5, .g6, .g7 { grid-column: span 1; grid-row: span 1; }
      .g1, .g5 { grid-row: span 2; }
      .areas-list { columns: 1; }
      .foot-grid { grid-template-columns: 1fr 1fr; }
      .field-row { grid-template-columns: 1fr; }
    }
    @media (max-width: 480px) {
      .foot-grid { grid-template-columns: 1fr; }
      .form { padding: 1.6rem 1.4rem; }
    }

    /* Mobile menu */
    .mobile-menu {
      position: fixed; inset: 0;
      background: var(--forest-950);
      z-index: 60;
      display: none;
      flex-direction: column;
      padding: 5rem var(--gutter) 2rem;
    }
    .mobile-menu.open { display: flex; }
    .mobile-menu a {
      display:block;
      color: var(--cream);
      font-family: var(--display);
      font-size: 2rem;
      padding: 1rem 0;
      border-bottom: 1px solid rgba(255,255,255,.08);
    }
    .mobile-menu .btn { margin-top: 2rem; align-self:flex-start; }
    .mobile-close {
      position: absolute; top: 1.4rem; right: var(--gutter);
      width: 44px; height: 44px; border: 1.5px solid rgba(255,255,255,.3);
      background: transparent; border-radius: 50%;
      color: var(--cream); font-size: 1.5rem;
      cursor: pointer; display: grid; place-items: center;
    }

    /* ----------------- LANG TOGGLE ----------------- */
    .lang-toggle {
      display: inline-flex; align-items: center; gap: .35rem;
      padding: .35rem .5rem;
      border-radius: 999px;
      background: rgba(255,255,255,.08);
      border: 1px solid rgba(255,255,255,.15);
      font-size: .78rem; font-weight: 600;
      letter-spacing: .04em;
      transition: background .25s var(--ease), border-color .25s var(--ease);
    }
    .nav.scrolled .lang-toggle { background: rgba(13, 40, 24, .06); border-color: rgba(13, 40, 24, .12); }
    .lang-toggle a {
      display: inline-flex; align-items: center; justify-content: center;
      padding: .25rem .55rem;
      border-radius: 999px;
      color: var(--cream);
      transition: color .2s var(--ease), background .2s var(--ease);
    }
    .nav.scrolled .lang-toggle a { color: var(--forest-800); }
    .lang-toggle a.active {
      background: var(--gold-500);
      color: var(--forest-950);
    }
    .nav.scrolled .lang-toggle a.active { background: var(--gold-500); color: var(--forest-950); }
    .lang-toggle a:not(.active):hover { color: var(--gold-500); }

    /* small chip for sector tags inside service cards */
    .sector-tags {
      display: flex; flex-wrap: wrap; gap: .35rem;
      margin: 0 0 1rem;
    }
    .sector-tag {
      font-size: .68rem; font-weight: 700;
      letter-spacing: .08em; text-transform: uppercase;
      padding: .25rem .55rem;
      border-radius: 999px;
      background: var(--moss-300);
      color: var(--forest-800);
    }
    .sector-tag.alt { background: var(--sand); color: var(--forest-700); }

    @media (max-width: 760px) {
      .lang-toggle { order: -1; }
    }

    /* ----------------- OUR CUSTOMERS STRIP -----------------
       Dark band — logos rendered uniformly via brightness/invert filter
       (matches the "trusted by" pattern from the reference design). */
    .customers {
      background: var(--forest-950);
      color: var(--cream);
      padding: clamp(4rem, 8vw, 6rem) 0;
      position: relative;
      overflow: hidden;
    }
    .customers::before {
      content: ""; position: absolute; inset: 0;
      background: radial-gradient(ellipse at center top, rgba(58, 117, 81, .15), transparent 60%);
      pointer-events: none;
    }
    .customers-head { text-align: center; max-width: 640px; margin: 0 auto clamp(2.5rem, 5vw, 3.5rem); position: relative; }
    .customers-head .eyebrow { justify-content: center; color: var(--gold-400); }
    .customers-head h2 {
      font-size: clamp(1.4rem, 2.4vw, 1.75rem);
      color: #fff;
      margin-bottom: .5rem;
    }
    .customers-head p { color: rgba(249, 247, 243, .7); font-size: .98rem; margin: 0; }
    .customers-row {
      display: grid;
      gap: clamp(1.5rem, 3vw, 3rem) clamp(1.5rem, 3vw, 2.5rem);
      grid-template-columns: repeat(5, 1fr);
      align-items: center;
      justify-items: center;
      position: relative;
    }
    .customer {
      display: flex; flex-direction: column; align-items: center; justify-content: center;
      gap: .6rem;
      text-align: center;
      width: 100%;
      max-width: 200px;
    }
    .customer-logo {
      display: block;
      width: 100%;
      max-width: 160px;
      height: 56px;
      object-fit: contain;
      object-position: center;
      filter: brightness(0) invert(1);
      opacity: .78;
      transition: opacity .3s var(--ease), transform .3s var(--ease);
    }
    .customer:hover .customer-logo {
      opacity: 1;
      transform: scale(1.03);
    }
    .customer-sector {
      font-family: var(--sans);
      font-size: .68rem;
      letter-spacing: .14em;
      text-transform: uppercase;
      color: rgba(249, 247, 243, .42);
      font-weight: 600;
    }
    @media (max-width: 980px) {
      .customers-row { grid-template-columns: repeat(3, 1fr); }
      .customer:nth-child(4), .customer:nth-child(5) { grid-row: 2; }
    }
    @media (max-width: 640px) {
      .customers-row { grid-template-columns: repeat(2, 1fr); }
      .customer:nth-child(n) { grid-row: auto; }
    }

    /* ----------------- NAV (compact) ----------------- */
    .phone-link { white-space: nowrap; }
    @media (min-width: 1100px) {
      .nav-links { gap: 1.6rem; }
    }
    @media (min-width: 761px) and (max-width: 1099px) {
      .nav-links { gap: 1.1rem; }
      .nav-links a { font-size: .9rem; }
      .phone-link { font-size: .88rem; }
      .nav-cta { gap: .5rem; }
    }

    /* ----------------- FORM SELECT OPTIONS -----------------
       The native browser dropdown popup inherits the open select's color
       (white text) on its own background. On most desktop browsers the
       popup background defaults to white -- so white-on-white. Force a
       readable contrast on the option list. */
    .field select option,
    .field select optgroup {
      background: #fdfbf7;   /* paper */
      color: #1c211e;        /* charcoal */
    }
    .field select option:checked {
      background: #d4a648;   /* gold */
      color: #07180e;        /* forest-950 */
    }
