/* ============================================================
   HS PERSONAL TRAINER — DESIGN SYSTEM
   Fichier unique chargé sur toutes les pages du site.
   Ne pas dupliquer ces règles dans les pages : uniquement
   du HTML (structure) + les classes définies ici.
   ============================================================ */

/* ---------- 1. FONTS ---------- */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400;600;700&family=Montserrat:wght@300;400;500;600;700;800&display=swap');

/* ---------- 2. DESIGN TOKENS ---------- */
:root {
  /* Couleurs de marque — NE JAMAIS MODIFIER (charte figée) */
  --gold:         #C9A84C;
  --gold-light:   #E2C06A;
  --gold-dark:    #8A6A22;
  --black:        #080808;
  --dark:         #101010;
  --card-bg:      #141414;
  --surface:      #0a0a0a;

  --border:        rgba(201,168,76,0.18);
  --border-active: rgba(201,168,76,0.55);
  --border-soft:   rgba(201,168,76,0.10);

  --text:      #F0EAD6;
  --text-dim:  rgba(240,234,214,0.62);
  --text-mute: rgba(240,234,214,0.65);
  --white:     #ffffff;

  /* Statuts (badges disponibilité, succès formulaire, etc.) */
  --status-ok:      #32C864;
  --status-info:    #64A0DC;
  --status-warn:    #FF8C00;

  /* Typographie */
  --font-display: 'Cormorant Garamond', serif;   /* titres, prix, chiffres clés */
  --font-body:    'Montserrat', sans-serif;       /* tout le reste */

  /* Échelle typographique (mobile-first) */
  --fs-eyebrow:   10px;
  --fs-label:     11px;
  --fs-body-sm:   12px;
  --fs-body:      13px;
  --fs-body-lg:   14px;
  --fs-h3:        26px;
  --fs-h2:        40px;
  --fs-h1:        clamp(60px, 14vw, 100px);

  /* Espacements (échelle 4px) */
  --sp-1: 4px;
  --sp-2: 8px;
  --sp-3: 12px;
  --sp-4: 16px;
  --sp-5: 20px;
  --sp-6: 24px;
  --sp-8: 32px;
  --sp-10: 40px;
  --sp-12: 48px;
  --sp-16: 64px;
  --sp-18: 72px;

  /* Rayons + ombres */
  --radius-sm: 2px;
  --radius-md: 3px;
  --radius-lg: 8px;
  --radius-pill: 20px;
  --shadow-gold: 0 4px 30px rgba(201,168,76,0.10);

  /* Transitions */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --t-fast: 0.25s;
  --t-base: 0.35s;
  --t-slow: 0.5s;

  /* Layout */
  --content-width: 480px;   /* largeur max de lecture, mobile-first */
  --content-width-md: 760px;  /* tablette */
  --content-width-lg: 1140px; /* desktop */
  --nav-height: 56px;
  --z-nav: 999;
  --z-modal: 1000;
}

/* ---------- 3. RESET ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--text);
  font-family: var(--font-body);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

/* Accessibilité : focus clavier visible partout */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

/* Respect des préférences de mouvement réduit */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

/* ---------- 4. TYPOGRAPHIE ---------- */
.eyebrow {
  font-size: var(--fs-eyebrow);
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  opacity: 0.85;
}

.h1 {
  font-family: var(--font-display);
  font-size: var(--fs-h1);
  font-weight: 700;
  line-height: 0.88;
  letter-spacing: -2px;
  color: var(--text);
}
.h1 em { color: var(--gold); font-style: italic; }

.h2 {
  font-family: var(--font-display);
  font-size: var(--fs-h2);
  font-weight: 600;
  color: var(--text);
}

.h3 {
  font-family: var(--font-display);
  font-size: var(--fs-h3);
  font-weight: 600;
  color: var(--text);
}

.body-text {
  font-size: var(--fs-body-sm);
  line-height: 1.8;
  color: var(--text-dim);
  font-weight: 300;
}

