@font-face {
  font-family: "Archivo";
  src: url("fonts/archivo.woff2") format("woff2");
  font-weight: 100 900;
  font-stretch: 62% 125%;
  font-display: swap;
}
@font-face {
  font-family: "Newsreader";
  src: url("fonts/newsreader.woff2") format("woff2");
  font-weight: 200 800;
  font-display: swap;
}
@font-face {
  font-family: "Newsreader";
  src: url("fonts/newsreader-italic.woff2") format("woff2");
  font-weight: 200 800;
  font-style: italic;
  font-display: swap;
}

:root {
  --sun: #F3D23C;
  --sun-soft: #F8E37F;
  --cape: #1F2FD1;
  --cape-deep: #1724A6;
  --ink: #17154A;
  --paper: #E8EBF1;
  --steel: #8C93AE;

  --sans: "Archivo", "Arial Narrow", system-ui, sans-serif;
  --serif: "Newsreader", Georgia, serif;

  --pad: clamp(1.25rem, 4vw, 4rem);
  --gap: clamp(1rem, 2vw, 2rem);
  --t-body: clamp(1.0625rem, 0.3vw + 1rem, 1.25rem);
  --t-small: 0.875rem;
  --t-h3: clamp(1.75rem, 2.4vw, 2.5rem);
  --t-h2: clamp(2.9rem, 7.2vw, 7.5rem);
  --ease: cubic-bezier(.2, .8, .2, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  margin: 0;
  background: var(--ink);
  color: var(--ink);
  font-family: var(--serif);
  font-size: var(--t-body);
  line-height: 1.55;
  font-optical-sizing: auto;
  -webkit-font-smoothing: antialiased;
}
img, svg, canvas { display: block; }
a { color: inherit; }
p { margin: 0 0 1em; max-width: 36em; }
button, input, select, textarea { font: inherit; color: inherit; }
:focus-visible { outline: 3px solid var(--cape); outline-offset: 3px; }
.ways :focus-visible, .book :focus-visible, .invite :focus-visible, .foot :focus-visible { outline-color: var(--sun); }

[hidden] { display: none !important; }
.sr { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.skip { position: absolute; left: 1rem; top: -4rem; z-index: 100; background: var(--ink); color: var(--sun); padding: .6rem 1rem; }
.skip:focus { top: 1rem; }

/* placeholders: visibly unfinished, on purpose */
.ph {
  font-family: var(--sans);
  font-stretch: 87.5%;
  font-weight: 600;
  font-size: .82em;
  padding: 0 .3em;
  border: 1.5px dashed currentColor;
  border-radius: 3px;
  white-space: nowrap;
  opacity: .85;
}

/* ---------- display type ---------- */
.display {
  font-family: var(--sans);
  font-weight: 900;
  font-stretch: 68%;
  font-size: var(--t-h2);
  line-height: .88;
  letter-spacing: -0.01em;
  margin: 0 0 .35em;
  text-wrap: balance;
}

/* ---------- buttons ---------- */
.btn {
  --bg: var(--ink); --fg: var(--sun); --bd: var(--ink);
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 3.1rem;
  padding: .7rem 1.35rem;
  font-family: var(--sans);
  font-weight: 700;
  font-stretch: 87.5%;
  font-size: 1.02rem;
  letter-spacing: .005em;
  text-decoration: none;
  color: var(--fg);
  background: var(--bg);
  border: 2px solid var(--bd);
  border-radius: 999px;
  cursor: pointer;
  transition: transform .25s var(--ease), background-color .2s, color .2s;
  white-space: nowrap;
}
.btn:active { transform: scale(.97); }
.btn--ink  { --bg: var(--ink); --fg: var(--sun); --bd: var(--ink); }
.btn--cape { --bg: var(--cape); --fg: #fff; --bd: var(--cape); }
.btn--cape:hover { --bg: var(--cape-deep); --bd: var(--cape-deep); }
.btn--sun  { --bg: var(--sun); --fg: var(--ink); --bd: var(--sun); }
.btn--sun:hover { --bg: var(--sun-soft); --bd: var(--sun-soft); }
.btn--line { --bg: transparent; --fg: currentColor; --bd: currentColor; }
.btn--line:hover { --bg: rgba(255,255,255,.12); }
.btn--ghost { --bg: transparent; --fg: currentColor; --bd: transparent; text-decoration: underline; text-underline-offset: .2em; }

/* ---------- top bar ---------- */
.bar {
  position: fixed; inset: 0 0 auto 0; z-index: 40;
  display: flex; align-items: center; gap: 2rem;
  padding: .9rem var(--pad);
  font-family: var(--sans);
  transition: background-color .3s, color .3s, transform .4s var(--ease);
}
.bar.is-solid { background: color-mix(in srgb, var(--sun) 94%, transparent); backdrop-filter: blur(8px); }
.bar__mark { font-weight: 900; font-stretch: 75%; font-size: 1.35rem; text-decoration: none; }
.bar__nav { display: flex; gap: 1.6rem; margin-left: auto; font-weight: 600; font-stretch: 87.5%; font-size: .98rem; }
.bar__nav a { text-decoration: none; background: linear-gradient(currentColor, currentColor) 0 100% / 0 2px no-repeat; transition: background-size .3s var(--ease); padding: .2rem 0; }
.bar__nav a:hover { background-size: 100% 2px; }
.bar__cta { min-height: 2.6rem; padding: .45rem 1.1rem; }

/* ---------- hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  background: var(--sun);
  display: grid;
  grid-template-rows: 1fr auto;
  overflow: hidden;
}
.hero__stage {
  position: relative;
  min-height: 62svh;
  touch-action: pan-y;
  cursor: none;
}
#hair, #fx { position: absolute; inset: 0; width: 100%; height: 100%; }
#fx { pointer-events: none; }
#hair { opacity: 0; transition: opacity .6s; }
.is-grown #hair { opacity: 1; }
.clipper {
  position: absolute; left: 0; top: 0;
  width: 120px; height: 64px;
  pointer-events: none;
  opacity: 0;
  transition: opacity .25s;
  will-change: transform;
  z-index: 3;
}
.clipper.is-on { opacity: 1; }
.clipper__blade { fill: #D6D9E4; stroke: var(--ink); stroke-width: 2; }
.clipper__teeth { fill: var(--ink); }
.clipper__body { fill: var(--ink); }
.clipper__dot { fill: var(--sun); }

.hero__foot {
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) auto minmax(0, 1fr);
  align-items: end;
  gap: var(--gap) calc(var(--gap) * 2);
  padding: 0 var(--pad) clamp(1.5rem, 4vh, 3rem);
}
.hero__lede {
  font-size: clamp(1.2rem, 1.1vw + .9rem, 1.65rem);
  line-height: 1.3;
  margin: 0;
  max-width: 22em;
}
.hero__actions { display: flex; gap: .75rem; flex-wrap: wrap; }
.guard { justify-self: end; text-align: right; font-family: var(--sans); font-stretch: 87.5%; }
.guard__hint { display: block; font-size: var(--t-small); font-weight: 600; margin-bottom: .5rem; min-height: 1.3em; }
.guard__set { display: inline-flex; border: 2px solid var(--ink); border-radius: 999px; padding: 2px; }
.guard__set button {
  border: 0; background: transparent; border-radius: 999px;
  min-width: 2.9rem; min-height: 2.3rem; font-weight: 800; cursor: pointer;
  transition: background-color .2s, color .2s;
}
.guard__set button[aria-pressed="true"] { background: var(--ink); color: var(--sun); }
.only-coarse { display: none; }
@media (pointer: coarse) { .only-fine { display: none; } .only-coarse { display: inline; } .hero__stage { cursor: auto; } }

/* ---------- five ways ---------- */
.ways {
  background: var(--cape);
  color: #fff;
  padding: clamp(5rem, 12vh, 9rem) var(--pad) clamp(4rem, 10vh, 8rem);
}
.ways__head { display: grid; grid-template-columns: minmax(0, 2fr) minmax(0, 1fr); gap: var(--gap); align-items: end; margin-bottom: clamp(2.5rem, 6vh, 5rem); }
.ways__head .display { color: var(--sun); margin: 0; }
.ways__sub { margin: 0; color: #DCE0FF; }

.ways__grid { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr); gap: clamp(2rem, 5vw, 6rem); align-items: start; }
.ways__list { list-style: none; margin: 0; padding: 0; border-top: 2px solid rgba(255,255,255,.3); }
.ways__list li { border-bottom: 2px solid rgba(255,255,255,.3); }
.ways__list button {
  width: 100%;
  display: flex; align-items: baseline; justify-content: space-between; gap: 1rem;
  padding: .3rem 0 .15rem;
  background: none; border: 0; cursor: pointer; text-align: left;
  color: rgba(255,255,255,.55);
  transition: color .25s;
}
.ways__list .w {
  font-family: var(--sans); font-weight: 900;
  font-size: clamp(2.6rem, 6.4vw, 6.4rem);
  line-height: 1;
  font-stretch: 62%;
  transition: font-stretch .5s var(--ease), color .25s;
}
.ways__list .w-note { font-family: var(--sans); font-stretch: 87.5%; font-weight: 600; font-size: var(--t-small); opacity: 0; transform: translateX(-.5rem); transition: opacity .3s, transform .3s var(--ease); }
.ways__list button:hover { color: #fff; }
.ways__list button:hover .w { font-stretch: 80%; }
.ways__list button[aria-selected="true"] { color: var(--sun); }
.ways__list button[aria-selected="true"] .w { font-stretch: 112%; }
.ways__list button[aria-selected="true"] .w-note,
.ways__list button:hover .w-note { opacity: 1; transform: none; }

.ways__panel {
  position: sticky; top: 6rem;
  background: var(--paper); color: var(--ink);
  border-radius: 4px;
  padding: clamp(1.5rem, 3vw, 2.75rem);
  min-height: 28rem;
  display: flex; flex-direction: column;
}
.ways__panel.is-swapping > * { animation: panelIn .45s var(--ease) both; }
@keyframes panelIn { from { opacity: 0; transform: translateY(.6rem); } }
.panel__title { font-family: var(--sans); font-weight: 900; font-stretch: 75%; font-size: var(--t-h3); line-height: 1; margin: 0 0 .75rem; }
.panel__body { margin-bottom: 1.25rem; }
.panel__facts { margin: 0 0 1.5rem; padding: 0; display: grid; grid-template-columns: auto 1fr; gap: .45rem 1.25rem; font-size: 1rem; }
.panel__facts dt { font-family: var(--sans); font-stretch: 87.5%; font-weight: 700; }
.panel__facts dd { margin: 0; }
.panel__for { font-style: italic; color: #3C3A74; }
.panel__cta { margin-top: auto; display: flex; gap: .6rem; flex-wrap: wrap; }

/* ---------- work / photo slots ---------- */
.work {
  background: var(--paper);
  padding: clamp(5rem, 12vh, 9rem) var(--pad);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.35fr);
  gap: clamp(2rem, 6vw, 7rem);
  align-items: start;
}
.work__text { position: sticky; top: 6rem; }
.display--ink { color: var(--ink); }
.work__text .display { font-size: clamp(2.7rem, 5.4vw, 5.6rem); }
.work__text .btn { margin-top: .5rem; }

.sheet { columns: 3; column-gap: clamp(.75rem, 1.6vw, 1.5rem); }
.slot { margin: 0 0 clamp(1rem, 2vw, 1.75rem); break-inside: avoid; }
.sheet .slot:first-child { margin-top: 0; }
.sheet .slot:nth-child(4) { margin-top: 0; }
.slot__frame {
  position: relative;
  aspect-ratio: 1;
  background:
    repeating-linear-gradient(135deg, transparent 0 9px, rgba(23,21,74,.07) 9px 10px),
    #DDE1EA;
  border-radius: 2px;
}
.slot--tall .slot__frame { aspect-ratio: 4 / 5; }
.slot--wide .slot__frame { aspect-ratio: 3 / 2; }
.slot__frame::before, .slot__frame::after {
  content: ""; position: absolute; width: 22px; height: 22px; border: 2px solid var(--ink);
}
.slot__frame::before { left: 10px; top: 10px; border-right: 0; border-bottom: 0; }
.slot__frame::after { right: 10px; bottom: 10px; border-left: 0; border-top: 0; }
.slot__cross { position: absolute; left: 50%; top: 50%; width: 28px; height: 28px; transform: translate(-50%, -50%); }
.slot__cross::before, .slot__cross::after { content: ""; position: absolute; background: var(--ink); opacity: .45; }
.slot__cross::before { left: 50%; top: 0; bottom: 0; width: 1.5px; }
.slot__cross::after { top: 50%; left: 0; right: 0; height: 1.5px; }
.slot figcaption { font-family: var(--sans); font-stretch: 87.5%; font-size: var(--t-small); line-height: 1.35; margin-top: .55rem; color: #3C3A74; }
.slot figcaption b { color: var(--cape); margin-right: .35em; }

/* ---------- booking ---------- */
.book {
  background: var(--ink); color: var(--paper);
  padding: clamp(5rem, 12vh, 9rem) var(--pad);
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
  gap: clamp(2rem, 6vw, 7rem);
  align-items: start;
  scroll-margin-top: 0;
}
.book .display { color: var(--sun); }
.book__intro { position: sticky; top: 6rem; }
.steps { list-style: none; margin: 2rem 0 0; padding: 0; display: flex; gap: .4rem; font-family: var(--sans); font-stretch: 87.5%; font-weight: 700; font-size: var(--t-small); counter-reset: s; }
.steps li { flex: 1; padding-top: .6rem; border-top: 4px solid rgba(232,235,241,.2); color: rgba(232,235,241,.55); counter-increment: s; transition: border-color .3s, color .3s; }
.steps li::before { content: counter(s) " "; }
.steps li.is-done { border-color: var(--steel); color: var(--paper); }
.steps li[aria-current="step"] { border-color: var(--sun); color: var(--sun); }

.flow { min-width: 0; }
.flow__step { border: 0; padding: 0; margin: 0; min-width: 0; display: none; }
.flow__step.is-on { display: block; animation: panelIn .4s var(--ease) both; }
.flow__step legend { font-family: var(--sans); font-weight: 800; font-stretch: 75%; font-size: var(--t-h3); line-height: 1.05; margin-bottom: 1.25rem; padding: 0; color: var(--paper); }
.choices { display: grid; gap: .5rem; }
.choice { position: relative; display: block; cursor: pointer; }
.choice input { position: absolute; opacity: 0; pointer-events: none; }
.choice__in {
  display: grid; grid-template-columns: 1fr auto; gap: .15rem 1rem; align-items: baseline;
  padding: 1rem 1.2rem;
  border: 2px solid rgba(232,235,241,.25);
  border-radius: 4px;
  transition: border-color .2s, background-color .2s, color .2s;
}
.choice__name { font-family: var(--sans); font-weight: 800; font-stretch: 87.5%; font-size: 1.2rem; }
.choice__price { font-size: .95rem; }
.choice__desc { grid-column: 1 / -1; font-size: .98rem; color: rgba(232,235,241,.72); }
.choice:hover .choice__in { border-color: rgba(232,235,241,.6); }
.choice input:checked + .choice__in { background: var(--sun); border-color: var(--sun); color: var(--ink); }
.choice input:checked + .choice__in .choice__desc { color: var(--ink); }
.choice input:focus-visible + .choice__in { outline: 3px solid var(--sun); outline-offset: 3px; }

.where { margin-bottom: 1.25rem; }
.where__line { font-size: 1.3rem; margin-bottom: .25rem; }
.where__small { color: rgba(232,235,241,.7); font-size: 1rem; }

.field { display: grid; gap: .35rem; margin-bottom: 1rem; }
.field > span { font-family: var(--sans); font-stretch: 87.5%; font-weight: 700; font-size: .95rem; }
.field em { font-style: normal; font-weight: 500; opacity: .6; }
.field input, .field select, .field textarea {
  width: 100%;
  background: transparent;
  border: 0; border-bottom: 2px solid currentColor;
  border-radius: 0;
  padding: .55rem 0;
  font-size: 1.1rem;
  min-height: 2.9rem;
  color: inherit;
}
.field select { appearance: none; background-image: linear-gradient(45deg, transparent 50%, currentColor 50%), linear-gradient(-45deg, transparent 50%, currentColor 50%); background-position: calc(100% - 12px) 55%, calc(100% - 6px) 55%; background-size: 6px 6px; background-repeat: no-repeat; padding-right: 1.5rem; }
.field select option { color: var(--ink); background: #fff; }
.field textarea { resize: vertical; min-height: 5rem; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-bottom-color: var(--sun); box-shadow: 0 2px 0 var(--sun); }
.field input::placeholder, .field textarea::placeholder { color: currentColor; opacity: .45; }
.field.is-bad input, .field.is-bad textarea, .field.is-bad select { border-bottom-color: #FF8A7A; }

.days { display: flex; gap: .45rem; overflow-x: auto; padding: .25rem .1rem 1rem; scroll-snap-type: x mandatory; scrollbar-width: thin; }
.day {
  flex: 0 0 auto; scroll-snap-align: start;
  width: 4.6rem; padding: .7rem 0; text-align: center;
  border: 2px solid rgba(232,235,241,.25); border-radius: 4px;
  background: none; cursor: pointer; color: var(--paper);
  font-family: var(--sans); font-stretch: 87.5%;
  transition: border-color .2s, background-color .2s, color .2s;
}
.day b { display: block; font-size: 1.7rem; font-weight: 900; font-stretch: 75%; line-height: 1.1; }
.day small { display: block; font-size: .8rem; font-weight: 600; }
.day:hover { border-color: rgba(232,235,241,.6); }
.day[aria-checked="true"] { background: var(--sun); color: var(--ink); border-color: var(--sun); }
.times { display: grid; grid-template-columns: repeat(auto-fill, minmax(5.4rem, 1fr)); gap: .45rem; margin-top: .5rem; }
.time {
  min-height: 2.9rem; border: 2px solid rgba(232,235,241,.25); border-radius: 999px; background: none; color: var(--paper);
  cursor: pointer; font-family: var(--sans); font-weight: 700; font-stretch: 87.5%;
  transition: border-color .2s, background-color .2s, color .2s;
}
.time:hover { border-color: rgba(232,235,241,.6); }
.time[aria-checked="true"] { background: var(--sun); color: var(--ink); border-color: var(--sun); }
.times:empty::before { content: "Pick a day to see times."; grid-column: 1 / -1; color: rgba(232,235,241,.6); }
.flow__note { font-size: .95rem; color: rgba(232,235,241,.65); margin-top: 1rem; }
.flow__err { color: #FFB0A3; font-family: var(--sans); font-stretch: 87.5%; font-weight: 600; font-size: .95rem; min-height: 1.4em; margin: .5rem 0 0; }
.flow__nav { display: flex; gap: .6rem; margin-top: 1.5rem; }
.flow__nav #next { flex: 0 1 auto; min-width: 11rem; }

.summary { margin: 1.5rem 0 0; padding: 1.1rem 1.2rem; border: 2px dashed rgba(232,235,241,.35); border-radius: 4px; font-size: 1rem; }
.summary:empty { display: none; }
.summary dl { margin: 0; display: grid; grid-template-columns: auto 1fr; gap: .3rem 1rem; }
.summary dt { font-family: var(--sans); font-stretch: 87.5%; font-weight: 700; color: var(--sun); }
.summary dd { margin: 0; }

.done { grid-column: 2; outline: none; animation: panelIn .5s var(--ease) both; }
.done[hidden] { display: none; }
.done .display { font-size: clamp(2.4rem, 5vw, 4.6rem); }
.done__ref { font-family: var(--sans); font-stretch: 87.5%; font-weight: 700; color: var(--sun); margin-bottom: .75rem; }
.done__small { color: rgba(232,235,241,.7); font-size: 1rem; }
.done__actions { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 1.5rem; }

/* ---------- courses ---------- */
.courses {
  background: var(--sun);
  padding: clamp(5rem, 12vh, 9rem) var(--pad);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(2rem, 4vw, 5rem) clamp(2rem, 6vw, 7rem);
}
.courses__title { grid-column: 1 / -1; max-width: 13ch; font-size: clamp(3rem, 8.5vw, 9rem); }
.formats { margin: 2rem 0 0; }
.formats div { padding: .9rem 0; border-top: 2px solid var(--ink); display: grid; grid-template-columns: 11rem 1fr; gap: 1rem; }
.formats dt { font-family: var(--sans); font-weight: 800; font-stretch: 87.5%; }
.formats dd { margin: 0; }
.wait { align-self: start; background: var(--ink); color: var(--paper); padding: clamp(1.5rem, 3vw, 2.5rem); border-radius: 4px; }
.wait .btn { width: 100%; margin-top: .5rem; }
.wait__msg { margin: 1rem 0 0; min-height: 1.4em; font-family: var(--sans); font-stretch: 87.5%; font-weight: 600; color: var(--sun); }

/* ---------- invite ---------- */
.invite {
  background: var(--cape); color: #fff;
  padding: clamp(5rem, 12vh, 9rem) var(--pad);
}
.invite__head { display: grid; grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr); gap: var(--gap) clamp(2rem, 5vw, 6rem); align-items: end; }
.invite__head .display { color: var(--sun); margin: 0; }
.invite__head p { margin: 0; color: #DCE0FF; }

.reach { margin: clamp(3rem, 8vh, 6rem) 0; }
.reach__cap { font-family: var(--sans); font-stretch: 87.5%; font-weight: 600; font-size: var(--t-small); color: #C4CAFF; }
.reach__line {
  position: relative; height: 7.5rem; margin: 0 4.5rem 0 0;
  background:
    linear-gradient(90deg, var(--sun) 0 57.4%, transparent 57.4%) 0 50% / 100% 3px no-repeat,
    repeating-linear-gradient(90deg, #fff 0 8px, transparent 8px 16px) 0 50% / 100% 3px no-repeat;
}
.reach__pin { position: absolute; left: calc(var(--at) * 100%); top: 50%; font-family: var(--sans); font-stretch: 87.5%; }
.reach__pin::before { content: ""; position: absolute; left: -6px; top: -6px; width: 12px; height: 12px; border-radius: 50%; background: var(--sun); box-shadow: 0 0 0 3px var(--cape); }
.reach__pin b, .reach__pin i { position: absolute; left: 0; white-space: nowrap; transform: translateX(-4px); }
.reach__pin b { bottom: .9rem; font-weight: 800; font-size: 1.05rem; }
.reach__pin i { bottom: 2.2rem; font-style: normal; font-size: .8rem; color: #C4CAFF; }
.reach__pin:nth-child(even) b { bottom: auto; top: .9rem; }
.reach__pin:nth-child(even) i { bottom: auto; top: 2.2rem; }
.reach__pin:nth-child(1) b, .reach__pin:nth-child(1) i { transform: none; }
.reach__legend { display: flex; flex-wrap: wrap; gap: .4rem 1.5rem; align-items: center; font-family: var(--sans); font-stretch: 87.5%; font-size: var(--t-small); color: #DCE0FF; margin-top: 1rem; }
.k { display: inline-block; width: 28px; height: 3px; margin-right: -.9rem; vertical-align: middle; }
.k--drive { background: var(--sun); }
.k--fly { background: repeating-linear-gradient(90deg, #fff 0 5px, transparent 5px 9px); }

.brief {
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: .5rem clamp(1rem, 3vw, 2.5rem);
  border-top: 2px solid rgba(255,255,255,.35); padding-top: 2rem;
}
.field--wide { grid-column: span 3; }
.brief .field--wide:last-of-type { grid-column: span 2; }
.brief__foot { display: flex; flex-direction: column; justify-content: end; gap: .5rem; padding-bottom: 1rem; }
.brief__msg { margin: 0; min-height: 1.4em; font-family: var(--sans); font-stretch: 87.5%; font-weight: 600; color: var(--sun); font-size: .95rem; }
.brief__msg a { color: var(--sun); }

/* ---------- footer ---------- */
.foot { background: var(--ink); color: var(--paper); padding: clamp(3rem, 8vh, 6rem) var(--pad) 7rem; overflow: hidden; }
.foot__big { font-family: var(--sans); font-weight: 900; font-stretch: 125%; font-size: clamp(2.6rem, 10.4vw, 12rem); line-height: .85; margin: 0 0 3rem; color: var(--sun); white-space: nowrap; max-width: none; letter-spacing: -0.02em; }
.foot__cols { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: var(--gap); font-size: 1rem; }
.foot__cols p { margin: 0; }

/* ---------- mobile dock ---------- */
.dock { display: none; }

/* ============ responsive ============ */
@media (max-width: 1080px) {
  .bar__nav { display: none; }
  .bar__cta { margin-left: auto; }
  .hero__foot { grid-template-columns: 1fr auto; }
  .hero__lede { grid-column: 1 / -1; }
  .guard { justify-self: end; }
}

@media (max-width: 760px) {
  :root { --t-h2: clamp(3rem, 15vw, 4.6rem); }
  body { font-size: 1.0625rem; }
  .bar { padding: .75rem var(--pad); }
  .bar__cta { display: none; }
  .bar__mark { font-size: 1.2rem; }

  .hero { min-height: 100svh; grid-template-rows: 1fr auto; }
  .hero__stage { min-height: 58svh; }
  .hero__foot { grid-template-columns: 1fr; gap: 1rem; padding-bottom: calc(5.5rem + env(safe-area-inset-bottom)); }
  .hero__lede { font-size: 1.22rem; }
  .hero__actions { display: none; }
  .guard { justify-self: start; text-align: left; display: flex; align-items: center; justify-content: space-between; gap: .75rem; width: 100%; }
  .guard__hint { margin: 0; max-width: 12em; line-height: 1.25; }

  .ways__head, .ways__grid, .work, .book, .courses, .invite__head { grid-template-columns: 1fr; }
  .ways__list button { flex-direction: column; gap: 0; padding: .55rem 0 .45rem; }
  .ways__list .w { font-size: clamp(2.6rem, 13vw, 3.6rem); }
  .ways__list .w-note { opacity: .8; transform: none; font-size: .85rem; }
  .ways__list button[aria-selected="true"] .w { font-stretch: 100%; }
  .ways__list li.has-panel { border-bottom: 0; }
  .ways__panel { position: static; min-height: 0; margin: .25rem 0 1rem; }
  .ways__grid { gap: 0; }

  .work__text, .book__intro { position: static; }
  .sheet { columns: 2; }
  .done { grid-column: 1; }
  .flow__nav { position: sticky; bottom: calc(.75rem + env(safe-area-inset-bottom)); z-index: 5; }
  .flow__nav #next { flex: 1; }

  .formats div { grid-template-columns: 1fr; gap: .2rem; }

  .reach__line { height: auto; margin: 1.5rem 0 0 .5rem; background: none; border-left: 3px solid var(--sun); padding: 0; display: grid; gap: 0; }
  .reach__pin { position: relative; left: 0; top: 0; display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; padding: .7rem 0 .7rem 1.25rem; margin-top: calc(var(--at) * 3rem); }
  .reach__pin::before { left: -7.5px; top: 1.05rem; }
  .reach__pin b, .reach__pin i, .reach__pin:nth-child(even) b, .reach__pin:nth-child(even) i { position: static; transform: none; }
  .reach__pin:nth-child(n+6) { border-left: 0; }
  .reach__line { border-image: linear-gradient(var(--sun) 0 62%, #fff 62%) 1; }

  .brief { grid-template-columns: 1fr; }
  .field--wide, .brief .field--wide:last-of-type { grid-column: auto; }
  .brief__foot .btn { width: 100%; }

  .foot__cols { grid-template-columns: 1fr; }
  .foot { padding-bottom: 8rem; }

  .dock {
    position: fixed; z-index: 50; left: .75rem; right: .75rem; bottom: calc(.75rem + env(safe-area-inset-bottom));
    display: grid; grid-template-columns: 1fr auto; gap: .5rem;
    padding: .4rem; border-radius: 999px;
    background: var(--ink);
    box-shadow: 0 10px 30px rgba(23,21,74,.35);
    transition: transform .4s var(--ease), opacity .3s;
  }
  .dock .btn--line { color: var(--sun); border-color: rgba(243,210,60,.5); }
  .dock .btn--cape { --bg: var(--sun); --fg: var(--ink); --bd: var(--sun); }
  .dock.is-hidden { transform: translateY(150%); opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
