/* Fonts, self-hosted (latin subsets from Google Fonts). */
@font-face { font-family: "Big Shoulders Display"; font-style: normal; font-weight: 700 900; font-display: swap; src: url(assets/fonts/BigShouldersDisplay-700-900.woff2) format("woff2"); unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; }
@font-face { font-family: "Barlow"; font-style: italic; font-weight: 400; font-display: swap; src: url(assets/fonts/Barlow-400-italic.woff2) format("woff2"); unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; }
@font-face { font-family: "Barlow"; font-style: normal; font-weight: 400; font-display: swap; src: url(assets/fonts/Barlow-400.woff2) format("woff2"); unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; }
@font-face { font-family: "Barlow"; font-style: normal; font-weight: 500; font-display: swap; src: url(assets/fonts/Barlow-500.woff2) format("woff2"); unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; }
@font-face { font-family: "Barlow"; font-style: normal; font-weight: 600; font-display: swap; src: url(assets/fonts/Barlow-600.woff2) format("woff2"); unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; }
@font-face { font-family: "Barlow Condensed"; font-style: normal; font-weight: 500; font-display: swap; src: url(assets/fonts/BarlowCondensed-500.woff2) format("woff2"); unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; }
@font-face { font-family: "Barlow Condensed"; font-style: normal; font-weight: 600; font-display: swap; src: url(assets/fonts/BarlowCondensed-600.woff2) format("woff2"); unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; }
@font-face { font-family: "Barlow Condensed"; font-style: normal; font-weight: 700; font-display: swap; src: url(assets/fonts/BarlowCondensed-700.woff2) format("woff2"); unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; }

/* ===========================================================================
   coachhansbro.com — one sheet, no build step.

   Palette: blacktop. Asphalt black for the ground, the orange of the ball as
   the one accent, chalk for text. Deliberately a single dark theme so the
   page holds on any host ground.

   The orange is spent on purpose, and only on his words and his players'
   outcomes: "minutes.", D-I, the quote's last clause, the waiting list block,
   his name in the footer, and the two booking buttons. Everything else is
   chalk and rules; even the section numerals stay grey.
   =========================================================================== */
:root {
  color-scheme: dark;
  --court:     #0A0A0B;   /* ground: asphalt */
  --panel:     #141416;   /* panels */
  --panel-2:   #1C1C20;   /* raised panel / hover */
  --ball:      #FF6A13;   /* the accent: the ball */
  --ball-hi:   #FF8A3D;
  --chalk:     #F2EFE8;   /* primary text */
  --chalk-2:   rgba(242, 239, 232, .78);
  --ash:       #9A9CA3;   /* secondary text */
  --line:      rgba(242, 239, 232, .12);
  --line-2:    rgba(242, 239, 232, .24);

  --display: "Big Shoulders Display", "Barlow Condensed", Impact, "Arial Narrow", sans-serif;
  --body:    "Barlow", "Helvetica Neue", Arial, sans-serif;
  --cond:    "Barlow Condensed", "Arial Narrow", Arial, sans-serif;

  --nav-h: 72px;
  --gutter: clamp(20px, 4vw, 48px);
  --ease-slant: cubic-bezier(.77, 0, .18, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--nav-h) + 16px); -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--court);
  color: var(--chalk);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}
img { max-width: 100%; height: auto; display: block; }
[hidden] { display: none !important; }
a { color: var(--ball-hi); }
a:hover { color: var(--ball); }
button, input, select, textarea { font: inherit; color: inherit; }
::selection { background: var(--ball); color: var(--court); }
:where(a, button, input, select, textarea, summary):focus-visible {
  outline: 3px solid var(--ball);
  outline-offset: 3px;
}

.wrap { width: min(100% - (var(--gutter) * 2), 1240px); margin-inline: auto; }

/* Film grain over everything. */
.grain {
  position: fixed; inset: 0; z-index: 1; pointer-events: none; opacity: .018;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}

.skip {
  position: absolute; left: 16px; top: -64px; z-index: 100;
  padding: 10px 16px; background: var(--ball); color: var(--court);
  font-family: var(--cond); font-weight: 700; text-transform: uppercase; letter-spacing: .1em; text-decoration: none;
}
.skip:focus-visible { top: 12px; }