.divider {
  width: 50px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  margin: var(--sp-5) auto;
}

/* ---------- 5. LAYOUT / GRID ---------- */
.section {
  padding: var(--sp-18) var(--sp-5);
  max-width: var(--content-width);
  margin: 0 auto;
  background: var(--black);
}
.section.on-dark {
  background: var(--dark);
  border-top: 1px solid var(--border);
}

.section-header { text-align: center; margin-bottom: var(--sp-10); }

/* Conteneur pleine largeur avec contenu recentré (ex: ticker) */
.full-bleed { width: 100%; max-width: none; }

/* ---------- 6. NAVBAR (identique sur toutes les pages) ---------- */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: var(--z-nav);
  background: rgba(8,8,8,0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-soft);
  padding: 0 var(--sp-5);
  display: flex; align-items: center; justify-content: center;
  height: var(--nav-height);
}
.navbar ul {
  display: flex; list-style: none;
  width: 100%; max-width: var(--content-width);
  justify-content: space-between;
}
.navbar ul li a {
  font-size: 10.5px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--text-dim); font-weight: 600;
  padding: var(--sp-3) var(--sp-1); display: block;
  border-bottom: 1px solid transparent;
  transition: color var(--t-fast) var(--ease);
}
.navbar ul li a:hover,
.navbar ul li a.active { color: var(--gold); }
.navbar ul li a.active { border-bottom-color: var(--gold); }

/* ---------- 7. BOUTONS ---------- */
/* Bouton primaire : action de conversion (bilan offert, prise de RDV)
   RÈGLE DE MARQUE — ne jamais déroger :
   - Wording officiel et unique : "Réserver mon bilan offert"
   - Un seul .btn-primary visible à l'écran à la fois
   - Toujours même couleur, mêmes dimensions, mêmes coins, même animation */
.btn-primary {
  display: inline-block; width: 100%;
  padding: var(--sp-4);
  background: var(--gold);
  border: none; border-radius: var(--radius-sm);
  color: var(--black);
  font-size: var(--fs-body-sm); font-weight: 700;
  letter-spacing: 4px; text-transform: uppercase;
  text-align: center;
  -webkit-appearance: none;
  transition: transform var(--t-fast) var(--ease), box-shadow var(--t-fast) var(--ease);
}
.btn-primary:hover { transform: translateY(-1px); box-shadow: var(--shadow-gold); }
.btn-primary:active { transform: translateY(0); }

/* Bouton secondaire : action alternative (en savoir plus, voir la méthode) */
.btn-secondary {
  display: inline-block; width: 100%;
  padding: calc(var(--sp-4) - 1px);
  background: transparent;
  border: 1px solid var(--gold);
  border-radius: var(--radius-sm);
  color: var(--gold);
  font-size: var(--fs-eyebrow); font-weight: 700;
  letter-spacing: 4px; text-transform: uppercase;
  text-align: center;
  -webkit-appearance: none;
  transition: background var(--t-fast) var(--ease), color var(--t-fast) var(--ease);
}
.btn-secondary:hover { background: rgba(201,168,76,0.1); }

/* Bouton tertiaire / lien discret (ex: "voir tous les ebooks") */
.btn-text {
  display: inline-flex; align-items: center; gap: var(--sp-1);
  color: var(--gold); font-size: var(--fs-label);
  letter-spacing: 2px; text-transform: uppercase; font-weight: 600;
  border-bottom: 1px solid rgba(201,168,76,0.3);
  padding-bottom: 2px;
}

/* Bouton icône rond (réseaux sociaux) */
.btn-icon {
  width: 44px; height: 44px; border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.3);
  background: rgba(255,255,255,0.06);
  display: flex; align-items: center; justify-content: center;
  transition: all var(--t-fast) var(--ease);
}
.btn-icon:hover { border-color: var(--gold); background: var(--gold); }
.btn-icon svg { width: 18px; height: 18px; }

