/* Hudson Archer / Driven Elite. Design system. */
:root {
  --ink: #0e0e10;
  --char: #161619;
  --char-2: #1f1f23;
  --paper: #ffffff;
  --off: #f4f3f0;
  --sand: #e7e5e0;
  --text: #0e0e10;
  --muted: #55555b;
  --on-dark: #f2f1ee;
  --on-dark-muted: #a3a3aa;
  --line: rgba(14, 14, 16, .13);
  --line-strong: rgba(14, 14, 16, .9);
  --line-d: rgba(255, 255, 255, .14);
  --red: #c62a21;
  --red-d: #a6221a;
  --red-on-dark: #e5483e;
  --ok: #1f7a3f;

  --f-sans: "Archivo", "Helvetica Neue", Arial, sans-serif;
  --f-mono: "JetBrains Mono", ui-monospace, Menlo, Consolas, monospace;

  --wrap: 1320px;
  --gut: clamp(16px, 4vw, 48px);
  --col-gap: clamp(16px, 2.2vw, 32px);
  --sec: clamp(80px, 10vw, 152px);
  --r: 4px;
  --r-lg: 6px;
  --hdr: 72px;
  --ease: cubic-bezier(.2, .7, .2, 1);
}

*, *::before, *::after { box-sizing: border-box; }
[hidden] { display: none !important; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--text);
  font-family: var(--f-sans);
  font-size: 18px;
  line-height: 1.55;
  font-weight: 430;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, video, iframe { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; }
button, input, select, textarea { font: inherit; color: inherit; }
h1, h2, h3, h4 { margin: 0; font-weight: 800; line-height: 1; }
p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
fieldset { border: 0; margin: 0; padding: 0; min-width: 0; }
:focus-visible { outline: 3px solid var(--red); outline-offset: 3px; }
.dark :focus-visible { outline-color: var(--red-on-dark); }
[id] { scroll-margin-top: calc(var(--hdr) + 16px); }
.sr-only { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.skip { position: absolute; left: 16px; top: -60px; z-index: 200; background: var(--red); color: #fff; padding: 12px 18px; font-weight: 700; text-decoration: none; }
.skip:focus { top: 12px; }

/* Layout */
.wrap { width: 100%; max-width: calc(var(--wrap) + var(--gut) * 2); margin: 0 auto; padding: 0 var(--gut); }
.sec { padding: var(--sec) 0; position: relative; }
.sec.tight { padding: calc(var(--sec) * .6) 0; }
.off { background: var(--off); }
.dark { background: var(--ink); color: var(--on-dark); }
.dark.char { background: var(--char); }
.grid { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); gap: var(--col-gap); }
.rule-top { border-top: 1px solid var(--line); }
.dark .rule-top { border-color: var(--line-d); }

/* Type */
.display, .h1 {
  font-size: clamp(48px, 8.4vw, 132px);
  font-stretch: 112%;
  font-weight: 850;
  letter-spacing: -.02em;
  line-height: .9;
  text-transform: uppercase;
}
.h2 {
  font-size: clamp(38px, 5.4vw, 80px);
  font-stretch: 110%;
  font-weight: 830;
  letter-spacing: -.018em;
  line-height: .94;
  text-transform: uppercase;
  max-width: 16ch;
}
.h3 { font-size: clamp(22px, 2vw, 28px); font-weight: 780; letter-spacing: -.01em; line-height: 1.12; font-stretch: 104%; }
.h4 { font-size: 20px; font-weight: 760; line-height: 1.2; }
.red { color: var(--red); }
.dark .red { color: var(--red-on-dark); }
.lede { font-size: clamp(19px, 1.55vw, 22px); line-height: 1.5; font-weight: 460; color: var(--muted); max-width: 58ch; }
.dark .lede { color: var(--on-dark-muted); }
.lede strong { color: var(--text); font-weight: 700; }
.dark .lede strong { color: var(--on-dark); }
.eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--f-mono); font-size: 13px; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase; color: var(--muted);
  margin-bottom: 24px;
}
.eyebrow::before { content: ""; width: 24px; height: 3px; background: var(--red); flex: none; }
.dark .eyebrow { color: var(--on-dark-muted); }
.mono { font-family: var(--f-mono); font-feature-settings: "tnum"; }
.num { font-feature-settings: "tnum"; }
.small { font-size: 15px; line-height: 1.5; color: var(--muted); }
.dark .small { color: var(--on-dark-muted); }
.sec-head { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); gap: var(--col-gap); align-items: end; margin-bottom: clamp(40px, 5vw, 72px); }
.sec-head > :first-child { grid-column: 1 / span 7; }
.sec-head > :last-child:not(:first-child) { grid-column: 8 / span 5; }
.sec-head .lede { margin: 0; }

