/* ============================================================
   SEABASS LAWN CARE — site.css
   "Hometown Trade" — Bebas Neue + Hanken Grotesk.
   Warm cream paper, deep botanical greens, gold accent, a
   circular crest logo. Tall signage headlines, gold CTAs.
   Grain + mowing-stripe texture so no surface reads flat.
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  /* warm paper base (bone / cream — never cold gray) */
  --paper:    #F4F0E4;   /* warm bone */
  --paper-2:  #FBF8F0;   /* card / warm off-white */
  --sand:     #EAE2CF;   /* deeper warm sand — alt sections */
  --sand-2:   #E1D8BF;

  /* ink / text — warm green-black */
  --ink:      #16271C;
  --body:     #43524A;
  --muted:    #626D63;
  --line:     #E0D8C4;   /* warm hairline */
  --line-2:   #D5CBB1;

  /* botanical greens */
  --turf:     #2C7A44;   /* primary interactive green */
  --turf-600: #226237;
  --turf-700: #184C2A;
  --pine:     #17492B;
  --forest:   #102A1B;   /* deep near-black green */
  --forest-2: #16351F;

  /* accents — gold is the signature (Option C "Hometown") */
  --gold:      #EBB542;   /* bright gold — on-dark accents, button fill, stars */
  --gold-600:  #D9A02F;   /* button hover */
  --gold-deep: #A26A12;   /* readable gold on light — accent words, rules */
  --amber:     #E2A948;   /* alt on-dark accent */
  --mint:      #C9E7CF;   /* light green for on-dark eyebrows */

  /* type */
  --font-display: 'Bebas Neue', 'Arial Narrow', system-ui, sans-serif;
  --font-sans: 'Hanken Grotesk', system-ui, -apple-system, 'Segoe UI', sans-serif;

  /* grain — faint neutral tooth layered over any surface */
  --grain: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='170' height='170'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.82' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23g)' opacity='0.05'/%3E%3C/svg%3E");

  --nav-h: 104px;
  --page-max: 1240px;
  --page-wide: 1480px;   /* wide band (services / reviews) */
  --gutter: clamp(20px, 5vw, 64px);
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 18px;
  --radius-pill: 999px;
  --shadow-sm: 0 2px 10px rgba(16, 42, 26, 0.05);
  --shadow-md: 0 16px 40px -14px rgba(16, 42, 26, 0.20);
  --shadow-lg: 0 34px 74px -22px rgba(9, 32, 20, 0.30);
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* ---------- Reset / base ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
html, body { overflow-x: clip; }
body {
  font-family: var(--font-sans);
  color: var(--body);
  background-color: var(--paper);
  background-image: var(--grain);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-feature-settings: "ss01", "cv05";
}
img, svg, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
ul { list-style: none; }
:focus-visible { outline: 3px solid var(--turf); outline-offset: 3px; border-radius: 4px; }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--turf); color: #fff; padding: 12px 18px; border-radius: 0 0 10px 0;
  font-weight: 700;
}
.skip-link:focus { left: 0; }

/* ---------- Utilities ---------- */
.container { width: 100%; max-width: var(--page-max); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding: clamp(72px, 9vw, 128px) 0; }

/* "ruled" section label — gold tick + tall tracked caps (Bebas) */
.kicker {
  display: inline-flex; align-items: center; gap: 13px;
  font-family: var(--font-display);
  font-size: 1rem; font-weight: 400; line-height: 1;
  text-transform: uppercase; letter-spacing: 0.2em;
  color: var(--turf-700); margin-bottom: 18px;
}
.kicker::before {
  content: ""; width: 30px; height: 2px; flex: none;
  background: var(--gold-deep); border-radius: 2px;
}
.kicker-light { color: var(--gold); }
.kicker-light::before { background: var(--gold); }

