/* ============================================
   BWT CENTER HORNU — landing styles
   Palette: bone + ink + terracotta accent
   ============================================ */

:root {
  /* Surface */
  --bone:        oklch(96.5% 0.012 80);
  --bone-soft:   oklch(93.5% 0.015 75);
  --bone-line:   oklch(86% 0.018 75);
  --paper:       oklch(99% 0.005 80);

  /* Ink */
  --ink:         oklch(18% 0.025 250);
  --ink-soft:    oklch(35% 0.022 250);
  --ink-mute:    oklch(55% 0.015 250);
  --ink-faint:   oklch(72% 0.012 250);

  /* Accent — or / gold (logo BWT) */
  --accent:      oklch(72% 0.13 86);
  --accent-deep: oklch(60% 0.12 82);
  --accent-soft: oklch(95% 0.04 90);
  --gold-grad: linear-gradient(135deg, oklch(78% 0.12 90) 0%, oklch(64% 0.13 80) 100%);

  /* Dark surface (for inverted cards) */
  --night:       oklch(17% 0.028 245);
  --night-soft:  oklch(24% 0.030 245);
  --night-line:  oklch(32% 0.025 245);

  /* Type */
  --serif: "Cormorant Garamond", "EB Garamond", Georgia, serif;
  --sans:  "Geist", "Geist Sans", -apple-system, BlinkMacSystemFont, "Helvetica Neue", sans-serif;
  --mono:  "JetBrains Mono", "IBM Plex Mono", ui-monospace, monospace;

  /* Layout */
  --gutter: clamp(20px, 4vw, 56px);
  --section-y: clamp(80px, 10vw, 160px);
  --max: 1480px;

  /* Radii */
  --r-sm: 10px;
  --r-md: 18px;
  --r-lg: 28px;
  --r-pill: 999px;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bone);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body {
  overflow-x: hidden;
}

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

/* ============================================
   Typography utilities
   ============================================ */

.eyebrow {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-weight: 500;
}

.eyebrow .dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  margin: 0 8px 0 0;
  vertical-align: 0;
}

.headline {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.02;
  color: var(--ink);
  margin: 0;
  text-wrap: pretty;
  overflow-wrap: break-word;
}

.headline em {
  font-style: italic;
  font-weight: 500;
  color: var(--accent);
}

.h-display { font-size: clamp(56px, 9.2vw, 156px); }
.h-section { font-size: clamp(44px, 6.4vw, 104px); }
.h-card    { font-size: clamp(28px, 3vw, 42px); }

.lead {
  font-size: clamp(16px, 1.15vw, 19px);
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 58ch;
  text-wrap: pretty;
}

/* ============================================
   Layout helpers
   ============================================ */

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

.section {
  padding: var(--section-y) 0;
  position: relative;
}

.section-head {
  display: flex;
  align-items: flex-end;
  gap: 48px;
  margin-bottom: clamp(40px, 6vw, 80px);
  flex-wrap: wrap;
}

.section-head .lead { flex: 1; min-width: 280px; }

.rule {
  height: 1px;
  background: var(--bone-line);
  width: 100%;
  border: 0;
  margin: 0;
}

/* ============================================
   Nav
   ============================================ */

.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 18px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: color-mix(in oklch, var(--bone) 92%, transparent);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  transition: padding .25s ease, background .25s ease, border-color .25s ease;
  border-bottom: 1px solid transparent;
}

.nav.scrolled {
  padding-top: 12px;
  padding-bottom: 12px;
  background: color-mix(in oklch, var(--bone) 96%, transparent);
  border-bottom-color: var(--bone-line);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--paper);
  border: 1px solid var(--bone-line);
  display: grid;
  place-items: center;
  overflow: hidden;
  flex-shrink: 0;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
  gap: 3px;
}

.brand-text .name {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 21px;
  letter-spacing: -0.01em;
}

.brand-text .sub {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-mute);
  white-space: nowrap;
}

@media (max-width: 1180px) {
  .brand-text .sub { display: none; }
}

.nav-links {
  display: flex;
  gap: 20px;
  font-size: 14px;
  color: var(--ink-soft);
}

.nav-links a { transition: color .15s ease; white-space: nowrap; }
.nav-links a:hover { color: var(--ink); }

@media (max-width: 1180px) {
  .nav-links { gap: 14px; font-size: 13px; }
}

@media (max-width: 1024px) {
  .nav-links { display: none; }
}

/* -------- Mobile burger menu -------- */
.nav-burger {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  border: 1px solid var(--bone-line);
  background: var(--paper);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  flex-shrink: 0;
}
.nav-burger-bar {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 2px;
  background: var(--ink);
  transition: transform .28s ease, opacity .2s ease;
}
.nav-burger.open .nav-burger-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open .nav-burger-bar:nth-child(2) { opacity: 0; }
.nav-burger.open .nav-burger-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 99;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 96px 20px 28px;
  background: color-mix(in oklch, var(--bone) 98%, transparent);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border-bottom: 1px solid var(--bone-line);
  transform: translateY(-105%);
  transition: transform .34s cubic-bezier(.4,0,.2,1);
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateY(0);
  pointer-events: auto;
}
.mobile-menu-links {
  display: flex;
  flex-direction: column;
}
.mobile-menu-links a {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.01em;
  padding: 14px 4px;
  border-bottom: 1px solid var(--bone-line);
  transition: color .15s ease, padding-left .2s ease;
}
.mobile-menu-links a:active { color: var(--accent, var(--ink)); padding-left: 12px; }
.mobile-menu-cta {
  margin-top: 22px;
  justify-content: center;
  width: 100%;
  font-size: 16px;
  padding: 16px 24px;
}
.mobile-menu-scrim {
  position: fixed;
  inset: 0;
  z-index: 98;
  background: color-mix(in oklch, var(--ink) 38%, transparent);
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
}
.mobile-menu-scrim.open {
  opacity: 1;
  pointer-events: auto;
}
body.menu-open { overflow: hidden; }

@media (max-width: 1024px) {
  .nav-burger { display: flex; }
  .nav-cta-desktop { display: none; }
}

/* ============================================
   Buttons
   ============================================ */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: var(--r-pill);
  font-family: var(--sans);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: -0.005em;
  transition: transform .15s ease, background .2s ease, color .2s ease, box-shadow .25s ease;
  cursor: pointer;
  white-space: nowrap;
}

.btn .arr {
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(255,255,255,.18);
  font-size: 13px;
  transition: transform .2s ease;
}

.btn:hover .arr { transform: translateX(3px); }

.btn-primary {
  background: var(--accent);
  color: var(--ink);
  box-shadow: 0 1px 0 rgba(255,255,255,.4) inset, 0 8px 22px -8px var(--accent);
  font-weight: 600;
}
.btn-primary:hover { background: var(--accent-deep); color: var(--paper); }

.btn-primary .arr {
  background: rgba(0,0,0,.12);
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-bottom: 1px solid var(--ink);
  border-radius: 0;
  padding: 14px 4px;
}
.btn-ghost:hover { color: var(--accent); border-color: var(--accent); }

.btn-ink {
  background: var(--ink);
  color: var(--paper);
}
.btn-ink:hover { background: var(--night-soft); }

/* ============================================
   Hero
   ============================================ */

.hero {
  padding: clamp(60px, 8vh, 100px) 0 clamp(60px, 8vw, 120px);
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) clamp(280px, 24vw, 360px);
  gap: clamp(32px, 5vw, 96px);
  align-items: start;
}

@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; }
}

.hours-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  border: 1px solid var(--bone-line);
  border-radius: var(--r-pill);
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 56px;
}

