/* ============ FOUNDATION ============ */
:root {
  --bg: #070b14;
  --bg-soft: #0c1424;
  --bg-card: #111a2c;
  --bg-elevated: #162238;
  --text: #f0f0f0;
  --text-soft: #b4bcc8;
  --text-mute: #6e7a8c;
  --text-dim: #3a4458;
  --accent: #ff4d00;
  --accent-soft: #ff7a40;
  --accent-glow: rgba(255,77,0,0.35);
  --blue: #3d7cff;
  --blue-soft: #6a9dff;
  --blue-glow: rgba(61,124,255,0.28);
  --silver: #c8c8c8;
  --silver-dim: #888;
  --line: rgba(255,255,255,0.07);
  --line-strong: rgba(255,255,255,0.18);
  --line-orange: rgba(255,77,0,0.35);
  --line-blue: rgba(61,124,255,0.35);
  --ease-quiet: cubic-bezier(.22,1,.36,1);
  --ease-precise: cubic-bezier(.4,0,.2,1);
  --ease-emphasis: cubic-bezier(.16,1,.3,1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { background: var(--bg); color: var(--text); }
body {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 15px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  cursor: none;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: none; border: none; background: none; color: inherit; }

::selection { background: var(--accent); color: var(--bg); }

/* ============ TYPE ============ */
.display, h1, h2, h3, h4 {
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  line-height: 1.0;
  letter-spacing: -0.01em;
}
.italic-accent {
  font-family: 'EB Garamond', serif;
  font-style: italic;
  font-weight: 400;
  color: var(--silver);
}
.label {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--silver-dim);
}
.label-accent { color: var(--accent); }
.mono {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.04em;
}
.silver-text {
  background: linear-gradient(180deg, #f5f5f5 0%, #c0c0c0 50%, #707070 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ============ NOISE OVERLAY ============ */
.noise-overlay {
  position: fixed; inset: 0; pointer-events: none; z-index: 9999;
  opacity: 0.06; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 1 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  animation: noise 18s steps(8) infinite;
}
@keyframes noise {
  0%,100% { transform: translate(0,0); }
  20%     { transform: translate(-10%, 5%); }
  50%     { transform: translate(8%, -3%); }
  80%     { transform: translate(-5%, 8%); }
}

/* ============ CURSOR ============ */
.cursor-dot, .cursor-ring {
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9998;
  transform: translate(-50%, -50%);
  mix-blend-mode: difference;
}
.cursor-dot {
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
  transition: width 0.3s var(--ease-quiet), height 0.3s var(--ease-quiet), opacity 0.3s;
}
.cursor-ring {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,77,0,0.5);
  border-radius: 50%;
  transition: width 0.4s var(--ease-quiet), height 0.4s var(--ease-quiet), border-color 0.3s;
}
.cursor-dot.expand { width: 0; height: 0; opacity: 0; }
.cursor-ring.expand { width: 60px; height: 60px; border-color: var(--accent); }
@media (pointer: coarse) {
  body { cursor: auto; }
  .cursor-dot, .cursor-ring { display: none; }
  button, a { cursor: pointer; }
}

/* ============ NAV ============ */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.3rem 2rem;
  display: flex; align-items: center; justify-content: space-between;
  backdrop-filter: blur(20px) saturate(1.2);
  -webkit-backdrop-filter: blur(20px) saturate(1.2);
  background: rgba(7,11,20,0.78);
  border-bottom: 1px solid var(--line);
  padding-top: calc(1.3rem + env(safe-area-inset-top));
}
#history, #officers, #members, #events, #podiums, #calendar, #join, #values, #activities, #services, #contact {
  scroll-margin-top: 5.5rem;
}
.nav-menu a[aria-current="page"] { color: var(--accent); }
.nav-menu a[aria-current="page"]::after { transform: scaleX(1); }
.nav-brand {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 17px;
  letter-spacing: 0.18em;
  display: flex; align-items: center; gap: 0.7rem;
  text-transform: uppercase;
  color: inherit;
}
.brand-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1.05;
}
.brand-name { font-weight: 600; }
.brand-sub {
  font-weight: 400;
  font-size: 8px;
  letter-spacing: 0.28em;
  opacity: 0.7;
}
.nav-brand .dot {
  width: 7px; height: 7px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--accent-glow);
}
.nav-menu {
  display: flex; gap: 2.5rem;
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--text-soft);
  font-weight: 500;
}
.nav-menu a {
  position: relative;
  transition: color 0.3s var(--ease-quiet);
  padding: 0.3rem 0;
}
.nav-menu a:hover { color: var(--accent); }
.nav-menu a::after {
  content: ''; position: absolute; left: 0; bottom: -2px;
  width: 100%; height: 1px; background: var(--accent);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s var(--ease-quiet);
}
.nav-menu a:hover::after { transform: scaleX(1); }
.nav-right { display: flex; align-items: center; gap: 2rem; }
.nav-meta {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--text-mute);
  letter-spacing: 0.08em;
}
.nav-cta {
  font-family: 'Inter', sans-serif;
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  padding: 0.75rem 1.4rem;
  border: 1px solid var(--accent);
  color: var(--accent);
  background: transparent;
  transition: all 0.35s var(--ease-quiet);
  display: flex; align-items: center; justify-content: center;
  min-width: 11.5rem;
  position: relative;
  overflow: hidden;
}
.nav-cta::before {
  content: ''; position: absolute; inset: 0;
  background: var(--accent);
  transform: translateY(101%);
  transition: transform 0.4s var(--ease-quiet);
  z-index: -1;
}
.nav-cta:hover { color: var(--bg); }
.nav-cta:hover::before { transform: translateY(0); }

.nav-join-mobile { display: none; }

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  position: relative;
  z-index: 120;
}
.nav-toggle span {
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--text);
  transition: transform 0.35s var(--ease-quiet), opacity 0.3s;
}
.nav.is-open .nav-toggle span:first-child { transform: translateY(3.75px) rotate(45deg); }
.nav.is-open .nav-toggle span:last-child { transform: translateY(-3.75px) rotate(-45deg); }

