/* =============================================================================
   Mike's Lawns
   Palette is drawn from the trade: soil profile darks, two turf greens, and
   the fluorescent orange of utility marking paint as the single accent.
   Type: Archivo (expanded display), Instrument Sans (body), IBM Plex Mono (data).
   ========================================================================== */

:root {
  /* Soil profile */
  --soil-900: #0b120e;
  --soil-800: #111c15;
  --soil-700: #1b2b21;
  --soil-600: #2a3f33;

  /* Turf */
  --turf-700: #235c31;
  --turf-600: #2f7a3d;
  --turf-500: #43994c;
  --blade-400: #79c04a;
  --blade-300: #a6db72;

  /* Marking paint — the accent, used sparingly */
  --flag: #ff5a1e;
  --flag-600: #e64a11;
  --flag-100: #ffe3d7;

  /* Surfaces */
  --bone: #eaeee7;
  --bone-2: #f3f5f0;
  --paper: #ffffff;
  --ink: #0f1a13;
  --muted: #56685c;
  --line: rgba(15, 26, 19, 0.13);
  --line-soft: rgba(15, 26, 19, 0.07);

  /* Type */
  --display: "Archivo", "Helvetica Neue", Arial, sans-serif;
  --body: "Instrument Sans", "Segoe UI", system-ui, sans-serif;
  --mono: "IBM Plex Mono", ui-monospace, "SFMono-Regular", Consolas, monospace;

  /* Rhythm */
  --wrap: 1240px;
  --gutter: clamp(1.15rem, 4vw, 2.75rem);
  --sect: clamp(4.5rem, 9vw, 8rem);
  --r: 4px;
  --r-lg: 10px;

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

/* --------------------------------------------------------------- reset --- */
*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bone);
  color: var(--ink);
  font-family: var(--body);
  font-size: 1.0625rem;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, video { max-width: 100%; display: block; }
a { color: inherit; }
button { font: inherit; color: inherit; }
h1, h2, h3, h4 { margin: 0; }
p { margin: 0 0 1em; }
ul { margin: 0; padding: 0; list-style: none; }

:focus-visible {
  outline: 3px solid var(--flag);
  outline-offset: 3px;
  border-radius: 2px;
}

