/* =====================================================================
   FOREST WOLF : Design system partagé
   CrossFit & Hyrox à Saint-André-de-Cubzac
   ===================================================================== */

/* ------------------------------------------------------------------ */
/* 1. VARIABLES                                                        */
/* ------------------------------------------------------------------ */
:root {
  /* Palette de marque */
  --forest: #26331F;      /* vert forêt : fonds sombres */
  --forest-700: #1d2818;  /* vert forêt plus profond */
  --leaf: #57A63A;        /* vert feuille : accents, CTA, mot coloré */
  --leaf-600: #4a9130;    /* vert feuille survol */
  --cream: #F1ECDD;       /* crème : fond clair (jamais blanc pur) */
  --cream-200: #e7e0cd;   /* crème légèrement plus soutenu */
  --ink: #171712;         /* quasi-noir : texte */
  --bordeaux: #7E2029;    /* urgence */
  --gold: #E8B23A;        /* étoiles Google */

  /* Neutres dérivés */
  --line: rgba(23, 23, 18, 0.12);
  --line-light: rgba(241, 236, 221, 0.16);
  --muted: rgba(23, 23, 18, 0.64);
  --muted-cream: rgba(241, 236, 221, 0.72);
  --card-bg: #ffffff;
  --placeholder: #d9d2c1;

  /* Échelle d'espacement : utilisée PARTOUT */
  --sp-1: 8px;
  --sp-2: 16px;
  --sp-3: 24px;
  --sp-4: 40px;
  --sp-5: 64px;
  --sp-6: 96px;

  /* Rayons */
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 22px;
  --r-pill: 999px;

  /* Ombres douces */
  --shadow-sm: 0 2px 8px rgba(23, 23, 18, 0.06);
  --shadow-md: 0 10px 30px rgba(23, 23, 18, 0.10);
  --shadow-lg: 0 24px 60px rgba(23, 23, 18, 0.16);

  /* Typos */
  --font-title: 'Oswald', 'Arial Narrow', sans-serif;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;

  /* Conteneur */
  --container: 1200px;
  --container-narrow: 920px;

  /* Header */
  --header-h: 76px;

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* ------------------------------------------------------------------ */
/* 2. RESET / BASE                                                     */
/* ------------------------------------------------------------------ */
*, *::before, *::after { box-sizing: border-box; }

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

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

button { font-family: inherit; cursor: pointer; border: none; background: none; }

ul { margin: 0; padding: 0; list-style: none; }

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

/* ------------------------------------------------------------------ */
/* 3. TYPOGRAPHIE                                                      */
/* ------------------------------------------------------------------ */
.kicker {
  font-family: var(--font-serif);
  font-style: normal;
  font-size: clamp(1.2rem, 1.6vw, 1.4rem);
  letter-spacing: 0.01em;
  color: #a7d18f !important;
  margin: 0 0 var(--sp-3) !important;
  display: inline-block;
}
.kicker::before { content: "- "; }

h1, h2, h3 {
  font-family: var(--font-title);
  font-weight: 600;
  text-transform: uppercase;
  line-height: 1.22;
  letter-spacing: 0.005em;
  margin: 0;
  color: var(--ink);
}

h1 { font-size: clamp(2.4rem, 6vw, 4.2rem); font-weight: 700; }
h2 { font-size: clamp(1.9rem, 4vw, 3rem); }
h3 { font-size: clamp(1.2rem, 2.2vw, 1.55rem); }

.title-accent { color: var(--leaf); }

p { margin: 0 0 var(--sp-2); }

.lead {
  font-size: 1.16rem;
  line-height: 1.75;
  color: var(--muted);
}

.serif-word { font-family: var(--font-serif); font-style: italic; }

/* ------------------------------------------------------------------ */
/* 4. LAYOUT                                                           */
/* ------------------------------------------------------------------ */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--sp-3);
}
.container--narrow { max-width: var(--container-narrow); }

.section { padding-block: var(--sp-6); }
.section--tight { padding-block: var(--sp-5); }

/* Alternance de fonds */
.bg-cream   { background: var(--cream); color: var(--ink); }
.bg-cream-2 { background: var(--cream-200); color: var(--ink); }
.bg-forest {
  background: var(--forest);
  color: var(--cream);
  position: relative;
}
.bg-forest h1, .bg-forest h2, .bg-forest h3 { color: var(--cream); }
.bg-forest .lead, .bg-forest p { color: var(--muted-cream); }