/* Buttons */
.btn {
  --bg: var(--ink); --fg: #fff; --bd: var(--ink);
  display: inline-flex; align-items: center; justify-content: center; gap: 14px;
  min-height: 56px; padding: 0 26px;
  background: var(--bg); color: var(--fg); border: 2px solid var(--bd); border-radius: 2px;
  font-family: var(--f-sans); font-size: 15px; font-weight: 800; font-stretch: 108%;
  letter-spacing: .06em; text-transform: uppercase; text-decoration: none; cursor: pointer;
  transition: background-color .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease), transform .2s var(--ease);
}
.btn .arr { display: inline-block; width: 18px; height: 2px; background: currentColor; position: relative; transition: width .25s var(--ease); }
.btn .arr::after { content: ""; position: absolute; right: 0; top: -4px; width: 8px; height: 8px; border-top: 2px solid currentColor; border-right: 2px solid currentColor; transform: rotate(45deg); transform-origin: center; }
.btn:hover .arr { width: 26px; }
.btn:active { transform: translateY(1px); }
.btn-red { --bg: var(--red); --bd: var(--red); }
.btn-red:hover { --bg: var(--red-d); --bd: var(--red-d); }
.btn-ink:hover { --bg: #2a2a2f; --bd: #2a2a2f; }
.btn-ghost { --bg: transparent; --fg: var(--ink); --bd: var(--line-strong); }
.btn-ghost:hover { --bg: var(--ink); --fg: #fff; }
.dark .btn-ghost { --fg: var(--on-dark); --bd: rgba(255, 255, 255, .55); }
.dark .btn-ghost:hover { --bg: #fff; --fg: var(--ink); --bd: #fff; }
.btn-sm { min-height: 44px; padding: 0 18px; font-size: 13px; }
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; }
.link {
  display: inline-flex; align-items: center; gap: 10px; font-weight: 750; text-decoration: none;
  background: linear-gradient(currentColor, currentColor) 0 100% / 100% 2px no-repeat; padding-bottom: 3px;
  transition: background-size .25s var(--ease);
}
.link:hover { background-size: 0 2px; background-position: 100% 100%; }
.link.red { color: var(--red); }

/* Header */
.hdr {
  position: fixed; inset: 0 0 auto; z-index: 100; height: var(--hdr);
  background: rgba(255, 255, 255, 1); border-bottom: 1px solid var(--line);
  transition: background-color .25s var(--ease), border-color .25s var(--ease), height .25s var(--ease);
}
.hdr .wrap { height: 100%; display: flex; align-items: center; gap: 24px; }
body.top-dark .hdr:not(.scrolled) { background: transparent; border-color: transparent; color: var(--on-dark); }
body.top-dark .hdr:not(.scrolled) .btn-ghost { --fg: #fff; --bd: rgba(255, 255, 255, .55); }
.hdr.scrolled { --hdr: 64px; height: 64px; }
body { padding-top: 0; }
main { display: block; }
.logo { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; margin-right: auto; }
.logo-mark { width: 12px; height: 28px; background: var(--red); flex: none; }
.logo-text { font-weight: 900; font-stretch: 118%; font-size: 19px; letter-spacing: .02em; text-transform: uppercase; line-height: 1; white-space: nowrap; }
.nav { display: flex; align-items: center; gap: 4px; }
.nav a {
  position: relative; padding: 10px 12px; font-size: 15px; font-weight: 650; text-decoration: none; white-space: nowrap;
}
.nav a::after { content: ""; position: absolute; left: 12px; right: 12px; bottom: 4px; height: 2px; background: var(--red); transform: scaleX(0); transform-origin: left; transition: transform .25s var(--ease); }
.nav a:hover::after, .nav a[aria-current="page"]::after { transform: scaleX(1); }
.hdr-cta { margin-left: 12px; }
.burger { display: none; width: 48px; height: 48px; margin-right: -10px; background: none; border: 0; cursor: pointer; position: relative; }
.burger span { position: absolute; left: 12px; right: 12px; height: 2px; background: currentColor; transition: transform .25s var(--ease), opacity .2s; }
.burger span:nth-child(1) { top: 17px; }
.burger span:nth-child(2) { top: 23px; }
.burger span:nth-child(3) { top: 29px; }

/* Mobile menu */
.menu {
  position: fixed; inset: 0; z-index: 150; background: var(--ink); color: var(--on-dark);
  display: flex; flex-direction: column; padding: 16px var(--gut) 32px; overflow-y: auto;
  opacity: 0; visibility: hidden; transition: opacity .25s var(--ease), visibility 0s .25s;
}
.menu.open { opacity: 1; visibility: visible; transition: opacity .25s var(--ease); }
.menu-top { display: flex; align-items: center; height: 56px; margin-bottom: 24px; }
.menu-close { margin-left: auto; width: 48px; height: 48px; background: none; border: 0; color: inherit; cursor: pointer; position: relative; margin-right: -10px; }
.menu-close::before, .menu-close::after { content: ""; position: absolute; left: 12px; right: 12px; top: 23px; height: 2px; background: currentColor; }
.menu-close::before { transform: rotate(45deg); }
.menu-close::after { transform: rotate(-45deg); }
.menu nav a {
  display: flex; justify-content: space-between; align-items: center; padding: 16px 0; border-bottom: 1px solid var(--line-d);
  font-size: 30px; font-weight: 820; font-stretch: 110%; text-transform: uppercase; text-decoration: none; letter-spacing: -.01em;
}
.menu nav a span { font-family: var(--f-mono); font-size: 13px; font-weight: 500; color: var(--on-dark-muted); }
.menu nav a[aria-current="page"] { color: var(--red-on-dark); }
.menu .btn-row { margin-top: 32px; flex-direction: column; }
.menu .btn { width: 100%; }
.menu-social { display: flex; gap: 24px; margin-top: 28px; font-weight: 700; }
body.lock { overflow: hidden; }

/* Mobile bar */
.mbar { display: none; }

/* Hero */
.hero { padding: calc(var(--hdr) + clamp(48px, 7vw, 96px)) 0 0; background: var(--ink); color: var(--on-dark); position: relative; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); gap: var(--col-gap); align-items: end; }
.hero-copy { grid-column: 1 / span 7; padding-bottom: clamp(48px, 6vw, 88px); }
.hero-copy .display { margin-bottom: 32px; font-size: clamp(44px, 5.9vw, 96px); font-stretch: 106%; }
.hero-copy .display .line { display: block; overflow: hidden; }
.hero-copy .display .line > span { display: block; }
.hero-copy .lede { margin-bottom: 40px; max-width: 54ch; }
.hero-media { grid-column: 8 / span 5; align-self: stretch; display: grid; grid-template-rows: minmax(0, 1fr) auto; gap: 12px; padding-bottom: clamp(48px, 6vw, 88px); }
.hero-media .frame { position: relative; overflow: hidden; border-radius: var(--r); background: var(--char-2); min-height: 360px; }
.hero-media .frame img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 30% 30%; }
.hero-media .pair { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.hero-media .pair .frame { min-height: 0; aspect-ratio: 6 / 5; }
.hero-media .pair .frame img { object-position: center; }
.cap {
  position: absolute; left: 12px; bottom: 12px; z-index: 1; background: rgba(14, 14, 16, .86); color: #fff;
  font-family: var(--f-mono); font-size: 12px; letter-spacing: .04em; padding: 7px 10px; border-radius: 2px; max-width: calc(100% - 24px);
}
.hero-meta { border-top: 1px solid var(--line-d); }

/* Proof bar */
.proof { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); }
.proof > div { padding: 36px 28px 36px 0; border-right: 1px solid var(--line-d); }
.proof > div + div { padding-left: 28px; }
.proof > div:last-child { border-right: 0; }
.proof .v { display: block; font-size: clamp(36px, 3.7vw, 58px); font-weight: 870; font-stretch: 108%; line-height: 1; letter-spacing: -.02em; color: var(--red-on-dark); font-feature-settings: "tnum"; }
.proof .l { display: block; margin-top: 12px; font-size: 16px; font-weight: 560; line-height: 1.35; color: var(--on-dark); max-width: 22ch; }
.proof-note { padding: 0 0 28px; font-size: 14px; color: var(--on-dark-muted); }
.proof-note a { color: var(--on-dark); }
.proof.light > div { border-color: var(--line); }
.proof.light .v { color: var(--red); }
.proof.light .l { color: var(--text); }

/* Help grid */
.help { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); border-top: 2px solid var(--ink); }
.help > li { padding: 36px 32px 40px 0; border-bottom: 1px solid var(--line); }
.help > li:not(:nth-child(3n + 1)) { padding-left: 32px; border-left: 1px solid var(--line); }
.help .n { display: block; font-family: var(--f-mono); font-size: 14px; font-weight: 600; color: var(--red); margin-bottom: 40px; }
.help .h3 { margin-bottom: 12px; text-transform: uppercase; font-stretch: 110%; }
.help p { color: var(--muted); max-width: 34ch; }