/* ------------------------------------------------------------------ type */
/* Section grammar: a big grey numeral, a tracked chalk label, then the heading. No boxes. */
.eyebrow {
  margin: 0 0 14px; display: flex; align-items: center; gap: 12px;
  font-family: var(--cond); font-weight: 600; font-size: 14px;
  letter-spacing: .22em; text-transform: uppercase; color: var(--chalk-2);
}
.eyebrow .num { font-family: var(--display); font-weight: 900; font-size: 28px; line-height: 1; letter-spacing: 0; color: var(--ash); }
.h1, .h2 {
  font-family: var(--display); font-weight: 900; text-transform: uppercase;
  letter-spacing: .005em; margin: 0; text-wrap: balance;
}
.h1 { font-size: clamp(84px, 11vw, 160px); line-height: .8; }
.h1 .line { display: block; }
.h1 .accent { color: var(--ball); }
.h2 { font-size: clamp(44px, 5.5vw, 80px); line-height: .9; }
.lede, .body-lg { font-size: clamp(18px, 1.5vw, 21px); line-height: 1.55; color: var(--chalk-2); max-width: 58ch; }
.section p { max-width: 62ch; }
.lede, .body-lg, .section p { text-wrap: pretty; }

/* The one motion on the page: a wipe along the buttons' slant. The hero lines
   run it on load, every h2 runs it as it arrives (site.js adds .is-in), and the
   buttons run it in chalk on hover. Without JS the headings are simply there. */
@keyframes slant-in {
  from { clip-path: polygon(-14px -10%, -14px -10%, -28px 110%, -28px 110%); }
  to   { clip-path: polygon(-14px -10%, calc(100% + 28px) -10%, calc(100% + 14px) 110%, -28px 110%); }
}
html.js .h2:not(.is-in) { opacity: 0; }  /* opacity, not clip-path: a zero-area clip hides the heading from the observer too */
.h2.is-in { animation: slant-in .8s var(--ease-slant) both; }

/* --------------------------------------------------------------- buttons */
.btn {
  position: relative; isolation: isolate; overflow: hidden;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 52px; padding: 0 30px;
  font-family: var(--cond); font-weight: 700; font-size: 17px;
  letter-spacing: .14em; text-transform: uppercase; text-decoration: none;
  color: var(--court); background: var(--ball); border: 0; cursor: pointer;
  clip-path: polygon(10px 0, 100% 0, calc(100% - 10px) 100%, 0 100%);
  transition: background .15s ease;
}
.btn::after { content: ""; position: absolute; inset: 0; z-index: -1; background: var(--chalk); transform: translateX(-104%) skewX(-12deg); transition: transform .35s var(--ease-slant); }
.btn:hover::after { transform: none; }
a.btn, a.btn:hover { color: var(--court); }
/* The ghost is the same parallelogram: a chalk outline drawn by a 2px inset of the ground colour. */
.btn-ghost { background: var(--chalk); }
.btn-ghost::before { content: ""; position: absolute; inset: 2px; z-index: -1; background: var(--court); clip-path: polygon(10px 0, 100% 0, calc(100% - 10px) 100%, 0 100%); transition: background .15s ease; }
.btn-ghost::after { display: none; }
.btn-ghost, .btn-ghost:hover, a.btn-ghost, a.btn-ghost:hover { color: var(--chalk); }
.btn-ghost:hover { background: var(--chalk); }
.btn-ghost:hover::before { background: var(--panel-2); }
.btn-wide { width: 100%; }
/* The slanted clip would swallow the focus ring, so a focused button squares up and rings in chalk. */
.btn:focus-visible { clip-path: none; outline: 3px solid var(--chalk); outline-offset: 3px; }
.cta-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }

/* ------------------------------------------------------------------- nav */
.nav {
  position: sticky; top: env(safe-area-inset-top, 0px); z-index: 50;
  background: rgba(10, 10, 11, .82);
  background: color-mix(in srgb, var(--court) 82%, transparent);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav-in { height: var(--nav-h); display: flex; align-items: center; gap: 28px; }
.brand {
  color: var(--chalk);
  display: inline-flex; align-items: center; gap: 10px; text-decoration: none;
  font-family: var(--display); font-weight: 800; font-size: 24px; letter-spacing: .04em; text-transform: uppercase;
}
.brand b { color: var(--ball); font-weight: 900; margin-left: .1em; }
.brand-text { display: grid; gap: 3px; }
.brand-sub { font-family: var(--cond); font-weight: 600; font-size: 10px; letter-spacing: .3em; text-transform: uppercase; color: var(--ash); line-height: 1; }
.brand-mark { width: 26px; height: 26px; color: var(--ball); flex: none; }
.nav-disc { margin-left: auto; }
.nav-disc > summary { list-style: none; }
.nav-disc > summary::-webkit-details-marker { display: none; }
.nav-toggle { display: none; }
.nav-links { display: flex; gap: 30px; }
.nav-links a {
  font-family: var(--cond); font-weight: 600; font-size: 15px;
  letter-spacing: .16em; text-transform: uppercase; text-decoration: none; color: var(--chalk-2);
  padding: 8px 0; border-bottom: 2px solid transparent; transition: color .15s, border-color .15s;
}
.nav-links a:hover { color: var(--chalk); border-color: var(--ball); }
/* The nav's "Book a session" appears once the hero button and the calendar have scrolled away, so the
   page never shows two of them at once (site.js toggles is-hidden; without JS it is simply there).
   While it is hidden the slot carries a fact instead of a hole. */
.nav-slot { display: grid; }
.nav-slot > * { grid-area: 1 / 1; }
.btn-nav { min-height: 42px; padding: 0 20px; font-size: 14px; white-space: nowrap; transition: opacity .25s, transform .25s, visibility 0s, background .15s ease; }
html.js .btn-nav.is-hidden { opacity: 0; transform: translateY(-6px); visibility: hidden; pointer-events: none; transition: opacity .25s, transform .25s, visibility 0s .25s; }
.nav-place { justify-self: end; align-self: center; font-family: var(--cond); font-weight: 600; font-size: 13px; letter-spacing: .2em; text-transform: uppercase; color: var(--ash); white-space: nowrap; opacity: 0; transition: opacity .25s; pointer-events: none; }
html.js .btn-nav.is-hidden + .nav-place { opacity: 1; }

/* ------------------------------------------------------------------ hero */
.hero {
  position: relative; isolation: isolate; overflow: hidden;
  min-height: calc(100vh - var(--nav-h)); min-height: calc(100svh - var(--nav-h)); display: grid; align-items: center;
  padding: clamp(48px, 6vh, 80px) 0 clamp(56px, 7vw, 96px);
  background: var(--court);
}
.hero-copy { position: relative; z-index: 3; max-width: 760px; display: flex; flex-direction: column; align-items: flex-start; }
/* The real sideline frame as the ground of the hero, black and white, flush to the right edge and
   dissolving into the page on its left; it hangs from the hero's height, and his face stays in the
   right half, clear of the type at every width. */
.hero-bg {
  position: absolute; z-index: -3; top: 0; bottom: 0; right: 0;
  width: auto; height: 100%; max-width: none; object-fit: cover; object-position: 50% 0;
  filter: grayscale(1) contrast(1.08) brightness(.94);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 40%); mask-image: linear-gradient(90deg, transparent, #000 40%);
  transform-origin: 50% 28%; animation: settle 6s cubic-bezier(.16, 1, .3, 1) both; will-change: scale, translate;
}
/* The portrait settles in like a slow push-in; site.js drifts it (and the quote photo) a little slower than the scroll. */
@keyframes settle { from { scale: 1.05; } to { scale: 1; } }
.hero-shade { position: absolute; z-index: -2; inset: 0; background:
  linear-gradient(90deg, var(--court) 28%, rgba(10, 10, 11, .9) 42%, rgba(10, 10, 11, .34) 62%, rgba(10, 10, 11, .1) 80%, rgba(10, 10, 11, .45) 100%),
  linear-gradient(180deg, rgba(10, 10, 11, .45), transparent 18%, transparent 66%, var(--court) 100%); }
.status {
  margin: 0 0 22px; display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--cond); font-weight: 700; font-size: 15px; letter-spacing: .2em; text-transform: uppercase; color: var(--chalk);
}
.status-dot { width: 10px; height: 10px; background: var(--ball); flex: none; }
.hero .lede { margin: 28px 0 0; max-width: 54ch; }
.hero .cta-row { margin-top: 30px; }
.cta-note { margin: 16px 0 0; font-family: var(--cond); font-weight: 600; font-size: 13px; letter-spacing: .16em; text-transform: uppercase; color: var(--ash); }
.hero .h1 .line { animation: slant-in .9s var(--ease-slant) both; }
.hero .h1 .line:nth-child(2) { animation-delay: .12s; }

/* -------------------------------------------------------------- sections */
.section { position: relative; padding-block: clamp(72px, 9vw, 120px); }
/* A hairline the width of the wrap where two black sections meet. */
.rail::before, .wait-sec::before { content: ""; position: absolute; top: 0; left: max(var(--gutter), (100% - 1240px) / 2); right: max(var(--gutter), (100% - 1240px) / 2); height: 1px; background: var(--line); }