.skip {
  position: absolute; left: -9999px; top: 0; z-index: 999;
  background: var(--flag); color: #fff; padding: 0.85rem 1.25rem;
  font-family: var(--mono); font-size: 0.8rem; text-decoration: none;
}
.skip:focus { left: 0; }

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.mono {
  font-family: var(--mono);
  font-size: 0.74rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ------------------------------------------------------------ typography - */
.eyebrow {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--turf-600);
  margin: 0 0 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.eyebrow::before {
  content: "";
  width: 1.6rem; height: 2px;
  background: var(--flag);
  flex: none;
}
.eyebrow--light { color: var(--blade-300); }

.h-display {
  font-family: var(--display);
  font-weight: 800;
  font-stretch: 118%;
  line-height: 0.94;
  letter-spacing: -0.022em;
  text-wrap: balance;
}

.h1 { font-size: clamp(2.6rem, 7.4vw, 5.4rem); }
.h2 { font-size: clamp(2.1rem, 4.6vw, 3.5rem); }
.h3 { font-size: clamp(1.35rem, 2.1vw, 1.7rem); font-stretch: 108%; font-weight: 700; line-height: 1.1; }

.lead {
  /* .lead always follows a heading, which has no bottom margin of its own. */
  margin-top: 1.15rem;
  font-size: clamp(1.05rem, 1.5vw, 1.22rem);
  color: var(--muted);
  max-width: 60ch;
}

.sect-head { max-width: 62ch; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.sect-head--wide { max-width: none; }

/* --------------------------------------------------------------- buttons - */
.btn {
  --btn-bg: var(--turf-700);
  --btn-fg: #fff;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1.05rem 1.75rem;
  background: var(--btn-bg);
  color: var(--btn-fg);
  font-family: var(--mono);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: var(--r);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.25s;
}
.btn::after {
  content: "";
  position: absolute; inset: 0;
  background: rgba(255, 255, 255, 0.16);
  transform: translateX(-101%) skewX(-14deg);
  transition: transform 0.6s var(--ease-out);
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 12px 26px rgba(11, 18, 14, 0.25); }
.btn:hover::after { transform: translateX(101%) skewX(-14deg); }
.btn:active { transform: translateY(0); }

.btn--flag { --btn-bg: var(--flag); }
.btn--flag:hover { background: var(--flag-600); }
.btn--sm { padding: 0.78rem 1.25rem; font-size: 0.72rem; }
.btn--ghost {
  --btn-bg: transparent; --btn-fg: var(--ink);
  border-color: rgba(15, 26, 19, 0.28);
}
.btn--ghost:hover { background: var(--ink); color: #fff; }
.btn--ghost-light {
  --btn-bg: transparent; --btn-fg: #fff;
  border-color: rgba(255, 255, 255, 0.4);
}
.btn--ghost-light:hover { background: #fff; color: var(--soil-900); }

.textlink {
  font-family: var(--mono);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--turf-700);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding-bottom: 3px;
  border-bottom: 1px solid rgba(35, 92, 49, 0.3);
  transition: gap 0.3s var(--ease), color 0.25s, border-color 0.25s;
}
.textlink:hover { gap: 0.85rem; color: var(--flag); border-color: var(--flag); }
.textlink--light { color: #fff; border-color: rgba(255, 255, 255, 0.35); }
.textlink--light:hover { color: var(--blade-300); border-color: var(--blade-300); }

/* ---------------------------------------------------------------- ticker - */
.ticker {
  background: var(--soil-900);
  color: rgba(255, 255, 255, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.ticker__in {
  display: flex;
  align-items: center;
  gap: 2rem;
  height: 40px;
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.ticker__item { display: flex; align-items: center; gap: 0.55rem; white-space: nowrap; }
.ticker__phone {
  margin-left: auto;
  color: #fff;
  text-decoration: none;
  transition: color 0.25s;
}
.ticker__phone:hover { color: var(--blade-400); }
.dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--blade-400);
  box-shadow: 0 0 0 0 rgba(121, 192, 74, 0.7);
  animation: pulse 2.4s infinite;
}
@keyframes pulse {
  70% { box-shadow: 0 0 0 9px rgba(121, 192, 74, 0); }
  100% { box-shadow: 0 0 0 0 rgba(121, 192, 74, 0); }
}

/* ---------------------------------------------------------------- header - */
.site-head {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(234, 238, 231, 0.86);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line-soft);
  transition: background 0.4s var(--ease), border-color 0.4s;
}
body.hero-page .site-head {
  background: transparent;
  border-bottom-color: transparent;
  color: #fff;
}
body.hero-page .site-head.is-stuck,
.no-js body.hero-page .site-head {
  /* Without JS there is no scroll state, so keep the bar solid and legible. */
  background: rgba(11, 18, 14, 0.92);
  border-bottom-color: rgba(255, 255, 255, 0.1);
}
.site-head.is-stuck { box-shadow: 0 8px 30px rgba(11, 18, 14, 0.09); }

.site-head__in {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 3vw, 2.5rem);
  min-height: 78px;
}

.brand { display: flex; align-items: center; gap: 0.7rem; text-decoration: none; flex: none; }
.brand__mark { width: 40px; height: 40px; flex: none; }
.brand__mark--lg { width: 52px; height: 52px; }
.brand__mark svg { width: 100%; height: 100%; }
.mk-bg { fill: var(--soil-900); }
.mk-soil { stroke: rgba(255, 255, 255, 0.28); stroke-width: 1.5; stroke-linecap: round; }
.mk-soil--2 { stroke: rgba(255, 255, 255, 0.14); }
.mk-blade { fill: var(--blade-400); }
.mk-blade--2 { fill: var(--turf-500); }
.mk-flag { fill: var(--flag); }
body.hero-page .site-head:not(.is-stuck) .mk-bg { fill: rgba(255, 255, 255, 0.12); }

.brand__type { display: flex; flex-direction: column; line-height: 1; }
.brand__type strong {
  font-family: var(--display);
  font-weight: 800;
  font-stretch: 112%;
  font-size: 1.16rem;
  letter-spacing: -0.015em;
}
.brand__type em {
  font-family: var(--mono);
  font-style: normal;
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 4px;
}
body.hero-page .site-head:not(.is-stuck) .brand__type em { color: rgba(255, 255, 255, 0.6); }

/* Nav */
.nav { margin-left: auto; }
.nav__list { display: flex; align-items: center; gap: clamp(0.4rem, 1.6vw, 1.5rem); }
.nav__list > li { position: relative; }
.nav__list a, .nav__toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.55rem 0.25rem;
  font-size: 0.93rem;
  font-weight: 500;
  text-decoration: none;
  background: none;
  border: 0;
  cursor: pointer;
  position: relative;
  white-space: nowrap;
}
.nav__list > li > a::after, .nav__toggle::after {
  content: "";
  position: absolute;
  left: 0.25rem; right: 0.25rem; bottom: 0.2rem;
  height: 2px;
  background: var(--flag);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease-out);
}
.nav__list > li > a:hover::after,
.nav__list > li > a[aria-current]::after,
.nav__has-sub:hover .nav__toggle::after { transform: scaleX(1); }
.nav__toggle svg { transition: transform 0.3s var(--ease); }
.nav__has-sub:hover .nav__toggle svg { transform: rotate(180deg); }

.nav__sub {
  position: absolute;
  top: calc(100% + 0.6rem);
  left: -1rem;
  min-width: 290px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: 0 24px 50px rgba(11, 18, 14, 0.16);
  padding: 0.5rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.28s var(--ease), transform 0.28s var(--ease), visibility 0.28s;
}
.nav__has-sub:hover .nav__sub,
.nav__has-sub:focus-within .nav__sub {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.nav__sub a {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 0.7rem 0.9rem;
  border-radius: var(--r);
  color: var(--ink);
  transition: background 0.2s;
}
.nav__sub a::after { display: none; }
.nav__sub a:hover { background: var(--bone-2); }
.nav__sub-title { font-weight: 600; }
.nav__sub-note {
  font-family: var(--mono);
  font-size: 0.66rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}

.site-head__cta { flex: none; }

.burger {
  display: none;
  width: 44px; height: 44px;
  background: none; border: 0; cursor: pointer;
  flex-direction: column; justify-content: center; gap: 5px;
  padding: 0 8px;
}
.burger span {
  height: 2px; width: 100%;
  background: currentColor;
  transition: transform 0.35s var(--ease), opacity 0.2s;
}
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ------------------------------------------------------------------ hero - */
.hero {
  position: relative;
  min-height: min(100svh, 900px);
  margin-top: -78px;
  padding-top: 78px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--soil-900);
  color: #fff;
  isolation: isolate;
}
.hero__media { position: absolute; inset: 0; z-index: -2; }
.hero__media video, .hero__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.06);
  animation: heroDrift 24s var(--ease) infinite alternate;
}
@keyframes heroDrift {
  from { transform: scale(1.06) translate3d(0, 0, 0); }
  to   { transform: scale(1.14) translate3d(-1.5%, -1%, 0); }
}
.hero__veil {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(180deg, rgba(11, 18, 14, 0.78) 0%, rgba(11, 18, 14, 0.28) 34%, rgba(11, 18, 14, 0.9) 92%),
    linear-gradient(96deg, rgba(11, 18, 14, 0.74) 0%, rgba(11, 18, 14, 0.1) 62%);
}
/* Faint contour rules — reads as a soil horizon behind the type */
.hero__veil::after {
  content: "";
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(
    180deg, transparent 0 62px, rgba(255, 255, 255, 0.045) 62px 63px
  );
  mask-image: linear-gradient(180deg, transparent, #000 40%, #000 75%, transparent);
}

.hero__in { padding-block: clamp(3rem, 8vw, 6rem) clamp(3.5rem, 7vw, 5.5rem); width: 100%; }
.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(0, 0.85fr);
  gap: clamp(2rem, 4.5vw, 4rem);
  align-items: end;
}

.hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  color: var(--blade-300);
  border: 1px solid rgba(166, 219, 114, 0.32);
  border-radius: 100px;
  padding: 0.45rem 0.95rem;
  margin-bottom: 1.6rem;
}

.hero__title { font-size: clamp(2.6rem, 6.6vw, 5.5rem); }
.hero__title .ln { display: block; overflow: hidden; }
.hero__title .ln > span {
  display: block;
  transform: translateY(105%);
  animation: lineUp 1s var(--ease-out) forwards;
}
.hero__title .ln:nth-child(1) > span { animation-delay: 0.15s; }
.hero__title .ln:nth-child(2) > span { animation-delay: 0.28s; }
.hero__title .ln:nth-child(3) > span { animation-delay: 0.41s; }
@keyframes lineUp { to { transform: translateY(0); } }
.hero__title .accent { color: var(--blade-400); }

.hero__sub {
  max-width: 46ch;
  margin: 1.6rem 0 2.2rem;
  font-size: clamp(1.02rem, 1.4vw, 1.18rem);
  color: rgba(255, 255, 255, 0.82);
  opacity: 0;
  animation: fadeUp 0.9s var(--ease-out) 0.62s forwards;
}
.hero__actions {
  display: flex; flex-wrap: wrap; gap: 0.9rem;
  opacity: 0;
  animation: fadeUp 0.9s var(--ease-out) 0.76s forwards;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Hero readout — the field-data panel */
.readout {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--r-lg);
  background: rgba(11, 18, 14, 0.42);
  backdrop-filter: blur(10px);
  padding: 1.5rem 1.6rem 1.35rem;
  opacity: 0;
  animation: fadeUp 1s var(--ease-out) 0.9s forwards;
}
.readout__h {
  display: flex; align-items: center; justify-content: space-between;
  font-family: var(--mono);
  font-size: 0.66rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  padding-bottom: 0.9rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}
.readout__row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.readout__row:last-of-type { border-bottom: 0; }
.readout__k {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.6);
}
.readout__v {
  font-family: var(--display);
  font-weight: 700;
  font-stretch: 112%;
  font-size: 1.5rem;
  line-height: 1;
}
.readout__v small {
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  color: var(--blade-400);
  margin-left: 0.35rem;
}
.readout__note {
  margin: 0.9rem 0 0;
  font-size: 0.82rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.6);
}

.hero__scroll {
  position: absolute;
  left: 50%; bottom: 1.5rem;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}
.hero__scroll i {
  width: 1px; height: 42px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.6));
  animation: drop 2.2s var(--ease) infinite;
  transform-origin: top;
}
@keyframes drop {
  0% { transform: scaleY(0); }
  50% { transform: scaleY(1); }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ------------------------------------------------------------ page hero -- */
.phero {
  position: relative;
  background: var(--soil-900);
  color: #fff;
  margin-top: -78px;
  padding-top: 78px;
  overflow: hidden;
  isolation: isolate;
}
.phero__media { position: absolute; inset: 0; z-index: -2; }
.phero__media video, .phero__media img { width: 100%; height: 100%; object-fit: cover; }
.phero__veil {
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(100deg, rgba(11, 18, 14, 0.94) 12%, rgba(11, 18, 14, 0.6) 62%, rgba(11, 18, 14, 0.8));
}
.phero__in {
  padding-block: clamp(4.5rem, 11vw, 8.5rem) clamp(3.5rem, 8vw, 6rem);
  max-width: 74ch;
}
.phero__title { font-size: clamp(2.5rem, 6.4vw, 4.6rem); margin-bottom: 1.2rem; }
.phero__lead { color: rgba(255, 255, 255, 0.8); font-size: clamp(1.02rem, 1.5vw, 1.2rem); max-width: 58ch; }
.phero__facts {
  display: flex; flex-wrap: wrap; gap: 0 clamp(1.5rem, 4vw, 3rem);
  margin-top: 2.4rem;
  padding-top: 1.6rem;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}
.phero__fact { padding: 0.6rem 0; }
.phero__fact dt {
  font-family: var(--mono);
  font-size: 0.66rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--blade-300);
  margin-bottom: 0.35rem;
}
.phero__fact dd {
  margin: 0;
  font-family: var(--display);
  font-weight: 700;
  font-stretch: 110%;
  font-size: 1.15rem;
}

.crumbs {
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 1.6rem;
}
.crumbs a { text-decoration: none; }
.crumbs a:hover { color: var(--blade-400); }
.crumbs span { margin: 0 0.5rem; color: var(--flag); }