.hours-pill .live {
  width: 7px; height: 7px; border-radius: 50%;
  background: oklch(72% 0.16 145);
  box-shadow: 0 0 0 3px color-mix(in oklch, oklch(72% 0.16 145) 30%, transparent);
}

.hero-title { margin-bottom: 40px; }

.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.stat-card {
  border-radius: var(--r-md);
  padding: 28px;
  position: relative;
}

.stat-card .label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.65;
  margin-bottom: 28px;
  display: block;
}

.stat-card .figure {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(36px, 3.2vw, 52px);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}

.stat-card .figure em {
  font-style: italic;
  color: var(--accent);
}

.stat-card .cap {
  font-size: 14px;
  opacity: 0.7;
  line-height: 1.4;
}

.stat-card.dark { background: var(--night); color: var(--paper); }
.stat-card.bone { background: var(--bone-soft); color: var(--ink); border: 1px solid var(--bone-line); }
.stat-card.accent { background: var(--ink); color: var(--paper); border: 1px solid var(--ink); }
.stat-card.accent .label { color: var(--accent); opacity: 1; }
.stat-card.accent .figure em { color: var(--accent); }
.stat-card.accent .cap { color: rgba(255,255,255,.7); }

/* ============================================
   Marquee
   ============================================ */

.marquee {
  padding: 32px 0;
  border-top: 1px solid var(--bone-line);
  border-bottom: 1px solid var(--bone-line);
  overflow: hidden;
  background: var(--bone);
}

.marquee-track {
  display: flex;
  gap: 64px;
  animation: marquee 40s linear infinite;
  white-space: nowrap;
  width: max-content;
}

.marquee-item {
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
  display: inline-flex;
  align-items: center;
  gap: 64px;
}

.marquee-item::after {
  content: "";
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent);
  display: inline-block;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============================================
   Results (Avant/Après)
   ============================================ */

.results-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

@media (max-width: 980px) { .results-grid { grid-template-columns: 1fr; } }

.result-card {
  background: var(--paper);
  border: 1px solid var(--bone-line);
  border-radius: var(--r-lg);
  overflow: hidden;
  padding: 14px;
  transition: transform .3s ease, box-shadow .3s ease;
}

.result-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 48px -32px rgba(0,0,0,.18);
}

.result-photo {
  position: relative;
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--bone-soft);
  aspect-ratio: 4/3;
}

.result-photo image-slot {
  width: 100%;
  height: 100%;
}

.result-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,.25));
  pointer-events: none;
  border-radius: var(--r-md);
}

.result-name {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--night);
  color: var(--paper);
  padding: 10px 14px;
  border-radius: 12px;
  z-index: 2;
}

.result-name .n {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 500;
  line-height: 1;
  display: block;
  margin-bottom: 4px;
}

.result-name .d {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.7;
}

.result-tag {
  position: absolute;
  bottom: 16px;
  right: 16px;
  background: var(--accent);
  color: var(--ink);
  padding: 8px 14px;
  border-radius: var(--r-pill);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  z-index: 2;
}

.result-body {
  padding: 26px 16px 12px;
}

.result-quote {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(20px, 1.6vw, 24px);
  line-height: 1.25;
  color: var(--ink);
  margin: 0 0 22px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--bone-line);
  text-wrap: balance;
}

.result-text {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.55;
  margin: 0;
}

/* ============================================
   Concept
   ============================================ */

.concept {
  background: var(--bone);
}

.concept-grid {
  display: grid;
  grid-template-columns: minmax(0, 280px) minmax(0, 1fr);
  gap: clamp(40px, 6vw, 120px);
}

@media (max-width: 880px) {
  .concept-grid { grid-template-columns: 1fr; }
}

.concept-eyebrow {
  position: sticky;
  top: 120px;
  align-self: start;
}

.concept-eyebrow .rule {
  margin-top: 16px;
  background: var(--bone-line);
}

.concept-headline {
  margin-bottom: 80px;
  max-width: 18ch;
}

.principles {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--bone-line);
}

.principle {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 24px;
  padding: 36px 0;
  border-bottom: 1px solid var(--bone-line);
}

.principle-num {
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.16em;
  color: var(--accent);
}

.principle-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(24px, 2.2vw, 32px);
  line-height: 1.15;
  margin: 0 0 16px;
  letter-spacing: -0.01em;
}

.principle-body {
  font-size: 16px;
  color: var(--ink-soft);
  line-height: 1.6;
  max-width: 56ch;
  margin: 0;
}

/* ============================================
   Comparison
   ============================================ */

.compare {
  background: var(--night);
  color: var(--paper);
  border-radius: var(--r-lg);
  padding: clamp(40px, 6vw, 80px);
  margin: 0 var(--gutter);
}

.compare-head {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.5fr);
  gap: 48px;
  margin-bottom: 56px;
  align-items: end;
}

@media (max-width: 880px) {
  .compare { margin: 0 calc(-1 * var(--gutter) + 12px); border-radius: 0; padding-left: 24px; padding-right: 24px; }
  .compare-head { grid-template-columns: 1fr; }
}

.compare-eyebrow { color: rgba(255,255,255,.55); }

.compare-headline {
  color: var(--paper);
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(28px, 3.4vw, 48px);
  line-height: 1.1;
  margin: 16px 0 0;
  letter-spacing: -0.015em;
}

.compare-cols {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr) minmax(0, 1fr);
  gap: 24px;
}

@media (max-width: 720px) {
  .compare-cols { grid-template-columns: 1fr; gap: 12px; }
}

.compare-col-head {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
  padding: 24px 0 18px;
  border-bottom: 1px solid var(--night-line);
}

.compare-col-head.bwt { color: var(--accent); }

.compare-row {
  display: contents;
}

.compare-cell {
  padding: 20px 0;
  border-bottom: 1px solid var(--night-line);
  font-size: 15px;
}

.compare-cell.label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
}

.compare-cell.them {
  color: rgba(255,255,255,.45);
}

.compare-cell.bwt {
  color: var(--paper);
  font-weight: 500;
}

/* ============================================
   Process — 6 steps
   ============================================ */

.process-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
  gap: 32px;
  align-items: start;
}

@media (max-width: 980px) { .process-grid { grid-template-columns: 1fr; } }

.steps-list {
  border-top: 1px solid var(--bone-line);
}

.step {
  display: grid;
  grid-template-columns: 56px 1fr 70px;
  align-items: center;
  gap: 16px;
  padding: 22px 16px;
  border-bottom: 1px solid var(--bone-line);
  border-radius: 6px;
  cursor: pointer;
  transition: background .2s ease, padding .2s ease;
}

.step:hover { background: var(--bone-soft); }

.step.active {
  background: var(--bone-soft);
}

.step.active .step-num { color: var(--accent); }

.step-num {
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.12em;
  color: var(--ink-mute);
  transition: color .2s ease;
}

.step-title {
  font-family: var(--serif);
  font-size: clamp(20px, 1.8vw, 26px);
  font-weight: 500;
  letter-spacing: -0.005em;
  line-height: 1.15;
}

.step-dur {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mute);
  text-align: right;
}

.step-detail {
  background: var(--paper);
  border: 1px solid var(--bone-line);
  border-radius: var(--r-lg);
  padding: clamp(28px, 3vw, 44px);
  position: sticky;
  top: 110px;
  min-height: 380px;
  display: flex;
  flex-direction: column;
}

.step-detail .badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-soft);
  color: var(--accent-deep);
  padding: 6px 12px;
  border-radius: var(--r-pill);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  width: max-content;
}