/* Story / timeline */
.story { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); gap: var(--col-gap); }
.story-side { grid-column: 1 / span 5; }
.story-side .sticky { position: sticky; top: calc(var(--hdr) + 32px); }
.story-side .h2 { margin-bottom: 28px; }
.story-side figure { margin: 36px 0 0; position: relative; border-radius: var(--r); overflow: hidden; aspect-ratio: 552 / 461; background: var(--sand); }
.story-side figure img { width: 100%; height: 100%; object-fit: cover; }
.tl { grid-column: 7 / span 6; counter-reset: tl; }
.tl li { display: grid; grid-template-columns: 120px minmax(0, 1fr); gap: 24px; padding: 32px 0; border-top: 1px solid var(--line); position: relative; }
.tl li:first-child { border-top: 2px solid var(--ink); }
.tl .stage { font-family: var(--f-mono); font-size: 14px; font-weight: 600; text-transform: uppercase; letter-spacing: .04em; color: var(--red); padding-top: 4px; }
.tl .h3 { margin-bottom: 10px; }
.tl p { color: var(--muted); }
.tl .src { display: block; margin-top: 10px; font-family: var(--f-mono); font-size: 12px; color: #8a8a90; }

/* Case studies */
.cases { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: var(--col-gap); }
.case { display: flex; flex-direction: column; background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; }
.off .case { border-color: transparent; }
.case .shot { aspect-ratio: 1582 / 700; background: #0f1115; overflow: hidden; position: relative; }
.case .shot img { width: 100%; height: 100%; object-fit: cover; object-position: left top; transition: transform .5s var(--ease); }
.case:hover .shot img { transform: scale(1.02); }
.case .body { padding: 28px 28px 30px; display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 16px 24px; align-items: end; flex: 1; }
.case .res { grid-column: 1 / -1; font-size: clamp(34px, 3.6vw, 52px); font-weight: 870; font-stretch: 110%; letter-spacing: -.02em; line-height: 1; font-feature-settings: "tnum"; }
.case .res .arrow { color: var(--red); padding: 0 .12em; }
.case .res small { font-size: .45em; font-weight: 700; color: var(--muted); letter-spacing: 0; }
.case .who strong { display: block; font-size: 19px; font-weight: 780; }
.case .who span { color: var(--muted); font-size: 16px; }
.case .time { font-family: var(--f-mono); font-size: 13px; font-weight: 600; text-transform: uppercase; background: var(--ink); color: #fff; padding: 8px 10px; border-radius: 2px; white-space: nowrap; }
.case dl { grid-column: 1 / -1; margin: 0; display: grid; gap: 8px; border-top: 1px solid var(--line); padding-top: 16px; }
.case dt { font-family: var(--f-mono); font-size: 12px; text-transform: uppercase; color: var(--muted); }
.case dd { margin: 0 0 8px; }
.cases-foot { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 24px; margin-top: 40px; padding-top: 28px; border-top: 1px solid var(--line); }
.disclaimer { font-size: 14px; line-height: 1.5; color: var(--muted); max-width: 72ch; margin: 0; }
.dark .disclaimer { color: var(--on-dark-muted); }

/* Results table (all) */
.rtable { width: 100%; border-collapse: collapse; }
.rtable th, .rtable td { text-align: left; padding: 18px 16px 18px 0; border-bottom: 1px solid var(--line); vertical-align: middle; }
.rtable thead th { font-family: var(--f-mono); font-size: 13px; font-weight: 600; text-transform: uppercase; color: var(--muted); border-bottom: 2px solid var(--ink); }
.rtable td.r { font-weight: 820; font-stretch: 108%; font-size: 20px; white-space: nowrap; font-feature-settings: "tnum"; }
.rtable td.r .arrow { color: var(--red); }
.rtable td.t { font-family: var(--f-mono); font-size: 14px; white-space: nowrap; }
.rtable td.n strong { display: block; font-weight: 760; }
.rtable td.n span { color: var(--muted); font-size: 16px; }

/* Pillars (dark) */
.pillars { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: var(--col-gap); }
.pillar { border-top: 2px solid var(--red-on-dark); padding-top: 28px; }
.pillar .n { font-family: var(--f-mono); font-size: 14px; font-weight: 600; color: var(--on-dark-muted); display: block; margin-bottom: 20px; }
.pillar .h3 { font-size: clamp(30px, 3vw, 44px); text-transform: uppercase; font-stretch: 112%; margin-bottom: 16px; }
.pillar p { color: var(--on-dark-muted); }
.pillar ul { margin-top: 20px; border-top: 1px solid var(--line-d); }
.pillar li { padding: 12px 0; border-bottom: 1px solid var(--line-d); font-weight: 600; display: flex; gap: 12px; }
.pillar li::before { content: ""; flex: none; width: 8px; height: 8px; background: var(--red-on-dark); margin-top: 9px; }
.light-pillars .pillar { border-color: var(--red); }
.light-pillars .pillar .n, .light-pillars .pillar p { color: var(--muted); }
.light-pillars .pillar ul, .light-pillars .pillar li { border-color: var(--line); }
.light-pillars .pillar li::before { background: var(--red); }
.community-band { margin-top: clamp(56px, 6vw, 88px); display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); gap: var(--col-gap); align-items: center; padding: clamp(28px, 3vw, 44px); background: var(--char-2); border-radius: var(--r-lg); }
.community-band > div:first-child { grid-column: 1 / span 8; }
.community-band > div:last-child { grid-column: 9 / span 4; display: flex; justify-content: flex-end; }
.community-band .h3 { font-size: clamp(24px, 2.4vw, 34px); text-transform: uppercase; font-stretch: 110%; margin-bottom: 10px; }
.community-band p { color: var(--on-dark-muted); margin: 0; }
.tag { display: inline-block; font-family: var(--f-mono); font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: .06em; padding: 6px 9px; border: 1px solid currentColor; border-radius: 2px; margin-bottom: 14px; }

/* Paths */
.paths { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 0; border-top: 2px solid var(--ink); border-left: 1px solid var(--line); }
.path {
  position: relative; display: flex; flex-direction: column; min-height: 260px; padding: 32px; text-decoration: none;
  border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--paper);
  transition: background-color .25s var(--ease), color .25s var(--ease);
}
.path .who { font-family: var(--f-mono); font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); margin-bottom: 18px; }
.path .h3 { font-size: clamp(24px, 2.2vw, 30px); text-transform: uppercase; font-stretch: 110%; line-height: 1.02; margin-bottom: 14px; max-width: 14ch; }
.path p { color: var(--muted); margin-bottom: 24px; }
.path .go { margin-top: auto; display: flex; align-items: center; justify-content: space-between; font-weight: 800; font-size: 14px; text-transform: uppercase; letter-spacing: .06em; }
.path .go i { width: 44px; height: 44px; border: 2px solid currentColor; border-radius: 50%; display: grid; place-items: center; font-style: normal; transition: background-color .25s, color .25s, transform .25s var(--ease); }
.path:hover { background: var(--ink); color: #fff; }
.path:hover .who, .path:hover p { color: var(--on-dark-muted); }
.path:hover .go i { background: var(--red); border-color: var(--red); transform: translateX(4px); }
.path.car { background: var(--off); }
.path.car .who { color: var(--red); }
.path.car:hover { background: var(--red); }
.path.car:hover .who, .path.car:hover p { color: rgba(255, 255, 255, .85); }
.path.car:hover .go i { background: #fff; color: var(--red); border-color: #fff; }

/* Wins wall */
.wall { columns: 3 300px; column-gap: 16px; }
.wall figure { break-inside: avoid; margin: 0 0 16px; border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; background: #fff; }
.wall button { display: block; width: 100%; padding: 0; border: 0; background: none; cursor: zoom-in; }
.wall img { width: 100%; }
.dark .wall figure { border-color: transparent; }

/* Testimonials */
.quotes { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: var(--col-gap); }
.quote blockquote { margin: 0 0 20px; font-size: clamp(22px, 2vw, 28px); font-weight: 650; line-height: 1.3; }
.quote figcaption strong { display: block; }

/* Content / media */
.media { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: var(--col-gap); }
.vid { text-decoration: none; display: flex; flex-direction: column; }
.vid .th { position: relative; aspect-ratio: 16 / 9; border-radius: var(--r); overflow: hidden; background: var(--char-2); margin-bottom: 14px; }
.vid .th img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s var(--ease); }
.vid:hover .th img { transform: scale(1.03); }
.vid .th::after { content: ""; position: absolute; right: 12px; bottom: 12px; width: 40px; height: 40px; border-radius: 50%; background: var(--red) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M9 7l8 5-8 5z' fill='%23fff'/%3E%3C/svg%3E") center / 22px no-repeat; }
.vid .meta { font-family: var(--f-mono); font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: .05em; color: var(--muted); margin-bottom: 6px; }
.dark .vid .meta { color: var(--on-dark-muted); }
.vid .t { font-weight: 720; font-size: 17px; line-height: 1.3; }
.media.lead-2 > .vid:first-child { grid-column: span 2; grid-row: span 2; }
.media.lead-2 > .vid:first-child .t { font-size: 24px; font-weight: 800; }
.ig-band { margin-top: clamp(48px, 5vw, 72px); display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); gap: var(--col-gap); align-items: center; border-top: 2px solid var(--ink); padding-top: 36px; }
.dark .ig-band { border-color: var(--on-dark); }
.ig-band > div:first-child { grid-column: 1 / span 5; }
.ig-band .handle { font-size: clamp(34px, 4vw, 60px); font-weight: 870; font-stretch: 112%; letter-spacing: -.02em; line-height: 1; text-decoration: none; display: inline-block; }
.ig-band .handle:hover { color: var(--red); }
.ig-hl { grid-column: 6 / span 4; display: flex; flex-wrap: wrap; gap: 8px; }
.ig-hl span { font-weight: 700; font-size: 15px; padding: 9px 14px; border: 1px solid var(--line); border-radius: 999px; }
.dark .ig-hl span { border-color: var(--line-d); }
.ig-band > div:last-child { grid-column: 10 / span 3; display: flex; justify-content: flex-end; }

/* Founder */
.founder { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); gap: var(--col-gap); align-items: start; }
.founder figure { grid-column: 1 / span 5; margin: 0; position: relative; border-radius: var(--r); overflow: hidden; aspect-ratio: 4 / 5; background: var(--char-2); }
.founder figure img { width: 100%; height: 100%; object-fit: cover; object-position: 22% 50%; }
.founder .copy { grid-column: 7 / span 6; }
.founder .h2 { margin-bottom: 32px; }
.founder .copy p { font-size: 19px; color: var(--muted); max-width: 56ch; }
.dark .founder .copy p { color: var(--on-dark-muted); }
.founder .copy p strong { color: var(--text); }
.dark .founder .copy p strong { color: var(--on-dark); }
.pull, .founder .copy .pull { font-size: clamp(26px, 2.6vw, 36px); font-weight: 800; font-stretch: 106%; line-height: 1.15; letter-spacing: -.01em; border-left: 4px solid var(--red); padding-left: 24px; margin: 36px 0; max-width: 24ch; }
.dark .pull { border-color: var(--red-on-dark); }
.sig { font-family: var(--f-mono); font-size: 13px; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); }