/* ---------------------------------------------------------------- strips - */
.section { padding-block: var(--sect); position: relative; }
.section--paper { background: var(--paper); }
.section--dark { background: var(--soil-900); color: #fff; }
.section--dark .lead { color: rgba(255, 255, 255, 0.72); }
.section--tight { padding-block: clamp(3rem, 6vw, 4.5rem); }

.marquee {
  background: var(--soil-800);
  color: rgba(255, 255, 255, 0.75);
  border-block: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
  padding-block: 0.95rem;
}
.marquee__track {
  display: flex;
  gap: 3rem;
  width: max-content;
  animation: slide 38s linear infinite;
}
.marquee:hover .marquee__track { animation-play-state: paused; }
@keyframes slide { to { transform: translateX(-50%); } }
.marquee__item {
  display: flex; align-items: center; gap: 0.7rem;
  font-family: var(--mono);
  font-size: 0.73rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  white-space: nowrap;
}
.marquee__item b { color: var(--flag); font-weight: 500; }

/* --------------------------------------------------------------- pillars - */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.pillar {
  background: var(--paper);
  padding: 0;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  position: relative;
  transition: background 0.4s var(--ease);
}
.pillar:hover { background: var(--bone-2); }
.pillar__fig { position: relative; aspect-ratio: 16 / 10; overflow: hidden; }
.pillar__fig img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.9s var(--ease-out), filter 0.6s;
  filter: saturate(0.9);
}
.pillar:hover .pillar__fig img { transform: scale(1.07); filter: saturate(1.1); }
.pillar__lane {
  position: absolute; left: 0; bottom: 0; right: 0;
  height: 4px;
  background: var(--lane, var(--turf-500));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.7s var(--ease-out);
}
.pillar:hover .pillar__lane { transform: scaleX(1); }
.pillar__n {
  position: absolute; top: 0.9rem; left: 0.9rem;
  font-family: var(--mono);
  font-size: 0.66rem;
  letter-spacing: 0.12em;
  color: #fff;
  background: rgba(11, 18, 14, 0.68);
  backdrop-filter: blur(6px);
  padding: 0.35rem 0.6rem;
  border-radius: 3px;
}
.pillar__body { padding: 1.7rem 1.6rem 1.8rem; display: flex; flex-direction: column; flex: 1; }
.pillar__kicker {
  font-family: var(--mono);
  font-size: 0.66rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--lane, var(--turf-600));
  margin-bottom: 0.7rem;
}
.pillar h3 { margin-bottom: 0.7rem; }
.pillar p { color: var(--muted); font-size: 0.97rem; }
.pillar__more {
  margin-top: auto;
  padding-top: 1.2rem;
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--turf-700);
  display: flex; align-items: center; gap: 0.5rem;
  transition: gap 0.3s var(--ease);
}
.pillar:hover .pillar__more { gap: 0.9rem; color: var(--flag); }

/* --------------------------------------------------- the treatment year -- */
.year { background: var(--soil-900); color: #fff; }
.year__head {
  display: flex; flex-wrap: wrap; align-items: flex-end;
  justify-content: space-between; gap: 2rem;
  margin-bottom: clamp(2.2rem, 5vw, 3.4rem);
}
.year__key { display: flex; flex-wrap: wrap; gap: 1.2rem; }
.year__key span {
  display: flex; align-items: center; gap: 0.5rem;
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
}
.year__key i { width: 14px; height: 14px; border-radius: 3px; background: var(--lane); }

.chart { overflow-x: auto; padding-bottom: 0.5rem; }
.chart__hint {
  display: none;
  font-family: var(--mono);
  font-size: 0.66rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin: 0 0 0.8rem;
}
.chart__in { min-width: 760px; }

.chart__months {
  display: grid;
  grid-template-columns: 110px repeat(12, 1fr);
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  padding-bottom: 0.6rem;
  margin-bottom: 0.4rem;
}
.chart__months b {
  font-family: var(--mono);
  font-weight: 400;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
}
.chart__months i {
  font-style: normal;
  text-align: center;
  font-family: var(--mono);
  font-size: 0.74rem;
  color: rgba(255, 255, 255, 0.55);
}

/* Round markers sit on their own rail above the lanes */
.chart__rail {
  display: grid;
  grid-template-columns: 110px repeat(12, 1fr);
  padding-block: 0.9rem 1.1rem;
}
.chart__marks { grid-column: 2 / -1; display: grid; grid-template-columns: repeat(12, 1fr); }
.mark {
  grid-row: 1;
  justify-self: start;
  display: flex; flex-direction: column; align-items: center; gap: 0.4rem;
  background: none; border: 0; cursor: pointer;
  padding: 0;
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.25s;
}
.mark__n {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  width: 30px; height: 30px;
  display: grid; place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  transition: background 0.3s var(--ease), border-color 0.3s, color 0.3s, transform 0.3s var(--ease);
}
.mark__stem { width: 1px; height: 12px; background: rgba(255, 255, 255, 0.22); transition: background 0.3s; }
.mark:hover { color: #fff; }
.mark:hover .mark__n { transform: translateY(-3px); border-color: var(--blade-400); }
.mark.is-on { color: #fff; }
.mark.is-on .mark__n { background: var(--flag); border-color: var(--flag); color: #fff; }
.mark.is-on .mark__stem { background: var(--flag); }

.lane {
  display: grid;
  grid-template-columns: 110px repeat(12, 1fr);
  align-items: start;
  padding-block: 0.85rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.lane__name {
  padding-top: 0.5rem;
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  display: flex; align-items: center; gap: 0.55rem;
}
.lane__name::before {
  content: ""; width: 9px; height: 9px; border-radius: 2px;
  background: var(--lane);
}
.lane__bars { grid-column: 2 / -1; display: grid; grid-template-columns: repeat(12, 1fr); gap: 6px 0; }
.bar {
  height: 30px;
  min-width: 0;
  border-radius: 3px;
  background: color-mix(in srgb, var(--lane) 82%, transparent);
  display: flex; align-items: center;
  padding-inline: 0.7rem;
  font-family: var(--mono);
  font-size: 0.66rem;
  letter-spacing: 0.03em;
  color: rgba(11, 18, 14, 0.86);
  white-space: nowrap;
  overflow: hidden;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.85s var(--ease-out), opacity 0.4s, filter 0.4s;
}
.chart.is-in .bar { transform: scaleX(1); }
.chart.is-in .bar:nth-child(2) { transition-delay: 0.09s; }
.chart.is-in .bar:nth-child(3) { transition-delay: 0.18s; }
.chart.is-in .bar:nth-child(4) { transition-delay: 0.27s; }
.chart.is-dim .bar { opacity: 0.28; filter: grayscale(0.5); }
.chart.is-dim .bar.is-hot { opacity: 1; filter: none; }

.round-detail {
  margin-top: 2.2rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--r-lg);
  background: rgba(255, 255, 255, 0.035);
  padding: clamp(1.5rem, 3.5vw, 2.4rem);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(1.5rem, 4vw, 3rem);
}
.round-detail__meta { display: flex; align-items: baseline; gap: 1rem; margin-bottom: 1rem; }
.round-detail__n {
  font-family: var(--display);
  font-weight: 800;
  font-stretch: 120%;
  font-size: clamp(2.6rem, 5vw, 3.6rem);
  line-height: 0.85;
  color: var(--flag);
}
.round-detail__win {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blade-300);
}
.round-detail h3 { margin-bottom: 0.8rem; }
.round-detail p { color: rgba(255, 255, 255, 0.72); margin: 0; }
.round-detail ul { display: grid; gap: 0.8rem; align-content: start; }
.round-detail li {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 0.75rem;
  font-size: 0.96rem;
  color: rgba(255, 255, 255, 0.8);
  padding-bottom: 0.8rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.round-detail li:last-child { border-bottom: 0; padding-bottom: 0; }
.round-detail li::before {
  content: "";
  width: 8px; height: 8px;
  margin-top: 0.5rem;
  border-radius: 2px;
  background: var(--blade-400);
}
.round-detail[data-swap] { animation: swapIn 0.45s var(--ease-out); }
@keyframes swapIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: none; }
}

/* ----------------------------------------------------------------- split - */
.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}
.split--flip .split__fig { order: 2; }
.split__fig { position: relative; }
.split__fig img, .split__fig video {
  width: 100%;
  aspect-ratio: 4 / 3.2;
  object-fit: cover;
  border-radius: var(--r-lg);
}
.split__badge {
  position: absolute;
  right: -1rem; bottom: -1rem;
  background: var(--flag);
  color: #fff;
  padding: 1.1rem 1.3rem;
  border-radius: var(--r-lg);
  max-width: 220px;
  box-shadow: 0 18px 40px rgba(255, 90, 30, 0.28);
}
.split__badge b {
  display: block;
  font-family: var(--display);
  font-weight: 800;
  font-stretch: 115%;
  font-size: 2rem;
  line-height: 1;
}
.split__badge span {
  font-family: var(--mono);
  font-size: 0.66rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.9;
}

.checks { display: grid; gap: 1rem; margin: 1.8rem 0 2.2rem; }
.checks li {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 0.8rem;
  align-items: start;
  font-size: 1rem;
}
.checks li::before {
  content: "";
  width: 18px; height: 18px;
  margin-top: 0.25rem;
  border-radius: 50%;
  background: var(--turf-500);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Ccircle cx='10' cy='10' r='9'/%3E%3C/svg%3E") center/contain no-repeat;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Ccircle cx='10' cy='10' r='9'/%3E%3C/svg%3E") center/contain no-repeat;
  position: relative;
}
.checks--light li::before { background: var(--blade-400); }

