/* Terry Fisher — "Departures"
   One committed look: terminal-at-night bands (tarmac) alternating with
   concourse bands (aluminium). Amber is the departure-board signal colour
   and is spent on the board, calls to action and live states only. */

:root {
  --tarmac: #0c0e11;
  --board: #14181e;
  --cell: #1b2028;
  --cell-hi: #242a34;
  --line: #2a313b;
  --line-soft: #1f252d;
  --text: #eceae5;
  --muted: #8f98a4;
  --amber: #ffb81c;
  --amber-deep: #e89c00;
  --amber-ink: #1a1200;
  --paper: #edeef0;
  --paper-2: #e1e4e8;
  --paper-line: #c9ced5;
  --ink: #0c0e11;
  --ink-muted: #545d69;

  --f-display: "Big Shoulders Display", "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  --f-body: "Schibsted Grotesk", "Helvetica Neue", Arial, sans-serif;
  --f-mono: "JetBrains Mono", ui-monospace, "SF Mono", Menlo, Consolas, monospace;

  --gutter: clamp(16px, 4vw, 48px);
  --max: 1320px;
  --header-h: 68px;
  --radius: 6px;
  --ease: cubic-bezier(.2, .7, .2, 1);

  /* type scale */
  --t-xs: .75rem;
  --t-sm: .875rem;
  --t-md: 1.0625rem;
  --t-lg: 1.25rem;
  --t-xl: clamp(1.5rem, 1.1rem + 1.4vw, 2.1rem);
  --t-2xl: clamp(2.4rem, 1.6rem + 3.6vw, 4.6rem);
  --t-3xl: clamp(3rem, 1.6rem + 6vw, 7.4rem);

  color-scheme: dark;
}

*, *::before, *::after { box-sizing: border-box; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 12px); -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--tarmac);
  color: var(--text);
  font-family: var(--f-body);
  font-size: var(--t-md);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
button, input, select, textarea { font: inherit; color: inherit; }
:focus-visible { outline: 2px solid var(--amber); outline-offset: 3px; border-radius: 2px; }
.concourse :focus-visible, .leg--next :focus-visible { outline-color: var(--ink); }
.concourse .leg--now :focus-visible, .concourse .venture--dark:focus-visible { outline-color: var(--amber); }
::selection { background: var(--amber); color: var(--amber-ink); }

.sr-only {
  position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.skip {
  position: fixed; left: 16px; top: -60px; z-index: 200; padding: 10px 16px;
  background: var(--amber); color: var(--amber-ink); font-weight: 700; text-decoration: none;
  border-radius: var(--radius); transition: top .2s;
}
.skip:focus { top: calc(env(safe-area-inset-top, 0px) + 12px); }

.wrap { width: 100%; max-width: var(--max); margin-inline: auto; padding-inline: var(--gutter); }

/* ---------- shared type ---------- */
.label {
  font-family: var(--f-mono);
  font-size: var(--t-xs);
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
}
.label--amber { color: var(--amber); }
.display {
  font-family: var(--f-display);
  font-weight: 800;
  text-transform: uppercase;
  line-height: .92;
  letter-spacing: .005em;
  text-wrap: balance;
  margin: 0;
}
h2.display { font-size: var(--t-2xl); }
.lede { font-size: var(--t-lg); line-height: 1.55; max-width: 60ch; margin: 0; color: var(--muted); text-wrap: pretty; }
.section-head { display: grid; gap: 18px; margin-bottom: clamp(32px, 5vw, 56px); }
.section-head .display em { font-style: normal; color: var(--amber); }

/* ---------- buttons ---------- */
.btn {
  --bg: var(--amber); --fg: var(--amber-ink);
  display: inline-flex; align-items: center; gap: .6em;
  min-height: 48px; padding: 0 22px;
  background: var(--bg); color: var(--fg);
  border: 1px solid var(--bg); border-radius: var(--radius);
  font-family: var(--f-mono); font-size: var(--t-sm); font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase; text-decoration: none;
  cursor: pointer; transition: transform .2s var(--ease), background .2s, color .2s, border-color .2s;
}
.btn:hover { background: var(--text); border-color: var(--text); transform: translateY(-1px); }
.btn .arrow { transition: transform .25s var(--ease); }
.btn:hover .arrow { transform: translateX(3px); }
.btn--ghost { --bg: transparent; --fg: var(--text); border-color: var(--line); }
.btn--ghost:hover { background: var(--cell); border-color: var(--muted); color: var(--text); }
.btn--sm { min-height: 40px; padding: 0 16px; font-size: var(--t-xs); }
.link-arrow {
  font-family: var(--f-mono); font-size: var(--t-xs); font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; text-decoration: none; color: var(--amber);
  display: inline-flex; gap: .5em; align-items: center;
}
.link-arrow:hover { text-decoration: underline; text-underline-offset: 4px; }

/* ---------- header ---------- */
.header {
  position: sticky; top: env(safe-area-inset-top, 0px); z-index: 100;
  border-bottom: 1px solid transparent;
  transition: border-color .3s;
}
.header::before {
  content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background: color-mix(in srgb, var(--tarmac) 82%, transparent);
  backdrop-filter: blur(14px) saturate(1.2);
  -webkit-backdrop-filter: blur(14px) saturate(1.2);
  transition: background .3s;
}
.header.is-scrolled { border-bottom-color: var(--line-soft); }
.header.is-scrolled::before { background: color-mix(in srgb, var(--tarmac) 92%, transparent); }
.header-inner { display: flex; align-items: center; gap: 24px; height: var(--header-h); }
.wordmark {
  display: inline-flex; align-items: center; gap: 10px; text-decoration: none;
  font-family: var(--f-display); font-weight: 900; font-size: 1.55rem; letter-spacing: .06em;
  text-transform: uppercase; line-height: 1; white-space: nowrap;
}
.wordmark .flap-mark {
  display: inline-grid; place-items: center; width: 30px; height: 34px;
  background: var(--cell); border-radius: 3px; color: var(--amber);
  font-size: 1.05rem; letter-spacing: 0; position: relative; overflow: hidden;
}
.wordmark .flap-mark::after { content: ""; position: absolute; inset: 50% 0 auto; height: 1px; background: var(--tarmac); }
.nav { display: flex; gap: 4px; margin-left: auto; }
.nav a {
  position: relative; padding: 8px 12px; text-decoration: none;
  font-family: var(--f-mono); font-size: var(--t-xs); font-weight: 500; letter-spacing: .12em;
  text-transform: uppercase; color: var(--muted); transition: color .2s;
}
.nav a:hover, .nav a.is-active { color: var(--text); }
.nav a.is-active::after { content: ""; position: absolute; left: 12px; right: 12px; bottom: 2px; height: 2px; background: var(--amber); }
.header .btn { flex-shrink: 0; }
.menu-btn { display: none; flex-shrink: 0; width: 44px; height: 44px; border: 1px solid var(--line); border-radius: var(--radius); background: transparent; cursor: pointer; position: relative; }
.menu-btn span { position: absolute; left: 12px; right: 12px; height: 2px; background: var(--text); transition: transform .25s var(--ease), opacity .2s; }
.menu-btn span:nth-child(1) { top: 16px; }
.menu-btn span:nth-child(2) { top: 25px; }
.menu-btn[aria-expanded="true"] span:nth-child(1) { transform: translateY(4.5px) rotate(45deg); }
.menu-btn[aria-expanded="true"] span:nth-child(2) { transform: translateY(-4.5px) rotate(-45deg); }

.flight-progress { position: absolute; left: 0; right: 0; bottom: -1px; height: 2px; pointer-events: none; }
.flight-progress .bar { height: 100%; width: 100%; background: var(--amber); transform-origin: 0 50%; transform: scaleX(var(--p, 0)); }

/* ---------- hero ---------- */
.hero { position: relative; padding-block: clamp(28px, 5vw, 64px) clamp(40px, 6vw, 80px); overflow: hidden; }
.hero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(60% 50% at 85% 20%, rgba(255, 184, 28, .09), transparent 60%),
    linear-gradient(transparent 0 calc(100% - 1px), rgba(255,255,255,.035) 0) 0 0 / 100% 88px;
  mask-image: linear-gradient(to bottom, #000 30%, transparent);
  -webkit-mask-image: linear-gradient(to bottom, #000 30%, transparent);
}
.hero-grid { position: relative; display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr); gap: clamp(28px, 4vw, 64px); align-items: start; }
.hero-copy { display: grid; gap: 26px; align-content: start; padding-top: clamp(8px, 2vw, 28px); }
.hero h1 { font-size: clamp(3rem, min(1.6rem + 6vw, 11vh), 7.4rem); }
.hero h1 .hl { color: var(--amber); display: block; }
.hero .lede { color: #b9c0c9; max-width: 54ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.podcast-strip {
  display: inline-flex; align-items: center; gap: 12px; justify-self: start; max-width: 100%;
  padding: 10px 16px; border: 1px solid var(--line); border-radius: 999px; background: rgba(255, 255, 255, .03);
  font-size: var(--t-sm); color: #c9ced6; text-decoration: none; transition: border-color .2s, color .2s;
}
.podcast-strip:hover { border-color: var(--amber); color: var(--text); }
.podcast-strip b { color: var(--amber); font-weight: 600; }
.podcast-strip svg { flex-shrink: 0; }
.rec-dot { flex-shrink: 0; width: 8px; height: 8px; border-radius: 50%; background: #ff4d3d; animation: ping-red 1.6s infinite; }

.hero-photo { position: relative; margin: 0; border-radius: var(--radius); overflow: hidden; background: var(--board); aspect-ratio: 4 / 5; max-width: 100%; }
.hero-photo img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 20%; filter: saturate(.92) contrast(1.04); }
.hero-photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(12, 14, 17, .88), transparent 42%); }
.hero-photo figcaption { position: absolute; left: 18px; right: 18px; bottom: 16px; z-index: 1; display: flex; justify-content: space-between; align-items: end; gap: 12px; }
.gate-tag { display: grid; gap: 2px; }
.gate-tag b { font-family: var(--f-display); font-weight: 800; font-size: 1.6rem; text-transform: uppercase; line-height: 1; letter-spacing: .02em; }
.boarding-dot { display: inline-flex; align-items: center; gap: 8px; font-family: var(--f-mono); font-size: var(--t-xs); letter-spacing: .12em; color: var(--amber); text-transform: uppercase; white-space: nowrap; }
.boarding-dot::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--amber); box-shadow: 0 0 0 0 rgba(255, 184, 28, .6); animation: ping 2s infinite; }
@keyframes ping { 0% { box-shadow: 0 0 0 0 rgba(255, 184, 28, .55); } 80%, 100% { box-shadow: 0 0 0 10px rgba(255, 184, 28, 0); } }