@media (max-width: 900px) {
  .nav {
    padding: 0.7rem 1rem;
    padding-top: calc(0.7rem + env(safe-area-inset-top));
  }
  .nav-meta { display: none; }
  .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .nav-menu {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: auto;
    width: min(62vw, 220px);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 0.05rem;
    padding: calc(4.2rem + env(safe-area-inset-top)) 1rem 1.6rem;
    background: #000;
    border-left: 1px solid rgba(255,255,255,0.22);
    box-shadow: -18px 0 40px rgba(0,0,0,0.7);
    transform: translateX(100%);
    transition: transform 0.45s var(--ease-quiet);
    z-index: 110;
    font-size: 13px;
    letter-spacing: 0.08em;
  }
  .nav-menu a {
    min-height: 44px;
    display: flex;
    align-items: center;
  }
  .nav.is-open .nav-menu { transform: translateX(0); }
  .nav-join-mobile {
    display: flex;
    align-items: center;
    justify-content: center;
    align-self: stretch;
    width: 100%;
    box-sizing: border-box;
    color: var(--bg);
    background: var(--accent);
    border: 1px solid var(--accent);
    padding: 0.85rem 1.1rem;
    margin-top: 0.55rem;
    line-height: 1.15;
    text-align: center;
    transition: transform 0.15s var(--ease-quiet), filter 0.15s var(--ease-quiet);
  }
  .nav-join-mobile:hover { color: var(--bg); }
  .nav-join-mobile:active {
    transform: scale(0.97);
    filter: brightness(0.86);
  }
  .nav-join-mobile::after { display: none; }
  body.nav-locked { overflow: hidden; }
  body.nav-locked::before {
    content: '';
    position: fixed;
    inset: 0;
    z-index: 99;
    background: rgba(0,0,0,0.45);
    pointer-events: none;
  }
}

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 8rem 2rem 3rem;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 72% 36%, rgba(255,77,0,0.14), transparent 52%),
    radial-gradient(ellipse at 18% 78%, rgba(61,124,255,0.12), transparent 48%),
    var(--bg);
}
.hero-grid {
  position: relative; z-index: 2;
  max-width: 1500px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 4rem;
  min-height: calc(100vh - 11rem);
  align-items: end;
}
.hero-left { display: flex; flex-direction: column; justify-content: flex-end; }
.hero-label-row {
  display: flex; align-items: center; gap: 1.5rem;
  margin-bottom: 2.5rem;
}
.hero-label-row .divider {
  flex: 0 0 80px; height: 1px; background: var(--line-strong);
}
.hero-title {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: clamp(60px, 9vw, 148px);
  line-height: 0.88;
  letter-spacing: -0.025em;
  text-transform: uppercase;
  margin-bottom: 2.5rem;
}
.hero-title .line-mask { overflow: hidden; display: block; }
.hero-title .line {
  display: block;
  transform: translateY(110%);
  will-change: transform;
  transition: transform 1.1s var(--ease-quiet);
}
.hero-title .line.is-in { transform: none; }
.hero-title .word-accent {
  color: var(--accent);
}
.hero-title .italic-accent {
  font-size: 0.85em;
  margin-left: 0.2em;
}
.hero-sub {
  font-size: 16px;
  line-height: 1.65;
  color: var(--text-soft);
  max-width: 460px;
  margin-bottom: 3rem;
  font-weight: 300;
}
.hero-sub strong { color: var(--text); font-weight: 500; }
.hero-cta-row {
  display: flex; gap: 1.5rem; align-items: center;
  margin-bottom: 3rem;
}
.btn-primary {
  font-family: 'Inter', sans-serif;
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  padding: 1.1rem 2rem;
  background: var(--accent);
  color: var(--bg);
  border: 1px solid var(--accent);
  display: flex; align-items: center; gap: 0.8rem;
  transition: all 0.35s var(--ease-quiet);
  position: relative;
  overflow: hidden;
}
.btn-primary::before {
  content: ''; position: absolute; inset: 0;
  background: var(--bg);
  transform: translateY(101%);
  transition: transform 0.4s var(--ease-quiet);
  z-index: 0;
}
.btn-primary span { position: relative; z-index: 1; }
.btn-primary:hover { color: var(--accent); }
.btn-primary:hover::before { transform: translateY(0); }
.btn-primary .arrow { transition: transform 0.3s var(--ease-quiet); display: inline-block; }
.btn-primary:hover .arrow { transform: translateX(5px); }
.btn-ghost {
  font-family: 'Inter', sans-serif;
  font-size: 12px; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase;
  padding: 1.1rem 1.5rem;
  color: var(--text-soft);
  border: 1px solid var(--line-strong);
  background: transparent;
  display: flex; align-items: center; gap: 0.8rem;
  transition: all 0.35s var(--ease-quiet);
}
.btn-ghost:hover { color: var(--text); border-color: var(--text); }

.hero-meta {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
  max-width: 640px;
}
.hero-meta .stat {
  display: flex; flex-direction: column; gap: 0.4rem;
}
.hero-meta .stat-num {
  font-family: 'Oswald', sans-serif;
  font-size: 30px;
  font-weight: 500;
  color: var(--text);
  line-height: 1;
}
.hero-meta .stat-num .unit {
  font-size: 14px; color: var(--text-mute); margin-left: 2px;
}
.hero-meta .stat-label {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-mute);
}

/* Hero right: coach showcase: 11 years in 4 tiles */
.hero-right {
  display: flex; flex-direction: column; gap: 1rem;
  justify-self: end;
  width: 100%;
  max-width: 460px;
}
.hero-coaches-header {
  display: flex; justify-content: space-between; align-items: baseline;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid var(--line-strong);
}
.hero-coaches-header .title {
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.hero-coaches-header .count {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--blue);
  letter-spacing: 0.08em;
}
.hero-coach-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
}
.hero-coach {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--bg-card);
}
.hero-coach img {
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(100%) contrast(1.2) brightness(0.85);
  transition: filter 0.6s var(--ease-quiet), transform 0.6s var(--ease-quiet);
}
.hero-coach:hover img {
  filter: grayscale(0%) contrast(1.05) brightness(1);
  transform: scale(1.06);
}
.hero-coach::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(10,10,10,0.95) 100%);
  pointer-events: none;
}
.hero-coach-info {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 0.7rem 0.8rem;
  z-index: 2;
}
.hero-coach-name {
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.hero-coach-spec {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  color: var(--text-mute);
  letter-spacing: 0.05em;
  margin-top: 0.2rem;
  text-transform: uppercase;
}
.hero-coach-num {
  position: absolute; top: 0.5rem; left: 0.6rem;
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  color: var(--blue);
  letter-spacing: 0.08em;
  z-index: 2;
}

.hero-scroll {
  position: absolute;
  bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex; flex-direction: column; align-items: center; gap: 0.8rem;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.15em;
  color: var(--text-mute);
  text-transform: uppercase;
}
.hero-scroll .line-v {
  width: 1px; height: 50px;
  background: linear-gradient(180deg, var(--accent), transparent);
  animation: scrollLine 2.2s var(--ease-quiet) infinite;
}
@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 3rem; }
  .hero-right { max-width: 100%; }
  .hero-meta { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .hero { padding: 7rem 1.2rem 3rem; }
  .hero-coach-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-cta-row { flex-direction: column; align-items: stretch; }
  .btn-primary, .btn-ghost { justify-content: center; }
}

/* ============ SECTION COMMONS ============ */
.section {
  position: relative;
  padding: 7rem 2rem;
  border-bottom: 1px solid var(--line);
}
.section-inner { max-width: 1500px; margin: 0 auto; }
.section-header {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  margin-bottom: 5rem;
  align-items: end;
}
.section-id {
  display: flex; flex-direction: column; gap: 0.8rem;
}
.section-id .num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: var(--blue);
  letter-spacing: 0.1em;
}
.section-id .label-line {
  display: flex; align-items: center; gap: 0.8rem;
}
.section-id .label-line .bar { width: 24px; height: 1px; background: var(--accent); }
.section-title {
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  font-size: clamp(38px, 5.5vw, 78px);
  line-height: 0.95;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}
