/* Club Rapide — brand system per docs/mood-board.png */
:root {
  --crimson: #cb102e;
  --crimson-dark: #93091f;
  --crimson-darker: #5c0616;
  --gold: #f2b23d;
  --gold-dark: #d69121;
  --gold-light: #ffd487;
  --cream: #fff5e6;
  --cream-dark: #ffe6bf;
  --white: #ffffff;
  --ink: #241a14;
  --ink-soft: #5a4a3f;

  --font-display: "Playfair Display", Georgia, serif;
  --font-body: "Manrope", "Helvetica Neue", Arial, sans-serif;
  --font-hand: "Caveat", cursive;
  --font-sticker: "Baloo 2", cursive;

  --container: 1160px;
  --shadow-sm: 0 4px 14px rgba(36, 26, 20, 0.1);
  --shadow-md: 0 14px 34px rgba(36, 26, 20, 0.14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3 {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 800;
  margin: 0 0 0.5em;
  line-height: 1.12;
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--crimson);
  background: var(--white);
  border: 1.5px solid var(--gold);
  border-radius: 999px;
  padding: 7px 18px;
  margin-bottom: 16px;
  box-shadow: var(--shadow-sm);
}

.section-head { text-align: center; max-width: 640px; margin: 0 auto 48px; }
.section-head p:not(.eyebrow) { color: var(--ink-soft); font-size: 1.05rem; margin: 0; }
.section-head.left { text-align: left; margin-left: 0; }
.section-head h2 { font-size: 2.3rem; }

section { padding: 92px 0; }

/* ---------- Icons ---------- */
.icon {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px 14px 26px;
  border-radius: 12px;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: 2px solid transparent;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}
.btn::after {
  content: "";
  width: 15px;
  height: 15px;
  background-color: currentColor;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='9 5 16 12 9 19'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='9 5 16 12 9 19'/%3E%3C/svg%3E");
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  transition: transform 0.18s ease;
}
.btn:hover::after { transform: translateX(3px); }
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn:active { transform: translateY(0); }

.btn-primary { background: var(--crimson); color: var(--white); }
.btn-primary:hover { background: var(--crimson-dark); }
.btn-ghost { background: var(--white); color: var(--ink); border-color: var(--white); }
.btn-ghost:hover { background: var(--cream); }

/* ---------- Sticker badges ---------- */
.sticker {
  position: absolute;
  background: var(--white);
  border: 2px solid var(--crimson);
  border-radius: 46% 54% 52% 48% / 54% 48% 52% 46%;
  box-shadow: var(--shadow-md);
  padding: 14px 20px;
  z-index: 2;
}
.sticker span {
  display: block;
  font-family: var(--font-sticker);
  font-weight: 800;
  font-size: 1.05rem;
  line-height: 1.2;
  text-align: center;
  color: var(--crimson);
  text-transform: uppercase;
}
.sticker-hero {
  right: 6%;
  bottom: 14%;
  transform: rotate(-6deg);
}
.sticker-gallery {
  top: -18px;
  right: 0;
  transform: rotate(7deg);
}

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: transparent;
  transition: background 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
  padding: 20px 0;
}
.site-header.scrolled {
  background: var(--crimson);
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  padding: 12px 0;
}
.header-inner { display: flex; align-items: center; justify-content: space-between; }

.brand { display: flex; align-items: center; gap: 12px; }
.brand-logo { height: 34px; width: auto; display: block; }
.brand-word {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 800;
  font-size: 1.7rem;
  color: var(--gold-light);
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.nav-links { display: flex; gap: 32px; list-style: none; margin: 0; padding: 0; }
.nav-links a {
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  position: relative;
  padding-bottom: 4px;
}
.nav-links a::after {
  content: "";
  position: absolute; left: 0; bottom: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width 0.25s ease;
}
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  display: inline-block;
  background: var(--gold);
  color: var(--ink);
  padding: 10px 22px;
  border-radius: 10px;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 0.88rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}
.nav-cta:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: var(--shadow-md); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span { width: 26px; height: 2.5px; background: var(--white); border-radius: 2px; transition: all 0.25s ease; }