/* ------------------------------------------------------------------ book */
.book { background: var(--panel); }
.book-grid { display: grid; grid-template-columns: minmax(300px, 400px) minmax(0, 1fr); gap: 32px clamp(36px, 5vw, 80px); align-items: start; }
/* On a wide screen the booking tool runs to the edge of the viewport, an instrument rather than a card. */
@media (min-width: 1201px) { .book .book-grid { width: auto; margin-inline: max(var(--gutter), (100% - 1240px) / 2) 0; } }
.book .h2 { font-size: clamp(44px, 4.7vw, 68px); }
.book-head .body-lg { margin: 22px 0 0; }
.book-how { margin: 14px 0 0; color: var(--ash); font-size: 16px; }
.fine { margin: 22px 0 0; font-size: 15px; color: var(--ash); max-width: 46ch; }
.fine a { color: var(--chalk); text-decoration-color: var(--ball); text-underline-offset: 3px; }
.cal-shell { border: 1px solid var(--line-2); border-radius: 2px; overflow: hidden; background: var(--panel); }
.cal-shell .calendly-inline-widget { display: block; }
/* Drawn to match the themed Calendly embed that replaces it: host panel, month, times. */
.cal-mock { display: grid; grid-template-columns: 220px minmax(0, 1fr) 216px; font-variant-numeric: tabular-nums; }
.cal-side { padding: 24px 22px; border-right: 1px solid var(--line); }
.cal-avatar { width: 64px; height: 64px; border-radius: 50%; object-fit: cover; display: block; }
.cal-host { margin: 16px 0 0; font-size: 15px; color: var(--ash); }
.cal-event { margin: 4px 0 0; font-family: var(--display); font-weight: 800; font-size: 28px; line-height: 1; letter-spacing: .02em; text-transform: uppercase; color: var(--chalk); }
.cal-meta { list-style: none; margin: 18px 0 0; padding: 0; display: grid; gap: 10px; }
.cal-meta li { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--chalk-2); }
.cal-meta svg { width: 18px; height: 18px; fill: none; stroke: var(--ash); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; flex: none; }
.cal-main { padding: 22px 24px 20px; }
.cal-h { margin: 0 0 14px; font-family: var(--body); font-weight: 600; font-size: 18px; color: var(--chalk); }
.cal-monthrow { display: flex; align-items: center; justify-content: center; gap: 22px; margin-bottom: 10px; }
.cal-month { margin: 0; font-weight: 600; font-size: 16px; color: var(--chalk); min-width: 150px; text-align: center; }
.cal-nav i { display: grid; place-items: center; width: 30px; height: 30px; border-radius: 50%; background: rgba(255, 106, 19, .12); font-style: normal; font-size: 20px; line-height: 1; color: var(--ball-hi); }
.cal-grid { display: grid; grid-template-columns: repeat(7, minmax(0, 1fr)); gap: 4px 2px; }
.cal-grid span { display: grid; place-items: center; aspect-ratio: 1.15; font-size: 14px; font-weight: 600; color: rgba(242, 239, 232, .55); border-radius: 50%; }
.cal-grid .past { color: rgba(242, 239, 232, .3); }
.cal-grid .dow { aspect-ratio: auto; padding: 2px 0 8px; font-size: 11px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--ash); }
.cal-grid .day { position: relative; }
.cal-grid .today::after { content: ""; position: absolute; bottom: 5px; width: 4px; height: 4px; border-radius: 50%; background: var(--ash); }
.cal-grid .open { color: var(--ball-hi); background: rgba(255, 106, 19, .14); }
.cal-grid .sel { background: var(--ball); color: var(--court); }
.cal-tz { margin: 14px 0 0; display: grid; gap: 4px; font-size: 13px; }
.cal-tz b { font-weight: 600; color: var(--chalk); }
.cal-tz span { color: var(--chalk-2); }
.cal-tz i { font-style: normal; font-size: 11px; margin-left: 4px; }
.cal-times { padding: 22px 20px; border-left: 1px solid var(--line); display: grid; gap: 8px; align-content: start; }
.cal-day { margin: 0 0 6px; font-size: 14px; font-weight: 600; color: var(--chalk); white-space: nowrap; }
.cal-slot { display: grid; place-items: center; min-height: 46px; font-size: 15px; font-weight: 600; color: var(--ball-hi); border: 1px solid rgba(255, 106, 19, .5); border-radius: 2px; }
.cal-slot.is-on { grid-template-columns: 1fr 1fr; gap: 6px; border: 0; justify-items: stretch; }
.cal-slot.is-on b { display: grid; place-items: center; width: 100%; min-height: 46px; border-radius: 2px; background: rgba(242, 239, 232, .14); color: var(--chalk); font-weight: 600; }
.cal-slot.is-on b.next { background: var(--ball); color: var(--court); }
.book-foot:not(:has(a:not([hidden]))) { display: none; }
.book-foot { margin: 16px 0 0; display: flex; flex-wrap: wrap; align-items: center; gap: 12px 28px; color: var(--ash); font-size: 15px; }