.h2 {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(2.2rem, 4.6vw, 3.7rem); line-height: 0.95;
  letter-spacing: 0.01em; text-transform: uppercase; color: var(--ink);
}
.h2 em { font-style: normal; color: var(--gold-deep); }
.h2-light { color: #fff; }
.h2-light em { color: var(--gold); }
.section-head { max-width: 820px; margin-bottom: clamp(38px, 5vw, 60px); }
.section-intro { margin-top: 18px; font-size: 1.08rem; color: var(--muted); max-width: 60ch; }

/* buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 24px; border-radius: 9px;
  font-family: var(--font-sans); font-weight: 800; font-size: 0.98rem;
  letter-spacing: 0.005em; border: 2px solid transparent;
  transition: background-color .22s var(--ease), color .22s var(--ease),
              border-color .22s var(--ease), box-shadow .22s var(--ease), transform .22s var(--ease);
  will-change: transform;
}
.btn-lg { padding: 16px 30px; font-size: 1.05rem; }
.btn-block { width: 100%; }
/* primary = gold with deep-green text (Option C signature) */
.btn-solid {
  background: var(--gold); color: var(--forest);
  box-shadow: 0 10px 24px -8px rgba(139, 98, 12, 0.5), inset 0 1px 0 rgba(255,255,255,0.25);
}
.btn-solid:hover, .btn-solid:focus-visible {
  background: var(--gold-600); transform: translateY(-2px);
  box-shadow: 0 16px 30px -8px rgba(139, 98, 12, 0.55), inset 0 1px 0 rgba(255,255,255,0.3);
}
.btn-ghost-light { background: rgba(255,255,255,0.06); color: #fff; border-color: rgba(255,255,255,0.72); backdrop-filter: blur(2px); }
.btn-ghost-light:hover, .btn-ghost-light:focus-visible { background: #fff; color: var(--turf-700); border-color: #fff; transform: translateY(-2px); }
.btn-ghost-solid { background: var(--paper-2); color: var(--turf-700); border-color: var(--turf); box-shadow: var(--shadow-md); }
.btn-ghost-solid:hover, .btn-ghost-solid:focus-visible { background: var(--turf); color: #fff; transform: translateY(-2px); }

/* arrow-link with an animated gold underline */
.arrow-link {
  display: inline-flex; align-items: center; gap: 7px; position: relative;
  font-family: var(--font-sans); font-weight: 700; font-size: 0.96rem;
  color: var(--turf-700);
}
.arrow-link::after {
  content: ""; position: absolute; left: 0; bottom: -3px; height: 2px; width: 100%;
  background: var(--gold-deep); transform: scaleX(0); transform-origin: left;
  transition: transform .3s var(--ease);
}
.arrow-link:hover::after, .arrow-link:focus-visible::after { transform: scaleX(1); }
.arrow-link .arr { transition: transform .22s var(--ease); }
.arrow-link:hover .arr, .arrow-link:focus-visible .arr { transform: translateX(4px); }
.arrow-link-light { color: #fff; }
.arrow-link-light::after { background: var(--amber); }

/* reveal on scroll */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* noise overlay (breaks up flat dark color → no dither hairline) */
.noise-overlay {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/></svg>");
  position: absolute; inset: 0; pointer-events: none; opacity: 0.04; mix-blend-mode: overlay;
}

/* ---------- Brand logo lockup (crest + wordmark) ---------- */
.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand-mark { width: 46px; height: 46px; flex: none; color: var(--turf-700); }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-name {
  font-family: var(--font-display); font-weight: 400;
  font-size: 1.7rem; letter-spacing: 0.03em; color: var(--ink); line-height: 0.9;
}
.brand-tag {
  font-family: var(--font-sans); font-weight: 700; font-size: 0.58rem;
  text-transform: uppercase; letter-spacing: 0.34em; color: var(--gold-deep); margin-top: 5px;
}

/* ---------- Nav ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100; height: var(--nav-h);
  display: flex; align-items: center;
  background: transparent; border-bottom: 1px solid transparent;
  transition: background-color .35s var(--ease), border-color .35s var(--ease), box-shadow .35s var(--ease);
}
.nav-inner { width: 100%; max-width: var(--page-max); margin-inline: auto; padding-inline: var(--gutter);
  display: flex; align-items: center; justify-content: space-between; gap: 24px; }

.nav-brand { opacity: 0; visibility: hidden; gap: 15px; transition: opacity .3s var(--ease), visibility 0s linear .3s; }
/* nav logo ~1.7x bigger so the crest text is legible (taller nav bar makes room) */
.nav-brand .brand-mark { width: 78px; height: 78px; }
.nav-brand .brand-name { font-size: 2.4rem; }
.nav-brand .brand-tag  { font-size: 0.72rem; letter-spacing: 0.3em; margin-top: 7px; }
.nav--solid .nav-brand { opacity: 1; visibility: visible; transition: opacity .3s var(--ease); }
.nav--solid { background: rgba(244, 240, 228, 0.92); backdrop-filter: saturate(1.4) blur(10px);
  border-bottom-color: var(--line); box-shadow: 0 6px 22px rgba(16,38,24,0.06); }

.nav-links { display: flex; align-items: center; gap: clamp(14px, 2vw, 30px); }
.nav-link {
  font-family: var(--font-sans); font-weight: 600; font-size: 0.95rem; color: #fff;
  text-shadow: 0 1px 10px rgba(9, 26, 16, 0.55); transition: color .2s var(--ease), opacity .2s var(--ease);
}
.nav-link:hover, .nav-link:focus-visible { opacity: 0.75; }
.nav--solid .nav-link { color: var(--ink); text-shadow: none; }
.nav--solid .nav-link:hover, .nav--solid .nav-link:focus-visible { color: var(--turf); opacity: 1; }
.nav-cta { color: var(--forest) !important; text-shadow: none; }
.nav--solid .nav-cta { color: var(--forest) !important; }

.menu-btn { display: none; width: 46px; height: 46px; position: relative; background: transparent; border: 0; }
.menu-btn .bar { position: absolute; left: 11px; right: 11px; height: 2px; border-radius: 2px; background: #fff;
  box-shadow: 0 1px 6px rgba(9,26,16,0.5); transition: transform .3s var(--ease), opacity .25s var(--ease), background-color .25s; }
.nav--solid .menu-btn .bar { background: var(--ink); box-shadow: none; }
.menu-btn .bar:nth-child(1) { top: 16px; }
.menu-btn .bar:nth-child(2) { top: 22px; }
.menu-btn .bar:nth-child(3) { top: 28px; }
.menu-btn[aria-expanded="true"] .bar { background: #fff; box-shadow: none; }
.menu-btn[aria-expanded="true"] .bar:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-btn[aria-expanded="true"] .bar:nth-child(2) { opacity: 0; }
.menu-btn[aria-expanded="true"] .bar:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.mobile-menu {
  position: fixed; inset: 0; z-index: 95;
  background:
    repeating-linear-gradient(90deg, rgba(255,255,255,0.018) 0 2px, transparent 2px 92px),
    linear-gradient(180deg, #163a24, #0E2A1A);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 26px;
  opacity: 0; visibility: hidden; transition: opacity .3s var(--ease), visibility .3s var(--ease);
}
.mobile-menu.open { opacity: 1; visibility: visible; }
.mobile-menu a { font-family: var(--font-display); font-weight: 400; font-size: 2rem; letter-spacing: 0.03em; text-transform: uppercase; color: #fff; }
.mobile-menu a.btn { font-family: var(--font-sans); font-weight: 800; font-size: 1.05rem; letter-spacing: 0.02em; text-transform: none; margin-top: 8px; }
.mobile-menu a:not(.btn):hover { color: var(--gold); }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; min-height: 100svh; display: flex; overflow: visible; isolation: isolate; background: var(--forest); }
.hero-media { position: absolute; top: 0; left: 0; right: 0; height: 100svh; overflow: hidden; z-index: 0; }
.hero-media video, .hero-media .hero-poster {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 62%;
  opacity: 0; transition: opacity 1s ease;
}
.hero-media video.active, .hero-media .hero-poster.active { opacity: 1; }

/* brand-green readability wash on the LEFT + faint mowing stripes; video stays clear on the right */
.hero-wash { position: absolute; top: 0; left: 0; right: 0; height: 100svh; z-index: 1; pointer-events: none;
  background:
    repeating-linear-gradient(90deg, rgba(255,255,255,0.02) 0 2px, transparent 2px 116px),
    linear-gradient(96deg, rgba(9, 26, 16, 0.84) 0%, rgba(11, 32, 20, 0.56) 34%, rgba(11, 32, 20, 0.12) 52%, rgba(11,32,20,0) 66%),
    linear-gradient(0deg, rgba(9,26,16,0.44) 0%, rgba(9,26,16,0) 26%);
}

/* hero logo ~2.5x — reads as the site's crest emblem, big & legible */
.hero-brand { position: absolute; z-index: 3; top: 24px; gap: 20px;
  left: calc(max((100% - var(--page-max)) / 2, 0px) + var(--gutter)); }
.hero-brand .brand-mark { width: 128px; height: 128px; color: var(--gold);
  filter: drop-shadow(0 1px 4px rgba(9,26,16,0.65)) drop-shadow(0 6px 22px rgba(9,26,16,0.5)); }
.hero-brand .brand-name { color: #fff; font-size: 3rem;
  text-shadow: 0 1px 4px rgba(9,26,16,0.7), 0 3px 18px rgba(9,26,16,0.55); }
.hero-brand .brand-tag { color: var(--gold); font-size: 0.95rem; letter-spacing: 0.3em; margin-top: 9px;
  text-shadow: 0 1px 6px rgba(9,26,16,0.75); }

/* copy sits just under the hero crest (start-aligned) rather than centred in
   the tall row the quote card creates — that centring left a big dead gap
   between the nav/logo and the first line of text. The quote card keeps its
   own `align-self: end` so it still straddles into Services. */
.hero-inner {
  position: relative; z-index: 2; width: 100%; max-width: var(--page-max); margin-inline: auto;
  padding: calc(var(--nav-h) + 60px) var(--gutter) 46px;
  min-height: 100svh; display: grid; grid-template-columns: minmax(0, 1fr) 430px;
  gap: clamp(32px, 5vw, 76px); align-items: start;
}
.hero-copy { color: #fff; max-width: 640px; }
/* lighter gold + a tight dark halo — plain gold got lost on bright footage.
   Sized up: at 1.05rem it was too small to read and the space between the
   crest and the headline just read as a gap. */
.hero-eyebrow { display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--font-display); font-weight: 400; font-size: 1.3rem;
  text-transform: uppercase; letter-spacing: 0.16em; color: #F7D77F; margin-bottom: 14px;
  text-shadow: 0 1px 2px rgba(9,26,16,0.95), 0 2px 10px rgba(9,26,16,0.8); }
.hero-eyebrow::before { content: ""; width: 30px; height: 2px; flex: none;
  background: var(--gold); border-radius: 2px; }
.hero-title { font-family: var(--font-display); font-weight: 400;
  font-size: clamp(3.2rem, 8vw, 6rem); text-transform: uppercase;
  line-height: 0.9; letter-spacing: 0.01em; color: #fff; text-shadow: 0 3px 26px rgba(9,26,16,0.45); }
.hero-title em { font-style: normal; color: var(--gold); }
.hero-sub { margin-top: 22px; font-size: 1.12rem; line-height: 1.6; color: rgba(255,255,255,0.92); max-width: 52ch;
  text-shadow: 0 1px 12px rgba(9,26,16,0.4); }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }

/* trust badges */
.trust-badges { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.badge { display: inline-flex; align-items: center; gap: 11px; padding: 10px 15px;
  background: rgba(251, 248, 240, 0.97); border-radius: 12px; box-shadow: var(--shadow-md);
  border: 1px solid rgba(255,255,255,0.5); }
.badge-g { width: 26px; height: 26px; flex: none; }
.badge-ico { width: 24px; height: 24px; flex: none; color: var(--turf); }
.badge-text { display: flex; flex-direction: column; line-height: 1.12; }
.badge-top { font-family: var(--font-sans); font-weight: 800; font-size: 0.94rem; color: var(--ink); display: flex; align-items: center; gap: 6px; }
.badge-stars { color: var(--gold); font-size: 0.8rem; letter-spacing: 1px; }
.badge-sub { font-size: 0.74rem; color: var(--muted); font-weight: 600; }

/* quote box — straddles hero + services */
.quote-box {
  align-self: end; z-index: 5; width: 100%; position: relative; overflow: hidden;
  background: var(--paper-2); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: clamp(24px, 2vw, 32px); box-shadow: var(--shadow-lg);
  margin-bottom: calc(-1 * var(--q-overlap, 0px) - 46px);
}
/* signature gold top accent bar on the quote card */
.quote-box::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--turf), var(--gold)); }
@media (min-width: 861px) { .quote-box { --q-overlap: 64px; } }
.quote-title { font-family: var(--font-display); font-weight: 400;
  font-size: 2rem; color: var(--ink); letter-spacing: 0.02em; text-transform: uppercase; line-height: 0.95; }
.quote-sub { margin-top: 5px; font-size: 0.92rem; color: var(--muted); margin-bottom: 18px; }
.field { margin-bottom: 12px; }
.field label { display: block; font-family: var(--font-sans); font-weight: 700; font-size: 0.72rem;
  text-transform: uppercase; letter-spacing: 0.1em; color: var(--ink); margin-bottom: 6px; }
.field .opt { color: var(--muted); font-weight: 500; letter-spacing: 0.02em; text-transform: none; }
.field input, .field select, .field textarea {
  width: 100%; font: inherit; font-size: 0.98rem; color: var(--ink);
  background: var(--paper); border: 1.5px solid var(--line-2); border-radius: 10px; padding: 11px 13px;
  transition: border-color .18s var(--ease), box-shadow .18s var(--ease);
}
.field textarea { resize: vertical; min-height: 52px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--turf); box-shadow: 0 0 0 3px rgba(44,122,68,0.16); }
.field input.field-error, .field select.field-error { border-color: #c0442e; box-shadow: 0 0 0 3px rgba(192,68,46,0.16); }
.quote-box .btn-block { margin-top: 6px; }
.quote-status { font-size: 0.85rem; color: var(--turf-700); margin-top: 10px; min-height: 1.2em; }
.quote-status a { color: var(--turf-700); font-weight: 700; text-decoration: underline; }
.quote-alt { font-size: 0.85rem; color: var(--muted); margin-top: 10px; text-align: center; }
.quote-alt a { color: var(--turf-700); font-weight: 700; }

/* ============================================================
   SERVICES
   ============================================================ */
/* top padding only has to clear the straddling quote card (~64px) — 168px
   left a big empty cream band above the heading */
.services { position: relative; padding-top: clamp(64px, 7vw, 104px); }
/* widen the services band so the cards take advantage of the side space */
.services .container { max-width: var(--page-wide); }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 34px; }
.service-card { position: relative; background: var(--paper-2); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .28s var(--ease), box-shadow .28s var(--ease), border-color .28s var(--ease); }
/* signature: gold top-accent bar wipes in on hover */
.service-card::after { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px; z-index: 2;
  background: linear-gradient(90deg, var(--turf), var(--gold));
  transform: scaleX(0); transform-origin: left; transition: transform .35s var(--ease); }
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--line-2); }
.service-card:hover::after { transform: scaleX(1); }
.service-media { aspect-ratio: 16 / 11; overflow: hidden; background: var(--sand); }
.service-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.service-card:hover .service-media img { transform: scale(1.05); }
.service-body { padding: 30px 30px 34px; }
.service-name { font-family: var(--font-display); font-weight: 400; text-transform: uppercase;
  font-size: 1.95rem; color: var(--ink); letter-spacing: 0.02em; line-height: 0.98; }
.service-body p { margin: 12px 0 18px; font-size: 1.06rem; color: var(--body); }
.service-body .arrow-link { font-size: 1rem; }
/* mobile-only "see all services" toggle (hidden on desktop) */
.svc-more-wrap { display: none; }

/* ============================================================
   ABOUT — scenic image band
   ============================================================ */
.about { position: relative; min-height: 84svh; display: flex; align-items: center; overflow: hidden; background: var(--forest); }
.about-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 55%; }
.about-wash { position: absolute; inset: 0; pointer-events: none;
  background:
    repeating-linear-gradient(90deg, rgba(255,255,255,0.018) 0 2px, transparent 2px 108px),
    linear-gradient(92deg, rgba(9,26,16,0.9) 0%, rgba(11,32,20,0.72) 40%, rgba(11,32,20,0.2) 66%, rgba(11,32,20,0) 82%); }
.about-inner { position: relative; z-index: 2; padding-block: clamp(64px, 8vw, 104px); }
.about-content { max-width: 620px; }
.about-copy { margin-top: 18px; font-size: 1.1rem; line-height: 1.7; color: rgba(255,255,255,0.9); }
.about-points { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 26px; margin: 26px 0 30px; }
.about-points li { display: flex; align-items: center; gap: 10px; font-family: var(--font-sans);
  font-weight: 600; font-size: 1rem; color: #fff; }
.about-points svg { width: 22px; height: 22px; flex: none; color: var(--gold); }
/* real CTA button in the "Why Seabass" band (was just a faint text link) */
.about-ctas { display: flex; flex-wrap: wrap; align-items: center; gap: 18px 30px; margin-top: 30px; }

/* ============================================================
   GALLERY
   ============================================================ */
.gallery { background-color: var(--sand); background-image: var(--grain); padding-bottom: clamp(56px, 7vw, 92px); }
.gallery-viewport { margin-top: 6px; }
.gallery-track { display: flex; gap: 20px; overflow-x: auto; scroll-snap-type: x mandatory;
  padding: 8px var(--gutter) 20px; scroll-padding-left: var(--gutter);
  scrollbar-width: none; -ms-overflow-style: none; }
.gallery-track::-webkit-scrollbar { display: none; }
.shot { flex: 0 0 clamp(280px, 42vw, 520px); scroll-snap-align: start; border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-md); aspect-ratio: 4 / 3; background: var(--sand-2); }
.shot img { width: 100%; height: 100%; object-fit: cover; }
.gallery-controls { display: flex; gap: 12px; margin-top: 22px; }
.round-btn { width: 52px; height: 52px; border-radius: 50%; background: var(--paper-2); border: 1.5px solid var(--line-2);
  color: var(--ink); display: inline-flex; align-items: center; justify-content: center; box-shadow: var(--shadow-sm);
  transition: background-color .2s var(--ease), color .2s var(--ease), transform .2s var(--ease), border-color .2s var(--ease); }
.round-btn svg { width: 22px; height: 22px; }
.round-btn:hover { background: var(--turf); color: #fff; border-color: var(--turf); transform: translateY(-2px); }

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews { position: relative; }
.reviews .container { max-width: var(--page-wide); }
.reviews-head { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 24px;
  margin-bottom: clamp(30px, 4vw, 48px); }
.rating-lockup { display: inline-flex; align-items: center; gap: 14px; background: var(--paper-2);
  border: 1px solid var(--line); border-radius: var(--radius); padding: 14px 20px; box-shadow: var(--shadow-sm); }
.rating-g { width: 34px; height: 34px; flex: none; }
.rating-num { font-family: var(--font-display); font-weight: 400; font-size: 2.2rem; color: var(--ink);
  display: flex; align-items: baseline; gap: 10px; line-height: 1; letter-spacing: 0.02em; }
.rating-stars { color: var(--gold); font-size: 1rem; letter-spacing: 1px; }
.rating-cap { font-size: 0.82rem; color: var(--muted); margin-top: 4px; }

.review-feature { position: relative; overflow: hidden;
  background:
    repeating-linear-gradient(90deg, rgba(255,255,255,0.03) 0 2px, transparent 2px 60px),
    linear-gradient(120deg, var(--pine), var(--turf-700));
  color: #fff; border-radius: var(--radius-lg); padding: clamp(30px, 4vw, 48px); margin-bottom: 26px;
  box-shadow: var(--shadow-md); }
.review-feature p { font-family: var(--font-sans); font-weight: 600;
  font-size: clamp(1.3rem, 2.5vw, 1.85rem); line-height: 1.35; letter-spacing: -0.01em; }
.review-feature cite { display: block; margin-top: 16px; font-family: var(--font-sans); font-style: normal;
  font-weight: 700; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--mint); }

.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.review-card { background: var(--paper-2); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px; box-shadow: var(--shadow-sm); transition: transform .25s var(--ease), box-shadow .25s var(--ease); }
.review-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.review-stars { color: var(--gold); letter-spacing: 2px; font-size: 1.05rem; margin-bottom: 14px; }
.review-card blockquote { font-family: var(--font-sans); font-weight: 500;
  font-size: 1.04rem; color: var(--ink); line-height: 1.55; }
.review-card figcaption { display: flex; align-items: center; gap: 12px; margin-top: 22px; }
.review-avatar { width: 42px; height: 42px; border-radius: 50%; flex: none; display: inline-flex;
  align-items: center; justify-content: center; background: var(--turf); color: #fff;
  font-family: var(--font-sans); font-weight: 800; }
.review-who { display: flex; flex-direction: column; line-height: 1.25; }
.review-name { font-family: var(--font-sans); font-weight: 700; color: var(--ink); }
.review-meta { font-size: 0.76rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.06em; }

/* ============================================================
   FAQ
   ============================================================ */
.faq { position: relative; background-color: var(--sand); background-image: var(--grain); }
.faq-inner { max-width: 860px; }
.faq-list { border-top: 1px solid var(--line-2); }
.faq-item { border-bottom: 1px solid var(--line-2); }
.faq-item summary { list-style: none; cursor: pointer; padding: 24px 44px 24px 4px; position: relative;
  font-family: var(--font-sans); font-weight: 700; font-size: 1.12rem; color: var(--ink); letter-spacing: -0.01em;
  transition: color .2s var(--ease); }
.faq-item summary:hover { color: var(--turf-700); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: ""; position: absolute; right: 6px; top: 50%; width: 13px; height: 13px;
  margin-top: -7px; border-right: 2.4px solid var(--gold-deep); border-bottom: 2.4px solid var(--gold-deep);
  transform: rotate(45deg); transition: transform .25s var(--ease); }
.faq-item[open] summary::after { transform: rotate(-135deg); }
.faq-a { padding: 0 44px 24px 4px; }
.faq-a p { color: var(--body); font-size: 1rem; }
.faq-a a { color: var(--turf-700); font-weight: 700; text-decoration: underline; }

/* ============================================================
   CTA — background-video band
   ============================================================ */
.cta-band { position: relative; overflow: hidden; background: var(--forest); }
.cta-band video, .cta-band .cta-poster { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 70%; }
.cta-wash { position: absolute; inset: 0; pointer-events: none;
  background:
    repeating-linear-gradient(90deg, rgba(255,255,255,0.02) 0 2px, transparent 2px 120px),
    linear-gradient(0deg, rgba(9,26,16,0.84) 4%, rgba(11,32,20,0.34) 46%, rgba(11,32,20,0.08) 100%); }
.cta-content { position: relative; z-index: 2; padding-block: clamp(88px, 12vw, 150px); max-width: 760px; }
.cta-title { font-family: var(--font-display); font-weight: 400; text-transform: uppercase;
  font-size: clamp(2.6rem, 6vw, 4.4rem); line-height: 0.92; letter-spacing: 0.01em; color: #fff;
  text-shadow: 0 2px 22px rgba(9,26,16,0.4); }
.cta-title em { font-style: normal; color: var(--gold); }
.cta-sub { margin-top: 18px; font-size: 1.14rem; color: rgba(255,255,255,0.92); max-width: 54ch; text-shadow: 0 1px 12px rgba(9,26,16,0.4); }
.cta-ctas { margin-top: 32px; }

/* ============================================================
   FOOTER  (gradient + mowing stripes + noise → premium, never flat)
   ============================================================ */
.footer { position: relative; color: rgba(255,255,255,0.78);
  background:
    repeating-linear-gradient(90deg, rgba(255,255,255,0.016) 0 2px, transparent 2px 128px),
    linear-gradient(180deg, #163a24, #0C2416);
  padding: clamp(60px, 7vw, 88px) 0 30px; overflow: hidden; }
.footer-inner { position: relative; z-index: 1; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; }
.footer-brandmark .brand-mark { width: 60px; height: 60px; color: var(--gold); }
.footer-brandmark .brand-name { color: #fff; font-size: 1.95rem; }
.footer-brandmark .brand-tag { color: var(--gold); }
.footer-blurb { margin-top: 16px; font-size: 0.96rem; max-width: 38ch; color: rgba(255,255,255,0.72); }
.footer-col h4 { font-family: var(--font-display); font-weight: 400; font-size: 1rem; text-transform: uppercase;
  letter-spacing: 0.16em; color: var(--gold); margin-bottom: 16px; }
.footer-col ul { display: flex; flex-direction: column; gap: 11px; }
.footer-col a, .footer-col span { font-size: 0.96rem; color: rgba(255,255,255,0.74); transition: color .2s var(--ease); }
.footer-col a:hover { color: var(--gold); }
.footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 10px;
  margin-top: clamp(40px, 5vw, 60px); padding-top: 22px; border-top: 1px solid rgba(255,255,255,0.12);
  font-size: 0.82rem; color: rgba(255,255,255,0.55); }

/* ============================================================
   MOBILE STICKY CTA — two floating buttons (no panel)
   ============================================================ */
.sticky-cta { display: none; position: fixed; z-index: 90; left: 14px; right: 14px;
  bottom: calc(14px + env(safe-area-inset-bottom, 0px)); gap: 12px;
  transform: translateY(160%); opacity: 0; transition: transform .35s var(--ease), opacity .3s var(--ease); pointer-events: none; }
.sticky-cta.show { transform: none; opacity: 1; pointer-events: auto; }
.sticky-cta .btn { flex: 1; padding: 15px 10px; font-size: 1.02rem; box-shadow: var(--shadow-lg); }

/* ============================================================
   AMBIENT — empty layer, kept as an anchor for a future
   background treatment. Content sits above it via z-index.
   ============================================================ */
.ambient {
  position: absolute; inset: 0; z-index: 0; overflow: hidden;
  pointer-events: none; contain: layout paint style;
}
/* lift real content above the ambient layer */
.services .container,
.reviews .container,
.faq .container { position: relative; z-index: 1; }


/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1080px) {
  .hero-inner { grid-template-columns: minmax(0, 1fr) 380px; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 34px; }
  .hero-brand .brand-mark { width: 104px; height: 104px; }
  .hero-brand .brand-name { font-size: 2.5rem; }
}

@media (max-width: 860px) {
  :root { --nav-h: 88px; }
  .nav-links { display: none; }
  .menu-btn { display: block; }
  .nav-brand .brand-mark { width: 60px; height: 60px; }
  .nav-brand .brand-name { font-size: 2rem; }
  .nav-brand .brand-tag  { font-size: 0.64rem; }

  .hero { min-height: 100svh; }
  .hero-media, .hero-wash { height: 100%; }
  .hero-media video, .hero-media .hero-poster { object-position: 58% center; }
  /* mobile: dark scrim at the very top so the logo reads over any footage,
     clear middle so the action shows, dark bottom where the text sits */
  .hero-wash { background:
    repeating-linear-gradient(90deg, rgba(255,255,255,0.02) 0 2px, transparent 2px 108px),
    linear-gradient(180deg, rgba(9,26,16,0.72) 0%, rgba(9,26,16,0.38) 12%, rgba(9,26,16,0.05) 24%, rgba(9,26,16,0.4) 60%, rgba(9,26,16,0.85) 100%); }
  .hero-inner { grid-template-columns: 1fr; align-items: start; gap: 18px;
    padding: 0 var(--gutter) 36px; }
  .hero-copy { max-width: none; min-height: calc(100svh - 34px);
    display: flex; flex-direction: column; justify-content: flex-end;
    padding-top: calc(var(--nav-h) + 20px); }
  .hero-eyebrow { margin-bottom: 14px; }
  .quote-box { align-self: auto; margin-bottom: 0; max-width: 560px; }
  .hero-brand { top: 18px; gap: 14px; }
  .hero-brand .brand-mark { width: 80px; height: 80px; }
  .hero-brand .brand-name { font-size: 2.1rem; }
  .hero-brand .brand-tag { font-size: 0.72rem; }

  .review-grid { grid-template-columns: 1fr; }
  .reviews-head { align-items: flex-start; }

  /* mobile: show the first three services, rest behind a clear "see all" button */
  .service-grid .service-card:nth-child(n+4) { display: none; }
  .services.svc-open .service-grid .service-card { display: block; }
  .svc-more-wrap { display: flex; justify-content: center; margin-top: 28px; }
  .svc-more { min-width: 250px; }

  .sticky-cta { display: flex; }
}

@media (max-width: 560px) {
  .service-grid { grid-template-columns: 1fr; }
  .about-points { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom { flex-direction: column; }
  .hero-title { font-size: clamp(3rem, 13vw, 4rem); }
  /* side-by-side buttons were ~161px wide, so both labels wrapped to two
     lines — stack them full width so each stays on one line */
  .hero-ctas { flex-direction: column; align-items: stretch; gap: 10px; }
  .hero-ctas .btn { flex: none; width: 100%; white-space: nowrap; }
  /* long eyebrow: as large as will still sit on one line at ~390px */
  .hero-eyebrow { font-size: 0.95rem; letter-spacing: 0.05em; gap: 8px; }
  .hero-eyebrow::before { width: 16px; }
  .brand-name { font-size: 1.5rem; }
  .hero-brand .brand-name { font-size: 1.9rem; }
  .nav-brand .brand-name { font-size: 1.8rem; }
  .about-ctas .btn { width: 100%; }
  .service-body { padding: 24px 22px 26px; }
}

/* fold-fit safety for very short/landscape screens */
@media (max-width: 860px) and (min-height: 620px) {
  .hero-inner { align-items: center; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: .001ms !important; transition-duration: .001ms !important; }
  .reveal { opacity: 1; transform: none; }
  /* fully stop the ambient layer for motion-sensitive users (trees render as a static watermark) */
}