/* FAQ */
.faq-wrap { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); gap: var(--col-gap); }
.faq-wrap > div:first-child { grid-column: 1 / span 4; }
.faq-wrap > .faq { grid-column: 6 / span 7; }
.faq { border-top: 2px solid var(--ink); }
.dark .faq { border-color: var(--on-dark); }
.faq details { border-bottom: 1px solid var(--line); }
.dark .faq details { border-color: var(--line-d); }
.faq summary {
  list-style: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 24px;
  padding: 24px 0; font-size: clamp(19px, 1.6vw, 22px); font-weight: 750; line-height: 1.3;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: ""; flex: none; width: 16px; height: 16px; background: linear-gradient(currentColor, currentColor) center / 16px 2px no-repeat, linear-gradient(currentColor, currentColor) center / 2px 16px no-repeat; transition: transform .25s var(--ease); }
.faq details[open] summary::after { transform: rotate(45deg); color: var(--red); }
.faq .a { padding: 0 48px 28px 0; color: var(--muted); max-width: 64ch; }
.dark .faq .a { color: var(--on-dark-muted); }

/* Final CTA */
.final { text-align: left; }
.final .display { font-size: clamp(42px, 6vw, 92px); margin-bottom: 40px; max-width: 18ch; }
.final-grid { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); gap: var(--col-gap); align-items: end; }
.final-grid > :first-child { grid-column: 1 / span 8; }
.final-grid > :last-child { grid-column: 9 / span 4; }
.final-grid .btn-row { flex-direction: column; }
.final-grid .btn { width: 100%; justify-content: space-between; }