.section-head { max-width: 720px; margin-bottom: var(--sp-5); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head h2 { margin-bottom: var(--sp-2); }
.section-head p { margin-bottom: 0; }

/* Grilles réutilisables */
.grid { display: grid; gap: var(--sp-3); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* Séparateur aligné sur le conteneur */
.rule { height: 1px; background: var(--line); border: 0; margin: 0; }
.bg-forest .rule, .rule--light { background: var(--line-light); }

/* ------------------------------------------------------------------ */
/* 5. BOUTONS                                                          */
/* ------------------------------------------------------------------ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-1);
  font-family: var(--font-title);
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.03em;
  font-size: 0.95rem;
  padding: 14px 26px;
  border-radius: var(--r-pill);
  transition: transform 0.25s var(--ease), background 0.25s var(--ease), box-shadow 0.25s var(--ease), color 0.25s var(--ease);
  line-height: 1;
}
.btn svg { width: 18px; height: 18px; }

.btn-primary {
  background: var(--leaf);
  color: #0f1a09;
  box-shadow: 0 8px 20px rgba(87, 166, 58, 0.28);
}
.btn-primary:hover { background: var(--leaf-600); transform: translateY(-2px); box-shadow: 0 12px 26px rgba(87, 166, 58, 0.36); }

.btn-secondary {
  background: transparent;
  color: var(--forest);
  box-shadow: inset 0 0 0 2px var(--forest);
}
.btn-secondary:hover { background: var(--forest); color: var(--cream); transform: translateY(-2px); }

.btn-ghost {
  background: transparent;
  color: var(--cream);
  box-shadow: inset 0 0 0 2px rgba(241, 236, 221, 0.4);
}
.btn-ghost:hover { background: rgba(241, 236, 221, 0.1); transform: translateY(-2px); }

.btn-block { width: 100%; justify-content: center; }
.btn-lg { padding: 17px 32px; font-size: 1.02rem; }

.btn-row { display: flex; flex-wrap: wrap; gap: var(--sp-2); }

/* ------------------------------------------------------------------ */
/* 6. PASTILLES / BADGES / LISTES                                      */
/* ------------------------------------------------------------------ */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  border-radius: var(--r-pill);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-sm);
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink);
}
.pill svg { width: 17px; height: 17px; color: var(--leaf); }
.pill .stars svg { color: var(--gold); }
.pill--onhero { background: rgba(241, 236, 221, 0.14); color: var(--cream); backdrop-filter: blur(6px); box-shadow: inset 0 0 0 1px rgba(241,236,221,0.18); }
.pill--onhero svg { color: #a7d18f; }
.pill--onhero .stars svg { color: var(--gold); }

.pill-row { display: flex; flex-wrap: wrap; gap: var(--sp-1); }

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-title);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: var(--r-pill);
}
.badge--leaf { background: var(--leaf); color: #0f1a09; }
.badge--bordeaux { background: var(--bordeaux); color: var(--cream); }
.badge--outline { box-shadow: inset 0 0 0 1.5px var(--line); color: var(--muted); }

/* Liste cochée */
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-1);
  padding: 7px 0;
  font-size: 1rem;
}
.check-list li svg { flex: none; width: 20px; height: 20px; color: var(--leaf); margin-top: 3px; }

/* Panneau d'information statique (ex : pièces à fournir) */
.info-panel {
  background: var(--card-bg);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
  padding: var(--sp-4);
  border: 1px solid rgba(23,23,18,0.05);
}

/* Bouton de téléchargement sur fond clair */
.doc-dl {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: var(--r-md);
  box-shadow: inset 0 0 0 1.5px var(--line);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--ink);
  transition: background 0.2s, box-shadow 0.2s;
}
.doc-dl:hover { background: rgba(87,166,58,0.08); box-shadow: inset 0 0 0 1.5px var(--leaf); }
.doc-dl svg { width: 20px; height: 20px; color: var(--leaf); flex: none; }

/* Étoiles */
.stars { display: inline-flex; gap: 2px; color: var(--gold); }
.stars svg { width: 18px; height: 18px; fill: currentColor; stroke: none; }
.rating-line { display: inline-flex; align-items: center; gap: var(--sp-1); font-weight: 600; }