.step-detail .meta {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-left: 12px;
}

.step-detail .meta-line {
  display: flex;
  align-items: center;
  margin-bottom: 24px;
}

.step-detail .step-h {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(32px, 3.6vw, 52px);
  line-height: 1.05;
  letter-spacing: -0.015em;
  margin: 0 0 20px;
}

.step-detail .step-p {
  font-size: 16px;
  color: var(--ink-soft);
  line-height: 1.6;
  margin: 0 0 28px;
  max-width: 52ch;
}

.step-illu {
  flex: 1;
  display: grid;
  place-items: center;
  font-family: var(--serif);
  font-size: clamp(140px, 18vw, 240px);
  font-style: italic;
  font-weight: 400;
  color: var(--bone-line);
  letter-spacing: -0.04em;
  line-height: 1;
  user-select: none;
  margin-top: -20px;
}

.step-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--bone-line);
}

.step-nav-btn {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  padding: 8px 0;
  transition: color .15s ease;
}
.step-nav-btn:hover { color: var(--accent); }
.step-nav-btn:disabled { color: var(--ink-faint); cursor: not-allowed; }

.step-dots {
  display: flex;
  gap: 6px;
}

.step-dot {
  width: 22px;
  height: 4px;
  border-radius: 2px;
  background: var(--bone-line);
  transition: background .2s ease, width .2s ease;
}

.step-dot.active { background: var(--accent); width: 32px; }

/* ============================================
   Pricing
   ============================================ */

.pricing-head {
  text-align: center;
  margin-bottom: 80px;
}

.pricing-head .headline {
  max-width: 16ch;
  margin: 0 auto 24px;
}

.pricing-head .lead {
  margin: 0 auto;
  text-align: center;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

@media (max-width: 980px) { .pricing-grid { grid-template-columns: 1fr; } }

.plan {
  background: var(--paper);
  border: 1px solid var(--bone-line);
  border-radius: var(--r-lg);
  padding: 36px 32px 32px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform .3s ease;
}

.plan:hover { transform: translateY(-4px); }

.plan.featured {
  background: var(--night);
  color: var(--paper);
  border-color: var(--night);
}

.plan.featured .plan-eyebrow { color: var(--accent); }
.plan.featured .plan-name { color: var(--paper); }
.plan.featured .plan-desc { color: rgba(255,255,255,.6); }
.plan.featured .plan-sep { background: var(--night-line); }
.plan.featured .plan-li { color: rgba(255,255,255,.8); }
.plan.featured .plan-li svg { color: var(--accent); }
.plan.featured .plan-stat { color: rgba(255,255,255,.6); }
.plan.featured .plan-stat .v { color: var(--paper); }
.plan.featured .plan-foot { border-top-color: var(--night-line); }

.plan-flag {
  position: absolute;
  top: 20px; right: 20px;
  background: var(--accent);
  color: var(--ink);
  padding: 6px 12px;
  border-radius: var(--r-pill);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
}

.plan-eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}

.plan-name {
  font-family: var(--serif);
  font-size: clamp(28px, 2.4vw, 36px);
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.1;
  margin: 0 0 12px;
}

.plan-desc {
  font-size: 14px;
  color: var(--ink-mute);
  line-height: 1.5;
  margin: 0 0 36px;
  min-height: 42px;
}

.plan-price {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 28px;
}

.plan-price .amt {
  font-family: var(--serif);
  font-size: clamp(56px, 6vw, 84px);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 0.9;
}

.plan-price .per {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

.plan.featured .plan-price .per { color: rgba(255,255,255,.55); }

.plan-sep {
  height: 1px;
  background: var(--bone-line);
  margin: 0 0 24px;
}

.plan-list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.plan-li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 14.5px;
  color: var(--ink-soft);
}

.plan-li svg {
  width: 16px; height: 16px;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 3px;
}

.plan-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding: 18px 0;
  border-top: 1px solid var(--bone-line);
  margin-bottom: 24px;
}

.plan.featured .plan-stats { border-top-color: var(--night-line); }

.plan-stat .v {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1;
  margin-bottom: 6px;
  color: var(--ink);
}

.plan-stat {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mute);
  line-height: 1.4;
}

.plan-foot {
  margin-top: auto;
}

.plan-cta {
  width: 100%;
  justify-content: space-between;
}

.plan.featured .plan-cta {
  background: var(--accent);
}

/* Included strip */
.included {
  background: var(--bone-soft);
  border: 1px solid var(--bone-line);
  border-radius: var(--r-lg);
  padding: 40px;
  margin-top: 24px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 2fr);
  gap: 48px;
  align-items: start;
}

@media (max-width: 720px) { .included { grid-template-columns: 1fr; gap: 24px; padding: 28px; } }

.included-h {
  font-family: var(--serif);
  font-size: clamp(24px, 2vw, 30px);
  font-weight: 500;
  margin: 8px 0 0;
  letter-spacing: -0.005em;
}

.included-list {
  list-style: none;
  margin: 0; padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 32px;
}

@media (max-width: 720px) { .included-list { grid-template-columns: 1fr; } }

.included-list li {
  display: flex; gap: 10px;
  font-size: 14.5px;
  color: var(--ink-soft);
}

.included-list svg { width: 16px; height: 16px; color: var(--accent); flex-shrink: 0; margin-top: 3px; }

.cadence {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 24px;
}

@media (max-width: 720px) { .cadence { grid-template-columns: 1fr; } }

.cadence-card {
  border: 1px solid var(--bone-line);
  border-radius: var(--r-lg);
  padding: 32px;
  background: var(--paper);
}

.cadence-card .eb { margin-bottom: 24px; }

.cadence-card .big {
  font-family: var(--serif);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1;
}

.cadence-card .big em { font-style: italic; color: var(--accent); }

.cadence-card .big .per {
  font-family: var(--sans);
  font-size: 0.42em;
  font-weight: 400;
  color: var(--ink-mute);
  letter-spacing: 0;
  margin-left: 8px;
  font-style: normal;
}

.cadence-card .body {
  margin-top: 18px;
  font-size: 14.5px;
  color: var(--ink-soft);
  line-height: 1.5;
}

/* ============================================
   Reserve / Contact
   ============================================ */

.reserve-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}

@media (max-width: 980px) { .reserve-grid { grid-template-columns: 1fr; } }

.reserve-h { max-width: 14ch; }

.reserve-lead { margin: 32px 0 40px; }

.location-card {
  background: var(--night);
  color: var(--paper);
  border-radius: var(--r-lg);
  padding: 36px;
  background-image:
    radial-gradient(ellipse at 80% 20%, oklch(35% 0.06 245) 0%, transparent 60%),
    radial-gradient(circle at 15% 90%, oklch(28% 0.05 30) 0%, transparent 50%);
  background-color: var(--night);
}

.location-card .pin {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
  margin-bottom: 20px;
}

.location-card .pin svg { width: 16px; height: 16px; }

.location-card .place {
  font-family: var(--serif);
  font-size: clamp(28px, 2.8vw, 38px);
  font-weight: 500;
  margin: 0 0 14px;
  letter-spacing: -0.01em;
}

.location-card .addr {
  font-size: 14.5px;
  color: rgba(255,255,255,.75);
  margin: 0;
  line-height: 1.5;
}

.location-card .sep {
  height: 1px;
  background: rgba(255,255,255,.1);
  margin: 28px 0;
}

.location-card .grid2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.location-card .lbl {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  margin-bottom: 8px;
}