/* Page hero (inner) */
.phero { padding: calc(var(--hdr) + clamp(56px, 8vw, 120px)) 0 clamp(56px, 7vw, 104px); }
.phero .h1 { font-size: clamp(46px, 7.6vw, 120px); margin-bottom: 32px; max-width: 13ch; }
.phero-grid { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); gap: var(--col-gap); align-items: end; }
.phero-grid > :first-child { grid-column: 1 / span 7; }
.phero-grid > :last-child:not(:first-child) { grid-column: 8 / span 5; }
.phero .lede { margin-bottom: 36px; }
.crumbs { display: flex; gap: 10px; font-family: var(--f-mono); font-size: 13px; text-transform: uppercase; letter-spacing: .05em; color: var(--muted); margin-bottom: 28px; }
.dark .crumbs { color: var(--on-dark-muted); }
.crumbs a { text-decoration: none; }
.crumbs a:hover { color: var(--red); }
.phero-img { position: relative; border-radius: var(--r); overflow: hidden; aspect-ratio: 552 / 445; background: var(--char-2); }
.phero-img img { width: 100%; height: 100%; object-fit: cover; }

/* Split lists */
.split { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); gap: var(--col-gap); }
.split > :first-child { grid-column: 1 / span 5; }
.split > :last-child { grid-column: 7 / span 6; }
.checks li { display: flex; gap: 16px; padding: 18px 0; border-bottom: 1px solid var(--line); font-size: 19px; font-weight: 600; line-height: 1.4; }
.checks li:first-child { border-top: 2px solid var(--ink); }
.checks li::before { content: ""; flex: none; width: 20px; height: 12px; margin-top: 5px; border-left: 3px solid var(--red); border-bottom: 3px solid var(--red); transform: rotate(-45deg) translate(2px, -2px); }
.xs li::before { content: "\00d7"; width: auto; height: auto; border: 0; transform: none; margin: 0; font-weight: 800; color: var(--red); font-size: 24px; line-height: 1; }
.dark .checks li { border-color: var(--line-d); }
.dark .checks li:first-child { border-top-color: var(--on-dark); }
.problems { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0; border-top: 2px solid var(--on-dark); }
.problems li { padding: 32px 32px 36px 0; border-bottom: 1px solid var(--line-d); }
.problems li:nth-child(2n) { padding-left: 32px; border-left: 1px solid var(--line-d); }
.problems .h3 { text-transform: uppercase; font-stretch: 108%; margin-bottom: 12px; }
.problems p { color: var(--on-dark-muted); max-width: 40ch; }

/* Steps */
.steps { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 0; border-top: 2px solid var(--ink); counter-reset: st; }
.steps li { padding: 32px 32px 40px 0; border-bottom: 1px solid var(--line); counter-increment: st; }
.steps li:not(:nth-child(3n + 1)) { padding-left: 32px; border-left: 1px solid var(--line); }
.steps li::before { content: counter(st, decimal-leading-zero); display: block; font-size: 56px; font-weight: 870; font-stretch: 112%; color: var(--red); line-height: 1; margin-bottom: 24px; }
.steps .h3 { text-transform: uppercase; margin-bottom: 10px; }
.steps p { color: var(--muted); }
.dark .steps { border-color: var(--on-dark); }
.dark .steps li { border-color: var(--line-d); }
.dark .steps li::before { color: var(--red-on-dark); }
.dark .steps p { color: var(--on-dark-muted); }
.chips { display: flex; flex-wrap: wrap; gap: 10px; }
.chips li { font-weight: 750; font-size: 17px; padding: 12px 18px; border: 2px solid var(--ink); border-radius: 2px; text-transform: uppercase; letter-spacing: .03em; font-stretch: 106%; }
.dark .chips li { border-color: var(--on-dark); }

/* Services */
.svc { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: var(--col-gap); }
.svc-card { display: flex; flex-direction: column; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 32px; background: var(--paper); position: relative; }
.svc-card.pop { border: 2px solid var(--ink); }
.svc-card .badge { position: absolute; top: -1px; right: 24px; background: var(--red); color: #fff; font-family: var(--f-mono); font-size: 12px; font-weight: 600; text-transform: uppercase; padding: 6px 10px; border-radius: 0 0 2px 2px; }
.svc-card .h3 { text-transform: uppercase; font-stretch: 110%; margin-bottom: 18px; }
.svc-card .price { display: flex; align-items: baseline; gap: 10px; margin-bottom: 6px; }
.svc-card .price small { font-family: var(--f-mono); font-size: 13px; text-transform: uppercase; color: var(--muted); }
.svc-card .price strong { font-size: 44px; font-weight: 870; font-stretch: 110%; letter-spacing: -.02em; line-height: 1; font-feature-settings: "tnum"; }
.svc-card .large { font-size: 15px; color: var(--muted); margin-bottom: 20px; }
.svc-card .quote-only { color: var(--muted); font-size: 20px; font-weight: 820; margin-bottom: 20px; line-height: 1.1; text-transform: uppercase; font-stretch: 108%; }
.svc-card > p { color: var(--muted); }
.svc-card ul { margin: 8px 0 28px; border-top: 1px solid var(--line); }
.svc-card li { padding: 10px 0; border-bottom: 1px solid var(--line); font-size: 16px; font-weight: 560; }
.svc-card .btn { margin-top: auto; }
.addons { display: flex; flex-wrap: wrap; gap: 8px; }
.addons li { font-size: 16px; font-weight: 650; padding: 10px 14px; background: var(--paper); border: 1px solid var(--line); border-radius: 2px; }
.area { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); column-gap: var(--col-gap); border-top: 2px solid var(--on-dark); }
.area li { font-size: clamp(22px, 2.2vw, 34px); font-weight: 850; font-stretch: 112%; text-transform: uppercase; padding: 20px 0; border-bottom: 1px solid var(--line-d); letter-spacing: -.01em; }
.gallery { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); gap: 12px; }
.gallery figure { margin: 0; position: relative; border-radius: var(--r); overflow: hidden; background: var(--sand); }
.gallery figure img { width: 100%; height: 100%; object-fit: cover; }
.gallery .g1 { grid-column: span 7; aspect-ratio: 552 / 445; }
.gallery .g2 { grid-column: span 5; aspect-ratio: auto; }
.gallery .g3 { grid-column: span 5; aspect-ratio: auto; }
.gallery .g4 { grid-column: span 7; aspect-ratio: 800 / 600; }

