/* ============================================================
   Rowan & Sons — garden care
   ============================================================ */

/* Self-hosted latin subset of the Archivo variable font (88KB); no
   third-party font request. Covers the weights this page actually
   sets (500–700) with headroom either side. */
@font-face {
  font-family: "Archivo";
  font-style: normal;
  font-weight: 400 900;
  font-stretch: 100% 125%;
  font-display: swap;
  src: url("fonts/archivo-latin-var.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
                 U+02DC, U+2000-206F, U+20AC, U+2122, U+2212, U+FEFF, U+FFFD;
}

/* ── Tokens ───────────────────────────────────────────────── */
:root {
  color-scheme: light;

  --ink:        #12211A;
  --ink-soft:   #41544A;
  --ink-faint:  #5C6D63;

  --green-900:  #0E2A1C;
  --green-800:  #143823;
  --green-700:  #1B5133;
  --green-600:  #23683F;
  --green-500:  #2E8451;
  --green-200:  #A9CDB0;
  --green-100:  #D7E6D8;

  --paper:      #FBFBF9;
  --mist:       #EFF2EC;
  --line:       #DCE3D7;
  --line-soft:  #E8EDE4;

  /* State — the only non-green hues in the system. */
  --danger:      #A32B18;
  --danger-line: #C0492F;
  --danger-bg:   #FDF5F3;

  /* Two-tone focus ring: the pale core reads on photography and dark ground,
     the dark rim reads on paper. One ring, every surface. */
  --focus-core: var(--green-200);
  --focus-rim:  var(--green-900);

  --shadow-sm:  0 1px 2px rgba(14, 42, 28, .06), 0 2px 6px rgba(14, 42, 28, .05);
  --shadow-md:  0 4px 10px rgba(14, 42, 28, .07), 0 14px 34px rgba(14, 42, 28, .09);
  --shadow-lg:  0 8px 20px rgba(14, 42, 28, .10), 0 30px 70px rgba(14, 42, 28, .16);

  --r-sm: 6px;
  --r-md: 12px;
  --r-lg: 20px;

  --pad: clamp(1.25rem, 5vw, 5rem);
  --maxw: 1280px;
  --ease: cubic-bezier(.16, .84, .32, 1);

  /* The single container rule. Applied as padding-inline on any full-width
     block, it puts header, hero, sections and footer on one left edge at
     every viewport: the page gutter below --maxw, a centred column above it. */
  --gutter: max(var(--pad), calc((100% - var(--maxw)) / 2));

  --sect-y: clamp(4.5rem, 10vw, 9rem);
}

/* ── Reset / base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 5.5rem;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Archivo, ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: clamp(1rem, .96rem + .2vw, 1.125rem);
  line-height: 1.62;
  font-variation-settings: "wdth" 100;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
img { height: auto; }
/* The picture box vanishes so every existing rule still targets the image. */
picture { display: contents; }

h1, h2, h3, h4 {
  margin: 0;
  line-height: 1.05;
  letter-spacing: -.032em;
  font-weight: 700;
  text-wrap: balance;
}

p { margin: 0; }
ul, ol, dl, dd { margin: 0; padding: 0; }
li { list-style: none; }

a { color: inherit; text-decoration: none; }

button, input, textarea, select {
  font: inherit;
  color: inherit;
}

/* Outline paints over the shadow, so this renders rim / core / rim outward:
   legible on paper, on the dark ground, and over the hero photograph alike. */
:focus-visible {
  outline: 3px solid var(--focus-core);
  outline-offset: 2px;
  box-shadow: 0 0 0 8px var(--focus-rim);
}

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

.skip {
  position: absolute; left: 1rem; top: -4rem; z-index: 100;
  background: var(--green-800); color: #fff;
  padding: .75rem 1.25rem; border-radius: var(--r-sm);
  transition: top .2s var(--ease);
}
.skip:focus { top: 1rem; }

/* ── Type scale ───────────────────────────────────────────── */
.h2 {
  font-size: clamp(2rem, 1.2rem + 3.6vw, 3.75rem);
  font-variation-settings: "wdth" 92;
}
.h3 {
  font-size: clamp(1.6rem, 1.2rem + 1.8vw, 2.5rem);
  font-variation-settings: "wdth" 94;
}
.h4 {
  font-size: clamp(1.15rem, 1.05rem + .4vw, 1.35rem);
  letter-spacing: -.02em;
}

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  --btn-bg: var(--green-700);
  --btn-fg: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  min-height: 46px;
  padding: .7rem 1.35rem;
  border: 1px solid transparent;
  border-radius: 999px;
  background: var(--btn-bg);
  color: var(--btn-fg);
  font-weight: 600;
  font-size: .975rem;
  letter-spacing: -.01em;
  cursor: pointer;
  white-space: nowrap;
  transition: background-color .25s var(--ease), transform .25s var(--ease), box-shadow .25s var(--ease);
}
.btn--solid { box-shadow: var(--shadow-sm); }
.btn--solid:hover { background: var(--green-900); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn--solid:active { transform: translateY(0); }

.btn--ghost {
  background: rgba(255, 255, 255, .10);
  color: #fff;
  border-color: rgba(255, 255, 255, .55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.btn--ghost:hover { background: rgba(255, 255, 255, .92); color: var(--green-900); border-color: transparent; }

.btn--lg { min-height: 56px; padding: .95rem 1.9rem; font-size: 1.05rem; }
.btn--sm { min-height: 42px; padding: .55rem 1.15rem; font-size: .93rem; }
.btn--block { width: 100%; }

.link-arrow {
  display: inline-flex; align-items: center; gap: .55rem;
  font-weight: 600; color: var(--green-700);
  border-bottom: 1px solid var(--green-200);
  padding-bottom: 2px;
  transition: border-color .25s var(--ease);
}
/* The arrow travels on transform; animating `gap` would relayout the row. */
.link-arrow svg {
  width: 20px; height: 20px; fill: none; stroke: currentColor;
  stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round;
  transition: transform .25s var(--ease);
}
.link-arrow:hover { border-color: var(--green-600); }
.link-arrow:hover svg { transform: translateX(.35rem); }

/* ── Header ───────────────────────────────────────────────── */
.site-head {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: clamp(1rem, 3vw, 2.5rem);
  padding: .9rem var(--gutter);
  color: #fff;
  transition: background-color .35s var(--ease), box-shadow .35s var(--ease), color .35s var(--ease);
}
.site-head::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(10, 28, 18, .55), rgba(10, 28, 18, 0));
  opacity: 1;
  transition: opacity .35s var(--ease);
  pointer-events: none;
}
/* The one blur that recomposites on every scroll frame, so it stays cheap:
   no saturate, and opaque ground wherever backdrop-filter is unavailable. */
.site-head.is-stuck {
  background: rgba(251, 251, 249, .88);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--ink);
  box-shadow: 0 1px 0 var(--line), 0 6px 24px rgba(14, 42, 28, .06);
}
@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .site-head.is-stuck { background: var(--paper); }
  .creds { background: rgba(8, 24, 15, .82); }
  .ba__tag { background: rgba(8, 24, 15, .85); }
  .btn--ghost { background: rgba(8, 24, 15, .45); }
}
.site-head.is-stuck::before { opacity: 0; }