.mobile-menu { display: none; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  color: var(--white);
  overflow: hidden;
}
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: center 25%; }
.hero-media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(92,6,22,0.68) 0%, rgba(92,6,22,0.55) 45%, rgba(36,26,20,0.9) 100%);
}
.hero-content { position: relative; z-index: 1; padding-top: 90px; }
.hero-eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--white);
  border: 1.5px solid var(--gold);
  border-radius: 999px;
  padding: 7px 18px;
  margin-bottom: 22px;
  box-shadow: var(--shadow-sm);
}
.hero-title {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 800;
  font-size: clamp(3.6rem, 10vw, 7.5rem);
  color: var(--white);
  margin: 0;
  line-height: 0.98;
  letter-spacing: -0.01em;
  text-shadow: 0 8px 30px rgba(0,0,0,0.35);
}
.hero-lines { display: flex; align-items: center; gap: 14px; margin: 20px 0 24px; }
.hero-lines .line { height: 2px; width: 46px; background: var(--gold); border-radius: 2px; }
.hero-motto {
  font-family: var(--font-hand);
  font-weight: 700;
  font-size: 2rem;
  color: var(--gold-light);
}
.hero-desc { max-width: 560px; font-size: 1.08rem; color: rgba(255,255,255,0.92); margin-bottom: 36px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 56px; }

.hero-facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 860px;
}
.hero-facts .fact {
  background: rgba(36,26,20,0.5);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 14px;
  padding: 14px 16px;
}
.hero-facts .fact .icon { color: var(--gold); margin-bottom: 8px; }
.hero-facts .fact strong {
  display: block;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 800;
  font-size: 1.6rem;
  color: var(--gold);
}
.hero-facts .fact span { font-size: 0.8rem; font-weight: 600; color: rgba(255,255,255,0.85); }

.scroll-cue {
  position: absolute;
  bottom: 28px; left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  color: rgba(255,255,255,0.8);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.scroll-cue::after {
  content: "";
  width: 2px; height: 30px;
  background: var(--gold);
  border-radius: 2px;
  animation: scrollpulse 1.8s ease-in-out infinite;
}
@keyframes scrollpulse { 0%,100% { opacity: 0.3; transform: translateY(0); } 50% { opacity: 1; transform: translateY(6px); } }

/* torn-paper edge, mirrors the mood board's hero stat bar */
.torn-edge {
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  height: 26px;
  background: var(--cream);
  clip-path: polygon(0% 100%, 0.000% 0%, 3.846% 62%, 7.692% 0%, 11.538% 62%, 15.385% 0%, 19.231% 62%, 23.077% 0%, 26.923% 62%, 30.769% 0%, 34.615% 62%, 38.462% 0%, 42.308% 62%, 46.154% 0%, 50.000% 62%, 53.846% 0%, 57.692% 62%, 61.538% 0%, 65.385% 62%, 69.231% 0%, 73.077% 62%, 76.923% 0%, 80.769% 62%, 84.615% 0%, 88.462% 62%, 92.308% 0%, 96.154% 62%, 100.000% 0%, 100% 100%);
  z-index: 1;
}

/* ---------- Mission ---------- */
.mission { background: var(--white); }
.mission-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.mission-card {
  background: var(--cream);
  border-radius: 20px;
  padding: 36px 30px;
  position: relative;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.mission-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.mission-card .num {
  font-family: var(--font-hand);
  font-weight: 700;
  font-size: 3rem;
  color: var(--gold-dark);
  display: block;
  margin-bottom: 6px;
  line-height: 1;
}
.mission-card h3 { font-size: 1.2rem; color: var(--crimson); }
.mission-card p { margin: 0; color: var(--ink-soft); font-size: 0.98rem; }

/* ---------- Values / Axiom ---------- */
.values {
  background: linear-gradient(160deg, var(--crimson-darker), var(--crimson));
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.values::before {
  content: "";
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.14) 1.4px, transparent 1.4px);
  background-size: 16px 16px;
  opacity: 0.5;
  pointer-events: none;
}
.values-grid {
  position: relative;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 60px;
  align-items: center;
}
.values-photo {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.values-photo img { width: 100%; height: 460px; object-fit: cover; object-position: top center; }
.values-text h2 { color: var(--white); font-size: 2.3rem; }
.values-text > p:not(.eyebrow) { color: rgba(255,255,255,0.85); max-width: 480px; margin-bottom: 30px; font-weight: 500; }
.values-text .eyebrow { background: rgba(255,255,255,0.12); border-color: var(--gold-light); color: var(--gold-light); box-shadow: none; }

.axiom-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 16px; }
.axiom-list li {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.08rem;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.2);
}
.axiom-list li:last-child { border-bottom: none; padding-bottom: 0; }
.axiom-list .mark {
  flex-shrink: 0;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--ink);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 800;
  font-size: 0.95rem;
}

