/* ==========================================================================
   SKB Services — Lawncare & Land Management · Oxford & Covington, GA
   One stylesheet. Theme = "Style 1" (the lead picked the first theme, 2026-09-16):
     cream #faf8f1 · sage #eef0e6 · forest #1f3a2b · night #122019 · gold #c08a2d
   Type: Sora (display) · Hanken Grotesk (body + kickers)
   Native scroll, CSS motion, no libraries.
   ========================================================================== */

@font-face {
  font-family: "Sora";
  src: url("/fonts/sora-var-latin.woff2") format("woff2");
  font-weight: 100 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Hanken Grotesk";
  src: url("/fonts/hanken-grotesk-var-latin.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

/* ------------------------------------------------------------------ tokens */
:root {
  /* brand — Style 1 theme (token names kept so every rule repoints) */
  --green: #9a6a1c;           /* gold, deepened — accent words on cream (4.4:1) */
  --orange: #c08a2d;          /* gold — buttons, accents on dark */
  --charcoal: #535353;
  --trunk: #523f1a;

  /* derived shades */
  --green-deep: #1f3a2b;      /* forest — section bands */
  --green-night: #122019;     /* forest, near-black — rich dark ground */
  --orange-ink: #8a5e16;      /* gold, darkened for small text on cream (5.3:1) */
  --orange-hot: #d6a04a;      /* hover lift */

  /* neutrals */
  --ink: #1a221c;
  --ink-2: #22302a;
  --text: #1a221c;
  --muted: #586057;
  --paper: #faf8f1;
  --paper-2: #eef0e6;
  --paper-3: #e3e6d9;
  --white: #ffffff;
  --line: rgba(26, 34, 28, 0.14);
  --line-strong: rgba(26, 34, 28, 0.28);
  --line-light: rgba(247, 244, 236, 0.18);

  /* type */
  --display: "Sora", "Segoe UI", system-ui, -apple-system, Arial, sans-serif;
  --body: "Hanken Grotesk", "Segoe UI", system-ui, -apple-system, Arial, sans-serif;
  --label: "Hanken Grotesk", "Segoe UI", system-ui, Arial, sans-serif;

  /* rhythm */
  --pad-x: clamp(20px, 5.2vw, 56px);
  --sec-y: clamp(76px, 11vw, 148px);
  --max: 1240px;
  --radius: 4px;
  --hdr-h: 68px;
  --ease: cubic-bezier(0.22, 0.7, 0.2, 1);
  --ease-in-out: cubic-bezier(0.7, 0, 0.2, 1);
  --shadow: 0 1px 2px rgba(26, 34, 28, 0.06), 0 12px 32px -12px rgba(26, 34, 28, 0.28);
  --shadow-lg: 0 2px 6px rgba(26, 34, 28, 0.08), 0 30px 60px -24px rgba(26, 34, 28, 0.45);
}
@media (min-width: 900px) {
  :root { --hdr-h: 82px; }
}

/* ------------------------------------------------------------------- reset */
*, *::before, *::after { box-sizing: border-box; }
html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scroll-padding-top: calc(var(--hdr-h) + 16px);
  color-scheme: light;
}
@media (max-width: 899px) {
  html { scroll-padding-bottom: calc(84px + env(safe-area-inset-bottom)); }
}
@media (prefers-reduced-motion: no-preference) {
  html { scroll-behavior: smooth; }
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--text);
  font-family: var(--body);
  font-size: 1.0625rem;
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}
img, video, svg { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; -webkit-tap-highlight-color: rgba(192, 138, 45, 0.18); }
a[href^="tel:"] { white-space: nowrap; }
button, summary, .tile, .rail-ctrl button, .vid-toggle { touch-action: manipulation; -webkit-tap-highlight-color: rgba(192, 138, 45, 0.18); }
button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; }
h1, h2, h3, h4, p, ul, ol, figure, blockquote, dl, dd { margin: 0; }
ul, ol { padding: 0; list-style: none; }
[hidden] { display: none !important; }
::selection { background: var(--orange); color: var(--ink); }

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

.skip {
  position: absolute;
  left: 12px;
  top: -80px;
  z-index: 200;
  background: var(--orange);
  color: var(--ink);
  font-weight: 700;
  padding: 12px 18px;
  border-radius: var(--radius);
  text-decoration: none;
  transition: top 0.2s var(--ease);
}
.skip:focus { top: 12px; }

.sr { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

/* ------------------------------------------------------------------ layout */
.wrap {
  width: 100%;
  max-width: calc(var(--max) + var(--pad-x) * 2);
  margin-inline: auto;
  padding-inline: max(var(--pad-x), env(safe-area-inset-left)) max(var(--pad-x), env(safe-area-inset-right));
}
.sec { padding-block: var(--sec-y); position: relative; }
.paper { background: var(--paper); }
.paper-2 { background: var(--paper-2); }
.ink { background: var(--ink); color: var(--white); }
.night { background: var(--green-night); color: var(--white); }

/* --------------------------------------------------------------- type kit */
.kicker {
  font-family: var(--label);
  font-weight: 600;
  font-size: 0.72rem;
  line-height: 1.3;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange-ink);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}
.kicker::before {
  content: "";
  width: 28px;
  height: 2px;
  background: currentColor;
  flex: none;
}
.ink .kicker, .night .kicker, .on-dark .kicker, .area .kicker, .cta .kicker, .band-wood .kicker, .phero .kicker, .hero .kicker { color: var(--orange); }
.kicker.center { justify-content: center; }

.h1, .h2, .h3, h1, h2, h3 {
  font-family: var(--display);
  font-weight: 800;
  font-variation-settings: "FLAR" 100;
  letter-spacing: -0.018em;
  text-wrap: balance;
}
.h2 {
  font-size: clamp(2.15rem, 8.4vw, 4.1rem);
  line-height: 0.98;
}
.h3 {
  font-size: clamp(1.6rem, 5.8vw, 2.4rem);
  line-height: 1.02;
}
.hl { color: var(--green); }
.ink .hl, .night .hl, .on-dark .hl, .area .hl, .cta .hl, .band-wood .hl { color: var(--orange); }
.lede {
  font-size: clamp(1.14rem, 2.2vw, 1.32rem);
  line-height: 1.5;
  color: var(--text);
  max-width: 34em;
}
.ink .lede, .night .lede, .on-dark .lede { color: rgba(247, 244, 236, 0.9); }
.muted { color: var(--muted); }
.ink .muted, .night .muted { color: rgba(247, 244, 236, 0.72); }
p + p { margin-top: 1em; }
p, li, figcaption { text-wrap: pretty; }
.sec-head { max-width: 760px; margin-bottom: clamp(40px, 6vw, 72px); }
.sec-head .lede { margin-top: 20px; }
.sec-head.center { margin-inline: auto; text-align: center; }
.sec-head.split {
  max-width: none;
  display: grid;
  gap: 20px;
  align-items: end;
}
@media (min-width: 900px) {
  .sec-head.split { grid-template-columns: 1.15fr 0.85fr; gap: 56px; }
  .sec-head.split .lede { margin-top: 0; justify-self: end; }
}