.brand {
  position: relative;
  display: inline-flex; align-items: center; gap: .6rem;
  font-weight: 700; font-size: 1.16rem;
  letter-spacing: -.03em;
  font-variation-settings: "wdth" 92;
  margin-right: auto;
  white-space: nowrap;
}
.brand__mark {
  width: 30px; height: 30px; flex: none;
  fill: none; stroke: currentColor;
  stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round;
}
.site-head.is-stuck .brand__mark { stroke: var(--green-700); }
.brand__amp { color: var(--green-200); font-weight: 500; }
.site-head.is-stuck .brand__amp { color: var(--green-600); }

.nav {
  position: relative;
  display: flex; gap: clamp(1rem, 2.2vw, 2rem);
  font-size: .975rem; font-weight: 500;
}
.nav a { position: relative; padding: .4rem 0; opacity: .92; }
.nav a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0;
  height: 1.5px; background: currentColor;
  transform: scaleX(0); transform-origin: left;
  transition: transform .3s var(--ease);
}
.nav a:hover { opacity: 1; }
.nav a:hover::after { transform: scaleX(1); }

.head-actions { position: relative; display: flex; align-items: center; gap: .8rem; }

.tel {
  display: inline-flex; align-items: center; gap: .5rem;
  font-weight: 600; font-size: .975rem; letter-spacing: -.01em;
}
.tel svg { width: 19px; height: 19px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linejoin: round; }
.tel:hover { color: var(--green-200); }
.site-head.is-stuck .tel:hover { color: var(--green-700); }