/* ----------------------------------------------------------------- coach */
/* The type moment of the page: his name at the size of the headline, the second line outlined,
   a real frame of him on the sideline in the left column, the copy beside it. */
.coach { padding-block: clamp(96px, 12vw, 176px); overflow: hidden; isolation: isolate; }
.coach-grid {
  display: grid; grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-template-areas: "h h h h h h h h h h h h" "s s s s b b b b b b b .";
  gap: 56px clamp(16px, 2vw, 32px); align-items: start;
}
.coach-head { grid-area: h; }
.coach-side { grid-area: s; }
.coach-body { grid-area: b; }
.h2-name { font-size: clamp(72px, 12vw, 176px); line-height: .84; }
.h2-name .l1, .h2-name .l2 { display: block; }
.h2-name .l2 { margin-left: 8.333%; }
@supports (-webkit-text-stroke: 1px #000) { .h2-name .l2 { color: rgba(242, 239, 232, .1); -webkit-text-stroke: 3px var(--chalk); } }
.coach-body .body-lg { margin: 0; }
.coach-body .body-lg + .body-lg { margin-top: 18px; }
.coach-photo { margin: 0; }
.coach-photo img { width: 100%; height: auto; aspect-ratio: 4 / 5; object-fit: cover; object-position: 50% 18%; }

/* ------------------------------------------------------------------ rail */
/* The levels are the type; the line and the squares just keep count. */
.rail { padding-block: clamp(56px, 6vw, 88px); }
.h2-sm { font-size: clamp(36px, 4.4vw, 60px); }
.rail-track { list-style: none; margin: 56px 0 0; padding: 0; display: flex; justify-content: space-between; gap: 24px; position: relative; }
.rail-track::before { content: ""; position: absolute; left: 0; right: 0; top: 6px; height: 2px; background: linear-gradient(90deg, var(--line-2) 0 86%, var(--ball) 86%); transform-origin: left center; transition: scale 1.1s var(--ease-slant); }
.rail-track li { position: relative; padding-top: 26px; flex: 0 0 auto; transition: opacity .6s var(--ease-slant), translate .6s var(--ease-slant); }
html.js .rail-track:not(.is-in)::before { scale: 0 1; }
html.js .rail-track:not(.is-in) li { opacity: 0; translate: 0 14px; }
.rail-track li:nth-child(2) { transition-delay: .09s; } .rail-track li:nth-child(3) { transition-delay: .18s; } .rail-track li:nth-child(4) { transition-delay: .27s; }
.rail-track li:nth-child(5) { transition-delay: .36s; } .rail-track li:nth-child(6) { transition-delay: .45s; } .rail-track li:nth-child(7) { transition-delay: .54s; }
.rail-track li::before { content: ""; position: absolute; left: 0; top: 0; width: 14px; height: 14px; background: var(--court); border: 2px solid var(--line-2); }
.rail-track li.is-top::before { background: var(--ball); border-color: var(--ball); box-shadow: 0 0 0 6px rgba(255, 106, 19, .22); }
.rail-track li.is-top b { color: var(--ball); }
.rail-track b { display: block; font-family: var(--display); font-weight: 900; font-size: clamp(30px, 3.1vw, 46px); line-height: .9; letter-spacing: .005em; text-transform: uppercase; color: var(--chalk); white-space: nowrap; }
.rail-track span { display: block; margin-top: 8px; font-size: 15px; color: var(--ash); }

/* ----------------------------------------------------------------- quote */
/* Empty night court: visual detail lives beside the live, selectable quote. */
.quote-band { position: relative; isolation: isolate; overflow: hidden; padding-block: clamp(96px, 13vw, 190px); background: var(--court); }
.quote-bg { position: absolute; inset: -80px 0; z-index: -2; pointer-events: none; }
.quote-bg img { width: 100%; height: 100%; object-fit: cover; object-position: right center; }
.quote-band::after { content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none; background: linear-gradient(90deg, rgba(10,10,11,.85) 0%, rgba(10,10,11,.74) 30%, rgba(10,10,11,.18) 60%, rgba(10,10,11,.02) 100%), linear-gradient(180deg,rgba(10,10,11,.34),transparent 22%,transparent 82%,rgba(10,10,11,.54)); }
.quote-in { position: relative; }
.quote-band .pull-lg { text-shadow: 0 2px 16px rgba(0,0,0,.5); }
@media(max-width:900px) { .quote-bg { inset: 0; } }
@media(max-width:600px) {
  .quote-band { padding-block: 64px 250px; }
  .quote-bg img { object-position: 88% bottom; }
  .quote-band::after { background: linear-gradient(180deg,rgba(10,10,11,.72) 0%,rgba(10,10,11,.86) 12%,rgba(10,10,11,.83) 55%,rgba(10,10,11,.12) 83%,rgba(10,10,11,.36) 100%); }
}
.pull-lg { margin: 0; }
.pull-lg p { margin: 0; font-family: var(--display); font-weight: 800; font-size: clamp(36px, 4.9vw, 72px); line-height: .96; letter-spacing: .005em; text-transform: uppercase; color: var(--chalk); text-wrap: balance; max-width: 17ch; }
.pull-lg em { font-style: normal; color: var(--ball); }
.pull-lg footer { margin-top: 24px; font-family: var(--cond); font-weight: 600; font-size: 15px; letter-spacing: .2em; text-transform: uppercase; color: var(--chalk-2); }
.pull-lg footer::before { content: ""; display: inline-block; width: 28px; height: 2px; background: var(--ball); vertical-align: middle; margin-right: 12px; }

/* ---------------------------------------------------------- waiting list */
/* The one solid orange block on the page, because it is the one message for new families. */
.wait { margin: 0; padding: clamp(32px, 4vw, 52px) clamp(28px, 4vw, 56px) clamp(36px, 4vw, 56px); display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 28px clamp(32px, 5vw, 80px); align-items: end; background: var(--ball); color: var(--court); clip-path: polygon(0 0, 100% 0, 100% calc(100% - 36px), calc(100% - 36px) 100%, 0 100%); }
.wait-label { margin: 0 0 18px; display: flex; align-items: flex-start; gap: 10px; font-family: var(--cond); font-weight: 700; font-size: 13px; letter-spacing: .2em; text-transform: uppercase; color: var(--court); }
.wait-dot { width: 9px; height: 9px; margin-top: 6px; background: var(--court); flex: none; }
.wait-title { color: var(--court); }
.wait-body p { margin: 0; font-size: clamp(18px, 1.5vw, 21px); line-height: 1.5; color: rgba(10, 10, 11, .82); max-width: 40ch; }
.wait ::selection { background: var(--court); color: var(--ball); }
.wait-go { margin-top: 24px; background: var(--court); color: var(--chalk); }
.wait-go::after { display: none; }
.wait-go:hover { background: var(--panel-2); color: var(--chalk); }
.wait-go:focus-visible { outline-color: var(--court); }
.note-dialog { width: min(100% - 32px, 620px); margin: auto; padding: 0; border: 1px solid var(--line-2); border-radius: 2px; background: var(--panel); color: var(--chalk); }
html:not(.js) .note-dialog, .note-dialog.is-inline { display: block; position: static; margin: 0 auto 72px; }
.note-dialog::backdrop { background: rgba(6, 6, 7, .78); -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px); }
.note-dialog[open] { animation: note-in .28s cubic-bezier(.2, .8, .2, 1); }
@keyframes note-in { from { opacity: 0; transform: translateY(14px); } }
.note-head { position: relative; padding: 28px 30px 0; }
.note-head .eyebrow { margin-bottom: 10px; padding-right: 56px; }
.note-title { margin: 0; font-family: var(--display); font-weight: 800; font-size: clamp(30px, 3.4vw, 44px); line-height: .95; letter-spacing: .005em; text-transform: uppercase; }
.note-close { position: absolute; top: 18px; right: 18px; width: 44px; height: 44px; display: grid; place-items: center; border: 1px solid var(--line-2); border-radius: 2px; background: transparent; color: var(--chalk); font-size: 26px; line-height: 1; cursor: pointer; }
.note-close:hover { border-color: var(--ball); color: var(--ball); }
.contact-form { display: grid; gap: 18px; padding: 24px 30px 30px; }
.field { display: grid; gap: 8px; }
.field label { font-family: var(--cond); font-weight: 700; font-size: 14px; letter-spacing: .18em; text-transform: uppercase; color: var(--chalk-2); }
.field .opt { color: var(--ash); font-weight: 600; letter-spacing: .12em; margin-left: 6px; }
.field input, .field textarea {
  width: 100%; min-height: 50px; padding: 12px 14px;
  background: var(--court); border: 1px solid rgba(242, 239, 232, .42); border-radius: 2px; color: var(--chalk);
  transition: border-color .15s, box-shadow .15s;
}
.field textarea { resize: vertical; min-height: 96px; }
.field input::placeholder, .field textarea::placeholder { color: rgba(154, 156, 163, .85); }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--ball); box-shadow: 0 0 0 3px rgba(255, 106, 19, .25); }
.hp { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }
.form-note { margin: 0; min-height: 1.5em; font-size: 14px; color: var(--chalk-2); }
.form-note:empty { visibility: hidden; }
.form-note.is-error { color: var(--ball-hi); }
/* After a send the form gives way to a plain confirmation. */
.form-done { padding: 26px 30px 30px; display: grid; gap: 12px; justify-items: start; }
.done-title { margin: 0; display: flex; align-items: center; gap: 12px; font-family: var(--display); font-weight: 900; font-size: 34px; line-height: 1; letter-spacing: .01em; text-transform: uppercase; color: var(--chalk); }
.done-dot { width: 12px; height: 12px; background: var(--ball); }
.done-copy { margin: 0 0 8px; color: var(--chalk-2); max-width: 40ch; }
.field [aria-invalid="true"] { border-color: var(--ball); }