.section-title .italic-accent { font-size: 0.8em; }
.section-intro {
  font-size: 15px;
  color: var(--text-soft);
  line-height: 1.65;
  max-width: 540px;
  margin-top: 1.5rem;
}
@media (max-width: 900px) {
  .section { padding: 5rem 1.5rem; }
  .section-header { grid-template-columns: 1fr; gap: 2rem; margin-bottom: 3rem; }
}

/* ============ MANIFESTO (scrub blur) ============ */
.manifesto {
  padding: 9rem 2rem;
  border-bottom: 1px solid var(--line);
  position: relative;
}
.manifesto::before {
  content: ''; position: absolute; top: 0; left: 50%;
  width: 1px; height: 60px;
  background: linear-gradient(180deg, transparent, var(--accent));
}
.manifesto-inner {
  max-width: 1100px; margin: 0 auto;
  text-align: left;
}
.manifesto-label {
  display: flex; align-items: center; gap: 1rem;
  margin-bottom: 3rem;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--accent);
  text-transform: uppercase;
}
.manifesto-label .dot {
  width: 6px; height: 6px; background: var(--accent); border-radius: 50%;
}
.manifesto-text {
  font-family: 'Oswald', sans-serif;
  font-weight: 300;
  font-size: clamp(28px, 3.8vw, 54px);
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--text);
}
.manifesto-text .word {
  display: inline-block;
  opacity: 0.18;
  filter: blur(12px) brightness(30%);
  will-change: filter, opacity;
  margin-right: 0.18em;
}
.manifesto-text .word.accent { color: var(--accent); }
.manifesto-text .italic-accent {
  font-size: 1em;
  color: var(--silver);
}
.manifesto-sig {
  display: flex; align-items: center; gap: 1rem;
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}
.manifesto-sig .name {
  font-family: 'Oswald', sans-serif;
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.manifesto-sig .title {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--text-mute);
  letter-spacing: 0.08em;
}
@media (max-width: 700px) {
  .manifesto { padding: 5rem 1.5rem; }
}

/* ============ COACH TEAM ============ */
.coach-team {
  padding: 7rem 2rem;
  border-bottom: 1px solid var(--line);
}
.coach-team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.coach-card {
  background: var(--bg);
  padding: 2rem 1.5rem 2.5rem;
  display: flex; flex-direction: column; gap: 1.2rem;
  position: relative;
  transition: background 0.4s var(--ease-quiet);
}
.coach-card:hover { background: var(--bg-soft); }
.coach-card-portrait {
  aspect-ratio: 4/5;
  overflow: hidden;
  position: relative;
  background: var(--bg-card);
}
.coach-card-portrait img {
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(100%) contrast(1.2) brightness(0.85);
  transition: filter 0.6s var(--ease-quiet), transform 0.8s var(--ease-quiet);
}
.coach-card:hover .coach-card-portrait img {
  filter: grayscale(0%) contrast(1.05);
  transform: scale(1.04);
}
.coach-card-portrait::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(10,10,10,0.5) 100%);
  pointer-events: none;
}
.coach-card-num {
  position: absolute; top: 0.8rem; left: 0.9rem;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  color: var(--blue);
  letter-spacing: 0.1em;
  z-index: 2;
}
.coach-card-name {
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  font-size: 22px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-top: 0.5rem;
}
.coach-card-spec {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--text-mute);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: -0.6rem;
}
.coach-card-bio {
  font-size: 13px;
  color: var(--text-soft);
  line-height: 1.6;
}
.coach-card-meta {
  display: flex; justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  color: var(--text-mute);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.coach-card-meta .exp { color: var(--accent); }

.member-badge {
  position: static;
  align-self: flex-start;
  z-index: 2;
  background: var(--accent);
  color: var(--bg);
  padding: 4px 8px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 0.15rem 0 0.05rem;
}
.member-card {
  gap: 0.35rem;
  cursor: pointer;
}
.member-card .coach-card-portrait { margin-bottom: 0.55rem; }
.member-card .coach-card-name { margin-top: 0; }
.member-meet {
  margin-top: auto;
  align-self: stretch;
  min-height: 40px;
  padding: 0.45rem 0.7rem;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid var(--accent);
  background: transparent;
  transition: color 0.2s, background 0.2s, transform 0.15s, filter 0.15s;
}
.member-meet:hover {
  color: var(--bg);
  background: var(--accent);
}
.member-meet:active {
  transform: scale(0.98);
  filter: brightness(0.9);
}
.member-quote {
  font-family: 'EB Garamond', serif;
  font-style: italic;
  font-size: 15px;
  color: var(--text-soft);
  line-height: 1.35;
  margin: 0.15rem 0 0;
  min-height: calc(15px * 1.35 * 2);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.member-quote p { margin: 0; }
.member-quote:empty,
.member-quote:not(:has(p:not(:empty))) { visibility: hidden; }
.member-results[hidden] { display: none; }
.member-card .coach-card-spec { margin-top: 0; }
.member-batch {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--text-mute);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 0;
  line-height: 1.45;
}
.member-card--empty { opacity: 0.72; }
.member-card[hidden] { display: none; }
.member-card.is-pressed { background: var(--bg-soft); }
.members-grid[hidden] { display: none; }
.founders-block {
  margin: 3.2rem 0 0;
}
.founders-block[hidden] { display: none; }
.founders-kicker {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 0.45rem;
}
.founders-title {
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  font-size: clamp(28px, 4vw, 38px);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: 0.45rem;
}
.founders-intro {
  font-family: 'EB Garamond', serif;
  font-style: italic;
  font-size: 16px;
  color: var(--text-soft);
  margin-bottom: 1.4rem;
}
.founders-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.member-card--founder {
  background: var(--bg);
  padding: 1.05rem 1rem 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  cursor: pointer;
  transition: background 0.4s var(--ease-quiet);
}
.member-card--founder:hover { background: var(--bg-soft); }
.member-card--founder .coach-card-name {
  font-size: 16px;
  margin: 0;
}
.member-card--founder .member-quote,
.member-card--founder .member-gallery,
.member-card--founder .member-results { display: none; }
.member-modal-photo[hidden] { display: none; }
.member-modal-head:has(.member-modal-photo[hidden]) {
  grid-template-columns: minmax(0, 1fr);
}
.member-search {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  max-width: 420px;
  margin: 0 0 2rem;
}
.member-search-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-mute);
}
.member-search input {
  width: 100%;
  min-height: 48px;
  padding: 0.75rem 1rem;
  border: 1px solid var(--line-strong);
  background: var(--bg-soft);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 16px;
}
.member-search input:focus {
  outline: none;
  border-color: var(--accent);
}
.member-search-empty {
  font-family: 'EB Garamond', serif;
  font-style: italic;
  color: var(--text-soft);
  margin: -1rem 0 1.5rem;
}