/* Logo Google inline */
.g-logo { font-family: var(--font-body); font-weight: 700; font-size: 0.95rem; letter-spacing: -0.02em; }
.g-logo .gb{color:#4285F4}.g-logo .gr{color:#EA4335}.g-logo .gy{color:#FBBC05}.g-logo .gg{color:#34A853}
.bg-forest .g-logo, .ph .g-logo { filter: brightness(1.3); }

/* ------------------------------------------------------------------ */
/* 7. IMAGES PLACEHOLDER                                               */
/* ------------------------------------------------------------------ */
.ph {
  position: relative;
  width: 100%;
  background: repeating-linear-gradient(135deg, #dcd5c4 0 24px, #d3cbb8 24px 48px);
  border-radius: var(--r-md);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(23, 23, 18, 0.4);
}
.ph::after {
  content: attr(data-label);
  position: absolute;
  left: 12px;
  bottom: 10px;
  font-size: 0.7rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(23, 23, 18, 0.48);
  background: rgba(241, 236, 221, 0.78);
  padding: 3px 9px;
  border-radius: var(--r-pill);
  font-weight: 600;
}
.ph .ph-icon { width: 42px; height: 42px; opacity: 0.45; }
.ph--dark {
  background: repeating-linear-gradient(135deg, #2f3d26 0 24px, #29351f 24px 48px);
  color: rgba(241, 236, 221, 0.5);
}
.ph--dark::after { color: rgba(241, 236, 221, 0.62); background: rgba(23, 23, 18, 0.4); }
.ph--leaf { background: repeating-linear-gradient(135deg, #5aa93d 0 24px, #4f9c34 24px 48px); color: rgba(15,26,9,0.4); }

/* Ratios */
.ratio-16-9 { aspect-ratio: 16 / 9; }
.ratio-4-3  { aspect-ratio: 4 / 3; }
.ratio-3-4  { aspect-ratio: 3 / 4; }
.ratio-1-1  { aspect-ratio: 1 / 1; }

/* ------------------------------------------------------------------ */
/* 8. ANNOUNCEMENT BAR                                                 */
/* ------------------------------------------------------------------ */
.announce {
  background: var(--forest-700);
  color: var(--cream);
  font-size: 0.9rem;
  position: relative;
  z-index: 60;
}
.announce .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-1);
  padding-block: 9px;
  text-align: center;
  flex-wrap: wrap;
}
.announce strong { color: #a7d18f; font-weight: 600; }
.announce__icon { width: 18px; height: 18px; color: #a7d18f; flex: none; }

/* ------------------------------------------------------------------ */
/* 9. HEADER                                                           */
/* ------------------------------------------------------------------ */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  transition: background 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.header__inner {
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-3);
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { width: 46px; height: 46px; border-radius: 10px; object-fit: cover; }
.brand__name {
  font-family: var(--font-title);
  text-transform: uppercase;
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 0.06em;
  line-height: 1;
  color: var(--cream);
  transition: color 0.35s var(--ease);
}

.nav { display: flex; align-items: center; gap: var(--sp-3); }
.nav__links { display: flex; gap: var(--sp-3); }
.nav__links a {
  font-family: var(--font-title);
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  color: var(--cream);
  padding: 6px 2px;
  position: relative;
  transition: color 0.25s;
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 2px; width: 0;
  background: var(--leaf); transition: width 0.25s var(--ease);
}
.nav__links a:hover::after, .nav__links a[aria-current="page"]::after { width: 100%; }
.nav__links a[aria-current="page"] { color: #a7d18f; }

/* état solidifié */
.header.is-solid { background: var(--forest); box-shadow: var(--shadow-md); }
.header.is-solid .brand__name { color: var(--cream); }

/* Pages à hero court : header solide dès le départ */
.header--solid { background: var(--forest); box-shadow: var(--shadow-sm); }

.burger {
  display: none;
  width: 44px; height: 44px;
  align-items: center; justify-content: center;
  border-radius: 10px;
  color: var(--cream);
}
.burger svg { width: 26px; height: 26px; }

.header__cta { display: inline-flex; }
.btn-label--mobile { display: none; }

/* ------------------------------------------------------------------ */
/* 10. MENU MOBILE (overlay)                                           */
/* ------------------------------------------------------------------ */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 70;
  background: var(--forest);
  padding: var(--sp-3);
  display: flex;
  flex-direction: column;
  transform: translateY(-100%);
  transition: transform 0.4s var(--ease);
  overflow-y: auto;
  visibility: hidden;
}
.mobile-menu.is-open { transform: translateY(0); visibility: visible; }
.mobile-menu__top { display: flex; align-items: center; justify-content: space-between; margin-bottom: var(--sp-4); }
.mobile-menu__close { width: 44px; height: 44px; color: var(--cream); display: flex; align-items: center; justify-content: center; }
.mobile-menu__close svg { width: 28px; height: 28px; }
.mobile-menu__nav { display: flex; flex-direction: column; gap: var(--sp-1); margin-bottom: var(--sp-3); }
.mobile-menu__nav a {
  font-family: var(--font-title);
  text-transform: uppercase;
  font-size: 1.8rem;
  color: var(--cream);
  padding: 8px 0;
}
.mobile-menu__nav a[aria-current="page"] { color: var(--leaf); }
.mobile-info { display: flex; flex-direction: column; gap: var(--sp-2); margin-block: var(--sp-3); color: var(--muted-cream); font-size: 0.98rem; }
.mobile-info a { color: var(--cream); }
.mobile-info__row { display: flex; align-items: flex-start; gap: 10px; }
.mobile-info__row svg { width: 20px; height: 20px; color: var(--leaf); flex: none; margin-top: 2px; }
.mobile-social { display: flex; gap: var(--sp-2); }
.mobile-social a { width: 44px; height: 44px; border-radius: 12px; display: flex; align-items: center; justify-content: center; box-shadow: inset 0 0 0 1.5px var(--line-light); color: var(--cream); }
.mobile-social svg { width: 20px; height: 20px; }
.mobile-menu .btn { margin-top: var(--sp-3); }

/* ------------------------------------------------------------------ */
/* 11. HERO                                                            */
/* ------------------------------------------------------------------ */
.hero {
  position: relative;
  margin-top: calc(-1 * var(--header-h));
  padding-top: var(--sp-6);
  padding-bottom: var(--sp-6);
  min-height: min(820px, 94vh);
  display: flex;
  align-items: center;
  color: var(--cream);
  overflow: hidden;
}
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__bg .ph { height: 100%; border-radius: 0; }
.hero__overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(23,23,18,0.56) 0%, rgba(29,40,24,0.66) 55%, rgba(23,23,18,0.82) 100%);
}
.hero__inner { position: relative; z-index: 2; max-width: 880px; margin-inline: auto; text-align: center; width: 100%; }
.hero__rating { margin-bottom: var(--sp-3); font-weight: 600; gap: 4px; }
.hero__rating .stars svg { width: 18px; height: 18px; color: var(--gold); }
.hero__rating strong { font-size: 1rem; }
.hero__rating .g-logo { font-size: 1rem; }
.hero h1 { color: #a7d18f; margin-bottom: var(--sp-3); font-size: clamp(3.4rem, 10vw, 6.2rem); letter-spacing: 0.02em; }
.hero__sub {
  font-family: var(--font-title);
  text-transform: uppercase;
  font-size: clamp(1.5rem, 4vw, 2.4rem);
  letter-spacing: 0.05em;
  color: rgba(241,236,221,0.92);
  margin-bottom: var(--sp-2);
}
.hero__punch {
  font-family: var(--font-title);
  text-transform: uppercase;
  font-size: clamp(1.3rem, 3vw, 2rem);
  letter-spacing: 0.05em;
  margin-bottom: var(--sp-3);
}
.hero__punch--accent { color: #a7d18f; }
.hero__desc { color: rgba(241,236,221,0.9); font-size: 1.1rem; margin: 0 auto var(--sp-3); max-width: 700px; }
.hero .pill-row { margin-bottom: var(--sp-4); justify-content: space-between; max-width: 90%; margin-inline: auto; }
.hero .btn-row { justify-content: center; }

/* Hero court (tarifs / planning) */
.hero-short {
  background: var(--forest);
  color: var(--cream);
  padding-top: var(--sp-5);
  padding-bottom: var(--sp-5);
  position: relative;
  overflow: hidden;
}
.hero-short__bg { position: absolute; inset: 0; z-index: 0; }
.hero-short__bg .ph { height: 100%; border-radius: 0; }
.hero-short__overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(23,23,18,0.4) 0%, rgba(29,40,24,0.62) 100%);
}
.hero-short .container { position: relative; z-index: 2; }
.hero-short h1 { color: var(--cream); margin-bottom: var(--sp-2); }
.hero-short p { color: var(--muted-cream); font-size: 1.14rem; max-width: 640px; margin: 0; }

/* ------------------------------------------------------------------ */
/* 12. CARTES                                                          */
/* ------------------------------------------------------------------ */
.card {
  background: var(--card-bg);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
  border: 1px solid rgba(23,23,18,0.05);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: rgba(87,166,58,0.35); }
.card--program { border: 1.5px solid #a7d18f; }
.card--program:hover { border-color: #a7d18f; }

.card__media { position: relative; }
.card__media .ph { border-radius: 0; aspect-ratio: 4 / 3; }
.card__body { padding: var(--sp-3); display: flex; flex-direction: column; gap: var(--sp-1); flex: 1; }
.card__body h3 { margin-bottom: 2px; }
.card__body p { color: var(--muted); margin: 0; font-size: 1rem; }
.card__icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(87,166,58,0.12);
  color: var(--leaf);
  margin-bottom: var(--sp-1);
  transition: background 0.3s var(--ease), color 0.3s var(--ease);
}
.card__icon svg { width: 28px; height: 28px; }
.card:hover .card__icon { background: var(--leaf); color: #0f1a09; }
.card__link {
  margin-top: auto;
  padding-top: var(--sp-1);
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-title); text-transform: uppercase; font-size: 0.82rem;
  letter-spacing: 0.04em; color: var(--leaf);
}
.card__link svg { width: 16px; height: 16px; transition: transform 0.25s; }
.card:hover .card__link svg { transform: translateX(4px); }
.card__tag { position: absolute; top: 12px; left: 12px; z-index: 2; }

/* ------------------------------------------------------------------ */
/* 13. STATS                                                           */
/* ------------------------------------------------------------------ */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--sp-3); }
.stat { text-align: center; }
.stat__num {
  font-family: var(--font-title);
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--leaf);
  line-height: 1;
}
.stat__label { font-size: 0.92rem; color: var(--muted-cream); margin-top: var(--sp-1); }
.bg-cream .stat__label, .bg-cream-2 .stat__label { color: var(--muted); }

/* ------------------------------------------------------------------ */
/* 14. SPLIT (texte-image alterné)                                     */
/* ------------------------------------------------------------------ */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-5);
  align-items: center;
}
.split--reverse .split__media { order: 2; }
.split__media .ph { aspect-ratio: 4 / 3; box-shadow: var(--shadow-md); }
.split__text h2 { margin-bottom: var(--sp-2); }
.split__text .lead { margin-bottom: var(--sp-3); }