/* ---------- 8. CARTES ---------- */
/* Carte de base : socle de toutes les cartes du site */
.card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  position: relative;
}
.card.active,
.card:hover.card--hoverable {
  border-color: var(--border-active);
  box-shadow: var(--shadow-gold);
}
.card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  opacity: 0; transition: opacity var(--t-base) var(--ease);
}
.card.active::before { opacity: 1; }

/* En-tête cliquable (accordéon) réutilisé par offres / FAQ / à propos */
.card-header {
  padding: var(--sp-5) var(--sp-6);
  display: flex; align-items: center; justify-content: space-between;
  cursor: pointer; user-select: none; gap: var(--sp-3);
}
.card-header:active { background: rgba(255,255,255,0.03); }

.card-toggle {
  width: 28px; height: 28px; border-radius: 50%;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: var(--gold); font-size: 20px; line-height: 1;
  transition: all var(--t-base) var(--ease);
}
.card.active .card-toggle,
.card.open .card-toggle {
  border-color: var(--gold);
  background: rgba(201,168,76,0.1);
  transform: rotate(45deg);
}

.card-body {
  max-height: 0; overflow: hidden;
  transition: max-height var(--t-base) ease;
}
.card.active .card-body,
.card.open .card-body { max-height: 700px; }

.card-inner { padding: 0 var(--sp-6) var(--sp-6); border-top: 1px solid var(--border); }

/* Carte produit (ebooks boutique) */
.product-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--t-fast) var(--ease), border-color var(--t-fast) var(--ease);
}
.product-card:hover { transform: translateY(-2px); border-color: var(--border-active); }
.product-card__img { width: 100%; aspect-ratio: 3/4; object-fit: cover; }
.product-card__body { padding: var(--sp-5); }
.product-card__title { font-family: var(--font-display); font-size: 22px; font-weight: 600; margin-bottom: var(--sp-1); }
.product-card__price { font-family: var(--font-display); font-size: 28px; color: var(--gold); font-weight: 700; }

/* ---------- 9. BADGES / ÉTIQUETTES ---------- */
.badge {
  display: inline-block;
  font-size: 9px; letter-spacing: 2px; text-transform: uppercase; font-weight: 700;
  padding: 2px var(--sp-2); border-radius: var(--radius-sm);
}
.badge--gold { background: var(--gold); color: var(--black); }
.badge--outline {
  border: 1px solid rgba(201,168,76,0.4); border-radius: var(--radius-pill);
  color: var(--gold); background: transparent; font-weight: 600; padding: 3px var(--sp-3);
}
.badge--status {
  border: 1px solid; border-radius: var(--radius-pill);
  background: rgba(0,0,0,0.3);
}
.badge--ok      { color: var(--status-ok);   border-color: rgba(50,200,100,0.4); }
.badge--info    { color: var(--status-info); border-color: rgba(100,160,220,0.4); }
.badge--warn    { color: var(--status-warn); border-color: rgba(255,140,0,0.4); }

/* ---------- 10. FORMULAIRES ---------- */
.form-row { display: flex; gap: var(--sp-3); }
.form-row .input-wrap { flex: 1; }

.input-wrap { display: flex; flex-direction: column; gap: var(--sp-2); }

.input-label {
  font-size: 9px; letter-spacing: 3px; text-transform: uppercase;
  color: rgba(201,168,76,0.8); font-weight: 600;
}

.input-field {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: var(--radius-sm);
  padding: var(--sp-3) var(--sp-4);
  font-family: var(--font-body); font-size: var(--fs-body-lg); font-weight: 300;
  color: var(--text); outline: none; width: 100%;
  transition: border-color var(--t-fast) var(--ease);
}
.input-field:focus { border-color: var(--gold); }
.input-field::placeholder { color: var(--text-dim); }

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