.podiums { padding-top: 7rem; padding-bottom: 7rem; }
.podium-select {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  max-width: 320px;
  margin: 0 0 2rem;
}
.podium-select span {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-mute);
}
.podium-select select {
  width: 100%;
  min-height: 48px;
  padding: 0.7rem 1rem;
  border: 1px solid var(--line-strong);
  background: var(--bg-soft);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 16px;
}
.podium-select select:focus {
  outline: none;
  border-color: var(--accent);
}
.podium-row[hidden] { display: none; }
.row-tag { color: var(--blue); }
@media (max-width: 1024px) {
  .coach-team-grid { grid-template-columns: repeat(2, 1fr); }
  .founders-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .coach-team-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ============ CURRICULUM ============ */
.curriculum-rows {
  border-top: 1px solid var(--line-strong);
}
.curr-row {
  position: relative;
  display: grid;
  grid-template-columns: 80px 2.2fr 1fr 1fr 1fr 60px;
  gap: 2rem;
  align-items: center;
  padding: 2.5rem 1.5rem 2.5rem 2rem;
  border-bottom: 1px solid var(--line);
  width: 100%;
  min-height: 44px;
  text-align: left;
  font: inherit;
  color: inherit;
  cursor: none;
  outline: none;
  -webkit-tap-highlight-color: transparent;
  transition: background 0.5s var(--ease-quiet);
}
.curr-row--story {
  grid-template-columns: 120px 1fr 60px;
}
.curr-row--story .curr-num {
  white-space: nowrap;
}
.curr-row::before {
  content: '';
  position: absolute; left: 0; top: 0;
  width: 2px; height: 0;
  background: var(--accent);
  transition: height 0.6s var(--ease-quiet);
}
.curr-row:active::before,
.curr-row:focus-visible::before,
.curr-row.is-pressed::before { height: 100%; }
.curr-row:active,
.curr-row:focus-visible,
.curr-row.is-pressed { background: rgba(255,77,0,0.025); }
.curr-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: var(--text-mute);
  letter-spacing: 0.08em;
  transition: color 0.4s var(--ease-quiet);
}
.curr-row:active .curr-num,
.curr-row:focus-visible .curr-num,
.curr-row.is-pressed .curr-num { color: var(--accent); }
.curr-title-block { display: flex; flex-direction: column; gap: 0.5rem; }
.curr-title {
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  font-size: 38px;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  line-height: 1;
  transition: color 0.4s var(--ease-quiet);
}
.curr-row:active .curr-title,
.curr-row:focus-visible .curr-title,
.curr-row.is-pressed .curr-title { color: var(--accent); }
.curr-tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--text-mute);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.curr-detail {
  display: flex; flex-direction: column; gap: 0.4rem;
}
.curr-detail .k {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  color: var(--text-mute);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.curr-detail .v {
  font-family: 'Oswald', sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: var(--text);
}
.curr-arrow {
  justify-self: end;
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  transition: all 0.4s var(--ease-quiet);
}
.curr-row:active .curr-arrow,
.curr-row:focus-visible .curr-arrow,
.curr-row.is-pressed .curr-arrow {
  background: var(--accent);
  border-color: var(--accent);
  transform: rotate(-45deg);
}
.curr-arrow svg { stroke: var(--text); transition: stroke 0.4s; }
.curr-row:active .curr-arrow svg,
.curr-row:focus-visible .curr-arrow svg,
.curr-row.is-pressed .curr-arrow svg { stroke: var(--bg); }

@media (hover: hover) and (pointer: fine) {
  .curr-row:hover::before { height: 100%; }
  .curr-row:hover { background: rgba(255,77,0,0.025); }
  .curr-row:hover .curr-num,
  .curr-row:hover .curr-title { color: var(--accent); }
  .curr-row:hover .curr-arrow {
    background: var(--accent);
    border-color: var(--accent);
    transform: rotate(-45deg);
  }
  .curr-row:hover .curr-arrow svg { stroke: var(--bg); }
  .curr-row:hover .see-more { color: var(--accent); }
}

@media (max-width: 1024px) {
  .curr-row,
  .curr-row--story { grid-template-columns: 88px 1fr 44px; gap: 1rem; padding: 2rem 1rem; }
  .curr-detail { display: none; }
  .curr-title { font-size: 28px; }
}

/* Featured track deep-dive - sticky two-col */
.curr-deepdive {
  padding: 8rem 2rem;
  border-bottom: 1px solid var(--line);
  background: var(--bg-soft);
}
.curr-deepdive + .curr-deepdive {
  background: var(--bg);
}
.curr-deepdive-grid {
  max-width: 1500px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 5rem;
  align-items: start;
  min-width: 0;
}
.curr-sticky-left {
  position: sticky;
  top: 100px;
  display: flex; flex-direction: column; gap: 2rem;
}
.curr-sticky-left .label-row {
  display: flex; gap: 1rem; align-items: center;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.15em;
  color: var(--accent);
  text-transform: uppercase;
}
.curr-sticky-left .label-row .bar { width: 30px; height: 1px; background: var(--accent); }
.curr-sticky-title {
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  font-size: clamp(48px, 6vw, 88px);
  line-height: 0.92;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}
.curr-sticky-title .accent { color: var(--accent); }
.curr-sticky-desc {
  font-size: 15px;
  color: var(--text-soft);
  line-height: 1.7;
  max-width: 460px;
}
.curr-sticky-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
  max-width: 460px;
}
.curr-sticky-stats .stat-row {
  display: flex; flex-direction: column; gap: 0.3rem;
}
.curr-sticky-stats .stat-row .v {
  font-family: 'Oswald', sans-serif;
  font-size: 26px;
  color: var(--text);
  font-weight: 500;
}
.curr-sticky-stats .stat-row .k {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  color: var(--text-mute);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.curr-sticky-cta {
  margin-top: 1rem;
}

.curr-scroll-right {
  display: flex; flex-direction: column; gap: 3rem;
  min-width: 0;
}
.curr-module {
  display: flex; flex-direction: column; gap: 1rem;
  min-width: 0;
}
.curr-module-head {
  display: flex; align-items: center; gap: 1rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid var(--line);
}
.curr-module-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--accent);
  letter-spacing: 0.1em;
}
.curr-module-title {
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  font-size: 22px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.curr-module-body {
  font-size: 14px;
  color: var(--text-soft);
  line-height: 1.65;
}
.tile-carousel { margin-top: 0.4rem; min-width: 0; max-width: 100%; overflow: hidden; }
.tile-carousel-viewport {
  display: flex;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  width: 100%;
  max-width: 100%;
}
.tile-carousel-viewport::-webkit-scrollbar { display: none; }
.tile-carousel-track { display: contents; }
.tile-slide {
  flex: 0 0 100%;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  scroll-snap-align: start;
  margin: 0;
  box-sizing: border-box;
}
.tile-pair {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  min-width: 0;
  max-width: 100%;
}
.tile-frame {
  aspect-ratio: 16 / 10;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  overflow: hidden;
  background: var(--bg-card);
  position: relative;
}
.tile-frame .ph {
  max-width: 100%;
}
.tile-frame img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
}
.tile-slide-caption {
  font-family: 'EB Garamond', serif;
  font-style: italic;
  font-size: 15px;
  color: var(--text-soft);
  line-height: 1.4;
  margin-top: 0.7rem;
  min-height: 1.4em;
}
.tile-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  margin-top: 0.65rem;
}
.tile-dot {
  width: 18px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  padding: 0;
}
.tile-dot::after {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--text-dim);
  transition: background 0.3s, transform 0.3s;
}
.tile-dot.is-on::after {
  background: var(--accent);
  transform: scale(1.2);
}
.curr-module-list {
  display: flex; flex-direction: column; gap: 0.6rem;
  margin-top: 0.5rem;
}
.curr-module-list li {
  display: grid;
  grid-template-columns: 24px 1fr auto;
  gap: 1rem;
  align-items: baseline;
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--line);
  list-style: none;
  font-size: 13px;
}
.curr-module-list li .li-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  color: var(--text-mute);
  letter-spacing: 0.08em;
}
.curr-module-list li .li-name {
  color: var(--text);
  font-weight: 400;
}
.curr-module-list li .li-meta {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--text-mute);
  letter-spacing: 0.04em;
}

