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

:root {
  /* DA : box brute — noir / vert, angles droits, typo dure */
  --bg: #050705;
  --ink: #0a0e0b;
  --surface: #101612;
  --surface-2: #161e19;
  --line: #1f3d2c;
  --line-strong: #2ee68c;
  --text: #f0f5f1;
  --text-dim: #a8bdb0;
  --muted: #74887c;
  --green: #2ee68c;
  --green-hot: #4ef59e;
  --green-ink: #03140c;
  --font-display: "Anton", Impact, "Arial Narrow", sans-serif;
  --font-body: "Archivo", system-ui, sans-serif;
  --header-h: 80px;
  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
  --max: 1120px;
}

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .strip-track { animation: none !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
  .hero-anim > * { opacity: 1 !important; transform: none !important; }
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.5;
  font-size: 1rem;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }

.accent { color: var(--green); font-style: normal; }

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 200;
  background: var(--green); color: var(--green-ink);
  padding: 0.7rem 1rem; font-weight: 700;
}
.skip-link:focus { left: 0; top: 0; }

.container {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

/* HEADER — plat, net */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header-h);
  background: var(--bg);
  border-bottom: 2px solid var(--line);
}

.header-inner {
  position: relative;
  width: min(100% - 1.25rem, 1200px);
  margin-inline: auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.brand-wolf {
  width: auto;
  height: 52px;
  object-fit: contain;
  filter: invert(1);
  flex-shrink: 0;
}

.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-name {
  font-family: var(--font-display);
  font-size: 1.45rem;
  letter-spacing: 0.06em;
  color: var(--text);
  text-transform: uppercase;
}
.brand-sub {
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
  margin-top: 0.25rem;
}

.nav {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  display: flex;
  align-items: center;
  gap: clamp(1.1rem, 2.4vw, 2.1rem);
}
.nav a {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-dim);
  transition: color 0.12s;
}
.nav a:hover,
.nav a:focus-visible { color: var(--green); outline: none; }

.header-end {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-left: auto;
  flex-shrink: 0;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  background: var(--surface);
}
.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--text);
  transition: transform 0.2s, opacity 0.2s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* BUTTONS — rectangles, uppercase, hard */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.35rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 0;
  transition: background 0.12s, color 0.12s, border-color 0.12s;
  white-space: nowrap;
}
.btn:focus-visible { outline: 2px solid var(--green); outline-offset: 2px; }

.btn-accent {
  background: var(--green);
  color: var(--green-ink);
}
.btn-accent:hover { background: var(--green-hot); }

.btn-ghost {
  border: 1px solid rgba(240, 245, 241, 0.4);
  color: var(--text);
  background: transparent;
}
.btn-ghost:hover {
  border-color: var(--green);
  color: var(--green);
}

.btn-ghost-light {
  border: 1px solid rgba(240, 245, 241, 0.45);
  color: var(--text);
}
.btn-ghost-light:hover { border-color: var(--green); color: var(--green); }

.btn-sm { padding: 0.65rem 1rem; font-size: 0.68rem; }

/* HERO */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: grid;
  align-items: end;
  padding: calc(var(--header-h) + 2rem) 0 3.5rem;
}
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-media img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 28%;
}
.hero-scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(5,7,5,0.95) 0%, rgba(5,7,5,0.72) 42%, rgba(5,7,5,0.3) 100%),
    linear-gradient(0deg, rgba(5,7,5,0.92) 0%, transparent 45%);
}

.hero-content {
  position: relative; z-index: 1;
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
  max-width: 700px;
  margin-left: max(1rem, calc((100% - var(--max)) / 2));
}

.hero-anim > * {
  opacity: 0;
  transform: translateY(12px);
  animation: rise 0.45s var(--ease) forwards;
}
.hero-anim > *:nth-child(1) { animation-delay: 0.04s; }
.hero-anim > *:nth-child(2) { animation-delay: 0.1s; }
.hero-anim > *:nth-child(3) { animation-delay: 0.16s; }
.hero-anim > *:nth-child(4) { animation-delay: 0.22s; }
.hero-anim > *:nth-child(5) { animation-delay: 0.28s; }
@keyframes rise {
  to { opacity: 1; transform: none; }
}

.eyebrow {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 0.85rem;
}

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

h1 {
  font-size: clamp(3.8rem, 11vw, 7.4rem);
  color: var(--text);
  margin-bottom: 1.1rem;
}
h1 .accent { color: var(--green); }

.hero-lead {
  font-size: 1.02rem;
  color: var(--text-dim);
  max-width: 34rem;
  margin-bottom: 1.5rem;
}
.hero-actions {
  display: flex; flex-wrap: wrap; gap: 0.65rem; margin-bottom: 2rem;
}