/* ------------------------------------------------------------------ */
/* 15. BANDE IMMERSIVE                                                 */
/* ------------------------------------------------------------------ */
.band {
  position: relative;
  color: var(--cream);
  padding-block: var(--sp-6);
  overflow: hidden;
}
.band__bg { position: absolute; inset: 0; z-index: 0; }
.band__bg .ph { height: 100%; border-radius: 0; }
.band__overlay { position: absolute; inset: 0; z-index: 1; background: linear-gradient(90deg, rgba(23,23,18,0.86) 0%, rgba(29,40,24,0.7) 60%, rgba(29,40,24,0.5) 100%); }
.band__inner { position: relative; z-index: 2; max-width: 640px; }
.band h2 { color: var(--cream); margin-bottom: var(--sp-2); }
.band p { color: rgba(241,236,221,0.9); margin-bottom: var(--sp-3); }

/* CTA finale pleine largeur */
.cta-band { text-align: center; }
.cta-band__overlay { background: linear-gradient(180deg, rgba(23,23,18,0.8), rgba(29,40,24,0.85)); }
.cta-band .band__inner { max-width: 800px; margin-inline: auto; }
.cta-band h2 { font-size: clamp(2rem, 4.5vw, 3.2rem); }

/* ------------------------------------------------------------------ */
/* 16. STEPPER                                                         */
/* ------------------------------------------------------------------ */
.stepper { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-4); }
.step { position: relative; }
.step__index {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: clamp(3.4rem, 6vw, 4.6rem);
  line-height: 0.9;
  color: transparent;
  -webkit-text-stroke: 2px var(--leaf);
  margin-bottom: var(--sp-2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.step__index--logo {
  -webkit-text-stroke: 0;
  width: 92px; height: 92px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--leaf);
  box-shadow: 0 10px 26px rgba(87,166,58,0.4);
  background: var(--cream);
}
.step__index--logo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.step h3 { margin-bottom: 6px; }
.step p { color: var(--muted); margin: 0; }
.bg-forest .step p { color: var(--muted-cream); }
.step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 46px; left: 96px; right: calc(-1 * var(--sp-4) - 8px);
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--leaf) 0 8px, transparent 8px 16px);
  opacity: 0.5;
}