@media (max-width: 1024px) {
  .curr-deepdive-grid { grid-template-columns: 1fr; gap: 3rem; }
  .curr-sticky-left { position: static; }
}

/* ============ COACH PROFILE (sticky two-col) ============ */
.coach-profile {
  padding: 8rem 2rem;
  border-bottom: 1px solid var(--line);
}
.coach-profile-grid {
  max-width: 1500px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.coach-profile-left {
  position: sticky;
  top: 90px;
  display: flex; flex-direction: column; gap: 1.5rem;
}
.coach-profile-portrait {
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--bg-card);
  position: relative;
}
.coach-profile-portrait img {
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(100%) contrast(1.25) brightness(0.85);
}
.coach-profile-portrait::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 70%, rgba(10,10,10,0.6) 100%);
  pointer-events: none;
}
.coach-profile-nameplate {
  position: absolute;
  bottom: 1.5rem; left: 1.5rem; right: 1.5rem;
  z-index: 2;
  display: flex; justify-content: space-between; align-items: end;
}
.coach-profile-nameplate .name {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 32px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  line-height: 0.95;
}
.coach-profile-nameplate .id {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  color: var(--accent);
  letter-spacing: 0.1em;
}
.coach-profile-right {
  display: flex; flex-direction: column; gap: 3rem;
}
.coach-profile-meta-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--line);
}
.coach-profile-meta-row .meta-item {
  display: flex; flex-direction: column; gap: 0.4rem;
}
.coach-profile-meta-row .meta-item .k {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  color: var(--text-mute);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.coach-profile-meta-row .meta-item .v {
  font-family: 'Oswald', sans-serif;
  font-size: 18px;
  font-weight: 400;
}
.coach-profile-section {
  display: flex; flex-direction: column; gap: 1rem;
}
.coach-profile-section .section-label {
  display: flex; align-items: center; gap: 1rem;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--accent);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.coach-profile-section .section-label .bar { width: 24px; height: 1px; background: var(--accent); }
.coach-profile-section h3 {
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  font-size: 28px;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  line-height: 1.05;
}
.coach-profile-section p {
  font-size: 14.5px;
  color: var(--text-soft);
  line-height: 1.7;
}
.coach-profile-section p + p { margin-top: 0.8rem; }

.cert-list {
  display: flex; flex-direction: column; gap: 0;
  border-top: 1px solid var(--line);
}
.cert-item {
  display: grid;
  grid-template-columns: 60px 1fr auto;
  gap: 1.5rem;
  align-items: center;
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
}
.cert-item .year {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--accent);
  letter-spacing: 0.08em;
}
.cert-item .name {
  font-family: 'Oswald', sans-serif;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.cert-item .org {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--text-mute);
  letter-spacing: 0.05em;
}

.spec-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.8rem 1.5rem;
  margin-top: 0.5rem;
}
.spec-list li {
  list-style: none;
  display: flex; align-items: center; gap: 0.8rem;
  font-size: 13px;
  color: var(--text-soft);
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--line);
}
.spec-list li::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--accent);
  flex-shrink: 0;
}

@media (max-width: 1024px) {
  .coach-profile-grid { grid-template-columns: 1fr; gap: 3rem; }
  .coach-profile-left { position: static; }
}

/* ============ MEMBER STORIES (scattered postcards) ============ */
.stories {
  padding: 8rem 2rem 10rem;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.stories-header {
  max-width: 1500px; margin: 0 auto 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: end;
}
.stories-header-right {
  font-size: 15px;
  color: var(--text-soft);
  line-height: 1.7;
  max-width: 460px;
}
.stories--bleed {
  padding-left: 0;
  padding-right: 0;
}
.stories--bleed .stories-header {
  padding: 0 2rem;
}
.polaroid-row {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 2.8rem 3.2rem;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 2rem 1rem;
}
.stories-scrapbook {
  position: relative;
  max-width: 1500px;
  margin: 0 auto;
  min-height: 900px;
  perspective: 2000px;
}
.polaroid {
  position: relative;
  width: 400px;
  max-width: 100%;
  background: #f5f0e6;
  padding: 16px 16px 22px;
  box-shadow: 0 20px 40px -10px rgba(0,0,0,0.7), 0 8px 16px -8px rgba(0,0,0,0.5);
  transition: transform 0.6s var(--ease-emphasis), box-shadow 0.6s ease;
  transform-origin: center center;
  cursor: none;
  text-align: left;
  font: inherit;
  color: inherit;
  appearance: none;
  -webkit-appearance: none;
}
.polaroid-row .polaroid:nth-child(1) { transform: rotate(-2.8deg); }
.polaroid-row .polaroid:nth-child(2) { transform: rotate(2.2deg); margin-top: 1.4rem; }
.polaroid-row .polaroid:nth-child(3) { transform: rotate(-1.6deg); }
.polaroid:hover,
.polaroid:active,
.polaroid.is-pressed {
  z-index: 50;
  transform: rotate(0deg) scale(1.04) !important;
  box-shadow: 0 36px 60px -10px rgba(0,0,0,0.85), 0 14px 20px -10px rgba(0,0,0,0.6);
}
.polaroid-img {
  width: 100%;
  aspect-ratio: 4/5;
  overflow: hidden;
  background: #1a1a1a;
  position: relative;
}
.polaroid-img img {
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(100%) contrast(1.2) brightness(0.85);
  transition: filter 0.5s var(--ease-quiet);
  pointer-events: none;
}
.polaroid:hover .polaroid-img img,
.polaroid:active .polaroid-img img,
.polaroid.is-pressed .polaroid-img img {
  filter: grayscale(0%) contrast(1.05) brightness(1);
}
.polaroid-img .stat-badge {
  position: absolute;
  top: 8px; right: 8px;
  background: var(--accent);
  color: var(--bg);
  padding: 4px 8px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.06em;
}
.polaroid-caption {
  padding-top: 12px;
  display: flex; flex-direction: column; gap: 4px;
  text-align: left;
}
.polaroid-caption .name {
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  font-size: 20px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #1a1a1a;
}
.polaroid-caption .meta {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  color: #6a6a6a;
  letter-spacing: 0.05em;
}
.polaroid-caption .quote {
  font-family: 'EB Garamond', serif;
  font-style: italic;
  font-size: 13px;
  color: #3a3a3a;
  line-height: 1.4;
  margin-top: 4px;
}

@media (max-width: 1024px) {
  .stories-header { grid-template-columns: 1fr; gap: 2rem; }
  .stories-scrapbook { min-height: auto; perspective: none; }
  .polaroid-row {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    padding: 0 1.2rem;
  }
  .polaroid-row .polaroid:nth-child(2) { margin-top: 0; }
  .polaroid {
    width: 100%;
    max-width: 400px;
  }
}

/* ============ SCHEDULE ============ */
.schedule {
  padding: 7rem 2rem;
  border-bottom: 1px solid var(--line);
  background: var(--bg-soft);
}
.schedule-table {
  max-width: 1500px; margin: 0 auto;
  border-top: 1px solid var(--line-strong);
  border-left: 1px solid var(--line);
}
.schedule-row {
  display: grid;
  grid-template-columns: 100px repeat(6, 1fr);
  border-bottom: 1px solid var(--line);
}
.schedule-cell {
  padding: 1rem 0.8rem;
  border-right: 1px solid var(--line);
  min-height: 70px;
  display: flex; flex-direction: column; gap: 0.3rem;
  position: relative;
  font-size: 12px;
  transition: background 0.3s;
}
.schedule-cell.head {
  background: var(--bg-elevated);
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text);
  min-height: 50px;
  display: flex; align-items: center; justify-content: center;
}
.schedule-cell.time {
  background: var(--bg-elevated);
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: var(--accent);
  letter-spacing: 0.05em;
  display: flex; align-items: center; justify-content: center;
}
.schedule-cell.class:hover { background: rgba(255,77,0,0.06); }
.schedule-cell .class-name {
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text);
}
.schedule-cell .coach {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  color: var(--text-mute);
  letter-spacing: 0.04em;
}
.schedule-cell .tag {
  display: inline-block;
  width: fit-content;
  padding: 2px 6px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: auto;
}
.schedule-cell .tag.hyp { background: var(--accent); color: var(--bg); }
.schedule-cell .tag.def { background: transparent; color: var(--silver); border: 1px solid var(--silver); }
.schedule-cell .tag.fnd { background: transparent; color: var(--text-mute); border: 1px solid var(--text-mute); }
.schedule-cell.empty { background: rgba(255,255,255,0.01); }

