@font-face { font-family: "Manrope"; src: url("assets/fonts/manrope-latin.woff2") format("woff2"); font-style: normal; font-weight: 400 800; font-display: swap; }
@font-face { font-family: "Instrument Serif"; src: url("assets/fonts/instrument-serif-regular-latin.woff2") format("woff2"); font-style: normal; font-weight: 400; font-display: swap; }
@font-face { font-family: "Instrument Serif"; src: url("assets/fonts/instrument-serif-italic-latin.woff2") format("woff2"); font-style: italic; font-weight: 400; font-display: swap; }
@font-face { font-family: "DM Mono"; src: url("assets/fonts/dm-mono-400-latin.woff2") format("woff2"); font-style: normal; font-weight: 400; font-display: swap; }
@font-face { font-family: "DM Mono"; src: url("assets/fonts/dm-mono-500-latin.woff2") format("woff2"); font-style: normal; font-weight: 500; font-display: swap; }

:root {
  --orange: #ff4f12;
  --orange-dark: #cc3300;
  --ink: #191816;
  --ink-soft: #403c38;
  --paper: #f7f5f0;
  --paper-deep: #ece8df;
  --white: #fffefa;
  --line: #d9d3c8;
  --grid: rgba(48, 42, 36, .075);
  --green: #286b4b;
  --font-display: "Instrument Serif", Georgia, serif;
  --font-body: "Manrope", "Avenir Next", sans-serif;
  --font-mono: "DM Mono", monospace;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 28px;
  --shadow-hard: 8px 8px 0 var(--ink);
  --shadow-button: 4px 4px 0 rgba(0, 0, 0, .34);
  --scroll-progress: 0;
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  scrollbar-color: var(--orange) var(--paper-deep);
  scrollbar-width: thin;
  background: var(--paper);
}

html::-webkit-scrollbar { width: 12px; }
html::-webkit-scrollbar-track { background: var(--paper-deep); }
html::-webkit-scrollbar-thumb { border: 3px solid var(--paper-deep); border-radius: 999px; background: var(--orange); }
html::-webkit-scrollbar-thumb:hover { background: var(--orange-dark); }

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

body::selection { background: var(--orange); color: var(--white); }
a, button, label { touch-action: manipulation; -webkit-tap-highlight-color: transparent; }
a { color: inherit; }
button { color: inherit; font: inherit; }
img, svg { display: block; max-width: 100%; }
[hidden] { display: none !important; }

.reading-progress { position: fixed; z-index: 200; top: 0; right: 0; left: 0; height: 3px; overflow: hidden; pointer-events: none; }
.reading-progress span { display: block; width: 100%; height: 100%; background: var(--orange); box-shadow: 0 0 16px rgba(255,79,18,.6); transform: scaleX(var(--scroll-progress)); transform-origin: left center; will-change: transform; }

:focus-visible { outline: 3px solid var(--orange); outline-offset: 4px; }

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.container { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }
.skip-link { position: fixed; z-index: 100; top: 10px; left: 10px; padding: 12px 16px; background: var(--ink); color: var(--white); font-weight: 700; text-decoration: none; transform: translateY(-160%); }
.skip-link:focus { transform: translateY(0); }

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  border: 2px solid transparent;
  border-radius: var(--radius-sm);
  font-size: .92rem;
  font-weight: 800;
  letter-spacing: -.015em;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease, color 180ms ease;
}

