/* =========================================================
   Supreme Mowing — styles
   ========================================================= */

:root {
  --cream:        #f6f4ee;
  --cream-deep:   #ecebe3;
  --white:        #ffffff;
  --green:        #1f3f30;
  --green-deep:   #173428;
  --green-tint:   #dfe7d8;
  --green-tint-2: #e9eee3;
  --ink:          #181d1a;
  --ink-soft:     #4b554f;
  --line:         #d8d6cc;

  /* Two families only: Instrument Serif for display, Instrument Sans for everything else.
     "Hand" notes are the serif's italic so they stay in the same voice. */
  --font-display: "Instrument Serif", "Iowan Old Style", Georgia, "Times New Roman", serif;
  --font-body:    "Instrument Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-hand:    var(--font-display);

  --radius: 12px;
  --radius-pill: 999px;
  --container: 1180px;
  --gutter: clamp(20px, 4vw, 48px);
  --header-h: 72px;
}

/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3 { margin: 0; font-weight: 400; }
p { margin: 0; }
address { font-style: normal; }
button { font: inherit; color: inherit; }

:focus-visible { outline: 2px solid var(--green); outline-offset: 3px; border-radius: 4px; }

.container { max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }

.skip-link {
  position: absolute; left: 12px; top: -60px;
  padding: 10px 16px; background: var(--green); color: #fff; border-radius: 8px; z-index: 100;
}
.skip-link:focus { top: 12px; }

/* ---------- Type ---------- */
h1 {
  font-family: var(--font-display);
  font-size: clamp(46px, 6.8vw, 82px);
  line-height: 1.0;
  letter-spacing: -0.01em;
}
h2 {
  font-family: var(--font-display);
  font-size: clamp(34px, 4.3vw, 50px);
  line-height: 1.08;
  letter-spacing: -0.005em;
}
h3 { font-size: 17px; font-weight: 600; line-height: 1.3; }

.eyebrow {
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 14px;
}
.lead { font-size: 17px; color: var(--ink-soft); max-width: 44ch; }

.handwritten {
  font-family: var(--font-hand);
  font-style: italic;
  font-size: 26px;
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: 0.005em;
  color: var(--ink);
  transform: rotate(-4deg);
  white-space: nowrap;
}

/* ---------- Buttons & links ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 12px 22px;
  border: 0; border-radius: var(--radius-pill);
  font-weight: 500; font-size: 14.5px; line-height: 1;
  cursor: pointer; white-space: nowrap;
  transition: background-color .18s ease, transform .18s ease;
}
.btn-lg { padding: 16px 28px; font-size: 15.5px; }
.btn-primary { background: var(--green); color: #fff; }
.btn-primary:hover { background: var(--green-deep); }
.btn-light { background: var(--cream); color: var(--green); }
.btn-light:hover { background: #fff; }
.btn-ghost { background: rgba(255,255,255,.12); color: #fff; box-shadow: inset 0 0 0 1px rgba(255,255,255,.45); backdrop-filter: blur(6px); }
.btn-ghost:hover { background: rgba(255,255,255,.2); }
.btn:active { transform: translateY(1px); }
.arrow { width: 15px; height: 15px; flex: none; transition: transform .18s ease; }
.btn:hover .arrow, .text-link:hover .arrow { transform: translateX(3px); }

.text-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 500; font-size: 14.5px; color: var(--ink);
}
.text-link.small { font-size: 13px; padding-block: 6px; }

/* ---------- Click-to-call ---------- */
/* Numbers are set in the display serif so they read as a headline, not as body copy. */
.phone-ico { width: 16px; height: 16px; flex: none; fill: currentColor; }

.btn-call {
  background: rgba(255,255,255,.12); color: #fff;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.45);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  font-family: var(--font-display); font-size: 22px; letter-spacing: .01em;
}
.btn-call:hover { background: rgba(255,255,255,.22); }
.btn-call .phone-ico { width: 17px; height: 17px; }