.form-success {
  display: none; text-align: center; padding: var(--sp-10) var(--sp-6);
  border: 1px solid rgba(201,168,76,0.2); border-radius: var(--radius-lg);
}
.form-success.visible { display: block; }
.form-success-icon { font-size: 32px; color: var(--gold); margin-bottom: var(--sp-3); }

/* ---------- 11. FOOTER (identique sur toutes les pages) ---------- */
.footer {
  background: var(--surface); text-align: center;
  padding: var(--sp-10) var(--sp-6) 52px;
  border-top: 1px solid var(--border);
}
.footer-logo {
  font-family: var(--font-display); font-size: 22px; color: var(--gold);
  letter-spacing: 3px; margin-bottom: var(--sp-5);
}
.footer-social { display: flex; justify-content: center; gap: var(--sp-3); margin-bottom: var(--sp-5); }
.footer-nav { display: flex; justify-content: center; gap: var(--sp-5); flex-wrap: wrap; margin-bottom: var(--sp-5); }
.footer-nav a { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--text-dim); }
.footer-nav a:hover { color: var(--gold); }
.footer-trust { display: flex; flex-direction: column; align-items: center; gap: 6px; margin-bottom: var(--sp-5); padding-bottom: var(--sp-5); border-bottom: 1px solid var(--border); }
.footer-trust__badge { font-size: 10px; letter-spacing: 1.5px; color: var(--gold); font-weight: 600; }
.footer-trust__zone { font-size: 10px; color: var(--text-dim); letter-spacing: 0.5px; }
.footer-legal { display: flex; justify-content: center; gap: var(--sp-4); flex-wrap: wrap; margin-bottom: var(--sp-3); }
.footer-legal a { font-size: 9px; color: rgba(255,255,255,0.3); letter-spacing: 1px; text-decoration: underline; }
.footer-legal a:hover { color: var(--text-dim); }
.footer-copy { font-size: 10px; color: rgba(255,255,255,0.18); letter-spacing: 2px; }

/* ---------- 12. COMPOSANTS SPÉCIFIQUES ---------- */

/* Timeline (utilisée sur /methode) */
.timeline { position: relative; padding: var(--sp-2) 0; }
.timeline::before {
  content: ''; position: absolute; left: 50%; transform: translateX(-50%);
  top: 0; bottom: 0; width: 1px; background: var(--gold); opacity: 0.25;
}
.tl-item { position: relative; margin-bottom: var(--sp-10);
  opacity: 0; transform: translateY(20px);
  transition: opacity var(--t-slow) ease, transform var(--t-slow) ease;
}
.tl-item:last-child { margin-bottom: 0; }
.tl-item:nth-child(odd)  { padding-right: calc(50% + 24px); text-align: right; }
.tl-item:nth-child(even) { padding-left: calc(50% + 24px); text-align: left; }
.tl-item.visible { opacity: 1; transform: translateY(0); }
.tl-dot {
  position: absolute; top: 8px; left: 50%; transform: translateX(-50%);
  width: 11px; height: 11px; border-radius: 50%;
  background: var(--card-bg); border: 2px solid var(--gold); z-index: 2;
  transition: background var(--t-slow), box-shadow var(--t-slow);
}
.tl-item.visible .tl-dot { background: var(--gold); box-shadow: 0 0 12px rgba(201,168,76,0.5); }
.tl-year { font-family: var(--font-display); font-size: 34px; font-weight: 700; color: var(--gold); line-height: 1; }
.tl-label { font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--white); margin: var(--sp-1) 0 var(--sp-2); }