/* ------------------------------------------------------------- id cards -- */
.ids {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
}
.id-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease), border-color 0.3s;
}
.id-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 46px rgba(11, 18, 14, 0.12);
  border-color: rgba(15, 26, 19, 0.2);
}
.id-card__fig { position: relative; aspect-ratio: 3 / 2; overflow: hidden; background: var(--soil-700); }
.id-card__fig img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.8s var(--ease-out);
}
.id-card:hover .id-card__fig img { transform: scale(1.06); }
.id-card__tags {
  position: absolute; left: 0.75rem; bottom: 0.75rem; right: 0.75rem;
  display: flex; flex-wrap: wrap; gap: 0.4rem;
}
.tag {
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: rgba(11, 18, 14, 0.74);
  backdrop-filter: blur(6px);
  color: #fff;
  padding: 0.32rem 0.55rem;
  border-radius: 3px;
}
.tag--flag { background: var(--flag); }
.id-card__body { padding: 1.35rem 1.35rem 1.5rem; display: flex; flex-direction: column; gap: 0.6rem; flex: 1; }
.id-card__name {
  font-family: var(--display);
  font-weight: 700;
  font-stretch: 110%;
  font-size: 1.3rem;
  line-height: 1.1;
}
.id-card__latin {
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.04em;
  color: var(--muted);
  font-style: italic;
  text-transform: none;
}
.id-card__block { border-top: 1px solid var(--line-soft); padding-top: 0.8rem; }
.id-card__label {
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--flag);
  display: block;
  margin-bottom: 0.35rem;
}
.id-card__block p { margin: 0; font-size: 0.92rem; color: var(--muted); line-height: 1.55; }

/* ----------------------------------------------------------------- stats - */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.stat { background: var(--soil-900); padding: clamp(1.5rem, 3vw, 2.2rem); }
.stat__v {
  font-family: var(--display);
  font-weight: 800;
  font-stretch: 122%;
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  line-height: 0.9;
  letter-spacing: -0.02em;
  color: var(--blade-400);
  margin-bottom: 0.7rem;
}
.stat__l {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.5;
}