.menu-btn {
  display: none;
  width: 46px; height: 46px;
  align-items: center; justify-content: center;
  background: none; border: 1px solid currentColor; border-radius: 999px;
  cursor: pointer;
  opacity: .85;
}
.menu-btn__bars, .menu-btn__bars::before, .menu-btn__bars::after {
  content: ""; display: block;
  width: 17px; height: 1.6px; background: currentColor; border-radius: 2px;
  transition: transform .3s var(--ease), opacity .2s var(--ease);
}
.menu-btn__bars { position: relative; }
.menu-btn__bars::before { position: absolute; top: -5.5px; }
.menu-btn__bars::after  { position: absolute; top:  5.5px; }
.menu-btn[aria-expanded="true"] .menu-btn__bars { background: transparent; }
.menu-btn[aria-expanded="true"] .menu-btn__bars::before { transform: translateY(5.5px) rotate(45deg); }
.menu-btn[aria-expanded="true"] .menu-btn__bars::after  { transform: translateY(-5.5px) rotate(-45deg); }

.mobile-nav {
  position: fixed; inset: 4.4rem .75rem auto .75rem;
  z-index: 49;
  display: grid; gap: .25rem;
  padding: 1rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  animation: dropIn .35s var(--ease) both;
}
.mobile-nav[hidden] { display: none; }
.mobile-nav a { padding: .85rem .6rem; font-weight: 600; font-size: 1.05rem; border-radius: var(--r-sm); }
.mobile-nav a:hover { background: var(--mist); }
.mobile-nav .btn { margin-top: .6rem; }
.mobile-nav .btn:hover { background: var(--green-900); }

@keyframes dropIn {
  from { opacity: 0; transform: translateY(-10px); }
  to   { opacity: 1; transform: none; }
}

