  :root {
    --bg: #F4F7F6;
    --bg-2: #FFFFFF;
    --surface: #FFFFFF;
    --ink: #0C2A2E;
    --ink-soft: #3B5559;
    --line: #DCE6E4;
    --brand: #0B6B74;
    --brand-strong: #084F56;
    --brand-tint: #E6F1F0;
    --turf: #2F8F3E;
    --turf-bright: #47B255;
    --sand: #C9B99A;
    --focus: #0E7C86;
    --hero-ink: #F3FBF8;
    --hero-ink-soft: #C9E6DE;

    --display: "Futura", "Avenir Next", "Century Gothic", "Trebuchet MS", sans-serif;
    --body: "Charter", "Iowan Old Style", Georgia, "Times New Roman", serif;
    --util: "Futura", "Avenir Next", "Century Gothic", sans-serif;

    --wrap: 1180px;
    --step-1: clamp(0.82rem, 0.8rem + 0.1vw, 0.9rem);
    --step0: clamp(1rem, 0.97rem + 0.15vw, 1.12rem);
    --step1: clamp(1.2rem, 1.1rem + 0.5vw, 1.5rem);
    --step2: clamp(1.6rem, 1.3rem + 1.4vw, 2.4rem);
    --step3: clamp(2.4rem, 1.8rem + 3vw, 4.4rem);
  }

  * { box-sizing: border-box; }

  body {
    margin: 0;
    background: var(--bg);
    color: var(--ink);
    font-family: var(--body);
    font-size: var(--step0);
    line-height: 1.62;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
  }

  .wrap {
    width: 100%;
    max-width: var(--wrap);
    margin-inline: auto;
    padding-inline: clamp(1.15rem, 4vw, 2.5rem);
  }

  h1, h2, h3 {
    font-family: var(--display);
    font-weight: 700;
    line-height: 1.04;
    letter-spacing: -0.012em;
    text-wrap: balance;
    margin: 0;
  }

  p { margin: 0; }
  a { color: inherit; }

  .eyebrow {
    font-family: var(--util);
    font-weight: 600;
    font-size: var(--step-1);
    letter-spacing: 0.22em;
    text-transform: uppercase;
  }

  /* ---------- Nav ---------- */
  .nav {
    position: sticky;
    top: 0;
    z-index: 40;
    background: color-mix(in srgb, var(--bg) 86%, transparent);
    backdrop-filter: saturate(140%) blur(10px);
    border-bottom: 1px solid var(--line);
  }
  .nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    height: 66px;
  }
  .brand-mark {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-family: var(--display);
    font-weight: 700;
    letter-spacing: -0.01em;
    font-size: 1.2rem;
    color: var(--ink);
    text-decoration: none;
  }
  .brand-mark svg { display: block; }
  .brand-logo { height: 38px; width: 38px; display: block; mix-blend-mode: multiply; }
  .nav-links {
    display: flex;
    align-items: center;
    gap: 1.6rem;
    font-family: var(--util);
    font-size: 0.92rem;
    letter-spacing: 0.02em;
  }
  .nav-links a {
    text-decoration: none;
    color: var(--ink-soft);
    padding: 0.35rem 0;
    position: relative;
  }
  .nav-links a::after {
    content: "";
    position: absolute;
    left: 0; bottom: 0;
    width: 0; height: 2px;
    background: var(--brand);
    transition: width 0.25s ease;
  }
  .nav-links a:hover { color: var(--ink); }
  .nav-links a:hover::after { width: 100%; }
  .nav-links a[aria-current="page"] { color: var(--brand); }
  .nav-links a[aria-current="page"]::after { width: 100%; }
  .nav-actions { display: flex; align-items: center; gap: 0.9rem; }

  .btn {
    font-family: var(--util);
    font-weight: 600;
    letter-spacing: 0.02em;
    font-size: 0.95rem;
    border-radius: 2px;
    padding: 0.72rem 1.25rem;
    border: 1px solid transparent;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: transform 0.15s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  }
  .btn:active { transform: translateY(1px); }
  .btn-primary { background: var(--brand); color: #FFFFFF; }
  .btn-primary:hover { background: var(--brand-strong); }
  .btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
  .btn-ghost:hover { border-color: var(--brand); color: var(--brand); }
  .btn-phone {
    background: transparent;
    color: var(--brand);
    border-color: color-mix(in srgb, var(--brand) 40%, transparent);
  }
  .btn-phone:hover { background: var(--brand-tint); }

  /* ---------- Hero ---------- */
  .hero {
    position: relative;
    isolation: isolate;
    min-height: min(88vh, 760px);
    display: flex;
    align-items: flex-end;
    overflow: hidden;
  }
  .hero-photo {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 55%;
    z-index: -2;
    display: block;
  }
  .hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
      linear-gradient(180deg, rgba(4,26,22,0.5) 0%, rgba(4,38,34,0.1) 28%, transparent 52%),
      linear-gradient(0deg, rgba(3,18,16,0.9) 0%, rgba(3,18,16,0.42) 30%, transparent 64%),
      linear-gradient(90deg, rgba(3,18,16,0.55) 0%, rgba(3,18,16,0.15) 38%, transparent 60%);
  }
  .hero-inner {
    width: 100%;
    padding-top: 4rem;
    padding-bottom: clamp(2.5rem, 6vw, 5rem);
  }
  .hero .eyebrow { color: var(--hero-ink-soft); }
  .hero h1 {
    color: var(--hero-ink);
    font-size: var(--step3);
    max-width: 15ch;
    margin-top: 1rem;
    text-shadow: 0 2px 30px rgba(0, 20, 18, 0.4);
  }
  .hero-sub {
    color: var(--hero-ink-soft);
    max-width: 46ch;
    margin-top: 1.4rem;
    font-size: var(--step1);
    line-height: 1.5;
  }
  .hero-cta { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-top: 2rem; }
  .hero .btn-ghost { color: var(--hero-ink); border-color: color-mix(in srgb, #ffffff 45%, transparent); }
  .hero .btn-ghost:hover { border-color: #fff; color: #fff; background: rgba(255,255,255,0.08); }
  .hero-trust {
    margin-top: 2.4rem;
    display: flex; flex-wrap: wrap; align-items: center;
    gap: 0.6rem 1.4rem;
    color: var(--hero-ink-soft);
    font-family: var(--util);
    font-size: 0.82rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
  }
  .hero-trust span { opacity: 0.7; }

  /* ---------- Stat strip ---------- */
  .stats { background: var(--brand); color: #fff; }
  .stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; }
  .stat { padding: 2.4rem clamp(1rem, 3vw, 2rem); border-left: 1px solid color-mix(in srgb, #ffffff 16%, transparent); }
  .stat:first-child { border-left: none; }
  .stat .n {
    font-family: var(--display);
    font-weight: 700;
    font-size: clamp(2.1rem, 1.4rem + 2.6vw, 3.3rem);
    line-height: 1;
    letter-spacing: -0.02em;
    font-variant-numeric: tabular-nums;
  }
  .stat .l {
    margin-top: 0.7rem;
    font-family: var(--body);
    font-size: 0.98rem;
    line-height: 1.45;
    color: color-mix(in srgb, #ffffff 82%, transparent);
    max-width: 26ch;
  }

  /* ---------- Section scaffold ---------- */
  section { position: relative; }
  .band { padding-block: clamp(2rem, 4.2vw, 3.4rem); }
  .band-tint { background: var(--bg-2); border-block: 1px solid var(--line); }
  .kicker-row { display: flex; align-items: baseline; gap: 1rem; color: var(--brand); margin-bottom: 1.4rem; }
  .kicker-row .rule { flex: 0 0 34px; height: 2px; background: var(--brand); position: relative; top: -0.35em; }

  /* full-width section header: heading left, intro right */
  .section-head {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: clamp(1.2rem, 4vw, 3.2rem);
    align-items: end;
  }
  .section-head h2 { font-size: var(--step2); color: var(--ink); }
  .section-head p { color: var(--ink-soft); font-size: var(--step1); line-height: 1.5; }

  /* ---------- Intro split ---------- */
  .intro-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
  .intro-copy h2 { font-size: var(--step2); }
  .intro-copy p { margin-top: 1.2rem; color: var(--ink-soft); }
  .intro-copy .lead { color: var(--ink); font-size: var(--step1); line-height: 1.5; }
  .intro-panel {
    position: relative; border-radius: 3px; overflow: hidden;
    min-height: 360px; border: 1px solid var(--line); background: #16491f;
  }
  .intro-panel .panel-photo { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
  .intro-panel .quote {
    position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
    padding: 1.6rem 1.8rem;
    background: linear-gradient(0deg, rgba(4,26,22,0.85), transparent);
    color: #eefaf2; font-family: var(--body); font-size: 1.1rem; line-height: 1.5;
  }
  .intro-panel .quote cite {
    display: block; margin-top: 0.7rem; font-family: var(--util); font-style: normal;
    font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; color: #bfe6d5;
  }

  /* ---------- Services ---------- */
  .cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; margin-top: 1.9rem; }
  .card {
    background: var(--surface); border: 1px solid var(--line); border-radius: 3px;
    padding: 1.9rem 1.7rem 2rem; position: relative; overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  }
  .card::before {
    content: ""; position: absolute; left: 0; top: 0; right: 0; height: 5px;
    background: repeating-linear-gradient(90deg, var(--turf) 0 3px, var(--turf-bright) 3px 6px); opacity: 0.9;
  }
  .card:hover { transform: translateY(-4px); box-shadow: 0 18px 40px -24px rgba(6, 40, 40, 0.55); border-color: color-mix(in srgb, var(--brand) 40%, var(--line)); }
  .card .idx { font-family: var(--util); font-size: 0.78rem; letter-spacing: 0.14em; color: var(--brand); text-transform: uppercase; }
  .card h3 { font-size: 1.4rem; margin-top: 0.9rem; color: var(--ink); }
  .card p { margin-top: 0.8rem; color: var(--ink-soft); font-size: 0.98rem; }
  .card .more { display: inline-flex; align-items: center; gap: 0.4rem; margin-top: 1.3rem; font-family: var(--util); font-size: 0.86rem; letter-spacing: 0.04em; color: var(--brand); text-decoration: none; }
  .card .more:hover { gap: 0.7rem; }

  /* ---------- Maintenance feature ---------- */
  .feature-grid { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
  .feature-panel { border-radius: 3px; overflow: hidden; min-height: 380px; position: relative; border: 1px solid var(--line); background: #0c5860; }
  .feature-panel .panel-photo { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
  .feature-panel::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(4,26,22,0.86) 0%, rgba(4,26,22,0.12) 55%, rgba(4,26,22,0.4) 100%); }
  .feature-panel .big { position: absolute; left: 1.9rem; bottom: 1.7rem; right: 1.9rem; color: #eafaf7; z-index: 2; }
  .feature-panel .big .pct { font-family: var(--display); font-weight: 700; font-size: clamp(3rem, 2rem + 5vw, 5.2rem); line-height: 0.95; letter-spacing: -0.02em; }
  .feature-panel .big .cap { font-family: var(--body); font-size: 1.05rem; margin-top: 0.5rem; max-width: 30ch; color: #cfeee6; }
  .feature-list { list-style: none; padding: 0; margin: 1.8rem 0 0; display: grid; gap: 1.1rem; }
  .feature-list li { display: grid; grid-template-columns: 26px 1fr; gap: 0.9rem; align-items: start; }
  .feature-list .tick { width: 24px; height: 24px; border-radius: 999px; background: var(--brand-tint); color: var(--brand); display: inline-flex; align-items: center; justify-content: center; margin-top: 0.15rem; }
  .feature-list b { color: var(--ink); font-family: var(--util); font-weight: 600; letter-spacing: 0.01em; }
  .feature-list span { color: var(--ink-soft); }

  /* ---------- Before & After sliders ---------- */
  .ba-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; margin-top: 1.8rem; }
  .ba-card { margin: 0; }
  .ba-card figcaption { margin-top: 0.8rem; font-family: var(--util); font-weight: 600; font-size: 0.9rem; letter-spacing: 0.02em; color: var(--ink-soft); }
  .ba { position: relative; aspect-ratio: 4 / 5; border-radius: 4px; overflow: hidden; border: 1px solid var(--line); touch-action: none; user-select: none; background: #16491f; }
  .ba img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; pointer-events: none; }
  .ba-before { clip-path: inset(0 calc(100% - var(--pos, 50%)) 0 0); }
  .ba-tag { position: absolute; bottom: 0.75rem; z-index: 3; font-family: var(--util); font-weight: 700; font-size: 0.68rem; letter-spacing: 0.1em; text-transform: uppercase; color: #fff; background: rgba(6, 30, 28, 0.62); padding: 0.3rem 0.55rem; border-radius: 999px; pointer-events: none; }
  .ba-tag-before { left: 0.7rem; }
  .ba-tag-after { right: 0.7rem; }
  .ba-divider { position: absolute; top: 0; bottom: 0; left: var(--pos, 50%); width: 2px; background: #fff; transform: translateX(-1px); z-index: 3; pointer-events: none; box-shadow: 0 0 0 1px rgba(0,0,0,0.12); }
  .ba-knob { position: absolute; top: 50%; left: var(--pos, 50%); transform: translate(-50%, -50%); width: 40px; height: 40px; border-radius: 999px; background: #fff; color: var(--brand); display: flex; align-items: center; justify-content: center; box-shadow: 0 2px 12px rgba(0, 20, 18, 0.35); z-index: 4; pointer-events: none; }
  .ba-range { position: absolute; inset: 0; width: 100%; height: 100%; margin: 0; background: transparent; -webkit-appearance: none; appearance: none; cursor: ew-resize; z-index: 5; }
  .ba-range:focus-visible { outline: 2px solid var(--focus); outline-offset: 2px; }
  .ba-range::-webkit-slider-thumb { -webkit-appearance: none; appearance: none; width: 44px; height: 260px; background: transparent; cursor: ew-resize; }
  .ba-range::-moz-range-thumb { width: 44px; height: 260px; border: none; background: transparent; cursor: ew-resize; }
  .ba-range::-moz-range-track { background: transparent; }

  /* ---------- Work gallery ---------- */
  .gal-filter { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 1.8rem; }
  .gfbtn { font-family: var(--util); font-size: 0.86rem; font-weight: 600; letter-spacing: 0.02em; color: var(--ink-soft); background: transparent; border: 1px solid var(--line); border-radius: 999px; padding: 0.5rem 1.15rem; cursor: pointer; transition: color 0.18s, background 0.18s, border-color 0.18s; }
  .gfbtn:hover { color: var(--ink); border-color: var(--brand); }
  .gfbtn.is-active { color: #fff; background: var(--brand); border-color: var(--brand); }
  .gfbtn:focus-visible { outline: 2px solid var(--focus); outline-offset: 2px; }
  .gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 1.1rem; }
  .plate.is-hidden { display: none; }
  .ba-video { margin: 2rem auto 0; max-width: 760px; text-align: center; }
  .ba-video video { width: 100%; display: block; border-radius: 6px; border: 1px solid var(--line); background: #16491f; aspect-ratio: 16 / 9; object-fit: cover; box-shadow: 0 18px 40px -24px rgba(6, 40, 40, 0.55); }
  .ba-video figcaption { margin-top: 0.85rem; font-family: var(--util); font-weight: 600; font-size: 0.9rem; letter-spacing: 0.02em; color: var(--ink-soft); }
  .work-video { margin: 1.8rem 0 0; }
  .work-video video { width: 100%; display: block; border-radius: 4px; border: 1px solid var(--line); background: #16491f; aspect-ratio: 16 / 9; object-fit: cover; }
  .work-video figcaption { margin-top: 0.8rem; font-family: var(--util); font-weight: 600; font-size: 0.9rem; letter-spacing: 0.02em; color: var(--ink-soft); }
  .plate { position: relative; aspect-ratio: 4 / 3; border-radius: 3px; overflow: hidden; border: 1px solid var(--line); background: #16491f; color: #f1fbf6; display: flex; align-items: flex-end; padding: 1rem; isolation: isolate; }
  .plate img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; }
  .plate::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(0deg, rgba(3,22,20,0.72), transparent 55%); }
  .plate .tag { font-family: var(--util); font-size: 0.82rem; letter-spacing: 0.04em; font-weight: 600; }

  /* ---------- The Process sub-gallery ---------- */
  .subhead { display: flex; align-items: baseline; gap: 1rem; margin-top: 2.2rem; }
  .subhead h3 { font-size: clamp(1.3rem, 1rem + 1.4vw, 1.9rem); color: var(--ink); }
  .subhead p { color: var(--ink-soft); font-size: 0.98rem; max-width: 44ch; }
  .process-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 1.8rem; }
  .proc { position: relative; aspect-ratio: 4 / 3; border-radius: 3px; overflow: hidden; border: 1px solid var(--line); background: #16491f; }
  .proc img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

  /* ---------- Lightbox ---------- */
  .plate, .proc { cursor: zoom-in; }
  .lb { position: fixed; inset: 0; z-index: 90; display: none; align-items: center; justify-content: center; padding: clamp(1rem, 4vw, 3rem); background: rgba(4, 18, 16, 0.88); }
  .lb.open { display: flex; }
  .lb img { max-width: 100%; max-height: 100%; border-radius: 6px; box-shadow: 0 24px 70px -24px rgba(0,0,0,0.75); }
  .lb-close { position: absolute; top: 1rem; right: 1rem; width: 44px; height: 44px; border-radius: 999px; border: none; background: rgba(255,255,255,0.16); color: #fff; cursor: pointer; display: inline-flex; align-items: center; justify-content: center; }
  .lb-close:hover { background: rgba(255,255,255,0.28); }

  /* ---------- Partners ---------- */
  .partners { text-align: center; }
  .partners .head { max-width: 760px; margin-inline: auto; }
  .partners .eyebrow { color: var(--brand); display: block; margin-bottom: 1rem; }
  .partners h2 { font-size: var(--step2); color: var(--ink); }
  .partners h2 em { font-style: normal; color: var(--brand); }
  .partners .sub { color: var(--ink-soft); margin-top: 1rem; }
  .goodsmith { display: inline-flex; align-items: center; gap: 0.5rem; margin-top: 1.4rem; font-family: var(--util); font-weight: 600; font-size: 0.84rem; letter-spacing: 0.03em; color: var(--brand); background: var(--brand-tint); border: 1px solid color-mix(in srgb, var(--brand) 25%, transparent); padding: 0.5rem 0.95rem; border-radius: 999px; }
  .goodsmith svg { color: var(--turf); }
  .marquee { position: relative; margin-top: 1.7rem; overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent); mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent); }
  .marquee-track { display: flex; width: max-content; animation: marquee 55s linear infinite; }
  .marquee:hover .marquee-track { animation-play-state: paused; }
  .marquee.rev .marquee-track { animation-duration: 68s; animation-direction: reverse; }
  .pchip { flex: 0 0 auto; margin-right: 1rem; display: flex; flex-direction: column; gap: 0.12rem; text-align: left; background: var(--surface); border: 1px solid var(--line); border-radius: 4px; padding: 0.8rem 1.15rem; }
  .pchip b { font-family: var(--display); font-weight: 700; font-size: 1.02rem; color: var(--ink); letter-spacing: -0.01em; white-space: nowrap; }
  .pchip small { font-family: var(--body); font-size: 0.82rem; color: var(--ink-soft); white-space: nowrap; }
  @keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
  @media (prefers-reduced-motion: reduce) { .marquee { overflow-x: auto; } .marquee-track { animation: none; } }

  /* ---------- Reviews ---------- */
  .reviews { background: linear-gradient(160deg, #0b6b74 0%, #084f56 100%); color: #eafaf6; text-align: center; }
  .reviews .inner { max-width: 640px; margin-inline: auto; }
  .reviews .eyebrow { color: #bfe4dc; display: block; }
  .reviews .stars { color: #ffd24a; font-size: clamp(1.7rem, 1rem + 2.2vw, 2.3rem); letter-spacing: 0.18em; margin-top: 0.7rem; }
  .reviews h2 { color: #fff; font-size: var(--step2); margin-top: 0.5rem; }
  .reviews p { color: #cdeae4; margin: 1rem auto 0; }
  .reviews .btn-primary { background: #fff; color: var(--brand); margin-top: 1.7rem; }
  .reviews .btn-primary:hover { background: #eafaf6; }
  .reviews .btn-primary svg { color: #4285F4; }
  .review-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem; margin-top: 2.3rem; text-align: left; }
  .rcard { background: #fff; border-radius: 10px; padding: 1.4rem 1.35rem; margin: 0; display: flex; flex-direction: column; gap: 0.75rem; box-shadow: 0 16px 34px -22px rgba(0, 20, 18, 0.55); }
  .rcard .rstars { color: #ffb400; letter-spacing: 0.12em; font-size: 0.95rem; }
  .rcard blockquote { margin: 0; color: var(--ink); font-family: var(--body); font-size: 0.94rem; line-height: 1.55; }
  .rcard .who { margin-top: auto; font-family: var(--util); font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-soft); display: inline-flex; align-items: center; gap: 0.4rem; }
  .rcard .who svg { width: 13px; height: 13px; }
  @media (max-width: 900px) { .review-cards { grid-template-columns: 1fr; max-width: 520px; margin-inline: auto; } }

  /* ---------- CTA / Contact ---------- */
  .cta { background: radial-gradient(80% 120% at 85% 0%, rgba(71, 178, 85, 0.22), transparent 55%), linear-gradient(160deg, #073b41 0%, #05282c 70%); color: #eafaf6; }
  .cta-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
  .cta h2 { color: #fff; font-size: var(--step2); max-width: 16ch; }
  .cta p { color: #bfe4dc; margin-top: 1.1rem; max-width: 40ch; }
  .cta-actions { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-top: 1.8rem; }
  .cta .btn-primary { background: var(--turf-bright); color: #06231a; }
  .cta .btn-primary:hover { background: #57c266; }
  .cta .btn-ghost { color: #fff; border-color: rgba(255,255,255,0.4); }
  .cta .btn-ghost:hover { background: rgba(255,255,255,0.1); border-color: #fff; }
  .contact-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.14); border-radius: 4px; padding: 1.8rem; display: grid; gap: 1.15rem; }
  .contact-row { display: grid; grid-template-columns: 30px 1fr; gap: 0.9rem; align-items: start; }
  .contact-row .k { font-family: var(--util); font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: #8fc7bb; }
  .contact-row .v { font-size: 1.05rem; color: #eafaf6; }
  .contact-row .v a { text-decoration: none; }
  .contact-row .ic { color: var(--turf-bright); margin-top: 0.2rem; }
  .lead-form { margin-top: 1.6rem; display: grid; gap: 0.9rem; max-width: 560px; position: relative; }
  .lf-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.9rem; }
  .lf-field { display: flex; flex-direction: column; gap: 0.35rem; }
  .lf-field label { font-family: var(--util); font-size: 0.78rem; letter-spacing: 0.03em; color: #bfe4dc; }
  .lead-form input, .lead-form select, .lead-form textarea { width: 100%; font-family: var(--body); font-size: 0.95rem; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.16); border-radius: 6px; padding: 0.62rem 0.75rem; color: #eafaf6; outline: none; transition: border-color 0.2s ease; }
  .lead-form input::placeholder, .lead-form textarea::placeholder { color: #6f938c; }
  .lead-form input:focus, .lead-form select:focus, .lead-form textarea:focus { border-color: var(--turf-bright); }
  .lead-form select { appearance: none; -webkit-appearance: none; }
  .lead-form select option { color: #0c2a2e; }
  .lead-form textarea { resize: vertical; }
  .lead-form .btn-primary { justify-self: start; margin-top: 0.2rem; }
  .lead-form .hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; pointer-events: none; }
  .lf-note { font-family: var(--util); font-size: 0.82rem; line-height: 1.4; color: #bfe4dc; margin: 0; }
  @media (max-width: 560px) { .lf-grid { grid-template-columns: 1fr; } }

  /* ---------- Footer ---------- */
  footer.site { background: var(--bg-2); border-top: 1px solid var(--line); padding-block: 2.4rem; }
  .foot-inner { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 1rem; color: var(--ink-soft); font-family: var(--util); font-size: 0.85rem; letter-spacing: 0.02em; }

  a:focus-visible, button:focus-visible { outline: 2px solid var(--focus); outline-offset: 3px; border-radius: 2px; }

  @media (max-width: 900px) {
    .nav-links { display: none; }
    .intro-grid, .feature-grid, .cta-grid, .section-head { grid-template-columns: 1fr; }
    .section-head { gap: 0.9rem; }
    .stats-grid { grid-template-columns: 1fr; }
    .stat { border-left: none; border-top: 1px solid color-mix(in srgb, #ffffff 16%, transparent); }
    .stat:first-child { border-top: none; }
    .cards { grid-template-columns: 1fr; }
    .gallery { grid-template-columns: repeat(2, 1fr); }
    .process-grid { grid-template-columns: repeat(2, 1fr); }
    .ba-grid { grid-template-columns: 1fr; max-width: 460px; }
  }
  @media (max-width: 520px) {
    .gallery, .process-grid { grid-template-columns: 1fr; }
    .hero-trust { font-size: 0.72rem; }
  }
  @media (prefers-reduced-motion: reduce) {
    * { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
  }

  /* ---------- Chat widget ---------- */
  .soc-launch { position: fixed; right: clamp(1rem, 3vw, 2rem); bottom: clamp(1rem, 3vw, 2rem); z-index: 60; display: inline-flex; align-items: center; gap: 0.6rem; padding: 0.7rem 1.1rem 0.7rem 0.9rem; border: none; border-radius: 999px; background: var(--brand); color: #fff; font-family: var(--util); font-weight: 600; font-size: 0.95rem; cursor: pointer; box-shadow: 0 12px 30px -10px rgba(6, 40, 40, 0.55); transition: transform 0.18s ease, background 0.2s ease, opacity 0.2s ease; }
  .soc-launch:hover { transform: translateY(-2px); background: var(--brand-strong); }
  .soc-launch svg { display: block; }
  .soc-launch.soc-hidden { opacity: 0; visibility: hidden; transform: translateY(8px); }
  .soc-panel { position: fixed; right: clamp(1rem, 3vw, 2rem); bottom: clamp(1rem, 3vw, 2rem); z-index: 61; width: min(380px, calc(100vw - 2rem)); height: min(560px, calc(100vh - 2rem)); display: flex; flex-direction: column; background: var(--bg-2); border: 1px solid var(--line); border-radius: 14px; overflow: hidden; box-shadow: 0 24px 60px -20px rgba(6, 40, 40, 0.5); opacity: 0; visibility: hidden; transform: translateY(14px) scale(0.98); transform-origin: bottom right; transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease; }
  .soc-panel.soc-open { opacity: 1; visibility: visible; transform: translateY(0) scale(1); }
  .soc-head { display: flex; align-items: center; gap: 0.7rem; padding: 0.95rem 1rem; background: var(--brand); color: #fff; }
  .soc-badge { width: 38px; height: 38px; border-radius: 999px; background: rgba(255,255,255,0.16); display: inline-flex; align-items: center; justify-content: center; flex: 0 0 auto; }
  .soc-head .soc-h-title { font-family: var(--util); font-weight: 600; font-size: 1rem; line-height: 1.1; }
  .soc-head .soc-h-sub { font-family: var(--body); font-size: 0.8rem; opacity: 0.85; margin-top: 0.1rem; }
  .soc-head .soc-dot { color: #7ff0a8; }
  .soc-close { margin-left: auto; background: transparent; border: none; color: inherit; cursor: pointer; padding: 0.3rem; border-radius: 6px; opacity: 0.85; }
  .soc-close:hover { opacity: 1; background: rgba(255,255,255,0.14); }
  .soc-log { flex: 1 1 auto; overflow-y: auto; padding: 1rem; display: flex; flex-direction: column; gap: 0.7rem; background: var(--bg); }
  .soc-msg { max-width: 85%; font-family: var(--body); font-size: 0.95rem; line-height: 1.5; }
  .soc-msg p { margin: 0; }
  .soc-bot { align-self: flex-start; background: var(--surface); border: 1px solid var(--line); color: var(--ink); padding: 0.7rem 0.85rem; border-radius: 4px 14px 14px 14px; }
  .soc-user { align-self: flex-end; background: var(--brand); color: #fff; padding: 0.7rem 0.85rem; border-radius: 14px 4px 14px 14px; }
  .soc-actions { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 0.6rem; }
  .soc-action { display: inline-flex; align-items: center; gap: 0.4rem; font-family: var(--util); font-weight: 600; font-size: 0.85rem; text-decoration: none; padding: 0.5rem 0.8rem; border-radius: 999px; background: var(--turf-bright); color: #06231a; border: none; }
  .soc-action.soc-secondary { background: transparent; color: var(--brand); border: 1px solid color-mix(in srgb, var(--brand) 45%, transparent); }
  .soc-action:hover { filter: brightness(1.04); }
  .soc-chips { display: flex; flex-wrap: wrap; gap: 0.45rem; padding: 0 1rem 0.6rem; background: var(--bg); }
  .soc-chip { font-family: var(--util); font-size: 0.83rem; font-weight: 600; padding: 0.45rem 0.8rem; border-radius: 999px; background: var(--brand-tint); color: var(--brand); border: 1px solid color-mix(in srgb, var(--brand) 22%, transparent); cursor: pointer; transition: background 0.15s ease; }
  .soc-chip:hover { background: color-mix(in srgb, var(--brand) 16%, var(--bg-2)); }
  .soc-form { display: flex; gap: 0.5rem; padding: 0.75rem; border-top: 1px solid var(--line); background: var(--bg-2); }
  .soc-input { flex: 1 1 auto; font-family: var(--body); font-size: 0.95rem; padding: 0.6rem 0.8rem; border: 1px solid var(--line); border-radius: 999px; background: var(--bg); color: var(--ink); outline: none; }
  .soc-input:focus { border-color: var(--brand); }
  .soc-send { flex: 0 0 auto; width: 42px; height: 42px; border-radius: 999px; border: none; background: var(--brand); color: #fff; cursor: pointer; display: inline-flex; align-items: center; justify-content: center; }
  .soc-send:hover { background: var(--brand-strong); }
  .soc-note { font-family: var(--util); font-size: 0.68rem; letter-spacing: 0.02em; color: var(--ink-soft); text-align: center; padding: 0 1rem 0.7rem; background: var(--bg-2); }