.schedule-legend {
  max-width: 1500px; margin: 2rem auto 0;
  display: flex; gap: 2rem; flex-wrap: wrap;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--text-mute);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.schedule-legend .leg { display: flex; align-items: center; gap: 0.5rem; }
.schedule-legend .swatch { width: 12px; height: 12px; }
.schedule-legend .h { background: var(--accent); }
.schedule-legend .d { border: 1px solid var(--silver); }
.schedule-legend .f { border: 1px solid var(--text-mute); }

@media (max-width: 1024px) {
  .schedule-table { overflow-x: auto; border-left: none; }
  .schedule-row { min-width: 800px; }
}

/* ============ BOOKING CTA ============ */
.booking {
  padding: 9rem 2rem;
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.booking::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(255,77,0,0.16), transparent 55%),
    radial-gradient(ellipse at 80% 80%, rgba(61,124,255,0.12), transparent 50%),
    var(--bg-soft);
  z-index: 0;
}
.booking::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(7,11,20,0.35) 0%, rgba(7,11,20,0.88) 100%);
  z-index: 1;
}
.booking-inner {
  position: relative; z-index: 2;
  max-width: 1100px; margin: 0 auto;
  text-align: center;
}
.booking-label {
  display: inline-flex; align-items: center; gap: 0.8rem;
  margin-bottom: 2rem;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--accent);
  text-transform: uppercase;
}
.booking-label .bar { width: 30px; height: 1px; background: var(--accent); }
.booking-title {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: clamp(56px, 8vw, 130px);
  line-height: 0.92;
  letter-spacing: -0.025em;
  text-transform: uppercase;
  margin-bottom: 2rem;
}
.booking-title .accent { color: var(--accent); }
.booking-title .italic-accent { font-size: 0.7em; }
.booking-sub {
  font-size: 17px;
  color: var(--text-soft);
  line-height: 1.6;
  max-width: 620px;
  margin: 0 auto 3.5rem;
}
.booking-form {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr auto;
  gap: 0;
  max-width: 800px;
  margin: 0 auto;
  border: 1px solid var(--line-strong);
  background: rgba(10,10,10,0.6);
  backdrop-filter: blur(10px);
}
.booking-form-field {
  padding: 1.2rem 1.4rem;
  border-right: 1px solid var(--line);
  text-align: left;
  display: flex; flex-direction: column; gap: 0.4rem;
}
.booking-form-field:last-of-type { border-right: none; }
.booking-form-field label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  color: var(--text-mute);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.booking-form-field input,
.booking-form-field select {
  background: transparent;
  border: none;
  color: var(--text);
  font-family: 'Oswald', sans-serif;
  font-size: 17px;
  font-weight: 400;
  letter-spacing: 0.02em;
  outline: none;
  cursor: none;
  appearance: none;
  width: 100%;
}
.booking-form-field input::placeholder { color: var(--text-mute); }
.booking-submit {
  background: var(--accent);
  color: var(--bg);
  padding: 0 2.5rem;
  font-family: 'Inter', sans-serif;
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: none;
  transition: background 0.3s;
  display: flex; align-items: center; gap: 0.6rem;
}
.booking-submit:hover { background: var(--accent-soft); }
.booking-submit .arrow { transition: transform 0.3s; display: inline-block; }
.booking-submit:hover .arrow { transform: translateX(4px); }

.booking-foot {
  margin-top: 3rem;
  display: flex; justify-content: center; gap: 2.5rem; flex-wrap: wrap;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--text-mute);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.booking-foot .item { display: flex; align-items: center; gap: 0.6rem; }
.booking-foot .item .dot { width: 5px; height: 5px; background: var(--accent); border-radius: 50%; }

@media (max-width: 800px) {
  .booking-form { grid-template-columns: 1fr; }
  .booking-form-field { border-right: none; border-bottom: 1px solid var(--line); }
  .booking-submit { padding: 1.2rem; justify-content: center; }
}