/* ── Hero ─────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: min(94svh, 900px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  isolation: isolate;
  overflow: hidden;
  background: var(--green-900);
}
.hero__img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: 50% 62%;
  z-index: -2;
  animation: heroIn 1.6s var(--ease) both;
}
@keyframes heroIn {
  from { transform: scale(1.07); }
  to   { transform: scale(1); }
}
.hero__scrim {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(to top, rgba(9, 26, 17, .90) 0%, rgba(9, 26, 17, .68) 26%, rgba(9, 26, 17, .12) 62%, rgba(9, 26, 17, .28) 100%);
}

.hero__body {
  padding: 9rem var(--gutter) 0;
}
.hero__title {
  color: #fff;
  font-size: clamp(2.7rem, 1.1rem + 7.2vw, 6rem);
  font-variation-settings: "wdth" 88;
  letter-spacing: -.042em;
  line-height: .97;
  text-shadow: 0 2px 30px rgba(6, 20, 12, .35);
  animation: riseIn .9s var(--ease) both .12s;
}
.hero__lede {
  margin-top: 1.5rem;
  max-width: 46ch;
  color: rgba(255, 255, 255, .88);
  font-size: clamp(1.05rem, .98rem + .5vw, 1.3rem);
  line-height: 1.55;
  animation: riseIn .9s var(--ease) both .22s;
}
.hero__actions {
  display: flex; flex-wrap: wrap; gap: .85rem;
  margin-top: 2.25rem;
  animation: riseIn .9s var(--ease) both .32s;
}
@keyframes riseIn {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: none; }
}

.creds {
  display: flex; flex-wrap: wrap;
  gap: clamp(1rem, 4vw, 3.5rem);
  margin-top: clamp(3rem, 7vw, 5.5rem);
  padding: 1.15rem var(--gutter);
  border-top: 1px solid rgba(255, 255, 255, .18);
  background: rgba(8, 24, 15, .34);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #fff;
  font-size: .95rem;
  font-weight: 600;
  letter-spacing: .002em;
}
.creds li { display: flex; align-items: center; gap: .6rem; }
.creds svg {
  width: 21px; height: 21px; flex: none;
  fill: none; stroke: var(--green-200);
  stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round;
}

/* ── Section shell ────────────────────────────────────────── */
.section {
  padding: var(--sect-y) var(--gutter);
}
.section__head { max-width: 62ch; }
.section__head .h2 + .section__intro { margin-top: 1.15rem; }
.section__intro {
  color: var(--ink-soft);
  font-size: clamp(1.05rem, .98rem + .5vw, 1.3rem);
  max-width: 54ch;
}
.section__head--light .section__intro { color: var(--green-200); }

/* ── Before / after ───────────────────────────────────────── */
.ba-tabs {
  display: flex; flex-wrap: wrap; gap: .5rem;
  margin-top: clamp(2rem, 4vw, 3rem);
}
.ba-tab {
  min-height: 44px;
  padding: .6rem 1.15rem;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: .95rem; font-weight: 600;
  color: var(--ink-soft);
  cursor: pointer;
  transition: background-color .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
}
.ba-tab:hover { border-color: var(--green-500); color: var(--green-700); }
.ba-tab[aria-selected="true"] {
  background: var(--green-800); border-color: var(--green-800); color: #fff;
}

.ba-panels { margin-top: 1.5rem; }
.ba-panel[hidden] { display: none; }
.ba-panel { animation: fadeUp .5s var(--ease) both; }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: none; }
}

.ba { position: relative; }
.ba__frame {
  position: relative;
  aspect-ratio: 16 / 10;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--green-900);
  box-shadow: var(--shadow-lg);
  touch-action: pan-y;
  cursor: ew-resize;
  user-select: none;
}
.ba__after, .ba__before {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  pointer-events: none;
}
.ba__before {
  clip-path: inset(0 calc(100% - var(--pos, 50%)) 0 0);
}
/* Full-width wrapper moved by transform, so --pos resolves against the frame
   and the drag composites instead of relaying out on every pointer event. */
.ba__divider {
  position: absolute; inset: 0;
  transform: translateX(var(--pos, 50%));
  pointer-events: none;
}
.ba__divider::before {
  content: "";
  position: absolute; top: 0; bottom: 0; left: -1px;
  width: 2px;
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 0 0 1px rgba(10, 30, 18, .18), 0 2px 14px rgba(10, 30, 18, .35);
}
.ba__grip {
  position: absolute; top: 50%; left: 0;
  width: 52px; height: 52px;
  margin: -26px 0 0 -26px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 4px 12px rgba(10, 30, 18, .28), 0 14px 40px rgba(10, 30, 18, .22);
  transition: transform .3s var(--ease);
}
.ba__grip::before, .ba__grip::after {
  content: "";
  position: absolute; top: 50%;
  width: 7px; height: 11px;
  margin-top: -5.5px;
  background: var(--green-800);
}
.ba__grip::before { left: 14px;  clip-path: polygon(100% 0, 100% 100%, 0 50%); }
.ba__grip::after  { right: 14px; clip-path: polygon(0 0, 0 100%, 100% 50%); }
.ba__frame:hover .ba__grip { transform: scale(1.08); }
.ba.is-dragging .ba__grip { transform: scale(.94); }