/* ---------------------------------------------------------------- footer */
/* The page ends on the name, whole. The Flyght line rides the top row. */
.foot { position: relative; border-top: 1px solid var(--line); padding: 40px 0 10px; }
.foot-in { display: flex; flex-wrap: wrap; align-items: flex-start; justify-content: space-between; gap: 12px 32px; color: var(--ash); font-size: 15px; }
.foot p { margin: 0; }
.foot-flyght { font-size: 16px; max-width: 72ch; color: var(--chalk-2); }
.foot-flyght b { color: var(--chalk-2); font-weight: 600; }
.link-row { display: inline-flex; gap: 22px; margin-left: 12px; }
.text-link {
  font-family: var(--cond); font-weight: 700; font-size: 14px; letter-spacing: .18em; text-transform: uppercase;
  color: var(--chalk); text-decoration: none; border-bottom: 2px solid var(--ball); padding-bottom: 2px; white-space: nowrap;
  padding-block: 10px; margin-block: -10px;
}
.text-link:hover { color: var(--ball-hi); border-color: var(--ball-hi); }
.foot-word {
  width: min(100% - var(--gutter) * 2, 1240px); margin: 32px auto 0;
  font-family: var(--display); font-weight: 900; text-transform: uppercase;
  font-size: clamp(64px, 14.2vw, 205px); line-height: .78; letter-spacing: -.005em; white-space: nowrap;
  color: var(--chalk); user-select: none;
}
.foot-word b { color: var(--ball); }