.slashes {
  font-family: var(--label);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 2;
  color: var(--muted);
}
.slashes i {
  font-style: normal;
  color: var(--orange);
  padding-inline: 0.5em;
  font-weight: 700;
}
.ink .slashes, .night .slashes { color: rgba(247, 244, 236, 0.74); }

/* ----------------------------------------------------------------- buttons */
.btn {
  --b-bg: var(--orange);
  --b-fg: var(--ink);
  --b-bd: var(--orange);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 14px 24px;
  border: 2px solid var(--b-bd);
  border-radius: var(--radius);
  background: var(--b-bg);
  color: var(--b-fg);
  font-family: var(--body);
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.1;
  letter-spacing: 0.005em;
  text-decoration: none;
  white-space: nowrap;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  transition: background-color 0.22s var(--ease), color 0.22s var(--ease), border-color 0.22s var(--ease), transform 0.22s var(--ease), box-shadow 0.22s var(--ease);
}
.btn svg { width: 18px; height: 18px; flex: none; transition: transform 0.25s var(--ease); }
.btn:hover { --b-bg: var(--orange-hot); --b-bd: var(--orange-hot); transform: translateY(-2px); box-shadow: 0 14px 28px -14px rgba(192, 138, 45, 0.7); }
.btn:hover .arr { transform: translateX(4px); }
.btn:active { transform: translateY(0); box-shadow: none; }
.btn.ghost { --b-bg: transparent; --b-fg: var(--white); --b-bd: rgba(247, 244, 236, 0.55); }
.btn.ghost:hover { --b-bg: var(--white); --b-fg: var(--ink); --b-bd: var(--white); box-shadow: none; }
.btn.dark { --b-bg: var(--ink); --b-fg: var(--white); --b-bd: var(--ink); }
.btn.dark:hover { --b-bg: var(--green); --b-bd: var(--green); box-shadow: 0 14px 28px -14px rgba(154, 106, 28, 0.8); }
.btn.line { --b-bg: transparent; --b-fg: var(--ink); --b-bd: var(--line-strong); }
.btn.line:hover { --b-bg: var(--ink); --b-fg: var(--white); --b-bd: var(--ink); box-shadow: none; }
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; }

.tlink {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  text-decoration: none;
  color: var(--ink);
  padding-block: 8px;
  background-image: linear-gradient(var(--orange), var(--orange));
  background-size: 100% 2px;
  background-position: 0 100%;
  background-repeat: no-repeat;
  transition: background-size 0.3s var(--ease), color 0.2s;
}
.tlink svg { width: 18px; height: 18px; transition: transform 0.25s var(--ease); }
.tlink:hover { color: var(--green); }
.tlink:hover svg { transform: translateX(4px); }
.ink .tlink, .night .tlink { color: var(--white); }
.ink .tlink:hover, .night .tlink:hover { color: var(--orange); }

/* ------------------------------------------------------------------ header */
.hdr {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: calc(var(--hdr-h) + env(safe-area-inset-top));
  padding-top: env(safe-area-inset-top);
  color: var(--white);
  transition: background-color 0.35s var(--ease), color 0.35s var(--ease), transform 0.4s var(--ease), box-shadow 0.35s var(--ease);
}
.hdr::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(14, 26, 20, 0.55), rgba(14, 26, 20, 0));
  transition: opacity 0.35s var(--ease);
}
.hdr.solid {
  background: rgba(250, 248, 241, 0.96);
  color: var(--ink);
  box-shadow: 0 1px 0 var(--line), 0 10px 30px -18px rgba(26, 34, 28, 0.35);
}
@supports (backdrop-filter: blur(1px)) {
  .hdr.solid { background: rgba(250, 248, 241, 0.86); backdrop-filter: saturate(1.4) blur(14px); -webkit-backdrop-filter: saturate(1.4) blur(14px); }
}
.hdr.solid::after { opacity: 0; }
.hdr.up { transform: translateY(-110%); }
.hdr-in {
  height: var(--hdr-h);
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: calc(var(--max) + var(--pad-x) * 2);
  margin-inline: auto;
  padding-inline: var(--pad-x);
}
.brand {
  display: block;
  position: relative;
  flex: none;
  height: 46px;
  width: 147px;
  margin-right: auto;
  transition: opacity 0.35s var(--ease);
}
.brand img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left center;
  transition: opacity 0.35s var(--ease);
}
.brand .on-light { opacity: 0; }
.hdr.solid .brand .on-light { opacity: 1; }
.hdr.solid .brand .on-dark { opacity: 0; }
/* home: the hero carries the big lockup, so the header mark waits until you scroll */
.is-home .hdr:not(.solid) .brand { opacity: 0; }
@media (min-width: 900px) {
  .brand { height: 52px; width: 166px; }
}

.nav { display: none; }
@media (min-width: 1180px) {
  .nav {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-right: 10px;
  }
  .nav a {
    position: relative;
    padding: 10px 12px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    white-space: nowrap;
    opacity: 0.92;
    transition: opacity 0.2s, color 0.2s;
  }
  .nav a::after {
    content: "";
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: 4px;
    height: 2px;
    background: var(--orange);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s var(--ease);
  }
  .nav a:hover, .nav a[aria-current="page"] { opacity: 1; }
  .nav a:hover::after, .nav a[aria-current="page"]::after { transform: scaleX(1); }
}
.hdr-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  height: 46px;
  min-width: 46px;
  padding-inline: 12px;
  border-radius: var(--radius);
  background: var(--orange);
  color: var(--ink);
  font-weight: 700;
  font-size: 0.98rem;
  text-decoration: none;
  white-space: nowrap;
  transition: background-color 0.2s, transform 0.2s var(--ease);
}
.hdr-call svg { width: 19px; height: 19px; }
.hdr-call span { display: none; }
.hdr-call:hover { background: var(--orange-hot); transform: translateY(-1px); }
@media (min-width: 600px) {
  .hdr-call { padding-inline: 16px; }
  .hdr-call span { display: inline; }
}
.burger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border: 1.5px solid currentColor;
  border-color: rgba(247, 244, 236, 0.45);
  border-radius: var(--radius);
  background: transparent;
  color: inherit;
  touch-action: manipulation;
  transition: background-color 0.2s, border-color 0.2s;
}
.hdr.solid .burger { border-color: var(--line-strong); }
.burger svg { width: 22px; height: 22px; }
.burger:hover { background: rgba(247, 244, 236, 0.12); }
.hdr.solid .burger:hover { background: rgba(26, 34, 28, 0.06); }
@media (min-width: 1180px) {
  .hdr .burger { display: none; }
}