.ba__tag {
  position: absolute; top: 1rem;
  padding: .35rem .7rem;
  border-radius: 999px;
  background: rgba(8, 24, 15, .62);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #fff;
  font-size: .78rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  pointer-events: none;
  transition: opacity .3s var(--ease);
}
.ba__tag--before { left: 1rem; }
.ba__tag--after  { right: 1rem; }

/* The visible rail stays 4px; the control's own box is 28px so the track is
   grabbable, not a hairline. */
.ba__range {
  position: absolute; inset: auto 0 -3.4rem 0;
  width: 100%;
  height: 28px;
  appearance: none;
  -webkit-appearance: none;
  background: transparent;
  cursor: ew-resize;
}
.ba__range::-webkit-slider-runnable-track { height: 4px; background: var(--line); border-radius: 999px; }
.ba__range::-moz-range-track { height: 4px; background: var(--line); border-radius: 999px; }
.ba__range::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 22px; height: 22px; margin-top: -9px;
  border-radius: 999px; background: var(--green-700);
  border: 3px solid var(--paper);
  box-shadow: var(--shadow-sm);
}
.ba__range::-moz-range-thumb {
  width: 22px; height: 22px;
  border-radius: 999px; background: var(--green-700);
  border: 3px solid var(--paper);
  box-shadow: var(--shadow-sm);
}

.ba__note {
  margin-top: 4.5rem;
  color: var(--ink-soft);
  max-width: 62ch;
}

.disclosure {
  margin-top: 2.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line-soft);
  color: var(--ink-faint);
  font-size: .875rem;
  max-width: 68ch;
}

/* ── Services ─────────────────────────────────────────────── */
.route {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  margin-top: clamp(3rem, 7vw, 6rem);
}
.route--b .route__media { order: 2; }

.route__media {
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 4 / 3;
}
.route__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease);
}
.route:hover .route__media img { transform: scale(1.035); }

.route__index {
  font-size: .82rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--green-600);
}
.route__body .h3 { margin-top: .7rem; }
.route__body > p { margin-top: 1.15rem; color: var(--ink-soft); max-width: 44ch; }

.ticks { margin-top: 1.75rem; display: grid; gap: .7rem; }
.ticks li {
  position: relative;
  padding-left: 1.9rem;
  color: var(--ink);
  font-size: .975rem;
}
.ticks li::before {
  content: "";
  position: absolute; left: 0; top: .48em;
  width: 12px; height: 7px;
  border-left: 2px solid var(--green-500);
  border-bottom: 2px solid var(--green-500);
  transform: rotate(-45deg);
}
.route .link-arrow { margin-top: 2rem; }

/* ── The year ─────────────────────────────────────────────── */
.year {
  background: var(--green-900);
  color: #fff;
  padding-inline: 0;
}
/* Margin, not padding. These children carry their own max-width (62ch on the
   head), and with border-box sizing a padding gutter is subtracted from that
   cap — on a wide screen the gutter exceeds it outright and collapses the
   text to one word per line. Margin sits outside the box and cannot do that. */