.location-card .val {
  font-family: var(--serif);
  font-size: clamp(20px, 1.6vw, 26px);
  font-weight: 500;
  line-height: 1.15;
}

.location-card .val.email {
  font-family: var(--sans);
  font-size: 17px;
  letter-spacing: 0;
}
.location-card .val.email a {
  color: var(--paper);
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,.28);
  transition: border-color .15s ease, color .15s ease;
}
.location-card .val.email a:hover {
  color: var(--accent);
  border-color: var(--accent);
}

.location-card .val .sub {
  display: block;
  font-family: var(--sans);
  font-weight: 400;
  font-size: 12px;
  color: rgba(255,255,255,.65);
  margin-top: 4px;
}

.map-embed {
  margin-top: 16px;
  border-radius: var(--r-md);
  overflow: hidden;
  border: 1px solid var(--bone-line);
  background: var(--bone-soft);
  line-height: 0;
}
.map-embed iframe {
  width: 100%;
  height: 280px;
  border: 0;
  display: block;
  filter: grayscale(0.2) contrast(1.02);
}

.contact-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 16px;
}

@media (max-width: 600px) { .contact-cards { grid-template-columns: 1fr; } }

.contact-card {
  border: 1px solid var(--bone-line);
  border-radius: var(--r-md);
  padding: 20px;
}

.contact-card .l {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 10px;
}

.contact-card .v {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 500;
  letter-spacing: -0.005em;
}

/* Form */
.form {
  border: 1px solid var(--bone-line);
  border-radius: var(--r-lg);
  padding: clamp(28px, 3vw, 44px);
  background: var(--paper);
}

.form-top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 28px;
  flex-wrap: wrap;
  gap: 12px;
}

.form-h {
  font-family: var(--serif);
  font-size: clamp(26px, 2.2vw, 34px);
  font-weight: 500;
  letter-spacing: -0.01em;
  margin: 0;
}

.form-meta {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

.field {
  margin-bottom: 20px;
}

.field label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-mute);
  display: block;
  margin-bottom: 10px;
}

.field input,
.field textarea {
  width: 100%;
  padding: 16px 18px;
  border: 1px solid var(--bone-line);
  border-radius: 12px;
  background: var(--bone);
  font-family: var(--sans);
  font-size: 15px;
  color: var(--ink);
  transition: border-color .15s ease, background .15s ease;
}

.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: var(--paper);
}

.field textarea { min-height: 110px; resize: vertical; }

.objective-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.obj-pill {
  padding: 16px 18px;
  border: 1px solid var(--bone-line);
  border-radius: 12px;
  background: var(--bone);
  font-size: 15px;
  color: var(--ink-soft);
  cursor: pointer;
  transition: all .15s ease;
  text-align: left;
}

.obj-pill:hover { border-color: var(--ink-faint); color: var(--ink); }

.obj-pill.active {
  border-color: var(--accent);
  background: var(--accent-soft);
  color: var(--accent-deep);
  font-weight: 500;
}

.form-submit {
  width: 100%;
  justify-content: center;
  padding: 18px 22px;
  font-size: 16px;
  margin-top: 8px;
}

.form-disclaimer {
  font-size: 12px;
  color: var(--ink-mute);
  text-align: center;
  margin: 18px 0 0;
  line-height: 1.5;
}

/* ============================================
   Footer
   ============================================ */

.footer {
  background: var(--night);
  color: var(--paper);
  padding: clamp(60px, 8vw, 100px) 0 32px;
  margin-top: clamp(60px, 8vw, 120px);
  overflow: hidden;
}

.footer-mark {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(120px, 22vw, 360px);
  line-height: 0.9;
  letter-spacing: -0.05em;
  margin: 0 0 60px;
  background: linear-gradient(180deg, rgba(255,255,255,.85), rgba(255,255,255,.15));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  user-select: none;
}

.footer-cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding-top: 40px;
  border-top: 1px solid var(--night-line);
}

@media (max-width: 720px) { .footer-cols { grid-template-columns: 1fr 1fr; } }

.footer-h {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  margin-bottom: 18px;
}

.footer-list {
  list-style: none; padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 14.5px;
  color: rgba(255,255,255,.8);
}

.footer-list a { transition: color .15s ease; }
.footer-list a:hover { color: var(--accent); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 60px;
  padding-top: 28px;
  border-top: 1px solid var(--night-line);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  flex-wrap: wrap;
  gap: 16px;
}

/* ============================================
   Pilates launch banner
   ============================================ */
.launch-banner {
  background: var(--ink);
  color: var(--paper);
  border-bottom: 1px solid var(--ink);
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.launch-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px var(--gutter);
  max-width: var(--max);
  margin: 0 auto;
  flex-wrap: wrap;
}

.launch-banner .badge {
  background: var(--accent);
  color: var(--ink);
  padding: 5px 11px;
  border-radius: var(--r-pill);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
}

.launch-banner .msg {
  font-family: var(--serif);
  font-size: clamp(18px, 1.6vw, 22px);
  font-weight: 500;
  letter-spacing: -0.005em;
  flex: 1;
  min-width: 200px;
}

.launch-banner .msg em { font-style: italic; color: var(--accent); }

.launch-banner .when {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
}

/* ============================================
   Services / Séances
   ============================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

@media (max-width: 980px) { .services-grid { grid-template-columns: 1fr; } }

.service {
  background: var(--paper);
  border: 1px solid var(--bone-line);
  border-radius: var(--r-lg);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: transform .3s ease, box-shadow .3s ease;
}

.service:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 48px -32px rgba(0,0,0,.18);
}

.service.dark {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}

.service.dark .service-eyebrow { color: var(--accent); }
.service.dark .service-name { color: var(--paper); }
.service.dark .service-desc { color: rgba(255,255,255,.7); }
.service.dark .service-list { color: rgba(255,255,255,.85); }
.service.dark .service-list svg { color: var(--accent); }
.service.dark .service-foot { border-top-color: var(--night-line); }
.service.dark .service-tag { color: rgba(255,255,255,.55); }

.service-eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-deep);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.service-eyebrow .pill {
  background: var(--accent-soft);
  color: var(--accent-deep);
  padding: 3px 9px;
  border-radius: var(--r-pill);
  font-size: 9px;
  letter-spacing: 0.16em;
}

.service.dark .service-eyebrow .pill {
  background: var(--accent);
  color: var(--ink);
}

.service-name {
  font-family: var(--serif);
  font-size: clamp(30px, 2.8vw, 42px);
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 1.05;
  margin: 0 0 16px;
}

.service-desc {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.55;
  margin: 0 0 28px;
  min-height: 4em;
}

.service-list {
  list-style: none;
  padding: 0; margin: 0 0 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 14px;
  color: var(--ink-soft);
}

.service-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.service-list svg {
  width: 14px; height: 14px;
  color: var(--accent-deep);
  flex-shrink: 0;
  margin-top: 4px;
}

.service-foot {
  margin-top: auto;
  padding-top: 24px;
  border-top: 1px solid var(--bone-line);
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.service-prices {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.service-price {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.01em;
}

.service-price .lbl {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-right: 8px;
}

.service.dark .service-price .lbl { color: rgba(255,255,255,.5); }

.service-tag {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

/* ============================================
   Gallery (before/after grid)
   ============================================ */
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

@media (max-width: 980px) { .gallery { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .gallery { grid-template-columns: 1fr; } }

.gallery-item {
  aspect-ratio: 1 / 1;
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--bone-soft);
  position: relative;
  cursor: zoom-in;
  transition: transform .35s cubic-bezier(.2,.7,.2,1);
}

.gallery-item:hover { transform: translateY(-3px); }

.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.gallery-item:hover img { transform: scale(1.04); }

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,.45));
  pointer-events: none;
}

.gallery-item .tag {
  position: absolute;
  bottom: 14px;
  left: 14px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #fff;
  z-index: 2;
  background: rgba(0,0,0,.4);
  backdrop-filter: blur(6px);
  padding: 5px 10px;
  border-radius: var(--r-pill);
}

/* Featured photo cards (3 first) */
.featured-results {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 24px;
}

@media (max-width: 980px) { .featured-results { grid-template-columns: 1fr; } }

.feat-card {
  background: var(--paper);
  border: 1px solid var(--bone-line);
  border-radius: var(--r-lg);
  overflow: hidden;
  padding: 14px;
}

.feat-photo {
  position: relative;
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--bone-soft);
  aspect-ratio: 4/3;
}

.feat-photo img { width: 100%; height: 100%; object-fit: cover; }

.feat-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,.25));
  pointer-events: none;
}

.feat-tag {
  position: absolute;
  bottom: 14px;
  right: 14px;
  background: var(--accent);
  color: var(--ink);
  padding: 7px 12px;
  border-radius: var(--r-pill);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  z-index: 2;
}

.feat-body {
  padding: 24px 14px 12px;
}

.feat-quote {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(18px, 1.5vw, 22px);
  line-height: 1.3;
  color: var(--ink);
  margin: 0;
}

/* ============================================
   Pricing — toggle + new layout
   ============================================ */
.suivi-toggle {
  display: inline-flex;
  background: var(--bone-soft);
  border: 1px solid var(--bone-line);
  border-radius: var(--r-pill);
  padding: 5px;
  margin: 0 auto 40px;
  position: relative;
}

.suivi-toggle button {
  padding: 12px 28px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: var(--r-pill);
  color: var(--ink-mute);
  transition: all .25s ease;
  position: relative;
  z-index: 1;
}

.suivi-toggle button.active {
  background: var(--ink);
  color: var(--accent);
}

/* Pricing matrix */
.price-matrix {
  border: 1px solid var(--bone-line);
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--paper);
}

.price-row {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  align-items: stretch;
  border-bottom: 1px solid var(--bone-line);
}
.price-row:last-child { border-bottom: 0; }

.price-row.head {
  background: var(--bone-soft);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

.price-row.head > div { padding: 18px 24px; }

@media (max-width: 720px) {
  .price-row { grid-template-columns: 1fr 1fr; }
  .price-row.head > div:first-child { grid-column: 1 / -1; }
}

.price-cell {
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.price-cell.name {
  background: var(--bone);
  border-right: 1px solid var(--bone-line);
}

.price-cell.name .pn {
  font-family: var(--serif);
  font-size: clamp(20px, 1.8vw, 26px);
  font-weight: 500;
  letter-spacing: -0.005em;
  line-height: 1.15;
}

.price-cell.name .pd {
  font-size: 13.5px;
  color: var(--ink-mute);
  line-height: 1.5;
}

.price-cell .pp {
  font-family: var(--serif);
  font-size: clamp(28px, 2.6vw, 38px);
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 1;
  color: var(--ink);
}

.price-cell .pp .cur {
  font-size: 0.6em;
  color: var(--ink-mute);
  margin-left: 2px;
}

.price-cell .ps {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-top: 4px;
}

.price-cell .gift {
  font-family: var(--serif);
  font-style: italic;
  font-size: 13px;
  color: var(--accent-deep);
  margin-top: 2px;
}

.pay-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  padding: 8px 14px;
  background: var(--accent);
  color: var(--ink);
  border-radius: var(--r-pill);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  width: max-content;
  transition: transform .15s ease, background .2s ease;
}

.pay-link:hover {
  background: var(--accent-deep);
  color: var(--paper);
  transform: translateY(-1px);
}

.pay-link .pay-arr {
  display: inline-block;
  transition: transform .2s ease;
}

.pay-link:hover .pay-arr { transform: translateX(2px); }

.price-cell.featured .pay-link {
  background: var(--accent);
  color: var(--ink);
}

/* "Places limitées" tag on Hyrox/Pilates */
.limit-tag {
  display: inline-block;
  margin-left: 10px;
  padding: 4px 10px;
  background: var(--accent-soft);
  color: var(--accent-deep);
  border-radius: var(--r-pill);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  vertical-align: middle;
}

/* ============================================
   PLACES RESTANTES — availability module
   ============================================ */
.avail {
  margin-top: 28px;
  padding: clamp(28px, 3.5vw, 48px);
  background: var(--paper);
  border: 1px solid var(--bone-line);
  border-radius: var(--r-lg);
}

.avail-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: end;
  margin-bottom: 32px;
}
@media (max-width: 860px) { .avail-head { grid-template-columns: 1fr; gap: 14px; } }

.avail-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(26px, 2.6vw, 38px);
  line-height: 1.05;
  margin: 10px 0 0;
  letter-spacing: -0.01em;
}
.avail-title em { font-style: italic; color: var(--accent-deep); }

.avail-note {
  font-size: 14.5px;
  color: var(--ink-mute);
  line-height: 1.6;
  margin: 0;
  max-width: 46ch;
}

.avail-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(248px, 1fr));
  gap: 14px;
}

.av-card {
  display: flex;
  flex-direction: column;
  padding: 22px 22px 20px;
  background: var(--bone);
  border: 1px solid var(--bone-line);
  border-radius: var(--r-md);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.av-card.is-low { border-color: color-mix(in oklch, var(--accent) 55%, var(--bone-line)); }
.av-card.is-full { opacity: .72; }
.av-card:not(.is-full):hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 44px -34px rgba(0,0,0,.32);
}

.av-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 14px;
}
.av-name {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 500;
  line-height: 1;
}
.av-pill {
  font-family: var(--mono);
  font-size: 8.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 4px 8px;
  border-radius: var(--r-pill);
  background: var(--accent-soft);
  color: var(--accent-deep);
  white-space: nowrap;
}

.av-when {
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.06em;
  color: var(--ink-soft);
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  gap: 3px;
  margin-bottom: 18px;
}
.av-when .av-date { color: var(--ink); font-weight: 600; font-size: 13px; }

.av-seats {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 8px;
}
.av-num {
  font-family: var(--serif);
  font-size: 34px;
  line-height: 1;
  font-weight: 600;
  color: var(--ink);
}
.av-card.is-low .av-num { color: var(--accent-deep); }
.av-seats .av-lbl {
  font-size: 13px;
  color: var(--ink-mute);
}
.av-card.is-full .av-seats { display: none; }
.av-full-label {
  display: none;
  font-family: var(--serif);
  font-style: italic;
  font-size: 26px;
  color: var(--ink-mute);
  margin-bottom: 8px;
}
.av-card.is-full .av-full-label { display: block; }

.av-bar {
  height: 5px;
  border-radius: var(--r-pill);
  background: var(--bone-line);
  overflow: hidden;
  margin: 6px 0 18px;
}
.av-bar > span {
  display: block;
  height: 100%;
  border-radius: var(--r-pill);
  background: var(--accent);
  transition: width .6s cubic-bezier(.2,.7,.2,1);
}
.av-card.is-low .av-bar > span { background: var(--accent-deep); }
.av-card.is-full .av-bar > span { background: var(--ink-faint); }

.av-cta {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 18px;
  border-radius: var(--r-pill);
  background: var(--ink);
  color: var(--accent);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  font-weight: 600;
  transition: background .2s ease, color .2s ease;
}
.av-cta .av-arr { transition: transform .2s ease; }
.av-cta:hover { background: var(--accent); color: var(--ink); }
.av-cta:hover .av-arr { transform: translateX(3px); }
.av-card.is-full .av-cta {
  background: transparent;
  color: var(--ink-mute);
  border: 1px solid var(--bone-line);
}
.av-card.is-full .av-cta:hover { background: var(--bone-soft); color: var(--ink); }

.av-meta {
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: 0.08em;
  color: var(--ink-faint);
  text-transform: uppercase;
  margin: 10px 0 0;
  text-align: center;
}

.avail-legend {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 18px;
  margin: 26px 0 0;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.al-dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  display: inline-block;
  margin-right: 7px;
}
.al-dot.ok { background: var(--accent); }
.al-dot.low { background: var(--accent-deep); }
.al-dot.full { background: var(--ink-faint); }
.av-upd, .al-upd { margin-left: auto; color: var(--ink-faint); }
@media (max-width: 560px) { .al-upd { margin-left: 0; width: 100%; } }

/* Live countdown line under the date */
.av-count {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.03em;
  font-weight: 600;
  color: var(--accent-deep);
  text-transform: none;
  font-variant-numeric: tabular-nums;
}
.av-card.is-full .av-count { color: var(--ink-faint); }

/* Dual pay row (suivi / libre) */
.av-pay-row {
  margin-top: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding-top: 2px;
}
.av-pay-row .av-cta { margin-top: 0; padding: 13px 12px; }
.av-cta.ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--bone-line);
}
.av-cta.ghost:hover { background: var(--ink); color: var(--accent); border-color: var(--ink); }
.av-card.is-full .av-pay-row { grid-template-columns: 1fr; }
.av-card.is-full .av-cta.ghost { display: none; }
@media (max-width: 560px) { .av-pay-row { grid-template-columns: 1fr; } }

/* "Places limitées" line + explainer (replaces on-page seat count) */
.av-limit {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 4px;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-mute);
  line-height: 1.5;
}
.av-live {
  flex: none;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 0 color-mix(in oklch, var(--accent) 55%, transparent);
  animation: av-pulse 2.4s ease-out infinite;
}
@media (prefers-reduced-motion: reduce) { .av-live { animation: none; } }
@keyframes av-pulse {
  0%   { box-shadow: 0 0 0 0 color-mix(in oklch, var(--accent) 55%, transparent); }
  70%  { box-shadow: 0 0 0 7px transparent; }
  100% { box-shadow: 0 0 0 0 transparent; }
}
.av-explain {
  margin: 14px 0 0;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.02em;
  line-height: 1.65;
  color: var(--ink-faint);
}
.av-explain strong { color: var(--ink-soft); font-weight: 600; }

/* Cancellation policy line under the booking module */
.av-policy {
  margin: 18px 0 0;
  padding-top: 16px;
  border-top: 1px solid var(--bone-line);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.03em;
  color: var(--ink-mute);
  line-height: 1.65;
}
.av-policy strong { color: var(--ink); font-weight: 600; }

/* Divider between bookable sessions and the bilan cards */
.reserve-divider {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 56px 0 36px;
}
.reserve-divider::before,
.reserve-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--bone-line);
}
.reserve-divider span {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mute);
  text-align: center;
}

/* Reserve-card direct pay link */
.rc-pay {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  padding: 14px 20px;
  background: var(--ink);
  color: var(--accent);
  border-radius: var(--r-pill);
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  align-self: flex-start;
  transition: transform .15s ease, background .2s ease;
}

.rc-pay:hover {
  transform: translateY(-1px);
  background: var(--accent);
  color: var(--ink);
}

.rc-pay .pay-arr { transition: transform .2s ease; }
.rc-pay:hover .pay-arr { transform: translateX(2px); }

.price-cell.featured {
  background: var(--ink);
  color: var(--paper);
}

.price-cell.featured .pp { color: var(--accent); }
.price-cell.featured .ps { color: rgba(255,255,255,.55); }
.price-cell.featured .gift { color: var(--accent); }

.price-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 36px;
  padding: 20px 24px;
  border: 1px solid var(--bone-line);
  border-radius: var(--r-md);
  background: var(--bone-soft);
  flex-wrap: wrap;
}

.price-bottom .note {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.5;
}

.price-bottom .note strong { color: var(--ink); }

@media (max-width: 640px) {
  /* Hero title: shrink so long words like "transformation" fit instead of being clipped */
  .h-display { font-size: clamp(40px, 13vw, 66px); }
  .h-section { font-size: clamp(34px, 9vw, 56px); }
  /* Reserve / pricing cards: tighter padding so nothing runs off the edge */
  .reserve-card { padding: 24px 22px; }
  .rc-title { font-size: clamp(24px, 7vw, 30px); }
  .rc-pay { width: 100%; justify-content: center; }
  /* Launch banner stacks cleanly on small screens */
  .launch-banner-inner { flex-wrap: wrap; gap: 4px 10px; }
}

/* ============================================
   Schedule planning
   ============================================ */
.schedule-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border: 1px solid var(--bone-line);
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--paper);
}

.schedule-day {
  display: grid;
  grid-template-columns: 110px 1fr;
  align-items: center;
  border-bottom: 1px solid var(--bone-line);
  transition: background .15s ease;
}
.schedule-day:last-child { border-bottom: 0; }
.schedule-day:hover { background: var(--bone-soft); }

.sd-day {
  padding: 20px 24px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  background: var(--bone);
  border-right: 1px solid var(--bone-line);
  align-self: stretch;
  display: flex;
  align-items: center;
}

.sd-sessions {
  padding: 16px 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 32px;
}

.sd-session {
  display: flex;
  align-items: center;
  gap: 14px;
}

.sd-time {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.005em;
  white-space: nowrap;
}

.sd-name {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-deep);
  padding: 4px 10px;
  border: 1px solid var(--bone-line);
  border-radius: var(--r-pill);
  background: var(--bone-soft);
  white-space: nowrap;
}

.sd-name.new {
  background: var(--ink);
  color: var(--accent);
  border-color: var(--ink);
}

.sd-name.hyrox {
  background: var(--accent);
  color: var(--ink);
  border-color: var(--accent);
  font-weight: 600;
}

.sd-name.femmes {
  background: oklch(95% 0.03 350);
  color: oklch(48% 0.14 350);
  border-color: oklch(85% 0.06 350);
}

@media (max-width: 720px) {
  .schedule-day { grid-template-columns: 84px 1fr; }
  .sd-day { padding: 14px 14px; font-size: 11px; }
  .sd-sessions { padding: 12px 14px; gap: 12px; }
  .sd-time { font-size: 15px; }
  /* Let long session labels (e.g. Thursday) wrap instead of overflowing & being clipped */
  .sd-session { flex-direction: column; align-items: flex-start; gap: 6px; }
  .sd-name { white-space: normal; line-height: 1.4; }
}

/* ============================================
   Session strip (after the 6-step bilan)
   ============================================ */
.session-strip {
  margin-top: clamp(60px, 8vw, 96px);
  background: var(--ink);
  color: var(--paper);
  border-radius: var(--r-lg);
  padding: clamp(36px, 5vw, 64px);
  position: relative;
  overflow: hidden;
}

.session-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 90% 0%, oklch(30% 0.06 90 / .35) 0%, transparent 55%);
  pointer-events: none;
}

.session-strip-head {
  position: relative;
  margin-bottom: clamp(32px, 4vw, 56px);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.session-strip-head .eyebrow { color: var(--accent); }
.session-strip-head .eyebrow .dot { background: var(--accent); }

.session-strip-h {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(28px, 3vw, 42px);
  letter-spacing: -0.015em;
  line-height: 1.1;
  margin: 12px 0 0;
  color: var(--paper);
}

.session-strip-h em { font-style: italic; color: var(--accent); }

.session-pillars {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

@media (max-width: 880px) { .session-pillars { grid-template-columns: 1fr; gap: 20px; } }

.pillar {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding-top: 24px;
  border-top: 1px solid var(--night-line);
}

.pillar-num {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  color: var(--accent);
  padding-top: 4px;
}

.pillar-body h4 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(20px, 1.8vw, 24px);
  letter-spacing: -0.005em;
  line-height: 1.15;
  margin: 0 0 10px;
  color: var(--paper);
}

.pillar-body p {
  font-size: 14.5px;
  color: rgba(255,255,255,.7);
  line-height: 1.55;
  margin: 0;
}

/* ============================================
   Reserve choice cards
   ============================================ */
.reserve-choice {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 56px;
}

@media (max-width: 880px) { .reserve-choice { grid-template-columns: 1fr; } }

.reserve-card {
  text-align: left;
  background: var(--paper);
  border: 1px solid var(--bone-line);
  border-radius: var(--r-lg);
  padding: 36px;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  position: relative;
  text-decoration: none;
  color: var(--ink);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease, background .25s ease;
}

.reserve-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 48px -32px rgba(0,0,0,.18);
  border-color: var(--ink-faint);
}

.reserve-card.recommended {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent), 0 24px 48px -32px rgba(0,0,0,.2);
}
.reserve-card.recommended:hover {
  box-shadow: 0 0 0 1px var(--accent), 0 24px 48px -28px rgba(0,0,0,.28);
  border-color: var(--accent);
}

.reserve-card.active {
  border-color: var(--accent);
  background: var(--paper);
  box-shadow: 0 0 0 1px var(--accent), 0 24px 48px -32px rgba(0,0,0,.2);
}

.reserve-card.active::after {
  content: "✓ Sélectionné";
  position: absolute;
  top: 18px;
  right: 18px;
  background: var(--accent);
  color: var(--ink);
  padding: 6px 12px;
  border-radius: var(--r-pill);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
}

.rc-eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.rc-flag {
  background: var(--accent-soft);
  color: var(--accent-deep);
  padding: 4px 10px;
  border-radius: var(--r-pill);
  font-size: 10px;
  letter-spacing: 0.14em;
  font-weight: 600;
}

.rc-flag.dark {
  background: var(--bone-soft);
  color: var(--ink-soft);
}

.rc-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(28px, 2.6vw, 36px);
  letter-spacing: -0.015em;
  line-height: 1.1;
  margin: 0 0 14px;
}

.rc-desc {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.55;
  margin: 0 0 24px;
}

.rc-list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.rc-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 14px;
  color: var(--ink-soft);
}

.rc-list svg {
  width: 14px; height: 14px;
  color: var(--accent-deep);
  flex-shrink: 0;
  margin-top: 4px;
}

.rc-foot {
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid var(--bone-line);
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 14px;
  flex-wrap: wrap;
}

.rc-price {
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.rc-old {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--ink-mute);
  text-decoration: line-through;
}

.rc-new {
  font-family: var(--serif);
  font-size: clamp(28px, 2.6vw, 36px);
  font-weight: 500;
  letter-spacing: -0.015em;
  color: var(--accent-deep);
}

.rc-meta {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

/* ============================================
   WhatsApp block (replaces form)
   ============================================ */
.whatsapp-block {
  border: 1px solid var(--bone-line);
  border-radius: var(--r-lg);
  padding: clamp(28px, 3vw, 44px);
  background: var(--paper);
  display: flex;
  flex-direction: column;
  position: relative;
}

.wa-top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 22px;
  flex-wrap: wrap;
  gap: 12px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--bone-line);
}

.wa-intro {
  font-size: 15.5px;
  color: var(--ink-soft);
  line-height: 1.55;
  margin: 0 0 28px;
}

.wa-button {
  display: flex;
  align-items: center;
  gap: 14px;
  background: oklch(64% 0.18 145);
  color: #fff;
  padding: 20px 24px;
  border-radius: var(--r-pill);
  font-family: var(--sans);
  font-weight: 600;
  font-size: 17px;
  letter-spacing: -0.005em;
  transition: transform .15s ease, background .2s ease, box-shadow .25s ease;
  box-shadow: 0 1px 0 rgba(255,255,255,.2) inset, 0 12px 28px -12px oklch(64% 0.18 145);
}

.wa-button:hover {
  background: oklch(58% 0.18 145);
  transform: translateY(-2px);
  box-shadow: 0 1px 0 rgba(255,255,255,.2) inset, 0 18px 32px -14px oklch(64% 0.18 145);
}

.wa-button svg {
  width: 24px; height: 24px;
  flex-shrink: 0;
}

.wa-cta-text {
  flex: 1;
}

.wa-button .arr {
  display: inline-grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(255,255,255,.18);
  font-size: 14px;
  transition: transform .2s ease;
}

.wa-button:hover .arr { transform: translateX(3px); }

.wa-or {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 24px 0;
  color: var(--ink-mute);
}

.wa-or::before, .wa-or::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--bone-line);
}

.wa-or span {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.wa-phone {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 22px;
  border: 1px solid var(--bone-line);
  border-radius: var(--r-pill);
  font-family: var(--sans);
  font-weight: 500;
  font-size: 15px;
  color: var(--ink);
  background: var(--bone);
  transition: border-color .15s ease, background .2s ease, transform .15s ease;
}

.wa-phone:hover {
  border-color: var(--ink-faint);
  background: var(--bone-soft);
  transform: translateY(-1px);
}

.wa-phone svg {
  width: 18px; height: 18px;
  color: var(--accent-deep);
  flex-shrink: 0;
}

.wa-note {
  font-size: 13px;
  color: var(--ink-mute);
  text-align: center;
  margin: 22px 0 0;
  line-height: 1.5;
}

/* Hide objective/services pills if they're still in DOM (they aren't, but safety) */
.whatsapp-block .objective-grid { display: none; }

/* ============================================
   Social CTA (Insta / Facebook)
   ============================================ */
.social-section {
  padding-top: 0;
  padding-bottom: clamp(60px, 8vw, 100px);
}

.social-cta {
  background: var(--bone-soft);
  border: 1px solid var(--bone-line);
  border-radius: var(--r-lg);
  padding: clamp(40px, 5vw, 72px);
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}

@media (max-width: 880px) { .social-cta { grid-template-columns: 1fr; } }

.social-h {
  font-size: clamp(36px, 4.8vw, 68px) !important;
  margin-bottom: 24px;
}

.social-lead {
  font-size: 16px;
  color: var(--ink-soft);
  margin: 0;
  max-width: 50ch;
}

.social-cards {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.social-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px 26px;
  background: var(--paper);
  border: 1px solid var(--bone-line);
  border-radius: var(--r-lg);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.social-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 48px -32px rgba(0,0,0,.18);
  border-color: var(--ink-faint);
}

.sc-icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  color: #fff;
}

.social-card.insta .sc-icon {
  background: linear-gradient(135deg, oklch(70% 0.15 30) 0%, oklch(60% 0.18 350) 50%, oklch(55% 0.2 290) 100%);
}

.social-card.fb .sc-icon {
  background: oklch(48% 0.18 255);
}

.sc-icon svg { width: 26px; height: 26px; }

.sc-body { flex: 1; }

.sc-platform {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 6px;
}