/* Ticker horizontal (lieux, avis, logos) */
.ticker-wrap {
  overflow: hidden; border-top: 1px solid rgba(201,168,76,0.2); border-bottom: 1px solid rgba(201,168,76,0.2);
  background: var(--surface); padding: var(--sp-4) 0; position: relative;
}
.ticker-wrap::before, .ticker-wrap::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 60px; z-index: 2; pointer-events: none;
}
.ticker-wrap::before { left: 0; background: linear-gradient(to right, var(--black), transparent); }
.ticker-wrap::after  { right: 0; background: linear-gradient(to left, var(--black), transparent); }
.ticker-track { display: flex; gap: var(--sp-5); width: max-content; animation: ticker 14s linear infinite; }
.ticker-track:hover { animation-play-state: paused; }
@keyframes ticker { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* Grille responsive générique (2 col dès tablette) */
.grid-2 { display: grid; grid-template-columns: 1fr; gap: var(--sp-4); }
@media (min-width: 640px) { .grid-2 { grid-template-columns: 1fr 1fr; } }

.grid-3 { display: grid; grid-template-columns: 1fr; gap: var(--sp-4); }
@media (min-width: 640px)  { .grid-3 { grid-template-columns: 1fr 1fr; } }
@media (min-width: 960px)  { .grid-3 { grid-template-columns: 1fr 1fr 1fr; } }

/* Fil d'Ariane léger (pages profondes de la boutique) */
.breadcrumb {
  font-size: 10px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--text-dim); margin-bottom: var(--sp-5);
}
.breadcrumb a { color: var(--gold); }
.breadcrumb span { margin: 0 var(--sp-1); opacity: 0.4; }

/* ---------- 13. UTILITAIRES ---------- */
.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.text-dim { color: var(--text-dim); }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.hidden { display: none !important; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); border: 0;
}

/* ---------- 14. ANIMATIONS STANDARDISÉES ----------
   Toute animation du site doit utiliser ces classes et ces
   keyframes. Ne jamais écrire un @keyframes ou une transition
   ad hoc dans une page.
------------------------------------------------------------ */

/* Apparition — animée en CSS pur pour garantir la visibilité du contenu
   même si le JS ne s'exécute pas. L'IntersectionObserver de common.js
   n'est qu'une amélioration facultative, jamais une condition d'affichage. */
@keyframes revealIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInSimple {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.reveal { animation: revealIn var(--t-slow) var(--ease) both; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* Variante fade simple, sans déplacement (ex: apparition d'une image) */
.reveal-fade { animation: fadeInSimple var(--t-slow) var(--ease) both; }
.reveal-fade.visible { opacity: 1; }

/* Délais d'apparition échelonnée (listes, grilles, FAQ) */
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }
.delay-5 { animation-delay: 0.5s; }

/* Hover générique (cartes cliquables, liens produits) */
.hover-lift { transition: transform var(--t-fast) var(--ease), box-shadow var(--t-fast) var(--ease); }
.hover-lift:hover { transform: translateY(-2px); box-shadow: var(--shadow-gold); }

/* Pulsation douce (indicateur scroll, points "live") */
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }
.animate-pulse { animation: pulse 2s ease infinite; }

/* Rotation d'icône (chevrons, toggles — déjà utilisée par .card-toggle) */
.rotate-45 { transform: rotate(45deg); }

/* Fondu simple à l'arrivée sur une page (hero, titres de page) */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
.animate-in { animation: fadeInUp var(--t-slow) var(--ease) both; }

/* Règles de durée — à respecter partout, ne pas inventer de nouvelles valeurs :
   - t-fast (0.25s) : hover, focus, micro-interactions
   - t-base (0.35s) : accordéons, toggles, cartes actives
   - t-slow (0.5s)  : apparitions au scroll, transitions de page
   Toutes les easing utilisent --ease (cubic-bezier(0.4,0,0.2,1)),
   jamais de "linear" ou "ease-in-out" par défaut du navigateur. */

/* ---------- 16. TARIFICATION (v1.1 — ajout additif) ----------
   Ajouté pour /coaching et réutilisable sur /boutique.
   N'altère aucun composant existant de la v1.0.
------------------------------------------------------------ */
.price-row {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(201,168,76,0.1);
  border-radius: var(--radius-sm);
  padding: var(--sp-3) var(--sp-4);
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 7px;
}
.price-row--highlight { border-color: rgba(201,168,76,0.3); }
.price-row__name { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--text); margin-bottom: 2px; }
.price-row__duration { font-size: 10px; color: var(--text-dim); letter-spacing: 1px; }
.price-row__amount { font-family: var(--font-display); font-size: 28px; font-weight: 700; color: var(--gold); line-height: 1; text-align: right; }
.price-row__period { font-size: 9px; color: var(--text-dim); letter-spacing: 1px; margin-top: 2px; text-align: right; }