/* ------------------------------------------------------------ responsive */
@media (max-width: 1200px) {
  .book-grid { grid-template-columns: 1fr; }
}
@media (max-width: 1000px) {
  .wait { grid-template-columns: 1fr; }
  .coach-grid { grid-template-areas: "h h h h h h h h h h h h" "s s s s s s s s s s s s" "b b b b b b b b b b b b"; gap: 36px 0; }
  .coach-photo img { aspect-ratio: 4 / 3; object-position: 50% 14%; }
}
@media (max-width: 900px) {
  .nav-in { gap: 14px; }
  .nav-disc { margin-left: 0; order: 3; }
  .nav-slot { order: 2; margin-left: auto; }
  .nav-toggle {
    display: inline-flex; flex-direction: column; justify-content: center; gap: 5px;
    width: 44px; height: 44px; padding: 0 10px; cursor: pointer; border: 1px solid var(--line-2);
  }
  .nav-toggle span { display: block; height: 2px; background: var(--chalk); transition: transform .2s, opacity .2s; }
  .nav-disc[open] .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-disc[open] .nav-toggle span:nth-child(2) { opacity: 0; }
  .nav-disc[open] .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .nav-links {
    position: absolute; left: 0; right: 0; top: var(--nav-h);
    flex-direction: column; gap: 4px; padding: 12px var(--gutter) 20px;
    background: var(--court); border-bottom: 1px solid var(--line-2);
  }
  .nav-links a { padding: 12px 0; font-size: 18px; border-bottom: 1px solid var(--line); }
  html:not(.js) .nav-in { height: auto; min-height: var(--nav-h); flex-wrap: wrap; }
  html:not(.js) .nav-links { position: static; padding: 0 0 12px; border: 0; }
  .brand-sub { display: none; }
  /* On a phone the portrait sits on top and the copy starts under his chin. */
  .hero { min-height: 0; display: block; padding: 0 0 40px; }
  .hero-bg { position: relative; inset: auto; right: auto; width: 100%; height: auto; aspect-ratio: 16 / 11; max-height: 50vh; object-position: 50% 12%; margin-bottom: -6px; -webkit-mask-image: none; mask-image: none; }
  .hero-shade { background: linear-gradient(180deg, transparent 58%, rgba(10, 10, 11, .86) 86%, var(--court) 100%); background-size: 100% 52vh; background-repeat: no-repeat; }
  .hero-in { display: flex; flex-direction: column; align-items: flex-start; }
  .hero-copy { display: contents; }
  .hero .status { margin: 24px 0 18px; }
  .hero .h1 { font-size: clamp(64px, 21vw, 92px); }
  .hero .lede { margin-top: 22px; }
  .h2-name .l2 { margin-left: 0; }
  .rail-track { display: grid; gap: 0; margin: 40px 0 0 5px; border-left: 1px solid var(--line-2); }
  .rail-track::before { display: none; }
  .rail-track li { padding: 0 0 22px 24px; }
  .rail-track li:last-child { padding-bottom: 0; }
  .rail-track li::before { left: -8px; top: 8px; }
  .rail-track b { font-size: 34px; }
  .cal-mock { grid-template-columns: 1fr; }
  .cal-side { border-right: 0; border-bottom: 1px solid var(--line); padding: 18px 16px; display: grid; grid-template-columns: 48px 1fr; column-gap: 14px; }
  .cal-avatar { width: 48px; height: 48px; grid-row: 1 / span 2; }
  .cal-host { margin: 0; grid-column: 2; }
  .cal-event { font-size: 22px; grid-column: 2; }
  .cal-meta { grid-column: 1 / -1; grid-auto-flow: column; justify-content: start; gap: 18px; margin-top: 14px; }
  .cal-main { padding: 16px; }
  .cal-grid span { aspect-ratio: 1.1; font-size: 13px; }
  .cal-times { border-left: 0; border-top: 1px solid var(--line); padding: 16px; grid-template-columns: 1fr 1fr; }
  .cal-times .cal-day, .cal-slot.is-on { grid-column: 1 / -1; }
  .pull-lg p { max-width: none; }
  .contact-form, .form-done { padding: 18px 20px 22px; }
  .nav-place { display: none; }
  .note-head { padding: 22px 20px 0; }
  .wait { padding: 26px 22px 30px; gap: 18px; }
  .foot-word { white-space: normal; font-size: 24vw; }
  .link-row { display: flex; margin: 10px 0 0; }
}
@media (max-width: 480px) {
  .btn-nav { min-height: 40px; padding: 0 16px; font-size: 13px; letter-spacing: .14em; }
  .btn-nav .long { display: none; }
  .wait-go { width: 100%; padding-inline: 18px; }
  .cta-row .btn { width: 100%; }
  .status { font-size: 13px; letter-spacing: .16em; }
  .wait-label { font-size: 12px; letter-spacing: .14em; }
}

@media print {
  html.js .h2:not(.is-in) { opacity: 1; }
  .h2.is-in, .hero .h1 .line, .hero-bg { animation: none; clip-path: none; }
  html.js .rail-track:not(.is-in)::before { scale: 1 1; }
  html.js .rail-track:not(.is-in) li { opacity: 1; translate: none; }
  .grain, .btn-nav { display: none; }
}

@media (max-width: 360px) {
  .nav-in { gap: 8px; }
  .brand { font-size: 20px; }
  .btn-nav { padding: 0 12px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero .h1 .line, .h2, .h2.is-in, .hero-bg, .note-dialog[open] { animation: none; clip-path: none; }
  html.js .h2:not(.is-in) { opacity: 1; }
  html.js .rail-track:not(.is-in)::before { scale: 1 1; }
  html.js .rail-track:not(.is-in) li { opacity: 1; translate: none; }
  .hero-bg { translate: none !important; }
  .btn::after { transition: none; }
  *, *::before, *::after { transition-duration: .01ms !important; }
}