/* stats = bandeau, pas des cards soft */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 38rem;
  border-top: 2px solid var(--green);
  border-bottom: 1px solid var(--line);
}
.hero-stats > div {
  padding: 0.95rem 0.85rem;
  border-right: 1px solid var(--line);
}
.hero-stats > div:last-child { border-right: 0; }
.hero-stats dt {
  font-family: var(--font-display);
  font-size: 2.1rem;
  letter-spacing: 0.02em;
  color: var(--green);
  line-height: 1;
}
.hero-stats dd {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 0.4rem;
  line-height: 1.25;
}

/* STRIP */
.strip {
  background: var(--green);
  color: var(--green-ink);
  overflow: hidden;
  padding: 0.7rem 0;
}
.strip-track {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  width: max-content;
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: marquee 24s linear infinite;
  will-change: transform;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* SECTIONS */
.section { padding: clamp(3.5rem, 7vw, 5.5rem) 0; }

.section-head { max-width: 40rem; margin-bottom: 2rem; }
.section-head-center {
  margin-inline: auto;
  text-align: center;
  max-width: 42rem;
}
.section-head h2 {
  font-size: clamp(2.9rem, 6.5vw, 4.6rem);
  color: var(--text);
  margin-bottom: 0.75rem;
}
.section-head h2 .accent { color: var(--green); }
.lead { color: var(--muted); font-size: 1rem; }
.lead strong { color: var(--green); font-weight: 700; }

/* DISCIPLINES — blocs francs */
.disc-stack {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--line);
}
.disc-row {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  min-height: 280px;
  background: var(--surface);
  border-bottom: 1px solid var(--line);
  transition: background 0.15s;
}
.disc-row:last-child { border-bottom: 0; }
.disc-row:hover { background: var(--surface-2); }
.disc-row-flip { direction: rtl; }
.disc-row-flip > * { direction: ltr; }

.disc-visual {
  min-height: 200px;
  background-size: cover;
  background-position: center;
  position: relative;
  border-right: 2px solid var(--green);
}
.disc-row-flip .disc-visual {
  border-right: 0;
  border-left: 2px solid var(--green);
}
.disc-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 20%, rgba(16, 22, 18, 0.45));
}
.disc-row-flip .disc-visual::after {
  background: linear-gradient(270deg, transparent 20%, rgba(16, 22, 18, 0.45));
}

.disc-body {
  padding: clamp(1.4rem, 3.5vw, 2.2rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.disc-kicker {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 0.4rem;
}
.disc-body h3 {
  font-size: clamp(3.4rem, 7vw, 5.2rem);
  color: var(--text);
  margin-bottom: 0.65rem;
}
.disc-body > p:not(.disc-kicker):not(.disc-meta) {
  color: var(--text-dim);
  max-width: 34rem;
  margin-bottom: 0.9rem;
}
.disc-meta {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  border-top: 1px solid var(--line);
  padding-top: 0.8rem;
}

/* ESPRIT */
.esprit {
  position: relative;
  min-height: 560px;
  display: grid;
  align-items: center;
  padding: clamp(3rem, 6vw, 4.5rem) 0;
  overflow: hidden;
  border-block: 2px solid var(--line);
}
.esprit-bg { position: absolute; inset: 0; }
.esprit-bg img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 20%;
  filter: brightness(0.38) grayscale(0.15);
}
.esprit-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(95deg, rgba(5,7,5,0.94) 0%, rgba(5,7,5,0.55) 55%, rgba(5,7,5,0.2) 100%);
}
.esprit-panel {
  position: relative;
  z-index: 1;
  width: min(100% - 2rem, 520px);
  margin-left: max(1rem, calc((100% - var(--max)) / 2));
  padding-left: 1.25rem;
  border-left: 3px solid var(--green);
}
.esprit-panel h2 {
  font-size: clamp(2.7rem, 5.5vw, 4.1rem);
  color: var(--text);
  margin-bottom: 0.95rem;
}
.esprit-panel h2 .accent { color: var(--green); }
.esprit-text {
  color: var(--text-dim);
  font-size: 1.02rem;
  margin-bottom: 1rem;
  max-width: 30rem;
}
.esprit-creds {
  color: var(--green);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.65;
  margin-bottom: 1.4rem;
  max-width: 34rem;
}

/* PLANNING */
.booker {
  max-width: 860px;
  margin-inline: auto;
  background: var(--surface);
  border: 1px solid var(--line);
  border-top: 3px solid var(--green);
  padding: 1.25rem;
}