.feature-item { display: flex; align-items: center; gap: var(--sp-2); font-size: 11px; margin-bottom: 7px; }
.feature-item__dot { width: 5px; height: 5px; border-radius: 50%; flex-shrink: 0; }
.feature-item--included { color: var(--text); }
.feature-item--included .feature-item__dot { background: var(--gold); }
.feature-item--excluded { opacity: 0.3; color: var(--text-dim); }
.feature-item--excluded .feature-item__dot { background: rgba(255,255,255,0.2); }

/* Profil-cible ("Cette formule est faite pour toi si...") */
.fit-for {
  background: rgba(201,168,76,0.06);
  border-left: 2px solid var(--gold);
  padding: var(--sp-3) var(--sp-4);
  font-size: 12px; line-height: 1.8; color: var(--text);
  margin-bottom: var(--sp-4);
}
.fit-for strong { color: var(--gold); }

/* ---------- 18. RESPONSIVE DESKTOP (v1.2 — ajout additif) ----------
   Élargit les fondations communes à toutes les pages sur tablette/desktop.
   Les mises en page spécifiques (hero en 2 colonnes, grilles élargies)
   sont ajoutées dans le CSS propre à chaque page, en s'appuyant sur
   --content-width-md / --content-width-lg définis ci-dessus.
------------------------------------------------------------ */
@media (min-width: 760px) {
  .navbar ul { max-width: var(--content-width-md); }
  .section, .footer-nav, .footer-social { max-width: var(--content-width-md); }
  .footer-logo, .footer-copy { max-width: var(--content-width-md); margin-left: auto; margin-right: auto; }
}

@media (min-width: 1200px) {
  body { font-size: 15px; }
  .navbar ul { max-width: var(--content-width-lg); }
  .navbar ul li a { font-size: 12px; letter-spacing: 2.5px; }
  .section { max-width: var(--content-width-lg); padding-top: var(--sp-18); padding-bottom: var(--sp-18); }
  .h1 { font-size: clamp(72px, 7vw, 120px); }
  .h2 { font-size: 48px; }
  .h3 { font-size: 30px; }
  .body-text { font-size: 15px; }
  .btn-primary, .btn-secondary { width: auto; padding-left: var(--sp-10); padding-right: var(--sp-10); }
  .grid-3 { grid-template-columns: repeat(3, 1fr); gap: var(--sp-6); }
  .grid-2 { grid-template-columns: 1fr 1fr; gap: var(--sp-8); }
}

/* Conteneur deux-colonnes générique, utilisable sur toute page
   (texte d'un côté, image/visuel de l'autre) — desktop uniquement. */
.desktop-split { display: block; }
@media (min-width: 1200px) {
  .desktop-split {
    display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-12);
    align-items: center; max-width: var(--content-width-lg); margin: 0 auto;
  }
  .desktop-split.reverse { direction: rtl; }
  .desktop-split.reverse > * { direction: ltr; }
}

/* Listes de cartes empilées (offres, FAQ) : restent en 1 colonne jusqu'au
   desktop pour ne pas comprimer des accordéons sur tablette moyenne. */
.card-list { display: flex; flex-direction: column; gap: 10px; }
@media (min-width: 1200px) {
  .card-list { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-5); align-items: start; }
}