/* ------------------------------------------------------------------ drawer */
.drawer {
  position: fixed;
  inset: 0;
  z-index: 150;
  display: flex;
  flex-direction: column;
  background: var(--green-night);
  color: var(--white);
  padding: calc(env(safe-area-inset-top) + 14px) var(--pad-x) calc(env(safe-area-inset-bottom) + 24px);
  overflow-y: auto;
  overscroll-behavior: contain;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-12px);
  transition: opacity 0.3s var(--ease), transform 0.35s var(--ease), visibility 0s linear 0.35s;
}
.drawer.open {
  opacity: 1;
  visibility: visible;
  transform: none;
  transition: opacity 0.3s var(--ease), transform 0.35s var(--ease), visibility 0s;
}
.drawer::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: repeating-linear-gradient(90deg, rgba(247, 244, 236, 0.028) 0 56px, transparent 56px 112px);
}
.drawer-top {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 54px;
}
.drawer-top img { width: 147px; height: 46px; object-fit: contain; object-position: left center; }
.drawer .burger { border-color: rgba(247, 244, 236, 0.45); }
.drawer-nav {
  position: relative;
  display: flex;
  flex-direction: column;
  margin-top: 26px;
}
.drawer-nav a {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line-light);
  font-family: var(--display);
  font-weight: 800;
  font-variation-settings: "FLAR" 100;
  font-size: clamp(1.45rem, 6.4vw, 2rem);
  line-height: 1.1;
  text-decoration: none;
  transition: color 0.2s, padding-left 0.3s var(--ease);
}
.drawer-nav a small {
  font-family: var(--label);
  font-weight: 600;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  color: var(--orange);
}
.drawer-nav a:hover, .drawer-nav a[aria-current="page"] { color: var(--orange); padding-left: 6px; }
.drawer-foot {
  position: relative;
  margin-top: auto;
  padding-top: 32px;
  display: grid;
  gap: 12px;
}
.drawer-foot .btn { width: 100%; }
.drawer-foot p { font-size: 0.92rem; color: rgba(247, 244, 236, 0.7); text-align: center; margin-top: 4px; }
.body-lock { overflow: hidden; }

/* -------------------------------------------------------------------- hero */
.hero {
  position: relative;
  isolation: isolate;
  min-height: max(660px, 100svh);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(var(--hdr-h) + env(safe-area-inset-top) + 28px) var(--pad-x) 92px;
  color: var(--white);
  background: var(--green-night);
  overflow: hidden;
}
.hero-media { position: absolute; inset: 0; z-index: -2; }
.hero-media img, .hero-media video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
}
.hero-media video { transition: opacity 0.6s var(--ease); }
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(120% 70% at 50% 42%, rgba(18, 32, 25, 0.2) 0%, rgba(18, 32, 25, 0.55) 70%),
    linear-gradient(180deg, rgba(18, 32, 25, 0.7) 0%, rgba(18, 32, 25, 0.42) 34%, rgba(18, 32, 25, 0.5) 62%, rgba(18, 32, 25, 0.9) 100%);
}
.hero-in {
  width: 100%;
  max-width: 880px;
  margin-inline: auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero-logo {
  display: block;
  width: min(74vw, 400px);
  margin-bottom: clamp(20px, 3.4vw, 34px);
  filter: drop-shadow(0 6px 24px rgba(0, 0, 0, 0.45));
}
.hero-logo img { width: 100%; height: auto; }
.pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 16px 9px 13px;
  border: 1px solid rgba(247, 244, 236, 0.38);
  border-radius: 999px;
  background: rgba(18, 32, 25, 0.34);
  font-family: var(--label);
  font-weight: 600;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  line-height: 1.2;
}
@supports (backdrop-filter: blur(1px)) {
  .pill { backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); }
}
.pill svg { width: 15px; height: 15px; color: var(--orange); flex: none; }
.hero h1 {
  margin-top: 22px;
  font-size: clamp(2.9rem, 13.2vw, 6.4rem);
  line-height: 0.92;
  letter-spacing: -0.025em;
  text-shadow: 0 2px 30px rgba(0, 0, 0, 0.35);
}
.hero h1 .hl { color: var(--orange); display: block; }
.hero-sub {
  margin-top: 20px;
  max-width: 32em;
  font-size: clamp(1.06rem, 2.3vw, 1.3rem);
  line-height: 1.5;
  color: rgba(247, 244, 236, 0.92);
  text-shadow: 0 1px 14px rgba(0, 0, 0, 0.4);
}
.hero .btn-row { justify-content: center; margin-top: 30px; }
.trust {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 22px;
  font-size: 0.92rem;
  font-weight: 500;
  color: rgba(247, 244, 236, 0.9);
}
.trust li { display: inline-flex; align-items: center; gap: 8px; }
.trust svg { width: 17px; height: 17px; color: var(--orange); flex: none; }
@media (max-width: 599px) {
  .hero .btn-row { width: 100%; flex-direction: column; }
  .hero .btn-row .btn { width: 100%; }
  .trust { flex-direction: column; align-items: center; gap: 8px; }
}
.vid-toggle {
  position: absolute;
  right: max(var(--pad-x), env(safe-area-inset-right));
  bottom: 26px;
  z-index: 2;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(247, 244, 236, 0.4);
  border-radius: 50%;
  background: rgba(18, 32, 25, 0.4);
  color: var(--white);
  transition: background-color 0.2s, border-color 0.2s;
}
.vid-toggle:hover { background: rgba(18, 32, 25, 0.7); border-color: var(--white); }
.vid-toggle svg { width: 16px; height: 16px; }
.vid-toggle .i-play, .vid-toggle.is-paused .i-pause { display: none; }
.vid-toggle.is-paused .i-play { display: block; }
.cue {
  position: absolute;
  left: 50%;
  bottom: 22px;
  z-index: 2;
  width: 44px;
  height: 44px;
  margin-left: -22px;
  display: grid;
  place-items: center;
  color: rgba(247, 244, 236, 0.8);
  animation: cue 2.4s var(--ease) infinite;
}
.cue svg { width: 24px; height: 24px; }
@keyframes cue { 0%, 100% { transform: translateY(0); opacity: 0.7; } 50% { transform: translateY(6px); opacity: 1; } }
@media (max-height: 700px) and (max-width: 599px) { .cue { display: none; } }
@media (prefers-reduced-motion: reduce) {
  .hero-media video { display: none; }
  .cue { animation: none; }
  .vid-toggle { display: none; }
}