.button:hover { transform: translate(-2px, -2px); }
.button:active { transform: translate(0, 0); }
.button-icon, .next-kicker-icon { font-size: 1.05rem; line-height: 1; }
.button svg, .nav-link svg { width: 18px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.button-primary { border-color: #ff7a4d; background: var(--orange); color: var(--ink); box-shadow: var(--shadow-button); }
.button-primary:hover { box-shadow: 7px 7px 0 rgba(0, 0, 0, .38); }
.button-ghost { border-color: rgba(255, 255, 255, .52); background: rgba(255, 255, 255, .07); color: var(--white); box-shadow: 3px 3px 0 rgba(0, 0, 0, .24); }
.button-ghost:hover { border-color: var(--white); background: rgba(255, 255, 255, .14); }
.button-light { border-color: var(--white); background: var(--white); color: var(--ink); box-shadow: 5px 5px 0 var(--orange); }
.button-dark { background: var(--ink); color: var(--white); box-shadow: 6px 6px 0 rgba(255, 255, 255, .33); }

.hero { position: relative; overflow: hidden; background: var(--ink); color: var(--white); }
.hero::before {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 42px 42px;
  content: "";
  mask-image: linear-gradient(to bottom, #000 0%, transparent 75%);
}
.hero::after { position: absolute; top: 104px; left: 50%; width: 620px; height: 620px; border: 1px solid rgba(255,79,18,.22); border-radius: 50%; content: ""; box-shadow: 0 0 0 84px rgba(255,79,18,.032), 0 0 0 168px rgba(255,79,18,.022); transform: translateX(-50%); }
.hero-noise { position: absolute; inset: 0; opacity: .06; pointer-events: none; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%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)' opacity='.8'/%3E%3C/svg%3E"); }

.nav { position: relative; z-index: 2; display: flex; min-height: 92px; align-items: center; justify-content: space-between; border-bottom: 1px solid rgba(255,255,255,.14); }
.brand { display: inline-flex; min-height: 44px; align-items: center; gap: 12px; color: var(--white); text-decoration: none; }
.brand-mark { width: 54px; height: 54px; flex: 0 0 auto; object-fit: contain; filter: drop-shadow(0 5px 8px rgba(0,0,0,.25)); }
.brand-copy { display: flex; flex-direction: column; font-family: var(--font-display); font-size: 1.28rem; line-height: 1; }
.brand-copy small { margin-top: 4px; color: #a9a39a; font-family: var(--font-mono); font-size: .58rem; font-weight: 500; letter-spacing: .11em; text-transform: uppercase; }
.nav-link { display: inline-flex; min-height: 46px; align-items: center; gap: 8px; padding: 10px 15px; border: 1px solid rgba(255,255,255,.42); border-radius: var(--radius-sm); background: rgba(255,255,255,.07); color: var(--white); font-size: .8rem; font-weight: 800; text-decoration: none; box-shadow: 3px 3px 0 rgba(0,0,0,.22); transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease; }
.nav-link:hover { border-color: var(--white); background: rgba(255,255,255,.14); transform: translate(-2px,-2px); }

.hero-grid { position: relative; z-index: 1; display: block; padding-block: clamp(72px, 8vw, 112px) clamp(116px, 12vw, 164px); }
.hero-copy { width: min(100%, 980px); margin-inline: auto; text-align: center; }
.eyebrow, .section-index, .access-type, .phase-tag, .phase-status, .closing-label { font-family: var(--font-mono); font-size: .69rem; font-weight: 500; letter-spacing: .09em; text-transform: uppercase; }
.eyebrow { display: flex; align-items: center; justify-content: center; gap: 10px; margin: 0 0 28px; color: #d5cfc7; font-weight: 600; }
.eyebrow span { width: 34px; height: 2px; background: var(--orange); }
.hero h1 { max-width: 980px; margin: 0 auto; font-size: clamp(4.4rem, 8vw, 7.4rem); font-weight: 620; letter-spacing: -.062em; line-height: .86; text-wrap: balance; }
.hero h1 em, .section-heading h2 em, .closing-section h2 em { color: var(--orange); font-family: var(--font-display); font-weight: 400; }
.hero-intro { max-width: 700px; margin: 32px auto 0; color: #e0dad2; font-size: clamp(1.02rem, 1.5vw, 1.22rem); font-weight: 560; line-height: 1.7; text-wrap: pretty; }
.hero-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-top: 38px; }

.hero-art { margin: 0; }
.hero-art-frame { position: relative; padding: 18px; border: 1px solid rgba(255,255,255,.18); background: rgba(255,255,255,.035); transform: rotate(1.5deg); }
.hero-art-frame::after { position: absolute; inset: 8px -9px -9px 8px; z-index: -1; border: 1px solid var(--orange); content: ""; }
.hero-art img { width: 100%; aspect-ratio: 1; border-radius: 2px; object-fit: cover; }
.art-label { position: absolute; z-index: 2; padding: 7px 10px; background: var(--orange); color: var(--ink); font-family: var(--font-mono); font-size: .6rem; letter-spacing: .08em; text-transform: uppercase; }
.art-label-top { top: 34px; right: -18px; transform: rotate(3deg); }
.art-label-side { bottom: 58px; left: -32px; transform: rotate(-4deg); }

.next-wrap { position: relative; z-index: 3; padding-bottom: clamp(56px, 7vw, 84px); }
.next-session { display: grid; grid-template-columns: 1.08fr minmax(430px, .92fr); margin-bottom: 0; overflow: hidden; border: 2px solid var(--orange); border-radius: var(--radius-lg); background: #0d0d0c; box-shadow: 9px 9px 0 rgba(255,79,18,.42), 0 28px 64px rgba(0,0,0,.38); }
.next-info { padding: 34px 38px 38px; }
.next-kicker { display: flex; align-items: center; gap: 10px; margin: 0 0 18px; color: var(--white); font-family: var(--font-mono); font-size: .72rem; font-weight: 600; letter-spacing: .09em; text-transform: uppercase; }
.pulse { position: relative; width: 9px; height: 9px; flex: 0 0 auto; border-radius: 50%; background: var(--orange); }
.pulse::after { position: absolute; inset: -7px; border: 1px solid var(--orange); border-radius: 50%; content: ""; animation: pulse 1.8s ease-out infinite; }
.next-date { display: inline-flex; margin: 0 0 14px; padding: 7px 10px; border: 1px solid rgba(255,79,18,.56); border-radius: 999px; background: rgba(255,79,18,.12); color: #ff7a4d; font-size: .86rem; font-weight: 800; }
.next-session h2 { margin: 0; font-family: var(--font-body); font-size: clamp(2rem, 3.3vw, 2.8rem); font-weight: 760; letter-spacing: -.04em; line-height: 1.03; text-wrap: balance; }
.next-description { max-width: 600px; margin: 14px 0 0; color: #ddd7cf; font-size: .94rem; font-weight: 550; line-height: 1.6; }
.countdown-panel { padding: 28px; border-left: 1px solid #363431; border-radius: 0 var(--radius-lg) var(--radius-lg) 0; background: #161514; }
.countdown { display: grid; grid-template-columns: repeat(4, 1fr); overflow: hidden; border: 1px solid #403d38; border-radius: 12px; }
.countdown div { display: flex; min-width: 0; min-height: 92px; flex-direction: column; align-items: center; justify-content: center; }
.countdown div + div { border-left: 1px solid #403d38; }
.countdown strong { font-family: var(--font-body); font-size: clamp(1.82rem, 2.8vw, 2.5rem); font-weight: 750; font-variant-numeric: tabular-nums; letter-spacing: -.04em; line-height: 1; }
.countdown span { margin-top: 7px; color: #d0cac2; font-family: var(--font-mono); font-size: .64rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; }
.next-actions { display: flex; align-items: center; gap: 20px; margin-top: 18px; }
.text-link { display: inline-flex; min-height: 48px; align-items: center; justify-content: center; padding: 10px 15px; border: 1px solid #625e58; border-radius: var(--radius-sm); background: rgba(255,255,255,.04); color: var(--white); font-size: .77rem; font-weight: 800; text-decoration: none; }
.text-link:hover { border-color: var(--orange); background: rgba(255,79,18,.08); color: var(--orange); }
.live-now { min-height: 92px; margin: 0; border: 1px solid var(--orange); border-radius: 12px; color: var(--orange); font-family: var(--font-display); font-size: 2rem; line-height: 92px; text-align: center; }

.access-section { padding-block: 112px; }
.section-heading { display: grid; grid-template-columns: 1fr minmax(260px, .4fr); gap: 60px; align-items: end; }
.section-index { display: flex; align-items: center; gap: 10px; margin: 0 0 20px; color: var(--orange-dark); }
.section-index::before { width: 18px; height: 2px; flex: 0 0 auto; background: currentColor; content: ""; }
.section-heading h2 { margin: 0; font-size: clamp(3.2rem, 6.5vw, 6rem); font-weight: 620; letter-spacing: -.06em; line-height: .92; text-wrap: balance; }
.section-heading h2 em { font-size: 1.08em; }
.section-heading > p { margin: 0 0 4px; color: var(--ink-soft); font-size: .92rem; line-height: 1.7; }
.access-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; margin-top: 50px; }
.access-card { position: relative; display: flex; min-height: 225px; flex-direction: column; overflow: hidden; padding: 24px; border: 1.5px solid #bbb4a8; border-radius: var(--radius-md); background: var(--white); box-shadow: 3px 3px 0 rgba(25,24,22,.08); cursor: pointer; text-decoration: none; transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease; }
.access-card::before { position: absolute; top: 16px; left: 18px; color: #8d867d; font-family: var(--font-mono); font-size: .58rem; font-weight: 500; letter-spacing: .08em; content: attr(data-index); }
.access-card::after { position: absolute; right: -46px; bottom: -58px; width: 136px; height: 136px; border: 1px solid rgba(25,24,22,.12); border-radius: 50%; content: ""; transition: transform 300ms cubic-bezier(.2,.8,.2,1); }
.access-card:hover::after { transform: scale(1.28); }
.access-card:hover { z-index: 2; border-color: var(--ink); box-shadow: var(--shadow-hard); transform: translate(-4px,-4px); }
.access-card-featured { background: var(--orange); color: var(--ink); border-color: var(--orange); }
.access-card-featured::before { color: #4b1e0e; }
.access-icon { display: grid; width: 38px; height: 38px; place-items: center; align-self: flex-end; border: 1px solid currentColor; border-radius: 50%; font-family: var(--font-mono); font-size: 1rem; }
.access-type { margin-top: auto; color: #6f6961; font-size: .59rem; }
.access-card-featured .access-type { color: #35170d; }
.access-card strong { margin-top: 7px; font-family: var(--font-body); font-size: 1.42rem; font-weight: 720; letter-spacing: -.035em; line-height: 1.08; }
.access-card > span:last-child { margin-top: 8px; color: #5e5851; font-size: .76rem; font-weight: 550; }
.access-card-featured > span:last-child { color: #35170d; }

.schedule-section { padding-block: 112px 120px; border-block: 1px solid var(--line); background-color: var(--paper-deep); background-image: linear-gradient(var(--grid) 1px, transparent 1px), linear-gradient(90deg, var(--grid) 1px, transparent 1px); background-size: 36px 36px; }
.schedule-notes { padding: 18px 0 2px; border-top: 1px solid var(--ink); }
.schedule-notes p { margin: 0; color: var(--ink-soft); font-size: .76rem; }
.schedule-notes p + p { margin-top: 9px; }
.schedule-notes p span { display: inline-block; width: 21px; color: var(--orange-dark); }
.support-live { display: grid; grid-template-columns: auto 1fr auto; gap: 22px; align-items: center; margin-top: 46px; padding: 22px 24px; border: 1px solid var(--ink); border-radius: var(--radius-md); background: var(--ink); color: var(--white); box-shadow: 7px 7px 0 var(--orange); }
.support-live-mark { display: grid; width: 68px; height: 68px; place-items: center; border: 1px solid var(--orange); border-radius: 50%; color: var(--orange); font-family: var(--font-mono); font-size: .66rem; font-weight: 500; letter-spacing: .06em; }
.support-live-kicker { margin: 0 0 3px; color: var(--orange); font-family: var(--font-mono); font-size: .7rem; font-weight: 500; letter-spacing: .05em; text-transform: uppercase; }
.support-live h3 { margin: 0; font-family: var(--font-display); font-size: clamp(1.65rem, 3vw, 2.35rem); font-weight: 400; line-height: 1; }
.support-live div > p:last-child { margin: 8px 0 0; color: #d0cac2; font-size: .8rem; font-weight: 500; }
.support-live-action { display: inline-flex; min-height: 50px; align-items: center; justify-content: center; gap: 8px; padding: 11px 16px; border: 2px solid #8a847c; border-radius: var(--radius-sm); background: rgba(255,255,255,.06); color: var(--white); font-size: .78rem; font-weight: 800; text-decoration: none; white-space: nowrap; box-shadow: 3px 3px 0 rgba(0,0,0,.28); }
.support-live-action:hover { border-color: var(--orange); background: rgba(255,79,18,.1); color: var(--orange); }
.filters { display: flex; flex-wrap: wrap; gap: 8px; margin: 54px 0 0; padding: 0; border: 0; }
.filter { display: inline-flex; min-height: 46px; align-items: center; padding: 10px 18px; border: 1.5px solid #9d968c; border-radius: 999px; background: rgba(255,254,250,.88); font-family: var(--font-mono); font-size: .68rem; font-weight: 600; letter-spacing: .05em; text-transform: uppercase; cursor: pointer; transition: background-color 160ms ease, color 160ms ease, border-color 160ms ease, transform 160ms ease; }
.filter:hover { border-color: var(--ink); transform: translateY(-1px); }
.filter-input:checked + .filter { border-color: var(--ink); background: var(--ink); color: var(--white); }
.filter-input:focus-visible + .filter { outline: 3px solid var(--orange); outline-offset: 4px; }
.filter-summary { margin: 12px 0 0; color: #615b54; font-family: var(--font-mono); font-size: .68rem; font-weight: 500; letter-spacing: .025em; }
.month { display: grid; grid-template-columns: 112px 1fr; gap: 30px; margin-top: 54px; }
.month[hidden] { display: none; }
.month-marker { position: sticky; top: 24px; display: flex; height: 112px; flex-direction: column; align-items: center; justify-content: center; border: 1px solid var(--ink); background: var(--orange); color: var(--ink); box-shadow: 6px 6px 0 var(--ink); transform: rotate(-2deg); }
.month-marker span { font-family: var(--font-display); font-size: 2.4rem; line-height: 1; }
.month-marker strong { margin-top: 7px; font-family: var(--font-mono); font-size: .61rem; letter-spacing: .08em; }
.timeline { position: relative; }
.timeline::before { position: absolute; top: 0; bottom: 0; left: 33px; width: 1px; background: #bbb4a8; content: ""; }
.phase { position: relative; display: grid; grid-template-columns: 68px 1fr; transition: opacity 180ms ease, transform 180ms ease; }
.phase + .phase { margin-top: 18px; }
.phase[hidden] { display: none; }
.phase-number { position: relative; z-index: 1; padding-top: 28px; }
.phase-number span { display: grid; width: 68px; height: 68px; place-items: center; border: 1px solid var(--ink); border-radius: 50%; background: var(--paper-deep); font-family: var(--font-display); font-size: 1.55rem; }
.phase[data-state="next"] .phase-number span { background: var(--orange); color: var(--ink); box-shadow: 4px 4px 0 var(--ink); }
.phase[data-state="done"] .phase-number span { border-color: #aaa397; background: linear-gradient(135deg, transparent 47%, #a19a90 48%, #a19a90 51%, transparent 52%), var(--paper-deep); color: #90897f; }
.phase-content { min-width: 0; padding: 30px 34px 32px 38px; border: 1.5px solid #8f887e; border-left: 5px solid var(--orange); border-radius: 0 var(--radius-md) var(--radius-md) 0; background: rgba(255,254,250,.96); box-shadow: 5px 5px 0 rgba(25,24,22,.1), 0 14px 34px rgba(25,24,22,.07); }
.phase[data-state="next"] .phase-content { border: 2px solid var(--ink); border-left: 7px solid var(--orange); background: var(--white); box-shadow: 8px 8px 0 rgba(25,24,22,.18), 0 18px 38px rgba(25,24,22,.1); }
.phase[data-state="done"] .phase-content { border-color: #aaa397; border-left-color: #918b82; background: #e5e1da; box-shadow: 3px 3px 0 rgba(25,24,22,.08); color: #68625b; }
.phase[data-state="done"] h3,
.phase[data-state="done"] .phase-meta time { text-decoration-color: var(--orange-dark); text-decoration-line: line-through; text-decoration-thickness: 2px; text-decoration-skip-ink: none; }
.phase[data-state="done"] h3 { color: #68625b; }
.phase[data-state="done"] .phase-content > p,
.phase[data-state="done"] .phase-meta time span { color: #746e66; }
.phase[data-state="done"] .phase-tag,
.phase[data-state="done"] .phase-status { border-color: #b8b1a8; background: #d4cfc7; color: #625d56; }
.phase-meta { display: flex; flex-wrap: wrap; align-items: center; gap: 9px; }
.phase-meta time { display: inline-flex; align-items: baseline; gap: 10px; margin-right: auto; }
.phase-meta time strong { font-family: var(--font-body); font-size: 1.28rem; font-weight: 800; letter-spacing: -.035em; }
.phase-meta time span { color: #514b45; font-family: var(--font-mono); font-size: .64rem; font-weight: 600; }
.phase-tag, .phase-status { padding: 6px 9px; border: 1px solid #a9a297; border-radius: 4px; color: #514b45; font-size: .57rem; font-weight: 600; }
.phase-status { border-color: transparent; background: #e1ddd5; color: #4b4640; font-weight: 500; }
.phase[data-state="next"] .phase-status { background: var(--orange); color: var(--ink); }
.phase[data-state="live"] .phase-status { background: var(--green); color: var(--white); }
.phase h3 { margin: 19px 0 0; font-family: var(--font-body); font-size: clamp(1.85rem, 3.1vw, 2.65rem); font-weight: 760; letter-spacing: -.045em; line-height: 1.03; }
.phase h3 small { margin-left: 7px; color: var(--orange-dark); font-family: var(--font-mono); font-size: .58rem; letter-spacing: .04em; text-transform: uppercase; }
.phase-content > p { max-width: 680px; margin: 14px 0 0; color: #393531; font-size: .92rem; font-weight: 550; line-height: 1.6; }
.calendar-link { display: inline-flex; min-height: 48px; align-items: center; justify-content: center; gap: 8px; margin-top: 20px; padding: 11px 15px; border: 1.5px solid var(--ink); border-radius: var(--radius-sm); background: var(--orange); color: var(--ink); font-family: var(--font-body); font-size: .74rem; font-weight: 800; letter-spacing: -.005em; text-decoration: none; text-transform: none; box-shadow: 3px 3px 0 var(--ink); transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease; }
.calendar-link:hover { background: #ff6a36; box-shadow: 5px 5px 0 var(--ink); transform: translate(-2px,-2px); }
.calendar-link:active { box-shadow: 1px 1px 0 var(--ink); transform: translate(1px,1px); }
.calendar-link.is-recording { border-color: var(--ink); background: var(--ink); color: var(--white); box-shadow: 3px 3px 0 var(--orange-dark); }
.calendar-link.is-recording:hover { background: #34322e; box-shadow: 5px 5px 0 var(--orange-dark); }

.team-section { padding-block: 116px 124px; }
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 54px 24px; margin-top: 60px; }
.team-card { min-width: 0; text-align: center; }
.team-photo { position: relative; width: 100%; max-width: 264px; aspect-ratio: 1; margin-inline: auto; overflow: hidden; border: 1px solid var(--ink); border-radius: 50%; background: var(--paper-deep); box-shadow: 7px 7px 0 var(--orange); isolation: isolate; transition: box-shadow 240ms ease, transform 240ms cubic-bezier(.2,.8,.2,1); }
.team-card:nth-child(even) .team-photo { box-shadow: -7px 7px 0 var(--orange); }
.team-card:hover .team-photo { box-shadow: 0 0 0 7px var(--orange); transform: translateY(-5px); }
.team-photo::after { position: absolute; z-index: 1; inset: 48% 0 0; background: linear-gradient(transparent, rgba(15,14,13,.9)); content: ""; pointer-events: none; }
.team-photo img { display: block; width: 100%; height: 100%; object-fit: cover; transition: transform 300ms cubic-bezier(.2,.8,.2,1); }
.team-card:hover .team-photo img { transform: scale(1.035); }
.team-photo h3 { position: absolute; z-index: 2; right: 24px; bottom: 28px; left: 24px; margin: 0; color: var(--white); font-family: var(--font-display); font-size: clamp(1.5rem, 2.3vw, 2.05rem); font-weight: 400; letter-spacing: -.025em; line-height: .92; text-align: center; text-shadow: 0 2px 14px rgba(0,0,0,.35); text-wrap: balance; }
.team-card > p { max-width: 29ch; min-height: 4.2em; margin: 20px auto 0; color: #49443f; font-family: var(--font-body); font-size: .76rem; font-weight: 600; line-height: 1.5; }
.team-card > p strong, .team-card > p span { display: block; }
.team-card > p strong { margin-bottom: 5px; color: var(--orange-dark); font-family: var(--font-mono); font-size: .67rem; font-weight: 500; letter-spacing: .045em; text-transform: uppercase; }

.reveal-pending { opacity: 0; transform: translateY(22px); }
.reveal-visible { opacity: 1; transform: translateY(0); transition: opacity 560ms ease var(--reveal-delay, 0ms), transform 700ms cubic-bezier(.2,.8,.2,1) var(--reveal-delay, 0ms); }

.closing-section { padding-block: 105px; background: var(--orange); color: var(--ink); }
.closing-grid { display: grid; grid-template-columns: .32fr 1fr; gap: 40px; }
.closing-label { margin: 14px 0 0; }
.closing-section h2 { max-width: 920px; margin: 0; font-size: clamp(3rem, 7vw, 6.5rem); font-weight: 500; letter-spacing: -.065em; line-height: .9; }
.closing-section h2 em { color: var(--white); }
.closing-section .button { margin-top: 42px; }

.footer { padding-block: 40px; background: var(--ink); color: var(--white); }
.footer-inner { display: grid; grid-template-columns: 1fr 1fr auto; gap: 32px; align-items: end; }
.footer p { margin: 0; color: #b8b1a9; font-size: .76rem; font-weight: 500; }
.footer p strong, .footer p span { display: block; }
.footer p strong { color: var(--white); font-family: var(--font-display); font-size: 1.25rem; font-weight: 400; }
.footer a { display: inline-flex; min-height: 44px; align-items: center; color: var(--orange); font-family: var(--font-mono); font-size: .65rem; text-decoration: none; text-transform: uppercase; }

.error-page { display: grid; min-height: 100vh; place-items: center; }
.error-index { color: var(--ink); }
.error-title { margin: 0; overflow-wrap: anywhere; font-family: var(--font-display); font-size: clamp(2.8rem, 10vw, 8rem); font-weight: 400; line-height: .9; }
.error-action { margin-top: 32px; }

@keyframes pulse { from { opacity: .75; transform: scale(.55); } to { opacity: 0; transform: scale(1.25); } }

@media (max-width: 960px) {
  .hero-grid { padding-block: 72px 112px; }
  .hero-copy { max-width: 760px; }
  .hero-art { display: none; }
  .next-session { grid-template-columns: 1fr; }
  .countdown-panel { border-top: 1px solid #363431; border-left: 0; border-radius: 0 0 var(--radius-lg) var(--radius-lg); }
  .access-grid { grid-template-columns: repeat(2, 1fr); }
  .access-grid .access-card:last-child { grid-column: 1 / -1; min-height: 150px; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 961px) {
  .team-card:nth-child(4n + 2), .team-card:nth-child(4n + 4) { transform: translateY(30px); }
  .team-grid { margin-bottom: 30px; }
  .access-grid { gap: 10px; }
  .access-card { padding: 17px; }
  .access-card::before { top: 14px; left: 16px; }
}

@media (max-width: 680px) {
  .container { width: min(100% - 28px, 1180px); }
  .nav { min-height: 76px; }
  .brand-mark { width: 46px; height: 46px; }
  .brand-copy { font-size: 1.03rem; }
  .nav-link { min-height: 44px; justify-content: center; gap: 5px; padding-inline: 11px; border: 1px solid #514e49; border-radius: 999px; font-size: .64rem; letter-spacing: .01em; }
  .nav-link-prefix { display: none; }
  .nav-link svg { width: 15px; }
  .hero-grid { display: block; padding-block: 42px 58px; }
  .eyebrow { margin-bottom: 20px; font-size: .7rem; font-weight: 500; }
  .hero h1 { max-width: 100%; font-size: clamp(3.05rem, 15.2vw, 4rem); font-weight: 650; line-height: .88; }
  .hero-intro { margin-top: 24px; font-size: .96rem; font-weight: 560; line-height: 1.65; }
  .hero-actions { align-items: stretch; flex-direction: column; gap: 8px; margin-top: 28px; }
  .hero-actions .button-ghost { min-height: 50px; border-color: rgba(255,255,255,.46); background: rgba(255,255,255,.07); }
  .hero-art { display: none; }
  .next-wrap { padding-bottom: 48px; }
  .next-session { margin-bottom: 0; border-radius: 20px; box-shadow: 6px 6px 0 rgba(255,79,18,.4), 0 22px 46px rgba(0,0,0,.34); }
  .next-info { padding: 25px 20px 23px; }
  .next-kicker { margin-bottom: 12px; font-size: .7rem; }
  .next-session h2 { font-size: 2rem; }
  .next-description { margin-top: 10px; font-size: .88rem; line-height: 1.6; }
  .countdown-panel { padding: 18px; border-radius: 0 0 20px 20px; }
  .countdown div { min-height: 68px; }
  .countdown strong { font-size: 1.72rem; }
  .countdown span { margin-top: 5px; font-size: .66rem; }
  .next-actions { align-items: stretch; flex-direction: column; gap: 4px; margin-top: 14px; }
  .text-link { display: flex; min-height: 44px; align-items: center; justify-content: center; text-align: center; }
  .access-section { padding-block: 84px 88px; }
  .section-heading { grid-template-columns: 1fr; gap: 24px; }
  .section-heading h2 { font-size: clamp(3rem, 15vw, 4.5rem); }
  .access-grid { grid-template-columns: 1fr; gap: 8px; margin-top: 34px; }
  .access-card { display: grid; min-height: 104px; grid-template-columns: 1fr auto; grid-template-areas: "type icon" "title icon" "description icon"; column-gap: 16px; padding: 17px; }
  .access-card::before { top: 14px; right: 68px; left: auto; }
  .access-card::after { right: -72px; bottom: -84px; }
  .access-icon { grid-area: icon; align-self: center; }
  .access-type { grid-area: type; align-self: end; margin: 0; font-size: .67rem; }
  .access-card strong { grid-area: title; margin-top: 2px; font-size: 1.42rem; }
  .access-card > span:last-child { grid-area: description; margin-top: 2px; }
  .schedule-section { padding-block: 84px 90px; }
  .schedule-heading { gap: 32px; }
  .schedule-notes p { font-size: .8rem; line-height: 1.55; }
  .support-live { grid-template-columns: 1fr; gap: 15px; margin-top: 34px; padding: 20px; box-shadow: 5px 5px 0 var(--orange); }
  .support-live-mark { width: auto; height: auto; justify-self: start; padding: 6px 10px; border-radius: 999px; }
  .support-live-kicker { font-size: .7rem; }
  .support-live h3 { font-size: 1.85rem; line-height: 1.04; }
  .support-live div > p:last-child { font-size: .84rem; line-height: 1.55; }
  .support-live-action { width: 100%; min-height: 52px; font-size: .8rem; }
  .filters { margin-top: 40px; }
  .filter { flex: 1 1 auto; justify-content: center; padding-inline: 12px; font-size: .7rem; }
  .filter-summary { margin-top: 13px; font-size: .72rem; }
  .month { grid-template-columns: 1fr; gap: 28px; margin-top: 48px; }
  .month-marker { position: static; width: 76px; height: 76px; }
  .month-marker span { font-size: 1.65rem; }
  .timeline::before { left: 21px; }
  .phase { grid-template-columns: 44px 1fr; }
  .phase-number { padding-top: 23px; }
  .phase-number span { width: 44px; height: 44px; font-size: 1.08rem; }
  .phase-content { padding: 22px 17px 24px 20px; border-left-width: 4px; box-shadow: 4px 4px 0 rgba(25,24,22,.1), 0 12px 24px rgba(25,24,22,.06); }
  .phase[data-state="next"] .phase-content { border-left-width: 5px; box-shadow: 6px 6px 0 rgba(25,24,22,.17), 0 14px 30px rgba(25,24,22,.09); }
  .phase-meta { align-items: flex-start; }
  .phase-meta time { width: 100%; }
  .phase-meta time span { color: #5e5851; font-size: .68rem; font-weight: 500; }
  .phase-tag, .phase-status { font-size: .66rem; font-weight: 500; }
  .phase h3 { margin-top: 20px; font-size: clamp(1.65rem, 8vw, 2rem); }
  .phase h3 small { display: block; margin: 9px 0 0; }
  .phase-content > p { font-size: .88rem; }
  .calendar-link { width: 100%; min-height: 50px; margin-top: 18px; font-size: .78rem; }
  .team-section { padding-block: 88px; }
  .team-grid { grid-template-columns: 1fr; gap: 18px; margin-top: 42px; }
  .team-card { display: grid; grid-template-columns: clamp(108px, 34vw, 136px) minmax(0, 1fr); gap: 18px; align-items: center; text-align: left; }
  .team-photo { width: 100%; max-width: 136px; margin: 0; box-shadow: 4px 4px 0 var(--orange); }
  .team-card:nth-child(even) .team-photo { box-shadow: 4px 4px 0 var(--orange); }
  .team-card:hover .team-photo { box-shadow: 0 0 0 4px var(--orange); transform: none; }
  .team-photo h3 { right: 10px; bottom: 14px; left: 10px; font-size: clamp(.98rem, 4.4vw, 1.18rem); }
  .team-card > p { max-width: 30ch; min-height: 0; margin: 0; font-size: .78rem; line-height: 1.5; text-align: left; }
  .team-card > p strong { margin-bottom: 6px; font-size: .7rem; }
  .closing-section { padding-block: 78px; }
  .closing-grid { grid-template-columns: 1fr; gap: 28px; }
  .closing-section h2 { font-size: clamp(3.1rem, 15vw, 4.7rem); }
  .footer-inner { grid-template-columns: 1fr; align-items: start; }
}

@media (max-width: 360px) {
  .nav { min-height: 72px; }
  .brand { gap: 9px; }
  .brand-mark { width: 40px; height: 40px; }
  .brand-copy { font-size: .93rem; }
  .nav-link { padding-inline: 10px; }
  .hero-grid { padding-top: 38px; }
  .next-info { padding-inline: 17px; }
  .countdown-panel { padding-inline: 14px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal-pending, .reveal-visible { opacity: 1; transform: none; }
}

@media (forced-colors: active) {
  :focus-visible { outline-color: Highlight; }
  .button, .filter, .access-card, .phase-content, .phase-number span { border: 1px solid ButtonText; }
}