/* ---------- Coaches ---------- */
.coaches { background: var(--cream); }
.coach-lead {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 44px;
  align-items: center;
  background: var(--white);
  border-radius: 22px;
  padding: 36px;
  box-shadow: var(--shadow-md);
  margin-bottom: 28px;
}
.coach-photo { border-radius: 16px; overflow: hidden; }
.coach-photo img { width: 100%; height: 320px; object-fit: cover; object-position: 50% 25%; }
.coach-lead h3 { color: var(--crimson); font-size: 1.8rem; margin-bottom: 4px; }
.coach-role {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--crimson);
  font-family: var(--font-body);
  font-weight: 800; letter-spacing: 0.08em; font-size: 0.8rem; text-transform: uppercase;
  margin-bottom: 12px;
}
.coach-role::before {
  content: "";
  display: block;
  width: 22px; height: 3px;
  background: var(--gold);
  border-radius: 2px;
}
.coach-lead p { color: var(--ink-soft); max-width: 560px; }

.assistant-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.assistant-card {
  background: var(--white);
  border-radius: 18px;
  padding: 28px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.assistant-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.assistant-avatar {
  width: 84px; height: 84px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--gold);
  margin: 0 auto 14px;
}
.assistant-avatar img { width: 100%; height: 100%; object-fit: cover; }
.assistant-card h4 { margin: 0 0 4px; font-family: var(--font-display); font-style: italic; font-weight: 800; color: var(--ink); font-size: 1.1rem; }
.assistant-card span { font-size: 0.82rem; color: var(--crimson); font-weight: 700; letter-spacing: 0.03em; }

/* ---------- Schedule ---------- */
.schedule { background: var(--white); }
.schedule-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 40px; }
.practice-table { border-radius: 18px; overflow: hidden; box-shadow: var(--shadow-sm); }
.practice-row {
  display: grid;
  grid-template-columns: 1.3fr 1.7fr 1fr;
  gap: 16px;
  align-items: center;
  padding: 20px 24px;
  border-bottom: 1px solid var(--cream-dark);
}
.practice-row:last-child { border-bottom: none; }
.practice-row:nth-child(odd) { background: var(--cream); }
.practice-day { font-family: var(--font-display); font-style: italic; font-weight: 800; color: var(--crimson); font-size: 1.1rem; }
.practice-loc { color: var(--ink-soft); font-size: 0.95rem; font-weight: 600; }
.practice-time { font-family: var(--font-body); font-weight: 800; color: var(--ink); text-align: right; }

.season-cards { display: flex; flex-direction: column; gap: 20px; }
.season-card {
  background: var(--cream);
  border-radius: 14px;
  padding: 20px 26px;
  box-shadow: var(--shadow-sm);
}
.season-card h4 { margin: 0 0 4px; font-family: var(--font-display); font-style: italic; font-weight: 800; color: var(--crimson); font-size: 1.1rem; }
.season-card p { margin: 0; color: var(--ink-soft); font-size: 0.92rem; font-weight: 600; }
.join-note {
  background: var(--crimson);
  color: var(--white);
  border-radius: 14px;
  padding: 22px 26px;
  font-size: 0.95rem;
  font-weight: 500;
  box-shadow: var(--shadow-sm);
}
.join-note strong { color: var(--gold-light); display: flex; align-items: center; gap: 8px; margin-bottom: 6px; font-family: var(--font-display); font-style: italic; font-weight: 800; font-size: 1.1rem; }
.join-note strong .icon { width: 19px; height: 19px; }
.join-note a { color: var(--gold-light); text-decoration: underline; }

/* ---------- Gallery ---------- */
.gallery { background: var(--cream); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 190px;
  grid-auto-flow: dense;
  gap: 14px;
}
.gallery-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: var(--shadow-sm);
}
.gallery-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(92,6,22,0.55));
  opacity: 0;
  transition: opacity 0.3s ease;
}
.gallery-item:hover::after { opacity: 1; }
.gallery-item.tall { grid-row: span 2; }
.gallery-item.wide { grid-column: span 2; }
.gallery-item.contain img { object-fit: contain; background: var(--ink); }

/* ---------- Library & Details ---------- */
.split-section { background: var(--white); }
.split-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.library-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 18px; }
.library-list li { display: flex; gap: 16px; align-items: center; justify-content: space-between; padding-bottom: 18px; border-bottom: 1px solid var(--cream-dark); }
.library-list li:last-child { border-bottom: none; }
.book-info h4 { margin: 0; font-family: var(--font-display); font-style: italic; font-weight: 800; font-size: 1.05rem; color: var(--ink); }
.book-info span { font-size: 0.88rem; color: var(--ink-soft); font-weight: 600; }