/* ============ FOOTER ============ */
.footer {
  padding: 5rem 2rem 2rem;
  background: var(--bg);
}
.footer-grid {
  max-width: 1500px; margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid var(--line);
}
.footer-brand {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 32px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  display: flex; align-items: center; gap: 0.8rem;
}
.footer-brand .brand-sub {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.2em;
  margin-top: 0.12rem;
}
.footer-brand .dot {
  width: 10px; height: 10px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--accent-glow);
}
.footer-tag {
  font-size: 14px;
  color: var(--text-soft);
  line-height: 1.6;
  max-width: 320px;
  margin-bottom: 2rem;
}
.footer-socials {
  display: flex; gap: 1.2rem;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.footer-socials a {
  color: var(--text-mute);
  transition: color 0.3s;
  position: relative;
  padding-bottom: 2px;
}
.footer-socials a:hover { color: var(--accent); }
.footer-col h4 {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.2rem;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col li {
  font-size: 13px;
  color: var(--text-soft);
  line-height: 1.5;
}
.footer-col li.mono { font-family: 'JetBrains Mono', monospace; font-size: 12px; color: var(--text-mute); }
.footer-bottom {
  max-width: 1500px; margin: 2rem auto 0;
  display: flex; justify-content: space-between; align-items: center;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--text-mute);
  letter-spacing: 0.08em;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom .right { display: flex; gap: 1.5rem; }

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* ============ ENTRANCE ANIMATIONS ============ */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1.1s var(--ease-quiet), transform 1.1s var(--ease-quiet);
  will-change: opacity, transform;
}
.fade-up.is-in { opacity: 1; transform: none; }

.fade-in {
  opacity: 0;
  transition: opacity 1.2s var(--ease-quiet);
}
.fade-in.is-in { opacity: 1; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .noise-overlay { animation: none; }
  .hero-title .line { transform: none; }
  .manifesto-text .word { opacity: 1; filter: none; }
}


/* ======================================================== */
/* ============ CUSTOM ADDITIONS FOR RUNCONADA ============ */
/* ======================================================== */

.logo-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  flex-shrink: 0;
}
.logo-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0;
  transition: opacity 1.1s ease;
}
.hero-slide.is-on { opacity: 1; }
.hero-slide.is-empty,
.hero-slide[data-hero="mobile"] { display: none; }
.hero-slide .ph {
  position: absolute;
  inset: 0;
  background: var(--bg);
}
.hero-slide .ph::before {
  color: rgba(110, 122, 140, 0.35);
  font-size: 10px;
}
.hero-pair {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
}
.hero-frame {
  position: relative;
  flex: 1 1 50%;
  min-height: 0;
  min-width: 0;
}
.hero-slide[data-hero="mobile"] .hero-frame {
  position: absolute;
  inset: 0;
  flex: none;
}
.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  filter: grayscale(55%) contrast(1.08) brightness(0.72);
  mix-blend-mode: luminosity;
  opacity: 0.92;
  pointer-events: none;
  -webkit-touch-callout: none;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(180deg, rgba(7,11,20,0.48) 0%, rgba(7,11,20,0.62) 58%, var(--bg) 100%),
    linear-gradient(90deg, rgba(7,11,20,0.62) 0%, rgba(7,11,20,0.28) 46%, rgba(7,11,20,0.55) 100%);
  pointer-events: none;
}

@media (max-width: 1024px) {
  .hero-bg {
    position: relative;
    inset: auto;
    width: calc(100% + 4rem);
    margin: 0 -2rem 2rem;
    aspect-ratio: 16 / 9;
    flex: 0 0 auto;
  }
  .hero-grid { min-height: 0; }
  .hero-slide[data-hero="desktop"] { display: none; }
  .hero-slide[data-hero="mobile"] { display: block; }
  .hero-slide.is-empty { display: none; }
  .hero-slide[data-hero="mobile"] img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 28%;
  }
}

@media (max-width: 700px) {
  .hero-bg {
    width: calc(100% + 2.4rem);
    margin: 0 -1.2rem 1.6rem;
  }
}

.manifesto-text .word.is-in {
  opacity: 1;
  filter: blur(0px) brightness(100%);
  transition: opacity 0.8s ease-out, filter 0.8s ease-out;
}

/* Image placeholders — drop a file at the printed path and it appears */
.ph {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 100%;
  background:
    linear-gradient(180deg, rgba(61,124,255,0.06), rgba(255,77,0,0.04)),
    var(--bg-card);
}
.ph::before {
  content: attr(data-ph);
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem;
  text-align: center;
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.06em;
  color: var(--text-mute);
  z-index: 0;
  word-break: break-all;
}
.ph img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-slide .ph img {
  object-fit: contain;
  pointer-events: none;
}
@media (max-width: 1024px) {
  .hero-slide[data-hero="mobile"] .ph img {
    height: 100%;
    object-fit: cover;
    object-position: center 28%;
  }
}
img.is-missing { display: none !important; }

.hero-era--empty {
  background: transparent;
  border: 1px dashed var(--line-strong);
}
.hero-era--empty::after { display: none; }

.hero-coach .ph,
.hero-slide .ph,
.coach-card-portrait .ph,
.member-modal-portrait .ph,
.polaroid-img .ph,
.podium-card-img .ph,
.tile-frame .ph,
.archive-modal-frame .ph {
  position: absolute;
  inset: 0;
}
.hero-coach,
.coach-card-portrait,
.member-modal-portrait,
.polaroid-img,
.podium-card-img,
.tile-frame,
.archive-modal-frame {
  position: relative;
}

.footer-col a { transition: color 0.3s; word-break: break-word; }
.footer-col a:hover { color: var(--accent); }

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line-strong);
  border: 1px solid var(--line-strong);
}
.calendar-tile {
  background: var(--bg);
  min-height: 240px;
  padding: 2.2rem 2rem 2.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.calendar-tile-kind {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue);
}
.calendar-tile-title {
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  font-size: clamp(28px, 3vw, 36px);
  letter-spacing: -0.01em;
  text-transform: uppercase;
  line-height: 1;
  color: var(--text-mute);
}
.calendar-tile-meta {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-mute);
}
.calendar-tile-status {
  margin-top: auto;
  padding-top: 1.4rem;
  font-family: 'EB Garamond', serif;
  font-style: italic;
  font-size: 16px;
  color: var(--text-soft);
}
.calendar-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}
.calendar-foot .btn-ghost { min-height: 48px; }

.section-foot {
  display: flex;
  justify-content: flex-end;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}
.stories .section-foot {
  max-width: 1500px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 2rem;
  padding-right: 2rem;
}
.page-main {
  padding-top: 7.5rem;
  min-height: 70vh;
}
.page-back {
  display: none;
}

.recruit-banner {
  margin-top: 3.5rem;
  padding: 2.4rem 2rem;
  border: 1px solid var(--line-strong);
  background:
    linear-gradient(180deg, rgba(255,77,0,0.06), transparent 55%),
    var(--bg-soft);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.7rem;
}
.recruit-kicker {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
}
.recruit-title {
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  font-size: clamp(32px, 4vw, 48px);
  letter-spacing: -0.02em;
  text-transform: uppercase;
  line-height: 1;
}
.recruit-copy {
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-soft);
  max-width: 52ch;
  margin-bottom: 0.6rem;
}
.recruit-banner .btn-ghost { min-height: 48px; }