/* Resources */
.reslist { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0; border-top: 2px solid var(--ink); }
.reslist a { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 24px; align-items: center; padding: 32px 32px 32px 0; border-bottom: 1px solid var(--line); text-decoration: none; transition: background-color .2s; }
.reslist a:nth-child(2n) { padding-left: 32px; border-left: 1px solid var(--line); }
.reslist .h3 { text-transform: uppercase; font-stretch: 108%; margin: 10px 0 8px; }
.reslist p { color: var(--muted); margin: 0; }
.reslist i { font-style: normal; width: 48px; height: 48px; border-radius: 50%; border: 2px solid var(--ink); display: grid; place-items: center; font-weight: 800; transition: background-color .2s, color .2s, transform .25s var(--ease); }
.reslist a:hover i { background: var(--red); border-color: var(--red); color: #fff; transform: translate(3px, -3px); }
.reslist .tag { color: var(--red); margin: 0; }

/* Forms */
.form-wrap { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); gap: var(--col-gap); }
.form-wrap > :first-child { grid-column: 1 / span 4; }
.form-wrap > :last-child { grid-column: 6 / span 7; }
.form { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px 20px; }
.form .full { grid-column: 1 / -1; }
.field { display: flex; flex-direction: column; gap: 8px; min-width: 0; }
.field label, .legend { font-size: 15px; font-weight: 750; }
.field label .opt { font-weight: 500; color: var(--muted); }
.field input, .field select, .field textarea {
  width: 100%; min-height: 56px; padding: 14px 16px; border: 1.5px solid rgba(14, 14, 16, .28); border-radius: 2px; background: #fff;
  font-size: 17px; font-weight: 500; transition: border-color .2s, box-shadow .2s;
}
.field textarea { min-height: 132px; resize: vertical; line-height: 1.5; }
.field select { appearance: none; background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%230e0e10' stroke-width='2'/%3E%3C/svg%3E") right 16px center / 12px no-repeat; padding-right: 44px; }
.field input:hover, .field select:hover, .field textarea:hover { border-color: var(--ink); }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--ink); box-shadow: 0 0 0 3px rgba(198, 42, 33, .25); }
.field [aria-invalid="true"] { border-color: var(--red); background: #fff7f6; }
.err { font-size: 14px; font-weight: 650; color: var(--red); min-height: 0; }
.err:empty { display: none; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-status { grid-column: 1 / -1; font-weight: 650; }
.form-status.bad { color: var(--red); background: #fff4f3; border-left: 4px solid var(--red); padding: 16px 18px; }
.form-actions { grid-column: 1 / -1; display: flex; flex-wrap: wrap; gap: 16px; align-items: center; }
.form-actions .small { margin: 0; }
.choice-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 10px; }
.choice { position: relative; }
.choice input { position: absolute; opacity: 0; inset: 0; width: 100%; height: 100%; margin: 0; cursor: pointer; z-index: 1; }
.choice span { display: flex; flex-direction: column; gap: 4px; height: 100%; padding: 16px 18px; border: 1.5px solid rgba(14, 14, 16, .28); border-radius: 2px; background: #fff; font-weight: 750; transition: border-color .2s, background-color .2s, color .2s; }
.choice span small { font-weight: 500; color: var(--muted); font-size: 15px; }
.choice input:hover + span { border-color: var(--ink); }
.choice input:checked + span { border-color: var(--ink); background: var(--ink); color: #fff; }
.choice input:checked + span small { color: var(--on-dark-muted); }
.choice input:focus-visible + span { outline: 3px solid var(--red); outline-offset: 2px; }
.success { border: 2px solid var(--ink); border-radius: var(--r-lg); padding: clamp(28px, 4vw, 48px); background: #fff; }
.success .h2 { font-size: clamp(32px, 4vw, 52px); margin-bottom: 16px; }
.success p { color: var(--muted); }
.success .btn-row { margin-top: 28px; }
.success:focus { outline: none; }
.form-panel { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-lg); padding: clamp(24px, 3.4vw, 48px); }
.off .form-panel { border-color: transparent; }

/* Booking */
.book { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); gap: var(--col-gap); align-items: start; }
.book-main { grid-column: 1 / span 8; }
.book-side { grid-column: 9 / span 4; position: sticky; top: calc(var(--hdr) + 24px); }
.stepper { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 6px; margin-bottom: 36px; }
.stepper li { font-family: var(--f-mono); font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: .04em; color: var(--muted); padding-top: 12px; border-top: 4px solid var(--sand); }
.stepper li.done { border-color: var(--ink); color: var(--ink); }
.stepper li.now { border-color: var(--red); color: var(--red); }
.stepper li b { display: block; font-size: 14px; }
.step-h { font-weight: 830; line-height: 1; padding: 0; font-size: clamp(28px, 3vw, 40px); text-transform: uppercase; font-stretch: 110%; margin-bottom: 8px; }
.step-p { color: var(--muted); margin-bottom: 28px; }
.step-nav { display: flex; justify-content: space-between; gap: 12px; margin-top: 36px; padding-top: 24px; border-top: 1px solid var(--line); }
.summary { border: 2px solid var(--ink); border-radius: var(--r-lg); overflow: hidden; background: #fff; }
.summary .img { aspect-ratio: 552 / 300; background: var(--sand); }
.summary .img img { width: 100%; height: 100%; object-fit: cover; }
.summary .in { padding: 24px; }
.summary dl { margin: 0 0 20px; }
.summary dl > div { display: flex; justify-content: space-between; gap: 16px; padding: 10px 0; border-bottom: 1px solid var(--line); font-size: 16px; }
.summary dt { color: var(--muted); }
.summary dd { margin: 0; font-weight: 700; text-align: right; min-width: 0; overflow-wrap: anywhere; }
.review dl > div { display: grid; grid-template-columns: 180px minmax(0, 1fr); gap: 16px; padding: 14px 0; border-bottom: 1px solid var(--line); }
.review dt { color: var(--muted); font-weight: 600; }
.review dd { margin: 0; font-weight: 700; overflow-wrap: anywhere; }
.twocol { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }

/* Contact paths */
.cpaths { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 10px; }
.cpaths .choice span { min-height: 120px; justify-content: space-between; }
.cpaths .choice span b { font-size: 17px; text-transform: uppercase; font-stretch: 106%; letter-spacing: .02em; }
.contact-direct { display: grid; gap: 0; border-top: 2px solid var(--ink); margin-top: 32px; }
.contact-direct a, .contact-direct div { display: flex; justify-content: space-between; gap: 16px; padding: 16px 0; border-bottom: 1px solid var(--line); text-decoration: none; font-weight: 700; }
.contact-direct span { color: var(--muted); font-weight: 500; font-family: var(--f-mono); font-size: 13px; text-transform: uppercase; }
.contact-direct a:hover { color: var(--red); }

/* Legal */
.prose { max-width: 70ch; }
.prose h2 { font-size: 26px; margin: 40px 0 12px; text-transform: uppercase; font-stretch: 108%; }
.prose p { color: var(--muted); }
.notice { border-left: 4px solid var(--red); background: var(--off); padding: 20px 24px; font-weight: 600; margin-bottom: 32px; }

/* Footer */
.ftr { background: var(--ink); color: var(--on-dark); padding: clamp(64px, 8vw, 112px) 0 32px; }
.ftr-top { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); gap: var(--col-gap); padding-bottom: 56px; border-bottom: 1px solid var(--line-d); }
.ftr-brand { grid-column: 1 / span 4; }
.ftr-brand p { color: var(--on-dark-muted); max-width: 36ch; margin-top: 20px; }
.ftr-col { grid-column: span 2; }
.ftr-col h3 { font-family: var(--f-mono); font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: .06em; color: var(--on-dark-muted); margin-bottom: 18px; }
.ftr-col a { display: block; padding: 6px 0; text-decoration: none; font-weight: 600; }
.ftr-col a:hover { color: var(--red-on-dark); }
.ftr-word { font-size: clamp(40px, 11.2vw, 176px); font-weight: 900; font-stretch: 118%; text-transform: uppercase; letter-spacing: -.03em; line-height: .85; white-space: nowrap; overflow: hidden; padding: 48px 0 32px; color: #232327; }
.ftr-bot { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 16px; font-size: 14px; color: var(--on-dark-muted); }
.ftr-bot a { text-decoration: none; }
.ftr-bot a:hover { color: #fff; }
.ftr-bot nav { display: flex; gap: 20px; }

/* Lightbox */
.lb { border: 0; padding: 0; background: transparent; max-width: min(92vw, 1100px); max-height: 92vh; }
.lb::backdrop { background: rgba(8, 8, 10, .92); }
.lb img { max-height: 86vh; width: auto; margin: 0 auto; border-radius: var(--r); }
.lb button { position: fixed; top: 16px; right: 16px; width: 52px; height: 52px; border-radius: 50%; border: 0; background: #fff; color: var(--ink); font-size: 26px; font-weight: 700; cursor: pointer; }

/* Missing images */
[data-fallback].img-missing { display: grid; place-items: center; background: var(--char-2); }
[data-fallback].img-missing img { display: none; }
[data-fallback].img-missing::before { content: attr(data-fallback); color: var(--on-dark-muted); font-weight: 800; text-transform: uppercase; font-stretch: 110%; padding: 16px; text-align: center; }

/* Reveal */
.js .rv { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.js .rv.in { opacity: 1; transform: none; }
.hero .line { padding-bottom: .04em; margin-bottom: -.04em; }
.hero .line > span { animation: rise .9s var(--ease) both; }
.hero .line:nth-child(2) > span { animation-delay: .08s; }
.hero .line:nth-child(3) > span { animation-delay: .16s; }
@keyframes rise { from { transform: translateY(105%); } to { transform: none; } }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; animation: none !important; }
  .js .rv { opacity: 1; transform: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1180px) {
  .nav a { padding: 10px 8px; font-size: 14px; }
  .media { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .cpaths { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 1024px) {
  .nav, .hdr-cta { display: none; }
  .burger { display: block; }
  .hero-copy, .hero-media { grid-column: 1 / -1; }
  .hero-copy { padding-bottom: 0; }
  .hero-media { grid-template-rows: auto auto; padding-bottom: 48px; }
  .hero-media .frame { min-height: 0; aspect-ratio: 16 / 10; }
  .proof { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .proof > div { border-bottom: 1px solid var(--line-d); }
  .proof > div:nth-child(2n) { border-right: 0; }
  .proof > div:nth-child(2n + 1) { padding-left: 0; }
  .proof.light > div { border-color: var(--line); }
  .sec-head > :first-child, .sec-head > :last-child:not(:first-child) { grid-column: 1 / -1; }
  .help { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .help > li:not(:nth-child(3n + 1)) { padding-left: 0; border-left: 0; }
  .help > li:nth-child(2n) { padding-left: 28px; border-left: 1px solid var(--line); }
  .help > li { padding-right: 28px; }
  .story-side, .tl { grid-column: 1 / -1; }
  .story-side .sticky { position: static; }
  .story-side figure { max-width: 560px; }
  .pillars { grid-template-columns: minmax(0, 1fr); gap: 40px; }
  .community-band > div:first-child, .community-band > div:last-child { grid-column: 1 / -1; justify-content: flex-start; }
  .paths { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .founder figure { grid-column: 1 / span 5; }
  .founder .copy { grid-column: 6 / span 7; }
  .faq-wrap > div:first-child, .faq-wrap > .faq { grid-column: 1 / -1; }
  .final-grid > :first-child, .final-grid > :last-child { grid-column: 1 / -1; }
  .final-grid .btn-row { flex-direction: row; }
  .final-grid .btn { width: auto; }
  .phero-grid > :first-child, .phero-grid > :last-child:not(:first-child) { grid-column: 1 / -1; }
  .phero-img { max-width: 640px; }
  .split > :first-child, .split > :last-child { grid-column: 1 / -1; }
  .steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .steps li:not(:nth-child(3n + 1)) { padding-left: 0; border-left: 0; }
  .steps li:nth-child(2n) { padding-left: 28px; border-left: 1px solid var(--line); }
  .dark .steps li:nth-child(2n) { border-color: var(--line-d); }
  .svc { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .form-wrap > :first-child, .form-wrap > :last-child { grid-column: 1 / -1; }
  .book-main, .book-side { grid-column: 1 / -1; }
  .book-side { position: static; }
  .ig-band > div:first-child, .ig-hl, .ig-band > div:last-child { grid-column: 1 / -1; justify-content: flex-start; }
  .ftr-brand { grid-column: 1 / -1; }
  .ftr-col { grid-column: span 3; }
}
@media (max-width: 720px) {
  body { font-size: 17px; padding-bottom: 72px; }
  :root { --hdr: 64px; }
  .logo-text { font-size: 17px; }
  .hero { padding-top: calc(var(--hdr) + 40px); }
  .hero-copy .display { font-size: clamp(44px, 13.4vw, 64px); }
  .btn-row .btn { flex: 1 1 100%; }
  .btn { white-space: normal; text-align: center; padding: 0 20px; }
  .proof .v { font-size: clamp(28px, 8.4vw, 38px); }
  .proof > div, .proof > div + div { padding: 24px 12px 24px 0; }
  .proof > div:nth-child(2n) { padding-left: 16px; }
  .proof .l { font-size: 15px; }
  .h2 { font-size: clamp(36px, 10.4vw, 48px); }
  .help { grid-template-columns: minmax(0, 1fr); }
  .help > li, .help > li:nth-child(2n) { padding: 28px 0; border-left: 0; }
  .help .n { margin-bottom: 16px; }
  .tl li { grid-template-columns: minmax(0, 1fr); gap: 8px; padding: 26px 0; }
  .cases { grid-template-columns: minmax(0, 1fr); }
  .case .body { padding: 22px; }
  .paths { grid-template-columns: minmax(0, 1fr); }
  .path { min-height: 0; padding: 26px 22px; }
  .wall { columns: 2 140px; column-gap: 10px; }
  .wall figure { margin-bottom: 10px; }
  .media, .media.lead-2 { grid-template-columns: minmax(0, 1fr); }
  .media.lead-2 > .vid:first-child { grid-column: auto; grid-row: auto; }
  .founder figure, .founder .copy { grid-column: 1 / -1; }
  .founder figure { aspect-ratio: 552 / 461; }
  .faq .a { padding-right: 0; }
  .final-grid .btn-row { flex-direction: column; }
  .final-grid .btn { width: 100%; }
  .problems { grid-template-columns: minmax(0, 1fr); }
  .problems li, .problems li:nth-child(2n) { padding: 26px 0; border-left: 0; }
  .steps { grid-template-columns: minmax(0, 1fr); }
  .steps li, .steps li:nth-child(2n) { padding: 26px 0; border-left: 0; }
  .steps li::before { font-size: 44px; margin-bottom: 14px; }
  .svc { grid-template-columns: minmax(0, 1fr); }
  .svc-card { padding: 26px 22px; }
  .area { grid-template-columns: minmax(0, 1fr); }
  .gallery { grid-template-columns: minmax(0, 1fr); }
  .gallery figure { grid-column: auto !important; aspect-ratio: 4 / 3 !important; }
  .reslist { grid-template-columns: minmax(0, 1fr); }
  .reslist a, .reslist a:nth-child(2n) { padding: 26px 0; border-left: 0; }
  .form { grid-template-columns: minmax(0, 1fr); }
  .twocol { grid-template-columns: minmax(0, 1fr); }
  .cpaths { grid-template-columns: minmax(0, 1fr); }
  .cpaths .choice span { min-height: 0; }
  .stepper { grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 4px; }
  .stepper li span { display: none; }
  .review dl > div { grid-template-columns: minmax(0, 1fr); gap: 2px; }
  .rtable thead { display: none; }
  .rtable, .rtable tbody, .rtable tr, .rtable td { display: block; width: 100%; }
  .rtable tr { padding: 18px 0; border-bottom: 1px solid var(--line); display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 6px 12px; }
  .rtable td { border: 0; padding: 0; }
  .rtable td.n { grid-column: 1 / -1; }
  .ftr-col { grid-column: span 6; }
  .ftr-bot { flex-direction: column; }
  .mbar {
    display: grid; grid-template-columns: 1fr 1fr; gap: 8px; position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
    padding: 8px 12px calc(8px + env(safe-area-inset-bottom)); background: var(--ink); border-top: 1px solid var(--line-d);
    transform: translateY(0); transition: transform .3s var(--ease);
  }
  .mbar.away { transform: translateY(110%); }
  .mbar .btn { min-height: 52px; font-size: 13px; padding: 0 10px; }
  .mbar .btn-ghost { --fg: #fff; --bd: rgba(255, 255, 255, .5); }
}

.founder .copy .pull { color: var(--text); }
.dark .founder .copy .pull { color: var(--on-dark); }

.phero-img.contain { background: #fff; aspect-ratio: 1570 / 1100; }
.phero-img.contain img { object-fit: contain; }
.founder-side { grid-column: 1 / span 5; }
@media (max-width: 720px) { .founder-side { grid-column: 1 / -1; } .rtable td.r { white-space: normal; } }

/* Hero: third path for car owners, centered under the two main CTAs */
.hero-ctas { display: inline-flex; flex-direction: column; align-items: center; gap: 12px; max-width: 100%; }
@media (max-width: 720px) { .hero-ctas { display: flex; } .hero-ctas .btn-row { width: 100%; } .hero-ctas .hero-detail { width: 100%; } }.hero-detail-wrap { position: relative; }
.hero-detail-k {
  position: absolute; right: calc(100% + 18px); top: 50%; transform: translateY(-50%); white-space: nowrap;
  font-family: var(--f-mono); font-size: 14px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--on-dark);
}
@media (max-width: 720px) {
  .hero-detail-wrap { width: 100%; display: flex; flex-direction: column; align-items: center; gap: 8px; }
  .hero-detail-k { position: static; transform: none; }
}