/* ---------- split-flap departures board ---------- */
.board {
  position: relative; margin-top: clamp(32px, 4vw, 52px);
  background: linear-gradient(#171b22, #101318);
  border: 1px solid var(--line); border-radius: 10px;
  padding: clamp(14px, 2vw, 22px);
  box-shadow: 0 30px 80px -30px rgba(0, 0, 0, .8), inset 0 1px 0 rgba(255, 255, 255, .04);
}
.board-top { display: flex; flex-wrap: wrap; gap: 8px 20px; align-items: baseline; justify-content: space-between; padding: 2px 4px 14px; border-bottom: 1px solid var(--line); margin-bottom: 10px; }
.board-title { font-family: var(--f-display); font-weight: 800; font-size: 1.5rem; letter-spacing: .08em; text-transform: uppercase; color: var(--amber); display: flex; align-items: center; gap: 10px; }
.board-title svg { width: 22px; height: 22px; fill: var(--amber); }
.board-clock { font-family: var(--f-mono); font-size: var(--t-xs); letter-spacing: .12em; color: var(--muted); text-transform: uppercase; font-variant-numeric: tabular-nums; }
.board-clock b { color: var(--text); font-weight: 500; }
.board-head, .board-row {
  display: grid;
  grid-template-columns: 3.9em 12.8em 10.7em 16.6em;
  gap: 0 1.3em; align-items: center; justify-content: start;
  font-size: clamp(.78rem, .22rem + 1.15vw, 1.4rem);
}
.board-head { padding: 4px 4px 8px; }
.board-head span { font-family: var(--f-mono); font-size: max(.62rem, .42em); letter-spacing: .16em; color: var(--muted); text-transform: uppercase; }
.board-rows { list-style: none; margin: 0; padding: 0; display: grid; gap: 6px; }
.board-row { padding: 4px; border-radius: 4px; text-decoration: none; color: inherit; }
.board-row--cta { background: rgba(255, 184, 28, .06); outline: 1px dashed rgba(255, 184, 28, .35); outline-offset: 0; cursor: pointer; }
.board-row--cta:hover { background: rgba(255, 184, 28, .12); }
.board-row--cta:focus-visible { outline: 2px solid var(--amber); outline-offset: 3px; }
.flaps { display: flex; gap: .12em; min-width: 0; overflow: hidden; }
.cell {
  position: relative; flex: 0 0 auto;
  width: .86em; height: 1.42em;
  display: inline-grid; place-items: center;
  background: linear-gradient(var(--cell-hi) 0 50%, var(--cell) 50% 100%);
  border-radius: 2px;
  font-family: var(--f-display); font-weight: 700; font-size: 1em; line-height: 1;
  color: var(--text); text-transform: uppercase;
  perspective: 120px;
}
.cell::after { content: ""; position: absolute; left: 0; right: 0; top: 50%; height: 1px; background: rgba(0, 0, 0, .7); }
.cell .ch { display: block; transform-origin: 50% 50%; font-size: 1.08em; }
.cell.flip .ch { animation: flap .09s linear; }
@keyframes flap { 0% { transform: rotateX(-80deg); opacity: .4; } 100% { transform: rotateX(0); opacity: 1; } }
.flaps--status .cell { color: var(--amber); }
.flaps--year .cell { color: #cfd5dc; }
.board-row--cta .flaps--status .cell { animation: blink 1.2s steps(2, jump-none) 4; }
@keyframes blink { 50% { color: rgba(255, 184, 28, .25); } }
.board-foot { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 8px 16px; padding: 12px 4px 0; margin-top: 10px; border-top: 1px solid var(--line); }
.board-foot .label { font-size: .68rem; }

/* ---------- marquees ---------- */
.rails { border-block: 1px solid var(--line-soft); background: #0e1115; padding-block: clamp(20px, 3vw, 32px); display: grid; gap: clamp(14px, 2vw, 22px); }
.rail { display: grid; grid-template-columns: calc(13rem + var(--gutter)) minmax(0, 1fr); align-items: center; gap: 20px; }
.rail-label { padding-left: var(--gutter); display: grid; gap: 4px; }
.rail-label b { font-family: var(--f-display); font-weight: 800; font-size: 1.15rem; letter-spacing: .06em; text-transform: uppercase; line-height: 1; }
.marquee { position: relative; overflow: hidden; mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); }
.marquee-track { display: flex; width: max-content; animation: slide var(--dur, 60s) linear infinite; }
.marquee[data-dir="rtl"] .marquee-track { animation-direction: reverse; }
.marquee:hover .marquee-track, .marquee:focus-within .marquee-track, .rails.is-paused .marquee-track { animation-play-state: paused; }
.marquee { padding-block: 5px; }
.marquee-group { display: flex; align-items: center; gap: clamp(28px, 4vw, 56px); padding-right: clamp(28px, 4vw, 56px); }
@keyframes slide { to { transform: translateX(-50%); } }
.mark {
  display: inline-flex; align-items: center; gap: 10px; height: 44px; flex: 0 0 auto;
  color: #c9ced6; text-decoration: none; opacity: .9; transition: opacity .2s, color .2s;
  white-space: nowrap;
}
.mark:hover { opacity: 1; color: #fff; }
.mark img { height: var(--h, 26px); width: auto; max-width: 170px; object-fit: contain; filter: brightness(0) invert(1); opacity: .92; }
.mark--color img { filter: grayscale(.15); opacity: 1; }
/* logos that already read on a dark ground keep their own colours; the rest become light marks */
.mark--tile img { filter: none; opacity: 1; }
/* logos that come on a white ground: knock the white out so they read as light marks */
.mark--ko img { filter: grayscale(1) invert(1) contrast(1.15); mix-blend-mode: screen; opacity: 1; }
.wordmark .signature { height: 30px; width: auto; filter: brightness(0) invert(1); }
.mark .wm { font-family: var(--f-display); font-weight: 800; font-size: 1.45rem; letter-spacing: .04em; text-transform: uppercase; line-height: 1; }
.mark .wm--serif { font-family: Georgia, "Times New Roman", serif; font-weight: 700; text-transform: none; letter-spacing: -.01em; font-size: 1.35rem; }
.mark .wm--sans { font-family: var(--f-body); font-weight: 700; text-transform: none; letter-spacing: -.02em; font-size: 1.3rem; }
.mark .wm--lower { text-transform: lowercase; }
.mark .wm--pink { color: #ff2e88; }
.mark .wm--red { color: #e4322b; }
.mark--tile:hover .wm, .mark:hover .wm--pink, .mark:hover .wm--red { filter: brightness(1.15); }
.mark small { font-family: var(--f-mono); font-size: .62rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }
.rails-foot { display: flex; justify-content: flex-end; padding-inline: var(--gutter); }
.pause-btn { display: inline-flex; align-items: center; gap: 8px; background: none; border: 1px solid var(--line); border-radius: 999px; padding: 6px 14px; cursor: pointer; }
.pause-btn:hover { border-color: var(--muted); }

/* ---------- stats (concourse) ---------- */
.concourse { background: var(--paper); color: var(--ink); }
.concourse .label { color: var(--ink-muted); }
.concourse .lede { color: var(--ink-muted); }
.concourse .section-head .display em { color: var(--ink); background: linear-gradient(transparent 62%, var(--amber) 62% 92%, transparent 92%); padding-inline: .06em; }
.stats { padding-block: clamp(48px, 6vw, 88px); }
.stats-grid { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); border-top: 2px solid var(--ink); }
.stat { padding: 22px 24px 8px 0; display: grid; gap: 10px; align-content: start; border-right: 1px solid var(--paper-line); padding-left: 24px; }
.stat:first-child { padding-left: 0; }
.stat:last-child { border-right: 0; }
.stat .num { font-family: var(--f-display); font-weight: 900; font-size: clamp(3rem, 1.5rem + 3vw, 4.8rem); line-height: .86; letter-spacing: -.01em; font-variant-numeric: tabular-nums; white-space: nowrap; }
.stat .num small { font-size: .45em; font-weight: 800; margin-left: .06em; }
.stat p { margin: 0; font-size: var(--t-sm); line-height: 1.5; color: var(--ink-muted); max-width: 30ch; }
.stat p b { color: var(--ink); font-weight: 600; }
.stat .src { font-family: var(--f-mono); font-size: .66rem; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-muted); text-decoration: none; border-bottom: 1px solid var(--paper-line); justify-self: start; }
.stat .src:hover { color: var(--ink); border-color: var(--ink); }

/* ---------- story / route + timeline ---------- */
.story { padding-block: clamp(56px, 7vw, 110px); background: var(--paper); color: var(--ink); border-top: 1px solid var(--paper-line); }
.story-top { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(28px, 5vw, 80px); align-items: end; margin-bottom: clamp(32px, 4vw, 52px); }
.story-top .section-head { margin: 0; }
.route { width: 100%; height: auto; overflow: visible; }
.route .track { fill: none; stroke: var(--paper-line); stroke-width: 2; }
.route .flown { fill: none; stroke: var(--ink); stroke-width: 2; stroke-dasharray: 6 7; }
.route .stop circle { fill: var(--paper); stroke: var(--ink); stroke-width: 2; }
.route .stop.now circle { fill: var(--amber); }
.route .stop text { font-family: var(--f-mono); font-size: 11px; letter-spacing: .12em; fill: var(--ink); text-transform: uppercase; }
.route .stop text.code { font-family: var(--f-display); font-weight: 800; font-size: 22px; letter-spacing: .04em; }
.route .plane { fill: var(--ink); }

.timeline-shell { position: relative; }
.timeline {
  display: grid; grid-auto-flow: column; grid-auto-columns: minmax(290px, 360px);
  gap: 16px; overflow-x: auto; scroll-snap-type: x mandatory; scroll-padding-inline: var(--gutter);
  padding: 4px var(--gutter) 24px; margin-inline: calc(var(--gutter) * -1);
  scrollbar-width: none; cursor: grab; overscroll-behavior-x: contain;
}
.timeline::-webkit-scrollbar { display: none; }
.timeline.is-dragging { cursor: grabbing; scroll-snap-type: none; user-select: none; }
.timeline:focus-visible { outline-offset: -2px; }
.leg {
  scroll-snap-align: start; position: relative; display: grid; grid-template-rows: auto auto 1fr auto; gap: 12px;
  background: #fff; border: 1px solid var(--paper-line); border-radius: 10px; padding: 20px 20px 18px;
  min-height: 330px;
}
.leg::before, .leg::after {
  content: ""; position: absolute; top: 88px; width: 16px; height: 16px; border-radius: 50%;
  background: var(--paper); border: 1px solid var(--paper-line);
}
.leg::before { left: -9px; clip-path: inset(0 0 0 50%); }
.leg::after { right: -9px; clip-path: inset(0 50% 0 0); }
.leg-top { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; }
.leg-year { font-family: var(--f-display); font-weight: 900; font-size: 2.6rem; line-height: .9; }
.leg-code { font-family: var(--f-mono); font-size: .7rem; letter-spacing: .14em; color: var(--ink-muted); text-transform: uppercase; text-align: right; }
.leg-perf { border-top: 1px dashed var(--paper-line); padding-top: 14px; }
.leg h3 { font-family: var(--f-display); font-weight: 800; font-size: 1.55rem; line-height: 1; text-transform: uppercase; margin: 0 0 8px; letter-spacing: .01em; }
.leg p { margin: 0; font-size: var(--t-sm); line-height: 1.55; color: #37404b; }
.leg-foot { display: flex; flex-wrap: wrap; gap: 6px 12px; align-items: center; justify-content: space-between; }
.leg-role { font-family: var(--f-mono); font-size: .66rem; letter-spacing: .12em; text-transform: uppercase; background: var(--paper-2); color: var(--ink); padding: 4px 8px; border-radius: 3px; }
.leg a { font-family: var(--f-mono); font-size: .66rem; letter-spacing: .1em; text-transform: uppercase; color: var(--ink); text-underline-offset: 3px; }
.leg--now { background: var(--ink); color: var(--text); border-color: var(--ink); }
.leg--now p { color: #b9c0c9; }
.leg--now .leg-code { color: var(--muted); }
.leg--now .leg-role { background: var(--amber); color: var(--amber-ink); }
.leg--now a { color: var(--amber); }
.leg--next { background: var(--amber); border-color: var(--amber-deep); color: var(--amber-ink); }
.leg--next p { color: #3d2c00; }
.leg--next .leg-code { color: #6b4d00; }
.leg--next .leg-role { background: var(--amber-ink); color: var(--amber); }
.leg--next a { color: var(--amber-ink); font-weight: 700; }
.leg--next .leg-perf { border-color: rgba(26, 18, 0, .3); }
.timeline-ctrl { display: flex; align-items: center; gap: 14px; }
.timeline-progress { flex: 1; height: 2px; background: var(--paper-line); position: relative; overflow: hidden; border-radius: 2px; }
.timeline-progress span { position: absolute; inset: 0; background: var(--ink); transform-origin: 0 50%; transform: scaleX(var(--p, .1)); }
.round-btn { width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--ink); background: transparent; color: var(--ink); cursor: pointer; display: grid; place-items: center; transition: background .2s, color .2s; }
.round-btn:hover { background: var(--ink); color: var(--paper); }
.round-btn svg { width: 18px; height: 18px; }
.round-btn[aria-disabled="true"] { opacity: .35; cursor: default; background: transparent; color: var(--ink); }

/* ---------- speaking ---------- */
.speaking { padding-block: clamp(64px, 8vw, 120px); }
.speaking-grid { display: grid; grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr); gap: clamp(28px, 5vw, 72px); align-items: start; }
.stage-stack { display: grid; gap: 14px; position: sticky; top: calc(var(--header-h) + 20px); }
.stage-main { position: relative; margin: 0; border-radius: var(--radius); overflow: hidden; }
.stage-main img { width: 100%; aspect-ratio: 1320 / 766; object-fit: cover; }
.stage-main figcaption, .stage-pair figcaption { position: absolute; left: 12px; bottom: 12px; right: 12px; display: flex; gap: 8px; flex-wrap: wrap; }
.chip { display: inline-flex; align-items: center; gap: 6px; background: rgba(12, 14, 17, .78); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); border: 1px solid rgba(255, 255, 255, .12); padding: 5px 10px; border-radius: 999px; font-family: var(--f-mono); font-size: .66rem; letter-spacing: .1em; text-transform: uppercase; color: var(--text); }
.chip--amber { background: var(--amber); color: var(--amber-ink); border-color: var(--amber); }
.stage-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.stage-pair figure { position: relative; margin: 0; border-radius: var(--radius); overflow: hidden; }
.stage-pair img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.talks { list-style: none; margin: 0 0 40px; padding: 0; border-top: 1px solid var(--line); }
.talk { border-bottom: 1px solid var(--line); }
.talk button {
  width: 100%; display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 16px; align-items: center;
  background: none; border: 0; padding: 22px 0; cursor: pointer; text-align: left;
}
.talk-title { display: grid; gap: 6px; }
.talk-title b { font-family: var(--f-display); font-weight: 800; font-size: clamp(1.6rem, 1.2rem + 1.3vw, 2.3rem); line-height: .95; text-transform: uppercase; letter-spacing: .01em; transition: color .2s; }
.talk button:hover b, .talk.is-open b { color: var(--amber); }
.talk-icon { width: 36px; height: 36px; border: 1px solid var(--line); border-radius: 50%; display: grid; place-items: center; transition: transform .3s var(--ease), border-color .2s; }
.talk-icon svg { width: 14px; height: 14px; stroke: currentColor; }
.talk.is-open .talk-icon { transform: rotate(45deg); border-color: var(--amber); color: var(--amber); }
.talk-body { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .35s var(--ease); }
.talk.is-open .talk-body { grid-template-rows: 1fr; }
.talk-body > div { overflow: hidden; }
.talk-body p { margin: 0 0 12px; max-width: 58ch; color: #b9c0c9; }
.talk-body ul { margin: 0 0 22px; padding-left: 1.1em; color: #b9c0c9; font-size: var(--t-sm); display: grid; gap: 4px; }
.talk-body li::marker { color: var(--amber); }
.talk-cta { margin: -6px 0 24px; }

.spec { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px; margin-bottom: 40px; }
.spec h3 { margin: 0 0 12px; }
.tags { display: flex; flex-wrap: wrap; gap: 8px; list-style: none; margin: 0; padding: 0; }
.tags li { border: 1px solid var(--line); border-radius: 999px; padding: 6px 12px; font-size: var(--t-sm); color: #c9ced6; }
.appearances { border: 1px solid var(--line); border-radius: 10px; overflow: hidden; }
.appearances-head { display: flex; justify-content: space-between; align-items: center; gap: 12px; padding: 14px 18px; background: var(--board); border-bottom: 1px solid var(--line); }
.appearance { display: grid; grid-template-columns: 6.2rem minmax(0, 1fr) auto; gap: 16px; align-items: center; padding: 14px 18px; border-bottom: 1px solid var(--line-soft); text-decoration: none; transition: background .2s; }
.appearance:last-child { border-bottom: 0; }
a.appearance:hover { background: var(--board); }
.appearance time, .appearance .when { font-family: var(--f-mono); font-size: .72rem; letter-spacing: .08em; color: var(--muted); text-transform: uppercase; font-variant-numeric: tabular-nums; }
.appearance b { display: block; font-weight: 600; line-height: 1.3; }
.appearance span.sub { display: block; font-size: var(--t-sm); color: var(--muted); line-height: 1.4; }
.appearance .go { font-family: var(--f-mono); font-size: .7rem; letter-spacing: .1em; color: var(--amber); text-transform: uppercase; white-space: nowrap; }
.appearance--soon .go { color: var(--muted); }

/* ---------- coming soon: Harpin ---------- */
.soon { position: relative; background: #0f1216; border-block: 1px solid var(--line-soft); overflow: hidden; }
.soon-grid { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr); gap: clamp(28px, 5vw, 72px); align-items: center; padding-block: clamp(56px, 7vw, 100px); }
.soon-copy { display: grid; gap: 22px; align-content: center; }
.soon h2 { font-size: clamp(2.6rem, 1.6rem + 3.8vw, 5.4rem); }
.soon h2 span { color: var(--amber); display: block; }
.soon-photo { position: relative; margin: 0; justify-self: center; width: min(100%, 380px); aspect-ratio: 9 / 13; border-radius: 12px; overflow: hidden; border: 1px solid var(--line); background: var(--board); }
.soon-photo img, .soon-photo video { width: 100%; height: 100%; object-fit: cover; object-position: 50% 30%; background: #000; }
.soon-photo .rec { position: absolute; top: 14px; left: 14px; display: inline-flex; align-items: center; gap: 8px; }
.soon-photo .rec::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: #ff4d3d; animation: ping-red 1.6s infinite; }
@keyframes ping-red { 50% { opacity: .25; } }
.countdown { display: flex; gap: 10px; }

/* ---------- ventures ---------- */
.ventures { padding-block: clamp(64px, 8vw, 110px); }
.venture-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; margin-bottom: 28px; }
.venture { position: relative; display: grid; grid-template-rows: auto 1fr auto; gap: 18px; padding: clamp(22px, 3vw, 34px); background: #fff; border: 1px solid var(--paper-line); border-radius: 10px; text-decoration: none; color: var(--ink); transition: transform .25s var(--ease), box-shadow .25s; min-height: 300px; }
.venture:hover { transform: translateY(-3px); box-shadow: 0 24px 50px -30px rgba(12, 14, 17, .45); }
.venture-top { display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.venture-logo { height: 44px; display: flex; align-items: center; }
.venture-logo img { height: 100%; width: auto; max-width: 200px; object-fit: contain; }
.venture-logo .wm { font-family: var(--f-display); font-weight: 900; font-size: 2.2rem; line-height: 1; text-transform: uppercase; letter-spacing: .02em; }
.venture h3 { font-family: var(--f-display); font-weight: 800; font-size: clamp(1.8rem, 1.3rem + 1.4vw, 2.6rem); line-height: .95; text-transform: uppercase; margin: 0 0 10px; }
.venture p { margin: 0; color: #37404b; max-width: 46ch; }
.venture p.venture-quote { font-family: var(--f-display); font-weight: 700; font-size: 1.35rem; line-height: 1.1; text-transform: uppercase; letter-spacing: .01em; color: var(--ink); margin-bottom: 12px; }
.venture--dark p.venture-quote { color: var(--amber); }
.venture-foot { display: flex; justify-content: space-between; align-items: center; gap: 12px; flex-wrap: wrap; padding-top: 16px; border-top: 1px solid var(--paper-2); }
.venture-foot .go { font-family: var(--f-mono); font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.venture--dark { background: var(--ink); color: var(--text); border-color: var(--ink); }
.venture--dark p { color: #b9c0c9; }
.venture--dark .venture-foot { border-color: var(--line); }
.venture--dark .go { color: var(--amber); }
.venture--dark .label { color: var(--muted); }
.portfolio { display: flex; flex-wrap: wrap; align-items: center; gap: 10px 12px; }
.portfolio .label { margin-right: 8px; }
.portfolio span.p { font-family: var(--f-display); font-weight: 700; font-size: 1.15rem; letter-spacing: .04em; text-transform: uppercase; padding: 6px 14px; border: 1px solid var(--paper-line); border-radius: 999px; background: #fff; }

/* ---------- gallery ---------- */
.gallery { padding-block: clamp(64px, 8vw, 110px); }
.masonry { columns: 4 240px; column-gap: 12px; }
.shot { break-inside: avoid; margin: 0 0 12px; position: relative; border-radius: var(--radius); overflow: hidden; background: var(--board); }
.shot button { display: block; width: 100%; padding: 0; border: 0; background: none; cursor: zoom-in; }
.shot img { width: 100%; height: auto; transition: transform .6s var(--ease), filter .4s; filter: saturate(.9); }
.shot:hover img { transform: scale(1.03); filter: saturate(1.05); }
.shot:has(button:focus-visible) { outline: 2px solid var(--amber); outline-offset: 3px; }
.shot button:focus-visible { outline: none; }
.shot figcaption { position: absolute; left: 0; right: 0; bottom: 0; padding: 36px 12px 10px; background: linear-gradient(transparent, rgba(12, 14, 17, .85)); font-size: var(--t-sm); line-height: 1.35; pointer-events: none; }
.shot figcaption .label { display: block; margin-bottom: 2px; font-size: .62rem; }

.lightbox { border: 0; padding: 0; background: transparent; max-width: 100vw; max-height: 100vh; width: 100%; height: 100%; }
.lightbox::backdrop { background: rgba(6, 7, 9, .92); backdrop-filter: blur(4px); }
.lightbox-inner { position: relative; height: 100%; display: grid; grid-template-rows: minmax(0, 1fr) auto; place-items: center; padding: 56px 16px 20px; gap: 14px; }
.lightbox img { max-height: 100%; max-width: min(100%, 1400px); width: auto; height: auto; object-fit: contain; border-radius: 4px; }
.lightbox-cap { color: var(--text); text-align: center; max-width: 70ch; font-size: var(--t-sm); }
.lightbox-btn { position: absolute; width: 48px; height: 48px; border-radius: 50%; border: 1px solid var(--line); background: rgba(20, 24, 30, .8); color: var(--text); cursor: pointer; display: grid; place-items: center; }
.lightbox-btn:hover { border-color: var(--amber); color: var(--amber); }
.lightbox-btn svg { width: 18px; height: 18px; }
.lightbox-close { top: 12px; right: 12px; }
.lightbox-prev { left: 12px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 12px; top: 50%; transform: translateY(-50%); }

/* ---------- father & son ---------- */
.personal { position: relative; background: #0f1216; border-block: 1px solid var(--line-soft); overflow: hidden; }
.personal::before { content: ""; position: absolute; inset: 0; pointer-events: none; background: radial-gradient(55% 55% at 15% 0%, rgba(255, 184, 28, .06), transparent 65%); }
.personal-main { position: relative; display: grid; grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr); gap: clamp(28px, 5vw, 76px); align-items: center; padding-block: clamp(56px, 7vw, 104px); }

/* framed print, with the early photo laid over its corner */
.personal-photos { position: relative; padding-bottom: clamp(70px, 9vw, 120px); }
.photo-main, .photo-inset { margin: 0; padding: 10px; background: #12161c; border: 1px solid rgba(255, 255, 255, .13); border-radius: 4px; }
.photo-main img, .photo-inset img { width: 100%; height: auto; object-fit: cover; display: block; }
.photo-main img { aspect-ratio: 3 / 4; }
.photo-main figcaption, .photo-inset figcaption { padding-top: 10px; font-family: var(--f-mono); font-size: .68rem; letter-spacing: .08em; color: var(--muted); text-align: right; }
.photo-inset { position: absolute; left: clamp(-10px, -1vw, 0px); bottom: 0; width: 46%; padding: 8px; box-shadow: 0 26px 50px -24px rgba(0, 0, 0, .9); }
.photo-inset img { aspect-ratio: 3 / 4; }
.photo-inset figcaption { padding-top: 8px; font-size: .62rem; text-align: left; }

.personal-body { display: grid; gap: 16px; max-width: 58ch; }
.personal-body h2 { margin-top: -2px; }
.personal-stand { margin: 0 0 6px; font-family: var(--f-display); font-weight: 700; font-size: clamp(1.3rem, 1.05rem + .9vw, 1.85rem); line-height: 1.05; text-transform: uppercase; letter-spacing: .01em; color: var(--text); }
.personal-body p { margin: 0; font-size: clamp(1rem, .96rem + .18vw, 1.1rem); line-height: 1.62; color: #c9ced6; }
.personal-foot { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 16px; margin-top: 10px; padding-top: 22px; border-top: 1px solid var(--line); }
.signoff .signature { height: 34px; width: auto; filter: brightness(0) invert(1); opacity: .92; }
.photo-wide { margin: 6px 0 0; padding: 10px; background: #12161c; border: 1px solid rgba(255, 255, 255, .13); border-radius: 4px; }
.photo-wide img { width: 100%; height: auto; display: block; aspect-ratio: 16 / 10; object-fit: cover; object-position: 50% 42%; }
.photo-wide figcaption { padding-top: 10px; font-family: var(--f-mono); font-size: .68rem; letter-spacing: .08em; color: var(--muted); text-align: right; }
.personal-credit { font-family: var(--f-mono); font-size: .68rem !important; letter-spacing: .08em; text-transform: uppercase; color: var(--muted) !important; }

/* ---------- banner ---------- */
.banner { position: relative; min-height: clamp(260px, 36vw, 480px); display: grid; align-items: center; overflow: hidden; background: #000; }
.banner img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 78% 30%; }
.banner::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, #000 18%, rgba(0, 0, 0, .55) 55%, rgba(0, 0, 0, .15)); }
.banner .wrap { position: relative; z-index: 1; }
.banner p.display { font-size: clamp(2rem, 1.2rem + 3.6vw, 4.4rem); max-width: 24ch; }
.banner p.display span { color: var(--amber); }

/* ---------- press ---------- */
.press { padding-block: clamp(64px, 8vw, 110px); }
.press-feature { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; margin-bottom: 40px; }
.clip { display: grid; grid-template-rows: auto 1fr auto; gap: 18px; background: #fff; border: 1px solid var(--paper-line); border-radius: 10px; padding: 24px; text-decoration: none; color: var(--ink); transition: transform .25s var(--ease), box-shadow .25s, border-color .25s; }
.clip:hover { transform: translateY(-3px); border-color: var(--ink); box-shadow: 0 24px 50px -32px rgba(12, 14, 17, .5); }
.clip-outlet { display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.clip-outlet b { font-family: Georgia, "Times New Roman", serif; font-weight: 700; font-size: 1.1rem; }
.clip h3 { margin: 0; font-family: var(--f-display); font-weight: 800; font-size: 1.7rem; line-height: 1; text-transform: uppercase; letter-spacing: .005em; text-wrap: balance; }
.clip p { margin: 8px 0 0; font-size: var(--t-sm); color: var(--ink-muted); }
.clip-foot { display: flex; justify-content: space-between; align-items: center; font-family: var(--f-mono); font-size: .7rem; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-muted); border-top: 1px solid var(--paper-2); padding-top: 14px; }
.clip-foot .go { color: var(--ink); font-weight: 700; }

.press-tools { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 14px; margin-bottom: 18px; }
.filters { display: flex; flex-wrap: wrap; gap: 8px; }
.filter { display: inline-flex; align-items: center; gap: 8px; min-height: 40px; padding: 0 14px; border: 1px solid var(--paper-line); background: #fff; border-radius: 999px; cursor: pointer; font-size: var(--t-sm); font-weight: 500; color: var(--ink); transition: background .2s, color .2s, border-color .2s; }
.filter .n { font-family: var(--f-mono); font-size: .7rem; color: var(--ink-muted); }
.filter:hover { border-color: var(--ink); }
.filter[aria-pressed="true"] { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.filter[aria-pressed="true"] .n { color: var(--amber); }
.search { position: relative; }
.search input { min-height: 40px; width: min(280px, 100%); padding: 0 14px 0 38px; border: 1px solid var(--paper-line); background: #fff; border-radius: 999px; color: var(--ink); font-size: var(--t-sm); }
.search input:focus { outline: 2px solid var(--ink); outline-offset: 1px; }
.search svg { position: absolute; left: 13px; top: 50%; transform: translateY(-50%); width: 15px; height: 15px; stroke: var(--ink-muted); }
.press-list { list-style: none; margin: 0; padding: 0; border-top: 2px solid var(--ink); }
.press-item a { display: grid; grid-template-columns: 6.5rem 11rem minmax(0, 1fr) auto; gap: 18px; align-items: baseline; padding: 16px 4px; border-bottom: 1px solid var(--paper-line); text-decoration: none; color: var(--ink); transition: background .2s, padding .2s; }
.press-item a:hover { background: #fff; padding-inline: 12px; }
.press-item time { font-family: var(--f-mono); font-size: .74rem; color: var(--ink-muted); font-variant-numeric: tabular-nums; letter-spacing: .04em; }
.press-item .outlet { font-weight: 600; font-size: var(--t-sm); }
.press-item .headline { font-weight: 500; line-height: 1.4; }
.press-item .headline small { display: block; color: var(--ink-muted); font-size: var(--t-sm); font-weight: 400; margin-top: 2px; }
.press-item .go { font-family: var(--f-mono); font-size: .7rem; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-muted); white-space: nowrap; }
.press-item a:hover .go { color: var(--ink); }
.press-empty { padding: 24px 4px; color: var(--ink-muted); border-bottom: 1px solid var(--paper-line); }
.press-more { margin-top: 20px; display: flex; justify-content: space-between; align-items: center; gap: 12px; flex-wrap: wrap; }
.btn--ink { --bg: var(--ink); --fg: var(--paper); }
.btn--ink:hover { background: var(--amber); border-color: var(--amber); color: var(--amber-ink); }

/* ---------- organisers kit ---------- */
.kit { padding-block: clamp(56px, 7vw, 100px); border-top: 1px solid var(--line-soft); background: #0f1216; }
.kit-grid { display: grid; grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr); gap: clamp(28px, 5vw, 72px); align-items: start; }
.kit-cards { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.kit-card { display: grid; gap: 14px; align-content: start; padding: 20px; border: 1px solid var(--line); border-radius: 10px; background: var(--board); }
.kit-card p { margin: 0; font-size: var(--t-sm); line-height: 1.6; color: #c9ced6; }
.kit-top { display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.kit-top h3 { margin: 0; }
.kit-card--wide { grid-column: 1 / -1; }
.kit-card--photo { grid-column: 1 / -1; grid-template-columns: 120px minmax(0, 1fr); align-items: center; }
.kit-card--photo img { width: 120px; height: 120px; object-fit: cover; border-radius: 6px; }

/* ---------- booking ---------- */
.booking { padding-block: clamp(64px, 8vw, 120px); position: relative; overflow: hidden; }
.booking::before { content: ""; position: absolute; inset: 0; background: radial-gradient(50% 60% at 10% 90%, rgba(255, 184, 28, .08), transparent 60%); pointer-events: none; }
.booking-grid { position: relative; display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: clamp(28px, 5vw, 72px); align-items: start; }
.pass-col { position: sticky; top: calc(var(--header-h) + 20px); display: grid; gap: 22px; }
.pass {
  position: relative; display: grid; grid-template-columns: minmax(0, 1fr) 120px;
  background: var(--paper); color: var(--ink); border-radius: 14px; overflow: hidden;
  box-shadow: 0 40px 80px -40px rgba(0, 0, 0, .9);
  transform: rotate(-1.2deg);
}
.pass-main { padding: 20px 22px; display: grid; gap: 16px; border-right: 2px dashed var(--paper-line); position: relative; }
.pass-main::before, .pass-main::after { content: ""; position: absolute; right: -11px; width: 20px; height: 20px; border-radius: 50%; background: var(--tarmac); }
.pass-main::before { top: -10px; }
.pass-main::after { bottom: -10px; }
.pass-head { display: flex; justify-content: space-between; align-items: center; gap: 12px; padding-bottom: 12px; border-bottom: 1px solid var(--paper-line); }
.pass-head b { font-family: var(--f-display); font-weight: 900; font-size: 1.35rem; letter-spacing: .06em; text-transform: uppercase; }
.pass-head .cls { font-family: var(--f-mono); font-size: .66rem; letter-spacing: .12em; background: var(--ink); color: var(--amber); padding: 4px 8px; border-radius: 3px; text-transform: uppercase; }
.pass-route { display: grid; grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr); gap: 10px; align-items: end; }
.pass-route .code { font-family: var(--f-display); font-weight: 900; font-size: clamp(2.2rem, 1.6rem + 2vw, 3.2rem); line-height: .9; text-transform: uppercase; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.pass-route .to { text-align: right; }
.pass-route svg { width: 30px; height: 30px; fill: var(--ink); margin-bottom: 6px; }
.pass-fields { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px 14px; }
.pf { display: grid; gap: 2px; min-width: 0; }
.pf > span { font-family: var(--f-mono); font-size: .58rem; letter-spacing: .14em; color: var(--ink-muted); text-transform: uppercase; }
.pf b { font-weight: 600; font-size: .92rem; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.pf--wide { grid-column: span 3; }
.pass-stub { padding: 20px 14px; display: grid; gap: 12px; align-content: space-between; background: var(--paper-2); }
.pass-stub .pf b { font-size: .85rem; }
.barcode { width: 100%; height: 64px; display: block; }
.barcode rect { fill: var(--ink); }
.pass-note { font-size: var(--t-sm); color: var(--muted); max-width: 48ch; margin: 0; }

.form { display: grid; gap: 18px; background: var(--board); border: 1px solid var(--line); border-radius: 12px; padding: clamp(20px, 3vw, 32px); }
.form-row { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.field { display: grid; gap: 6px; min-width: 0; }
.field label, .field legend { font-family: var(--f-mono); font-size: .68rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }
.field label .req { color: var(--amber); }
.field input, .field select, .field textarea {
  width: 100%; min-height: 48px; padding: 12px 14px; background: var(--tarmac); border: 1px solid var(--line); border-radius: var(--radius);
  font-size: 1rem; color: var(--text); transition: border-color .2s, box-shadow .2s;
}
.field textarea { min-height: 120px; resize: vertical; line-height: 1.5; }
.field input::placeholder, .field textarea::placeholder { color: var(--muted); opacity: 1; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.field select { appearance: none; -webkit-appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--muted) 50%), linear-gradient(135deg, var(--muted) 50%, transparent 50%); background-position: calc(100% - 20px) 50%, calc(100% - 15px) 50%; background-size: 5px 5px; background-repeat: no-repeat; padding-right: 36px; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--amber); box-shadow: 0 0 0 3px rgba(255, 184, 28, .18); }
.field input[aria-invalid="true"], .field textarea[aria-invalid="true"] { border-color: #ff6b5a; }
.field .err { font-size: var(--t-sm); color: #ff8a7a; min-height: 0; }
.field input::-webkit-calendar-picker-indicator { filter: invert(.8); }
fieldset.field { border: 0; margin: 0; padding: 0; }
.format-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 4px; }
.format-chips label { position: relative; cursor: pointer; }
.format-chips input { position: absolute; opacity: 0; inset: 0; cursor: pointer; width: auto; min-height: 0; padding: 0; }
.format-chips label { font-family: var(--f-body); letter-spacing: normal; text-transform: none; }
.format-chips span { display: inline-flex; align-items: center; min-height: 40px; padding: 0 14px; border: 1px solid var(--line); border-radius: 999px; font-size: var(--t-sm); color: #c9ced6; transition: all .2s; }
.format-chips input:checked + span { background: var(--amber); border-color: var(--amber); color: var(--amber-ink); font-weight: 600; }
.format-chips input:focus-visible + span { outline: 2px solid var(--amber); outline-offset: 2px; }
.form-foot { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 14px; padding-top: 6px; }
.form-foot p { margin: 0; font-size: var(--t-sm); color: var(--muted); }
.form-foot a { color: var(--text); }
.form-done { display: grid; gap: 14px; padding: 18px; border: 1px solid var(--amber); border-radius: 10px; background: rgba(255, 184, 28, .07); }
.form-done p { margin: 0; color: #d7dbe0; }
.form-done .actions { display: flex; flex-wrap: wrap; gap: 10px; }

/* ---------- contact ---------- */
.contact { padding-block: clamp(56px, 7vw, 100px); border-top: 1px solid var(--line-soft); background: #0f1216; }
.contact-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; }
.contact-card { position: relative; display: grid; gap: 8px; align-content: start; padding: 22px; border: 1px solid var(--line); border-radius: 10px; background: var(--board); text-decoration: none; color: var(--text); transition: border-color .2s, transform .25s var(--ease); }
.contact-card:hover { border-color: var(--amber); transform: translateY(-2px); }
.contact-card b { font-size: 1.02rem; font-weight: 600; word-break: break-word; }
.contact-card .go { font-family: var(--f-mono); font-size: .68rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--amber); }
.contact-card--v1 img { position: absolute; top: 18px; right: 18px; width: 34px; height: 34px; }
.contact-card--v1 .label { padding-right: 44px; }
.contact-social { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; margin-top: 22px; }
.contact-social .label { margin-right: 4px; }

/* ---------- footer ---------- */
.footer { border-top: 1px solid var(--line-soft); padding-block: clamp(48px, 6vw, 80px) calc(28px + env(safe-area-inset-bottom, 0px)); background: #0a0c0f; }
.footer .footer-big { max-width: none; font-family: var(--f-display); font-weight: 900; text-transform: uppercase; font-size: clamp(3.2rem, 1rem + 10vw, 11rem); line-height: .82; letter-spacing: .01em; margin: 0 0 clamp(28px, 4vw, 48px); color: #1d232b; user-select: none; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 28px; padding-bottom: 36px; border-bottom: 1px solid var(--line-soft); }
.footer h3 { margin: 0 0 12px; }
.footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; }
.footer a { text-decoration: none; color: #c9ced6; }
.footer a:hover { color: var(--amber); }
.footer p { margin: 0; color: var(--muted); font-size: var(--t-sm); max-width: 36ch; }
.clocks { display: grid; gap: 8px; }
.clock { display: flex; justify-content: space-between; gap: 12px; font-family: var(--f-mono); font-size: .78rem; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); font-variant-numeric: tabular-nums; }
.clock b { color: var(--text); font-weight: 500; }
.footer-base { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; padding-top: 22px; }
.footer-base p { max-width: none; font-size: .78rem; }

/* ---------- responsive ---------- */
@media (max-width: 1080px) {
  .nav { display: none; }
  .menu-btn { display: inline-block; }
  .header .btn { margin-left: auto; }
  .nav.is-open {
    display: flex; flex-direction: column; gap: 0; position: fixed; left: 0; right: 0;
    top: calc(env(safe-area-inset-top, 0px) + var(--header-h)); bottom: 0; padding: 20px var(--gutter);
    background: var(--tarmac); border-top: 1px solid var(--line-soft); overflow-y: auto;
  }
  .nav.is-open a { font-family: var(--f-display); font-weight: 800; font-size: 2.2rem; letter-spacing: .02em; color: var(--text); padding: 14px 0; border-bottom: 1px solid var(--line-soft); }
  .nav.is-open a.is-active::after { display: none; }
  .hero-grid { grid-template-columns: minmax(0, 1fr) minmax(0, .8fr); }
  .stats-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .stat:nth-child(2) { border-right: 0; }
  .stat:nth-child(3) { padding-left: 0; }
  .stat:nth-child(n+3) { border-top: 1px solid var(--paper-line); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .stats-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .stat:nth-child(4) { border-right: 0; }
  .stat:nth-child(2n+1) { padding-left: 0; }
  .stat:last-child { grid-column: 1 / -1; }
}
@media (max-width: 880px) {
  .hero-grid, .speaking-grid, .soon-grid, .booking-grid, .story-top { grid-template-columns: minmax(0, 1fr); }
  .hero-photo { aspect-ratio: 2 / 1; order: -1; }
  .hero-photo img { object-position: 50% 22%; }
  .stage-stack, .pass-col { position: static; }
  .press-feature { grid-template-columns: minmax(0, 1fr); }
  .venture-grid { grid-template-columns: minmax(0, 1fr); }
  .rail { grid-template-columns: minmax(0, 1fr); gap: 10px; }
  .soon-photo { width: min(100%, 320px); }
  .personal-main { grid-template-columns: minmax(0, 1fr); }
  .personal-photos { max-width: 460px; margin-inline: auto; }
  .kit-grid { grid-template-columns: minmax(0, 1fr); }
  .pass-col { display: contents; }
  .pass-col .section-head { order: -2; }
  .booking-grid .form { order: -1; }
  .speaking-grid .stage-stack { order: 2; }
}
@media (max-width: 640px) {
  :root { --header-h: 60px; }
  .wordmark { font-size: 1.3rem; }
  .wordmark .signature { height: 26px; }
  .lede { font-size: 1.06rem; }
  /* tighten the first screen so the booking button clears the fold on a phone */
  .hero { padding-top: 14px; }
  .hero-copy { gap: 16px; padding-top: 0; }
  .hero-photo figcaption { left: 14px; right: 14px; bottom: 12px; }
  .gate-tag b { font-size: 1.3rem; }
  .wordmark .flap-mark { display: none; }
  .header .btn { padding: 0 12px; }
  .board-head { display: none; }
  .board-row { grid-template-columns: 4.6em minmax(0, 1fr); grid-template-areas: "y d" "y s"; gap: 5px .8em; padding: 6px 4px; font-size: .84rem; }
  .board-row .flaps--year { grid-area: y; align-self: start; }
  .board-row .flaps--dest { grid-area: d; }
  .board-row .flaps--role { display: none; }
  .board-row .flaps--status { grid-area: s; font-size: .78em; }
  .board-rows { gap: 8px; }
  .stats-grid { grid-template-columns: minmax(0, 1fr); }
  .stat, .stat:nth-child(3) { padding-left: 0; border-right: 0; }
  .stat:nth-child(n+2) { border-top: 1px solid var(--paper-line); }
  .spec { grid-template-columns: minmax(0, 1fr); }
  .stage-pair { grid-template-columns: minmax(0, 1fr); }
  .appearance { grid-template-columns: minmax(0, 1fr) auto; }
  .appearance .when { grid-column: 1 / -1; }
  .press-item a { grid-template-columns: minmax(0, 1fr) auto; gap: 4px 12px; }
  .press-item time { grid-column: 1; grid-row: 1; }
  .press-item .outlet { grid-column: 1; grid-row: 2; }
  .press-item .headline { grid-column: 1 / -1; grid-row: 3; }
  .press-item .go { grid-column: 2; grid-row: 1; }
  .form-row { grid-template-columns: minmax(0, 1fr); }
  .pass { grid-template-columns: minmax(0, 1fr); transform: none; }
  .pass-main { border-right: 0; border-bottom: 2px dashed var(--paper-line); }
  .pass-main::before, .pass-main::after { display: none; }
  .pass-stub { grid-template-columns: 1fr 1fr; align-items: end; }
  .pass-stub .barcode { grid-column: 1 / -1; height: 48px; }
  .footer-grid { grid-template-columns: minmax(0, 1fr); }
  .contact-grid { grid-template-columns: minmax(0, 1fr); }
  .masonry { columns: 2 150px; column-gap: 8px; }
  .shot { margin-bottom: 8px; }
  .shot figcaption { padding: 24px 8px 6px; font-size: .75rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .shot figcaption .label { display: none; }
  .kit-cards { grid-template-columns: minmax(0, 1fr); }
  .kit-card--photo { grid-template-columns: 88px minmax(0, 1fr); }
  .kit-card--photo img { width: 88px; height: 88px; }
  .kit-card--photo .kit-top { flex-wrap: wrap; }
  .route .stop text:not(.code) { display: none; }
  .route .stop text.code { font-size: 30px; }
  .timeline { grid-auto-columns: minmax(260px, 84vw); }
}

@media (max-width: 400px) {
  .header-inner { gap: 10px; }
  .wordmark { font-size: 1.15rem; letter-spacing: .04em; }
  .header .btn { padding: 0 10px; gap: .4em; }
  .header .btn .arrow { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .rails-foot { display: none; }
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  .marquee-track { animation: none !important; flex-wrap: wrap; width: auto; }
  .marquee-group[aria-hidden="true"] { display: none; }
  .marquee-group { flex-wrap: wrap; row-gap: 12px; }
  .marquee { mask-image: none; -webkit-mask-image: none; }
}