/* --------------------------------------------------------------- reviews - */
.reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.review {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 1.8rem 1.7rem;
  display: flex;
  flex-direction: column;
  position: relative;
}
.review::before {
  content: "";
  position: absolute; left: 0; top: 1.8rem; bottom: 1.8rem;
  width: 3px;
  background: var(--flag);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.6s var(--ease-out);
}
.review:hover::before { transform: scaleY(1); }
.review__stars { display: flex; gap: 3px; margin-bottom: 1.1rem; color: var(--flag); }
.review__stars svg { width: 15px; height: 15px; }
.review blockquote { margin: 0 0 1.4rem; font-size: 1.02rem; line-height: 1.6; }
.review__by {
  margin-top: auto;
  padding-top: 1.1rem;
  border-top: 1px solid var(--line-soft);
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
.review__by b { color: var(--ink); font-weight: 500; display: block; }

/* --------------------------------------------------------------- pricing - */
.plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; align-items: start; }
.plan {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 1.9rem 1.7rem 2rem;
  display: flex;
  flex-direction: column;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.plan:hover { transform: translateY(-4px); box-shadow: 0 20px 44px rgba(11, 18, 14, 0.12); }
.plan--featured {
  background: var(--soil-900);
  color: #fff;
  border-color: var(--soil-900);
  position: relative;
}
.plan--featured .plan__line, .plan--featured .plan__inc li { color: rgba(255, 255, 255, 0.76); }
.plan__flag {
  position: absolute; top: -1px; right: 1.5rem;
  background: var(--flag);
  color: #fff;
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.4rem 0.7rem;
  border-radius: 0 0 3px 3px;
}
.plan__name {
  font-family: var(--display);
  font-weight: 800;
  font-stretch: 116%;
  font-size: 1.6rem;
  line-height: 1;
  margin-bottom: 0.4rem;
}
.plan__rounds {
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--flag);
  margin-bottom: 1.2rem;
}
.plan__price { display: flex; align-items: baseline; gap: 0.35rem; margin-bottom: 0.3rem; }
.plan__price b {
  font-family: var(--display);
  font-weight: 800;
  font-stretch: 120%;
  font-size: 3rem;
  line-height: 0.9;
  letter-spacing: -0.02em;
}
.plan__price span { font-family: var(--mono); font-size: 0.72rem; color: var(--muted); }
.plan--featured .plan__price span { color: rgba(255, 255, 255, 0.6); }
.plan__note { font-family: var(--mono); font-size: 0.66rem; letter-spacing: 0.06em; color: var(--muted); margin-bottom: 1.3rem; }
.plan--featured .plan__note { color: rgba(255, 255, 255, 0.55); }
.plan__line { font-size: 0.96rem; color: var(--muted); padding-bottom: 1.3rem; border-bottom: 1px solid var(--line-soft); }
.plan--featured .plan__line { border-color: rgba(255, 255, 255, 0.14); }
.plan__inc { display: grid; gap: 0.7rem; padding-block: 1.3rem; }
.plan__inc li {
  display: grid; grid-template-columns: 18px 1fr; gap: 0.65rem;
  font-size: 0.93rem;
  color: var(--muted);
}
.plan__inc li::before {
  content: "";
  width: 7px; height: 7px; margin-top: 0.5rem;
  border-radius: 2px;
  background: var(--turf-500);
}
.plan__inc li.is-out { opacity: 0.45; text-decoration: line-through; }
.plan__inc li.is-out::before { background: var(--muted); }
.plan .btn { margin-top: auto; justify-content: center; }

/* Estimator */
.estimator {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: clamp(1.6rem, 4vw, 2.6rem);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.85fr);
  gap: clamp(1.8rem, 4vw, 3rem);
  align-items: center;
}
.estimator__out {
  background: var(--soil-900);
  color: #fff;
  border-radius: var(--r-lg);
  padding: 1.7rem 1.6rem;
  text-align: center;
}
.estimator__num {
  font-family: var(--display);
  font-weight: 800;
  font-stretch: 122%;
  font-size: clamp(3rem, 7vw, 4.4rem);
  line-height: 0.88;
  color: var(--blade-400);
  letter-spacing: -0.02em;
}
.estimator__per, .estimator__season {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}
.estimator__per { margin-top: 0.7rem; }
.estimator__season {
  margin-top: 1.2rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}
.estimator__season b { color: #fff; font-weight: 500; }

.range-row { margin-bottom: 1.6rem; }
.range-row__top {
  display: flex; align-items: baseline; justify-content: space-between;
  margin-bottom: 0.7rem;
}
.range-row__top b {
  font-family: var(--display);
  font-weight: 700;
  font-stretch: 112%;
  font-size: 1.25rem;
}
input[type="range"] {
  width: 100%;
  height: 4px;
  appearance: none;
  background: linear-gradient(90deg, var(--turf-500) var(--pct, 30%), var(--line) var(--pct, 30%));
  border-radius: 4px;
  cursor: pointer;
}
input[type="range"]::-webkit-slider-thumb {
  appearance: none;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--flag);
  border: 3px solid var(--paper);
  box-shadow: 0 3px 10px rgba(11, 18, 14, 0.28);
  cursor: grab;
}
input[type="range"]::-moz-range-thumb {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--flag);
  border: 3px solid var(--paper);
  cursor: grab;
}

.seg { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.seg label {
  flex: 1 1 auto;
  position: relative;
}
.seg input { position: absolute; opacity: 0; pointer-events: none; }
.seg span {
  display: block;
  text-align: center;
  padding: 0.8rem 0.9rem;
  border: 1px solid var(--line);
  border-radius: var(--r);
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.25s var(--ease);
}
.seg span:hover { border-color: var(--turf-500); }
.seg input:checked + span {
  background: var(--soil-900);
  border-color: var(--soil-900);
  color: #fff;
}
.seg input:focus-visible + span { outline: 3px solid var(--flag); outline-offset: 2px; }

/* ------------------------------------------------------------------ faqs - */
.faq { border-top: 1px solid var(--line); }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  text-align: left;
  background: none;
  border: 0;
  padding: 1.5rem 0;
  cursor: pointer;
  font-family: var(--display);
  font-weight: 700;
  font-stretch: 108%;
  font-size: clamp(1.05rem, 1.7vw, 1.25rem);
  line-height: 1.25;
  transition: color 0.25s;
}
.faq__q:hover { color: var(--turf-700); }
.faq__ico {
  flex: none;
  width: 30px; height: 30px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: grid; place-items: center;
  position: relative;
  transition: background 0.3s, border-color 0.3s, transform 0.4s var(--ease);
}
.faq__ico::before, .faq__ico::after {
  content: "";
  position: absolute;
  background: currentColor;
  transition: transform 0.35s var(--ease), background 0.3s;
}
.faq__ico::before { width: 11px; height: 1.5px; }
.faq__ico::after { width: 1.5px; height: 11px; }
.faq__q[aria-expanded="true"] .faq__ico { background: var(--flag); border-color: var(--flag); color: #fff; transform: rotate(90deg); }
.faq__q[aria-expanded="true"] .faq__ico::after { transform: scaleY(0); }
.faq__a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 0.45s var(--ease); }
.faq__a > div { overflow: hidden; }
.faq__a p { color: var(--muted); max-width: 72ch; padding-bottom: 1.5rem; margin: 0; }
.faq__q[aria-expanded="true"] + .faq__a { grid-template-rows: 1fr; }