/* --------------------------------------------------- service run (marquee) */
.run {
  position: relative;
  background: var(--green-deep);
  color: var(--white);
  overflow: hidden;
  border-block: 1px solid rgba(0, 0, 0, 0.25);
}
.run-track {
  display: flex;
  width: max-content;
  animation: run 46s linear infinite;
}
.run-list {
  display: flex;
  align-items: center;
  flex: none;
  padding-block: 17px;
}
.run-list li {
  display: flex;
  align-items: center;
  font-family: var(--label);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  white-space: nowrap;
}
.run-list li::after {
  content: "//";
  padding-inline: 20px;
  color: var(--orange);
  font-weight: 700;
  letter-spacing: 0;
}
.run-list a { text-decoration: none; transition: color 0.2s; }
.run-list a:hover { color: var(--orange); }
.run:hover .run-track, .motion-off .run-track { animation-play-state: paused; }
@keyframes run { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) {
  .run-track { animation: none; width: auto; }
  .run-list { flex-wrap: wrap; justify-content: center; padding-inline: var(--pad-x); }
  .run-list[aria-hidden="true"] { display: none; }
}

/* ------------------------------------------------------------------- intro */
.intro {
  display: grid;
  gap: clamp(48px, 7vw, 96px);
  align-items: center;
}
@media (min-width: 900px) {
  .intro { grid-template-columns: 1fr 1fr; }
}
.collage {
  position: relative;
  padding-bottom: 22%;
  margin-right: 8%;
}
.collage .main {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}
.collage .main img { width: 100%; height: 100%; object-fit: cover; }
.collage .inset {
  position: absolute;
  right: -10%;
  bottom: 0;
  width: 58%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: var(--radius);
  border: 6px solid var(--paper);
  box-shadow: var(--shadow-lg);
}
.collage .inset img { width: 100%; height: 100%; object-fit: cover; }
.collage figcaption {
  position: absolute;
  left: 0;
  bottom: 2px;
  font-family: var(--label);
  font-weight: 600;
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  max-width: 38%;
  line-height: 1.5;
}
.intro-copy .h2 { margin-bottom: 24px; }
.intro-copy .lede { margin-bottom: 16px; }
.facts {
  margin: 30px 0 34px;
  border-top: 1px solid var(--line);
}
.facts li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
  font-weight: 600;
}
.facts svg { width: 22px; height: 22px; color: var(--green); flex: none; }
.facts span { font-weight: 400; color: var(--muted); margin-left: auto; text-align: right; font-size: 0.95rem; }

/* ----------------------------------------------------- numbered services */
.svcs { display: grid; gap: clamp(72px, 10vw, 128px); }
.svc {
  display: grid;
  gap: 0;
  align-items: center;
}
.svc-media {
  position: relative;
  margin-inline: calc(var(--pad-x) * -1);
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.svc-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease);
}
.svc-media:hover img { transform: scale(1.04); }
.svc-copy { position: relative; padding-top: 28px; }
.svc-num {
  position: absolute;
  top: 0;
  right: 0;
  transform: translateY(-62%);
  font-family: var(--display);
  font-weight: 900;
  font-variation-settings: "FLAR" 100;
  font-size: clamp(6rem, 30vw, 12rem);
  line-height: 0.8;
  color: transparent;
  -webkit-text-stroke: 2px var(--orange);
  pointer-events: none;
  user-select: none;
}
.svc-copy .kicker { margin-bottom: 14px; }
.svc-copy .h3 { margin-bottom: 16px; max-width: 13em; }
.svc-copy p { max-width: 30em; }
.svc-copy .slashes { margin: 18px 0 18px; }
@media (min-width: 900px) {
  .svc { grid-template-columns: repeat(12, 1fr); gap: 0 clamp(24px, 3vw, 48px); }
  .svc-media { grid-column: 1 / span 7; margin-inline: 0; aspect-ratio: 5 / 4; border-radius: var(--radius); box-shadow: var(--shadow-lg); }
  .svc-copy { grid-column: 8 / span 5; padding-top: 0; }
  .svc-num { position: static; transform: none; display: block; margin-bottom: 8px; font-size: clamp(6rem, 10vw, 9.5rem); }
  .svc:nth-child(even) .svc-media { grid-column: 6 / span 7; order: 2; }
  .svc:nth-child(even) .svc-copy { grid-column: 1 / span 5; order: 1; }
}

/* ------------------------------------------- signature: the mowline break */
.mowline {
  position: relative;
  isolation: isolate;
  min-height: clamp(560px, 92svh, 860px);
  display: flex;
  align-items: flex-end;
  color: var(--white);
  overflow: hidden;
  background: var(--green-night);
}
.mow-media { position: absolute; inset: 0; z-index: -3; overflow: hidden; }
.mow-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% 60%;
  transform-origin: 56% 70%;
  animation: kb 28s ease-in-out infinite alternate;
}
body:not(.is-home) .mow-media img {
  animation: settle 5s var(--ease) both;
}
@keyframes settle {
  from { transform: scale(1.09); }
  to { transform: scale(1.01); }
}
@keyframes kb {
  from { transform: scale(1.04) translate3d(0, 0, 0); }
  to { transform: scale(1.16) translate3d(-1.6%, -1.2%, 0); }
}
.mowline::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(180deg, rgba(18, 32, 25, 0.1) 0%, rgba(18, 32, 25, 0) 30%, rgba(18, 32, 25, 0.55) 62%, rgba(18, 32, 25, 0.92) 100%);
}
/* the mower passes: bands that pull away in alternating directions */
.mow-passes {
  position: absolute;
  inset: 0;
  z-index: -1;
  display: none;
  flex-direction: column;
  pointer-events: none;
}
.js .mow-passes { display: flex; }
.mow-passes i {
  flex: 1;
  background: var(--paper-2);
  transform-origin: 0 50%;
  transition: transform 1.15s var(--ease-in-out);
}
.mow-passes i:nth-child(even) { transform-origin: 100% 50%; }
.mow-passes i:nth-child(2) { transition-delay: 0.09s; }
.mow-passes i:nth-child(3) { transition-delay: 0.18s; }
.mow-passes i:nth-child(4) { transition-delay: 0.27s; }
.mow-passes i:nth-child(5) { transition-delay: 0.36s; }
.mow-passes i:nth-child(6) { transition-delay: 0.45s; }
.mowline.in .mow-passes i { transform: scaleX(0); }
.mow-copy {
  width: 100%;
  padding-block: 80px clamp(56px, 8vw, 96px);
  opacity: 1;
}
.js .mow-copy { opacity: 0; transform: translateY(24px); transition: opacity 0.9s var(--ease) 0.75s, transform 0.9s var(--ease) 0.75s; }
.mowline.in .mow-copy { opacity: 1; transform: none; }
.mow-copy .h2 { font-size: clamp(2.6rem, 10.4vw, 5.6rem); line-height: 0.94; max-width: 11em; }
.mow-copy .h2 .hl { color: var(--orange); }
.mow-copy p:not(.kicker) { margin-top: 18px; max-width: 30em; font-size: clamp(1.06rem, 2vw, 1.25rem); color: rgba(247, 244, 236, 0.92); }
.mow-copy .kicker { color: var(--orange); }
.mow-tag {
  position: absolute;
  top: 24px;
  right: var(--pad-x);
  font-family: var(--label);
  font-weight: 600;
  font-size: 0.64rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(247, 244, 236, 0.85);
  background: rgba(18, 32, 25, 0.42);
  padding: 7px 11px;
  border-radius: 2px;
}
@media (prefers-reduced-motion: reduce) {
  .mow-media img { animation: none; }
  .js .mow-passes { display: none; }
  .js .mow-copy { opacity: 1; transform: none; transition: none; }
}