.book-cover {
  flex-shrink: 0;
  width: 54px; height: 76px;
  background: var(--crimson);
  border-radius: 5px;
  box-shadow: var(--shadow-sm);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px 5px;
}
.book-cover::before {
  content: "";
  position: absolute;
  left: 5px; top: 4px; bottom: 4px;
  width: 2px;
  background: rgba(255,255,255,0.35);
}
.book-cover span {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 0.58rem;
  line-height: 1.15;
  text-align: center;
  color: var(--white);
  text-transform: uppercase;
}
.library-list li:nth-child(2) .book-cover { background: var(--ink); }
.library-list li:nth-child(3) .book-cover { background: var(--gold-dark); }
.library-list li:nth-child(3) .book-cover span { color: var(--ink); }
.library-list li:nth-child(4) .book-cover { background: var(--crimson-darker); }

.details-block h3 { color: var(--crimson); font-size: 1.5rem; }
.details-block > p { color: var(--ink-soft); margin-bottom: 24px; }
.event-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 28px; }
.event-tags span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--cream);
  color: var(--ink);
  padding: 8px 16px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
}
.event-tags span .icon { width: 16px; height: 16px; color: var(--crimson); }
.detail-points { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.detail-points li { display: flex; gap: 12px; align-items: flex-start; color: var(--ink-soft); font-weight: 600; }
.detail-points li::before { content: "\2192"; color: var(--gold-dark); font-weight: 700; flex-shrink: 0; }

/* ---------- Contact / Footer ---------- */
.contact {
  background: var(--ink);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.contact::before {
  content: "";
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.06) 1.4px, transparent 1.4px);
  background-size: 16px 16px;
  pointer-events: none;
}
.contact-inner { position: relative; text-align: center; }
.contact .eyebrow { background: rgba(255,255,255,0.1); border-color: var(--gold-light); color: var(--gold-light); box-shadow: none; }
.contact h2 { color: var(--white); font-size: 2.5rem; margin-bottom: 14px; }
.contact-motto {
  display: inline-block;
  font-family: var(--font-hand);
  font-weight: 700;
  font-size: 2.4rem;
  color: var(--gold-light);
  margin-bottom: 30px;
}
.contact-actions { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; margin-bottom: 20px; }
.contact .btn-ghost { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.6); }
.contact .btn-ghost:hover { background: rgba(255,255,255,0.1); }
.contact-meta { color: rgba(255,255,255,0.6); font-size: 0.9rem; font-weight: 500; }

.site-footer {
  background: var(--ink);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 26px 0;
}
.footer-inner { display: flex; align-items: center; justify-content: space-between; color: rgba(255,255,255,0.55); font-size: 0.85rem; }
.footer-inner .brand-word { font-size: 1.25rem; }

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(20,10,10,0.92);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 90vw; max-height: 85vh; border-radius: 10px; box-shadow: 0 20px 60px rgba(0,0,0,0.5); }
.lightbox-close {
  position: absolute; top: 24px; right: 32px;
  background: var(--white); border: none;
  width: 40px; height: 40px; border-radius: 50%;
  color: var(--ink); font-size: 1.5rem;
  cursor: pointer;
  line-height: 1;
  box-shadow: var(--shadow-sm);
}

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .mission-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .values-photo img { height: 320px; }
  .coach-lead { grid-template-columns: 1fr; }
  .coach-photo img { height: 260px; }
  .assistant-grid { grid-template-columns: 1fr 1fr; }
  .schedule-grid { grid-template-columns: 1fr; }
  .split-grid { grid-template-columns: 1fr; gap: 40px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 170px; }
  .hero-facts { grid-template-columns: repeat(2, 1fr); row-gap: 16px; }
  .sticker-hero { display: none; }
}

@media (max-width: 720px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .site-header.nav-open { background: var(--crimson); }
  .mobile-menu {
    display: block;
    position: fixed; top: 0; right: -100%; bottom: 0;
    width: 78%; max-width: 320px;
    background: var(--crimson);
    z-index: 99;
    padding: 100px 32px 40px;
    transition: right 0.35s ease;
    box-shadow: -20px 0 50px rgba(0,0,0,0.3);
  }
  .mobile-menu.open { right: 0; }
  .mobile-menu ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 26px; }
  .mobile-menu a { color: var(--white); font-size: 1.15rem; font-family: var(--font-body); font-weight: 700; }
  .mobile-menu .nav-cta { display: inline-block; margin-top: 10px; }

  .assistant-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item.wide { grid-column: span 2; }
  .gallery-item.tall { grid-row: span 1; }
  section { padding: 64px 0; }
  .hero-title { font-size: clamp(3rem, 16vw, 5rem); }
  .sticker-gallery { position: static; transform: rotate(-2deg); display: inline-block; margin-bottom: 16px; }
}
