    :root {
      --green-950: #0d1f13;
      --green-900: #102817;
      --green-800: #172b1c;
      --green-700: #2f4a33;
      --green-500: #687b45;
      --lime:      #c9f05f;
      --gold:      #f2c94c;
      --sand:      #f2e7d3;
      --paper:     #fbf3e4;
      --white:     #ffffff;
      --ink:       #111611;
      --muted:     #616a60;
      --line:      rgba(47,42,31,.12);
      --shadow:    0 24px 70px rgba(13,31,19,.20);
      --radius-xl: 30px;
      --radius-lg: 22px;
      --radius-md: 16px;
      --max:       1160px;
    }

    *, *::before, *::after { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      margin: 0;
      font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      color: var(--ink);
      background:
        linear-gradient(180deg, #f7eddc 0%, var(--sand) 46%, #efe3cc 100%);
      line-height: 1.5;
      -webkit-font-smoothing: antialiased;
    }
    img { max-width: 100%; display: block; }
    a { color: inherit; text-decoration: none; }
    button, input, textarea, select { font: inherit; }
    * { -webkit-tap-highlight-color: transparent; }

    :focus-visible {
      outline: 2px solid var(--lime);
      outline-offset: 3px;
    }

    .skip-nav {
      position: absolute;
      left: -9999px;
      top: 4px;
      z-index: 9999;
      background: var(--green-900);
      color: white;
      padding: 10px 18px;
      border-radius: 8px;
      font-weight: 700;
      font-size: .9rem;
    }
    .skip-nav:focus { left: 12px; }

    .site-shell { overflow: hidden; }
    .container { width: min(var(--max), calc(100% - 32px)); margin: 0 auto; }

    /* ── TOPBAR ── */
    .topbar {
      background: var(--green-950);
      color: rgba(255,255,255,.86);
      font-size: .88rem;
      border-bottom: 2px solid var(--green-800);
      letter-spacing: .01em;
    }
    .topbar-inner {
      min-height: 42px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 16px;
    }
    .topbar strong { color: var(--lime); }
    .topbar-links { display: flex; gap: 14px; align-items: center; white-space: nowrap; }

    /* ── NAV ── */
    .nav-wrap {
      position: sticky;
      top: 0;
      z-index: 30;
      background: rgba(244,239,227,.94);
      backdrop-filter: blur(14px);
      -webkit-backdrop-filter: blur(14px);
      border-bottom: 1px solid rgba(17,22,17,.10);
      transition: box-shadow .25s;
    }
    .nav-scrolled { box-shadow: 0 4px 24px rgba(13,31,19,.10); }
    .nav {
      min-height: 78px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }
    .brand {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      justify-content: center;
      gap: 3px;
      min-width: 0;
      padding: 10px 12px;
      border-radius: 14px;
      transition: background .15s ease, color .15s ease;
    }
    .brand:hover,
    .brand:focus-visible {
      background: rgba(47,74,51,.08);
      color: var(--green-950);
    }
    .brand-mark {
      width: 48px; height: 48px;
      border-radius: 15px;
      background: linear-gradient(145deg, var(--green-950), var(--green-700));
      color: var(--lime);
      display: grid;
      place-items: center;
      font-weight: 900;
      letter-spacing: -0.08em;
      box-shadow: 0 12px 30px rgba(16,40,23,.28);
      font-size: .95rem;
    }
    .brand-title { font-weight: 900; line-height: 1; letter-spacing: -0.04em; color: var(--green-950); }
    .brand-subtitle { font-size: .82rem; color: var(--muted); margin-top: 3px; white-space: nowrap; }
    .nav .mobile-header-estimate { display: none; }
    .nav-links {
      display: flex;
      align-items: center;
      gap: 22px;
      font-weight: 750;
      color: rgba(17,22,17,.78);
      font-size: .94rem;
    }
    .nav-links a { transition: color .18s; }
    .nav-links a:hover { color: var(--green-700); }
    .nav-links a.nav-active { color: var(--green-700); font-weight: 900; }
    .nav-actions { display: flex; gap: 10px; align-items: center; }

    /* ── BUTTONS ── */
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 9px;
      border: 0;
      border-radius: 999px;
      padding: 13px 20px;
      font-weight: 900;
      cursor: pointer;
      transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
      min-height: 48px;
      touch-action: manipulation;
      -webkit-tap-highlight-color: transparent;
      white-space: nowrap;
    }
    .btn:hover { transform: translateY(-1px); }
    .btn:active { transform: scale(0.97); }
    .btn-primary {
      background: var(--lime);
      color: var(--green-950);
      box-shadow: 0 14px 34px rgba(13,31,19,.22);
    }
    .btn-primary:hover { background: #d4f56a; }
    .btn-dark {
      background: var(--green-950);
      color: white;
      box-shadow: 0 14px 34px rgba(13,31,19,.25);
    }
    .btn-dark:hover { background: var(--green-900); }
    .btn-ghost {
      border: 1px solid rgba(255,255,255,.22);
      color: white;
      background: rgba(255,255,255,.08);
    }
    .btn-ghost:hover { background: rgba(255,255,255,.15); }
    .btn-light {
      background: white;
      color: var(--green-950);
      border: 1px solid rgba(17,22,17,.08);
    }
    .btn-light:hover { background: var(--sand); }

    /* ── HERO ── */
    .hero {
      position: relative;
      background:
        radial-gradient(circle at 14% 8%, rgba(201,240,95,.11) 0%, rgba(201,240,95,0) 30%),
        radial-gradient(circle at 78% 18%, rgba(208,176,112,.24) 0%, rgba(208,176,112,0) 34%),
        linear-gradient(180deg, #f7eddc 0%, #f2e7d3 100%);
      color: var(--ink);
      padding: 72px 0 44px;
      isolation: isolate;
    }
    .hero::before {
      content: "";
      position: absolute;
      inset: 0;
      z-index: -1;
      background:
        linear-gradient(90deg, rgba(247,237,220,.66) 0%, rgba(242,231,211,.32) 54%, rgba(247,237,220,.68) 100%),
        repeating-linear-gradient(135deg, rgba(47,42,31,.035) 0 1px, rgba(47,42,31,0) 1px 12px);
      opacity: .9;
    }
    .hero-grid {
      display: grid;
      grid-template-columns: minmax(0,1.05fr) minmax(340px,.82fr);
      gap: 36px;
      align-items: center;
      position: relative;
      z-index: 1;
    }
    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 8px 12px;
      border-radius: 999px;
      background: rgba(13,31,19,.06);
      border: 1px solid rgba(47,74,51,.14);
      color: var(--green-700);
      font-weight: 850;
      font-size: .88rem;
    }
    .pulse {
      width: 9px; height: 9px;
      border-radius: 99px;
      background: var(--lime);
      box-shadow: 0 0 0 7px rgba(201,240,95,.16);
      flex-shrink: 0;
    }
    .hero-logo {
      display: block;
      width: 220px;
      height: 116px;
      object-fit: cover;
      margin: 0 0 14px;
    }
    h1 {
      font-size: clamp(2.2rem, 5vw, 3.9rem);
      line-height: 1.02;
      letter-spacing: -0.045em;
      margin: 18px 0 18px;
      max-width: 720px;
      color: #101811;
      font-weight: 820;
    }
    .hero p {
      font-size: clamp(1.06rem, 2vw, 1.22rem);
      color: rgba(31,38,30,.70);
      max-width: 620px;
      margin: 0 0 26px;
      line-height: 1.65;
    }
    .hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 26px; }
    .hero .btn-ghost {
      color: var(--green-950);
      background: rgba(255,255,255,.48);
      border-color: rgba(47,74,51,.20);
    }
    .hero .btn-ghost:hover { background: rgba(255,255,255,.78); }
    .hero-proof {
      display: grid;
      grid-template-columns: repeat(3,minmax(0,1fr));
      gap: 10px;
      max-width: 760px;
    }
    .proof-pill {
      padding: 14px;
      border-radius: 18px;
      background: rgba(255,255,255,.54);
      border: 1px solid rgba(47,74,51,.13);
      color: rgba(17,22,17,.68);
      font-weight: 750;
      font-size: .88rem;
    }
    .proof-pill strong { display: block; color: var(--lime); font-size: 1rem; margin-bottom: 2px; }

    /* ── HERO FORM CARD ── */
    .quote-card {
      position: relative;
      background:
        radial-gradient(circle at 18% 0%, rgba(201,240,95,.14) 0%, rgba(201,240,95,0) 38%),
        linear-gradient(145deg, #21361f 0%, #2f4a33 58%, #1b2f20 100%);
      color: white;
      border-radius: var(--radius-xl);
      padding: 28px 26px;
      box-shadow: 0 28px 80px rgba(13,31,19,.24);
      border: 1px solid rgba(255,255,255,.18);
    }
    .anchor-target {
      position: absolute;
      top: -92px;
      left: 0;
      width: 1px;
      height: 1px;
      pointer-events: none;
    }
    .quote-card h2 { margin: 0 0 6px; font-size: 1.45rem; letter-spacing: -0.04em; }
    .quote-card > p { color: rgba(255,255,255,.74); margin: 0 0 18px; font-size: .94rem; line-height: 1.5; }
    .form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 11px; }
    .field { display: flex; flex-direction: column; gap: 6px; }
    .field.full { grid-column: 1 / -1; }
    label { font-weight: 850; font-size: .84rem; color: rgba(17,22,17,.75); }
    .quote-card label { color: rgba(255,255,255,.82); }
    input, textarea, select {
      width: 100%;
      border: 1px solid rgba(17,22,17,.13);
      border-radius: 13px;
      padding: 12px 13px;
      background: white;
      color: var(--ink);
      outline: none;
      font-size: 16px;
      transition: border-color .18s, box-shadow .18s;
    }
    input:focus, textarea:focus, select:focus {
      border-color: rgba(47,74,51,.38);
      box-shadow: 0 0 0 4px rgba(76,140,66,.14);
    }
    .quote-card input,
    .quote-card textarea,
    .quote-card select {
      background: rgba(255,250,243,.98);
      border-color: rgba(255,255,255,.22);
      color: var(--ink);
      box-shadow: 0 8px 18px rgba(0,0,0,.10);
    }
    .quote-card input::placeholder,
    .quote-card textarea::placeholder { color: rgba(17,22,17,.48); }
    .quote-card input:focus,
    .quote-card textarea:focus,
    .quote-card select:focus {
      border-color: rgba(201,240,95,.62);
      box-shadow: 0 0 0 4px rgba(201,240,95,.18), 0 8px 18px rgba(0,0,0,.12);
    }
    textarea { min-height: 88px; resize: vertical; }
    .quote-card .btn-dark {
      background: var(--lime);
      color: var(--green-950);
      box-shadow: 0 14px 34px rgba(201,240,95,.18);
    }
    .quote-card .btn-dark:hover { background: #d4f56a; }
    .quote-card .form-note { font-size: .82rem; color: rgba(255,255,255,.68); margin-top: 10px; line-height: 1.5; }
    .form-note a { color: var(--green-700); font-weight: 700; }

    /* ── SECTIONS ── */
    section { padding: 84px 0; }
    .section-head {
      display: flex;
      justify-content: space-between;
      align-items: end;
      gap: 24px;
      margin-bottom: 32px;
    }
    .section-kicker {
      color: var(--green-700);
      font-weight: 950;
      text-transform: uppercase;
      letter-spacing: .09em;
      font-size: .78rem;
      margin-bottom: 6px;
    }
    h2.section-title {
      font-size: clamp(2rem, 4.5vw, 3.8rem);
      line-height: .96;
      letter-spacing: -0.06em;
      margin: 0;
      max-width: 780px;
    }
    .section-copy { max-width: 400px; color: var(--muted); font-weight: 650; font-size: .95rem; line-height: 1.6; }

    /* ── FEATURED WORK PREVIEW ── */
    .featured-work {
      padding: 56px 0;
      background:
        linear-gradient(180deg, rgba(255,250,240,.92), rgba(244,239,227,.82));
      border-bottom: 1px solid var(--line);
    }
    .featured-work .section-head { margin-bottom: 22px; }
    .featured-work-grid {
      display: grid;
      grid-template-columns: repeat(3,minmax(0,1fr));
      gap: 14px;
    }
    .featured-work-card {
      position: relative;
      min-height: 260px;
      border-radius: var(--radius-lg);
      overflow: hidden;
      display: flex;
      align-items: flex-end;
      padding: 20px;
      color: white;
      border: 1px solid rgba(17,22,17,.12);
      box-shadow: 0 14px 34px rgba(13,31,19,.10);
      background: var(--green-900);
    }
    .featured-work-card img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: .96;
    }
    .featured-work-card::after {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(to top, rgba(13,31,19,.76) 0%, rgba(13,31,19,.28) 48%, rgba(13,31,19,.04) 100%);
    }
    .featured-work-content {
      position: relative;
      z-index: 1;
      max-width: 320px;
    }
    .featured-work-content strong {
      display: block;
      font-size: 1.08rem;
      letter-spacing: -0.03em;
      line-height: 1.1;
    }
    .featured-work-content span {
      display: block;
      margin-top: 8px;
      color: rgba(255,255,255,.84);
      font-weight: 650;
      font-size: .9rem;
      line-height: 1.45;
    }
    .commercial-proof-row {
      display: grid;
      grid-template-columns: repeat(2,minmax(0,1fr));
      gap: 14px;
      margin-top: 14px;
    }
    .commercial-proof-card {
      display: grid;
      gap: 14px;
      padding: 14px;
      background: rgba(255,250,240,.94);
      border: 1px solid rgba(47,74,51,.14);
      border-radius: var(--radius-lg);
      box-shadow: 0 16px 36px rgba(13,31,19,.09);
    }
    .commercial-proof-card img {
      width: 100%;
      aspect-ratio: 16 / 9;
      height: auto;
      object-fit: cover;
      border-radius: 20px;
      display: block;
    }
    .commercial-proof-card strong {
      display: block;
      color: var(--green-950);
      font-size: 1rem;
      line-height: 1.2;
      letter-spacing: -0.03em;
    }
    .commercial-proof-card span {
      display: block;
      margin-top: 7px;
      color: var(--muted);
      font-size: .9rem;
      font-weight: 650;
      line-height: 1.5;
    }

    /* ── SERVICES ── */
    .services-grid {
      display: grid;
      grid-template-columns: repeat(3,minmax(0,1fr));
      gap: 16px;
    }
    .service-card {
      background: rgba(255,250,240,.96);
      border: 1px solid var(--line);
      border-radius: var(--radius-lg);
      padding: 24px;
      min-height: 220px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      box-shadow: 0 12px 34px rgba(13,31,19,.055);
      transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
    }
    .service-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 20px 48px rgba(13,31,19,.12);
      border-color: rgba(47,74,51,.34);
    }
    .service-card h3 { margin: 0 0 7px; font-size: 1.18rem; letter-spacing: -0.03em; }
    .service-card p { margin: 0; color: var(--muted); font-size: .92rem; line-height: 1.6; }
    .service-card ul {
      margin: 14px 0 0;
      padding-left: 17px;
      color: rgba(17,22,17,.78);
      font-weight: 650;
      font-size: .9rem;
      line-height: 1.7;
    }

    /* ── TRUST BAND ── */
    .trust-band { background: var(--green-950); color: white; padding: 36px 0; }
    .trust-grid {
      display: grid;
      grid-template-columns: repeat(4,minmax(0,1fr));
      gap: 14px;
    }
    .trust-item {
      padding: 18px;
      border-radius: 18px;
      background: rgba(255,255,255,.07);
      border: 1px solid rgba(255,255,255,.12);
    }
    .trust-item strong { display: block; color: var(--lime); font-size: 1.7rem; letter-spacing: -0.05em; line-height: 1.1; }
    .trust-item span { color: rgba(255,255,255,.72); font-weight: 650; font-size: .88rem; }

    /* ── PROCESS ── */
    .split {
      display: grid;
      grid-template-columns: .9fr 1.1fr;
      gap: 28px;
      align-items: stretch;
    }
    .dark-panel {
      background: var(--green-950);
      color: white;
      border-radius: var(--radius-xl);
      padding: clamp(24px,4vw,44px);
      position: relative;
      overflow: hidden;
    }
    .dark-panel::before {
      content: "";
      position: absolute;
      width: 250px; height: 250px;
      border-radius: 999px;
      background: rgba(201,240,95,.16);
      right: -90px; top: -90px;
    }
    .dark-panel h2 { font-size: clamp(1.8rem,3.5vw,3.2rem); line-height: .96; letter-spacing: -0.055em; margin: 0 0 14px; position: relative; }
    .dark-panel p { color: rgba(255,255,255,.76); font-weight: 650; position: relative; line-height: 1.65; font-size: .96rem; }
    .steps { display: grid; gap: 13px; }
    .step {
      background: var(--paper);
      border: 1px solid var(--line);
      border-left: 3px solid var(--green-500);
      border-radius: var(--radius-lg);
      padding: 20px 22px;
      display: grid;
      grid-template-columns: auto 1fr;
      gap: 16px;
      align-items: start;
    }
    .step-number {
      width: 36px; height: 36px;
      border-radius: 12px;
      background: var(--green-900);
      color: var(--lime);
      display: grid;
      place-items: center;
      font-weight: 950;
      font-size: .9rem;
      flex-shrink: 0;
    }
    .step h3 { margin: 0 0 3px; letter-spacing: -0.03em; font-size: 1.02rem; }
    .step p { margin: 0; color: var(--muted); font-size: .9rem; line-height: 1.6; }

    /* ── ABOUT ── */
    .about-grid {
      display: grid;
      grid-template-columns: 320px 1fr;
      gap: 52px;
      align-items: start;
    }
    .about-photo-col { position: sticky; top: 96px; }
    .about-photo-placeholder {
      width: 100%;
      aspect-ratio: 4/5;
      background: linear-gradient(145deg, var(--green-900), var(--green-700));
      border-radius: var(--radius-xl);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 12px;
      border: 1px solid var(--line);
    }
    .about-initials { font-size: 4rem; font-weight: 900; color: var(--lime); letter-spacing: -0.06em; line-height: 1; }
    .about-photo-label { font-size: .88rem; color: rgba(255,255,255,.65); font-weight: 650; }
    .about-content .section-title { margin-bottom: 22px; }
    .about-content p { color: var(--muted); font-weight: 650; line-height: 1.72; margin: 0 0 16px; font-size: .97rem; }
    .about-content p strong { color: var(--ink); }
    .about-stats {
      display: grid;
      grid-template-columns: repeat(4,minmax(0,1fr));
      gap: 12px;
      margin-top: 28px;
      padding-top: 26px;
      border-top: 1px solid var(--line);
    }
    .about-stat { display: flex; flex-direction: column; gap: 3px; }
    .about-stat strong { font-size: 1.55rem; font-weight: 900; color: var(--green-700); letter-spacing: -0.05em; line-height: 1; }
    .about-stat span { font-size: .8rem; color: var(--muted); font-weight: 650; line-height: 1.3; }

    /* ── TESTIMONIALS ── */
    .testimonials-grid {
      display: grid;
      grid-template-columns: repeat(4,minmax(0,1fr));
      gap: 18px;
    }
    .t-card {
      background: var(--paper);
      border: 1px solid var(--line);
      border-radius: var(--radius-lg);
      padding: 28px 24px;
      margin: 0;
      display: flex;
      flex-direction: column;
      gap: 14px;
      transition: transform .2s ease, box-shadow .2s ease;
    }
    .t-card:hover { transform: translateY(-3px); box-shadow: 0 14px 34px rgba(13,31,19,.08); }
    .t-stars { color: var(--gold); font-size: 1.05rem; letter-spacing: 3px; }
    .t-card p { color: var(--ink); font-style: italic; margin: 0; line-height: 1.7; font-weight: 500; flex: 1; font-size: .95rem; }
    .t-card footer { display: flex; flex-direction: column; gap: 2px; margin-top: auto; padding-top: 14px; border-top: 1px solid var(--line); }
    .t-name { font-weight: 900; font-size: .9rem; color: var(--ink); }
    .t-loc { font-size: .82rem; color: var(--muted); }
    .t-cta-row { margin-top: 28px; display: flex; justify-content: center; }
    /* ── AREAS ── */
    .areas {
      background:
        radial-gradient(circle at 80% 20%, rgba(201,240,95,.18), transparent 26%),
        var(--paper);
      border-top: 1px solid var(--line);
      border-bottom: 1px solid var(--line);
    }
    .area-card {
      border-radius: var(--radius-xl);
      background: white;
      border: 1px solid var(--line);
      padding: clamp(24px,4vw,42px);
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 32px;
      align-items: center;
      box-shadow: 0 18px 50px rgba(13,31,19,.08);
    }
    .area-list { display: flex; flex-wrap: wrap; gap: 9px; }
    .chip {
      padding: 9px 14px;
      border-radius: 999px;
      background: var(--sand);
      border: 1px solid var(--line);
      font-weight: 850;
      color: rgba(17,22,17,.75);
      font-size: .88rem;
      transition: background .15s, border-color .15s, color .15s;
      cursor: default;
    }
    .chip:hover { background: var(--green-900); color: var(--lime); border-color: var(--green-700); }

    /* ── FAQ ── */
    .faq-grid {
      display: grid;
      grid-template-columns: repeat(2,minmax(0,1fr));
      gap: 14px;
    }
    details {
      background: var(--paper);
      border: 1px solid var(--line);
      border-radius: var(--radius-md);
      padding: 18px 20px;
      transition: box-shadow .2s;
    }
    details[open] { box-shadow: 0 8px 24px rgba(13,31,19,.07); }
    summary {
      cursor: pointer;
      font-weight: 900;
      letter-spacing: -0.02em;
      list-style: none;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 12px;
    }
    summary::-webkit-details-marker { display: none; }
    summary::after { content: "+"; color: var(--green-500); font-size: 1.3rem; font-weight: 900; flex-shrink: 0; }
    details[open] summary::after { content: "−"; }
    details p { color: var(--muted); margin: 12px 0 0; line-height: 1.65; font-size: .95rem; }

    /* ── FINAL CTA ── */
    .final-cta {
      padding: 92px 0 104px;
      background: linear-gradient(135deg, var(--green-950) 0%, var(--green-800) 50%, var(--green-950) 100%);
      color: white;
      text-align: center;
    }
    .final-cta h2 {
      font-size: clamp(2.2rem,6vw,5rem);
      line-height: .92;
      letter-spacing: -0.07em;
      margin: 0 auto 18px;
      max-width: 880px;
    }
    .final-cta p { color: rgba(255,255,255,.78); max-width: 640px; margin: 0 auto 28px; font-size: 1.08rem; line-height: 1.65; }

    /* ── FOOTER ── */
    .footer {
      background: var(--green-950);
      color: rgba(255,255,255,.72);
      border-top: 1px solid rgba(255,255,255,.1);
      padding: 26px 0 108px;
    }
    .footer-inner { display: flex; justify-content: space-between; gap: 20px; align-items: center; flex-wrap: wrap; }
    .footer a { color: white; font-weight: 800; }
    .footer a:hover { color: var(--lime); }
    .footer-credit {
      color: rgba(255,255,255,.58);
      font-size: .84rem;
      font-weight: 700;
    }

    /* ── MOBILE STICKY ── */
    .mobile-sticky {
      position: fixed;
      left: 0; right: 0; bottom: 0;
      z-index: 50;
      background: rgba(13,31,19,.97);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
      display: none;
      gap: 9px;
      border-top: 1px solid rgba(255,255,255,.12);
    }
    .mobile-sticky a {
      flex: 1;
      min-height: 56px;
      border-radius: 999px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-weight: 950;
      font-size: .95rem;
      touch-action: manipulation;
    }
    .mobile-sticky .call { background: var(--lime); color: var(--green-950); }
    .mobile-sticky .text { background: white; color: var(--green-950); }
    .mobile-sticky .quote { background: rgba(255,255,255,.1); color: white; border: 1px solid rgba(255,255,255,.18); }

    /* ── RESPONSIVE ── */
    @media (max-width: 980px) {
      .nav-links { display: none; }
      .hero-grid, .split, .area-card { grid-template-columns: 1fr; }
      .hero { padding-top: 52px; }
      .services-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
      .featured-work-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
      .commercial-proof-row { grid-template-columns: 1fr; }
      .section-head { align-items: start; flex-direction: column; }
      .trust-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
      .testimonials-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
      .about-grid { grid-template-columns: 1fr; }
      .about-photo-col { position: static; }
      .about-photo-placeholder { aspect-ratio: 3/2; max-height: 260px; }
      .about-stats { grid-template-columns: repeat(4,minmax(0,1fr)); }
    }

    @media (max-width: 680px) {
      html { font-size: 15px; }
      .container { width: min(100% - 22px, var(--max)); }
      .topbar-inner { justify-content: center; text-align: center; }
      .topbar-links { display: none; }
      .nav { min-height: 68px; }
      .brand { padding: 8px 9px; gap: 0; }
      .nav .mobile-header-estimate {
        display: inline-flex;
        min-height: 44px;
        padding-inline: 14px;
        font-size: .88rem;
      }
      .brand-title { font-size: 1rem; }
      .brand-mark { width: 42px; height: 42px; }
      .brand-subtitle { display: none; }
      .nav-actions .btn-light { display: none; }
      .nav-actions .btn-primary { padding-inline: 14px; font-size: .9rem; }
      .hero {
        padding: 42px 0 30px;
        background:
          radial-gradient(circle at 18% 8%, rgba(201,240,95,.10) 0%, rgba(201,240,95,0) 34%),
          radial-gradient(circle at 86% 22%, rgba(208,176,112,.20) 0%, rgba(208,176,112,0) 36%),
          linear-gradient(180deg, #f7eddc 0%, #f2e7d3 100%);
      }
      .hero-actions .btn { width: 100%; }
      .hero-logo {
        width: 160px;
        height: 84px;
        margin-bottom: 12px;
      }
      h1 {
        font-size: clamp(2rem, 9vw, 3.25rem);
        line-height: 1.04;
      }
      .hero-proof { grid-template-columns: 1fr; }
      .quote-card { padding: 18px; border-radius: 24px; }
      .form-grid { grid-template-columns: 1fr; }
      input, select, textarea { font-size: 16px !important; }
      .btn { min-height: 52px; }
      section { padding: 62px 0; }
      .services-grid, .featured-work-grid, .faq-grid, .trust-grid { grid-template-columns: 1fr; }
      .featured-work { padding: 48px 0; }
      .featured-work-card { min-height: 230px; }
      .commercial-proof-card {
        grid-template-columns: 1fr;
        gap: 12px;
      }
      .commercial-proof-card img {
        aspect-ratio: 4 / 3;
        max-height: 280px;
      }
      .testimonials-grid { grid-template-columns: 1fr; }
      .footer-inner { flex-direction: column; text-align: center; }
      .about-stats { grid-template-columns: repeat(2,minmax(0,1fr)); }
      .mobile-sticky { display: flex; }
      .thank-you-actions .btn { width: 100%; }
      .thank-you-footer { padding-bottom: 24px; }
    }

/* ── THANK YOU PAGE ── */
.thank-you-main {
  min-height: calc(100vh - 160px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 72px 0 104px;
  background: var(--sand);
}
.thank-you-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: clamp(32px, 5vw, 48px);
  box-shadow: var(--shadow);
  text-align: center;
  max-width: 560px;
  width: 100%;
}
.thank-you-brand {
  display: inline-flex;
  margin: 0 auto 20px;
  color: var(--green-950);
  font-weight: 900;
  letter-spacing: -0.04em;
  font-size: 1rem;
}
.thank-you-card h1 {
  font-size: clamp(1.8rem, 5vw, 2.6rem);
  letter-spacing: -0.05em;
  margin: 0 0 14px;
  line-height: 1.05;
}
.thank-you-card p {
  color: var(--muted);
  font-weight: 650;
  margin: 0 0 28px;
  line-height: 1.65;
  font-size: 1rem;
}
.thank-you-card .thank-you-note {
  margin-top: -12px;
  color: rgba(17,22,17,.68);
}
.thank-you-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.thank-you-actions .btn { min-width: 140px; }
.thank-you-footer { padding-bottom: 40px; }