/* ------------------------------------------------------------------ steps */
.process {
  display: grid;
  gap: clamp(44px, 6vw, 88px);
  align-items: start;
}
@media (min-width: 900px) {
  .process { grid-template-columns: 0.95fr 1.05fr; align-items: center; }
}
.process-media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}
.process-media img { width: 100%; height: 100%; object-fit: cover; }
.cap {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  padding: 44px 18px 14px;
  background: linear-gradient(180deg, transparent, rgba(18, 32, 25, 0.78));
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.35;
}
.steps { counter-reset: step; margin-top: 8px; }
.steps li {
  position: relative;
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 4px 18px;
  padding: 22px 0 24px;
  border-top: 1px solid var(--line);
}
.steps li:last-child { border-bottom: 1px solid var(--line); }
.steps li::before {
  counter-increment: step;
  content: "0" counter(step);
  grid-row: span 2;
  font-family: var(--display);
  font-weight: 900;
  font-variation-settings: "FLAR" 100;
  font-size: 2.3rem;
  line-height: 1;
  color: var(--orange-ink);
}
.steps h3 { font-size: clamp(1.28rem, 3.4vw, 1.55rem); line-height: 1.15; letter-spacing: -0.01em; }
.steps p { color: var(--muted); }

/* ------------------------------------------------------------ photo rail */
.rail-wrap { position: relative; }
.rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: min(78vw, 340px);
  gap: 14px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: var(--pad-x);
  padding: 4px var(--pad-x) 20px;
  margin-inline: calc(var(--pad-x) * -1);
  overscroll-behavior-x: contain;
  scrollbar-width: thin;
  scrollbar-color: rgba(247, 244, 236, 0.3) transparent;
  -webkit-overflow-scrolling: touch;
}
@media (min-width: 900px) {
  .rail { grid-auto-columns: 372px; gap: 20px; }
}
.rail figure {
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.rail .ph {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--ink-2);
}
.rail .ph img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.9s var(--ease); }
.rail figure:hover .ph img { transform: scale(1.05); }
.rail figcaption {
  font-weight: 600;
  line-height: 1.35;
  padding-right: 8px;
}
.rail figcaption small {
  display: block;
  margin-bottom: 4px;
  font-family: var(--label);
  font-size: 0.66rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--orange);
}
.rail-ctrl { display: flex; gap: 10px; }
.rail-ctrl button {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border: 1.5px solid var(--line-light);
  border-radius: 50%;
  background: transparent;
  color: var(--white);
  transition: background-color 0.2s, border-color 0.2s, color 0.2s;
}
.rail-ctrl button:hover { background: var(--orange); border-color: var(--orange); color: var(--ink); }
.rail-ctrl svg { width: 20px; height: 20px; }
.rail-head { display: flex; align-items: end; justify-content: space-between; gap: 24px; margin-bottom: 36px; }
.rail-head .sec-head { margin-bottom: 0; }
@media (max-width: 599px) { .rail-ctrl { display: none; } }

/* ----------------------------------------------------------------- seasons */
.seasons {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}
.season {
  display: grid;
  grid-template-columns: 38% 1fr;
  gap: 18px;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}
.season .ph { aspect-ratio: 1 / 1; overflow: hidden; border-radius: var(--radius); }
.season .ph img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.9s var(--ease); }
.season:hover .ph img { transform: scale(1.05); }
.season .when {
  font-family: var(--label);
  font-weight: 600;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange-ink);
}
.season h3 { margin: 6px 0 6px; font-size: clamp(1.2rem, 4.6vw, 1.55rem); line-height: 1.1; letter-spacing: -0.01em; }
.season p { font-size: 0.96rem; line-height: 1.5; color: var(--muted); }
.stock-note { margin-top: 14px; font-size: 0.78rem; color: var(--muted); }
@media (min-width: 760px) {
  .seasons { grid-template-columns: repeat(4, 1fr); gap: 22px; border-top: 0; }
  .season { grid-template-columns: 1fr; align-items: start; padding: 0; border-bottom: 0; gap: 16px; }
  .season .ph { aspect-ratio: 4 / 5; }
  .season:nth-child(even) { margin-top: 56px; }
}

/* ----------------------------------------------------------------- gallery */
.gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: 150px;
  grid-auto-flow: dense;
  gap: 8px;
}
@media (min-width: 600px) { .gallery { grid-auto-rows: 210px; gap: 12px; } }
@media (min-width: 900px) { .gallery { grid-template-columns: repeat(4, 1fr); grid-auto-rows: 230px; gap: 14px; } }
.tile {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--paper-3);
  cursor: zoom-in;
}
.tile img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.9s var(--ease), filter 0.4s; }
.tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(18, 32, 25, 0.55));
  opacity: 0;
  transition: opacity 0.35s var(--ease);
}
.tile:hover img, .tile:focus-visible img { transform: scale(1.05); }
.tile:hover::after, .tile:focus-visible::after { opacity: 1; }
.tile.tall { grid-row: span 2; }
.tile.wide { grid-column: span 2; }
@media (min-width: 900px) {
  .tile.big { grid-column: span 2; grid-row: span 2; }
}

.viewer {
  overscroll-behavior: contain;
  width: min(96vw, 1100px);
  max-width: none;
  max-height: 94svh;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--white);
  overflow: visible;
}
.viewer::backdrop { background: rgba(12, 22, 17, 0.92); }
.viewer img {
  width: auto;
  max-width: 100%;
  max-height: 84svh;
  margin-inline: auto;
  border-radius: var(--radius);
  object-fit: contain;
}
.viewer-bar { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-top: 12px; }
.viewer-bar p { font-size: 0.95rem; color: rgba(247, 244, 236, 0.85); }
.viewer-bar button {
  flex: none;
  min-width: 48px;
  height: 48px;
  padding-inline: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(247, 244, 236, 0.4);
  border-radius: var(--radius);
  background: transparent;
  color: var(--white);
  font-weight: 600;
}
.viewer-bar button:hover { background: var(--white); color: var(--ink); }
.viewer-bar svg { width: 18px; height: 18px; }