.btn-outline { background: #fff; color: var(--green); box-shadow: inset 0 0 0 1.5px var(--green); }
.btn-outline:hover { background: var(--green-tint-2); }

/* ---------- Header ---------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  background: rgba(246, 244, 238, .92);
  background: color-mix(in srgb, var(--cream) 92%, transparent);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: background-color .35s ease, color .35s ease;
}
/* over the hero film: see-through, white type */
.site-header.on-film {
  background: linear-gradient(to bottom, rgba(8, 20, 14, .45), rgba(8, 20, 14, 0));
  backdrop-filter: none; -webkit-backdrop-filter: none;
  color: #fff;
}
.site-header.on-film .logo, .site-header.on-film .logo-sub, .site-header.on-film .logo-leaf { color: #fff; }
.site-header.on-film .main-nav a::after { background: #fff; }
.site-header.on-film .header-cta { background: var(--cream); color: var(--green); }
.site-header.on-film .header-cta:hover { background: #fff; }
.site-header.on-film .nav-toggle span { background: #fff; }
section[id], div[id] { scroll-margin-top: calc(var(--header-h) + 8px); }
.header-inner {
  height: var(--header-h);
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.logo {
  display: grid;
  grid-template-columns: auto;
  justify-items: start;
  line-height: 1;
  color: var(--ink);
}
.logo-leaf { width: 28px; height: 28px; color: var(--green); margin-bottom: 2px; margin-left: 22px; }
.logo-name {
  font-family: var(--font-display); font-size: 26px; letter-spacing: 0.07em; text-transform: uppercase;
}
.logo-sub { font-size: 8.5px; letter-spacing: 0.26em; text-transform: uppercase; margin-top: 4px; color: var(--ink-soft); }

.header-call {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 7px 18px 7px 15px;
  border-radius: var(--radius-pill);
  box-shadow: inset 0 0 0 1.5px var(--green);
  color: var(--green);
  transition: background-color .18s ease, color .18s ease, box-shadow .35s ease;
}
.header-call:hover { background: var(--green); color: #fff; }
.header-call-text { display: grid; line-height: 1; }
.header-call-label { font-size: 8.5px; letter-spacing: .24em; text-transform: uppercase; opacity: .75; margin-bottom: 4px; }
.header-call-num { font-family: var(--font-display); font-size: 21px; letter-spacing: .01em; }
.site-header.on-film .header-call { color: #fff; box-shadow: inset 0 0 0 1.5px rgba(255,255,255,.6); }
.site-header.on-film .header-call:hover { background: rgba(255,255,255,.18); color: #fff; }

.main-nav ul { display: flex; gap: 34px; }
.main-nav a { font-size: 14px; font-weight: 500; padding: 8px 0; position: relative; }
.nav-cta-mobile, .nav-call-mobile { display: none; }
.main-nav a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 2px; height: 1.5px;
  background: var(--green); transform: scaleX(0); transform-origin: left; transition: transform .2s ease;
}
.main-nav a:hover::after { transform: scaleX(1); }

.nav-toggle {
  display: none; width: 44px; height: 44px; padding: 10px;
  background: none; border: 0; cursor: pointer; flex-direction: column; justify-content: center; gap: 5px;
}
.nav-toggle span { display: block; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .2s, opacity .2s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero (scroll-scrubbed, full-bleed) ---------- */
/* The tall wrapper provides scroll distance; the hero inside sticks while the
   lawn gets mown. --scrub (0..1) is set by js/scrub.js. */
.hero-scrub { height: 320vh; position: relative; background: var(--green-deep); }
.hero {
  position: sticky; top: 0;
  height: 100vh; height: 100svh;
  min-height: 560px;
  overflow: hidden;
  color: #fff;
  display: flex; align-items: flex-end;
}
.hero-media { position: absolute; inset: 0; }
.film-poster, .film-canvas {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: 50% 55%;
}
.film-poster[hidden] { display: none; }
.hero-veil {
  position: absolute; inset: 0; pointer-events: none;
  background:
    linear-gradient(to top, rgba(8, 20, 14, .82) 0%, rgba(8, 20, 14, .45) 32%, rgba(8, 20, 14, 0) 62%),
    linear-gradient(to right, rgba(8, 20, 14, .35) 0%, rgba(8, 20, 14, 0) 55%);
}
.hero-inner {
  position: relative; width: 100%;
  padding-bottom: clamp(56px, 9vh, 96px);
  display: flex; align-items: flex-end; justify-content: space-between; gap: 32px;
}
.hero-copy { max-width: 640px; }
.hero .eyebrow { color: rgba(255,255,255,.75); }
.hero h1 {
  font-size: clamp(50px, 7.6vw, 100px);
  line-height: .98;
  margin-bottom: 22px;
  text-shadow: 0 2px 40px rgba(0,0,0,.45), 0 1px 6px rgba(0,0,0,.3);
}
.hero .lead { color: rgba(255,255,255,.86); font-size: 17.5px; max-width: 46ch; }
.hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 14px; margin-top: 30px; }
.hero-reply {
  display: flex; align-items: center; gap: 8px;
  margin-top: 16px; font-size: 13.5px; color: rgba(255,255,255,.78);
}
.hero-reply svg { width: 15px; height: 15px; flex: none; color: var(--green-tint); }
.hero-note-left {
  color: #fff; font-size: 30px; text-align: right; flex: none;
  text-shadow: 0 1px 8px rgba(0,0,0,.4);
  margin-bottom: 8px;
}
.hero-note-right {
  position: absolute; right: clamp(20px, 4vw, 48px); top: calc(var(--header-h) + 28px);
  color: #fff; font-size: 30px; text-align: center; text-shadow: 0 1px 8px rgba(0,0,0,.45);
  opacity: calc(var(--scrub, 0) * 2 - 1); /* fades in over the second half of the mow */
}
.scrub-hint {
  position: absolute; left: 50%; bottom: 22px; transform: translateX(-50%);
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; letter-spacing: .18em; text-transform: uppercase; color: rgba(255,255,255,.7);
  transition: opacity .3s ease; white-space: nowrap;
}
.scrub-hint svg { width: 14px; height: 14px; animation: scrub-bob 1.6s ease-in-out infinite; }
.scrub-hint[data-hidden="1"] { opacity: 0; }
@keyframes scrub-bob { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(4px); } }
.scrub-progress {
  position: absolute; left: 0; right: 0; bottom: 0; height: 3px;
  background: rgba(255,255,255,.18);
}
.scrub-progress i {
  display: block; height: 100%; background: #fff;
  transform: scaleX(var(--scrub, 0)); transform-origin: left;
}

/* ---------- Trust strip ---------- */
.trust { background: var(--cream-deep); }
.trust-inner {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
  padding-block: 22px;
}
.trust-item { display: flex; align-items: center; gap: 16px; }
.trust-item svg { width: 26px; height: 26px; flex: none; fill: none; stroke: var(--green); stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.trust-item p { font-size: 13.5px; color: var(--ink-soft); line-height: 1.35; }
.trust-item strong { display: block; font-size: 15px; font-weight: 500; color: var(--ink); }

/* ---------- Sections ---------- */
.section-head {
  display: flex; align-items: flex-end; justify-content: space-between; gap: 24px;
  margin-bottom: 36px;
}
.section-head.centered { flex-direction: column; align-items: center; text-align: center; }
.section-head .text-link { padding-bottom: 8px; }

/* ---------- Services (expanding panels) ---------- */
.services { padding-block: clamp(64px, 9vw, 112px) clamp(56px, 7vw, 88px); }
.services .section-head { margin-bottom: clamp(28px, 4vw, 44px); }
.services h2 { max-width: 20ch; }

.panels {
  display: flex; gap: 12px;
  height: min(72vh, 640px);
}
.panel {
  position: relative; overflow: hidden;
  flex: 1 1 0; min-width: 0;
  border-radius: var(--radius);
  background: var(--green-deep);
  color: #fff;
  cursor: pointer; outline: none;
  filter: brightness(.6);
  transition: flex .7s cubic-bezier(.25, 1, .5, 1), filter .5s ease;
}
.panel:hover { filter: brightness(.78); }
.panel[data-on="1"] {
  flex: 4 1 0;
  filter: brightness(1);
  box-shadow: 0 30px 60px -30px rgba(23, 52, 40, .6);
}
.panel:focus-visible { box-shadow: 0 0 0 3px var(--cream), 0 0 0 5px var(--green); }

.panel-media { position: absolute; inset: 0; }
.panel-media img {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.1);
  transition: transform 1s cubic-bezier(.25, 1, .5, 1);
}
.panel[data-on="1"] .panel-media img { transform: scale(1); }
.panel-grade {
  position: absolute; inset: 0; opacity: 0;
  background: linear-gradient(to bottom, rgba(12, 28, 20, 0) 25%, rgba(12, 28, 20, .3) 55%, rgba(12, 28, 20, .9) 100%);
  transition: opacity .5s ease;
}
.panel[data-on="1"] .panel-grade { opacity: 1; }

.panel-open {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: clamp(18px, 2.6vw, 34px);
  display: grid; gap: 8px;
  opacity: 0; transform: translateY(28px);
  transition: opacity .5s ease, transform .5s cubic-bezier(.25, 1, .5, 1);
}
.panel[data-on="1"] .panel-open { opacity: 1; transform: none; transition-delay: .2s; }
.panel-spec {
  font-size: 11px; font-weight: 500; letter-spacing: .16em; text-transform: uppercase;
  color: var(--green-tint);
}
.panel-open h3 {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(28px, 3.7vw, 48px); line-height: 1.0; letter-spacing: -.005em;
}
.panel-open p { color: rgba(255,255,255,.86); max-width: 40ch; font-size: 15px; line-height: 1.5; }
.panel-links { display: flex; flex-wrap: wrap; align-items: center; gap: 2px 22px; margin-top: 6px; }
.panel-cta { color: #fff; }
.panel-cta:hover { color: var(--green-tint); }
.panel-more { font-weight: 400; opacity: .85; }
.panel-more:hover { opacity: 1; }
.area-more { margin-top: 18px; }
.area-more .text-link { color: var(--green); }

.panel-closed {
  position: absolute; left: 50%; bottom: 22px; transform: translateX(-50%);
  display: flex; flex-direction: column-reverse; align-items: center; gap: 12px;
  white-space: nowrap;
  transition: opacity .5s ease, transform .5s ease;
}
.panel[data-on="0"] .panel-closed { transition-delay: .4s; }
.panel[data-on="1"] .panel-closed { opacity: 0; transform: translateX(-50%) scale(.6); }
.panel-vert {
  writing-mode: vertical-rl;
  font-family: var(--font-display); font-size: 21px; letter-spacing: .02em;
  text-shadow: 0 1px 6px rgba(0,0,0,.4);
}
.panel-n { font-size: 10.5px; font-weight: 500; letter-spacing: .16em; color: var(--green-tint); }

/* ---------- About ---------- */
.about {
  padding-block: clamp(72px, 9vw, 120px);
  background: var(--green-tint-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.about-grid {
  display: grid; grid-template-columns: 45fr 55fr;
  gap: clamp(36px, 5vw, 80px);
  align-items: center;
}
.about-copy { display: flex; flex-direction: column; justify-content: center; }
.about-copy h2 { font-size: clamp(32px, 3.6vw, 44px); margin-bottom: 18px; }
.about-copy p:not(.eyebrow) { color: var(--ink-soft); margin-bottom: 16px; max-width: 54ch; }
.about-copy .btn { align-self: flex-start; margin-top: 12px; }

.about-media { position: relative; margin: 0; }
.about-note {
  position: absolute; right: 8px; bottom: -44px;
  color: var(--green); font-size: 24px; transform: rotate(-3deg);
}

/* Before / after slider. --pos is the reveal point; the range input drives keyboard
   and screen-reader use, pointer drags on the frame set it directly. */
.ba {
  position: relative; overflow: hidden;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  background: var(--green-deep);
  box-shadow: 0 30px 60px -30px rgba(23, 52, 40, .45);
  cursor: ew-resize; user-select: none; -webkit-user-select: none;
  touch-action: pan-y;
}
.ba img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  pointer-events: none;
}
.ba-after { clip-path: inset(0 0 0 var(--pos)); }
.ba-handle {
  position: absolute; top: 0; bottom: 0; left: var(--pos);
  width: 2px; margin-left: -1px;
  background: #fff;
  box-shadow: 0 0 0 1px rgba(0,0,0,.12);
}
.ba-knob {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 44px; height: 44px; border-radius: 50%;
  background: #fff; color: var(--green);
  display: grid; place-items: center;
  box-shadow: 0 6px 18px rgba(0,0,0,.25);
}
.ba-knob svg { width: 22px; height: 22px; }
.ba-label {
  position: absolute; top: 14px;
  padding: 6px 12px; border-radius: var(--radius-pill);
  font-size: 11px; font-weight: 500; letter-spacing: .16em; text-transform: uppercase;
  background: rgba(12, 28, 20, .55); color: #fff;
  backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px);
  transition: opacity .2s ease;
}
.ba-label-before { left: 14px; }
.ba-label-after { right: 14px; }
.ba[data-edge="left"] .ba-label-before, .ba[data-edge="right"] .ba-label-after { opacity: 0; }
.ba-range {
  position: absolute; inset: 0; width: 100%; height: 100%;
  margin: 0; opacity: 0; pointer-events: none;
}
.ba:focus-within { box-shadow: 0 0 0 3px var(--cream), 0 0 0 5px var(--green), 0 30px 60px -30px rgba(23, 52, 40, .45); }

/* ---------- How it works ---------- */
.how { padding-block: clamp(64px, 8vw, 104px) clamp(56px, 7vw, 88px); }
.how .section-head { margin-bottom: clamp(32px, 4vw, 48px); }
.how-steps {
  counter-reset: step;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(24px, 3vw, 40px);
}
.how-steps li {
  position: relative; padding: 28px 26px 30px;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
}
.how-n {
  display: block; margin-bottom: 18px;
  font-family: var(--font-display); font-size: 34px; line-height: 1; color: var(--green);
}
.how-steps h3 { font-size: 21px; margin-bottom: 8px; }
.how-steps p { color: var(--ink-soft); font-size: 15px; line-height: 1.55; }
.how-cta { text-align: center; margin-top: clamp(28px, 4vw, 40px); }

/* ---------- Where we work ---------- */
.area { padding-block: clamp(56px, 7vw, 88px); border-top: 1px solid var(--line); }
.area-inner { display: grid; grid-template-columns: 4fr 6fr; gap: clamp(32px, 5vw, 72px); align-items: start; }
.area-copy h2 { font-size: clamp(28px, 3vw, 38px); margin-bottom: 14px; max-width: 16ch; }
.area-copy p { color: var(--ink-soft); max-width: 40ch; }
.area-list { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; }
.area-list li {
  padding: 8px 14px; border-radius: var(--radius-pill);
  font-size: 13.5px; color: var(--ink);
  background: var(--green-tint-2); border: 1px solid var(--green-tint);
}

/* ---------- Why us ---------- */
.why { padding-block: 64px 72px; }
.why .section-head { margin-bottom: 44px; }
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.why-grid li {
  text-align: center; padding: 8px 24px;
  border-left: 1px solid var(--line);
}
.why-grid li:first-child { border-left: 0; }
.why-icon {
  display: grid; place-items: center;
  width: 54px; height: 54px; margin: 0 auto 18px;
  border-radius: 50%; border: 1.5px solid var(--green); color: var(--green);
}
.why-icon svg { width: 24px; height: 24px; fill: none; stroke: currentColor; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.why-grid h3 { font-size: 16.5px; margin-bottom: 6px; }
.why-grid p { font-size: 14px; color: var(--ink-soft); max-width: 22ch; margin-inline: auto; }

/* Sticky quote bar: phones only, slides in once the hero has scrolled past */
.sticky-cta {
  display: none;
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 40;
  padding: 10px var(--gutter) max(10px, env(safe-area-inset-bottom));
  background: color-mix(in srgb, var(--cream) 94%, transparent);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid var(--line);
  transform: translateY(110%);
  transition: transform .35s cubic-bezier(.25, 1, .5, 1);
}
.sticky-cta[data-show="1"] { transform: none; }
.sticky-cta .btn { width: 100%; justify-content: center; padding: 15px 18px; font-size: 15.5px; }
.sticky-cta .btn-outline .phone-ico { width: 17px; height: 17px; }

/* ---------- CTA band ---------- */
.cta-band {
  position: relative; overflow: hidden;
  background: var(--green-deep); color: #fff;
}
.cta-leaf {
  position: absolute; left: 50%; top: -10%; height: 150%; width: auto;
  fill: #fff; opacity: .04; transform: rotate(25deg); pointer-events: none;
}
.cta-inner {
  position: relative;
  display: flex; align-items: center; justify-content: space-between; gap: 32px;
  padding-block: 44px;
}
.cta-band .eyebrow { color: rgba(255,255,255,.7); margin-bottom: 8px; }
.cta-band h2 { margin-bottom: 8px; }
.cta-band p:not(.eyebrow) { color: rgba(255,255,255,.8); font-size: 15px; }
.cta-call {
  display: flex; flex-wrap: wrap; align-items: baseline; gap: 4px 22px;
  margin-top: 22px;
}
.cta-call-label {
  flex-basis: 100%;
  font-size: 11.5px; font-weight: 500; letter-spacing: .16em; text-transform: uppercase;
  color: rgba(255,255,255,.7);
}
.cta-band .cta-call a {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--font-display); font-size: clamp(32px, 4.2vw, 46px); line-height: 1.1;
  color: #fff;
}
.cta-band .cta-call a:hover { color: var(--green-tint); }
.cta-call .phone-ico { width: 24px; height: 24px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--cream); }
.footer-top {
  display: flex; align-items: center; justify-content: space-between; gap: 32px;
  padding-block: 36px 28px;
}
.footer-nav { display: flex; gap: 32px; }
.footer-nav a { font-size: 14px; font-weight: 500; padding: 10px 0; }
.footer-nav a:hover { color: var(--green); }
.footer-contact { display: flex; gap: 12px; align-items: flex-start; }
.footer-contact .phone-ico { width: 21px; height: 21px; color: var(--green); margin-top: 5px; }
.footer-phones { display: grid; gap: 1px; }
.footer-phones a { font-family: var(--font-display); font-size: 23px; line-height: 1.2; }
.footer-phones a:hover { color: var(--green); }

.footer-location { display: flex; gap: 12px; align-items: center; font-size: 12.5px; color: var(--ink-soft); line-height: 1.45; }
.footer-location svg { width: 22px; height: 22px; fill: none; stroke: var(--green); stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap;
  padding-block: 18px 26px;
  border-top: 1px solid var(--line);
  font-size: 12.5px; color: var(--ink-soft);
}
.tagline { display: inline-flex; align-items: center; gap: 8px; }
.tagline svg { width: 16px; height: 16px; fill: none; stroke: var(--green); stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }

/* ---------- Quote modal ---------- */
.modal { position: fixed; inset: 0; z-index: 100; display: grid; place-items: center; padding: 20px; }
.modal[hidden] { display: none; }
.modal-backdrop { position: absolute; inset: 0; background: rgba(24, 29, 26, .55); }
.modal-panel {
  position: relative; width: min(560px, 100%); max-height: calc(100dvh - 40px); overflow: auto;
  background: var(--cream); border-radius: 16px;
  padding: 36px;
  box-shadow: 0 30px 80px rgba(0,0,0,.35);
}
.modal-close {
  position: absolute; top: 14px; right: 14px; width: 40px; height: 40px;
  background: none; border: 0; border-radius: 50%; cursor: pointer; display: grid; place-items: center;
}
.modal-close:hover { background: var(--cream-deep); }
.modal-close svg { width: 22px; height: 22px; }
.modal-form h2 { font-size: 33px; margin-bottom: 10px; }
.modal-intro { color: var(--ink-soft); font-size: 14.5px; margin-bottom: 24px; }
#quote-form { display: grid; gap: 14px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
#quote-form label { display: grid; gap: 6px; font-size: 13px; font-weight: 500; }
#quote-form input, #quote-form select, #quote-form textarea {
  font: inherit; font-size: 15px; font-weight: 400;
  padding: 11px 13px; border: 1px solid var(--line); border-radius: 8px; background: #fff; color: var(--ink);
  width: 100%;
}
#quote-form textarea { resize: vertical; }
.form-more summary {
  cursor: pointer; list-style: none; display: inline-flex; align-items: center; gap: 8px;
  font-size: 13.5px; font-weight: 500; color: var(--green); padding: 4px 0;
}
.form-more summary::-webkit-details-marker { display: none; }
.form-more summary::before {
  content: ""; width: 7px; height: 7px; border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor;
  transform: rotate(-45deg); transition: transform .18s ease; margin-right: 2px;
}
.form-more[open] summary::before { transform: rotate(45deg); }
.form-more summary span { color: var(--ink-soft); font-weight: 400; }
.form-more-fields { display: grid; gap: 14px; margin-top: 12px; }
#quote-form input:focus, #quote-form select:focus, #quote-form textarea:focus {
  outline: 2px solid var(--green); outline-offset: 0; border-color: var(--green);
}
#quote-form input[aria-invalid="true"] { border-color: #b3261e; }
.form-error { color: #b3261e; font-size: 13.5px; }
#quote-form .btn { justify-self: start; margin-top: 6px; }
.form-success { text-align: center; padding: 24px 0 8px; }
.form-success h3 { font-family: var(--font-display); font-weight: 400; font-size: 31px; margin-bottom: 8px; }
.form-success p { color: var(--ink-soft); margin-bottom: 22px; }
.modal-call {
  margin-top: 20px; padding-top: 16px;
  border-top: 1px solid var(--line);
  font-size: 14px; color: var(--ink-soft);
}
.modal-call a { font-family: var(--font-display); font-size: 20px; color: var(--ink); }
.modal-call a:hover { color: var(--green); }
body.modal-open { overflow: hidden; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); row-gap: 36px; }
  .why-grid li:nth-child(3) { border-left: 0; }
  .trust-inner { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
  .main-nav {
    position: absolute; left: 0; right: 0; top: var(--header-h);
    background: var(--cream); border-bottom: 1px solid var(--line);
    display: none; padding: 8px var(--gutter) 20px;
  }
  .main-nav.open { display: block; }
  .main-nav ul { flex-direction: column; gap: 4px; }
  .main-nav a { display: block; padding: 12px 0; font-size: 16px; }
  .nav-cta-mobile { display: none; }
.main-nav a::after { display: none; }
  .header-cta { display: none; }
  .nav-toggle { display: flex; }

  .hero-scrub { height: 260vh; }
  .hero { min-height: 0; }
  .film-poster, .film-canvas { object-position: 50% 45%; }
  .hero-veil {
    background:
      linear-gradient(to top, rgba(8, 20, 14, .9) 0%, rgba(8, 20, 14, .55) 45%, rgba(8, 20, 14, .05) 75%),
      linear-gradient(to bottom, rgba(8, 20, 14, .5), rgba(8, 20, 14, 0) 25%);
  }
  /* Phones: one headline, one line of lead, one button. The handwritten
     notes and eyebrow are desktop garnish and just crowd a small screen. */
  .hero-inner { padding-bottom: 72px; flex-direction: column; align-items: flex-start; gap: 18px; }
  .hero .eyebrow { display: none; }
  .hero h1 { font-size: clamp(44px, 12.5vw, 60px); margin-bottom: 14px; }
  .hero .lead { font-size: 16px; max-width: 30ch; }
  .hero-actions { gap: 10px; margin-top: 24px; }
  .hero-actions .hero-explore { display: none; }
  .hero-reply { margin-top: 14px; font-size: 13px; }
  .hero-note-left, .hero-note-right { display: none; }

  .panels { flex-direction: column; gap: 8px; height: min(78svh, 640px); }
  .panel-closed { flex-direction: row; left: 20px; bottom: auto; top: 50%; transform: translateY(-50%); gap: 10px; }
  .panel[data-on="1"] .panel-closed { transform: translateY(-50%) scale(.6); }
  .panel-vert { writing-mode: horizontal-tb; font-size: 19px; }
  .panel-open { padding: 18px 20px; }
  .panel-open p { font-size: 14px; }

  .about-grid { grid-template-columns: 1fr; }
  .about-note { right: 12px; bottom: -40px; font-size: 21px; }
  .about-copy { max-width: none; }

  .how-steps { grid-template-columns: 1fr; }
  .area-inner { grid-template-columns: 1fr; }
  .sticky-cta { display: grid; grid-template-columns: auto 1fr; gap: 8px; }

  .nav-call-mobile { display: block; }
  .nav-call-mobile a { font-family: var(--font-display); font-size: 21px; }
  .header-call { padding: 6px 15px 6px 12px; gap: 9px; }
  .header-call-label { display: none; }
  .header-call-num { font-size: 19px; }
  body { padding-bottom: 72px; }
}

@media (max-width: 600px) {
  .section-head { flex-direction: column; align-items: flex-start; }
  .why-grid { grid-template-columns: 1fr; }
  .why-grid li { border-left: 0; padding: 0; }
  .trust-inner { grid-template-columns: 1fr; gap: 18px; }
  .cta-inner { flex-direction: column; align-items: flex-start; }
  .footer-top { flex-direction: column; align-items: flex-start; gap: 24px; }
  .footer-nav { flex-wrap: wrap; gap: 18px 24px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .field-row { grid-template-columns: 1fr; }
  .modal-panel { padding: 28px 22px; }

  /* Tight header: the call button drops to an icon and the wordmark scales with
     the viewport so logo + call + menu stay on one line. The number itself
     lives in the menu, the hero and the sticky bar. */
  .header-inner { gap: 12px; }
  .logo-name { font-size: clamp(17px, 5.2vw, 22px); white-space: nowrap; }
  .logo-leaf { width: 22px; height: 22px; margin-left: 14px; }
  .header-call { width: 40px; height: 40px; padding: 0; justify-content: center; }
  .header-call-text { display: none; }
  .header-call .phone-ico { width: 19px; height: 19px; }
}

/* =========================================================
   Sub-pages (services/, areas/) — generated by scripts/build.mjs
   ========================================================= */

/* The header is fixed; sub-pages have no full-bleed hero behind it, so the hero
   carries the offset itself and wears the same dark-green + photo treatment. */
.page-hero {
  position: relative; overflow: hidden;
  background: var(--green-deep); color: #fff;
  padding-top: var(--header-h);
}
.page-hero-media { position: absolute; inset: 0; }
.page-hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 55%; opacity: .55; }
.page-hero-veil {
  position: absolute; inset: 0;
  background:
    linear-gradient(to right, rgba(8, 20, 14, .88) 0%, rgba(8, 20, 14, .6) 55%, rgba(8, 20, 14, .25) 100%),
    linear-gradient(to top, rgba(8, 20, 14, .6), rgba(8, 20, 14, 0) 40%);
}
.page-hero-inner { position: relative; padding-block: clamp(36px, 5vw, 64px) clamp(48px, 6vw, 80px); }
.page-hero .eyebrow { color: rgba(255,255,255,.75); }
.page-hero h1 { font-size: clamp(38px, 5.4vw, 66px); max-width: 16ch; margin-bottom: 18px; }
.page-hero .lead { color: rgba(255,255,255,.86); font-size: 17.5px; max-width: 52ch; }
.page-hero .hero-actions { margin-top: 26px; }
.page-hero .hero-reply {
  display: flex; align-items: center; gap: 8px;
  margin-top: 16px; font-size: 13.5px; color: rgba(255,255,255,.8);
}
.page-hero .hero-reply svg { width: 15px; height: 15px; flex: none; color: var(--green-tint); }

.breadcrumb { margin-bottom: 22px; font-size: 13px; color: rgba(255,255,255,.7); }
.breadcrumb ol { display: flex; flex-wrap: wrap; gap: 6px 10px; }
.breadcrumb li + li::before { content: "/"; margin-right: 10px; opacity: .5; }
.breadcrumb a:hover { color: #fff; text-decoration: underline; }
.breadcrumb [aria-current] { color: #fff; }

/* Trust strip on sub-pages has no icons — just the four facts */
.subpage .trust-inner { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; padding-block: 22px; }
.subpage .trust-item p { text-align: left; }

/* Article + aside */
.page-grid {
  display: grid; grid-template-columns: minmax(0, 7fr) minmax(260px, 3fr); gap: clamp(36px, 5vw, 80px);
  padding-block: clamp(48px, 6vw, 80px) clamp(40px, 5vw, 64px);
}
.prose { max-width: 68ch; }
.prose-section + .prose-section { margin-top: clamp(32px, 4vw, 48px); }
.prose h2 { font-size: clamp(27px, 3vw, 36px); margin-bottom: 16px; }
.prose p { color: var(--ink-soft); font-size: 16.5px; line-height: 1.65; }
.prose p + p, .prose ul + p, .prose p + ul { margin-top: 14px; }
.prose a:not(.btn):not(.text-link) { color: var(--green); text-decoration: underline; text-decoration-color: var(--green-tint); text-underline-offset: 3px; }
.prose a:not(.btn):not(.text-link):hover { text-decoration-color: var(--green); }
.prose strong { color: var(--ink); font-weight: 600; }
.prose .text-link { display: inline-flex; align-items: center; gap: 8px; color: var(--green); font-weight: 500; }
.prose .text-link .arrow { width: 15px; height: 15px; }

.ticks { display: grid; gap: 10px; }
.ticks li {
  position: relative; padding-left: 28px; color: var(--ink-soft); line-height: 1.55;
}
.ticks li::before {
  content: ""; position: absolute; left: 0; top: 7px; width: 14px; height: 14px; border-radius: 50%;
  background: var(--green) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M4 8.5l2.5 2.5L12 5.5' fill='none' stroke='%23fff' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / 10px no-repeat;
}

.area-links { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.area-links a, .area-list a {
  display: inline-block; padding: 8px 14px; border-radius: var(--radius-pill);
  font-size: 13.5px; color: var(--ink);
  background: var(--green-tint-2); border: 1px solid var(--green-tint);
  transition: background .15s, color .15s;
}
.area-links a:hover, .area-list a:hover { background: var(--green); color: #fff; border-color: var(--green); }
/* when a suburb pill is a link the <li> gives up its own padding */
.area-list li:has(> a) { padding: 0; background: none; border: 0; }

.page-aside { display: grid; gap: 18px; align-content: start; position: sticky; top: calc(var(--header-h) + 20px); }
.aside-card { padding: 22px 22px 24px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); }
.aside-card .eyebrow { margin-bottom: 12px; }
.aside-call { background: var(--green-tint-2); border-color: var(--green-tint); }
.aside-num a { font-family: var(--font-display); font-size: 27px; line-height: 1.25; color: var(--ink); }
.aside-num a:hover { color: var(--green); }
.aside-note { font-size: 13.5px; color: var(--ink-soft); margin: 10px 0 16px; }
.aside-call .btn { width: 100%; justify-content: center; }
.aside-links { display: grid; gap: 2px; }
.aside-links a { display: block; padding: 7px 0; font-size: 14.5px; font-weight: 500; border-bottom: 1px solid var(--line); }
.aside-links li:last-child a { border-bottom: 0; }
.aside-links a:hover { color: var(--green); }
.aside-card .area-list { gap: 6px; }
.aside-card .area-list li { font-size: 12.5px; padding: 6px 11px; }

/* FAQ (also used on the homepage) */
.faq { padding-block: clamp(48px, 6vw, 80px); background: var(--cream-deep); }
.faq-inner { display: grid; grid-template-columns: 4fr 7fr; gap: clamp(32px, 5vw, 72px); align-items: start; }
.faq .section-head { margin-bottom: 0; }
.faq h2 { font-size: clamp(28px, 3vw, 40px); max-width: 16ch; }
.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary {
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
  padding: 18px 0; cursor: pointer; list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary h3 { font-size: 17px; font-weight: 500; line-height: 1.35; }
.faq-item summary::after {
  content: ""; flex: none; width: 10px; height: 10px; margin-right: 6px;
  border-right: 1.5px solid var(--green); border-bottom: 1.5px solid var(--green);
  transform: rotate(45deg); transition: transform .2s ease;
}
.faq-item[open] summary::after { transform: rotate(-135deg); }
.faq-item summary:hover h3 { color: var(--green); }
.faq-answer { padding: 0 40px 20px 0; }
.faq-answer p { color: var(--ink-soft); font-size: 15.5px; line-height: 1.65; max-width: 62ch; }

/* Related cards (nearby areas, other services, the /areas/ hub) */
.related { padding-block: clamp(48px, 6vw, 80px); border-top: 1px solid var(--line); }
.related .section-head { margin-bottom: clamp(24px, 3vw, 36px); }
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.card {
  display: flex; flex-direction: column; height: 100%;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease;
}
.card:hover { transform: translateY(-3px); box-shadow: 0 18px 40px -24px rgba(23, 52, 40, .5); }
.card img { aspect-ratio: 4 / 3; object-fit: cover; width: 100%; }
.card-body { display: grid; gap: 6px; padding: 18px 20px 22px; }
.card-kicker { font-size: 11px; font-weight: 500; letter-spacing: .14em; text-transform: uppercase; color: var(--green); }
.card-title { font-family: var(--font-display); font-size: 25px; line-height: 1.1; color: var(--ink); }
.card-text { font-size: 14px; color: var(--ink-soft); line-height: 1.5; }

/* Footer link columns */
.footer-links {
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px 48px;
  padding-block: 8px 28px; border-top: 1px solid var(--line);
}
.footer-links h2 { font-size: 11.5px; font-weight: 500; letter-spacing: .16em; text-transform: uppercase; color: var(--ink-soft); margin: 18px 0 10px; font-family: var(--font-body); }
.footer-links ul { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 4px 24px; }
.footer-links a { font-size: 13.5px; color: var(--ink-soft); padding: 3px 0; display: inline-block; }
.footer-links a:hover { color: var(--green); }

/* Homepage: location kicker inside the H1 so the heading carries the place, not just the eyebrow */
.h1-kicker {
  display: block; margin-bottom: 14px;
  font-family: var(--font-body); font-size: 11.5px; font-weight: 500;
  letter-spacing: .16em; text-transform: uppercase; color: rgba(255,255,255,.75);
}

@media (max-width: 1024px) {
  .subpage .trust-inner { grid-template-columns: repeat(2, 1fr); }
  .card-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 860px) {
  .page-grid { grid-template-columns: 1fr; gap: 36px; }
  .page-aside { position: static; }
  .faq-inner { grid-template-columns: 1fr; gap: 24px; }
  .page-hero h1 { font-size: clamp(36px, 9.5vw, 52px); }
  .page-hero .hero-actions .btn-call { display: none; }
  .footer-links ul { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .subpage .trust-inner { grid-template-columns: 1fr; gap: 12px; }
  .card-grid { grid-template-columns: 1fr; }
  .footer-links { grid-template-columns: 1fr; }
  .faq-answer { padding-right: 0; }
}

/* Scroll reveal: elements start hidden, main.js adds .is-in when they enter the viewport.
   --i staggers siblings. Without JS the .js-reveal class never lands and nothing is hidden. */
.js-reveal [data-reveal] {
  opacity: 0; transform: translateY(18px);
  transition: opacity .55s ease, transform .55s cubic-bezier(.25, 1, .5, 1);
  transition-delay: calc(var(--i, 0) * 90ms);
}
.js-reveal [data-reveal].is-in { opacity: 1; transform: none; }

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