.year > * {
  margin-inline: var(--gutter);
}
.year .h2 { color: #fff; }

/* Four, two, or one — never three, which orphans Winter on its own row.
   The floor is the date label: "SEPTEMBER – NOVEMBER" needs ~236px including
   padding before it wraps, so four columns hold until the grid drops under
   ~950px, and two hold until ~530px. */
.seasons {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: clamp(2.75rem, 6vw, 4.5rem);
  background: rgba(255, 255, 255, .14);
  border-block: 1px solid rgba(255, 255, 255, .14);
}
.season {
  position: relative;
  background: var(--green-900);
  padding: 2rem clamp(1rem, 2vw, 1.75rem) 2.25rem;
  transition: background-color .4s var(--ease);
}
/* The live season is carried by its ground and its label, not a stripe. */
.season.is-now { background: var(--green-700); }
.season.is-now .season__when { color: #fff; }

.season__when {
  font-size: .82rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--green-200);
}
.season__name {
  margin-top: .55rem;
  font-size: clamp(1.5rem, 1.1rem + 1.3vw, 2.1rem);
  font-variation-settings: "wdth" 92;
  letter-spacing: -.03em;
}
.season.is-now .season__name::after {
  content: "Now";
  display: inline-block;
  margin-left: .6rem;
  padding: .18em .6em;
  border-radius: 999px;
  background: var(--green-500);
  color: #fff;
  font-size: .58em; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase;
  vertical-align: middle;
}
.season__jobs {
  margin-top: 1rem;
  color: var(--green-100);
  font-size: .95rem;
  line-height: 1.6;
}

/* ── Trust ────────────────────────────────────────────────── */
.trust {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: clamp(2.5rem, 6vw, 5.5rem);
  align-items: start;
}
.trust__media {
  position: sticky; top: 6.5rem;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 3 / 4;
}
.trust__media img { width: 100%; height: 100%; object-fit: cover; }

.facts { margin-top: 2.75rem; display: grid; gap: 0; }
.facts > div {
  padding: 1.9rem 0;
  border-top: 1px solid var(--line);
}
.facts > div:last-child { border-bottom: 1px solid var(--line); }
.facts dt {
  font-size: clamp(1.15rem, 1.05rem + .4vw, 1.35rem);
  font-weight: 700;
  letter-spacing: -.022em;
}
.facts dd { margin-top: .7rem; color: var(--ink-soft); max-width: 58ch; }

/* ── Steps ────────────────────────────────────────────────── */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1.5rem, 3vw, 2.5rem);
  margin-top: clamp(2.5rem, 5vw, 3.75rem);
  counter-reset: step;
}
.steps li {
  counter-increment: step;
  padding-top: 1.5rem;
  border-top: 2px solid var(--green-700);
}
.steps li::before {
  content: counter(step);
  display: block;
  margin-bottom: .9rem;
  font-size: .82rem; font-weight: 700;
  letter-spacing: .12em;
  color: var(--green-600);
}
.steps p { margin-top: .65rem; color: var(--ink-soft); font-size: .975rem; }

/* ── Accordion ────────────────────────────────────────────── */
.acc { margin-top: clamp(2rem, 4vw, 3rem); max-width: 74ch; }
.acc__item { border-top: 1px solid var(--line); }
.acc__item:last-child { border-bottom: 1px solid var(--line); }
.acc h3 { margin: 0; font-size: inherit; letter-spacing: normal; }

.acc__q {
  display: flex; align-items: center; gap: 1.5rem;
  width: 100%;
  padding: 1.5rem 0;
  background: none; border: 0;
  text-align: left;
  font-size: clamp(1.05rem, 1rem + .35vw, 1.2rem);
  font-weight: 600;
  letter-spacing: -.018em;
  line-height: 1.35;
  cursor: pointer;
  transition: color .25s var(--ease);
}
.acc__q:hover { color: var(--green-700); }

.acc__icon {
  position: relative; flex: none;
  width: 22px; height: 22px;
  margin-left: auto;
}
.acc__icon::before, .acc__icon::after {
  content: "";
  position: absolute; top: 50%; left: 50%;
  width: 14px; height: 2px;
  margin: -1px 0 0 -7px;
  background: var(--green-700);
  border-radius: 2px;
  transition: transform .35s var(--ease);
}
.acc__icon::after { transform: rotate(90deg); }
.acc__q[aria-expanded="true"] .acc__icon::after { transform: rotate(0); }

/* visibility is the one property that animates cleanly and still takes the
   collapsed answer out of the accessibility tree, so aria-expanded stays true. */
.acc__a {
  display: grid;
  grid-template-rows: 0fr;
  visibility: hidden;
  transition: grid-template-rows .4s var(--ease), visibility .4s var(--ease);
}
.acc__a > div { overflow: hidden; }
.acc__item.is-open .acc__a { grid-template-rows: 1fr; visibility: visible; }
.acc__a p {
  padding-bottom: 1.6rem;
  color: var(--ink-soft);
  max-width: 66ch;
}