/* -------------------------------------------------------------- area band */
.area {
  background: var(--green-deep);
  color: var(--white);
  overflow: hidden;
}
.area::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: repeating-linear-gradient(90deg, rgba(247, 244, 236, 0.035) 0 72px, rgba(0, 0, 0, 0.04) 72px 144px);
}
.area-grid {
  position: relative;
  display: grid;
  gap: clamp(44px, 6vw, 88px);
  align-items: center;
}
@media (min-width: 900px) { .area-grid { grid-template-columns: 1.1fr 0.9fr; } }
.counties { margin-top: 34px; border-top: 1px solid var(--line-light); }
.counties li {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 4px 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line-light);
}
.counties b {
  font-family: var(--display);
  font-weight: 800;
  font-variation-settings: "FLAR" 100;
  font-size: clamp(1.45rem, 5.2vw, 2.2rem);
  line-height: 1.05;
  letter-spacing: -0.012em;
}
.counties span {
  font-family: var(--label);
  font-weight: 600;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
}
.area-note { margin-top: 24px; color: rgba(247, 244, 236, 0.85); }
.area-note a { font-weight: 700; color: var(--white); text-decoration-color: var(--orange); text-underline-offset: 4px; text-decoration-thickness: 2px; }
.area-media {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: 0 30px 60px -24px rgba(0, 0, 0, 0.6);
}
.area-media img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 899px) { .area-media { aspect-ratio: 4 / 3; } }

/* --------------------------------------------------------------------- faq */
.faq-grid { display: grid; gap: 40px; }
@media (min-width: 900px) { .faq-grid { grid-template-columns: 0.8fr 1.2fr; gap: 80px; align-items: start; } .faq-grid .sec-head { position: sticky; top: calc(var(--hdr-h) + 32px); } }
.faq { border-top: 1px solid var(--line-strong); }
.faq details { border-bottom: 1px solid var(--line-strong); }
.faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 0;
  cursor: pointer;
  list-style: none;
  font-family: var(--display);
  font-weight: 700;
  font-variation-settings: "FLAR" 100;
  font-size: clamp(1.14rem, 3vw, 1.38rem);
  line-height: 1.25;
  transition: color 0.2s;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { color: var(--green); }
.faq summary i {
  position: relative;
  flex: none;
  width: 34px;
  height: 34px;
  border: 1.5px solid var(--line-strong);
  border-radius: 50%;
  transition: background-color 0.25s, border-color 0.25s, transform 0.35s var(--ease);
}
.faq summary i::before, .faq summary i::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 12px;
  height: 2px;
  margin: -1px 0 0 -6px;
  background: currentColor;
  transition: transform 0.35s var(--ease);
}
.faq summary i::after { transform: rotate(90deg); }
.faq details[open] summary i { background: var(--orange); border-color: var(--orange); color: var(--ink); transform: rotate(180deg); }
.faq details[open] summary i::after { transform: rotate(0deg); }
.faq .a { padding: 0 8px 24px 0; color: var(--muted); max-width: 40em; }
@media (min-width: 600px) { .faq .a { padding-right: 54px; } }
.faq .a a { color: var(--text); font-weight: 600; text-underline-offset: 3px; text-decoration-color: var(--orange); }

/* ---------------------------------------------------------------- cta band */
.cta {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
  text-align: center;
  padding-block: clamp(96px, 14vw, 180px);
}
.cta-media { position: absolute; inset: 0; z-index: -2; }
.cta-media img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 62%; }
.cta::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  /* centre stays >= .76 so a bright sky behind the orange .hl phrase can't drop it under 3:1 */
  background: radial-gradient(90% 80% at 50% 50%, rgba(18, 32, 25, 0.76), rgba(18, 32, 25, 0.9));
}
.cta .h2 { font-size: clamp(2.6rem, 10.6vw, 5.4rem); line-height: 0.95; max-width: 12em; margin-inline: auto; }
.cta p:not(.kicker) { margin: 20px auto 0; max-width: 30em; font-size: clamp(1.06rem, 2vw, 1.25rem); color: rgba(247, 244, 236, 0.9); }
.cta .btn-row { justify-content: center; margin-top: 34px; }
@media (max-width: 599px) {
  .cta .btn-row { flex-direction: column; }
  .cta .btn-row .btn { width: 100%; }
}

/* ------------------------------------------------------------ quote/contact */
.quote-grid {
  display: grid;
  gap: clamp(44px, 6vw, 80px);
  align-items: start;
}
@media (min-width: 960px) { .quote-grid { grid-template-columns: 0.9fr 1.1fr; } }
.reach { margin-top: 32px; border-top: 1px solid var(--line); }
.reach li { border-bottom: 1px solid var(--line); }
.reach a, .reach div {
  display: grid;
  grid-template-columns: 44px 1fr;
  align-items: center;
  gap: 14px;
  padding: 15px 0;
  text-decoration: none;
}
.reach a { transition: color 0.2s; }
.reach a:hover { color: var(--green); }
.reach .ic {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--paper-3);
  color: var(--green);
  transition: background-color 0.2s, color 0.2s;
}
.reach a:hover .ic { background: var(--orange); color: var(--ink); }
.reach .ic svg { width: 19px; height: 19px; }
.reach small {
  display: block;
  font-family: var(--label);
  font-weight: 600;
  font-size: 0.64rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 2px;
}
.reach b { font-weight: 700; font-size: 1.05rem; overflow-wrap: anywhere; }