.booker-top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.booker-hint {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.week-switch {
  display: inline-flex;
  align-items: center;
  gap: 0;
  border: 1px solid var(--line);
  background: var(--ink);
}
.week-switch button {
  width: 42px;
  height: 42px;
  color: var(--text);
  font-size: 1rem;
  border-right: 1px solid var(--line);
  transition: background 0.12s, color 0.12s;
}
.week-switch button:last-of-type { border-right: 0; border-left: 1px solid var(--line); }
.week-switch button:hover {
  background: var(--green);
  color: var(--green-ink);
}
.week-switch strong {
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: 0.05em;
  min-width: 11.5rem;
  text-align: center;
  color: var(--text);
  padding: 0 0.6rem;
}

.day-tabs {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0;
  margin-bottom: 1rem;
  border: 1px solid var(--line);
}
.day-tab {
  padding: 0.75rem 0.2rem;
  text-align: center;
  background: var(--ink);
  border-right: 1px solid var(--line);
  color: var(--muted);
  transition: background 0.12s, color 0.12s;
}
.day-tab:last-child { border-right: 0; }
.day-tab:hover { color: var(--text); background: var(--surface-2); }
.day-tab.active {
  background: var(--green);
  color: var(--green-ink);
}
.day-tab .day-name {
  display: block;
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: 0.05em;
}
.day-tab .day-date {
  display: block;
  font-size: 0.65rem;
  font-weight: 700;
  margin-top: 0.15rem;
  letter-spacing: 0.04em;
}

.session-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  min-height: 240px;
  border: 1px solid var(--line);
}

.session {
  display: grid;
  grid-template-columns: 84px 1fr auto;
  align-items: center;
  gap: 0.85rem;
  padding: 0.95rem 1rem;
  background: var(--ink);
  border-bottom: 1px solid var(--line);
  transition: background 0.12s;
}
.session:last-child { border-bottom: 0; }
.session:hover { background: var(--surface-2); }

.session-time {
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: 0.03em;
  color: var(--green);
  line-height: 1;
}
.session-name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: 0.04em;
  color: var(--text);
  line-height: 1.05;
  text-transform: uppercase;
}
.session-type {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.session-empty {
  padding: 2.5rem 1rem;
  text-align: center;
  color: var(--muted);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.75rem;
}

/* TARIFS */
.tarifs-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}
.tarifs-head .section-head { margin-bottom: 0; }

.pricing-toggle {
  display: inline-flex;
  border: 1px solid var(--line);
}
.pricing-toggle button {
  padding: 0.7rem 1rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  background: var(--surface);
  border-right: 1px solid var(--line);
  transition: background 0.12s, color 0.12s;
}
.pricing-toggle button:last-child { border-right: 0; }
.pricing-toggle button.active {
  background: var(--green);
  color: var(--green-ink);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--line);
}
.price-card {
  background: var(--surface);
  border-right: 1px solid var(--line);
  padding: 1.35rem 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  transition: background 0.12s;
}
.price-card:last-child { border-right: 0; }
.price-card:hover { background: var(--surface-2); }
.price-card.featured {
  background: #0f1c15;
  box-shadow: inset 0 3px 0 var(--green);
}
.price-label {
  font-family: var(--font-display);
  font-size: 1.55rem;
  letter-spacing: 0.05em;
  color: var(--text);
}
.price-desc {
  font-size: 0.78rem;
  color: var(--muted);
  margin-bottom: 0.6rem;
  font-weight: 500;
}
.price-value {
  font-family: var(--font-display);
  font-size: 3.2rem;
  line-height: 1;
  color: var(--green);
  letter-spacing: 0.02em;
}
.price-value sup { font-size: 1.1rem; vertical-align: super; margin-right: 2px; }
.price-period {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1rem;
}
.price-card a {
  margin-top: auto;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
}
.price-card a:hover { color: var(--green-hot); }

.passes {
  margin-top: 1.75rem;
  padding: 1.25rem;
  border: 1px solid var(--line);
  background: var(--surface);
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 1.25rem;
  align-items: center;
}
.passes h3 {
  font-size: 1.7rem;
  color: var(--text);
  margin-top: 0.2rem;
}
.pass-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--line);
}
.pass {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 1rem 0.9rem;
  background: var(--ink);
  border-right: 1px solid var(--line);
  transition: background 0.12s;
}
.pass:last-child { border-right: 0; }
.pass:hover { background: var(--surface-2); }
.pass span {
  font-size: 0.65rem;
  color: var(--muted);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.pass strong {
  font-family: var(--font-display);
  font-size: 1.7rem;
  letter-spacing: 0.03em;
  color: var(--green);
  font-weight: 400;
}

/* CTA full-bleed, sharp */
.cta-band {
  margin: 0;
  border: 0;
  border-block: 2px solid var(--green);
  background:
    linear-gradient(100deg, rgba(5,7,5,0.94), rgba(5,7,5,0.55)),
    url("images/gym-02.jpg") center/cover no-repeat;
  padding: clamp(2.75rem, 5vw, 4rem) 0;
}
.cta-band-inner {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.cta-band h2 {
  font-size: clamp(2.6rem, 5.5vw, 4rem);
  color: var(--text);
}
.cta-band h2 .accent { color: var(--green); }
.cta-actions { display: flex; flex-wrap: wrap; gap: 0.65rem; }

/* FOOTER */
.site-footer {
  background: #030503;
  padding: 2.75rem 0 0;
  border-top: 1px solid var(--line);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 2rem;
  padding-bottom: 2rem;
}
.footer-logo {
  width: auto;
  height: 64px;
  object-fit: contain;
  filter: invert(1);
  margin-bottom: 0.7rem;
  background: none;
  padding: 0;
}
.footer-tag { color: var(--muted); font-size: 0.9rem; }
.site-footer h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  letter-spacing: 0.08em;
  color: var(--green);
  margin-bottom: 0.7rem;
}
.site-footer p {
  color: var(--text-dim);
  font-size: 0.92rem;
  margin-bottom: 0.3rem;
}
.site-footer a:hover { color: var(--green); }
.footer-bottom {
  border-top: 1px solid var(--line);
  padding: 1rem 0;
  text-align: center;
}
.footer-bottom p {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0;
}

/* MODAL */
.book-modal {
  position: fixed;
  inset: 0;
  z-index: 150;
  background: rgba(0, 0, 0, 0.82);
  display: grid;
  place-items: center;
  padding: 1.25rem;
}
.book-modal[hidden] { display: none; }
.book-dialog {
  width: min(100%, 400px);
  background: var(--surface);
  border: 1px solid var(--line);
  border-top: 3px solid var(--green);
  padding: 1.5rem 1.25rem 1.25rem;
  position: relative;
}
.book-close {
  position: absolute;
  top: 0.55rem;
  right: 0.75rem;
  width: 34px;
  height: 34px;
  font-size: 1.35rem;
  line-height: 1;
  color: var(--muted);
  background: var(--ink);
  border: 1px solid var(--line);
}
.book-close:hover { color: var(--text); }
.book-dialog h2 {
  font-size: 2rem;
  color: var(--text);
  margin-bottom: 0.4rem;
}
#book-meta { color: var(--muted); margin-bottom: 1.25rem; font-size: 0.9rem; }
.book-actions { display: flex; flex-wrap: wrap; gap: 0.5rem; }

.reveal {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
}
.reveal.is-in { opacity: 1; transform: none; }

/* RESPONSIVE */
@media (max-width: 980px) {
  .disc-row,
  .disc-row-flip { grid-template-columns: 1fr; direction: ltr; }
  .disc-visual {
    min-height: 180px;
    border-right: 0 !important;
    border-left: 0 !important;
    border-bottom: 2px solid var(--green);
  }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .price-card:nth-child(2n) { border-right: 0; }
  .price-card:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .pass-grid { grid-template-columns: repeat(2, 1fr); }
  .pass:nth-child(2n) { border-right: 0; }
  .pass:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .passes { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  :root { --header-h: 70px; }

  .nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    transform: translateY(-120%);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.65rem 1rem 1rem;
    background: var(--bg);
    border-bottom: 2px solid var(--line);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.2s, opacity 0.2s;
    z-index: 99;
  }
  .nav.is-open {
    transform: none;
    opacity: 1;
    pointer-events: auto;
  }
  .nav a {
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--line);
    font-size: 0.78rem;
  }
  .nav-toggle { display: flex; }
  .btn-header { display: none; }
  .brand-wolf { height: 40px; }
  .brand-name { font-size: 1.15rem; }
  .brand-sub { display: none; }

  .day-tabs { grid-template-columns: repeat(4, 1fr); }
  .day-tab:nth-child(4) { border-right: 0; }
  .day-tab:nth-child(n+5) { border-top: 1px solid var(--line); }
  .session {
    grid-template-columns: 68px 1fr;
    grid-template-rows: auto auto;
  }
  .session .btn { grid-column: 1 / -1; justify-self: stretch; }
}

@media (max-width: 560px) {
  .hero-stats { grid-template-columns: 1fr; }
  .hero-stats > div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .hero-stats > div:last-child { border-bottom: 0; }
  .pricing-grid,
  .pass-grid,
  .footer-grid { grid-template-columns: 1fr; }
  .price-card,
  .pass {
    border-right: 0 !important;
    border-bottom: 1px solid var(--line);
  }
  .price-card:last-child,
  .pass:last-child { border-bottom: 0; }
  .day-tabs { grid-template-columns: repeat(3, 1fr); }
  .pricing-toggle { width: 100%; }
  .pricing-toggle button { flex: 1; font-size: 0.58rem; padding: 0.7rem 0.25rem; }
  h1 { font-size: 3.2rem; }
  .esprit-panel { margin-left: 1rem; }
}