/* ── Contact ──────────────────────────────────────────────── */
.contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: start;
}
.contact__intro .section__intro { margin-top: 1.15rem; }

.tel--lg {
  margin-top: 2.25rem;
  font-size: clamp(1.5rem, 1.1rem + 1.3vw, 2.1rem);
  font-weight: 700;
  letter-spacing: -.03em;
  color: var(--green-700);
}
.tel--lg svg { width: 26px; height: 26px; stroke-width: 1.6; }
.contact__hours { margin-top: .6rem; color: var(--ink-faint); font-size: .95rem; }

.form {
  display: grid;
  gap: 1.35rem;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-md);
}
.field { display: grid; gap: .5rem; }
.field label, .field legend {
  font-size: .93rem; font-weight: 600;
  letter-spacing: -.005em;
}
.field input, .field textarea {
  width: 100%;
  min-height: 50px;
  padding: .8rem .95rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease), background-color .2s var(--ease);
}
.field textarea { min-height: 118px; resize: vertical; line-height: 1.55; }
.field input::placeholder, .field textarea::placeholder { color: var(--ink-faint); }
.field input:hover, .field textarea:hover { border-color: var(--green-200); }
.field input:focus, .field textarea:focus {
  outline: none;
  background: #fff;
  border-color: var(--green-500);
  box-shadow: 0 0 0 3px rgba(46, 132, 81, .16);
}
.field--choice { border: 0; padding: 0; margin: 0; }
.field--choice legend { padding: 0; margin-bottom: .55rem; }

.choices { display: flex; flex-wrap: wrap; gap: .5rem; }
.choice { position: relative; }
.choice input { position: absolute; opacity: 0; inset: 0; cursor: pointer; }
.choice span {
  display: block;
  min-height: 44px;
  padding: .65rem 1.05rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: .93rem; font-weight: 600;
  color: var(--ink-soft);
  cursor: pointer;
  transition: background-color .2s var(--ease), border-color .2s var(--ease), color .2s var(--ease);
}
.choice:hover span { border-color: var(--green-500); color: var(--green-700); }
.choice input:checked + span {
  background: var(--green-800); border-color: var(--green-800); color: #fff;
}
.choice input:focus-visible + span {
  outline: 3px solid var(--focus-core);
  outline-offset: 2px;
  box-shadow: 0 0 0 8px var(--focus-rim);
}

.field__err {
  color: var(--danger);
  font-size: .875rem;
}
.field__err:empty { display: none; }
.field.is-bad input { border-color: var(--danger-line); background: var(--danger-bg); }
.field.is-bad input:focus { box-shadow: 0 0 0 3px rgba(192, 73, 47, .16); }

.form__note { color: var(--ink-faint); font-size: .875rem; text-align: center; }
.form__status:not(:empty) {
  padding: .95rem 1.1rem;
  background: var(--mist);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  color: var(--green-800);
  font-size: .93rem;
}

/* ── Footer ───────────────────────────────────────────────── */
.site-foot {
  background: var(--green-900);
  color: var(--green-100);
  padding: clamp(3.5rem, 7vw, 6rem) var(--gutter) 2rem;
}
.foot__top {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(1.5rem, 5vw, 5rem);
  align-items: start;
  padding-bottom: clamp(2.5rem, 5vw, 3.5rem);
  border-bottom: 1px solid rgba(255, 255, 255, .14);
}
.brand--foot { color: #fff; font-size: 1.35rem; margin-right: 0; }
.brand--foot .brand__mark { width: 34px; height: 34px; stroke: var(--green-200); }
.foot__bio { max-width: 52ch; color: var(--green-100); }

.foot__cols {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2.5rem;
  padding: clamp(2.5rem, 5vw, 3.5rem) 0;
}
.foot__h {
  font-size: .82rem; font-weight: 700;
  letter-spacing: .13em; text-transform: uppercase;
  color: var(--green-200);
}
.foot__cols ul { margin-top: .8rem; display: grid; }
/* Padding on the link, not gap on the list, so the tap target is the whole
   row rather than the glyphs. Plain rows get the same padding to keep rhythm. */
.foot__cols li { display: flex; }
.foot__cols li { padding-block: .55rem; }
.foot__cols li:has(a) { padding-block: 0; }
.foot__cols a { padding-block: .55rem; transition: color .2s var(--ease); }
.foot__cols a:hover { color: #fff; text-decoration: underline; text-underline-offset: 4px; }

.foot__fine {
  display: flex; flex-wrap: wrap; gap: .5rem 2rem;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(255, 255, 255, .14);
  color: var(--green-200);
  font-size: .82rem;
}

/* ── Scroll reveal ────────────────────────────────────────── */
/* Content stays visible at all times; the reveal only settles it into place. */
.has-js [data-reveal] {
  transform: translateY(22px);
  transition: transform .85s var(--ease);
}
.has-js [data-reveal].is-in { transform: none; }

.btn:disabled { opacity: .55; cursor: default; transform: none; box-shadow: none; }
.btn:disabled:hover { background: var(--green-700); transform: none; }

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 1080px) {
  .steps { grid-template-columns: repeat(2, 1fr); row-gap: 2.5rem; }
  .seasons { grid-template-columns: repeat(2, 1fr); }
}

/* Two seasons still fit comfortably well below the old 640px cut, so the year
   only goes fully vertical on a genuinely narrow screen. */
@media (max-width: 560px) {
  .seasons { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
  .nav { display: none; }
  .menu-btn { display: inline-flex; }

  /* Number collapses to an icon, but stays a proper 44px tap target. */
  .site-head .tel span {
    position: absolute; width: 1px; height: 1px;
    overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap;
  }
  .site-head .tel {
    width: 46px; height: 46px;
    justify-content: center;
    border: 1px solid currentColor;
    border-radius: 999px;
    opacity: .85;
  }
  .site-head .tel:hover { opacity: 1; }

  .route, .trust, .contact { grid-template-columns: 1fr; }
  .route--b .route__media { order: 0; }
  .route__media { aspect-ratio: 16 / 10; }
  .trust__media { position: static; aspect-ratio: 4 / 3; }
  .facts { margin-top: 2rem; }
}

@media (max-width: 640px) {
  /* Calling is the real action on a phone; the pill lives in the menu. */
  .head-actions > .btn--sm { display: none; }
  .brand { font-size: 1.05rem; }
  .brand__mark { width: 27px; height: 27px; }

  .hero { min-height: min(92svh, 760px); }
  .hero__body { padding-top: 7rem; }
  .hero__actions .btn { flex: 1 1 auto; }
  .creds {
    gap: .75rem 1.5rem;
    font-size: .875rem;
    padding-block: 1rem;
  }
  .creds svg { width: 18px; height: 18px; }

  .ba__frame { aspect-ratio: 4 / 3; }
  .ba__grip { width: 44px; height: 44px; margin: -22px 0 0 -22px; }
  .ba__tag { font-size: .78rem; padding: .3rem .55rem; }

  .steps { grid-template-columns: 1fr; }
  .foot__top { grid-template-columns: 1fr; }
  .foot__cols { grid-template-columns: 1fr; gap: 2rem; }
  .form { padding: 1.35rem; }
}

/* ── Motion preferences ───────────────────────────────────── */
/* Scoped rather than a blanket kill: the entrances go, the state changes stay.
   Losing the accordion and header transitions would remove useful feedback. */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero__img,
  .hero__title, .hero__lede, .hero__actions,
  .ba-panel,
  .mobile-nav { animation: none !important; }
  [data-reveal] { transform: none !important; transition: none !important; }
  .route:hover .route__media img { transform: none; }
  .link-arrow:hover { gap: .55rem; }
}