.form {
  background: var(--white);
  border-radius: 6px;
  padding: clamp(22px, 4vw, 44px);
  box-shadow: var(--shadow-lg);
  border-top: 5px solid var(--orange);
}
.form h3 { font-size: clamp(1.5rem, 4.6vw, 2rem); line-height: 1.05; }
.form > p { margin-top: 8px; color: var(--muted); font-size: 0.98rem; }
.f-grid { display: grid; gap: 16px; margin-top: 26px; }
@media (min-width: 600px) { .f-grid { grid-template-columns: 1fr 1fr; } .f-grid .full { grid-column: 1 / -1; } }
.field { display: flex; flex-direction: column; gap: 7px; min-width: 0; }
.field label {
  font-family: var(--label);
  font-weight: 600;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text);
}
.field label em { font-style: normal; color: var(--orange-ink); }
.field input, .field select, .field textarea {
  width: 100%;
  min-height: 52px;
  padding: 13px 14px;
  border: 1.5px solid var(--line-strong);
  border-radius: var(--radius);
  background: var(--paper);
  font-size: 16px;
  line-height: 1.35;
  color: var(--text);
  transition: border-color 0.2s, background-color 0.2s, box-shadow 0.2s;
  -webkit-appearance: none;
  appearance: none;
}
.field textarea { min-height: 120px; resize: vertical; }
.field select {
  padding-right: 42px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23535353' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 18px;
}
.field input::placeholder, .field textarea::placeholder { color: #7a8078; }
.field input:hover, .field select:hover, .field textarea:hover { border-color: var(--charcoal); }
.field input:focus-visible, .field select:focus-visible, .field textarea:focus-visible {
  outline: none;
  border-color: var(--green);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(154, 106, 28, 0.18);
}
.form .btn { width: 100%; margin-top: 22px; }
.form .btn[disabled] { opacity: 0.7; cursor: progress; transform: none; }
.f-status { margin-top: 14px; font-size: 0.96rem; line-height: 1.45; min-height: 1.45em; }
.f-status.ok { color: var(--green); font-weight: 600; }
.f-status.err { color: #9b2c00; }
.f-status a { font-weight: 700; color: inherit; text-underline-offset: 3px; }
.f-fine { margin-top: 12px; font-size: 0.85rem; color: var(--muted); text-align: center; }
.f-fine a { font-weight: 600; color: var(--text); }

/* ------------------------------------------------------------------ footer */
.foot {
  position: relative;
  background: var(--ink);
  color: rgba(247, 244, 236, 0.8);
  padding: clamp(64px, 9vw, 110px) 0 calc(28px + env(safe-area-inset-bottom));
  overflow: hidden;
}
.foot-top {
  display: grid;
  gap: 44px;
}
@media (min-width: 900px) { .foot-top { grid-template-columns: 1.3fr 1fr 1fr 1fr; gap: 40px; } }
.foot-brand img { width: 250px; height: auto; }
.foot-brand p { margin-top: 20px; max-width: 26em; font-size: 0.98rem; }
.foot h4 {
  font-family: var(--label);
  font-weight: 600;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
}
.foot ul li + li { margin-top: 2px; }
.foot ul a {
  display: inline-block;
  padding: 7px 0;
  text-decoration: none;
  color: var(--white);
  transition: color 0.2s;
}
.foot ul a:hover { color: var(--orange); }
.foot .hours li { display: flex; justify-content: space-between; gap: 12px; padding: 5px 0; max-width: 240px; font-size: 0.96rem; }
.socials { display: flex; gap: 10px; margin-top: 18px; }
.socials a {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-light);
  border-radius: 50%;
  color: var(--white);
  transition: background-color 0.2s, border-color 0.2s, color 0.2s;
}
.socials a:hover { background: var(--orange); border-color: var(--orange); color: var(--ink); }
.socials svg { width: 18px; height: 18px; }
.foot-bottom {
  margin-top: clamp(48px, 7vw, 80px);
  padding-top: 24px;
  border-top: 1px solid var(--line-light);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px 24px;
  font-size: 0.88rem;
  color: rgba(247, 244, 236, 0.62);
}
.foot-word {
  position: absolute;
  right: -0.04em;
  bottom: -0.22em;
  font-family: var(--display);
  font-weight: 900;
  font-variation-settings: "FLAR" 100;
  font-size: clamp(9rem, 34vw, 26rem);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(247, 244, 236, 0.07);
  pointer-events: none;
  user-select: none;
}
.foot .wrap { position: relative; }
@media (max-width: 899px) { .foot { padding-bottom: calc(96px + env(safe-area-inset-bottom)); } }

/* ------------------------------------------------------- sticky call bar */
.callbar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 90;
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 8px;
  padding: 10px var(--pad-x) calc(10px + env(safe-area-inset-bottom));
  background: rgba(26, 34, 28, 0.94);
  border-top: 1px solid rgba(247, 244, 236, 0.1);
  transform: translateY(110%);
  transition: transform 0.4s var(--ease);
}
@supports (backdrop-filter: blur(1px)) {
  .callbar { background: rgba(26, 34, 28, 0.82); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); }
}
.callbar.show { transform: none; }
.callbar .btn { min-height: 50px; padding: 10px 12px; font-size: 0.98rem; }
@media (min-width: 900px) { .callbar { display: none; } }

/* --------------------------------------------------------- page hero (inner) */
.phero {
  position: relative;
  isolation: isolate;
  min-height: clamp(520px, 76svh, 720px);
  display: flex;
  align-items: flex-end;
  padding: calc(var(--hdr-h) + env(safe-area-inset-top) + 40px) 0 clamp(52px, 7vw, 88px);
  color: var(--white);
  background: var(--green-night);
  overflow: hidden;
}
.phero-media { position: absolute; inset: 0; z-index: -2; overflow: hidden; }
.phero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: settle 5s var(--ease) both;
}
.phero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(18, 32, 25, 0.8) 0%, rgba(18, 32, 25, 0.6) 34%, rgba(18, 32, 25, 0.78) 62%, rgba(18, 32, 25, 0.95) 100%);
}
.phero .h1 {
  font-size: clamp(2.7rem, 11.6vw, 5.8rem);
  line-height: 0.94;
  letter-spacing: -0.024em;
  max-width: 11.5em;
}
.phero .h1 .hl { color: var(--orange); }
.phero .h1, .phero-sub { text-shadow: 0 2px 24px rgba(0, 0, 0, 0.45); }
.phero .kicker, .phero .crumbs { text-shadow: 0 1px 10px rgba(0, 0, 0, 0.6); }
.phero-sub { margin-top: 18px; max-width: 34em; font-size: clamp(1.06rem, 2.2vw, 1.28rem); color: rgba(247, 244, 236, 0.92); }
.phero .btn-row { margin-top: 28px; }
@media (max-width: 599px) {
  .phero .btn-row { flex-direction: column; }
  .phero .btn-row .btn { width: 100%; }
}
.crumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 0;
  margin-bottom: 22px;
  font-family: var(--label);
  font-weight: 600;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(247, 244, 236, 0.8);
}
.crumbs li { display: flex; align-items: center; }
.crumbs li + li::before { content: "//"; color: var(--orange); padding-inline: 10px; letter-spacing: 0; }
.crumbs a { text-decoration: none; padding-block: 6px; }
.crumbs a:hover { color: var(--orange); }
@media (prefers-reduced-motion: reduce) { .phero-media img { animation: none; } }

/* split page hero (small-source photos stay crisp) */
.phero.split { align-items: center; min-height: 0; padding-bottom: clamp(56px, 8vw, 100px); }
.phero.split::before { background: radial-gradient(100% 80% at 80% 20%, rgba(31, 58, 43, 0.6), transparent 60%); }
.phero-grid { display: grid; gap: 40px; align-items: center; }
@media (min-width: 900px) { .phero-grid { grid-template-columns: 1.05fr 0.95fr; gap: 64px; } }
.phero-stack { position: relative; padding-bottom: 18%; }
.phero-stack .a { aspect-ratio: 7 / 4; overflow: hidden; border-radius: var(--radius); box-shadow: 0 30px 60px -24px rgba(0, 0, 0, 0.7); width: 88%; }
.phero-stack .b { position: absolute; right: 0; bottom: 0; width: 46%; aspect-ratio: 1; overflow: hidden; border-radius: var(--radius); border: 5px solid var(--green-night); box-shadow: 0 30px 60px -24px rgba(0, 0, 0, 0.7); }
.phero-stack img { width: 100%; height: 100%; object-fit: cover; }