.see-more {
  font-family: 'EB Garamond', serif;
  font-style: italic;
  font-size: 14px;
  color: var(--blue-soft);
  letter-spacing: 0.02em;
  margin-top: 0.15rem;
}
.curr-row:active .see-more,
.curr-row:focus-visible .see-more,
.curr-row.is-pressed .see-more,
.polaroid:hover .see-more,
.polaroid:active .see-more,
.polaroid.is-pressed .see-more { color: var(--accent); }
.polaroid-caption .see-more { color: #3d7cff; }

body.modal-locked { overflow: hidden; }

.archive-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  padding-top: calc(1.5rem + env(safe-area-inset-top));
  padding-bottom: calc(1.5rem + env(safe-area-inset-bottom));
}
.archive-modal[hidden] { display: none; }
.archive-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7,11,20,0.82);
  backdrop-filter: blur(8px);
}
.archive-modal-panel {
  position: relative;
  z-index: 1;
  width: min(720px, 100%);
  max-height: min(92svh, 900px);
  overflow: auto;
  overflow-x: hidden;
  background: var(--bg-soft);
  border: 1px solid var(--line-strong);
  padding: 2.2rem 2rem 2rem;
}
.archive-modal-close {
  position: absolute;
  top: 0.8rem;
  right: 0.9rem;
  width: 44px;
  height: 44px;
  font-size: 28px;
  line-height: 1;
  color: var(--text-soft);
  transition: color 0.3s;
}
.archive-modal-close:hover { color: var(--accent); }
.archive-modal-year {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 0.7rem;
}
.archive-modal-title {
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  font-size: clamp(28px, 4vw, 42px);
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.archive-modal-lead {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-soft);
  margin-bottom: 1.6rem;
  max-width: 58ch;
}
.archive-modal-stage {
  display: grid;
  grid-template-columns: 44px 1fr 44px;
  gap: 0.6rem;
  align-items: center;
  min-width: 0;
}
.archive-modal-stack {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  min-width: 0;
  max-width: 100%;
}
.archive-modal-shot { margin: 0; min-width: 0; max-width: 100%; }
.archive-modal-shot[hidden] { display: none; }
.archive-modal-frame {
  aspect-ratio: 16 / 10;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  background: var(--bg-card);
  overflow: hidden;
}
.archive-modal-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.archive-modal-nav {
  width: 44px;
  height: 44px;
  border: 1px solid var(--line-strong);
  color: var(--blue-soft);
  font-size: 28px;
  line-height: 1;
  transition: border-color 0.3s, color 0.3s;
}
.archive-modal-nav:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.archive-modal-caption {
  font-family: 'EB Garamond', serif;
  font-style: italic;
  font-size: 16px;
  color: var(--text-soft);
  line-height: 1.45;
  margin-top: 0.9rem;
  min-height: 1.5em;
}
.archive-modal-count {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--text-mute);
  margin-top: 0.4rem;
}

.member-modal-head {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  gap: 1rem;
  align-items: start;
  margin-bottom: 0.85rem;
}
.member-modal-photo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.4rem;
}
.member-modal-portrait {
  aspect-ratio: 4 / 5;
  width: 100%;
  overflow: hidden;
  background: var(--bg-card);
}
.member-modal-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.member-modal-photo .member-badge {
  margin: 0;
}
.member-modal-head .archive-modal-title { margin-bottom: 0; }
.member-modal-head .archive-modal-year { margin-bottom: 0.45rem; }
.member-modal-quote {
  max-width: none;
  width: 100%;
  margin-bottom: 1.1rem;
}
.member-modal-quote p { margin: 0 0 0.85em; }
.member-modal-quote p:last-child { margin-bottom: 0; }
.member-modal-quote:empty { display: none; }
.member-modal-carousel {
  margin: 0 0 1.15rem;
  width: 100%;
  max-width: none;
}
.member-modal-carousel[hidden],
#member-gallery-dots[hidden] { display: none; }
.member-modal-carousel .tile-carousel-viewport {
  overscroll-behavior-x: contain;
}
.member-modal-kicker {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 1.15rem 0 0.55rem;
}
.member-modal-results[hidden] { display: none; }
.member-modal-results .member-modal-kicker {
  margin-top: 1.45rem;
}
.member-modal-results .member-modal-kicker:first-child {
  margin-top: 1.15rem;
}
.member-modal-results-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.member-modal-results-list li {
  position: relative;
  padding-left: 0.95rem;
  font-family: 'EB Garamond', serif;
  font-style: italic;
  font-size: 16px;
  color: var(--text-soft);
  line-height: 1.4;
}
.member-modal-results-list b,
.member-modal-results-list strong {
  font-weight: 600;
  font-style: normal;
  color: var(--text);
}
.member-modal-results-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 6px;
  height: 1px;
  background: var(--accent);
}

@media (pointer: coarse) {
  .curr-row, .polaroid, .podium-select select, .archive-modal-nav, .archive-modal-close, .member-card, .member-meet { cursor: pointer; }
}

@media (max-width: 700px) {
  .archive-modal { padding: 0.8rem; align-items: center; }
  .archive-modal-panel { padding: 1.2rem 0.9rem 1.1rem; max-height: 94svh; }
  .archive-modal-title { font-size: 26px; margin-bottom: 0.55rem; }
  .archive-modal-lead { font-size: 14px; line-height: 1.5; margin-bottom: 0.85rem; }
  .archive-modal-stage { grid-template-columns: 36px minmax(0, 1fr) 36px; }
  .archive-modal-nav { width: 36px; height: 44px; }
  .member-modal-head {
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 0.75rem;
    align-items: center;
  }
  .member-modal-results-list li { font-size: 15px; }
}

@media (max-width: 900px) {
  .page-back {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    min-height: 44px;
    margin: 0 0 0.6rem 0.2rem;
    font-size: 22px;
    color: var(--accent);
    line-height: 1;
  }
  .hero { padding: 7.2rem 1.2rem 3.2rem; min-height: 100svh; }
  .hero-title { font-size: clamp(42px, 13vw, 72px); margin-bottom: 1.6rem; }
  .hero-sub { margin-bottom: 2rem; }
  .hero-cta-row { margin-bottom: 2rem; }
  .hero-scroll { display: none; }
  .coach-team { padding: 5rem 1.2rem; }
  .is-subpage .page-main { padding-top: 6.5rem; }
  .stories { padding: 5rem 1.2rem 4rem; }
  .stories--bleed { padding-left: 0; padding-right: 0; }
  .stories--bleed .stories-header { padding: 0 1.2rem; }
  .curr-deepdive { padding: 5rem 1.2rem; }
  .booking { padding: 5.5rem 1.2rem; }
  .footer { padding: 3.5rem 1.2rem calc(2rem + env(safe-area-inset-bottom)); }
}

@media (max-width: 600px) {
  .hero-coach-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-cta-row { flex-direction: column; align-items: stretch; }
  .btn-primary, .btn-ghost { justify-content: center; min-height: 48px; }
  .coach-team-grid { grid-template-columns: repeat(2, 1fr); }
  .coach-card { padding: 1.2rem 1rem 1.6rem; }
  .founders-grid { grid-template-columns: repeat(2, 1fr); }
  .member-card--founder { padding: 0.95rem 0.85rem 1rem; }
  .member-card--founder .coach-card-name { font-size: 15px; }
  .member-meet { min-height: 44px; }
  .coach-card-name { font-size: 16px; }
  .values-grid { grid-template-columns: 1fr; }
  .curr-title { font-size: 22px; }
  .curr-row,
  .curr-row--story { padding: 1.6rem 0.4rem; grid-template-columns: 76px 1fr 40px; }
  .calendar-grid { grid-template-columns: 1fr; }
  .calendar-tile { min-height: 200px; padding: 1.8rem 1.3rem 1.8rem; }
  .polaroid:nth-child(odd):not(:hover):not(:active):not(.is-pressed) { transform: rotate(-3deg) !important; }
  .polaroid:nth-child(even):not(:hover):not(:active):not(.is-pressed) { transform: rotate(3deg) !important; }
  .booking-title { font-size: clamp(48px, 16vw, 80px); }
}