/* ------------------------------------------------------------------ */
/* 17. TICKER D'AVIS                                                   */
/* ------------------------------------------------------------------ */
.reviews-head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-3);
  flex-wrap: wrap;
  background: var(--card-bg);
  border-radius: var(--r-lg);
  padding: var(--sp-3) var(--sp-4);
  box-shadow: var(--shadow-sm);
  max-width: 760px;
  margin: 0 auto var(--sp-4);
}
.reviews-head__score { font-family: var(--font-title); font-size: 2.6rem; font-weight: 700; line-height: 1; color: var(--forest); }
.reviews-head__meta { text-align: left; }
.reviews-head__meta .stars svg { width: 22px; height: 22px; }
.reviews-head__count { font-size: 0.9rem; color: var(--muted); }
.reviews-head__actions { display: flex; gap: var(--sp-1); flex-wrap: wrap; justify-content: center; align-items: center; margin-inline: auto; }

.ticker { overflow: hidden; position: relative; }
.ticker::before, .ticker::after {
  content: ""; position: absolute; top: 0; bottom: 0; width: 80px; z-index: 3; pointer-events: none;
}
.ticker::before { left: 0; background: linear-gradient(90deg, var(--cream), transparent); }
.ticker::after { right: 0; background: linear-gradient(270deg, var(--cream), transparent); }
.bg-cream-2 .ticker::before { background: linear-gradient(90deg, var(--cream-200), transparent); }
.bg-cream-2 .ticker::after { background: linear-gradient(270deg, var(--cream-200), transparent); }

.ticker__row { overflow: hidden; }
.ticker__row + .ticker__row { margin-top: var(--sp-3); }
.ticker__track { display: flex; gap: var(--sp-3); width: max-content; animation: scroll-left 60s linear infinite; }
.ticker__track--reverse { animation: scroll-right 60s linear infinite; }
.ticker:hover .ticker__track, .ticker.is-paused .ticker__track { animation-play-state: paused; }

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

.review-card {
  background: var(--card-bg);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-sm);
  padding: var(--sp-3);
  width: 350px;
  flex: none;
  display: flex;
  flex-direction: column;
  gap: var(--sp-1);
  border: 1px solid rgba(23,23,18,0.05);
}
.review-card__head { display: flex; align-items: center; gap: 12px; }
.review-card__avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--forest); color: var(--cream);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-title); font-weight: 600; font-size: 1.1rem; flex: none;
}
.review-card__name { font-weight: 600; font-size: 0.98rem; line-height: 1.15; }
.review-card__head .g-logo { font-size: 0.8rem; }
.review-card p { font-size: 0.94rem; color: var(--muted); margin: 0; line-height: 1.6; }
.review-card .stars svg { width: 16px; height: 16px; }

/* ------------------------------------------------------------------ */
/* 18. PLANNING                                                        */
/* ------------------------------------------------------------------ */
.plan-controls {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-2);
  margin-bottom: var(--sp-3);
}
.toggle-week {
  display: inline-flex;
  background: var(--card-bg);
  border-radius: var(--r-pill);
  padding: 5px;
  box-shadow: var(--shadow-sm);
}
.toggle-week button {
  font-family: var(--font-title);
  text-transform: uppercase;
  font-size: 0.82rem;
  letter-spacing: 0.03em;
  padding: 9px 20px;
  border-radius: var(--r-pill);
  color: var(--muted);
  transition: all 0.2s;
}
.toggle-week button.is-active { background: var(--forest); color: var(--cream); }

.legend { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: var(--sp-3); }
.legend button {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 0.82rem; font-weight: 500;
  padding: 6px 13px;
  border-radius: var(--r-pill);
  background: var(--card-bg);
  box-shadow: var(--shadow-sm);
  color: var(--ink);
  transition: transform 0.15s, opacity 0.2s, box-shadow 0.2s;
}
.legend button:hover { transform: translateY(-1px); }
.legend button .dot { width: 12px; height: 12px; border-radius: 4px; flex: none; }
.legend button.is-dim { opacity: 0.4; }
.legend button.is-active { box-shadow: 0 0 0 2px var(--forest), var(--shadow-sm); }