.sc-handle {
  font-family: var(--serif);
  font-size: clamp(20px, 1.8vw, 24px);
  font-weight: 500;
  letter-spacing: -0.005em;
  color: var(--ink);
}

.sc-arr {
  font-size: 22px;
  color: var(--ink-mute);
  transition: transform .2s ease, color .2s ease;
}

.social-card:hover .sc-arr {
  transform: translateX(4px);
  color: var(--accent-deep);
}

/* ============================================
   Reveal animation
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s ease, transform .8s cubic-bezier(.2,.7,.2,1);
}
.reveal.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .marquee-track { animation: none; }
}

/* ============================================
   Featured before/after — member name
   ============================================ */
.feat-by {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.feat-by-dash {
  width: 22px;
  height: 1px;
  background: var(--accent);
  flex-shrink: 0;
}

/* ============================================
   Club mosaic — "Le club en vrai"
   ============================================ */
.club-show {
  margin-bottom: clamp(40px, 5vw, 72px);
}

.club-show-head {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 56px);
  align-items: end;
  margin-bottom: clamp(28px, 3.5vw, 44px);
}
@media (max-width: 880px) { .club-show-head { grid-template-columns: 1fr; gap: 18px; } }

.club-mosaic {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: clamp(150px, 13vw, 210px);
  grid-auto-flow: dense;
  gap: 14px;
}

.cm-item {
  position: relative;
  margin: 0;
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--bone-soft);
  border: 1px solid var(--bone-line);
}
.cm-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s cubic-bezier(.2,.7,.2,1);
}
.cm-item:hover img { transform: scale(1.05); }

.cm-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(10,14,22,.62));
  pointer-events: none;
}

.cm-item figcaption {
  position: absolute;
  left: 16px;
  bottom: 14px;
  z-index: 1;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.95);
  text-shadow: 0 1px 6px rgba(0,0,0,.4);
}

.cm-w2 { grid-column: span 2; }
.cm-h2 { grid-row: span 2; }

@media (max-width: 880px) {
  .club-mosaic { grid-template-columns: repeat(2, 1fr); grid-auto-rows: clamp(140px, 30vw, 200px); }
  .cm-w2 { grid-column: span 2; }
  .cm-h2 { grid-row: span 1; }
  .cm-item.cm-w2.cm-h2 { grid-row: span 2; }
}
@media (max-width: 520px) {
  .club-mosaic { grid-template-columns: 1fr 1fr; gap: 10px; }
  .cm-item.cm-w2.cm-h2 { grid-column: span 2; grid-row: span 2; }
  .cm-w2 { grid-column: span 2; }
}

/* ============================================
   AVIS / TÉMOIGNAGES
   ============================================ */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(14px, 1.6vw, 22px);
  margin-top: clamp(36px, 4vw, 56px);
}
@media (max-width: 920px) { .reviews-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .reviews-grid { grid-template-columns: 1fr; } }

.review-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: clamp(22px, 2vw, 30px);
  background: var(--paper);
  border: 1px solid var(--bone-line);
  border-radius: var(--r-md);
}
.review-card.feature {
  grid-column: span 2;
  background: var(--night);
  border-color: var(--night-line);
}
@media (max-width: 560px) { .review-card.feature { grid-column: span 1; } }

.rv-stars {
  color: var(--accent);
  font-size: 18px;
  letter-spacing: 3px;
}
.review-card.feature .rv-stars { color: oklch(82% 0.12 88); }

.rv-text {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(20px, 1.5vw, 24px);
  line-height: 1.4;
  color: var(--ink);
  flex: 1;
  text-wrap: pretty;
}
.review-card.feature .rv-text {
  color: var(--paper);
  font-size: clamp(24px, 2.1vw, 32px);
}
.rv-text strong { color: var(--accent-deep); font-weight: 600; }
.review-card.feature .rv-text strong { color: oklch(82% 0.12 88); }

.rv-by {
  display: flex;
  align-items: center;
  gap: 13px;
}
.rv-by > div {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}
.rv-name {
  font-weight: 600;
  font-size: 15px;
  line-height: 1.2;
  color: var(--ink);
}
.rv-avatar {
  flex: none;
  width: 42px; height: 42px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: var(--gold-grad);
  color: var(--night);
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 600;
}
.review-card.feature .rv-name { color: var(--paper); }
.rv-meta {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

.reviews-foot {
  margin-top: clamp(28px, 3vw, 40px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}
.rv-score {
  display: flex;
  align-items: baseline;
  gap: 12px;
}
.rv-score-num {
  font-family: var(--serif);
  font-size: clamp(40px, 5vw, 60px);
  line-height: 1;
  color: var(--ink);
}
.rv-score-stars {
  color: var(--accent);
  font-size: clamp(20px, 2.2vw, 26px);
  letter-spacing: 3px;
}
.rv-score-label {
  margin: 0;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.reviews-foot .btn { margin-top: 8px; }

/* ============================================
   PASSE LISIBILITÉ MOBILE (≤720px)
   Le rendu PC n'est pas modifié — ces règles
   ne s'appliquent qu'aux petits écrans.
   ============================================ */
@media (max-width: 720px) {

  /* ---- LA DIFFÉRENCE : tableau → cartes étiquetées ---- */
  .compare-col-head { display: none; }
  .compare-cols { gap: 0; }
  .compare-row {
    display: block;
    padding: 20px 0;
    border-bottom: 1px solid var(--night-line);
  }
  .compare-row:last-child { border-bottom: 0; }
  .compare-cell { padding: 0; border-bottom: 0; }
  .compare-cell.label {
    color: var(--accent);
    font-size: 12px;
    letter-spacing: 0.16em;
    margin-bottom: 12px;
  }
  .compare-cell.them,
  .compare-cell.bwt { font-size: 15px; line-height: 1.4; }
  .compare-cell.them { margin-bottom: 14px; }
  .compare-cell.them::before {
    content: "Une salle classique";
    display: block;
    font-family: var(--mono);
    font-size: 9px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255,255,255,.4);
    margin-bottom: 3px;
  }
  .compare-cell.bwt::before {
    content: "Le BWT Center";
    display: block;
    font-family: var(--mono);
    font-size: 9px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 3px;
  }

  /* ---- PARCOURS : commandes du bas qui ne se chevauchent plus ---- */
  .step-detail { min-height: 0; }
  .step-illu { font-size: clamp(110px, 28vw, 170px); margin: 8px 0; }
  .step-controls { flex-wrap: wrap; gap: 18px 12px; }
  .step-dots { order: 3; width: 100%; justify-content: center; }

  /* ---- TARIFS : matrice → cartes en colonne unique, étiquetées ---- */
  .price-row.head { display: none; }
  .price-row { grid-template-columns: 1fr; }
  .price-cell { padding: 20px 22px; }
  .price-cell.name {
    border-right: 0;
    border-bottom: 1px solid var(--bone-line);
  }
  .price-cell.featured { border-bottom: 1px solid var(--bone-line); }
  /* indiquer à quelle colonne correspond chaque prix */
  .price-cell.featured::before,
  .price-cell:not(.name):not(.featured)::before {
    font-family: var(--mono);
    font-size: 9px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    margin-bottom: 6px;
  }
  .price-cell.featured::before { content: "Tarif suivi"; color: var(--accent); }
  .price-cell:not(.name):not(.featured)::before { content: "Tarif libre"; color: var(--ink-mute); }
  /* bouton Réserver & payer : pleine largeur, plus jamais coupé */
  .pay-link { width: 100%; justify-content: center; margin-top: 16px; }
}