/* --------------------------------------------------- inner page components */
.split-2 { display: grid; gap: clamp(40px, 6vw, 88px); align-items: center; }
@media (min-width: 900px) {
  .split-2 { grid-template-columns: 1fr 1fr; }
  .split-2.flip > :first-child { order: 2; }
}
.frame {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 5;
}
.frame.land { aspect-ratio: 4 / 3; }
.frame.wide { aspect-ratio: 7 / 4; }
.frame img { width: 100%; height: 100%; object-fit: cover; }
.frame .tag {
  position: absolute;
  top: 14px;
  left: 14px;
  font-family: var(--label);
  font-weight: 600;
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--white);
  background: rgba(18, 32, 25, 0.6);
  padding: 6px 10px;
  border-radius: 2px;
}
.included { margin-top: 30px; border-top: 1px solid var(--line); counter-reset: inc; }
.included li {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 2px 14px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}
.included li::before {
  counter-increment: inc;
  content: counter(inc, decimal-leading-zero);
  grid-row: span 2;
  font-family: var(--label);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  color: var(--orange-ink);
  padding-top: 5px;
}
.included b {
  font-family: var(--display);
  font-weight: 800;
  font-variation-settings: "FLAR" 100;
  font-size: 1.24rem;
  line-height: 1.2;
}
.included span { color: var(--muted); font-size: 0.98rem; }
.ink .included, .ink .included li, .night .included, .night .included li { border-color: var(--line-light); }
.ink .included span, .night .included span { color: rgba(247, 244, 236, 0.72); }
.ink .included li::before, .night .included li::before { color: var(--orange); }

.trio {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(2, 1fr);
}
.trio .tile:first-child { grid-column: span 2; aspect-ratio: 16 / 10; }
.trio .tile { aspect-ratio: 4 / 5; height: auto; }
@media (min-width: 900px) {
  .trio { grid-template-columns: 1.4fr 1fr 1fr; gap: 16px; }
  .trio .tile:first-child { grid-column: auto; aspect-ratio: auto; }
  .trio .tile { aspect-ratio: 4 / 5; }
}
.trio.four { grid-template-columns: repeat(2, 1fr); }
.trio.four .tile:first-child { grid-column: auto; aspect-ratio: 4 / 5; }
@media (min-width: 900px) { .trio.four { grid-template-columns: repeat(4, 1fr); } }

.related { display: grid; gap: 14px; }
@media (min-width: 760px) { .related { grid-template-columns: repeat(3, 1fr); gap: 20px; } }
.rel {
  position: relative;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 300px;
  padding: 22px;
  border-radius: var(--radius);
  overflow: hidden;
  color: var(--white);
  text-decoration: none;
  background: var(--ink);
}
@media (min-width: 760px) { .rel { min-height: 400px; } }
.rel img { position: absolute; inset: 0; z-index: -2; width: 100%; height: 100%; object-fit: cover; transition: transform 0.9s var(--ease); }
.rel::before { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(18, 32, 25, 0) 28%, rgba(18, 32, 25, 0.66) 58%, rgba(18, 32, 25, 0.94) 100%); }
.rel small { text-shadow: 0 1px 8px rgba(0, 0, 0, 0.7); font-family: var(--label); font-weight: 600; font-size: 0.66rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--orange); }
.rel b { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: 6px; font-family: var(--display); font-weight: 800; font-variation-settings: "FLAR" 100; font-size: 1.6rem; line-height: 1.05; }
.rel b svg { width: 22px; height: 22px; flex: none; transition: transform 0.3s var(--ease); }
.rel:hover img { transform: scale(1.06); }
.rel:hover b svg { transform: translateX(5px); }

.band-wood {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}
.band-wood .bg { position: absolute; inset: 0; z-index: -2; }
.band-wood .bg img { width: 100%; height: 100%; object-fit: cover; }
.band-wood::before { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(90deg, rgba(18, 32, 25, 0.92) 0%, rgba(18, 32, 25, 0.7) 60%, rgba(18, 32, 25, 0.5)); }

/* services index rows */
.svc-rows { border-top: 1px solid var(--line-strong); }
.svc-row {
  display: grid;
  gap: 18px 32px;
  padding: 28px 0 32px;
  border-bottom: 1px solid var(--line-strong);
  align-items: center;
}
.svc-row .ph { aspect-ratio: 16 / 10; overflow: hidden; border-radius: var(--radius); }
.svc-row .ph img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.9s var(--ease); }
.svc-row:hover .ph img { transform: scale(1.04); }
.svc-row .n { font-family: var(--label); font-weight: 700; font-size: 0.78rem; letter-spacing: 0.1em; color: var(--orange-ink); }
.svc-row h3 { font-size: clamp(1.9rem, 6.4vw, 3rem); line-height: 1; margin: 6px 0 12px; }
.svc-row h3 a { text-decoration: none; transition: color 0.2s; }
.svc-row h3 a:hover { color: var(--green); }
.svc-row p { color: var(--muted); max-width: 34em; }
.svc-row .slashes { margin: 14px 0 12px; }
@media (min-width: 900px) {
  .svc-row { grid-template-columns: 380px 1fr; padding: 36px 0; }
}

/* contact page */
.hours-t { width: 100%; border-collapse: collapse; margin-top: 16px; }
.hours-t th, .hours-t td { text-align: left; padding: 11px 0; border-bottom: 1px solid var(--line); font-weight: 500; }
.hours-t td { text-align: right; color: var(--muted); font-variant-numeric: tabular-nums; }
.foot .hours { font-variant-numeric: tabular-nums; }
.hours-t tr.closed td { color: #8a877e; }

/* 404 */
.lost { min-height: 100svh; display: grid; place-items: center; text-align: center; padding: calc(var(--hdr-h) + 40px) var(--pad-x) 80px; }
.lost .h1 { font-size: clamp(3rem, 12vw, 6rem); line-height: 0.95; }
.lost p { margin: 18px auto 30px; max-width: 28em; color: var(--muted); }
.lost .btn-row { justify-content: center; }

/* ------------------------------------------------------------------ reveal */
.js .rv { opacity: 0; transform: translateY(28px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.js .rv.in { opacity: 1; transform: none; }
.js .rv.d1 { transition-delay: 0.08s; }
.js .rv.d2 { transition-delay: 0.16s; }
.js .rv.d3 { transition-delay: 0.24s; }
@media (prefers-reduced-motion: reduce) {
  .js .rv { opacity: 1; transform: none; transition: none; }
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; }
}
.motion-off .mow-media img, .motion-off .phero-media img { animation-play-state: paused; }

/* ------------------------------------------------------------------- print */
@media print {
  .hdr, .drawer, .callbar, .hero-media, .vid-toggle, .cue, .run, .mow-passes, .viewer { display: none !important; }
  .hero, .phero, .cta, .mowline, .area, .foot { color: #000; background: #fff; min-height: 0; }
}