/* ----------------------------------------------------------------- forms - */
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.1rem; }
.field { display: flex; flex-direction: column; gap: 0.45rem; }
.field--full { grid-column: 1 / -1; }
.field label {
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--muted);
}
.field label .req { color: var(--flag); }
.field input, .field textarea, .field select {
  font: inherit;
  font-size: 1rem;
  padding: 0.85rem 1rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r);
  color: var(--ink);
  transition: border-color 0.25s, box-shadow 0.25s;
}
.field textarea { resize: vertical; min-height: 130px; }
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: var(--turf-500);
  box-shadow: 0 0 0 3px rgba(67, 153, 76, 0.16);
}
.field.has-error input, .field.has-error textarea { border-color: var(--flag); }
.field__err {
  font-family: var(--mono);
  font-size: 0.66rem;
  letter-spacing: 0.06em;
  color: var(--flag-600);
}
.hp { position: absolute; left: -9999px; }

.checkline { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.checkline label { position: relative; }
.checkline input { position: absolute; opacity: 0; pointer-events: none; }
.checkline span {
  display: block;
  padding: 0.7rem 1.05rem;
  border: 1px solid var(--line);
  border-radius: 100px;
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  cursor: pointer;
  background: var(--paper);
  transition: all 0.25s var(--ease);
}
.checkline span:hover { border-color: var(--turf-500); }
.checkline input:checked + span {
  background: var(--turf-700);
  border-color: var(--turf-700);
  color: #fff;
}
.checkline input:focus-visible + span { outline: 3px solid var(--flag); outline-offset: 2px; }

.alert {
  border-radius: var(--r-lg);
  padding: 1.4rem 1.5rem;
  margin-bottom: 2rem;
  border: 1px solid;
}
.alert--ok { background: rgba(67, 153, 76, 0.09); border-color: rgba(67, 153, 76, 0.35); }
.alert--bad { background: rgba(255, 90, 30, 0.08); border-color: rgba(255, 90, 30, 0.35); }
.alert h3 { font-family: var(--display); font-stretch: 110%; font-size: 1.2rem; margin-bottom: 0.4rem; }
.alert p { margin: 0; color: var(--muted); }

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.75fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
.info-card {
  background: var(--soil-900);
  color: #fff;
  border-radius: var(--r-lg);
  padding: clamp(1.6rem, 3vw, 2.2rem);
}
.info-card h3 { font-family: var(--display); font-stretch: 112%; font-size: 1.35rem; margin-bottom: 1.4rem; }
.info-row { padding: 1rem 0; border-top: 1px solid rgba(255, 255, 255, 0.12); }
.info-row:first-of-type { border-top: 0; padding-top: 0; }
.info-row dt {
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--blade-300);
  margin-bottom: 0.3rem;
}
.info-row dd { margin: 0; font-size: 1.02rem; }
.info-row dd a { text-decoration: none; border-bottom: 1px solid rgba(255, 255, 255, 0.3); }
.info-row dd a:hover { color: var(--blade-400); border-color: var(--blade-400); }

/* -------------------------------------------------------------- cta band - */
.cta-band {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: var(--soil-900);
  isolation: isolate;
}
.cta-band__video {
  position: absolute; inset: 0; z-index: -2;
  width: 100%; height: 100%; object-fit: cover;
}
.cta-band__veil {
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(120deg, rgba(11, 18, 14, 0.94), rgba(11, 18, 14, 0.66));
}
.cta-band__in { padding-block: clamp(4rem, 9vw, 7rem); max-width: 64ch; }
.cta-band__title {
  font-family: var(--display);
  font-weight: 800;
  font-stretch: 118%;
  font-size: clamp(2.1rem, 5vw, 3.6rem);
  line-height: 0.98;
  letter-spacing: -0.02em;
  margin-bottom: 1.2rem;
}
.cta-band__lead { color: rgba(255, 255, 255, 0.78); max-width: 52ch; margin-bottom: 2rem; }
.cta-band__actions { display: flex; flex-wrap: wrap; gap: 0.9rem; }

/* ---------------------------------------------------------------- footer - */
.site-foot { background: var(--soil-900); color: rgba(255, 255, 255, 0.66); padding-block: clamp(3.5rem, 7vw, 5rem) 2rem; }
.foot-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.foot-brand__line { margin: 1.2rem 0; color: rgba(255, 255, 255, 0.78); max-width: 34ch; }
.foot-brand__meta { color: rgba(255, 255, 255, 0.42); line-height: 1.9; }
.foot-col__h { color: var(--blade-300); margin: 0 0 1.1rem; }
.foot-col ul { display: grid; gap: 0.6rem; }
.foot-col a { text-decoration: none; transition: color 0.25s, padding-left 0.25s; }
.foot-col a:hover { color: #fff; padding-left: 5px; }
.foot-phone {
  font-family: var(--display);
  font-weight: 700;
  font-stretch: 112%;
  font-size: 1.4rem;
  color: #fff;
  text-decoration: none;
}
.foot-phone:hover { color: var(--blade-400); }
.foot-addr { margin-top: 1rem; line-height: 1.7; }
.foot-hours { color: rgba(255, 255, 255, 0.45); }
.foot-area { padding-block: 2rem; border-bottom: 1px solid rgba(255, 255, 255, 0.1); }
.foot-area__list { display: flex; flex-wrap: wrap; gap: 0.5rem 1.4rem; }
.foot-area__list li {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.5);
}
.foot-base {
  display: flex; flex-wrap: wrap; gap: 1rem;
  justify-content: space-between;
  padding-top: 1.8rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.4);
}
.foot-base p { margin: 0; }

/* -------------------------------------------------------------- reveals -- */
/* Reveal targets only start hidden when JS is present to bring them back. */
.js [data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.85s var(--ease-out), transform 0.85s var(--ease-out);
}
.js [data-reveal].is-in { opacity: 1; transform: none; }
.js [data-reveal-stagger] > * {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.js [data-reveal-stagger].is-in > * { opacity: 1; transform: none; }
.js [data-reveal-stagger].is-in > *:nth-child(2) { transition-delay: 0.08s; }
.js [data-reveal-stagger].is-in > *:nth-child(3) { transition-delay: 0.16s; }
.js [data-reveal-stagger].is-in > *:nth-child(4) { transition-delay: 0.24s; }
.js [data-reveal-stagger].is-in > *:nth-child(5) { transition-delay: 0.32s; }
.js [data-reveal-stagger].is-in > *:nth-child(6) { transition-delay: 0.4s; }
.js [data-reveal-stagger].is-in > *:nth-child(7) { transition-delay: 0.48s; }
.js [data-reveal-stagger].is-in > *:nth-child(8) { transition-delay: 0.56s; }

/* ----------------------------------------------------------- responsive -- */
@media (max-width: 1080px) {
  .foot-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 960px) {
  .burger { display: flex; }
  .site-head__cta { display: none; }
  .nav {
    position: fixed;
    inset: 118px 0 0;
    background: var(--soil-900);
    color: #fff;
    padding: 2rem var(--gutter) 3rem;
    overflow-y: auto;
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s var(--ease), transform 0.35s var(--ease), visibility 0.35s;
  }
  .nav.is-open { opacity: 1; visibility: visible; transform: none; }
  .nav__list { flex-direction: column; align-items: stretch; gap: 0; }
  .nav__list > li { border-bottom: 1px solid rgba(255, 255, 255, 0.1); }
  .nav__list a, .nav__toggle {
    width: 100%;
    justify-content: space-between;
    padding: 1.1rem 0;
    font-family: var(--display);
    font-weight: 700;
    font-stretch: 110%;
    font-size: 1.4rem;
  }
  .nav__list > li > a::after, .nav__toggle::after { display: none; }
  .nav__sub {
    position: static;
    opacity: 1; visibility: visible; transform: none;
    background: none; border: 0; box-shadow: none;
    min-width: 0;
    padding: 0 0 1rem;
    display: none;
  }
  .nav__has-sub.is-open .nav__sub { display: block; }
  .nav__has-sub.is-open .nav__toggle svg { transform: rotate(180deg); }
  .nav__sub a { font-family: var(--body); font-size: 1rem; font-weight: 500; padding: 0.6rem 0; }
  .nav__sub a:hover { background: none; color: var(--blade-400); }
  .nav__sub-note { color: rgba(255, 255, 255, 0.45); }

  .hero__grid { grid-template-columns: 1fr; }
  .readout { max-width: 460px; }
  .pillars { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; }
  .split--flip .split__fig { order: 0; }
  .split__badge { right: 1rem; bottom: -1.2rem; }
  .reviews, .plans { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .round-detail { grid-template-columns: 1fr; }
  .estimator { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 860px) {
  /* Narrow screens read the chart by swiping it. */
  .chart__hint { display: block; }
}

@media (max-width: 640px) {
  .ticker__item--hide { display: none; }
  .ticker__item:not(.ticker__phone) { display: none; }
  .ticker__phone { margin-left: 0; }
  .form-grid { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr; }
  .hero__scroll { display: none; }
  .split__badge { position: static; max-width: none; margin-top: 1rem; }
  .stats { grid-template-columns: 1fr; }
}

/* -------------------------------------------------------- reduced motion - */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  [data-reveal], [data-reveal-stagger] > * { opacity: 1 !important; transform: none !important; }
  .hero__title .ln > span { transform: none; }
  .hero__sub, .hero__actions, .readout { opacity: 1; }
  .chart .bar { transform: scaleX(1); }
  .marquee__track { animation: none; }
}

/* ------------------------------------------------------------ round list - */
/* A real sequence, so it gets real numbering. */
.rounds-list { border-top: 1px solid var(--line); }
.round {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: clamp(1.5rem, 4vw, 3.5rem);
  padding-block: clamp(1.8rem, 4vw, 2.6rem);
  border-bottom: 1px solid var(--line);
  position: relative;
}
.round::after {
  content: "";
  position: absolute; left: 0; bottom: -1px;
  height: 1px; width: 0;
  background: var(--flag);
  transition: width 0.7s var(--ease-out);
}
.round:hover::after { width: 100%; }
.round__rail { display: flex; flex-direction: column; gap: 0.55rem; }
.round__n {
  font-family: var(--display);
  font-weight: 800;
  font-stretch: 122%;
  font-size: clamp(2.6rem, 5vw, 3.4rem);
  line-height: 0.82;
  letter-spacing: -0.03em;
  color: var(--ink);
  transition: color 0.3s;
}
.round:hover .round__n { color: var(--flag); }
.round__win {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.round__lanes { display: flex; gap: 5px; }
.round__lanes i { width: 22px; height: 5px; border-radius: 2px; background: var(--lane); }
.round__body h3 { margin-bottom: 0.7rem; }
.round__summary { color: var(--muted); max-width: 62ch; }
.round__list {
  display: grid;
  gap: 0.55rem;
  margin-top: 1.2rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--line-soft);
}
.round__list li {
  display: grid;
  grid-template-columns: 16px 1fr;
  gap: 0.7rem;
  font-size: 0.95rem;
  color: var(--muted);
}
.round__list li::before {
  content: "";
  width: 6px; height: 6px;
  margin-top: 0.55rem;
  border-radius: 1px;
  background: var(--turf-500);
}

@media (max-width: 720px) {
  .round { grid-template-columns: 1fr; gap: 1rem; }
  .round__rail { flex-direction: row; align-items: baseline; gap: 1rem; }
}

/* ------------------------------------------------------- grouped controls - */
/* Checkbox and radio groups are fieldsets, so reset the browser chrome. */
fieldset.field, fieldset.seg-group {
  border: 0;
  margin: 0;
  padding: 0;
  min-width: 0;
}
fieldset.field > legend, fieldset.seg-group > legend {
  padding: 0;
  margin-bottom: 0.45rem;
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--muted);
}
fieldset.seg-group > legend { margin-bottom: 0.7rem; }