/* Couleurs de catégorie */
.c-wod       { --cat-bg: #26331F; --cat-fg: #F1ECDD; }
.c-wodteam   { --cat-bg: #57A63A; --cat-fg: #171712; }
.c-hyrox     { --cat-bg: #7E2029; --cat-fg: #F1ECDD; }
.c-hyroxteam { --cat-bg: #A85A4A; --cat-fg: #F1ECDD; }
.c-strong    { --cat-bg: #33322C; --cat-fg: #F1ECDD; }
.c-haltero   { --cat-bg: #9A6B34; --cat-fg: #F1ECDD; }
.c-gym       { --cat-bg: #43606E; --cat-fg: #F1ECDD; }
.c-fbb       { --cat-bg: #5E4668; --cat-fg: #F1ECDD; }
.c-kids      { --cat-bg: #7E6A9E; --cat-fg: #F1ECDD; }
.c-open      { --cat-bg: #CDBF9B; --cat-fg: #171712; }
.c-ferme     { --cat-bg: #B7AE9E; --cat-fg: #4a463d; }

.legend .dot.c-wod{background:#26331F}.legend .dot.c-wodteam{background:#57A63A}.legend .dot.c-hyrox{background:#7E2029}.legend .dot.c-hyroxteam{background:#A85A4A}.legend .dot.c-strong{background:#33322C}.legend .dot.c-haltero{background:#9A6B34}.legend .dot.c-gym{background:#43606E}.legend .dot.c-fbb{background:#5E4668}.legend .dot.c-kids{background:#7E6A9E}.legend .dot.c-open{background:#CDBF9B}.legend .dot.c-ferme{background:#B7AE9E}

/* Grille desktop */
.plan-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: var(--sp-1);
  background: var(--card-bg);
  padding: var(--sp-2);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
}
.plan-col { display: flex; flex-direction: column; gap: var(--sp-1); }
.plan-col__head {
  font-family: var(--font-title);
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  text-align: center;
  padding: 10px 0;
  border-bottom: 2px solid var(--line);
  color: var(--forest);
}
.slot {
  background: var(--cat-bg, #eee);
  color: var(--cat-fg, #333);
  border-radius: var(--r-sm);
  padding: 10px 12px;
  transition: transform 0.18s var(--ease), opacity 0.2s, filter 0.2s, box-shadow 0.2s;
  cursor: default;
}
.slot:hover { transform: translateY(-2px) scale(1.02); filter: brightness(1.06); box-shadow: var(--shadow-md); }
.slot__time { font-family: var(--font-title); font-size: 0.92rem; letter-spacing: 0.02em; }
.slot__name { font-size: 0.8rem; font-weight: 500; opacity: 0.95; }
.slot__dur { font-size: 0.72rem; opacity: 0; max-height: 0; overflow: hidden; transition: opacity 0.2s, max-height 0.2s; }
.slot:hover .slot__dur { opacity: 0.85; max-height: 20px; }
.slot--empty { background: transparent; min-height: 8px; }
.slot.is-dim { opacity: 0.2; filter: grayscale(0.6); }

/* Accordéon mobile */
.plan-accordion { display: none; }
.day-acc { background: var(--card-bg); border-radius: var(--r-md); margin-bottom: var(--sp-1); box-shadow: var(--shadow-sm); overflow: hidden; }
.day-acc__head {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 16px var(--sp-2);
  font-family: var(--font-title); text-transform: uppercase; font-size: 1rem; letter-spacing: 0.03em;
  color: var(--forest);
}
.day-acc__head svg { width: 20px; height: 20px; transition: transform 0.25s; }
.day-acc.is-open .day-acc__head svg { transform: rotate(180deg); }
.day-acc__body { display: none; padding: 0 var(--sp-2) var(--sp-2); flex-direction: column; gap: var(--sp-1); }
.day-acc.is-open .day-acc__body { display: flex; }

/* ------------------------------------------------------------------ */
/* 19. TARIFS                                                          */
/* ------------------------------------------------------------------ */
.price-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--sp-3); align-items: stretch; }
.price-card {
  background: var(--card-bg);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
  padding: var(--sp-4);
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  position: relative;
  border: 1px solid rgba(23,23,18,0.05);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.price-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
/* Bandeau couleur par catégorie (document tarifaire) */
.price-card { border-top: 6px solid var(--cat, var(--forest)); }
.price-card__name { color: var(--cat, var(--forest)); }
.price-card__amount .val { color: var(--cat, var(--forest)); }
.price-card--alpha { --cat: #26331F; }
.price-card--only  { --cat: #C9A227; }
.price-card--carte { --cat: #3E6B8A; }
.price-card--kids  { --cat: #7E6A9E; }
.price-card--reduc { --cat: #7E2029; }
.price-card--feature { box-shadow: var(--shadow-md); background: #fffdf7; }
.price-card--feature.price-card--alpha { grid-column: 1 / -1; }
.price-card__ribbon {
  position: absolute; top: -14px; left: var(--sp-4);
  background: var(--leaf); color: #0f1a09;
  font-family: var(--font-title); text-transform: uppercase; letter-spacing: 0.05em;
  font-size: 0.76rem; font-weight: 600; padding: 6px 16px; border-radius: var(--r-pill);
  box-shadow: var(--shadow-sm);
}
.price-card__name { font-family: var(--font-title); text-transform: uppercase; font-size: 1.4rem; }
.price-card__desc { color: var(--muted); font-size: 0.98rem; margin: 0; }
.price-card__amount { display: flex; align-items: baseline; gap: 6px; margin-block: var(--sp-1); flex-wrap: wrap; }
.price-card__amount .val { font-family: var(--font-title); font-size: 3rem; font-weight: 700; line-height: 1; color: var(--forest); }
.price-card__amount .per { color: var(--muted); font-size: 1rem; }
.price-card__note { font-size: 0.85rem; color: var(--muted); }

.engage-toggle { display: inline-flex; background: var(--cream-200); border-radius: var(--r-pill); padding: 5px; align-self: flex-start; }
.engage-toggle button {
  font-family: var(--font-title); text-transform: uppercase; font-size: 0.78rem; letter-spacing: 0.03em;
  padding: 8px 16px; border-radius: var(--r-pill); color: var(--muted); transition: all 0.2s;
}
.engage-toggle button.is-active { background: var(--forest); color: var(--cream); }

.reduc-row { display: flex; flex-wrap: wrap; gap: 8px; }
.reduc {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(87,166,58,0.12); color: var(--forest);
  font-weight: 600; font-size: 0.85rem;
  padding: 6px 13px; border-radius: var(--r-pill);
}

/* Ruban sticky "première séance offerte" */
.sticky-ribbon {
  position: fixed;
  right: var(--sp-3);
  bottom: var(--sp-3);
  z-index: 40;
  background: var(--bordeaux);
  color: var(--cream);
  padding: 8px 8px 8px 20px;
  border-radius: var(--r-pill);
  box-shadow: var(--shadow-lg);
  display: flex; align-items: center; gap: 14px;
  font-family: var(--font-title); text-transform: uppercase; font-size: 0.82rem; letter-spacing: 0.03em;
  transform: translateY(160%);
  transition: transform 0.4s var(--ease);
}
.sticky-ribbon.is-visible { transform: translateY(0); }
.sticky-ribbon svg { width: 18px; height: 18px; flex: none; }
.sticky-ribbon span { white-space: nowrap; }
.sticky-ribbon a { background: var(--leaf); color: #0f1a09; padding: 11px 28px; border-radius: var(--r-pill); font-size: 0.8rem; white-space: nowrap; }

/* ------------------------------------------------------------------ */
/* 20. CONTACT                                                         */
/* ------------------------------------------------------------------ */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: var(--sp-5); align-items: start; }
.contact-list { display: flex; flex-direction: column; gap: var(--sp-2); margin-bottom: var(--sp-3); }
.contact-item { display: flex; gap: var(--sp-2); align-items: flex-start; }
.contact-item__ic { width: 46px; height: 46px; border-radius: 14px; background: rgba(87,166,58,0.12); color: var(--leaf); display: flex; align-items: center; justify-content: center; flex: none; }
.contact-item__ic svg { width: 22px; height: 22px; }
.contact-item h3 { font-size: 1.05rem; margin-bottom: 2px; }
.contact-item p, .contact-item a { color: var(--muted); margin: 0; font-size: 0.98rem; }
.contact-item a:hover { color: var(--leaf); }
.map-embed { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-md); min-height: 360px; }
.map-embed iframe { width: 100%; height: 100%; min-height: 360px; border: 0; display: block; }

/* ------------------------------------------------------------------ */
/* 21. FOOTER                                                          */
/* ------------------------------------------------------------------ */
.footer { background: var(--forest-700); color: var(--cream); position: relative; }
.footer__map { height: 320px; }
.footer__map iframe { width: 100%; height: 100%; border: 0; display: block; filter: grayscale(0.2); }
.footer__identity { display: grid; grid-template-columns: 1.2fr 1fr; gap: var(--sp-5); padding-block: var(--sp-4); }
.footer__brand { display: flex; align-items: center; gap: 12px; margin-bottom: var(--sp-2); }
.footer__brand img { width: 52px; height: 52px; border-radius: 12px; }
.footer__brand-name { font-family: var(--font-title); text-transform: uppercase; font-size: 1.4rem; font-weight: 700; letter-spacing: 0.05em; }
.footer p { color: var(--muted-cream); margin: 0 0 var(--sp-1); }
.footer .footer__pack { font-family: var(--font-serif); font-style: italic; color: #a7d18f; font-size: 1.1rem; margin-bottom: var(--sp-2); }
.footer__reassure { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; font-size: 0.9rem; color: var(--muted-cream); margin-top: var(--sp-2); }
.footer__col h4 { font-family: var(--font-title); text-transform: uppercase; font-size: 0.85rem; letter-spacing: 0.06em; color: #a7d18f; margin: 0 0 var(--sp-2); }
.footer__col a:hover { color: var(--leaf); }
.footer__nav { display: flex; flex-wrap: wrap; gap: var(--sp-3); padding-block: var(--sp-3); }
.footer__nav a { font-family: var(--font-title); text-transform: uppercase; font-size: 0.9rem; letter-spacing: 0.03em; }
.footer__nav a:hover { color: var(--leaf); }
.footer__social { display: flex; gap: var(--sp-1); }
.footer__social a { width: 42px; height: 42px; border-radius: 12px; display: flex; align-items: center; justify-content: center; box-shadow: inset 0 0 0 1.5px var(--line-light); transition: background 0.2s; }
.footer__social a:hover { background: rgba(241,236,221,0.1); }
.footer__social svg { width: 19px; height: 19px; }
.footer__downloads { display: flex; flex-wrap: wrap; gap: var(--sp-2); padding-block: var(--sp-3); }
.footer__dl { display: inline-flex; align-items: center; gap: 8px; padding: 10px 16px; border-radius: var(--r-md); box-shadow: inset 0 0 0 1.5px var(--line-light); font-size: 0.9rem; transition: background 0.2s; }
.footer__dl:hover { background: rgba(241,236,221,0.08); }
.footer__dl svg { width: 18px; height: 18px; color: #a7d18f; }
.footer__bottom { display: flex; flex-wrap: wrap; gap: var(--sp-1) var(--sp-3); align-items: center; padding-block: var(--sp-3); font-size: 0.85rem; color: var(--muted-cream); }
.footer__bottom a:hover { color: var(--leaf); }

/* ------------------------------------------------------------------ */
/* 22. MODALE WODZ                                                     */
/* ------------------------------------------------------------------ */
.modal {
  position: fixed; inset: 0; z-index: 100;
  display: none;
  align-items: center; justify-content: center;
  padding: var(--sp-2);
  background: rgba(23,23,18,0.72);
  backdrop-filter: blur(4px);
}
.modal.is-open { display: flex; }
.modal__box {
  background: var(--cream);
  border-radius: var(--r-lg);
  width: 100%; max-width: 560px;
  max-height: 92vh;
  overflow: hidden;
  display: flex; flex-direction: column;
  box-shadow: var(--shadow-lg);
  animation: modal-in 0.3s var(--ease);
}
@keyframes modal-in { from { opacity: 0; transform: translateY(20px) scale(0.98); } to { opacity: 1; transform: none; } }
.modal__head { display: flex; align-items: center; justify-content: space-between; padding: var(--sp-2) var(--sp-3); border-bottom: 1px solid var(--line); }
.modal__head h3 { font-size: 1.15rem; }
.modal__close { width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; border-radius: 10px; color: var(--ink); }
.modal__close:hover { background: var(--cream-200); }
.modal__close svg { width: 24px; height: 24px; }
.modal__body { flex: 1; overflow: auto; }
.modal__body iframe { width: 100%; height: 620px; max-height: 78vh; border: 0; display: block; }

/* ------------------------------------------------------------------ */
/* 23. REVEAL AU SCROLL                                                */
/* ------------------------------------------------------------------ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: 0.1s; }
.reveal[data-delay="2"] { transition-delay: 0.2s; }
.reveal[data-delay="3"] { transition-delay: 0.3s; }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ------------------------------------------------------------------ */
/* 24. RESPONSIVE                                                      */
/* ------------------------------------------------------------------ */
@media (max-width: 980px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: repeat(2, 1fr); gap: var(--sp-4); }
  .stepper { grid-template-columns: 1fr; gap: var(--sp-3); }
  .step:not(:last-child)::after { display: none; }
  .split { grid-template-columns: 1fr; gap: var(--sp-3); }
  .split--reverse .split__media { order: 0; }
  .contact-grid { grid-template-columns: 1fr; gap: var(--sp-3); }
  .footer__identity { grid-template-columns: 1fr; gap: var(--sp-3); }
}

@media (max-width: 820px) {
  :root { --sp-6: 72px; --sp-5: 48px; }
  .nav__links { display: none; }
  .header__cta .btn-label { display: none; }
  .header__cta .btn-label--mobile { display: inline; }
  .nav { gap: var(--sp-1); }
  .burger { display: flex; }
  .header__cta .btn { padding: 10px 14px; font-size: 0.74rem; gap: 6px; }
  .header__cta .btn svg { width: 15px; height: 15px; }
  .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .price-grid { grid-template-columns: 1fr; }
  /* Planning : on garde la grille couleur visible sur mobile (défilement horizontal), on ne masque rien */
  [data-week-panel] { overflow-x: auto; -webkit-overflow-scrolling: touch; padding-bottom: 6px; }
  [data-week-panel] .plan-grid { min-width: 660px; }
  /* Pastilles hero compactes et sur une seule ligne dès l'apparition du menu burger */
  .hero .pill-row { gap: 6px; flex-wrap: nowrap; max-width: 100%; justify-content: center; }
  .hero .pill-row .pill, .hero__rating { padding: 5px 8px; font-size: 0.58rem; gap: 3px; white-space: nowrap; }
  .hero .pill-row .pill svg, .hero .pill-row .pill .stars svg,
  .hero__rating svg, .hero__rating .stars svg { width: 11px; height: 11px; }
  .hero__rating strong, .hero__rating .g-logo { font-size: 0.58rem; }
  .btn-lg { font-size: 0.78rem; padding: 13px 18px; gap: 6px; }
  .btn-lg svg { width: 15px; height: 15px; }
}

@media (max-width: 520px) {
  body { font-size: 16px; }
  .container { padding-inline: var(--sp-2); }
  .reviews-head { flex-direction: column; text-align: center; padding: var(--sp-3); }
  .reviews-head__meta { text-align: center; }
  .footer__bottom { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-1) var(--sp-2); }
  .sticky-ribbon { left: var(--sp-2); right: var(--sp-2); justify-content: center; }
  .btn-lg { width: 100%; justify-content: center; }
}

/* ------------------------------------------------------------------ */
/* 25. CARTES IMMERSIVES (Pourquoi Forest Wolf)                        */
/* ------------------------------------------------------------------ */
.card--immersive {
  position: relative;
  min-height: 400px;
  display: flex;
  align-items: flex-end;
}
.card--immersive .ph { position: absolute; inset: 0; border-radius: 0; z-index: 0; }
.card--immersive__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(38, 51, 31, 0.78);
}
.card--immersive__body {
  position: relative;
  z-index: 2;
  padding: var(--sp-4);
  display: flex;
  flex-direction: column;
  gap: var(--sp-1);
}
.card--immersive__body h3 { color: var(--cream); font-size: 1.4rem; }
.card--immersive__body p { color: rgba(241,236,221,0.85); margin: 0; }
.card--immersive .card__icon {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--leaf);
  color: #0f1a09;
  box-shadow: 0 10px 22px rgba(87,166,58,0.35);
  margin-bottom: var(--sp-1);
}
.card--immersive .card__icon svg { width: 30px; height: 30px; }
.card--immersive:hover .card__icon { background: var(--leaf-600); transform: scale(1.04); }

/* Titres de carte lisibles même sur une section vert forêt (cartes à fond clair) */
.bg-forest .card h3 { color: var(--ink); }

/* ------------------------------------------------------------------ */
/* 26. BANDE APPARTENANCE                                              */
/* ------------------------------------------------------------------ */
.band--spirit { text-align: center; }
.band--spirit .band__inner { max-width: 860px; margin-inline: auto; }
.band--spirit h2 { font-size: clamp(2.2rem, 5.5vw, 3.8rem); margin-bottom: var(--sp-3); }
.band--spirit .band__lead { font-size: 1.2rem; color: rgba(241,236,221,0.9); margin-bottom: var(--sp-4); }

/* Pack Alpha en pleine largeur : 2 colonnes sur desktop */
@media (min-width: 821px) {
  .price-card--feature.price-card--alpha {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: var(--sp-5);
    align-items: center;
  }
  .price-card--feature .price-card__side { border-left: 1px solid var(--line); padding-left: var(--sp-4); }
}
.price-card__main { display: flex; flex-direction: column; gap: var(--sp-2); }
.price-card__side { display: flex; flex-direction: column; gap: var(--sp-2); }

/* Utilitaires */
.mt-2 { margin-top: var(--sp-2); }
.mt-3 { margin-top: var(--sp-3); }
.mt-4 { margin-top: var(--sp-4); }
.text-center { text-align: center; }
.mx-auto { margin-inline: auto; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }
