/* ============================================================
   AKDC — CHARACTER v3
   Fight brand : imagerie cinématographique, grain, mouvement,
   typographie massive. Chargé APRÈS main.css (cascade).
   ============================================================ */

h1, h2, h3, h4 { font-weight: 700; }

/* ======================================================================
   GRAIN — texture filmique globale (casse le côté "flat vector")
   ====================================================================== */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9998;
  pointer-events: none;
  opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 140px 140px;
}
@media (prefers-reduced-motion: reduce) { body::after { opacity: 0.03; } }

/* ======================================================================
   HEADER — verre fumé premium, état scrolled
   ====================================================================== */
.site-header {
  background: rgba(7, 7, 11, 0.62);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
          backdrop-filter: blur(16px) saturate(140%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: none;
  transition: background 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.site-header.is-scrolled {
  background: rgba(7, 7, 11, 0.92);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.45);
}

.nav-logo { font-size: 1.5rem; letter-spacing: 0.16em; }
.nav-logo span.accent { color: var(--color-accent); }

.nav-link,
.nav-disciplines-toggle {
  position: relative;
  font-family: var(--font-heading);
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.13em;
  color: rgba(255, 255, 255, 0.72);
  background: transparent;
}
.nav-link:hover,
.nav-link.active,
.nav-disciplines-toggle:hover {
  color: #fff;
  background: transparent;
}
.nav-link::after {
  content: '';
  position: absolute;
  left: 0.75rem; right: 0.75rem; bottom: 0.05rem;
  height: 2px;
  background: var(--color-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1);
}
.nav-link:hover::after,
.nav-link.active::after { transform: scaleX(1); }

/* ======================================================================
   PAGE HOME — thème dark complet
   ====================================================================== */
.page-home { background: #060609; }

/* ---------- HERO full-bleed image ---------- */
.page-home .hero {
  display: flex;
  flex-direction: column;
  min-height: 100dvh;
  background: #060609;
  overflow: hidden;
}
.page-home .hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: url('../img/hero-combat.webp') no-repeat;
  background-size: cover;
  background-position: 72% center;
  transform: scale(1.02);
}
.page-home .hero-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(6,6,9,0.97) 0%, rgba(6,6,9,0.86) 36%, rgba(6,6,9,0.30) 66%, rgba(6,6,9,0.55) 100%),
    linear-gradient(0deg,  rgba(6,6,9,0.96) 0%, rgba(6,6,9,0) 34%, rgba(6,6,9,0) 66%, rgba(6,6,9,0.55) 100%);
}
.page-home .hero-inner {
  position: relative;
  z-index: 2;
  flex: 1 1 auto;
  min-height: 0;
  display: flex;
  align-items: center;
  padding-top: 64px;
}
.page-home .hero-content {
  max-width: 760px;
  padding: var(--space-3xl) 0;
  border-left: none; /* annule l'ancienne barre héritée de main.css (.hero-content) -> évite la double barre */
}
/* Barre d'accent rouge : simple bordure d'un bloc qui entoure eyebrow + titre + texte + boutons.
   Elle fait exactement la hauteur de ce bloc et s'arrete aux boutons -> jamais sur le marquee.
   Aucune unite fragile (pas de vh, clamp ni position absolute) : rendu identique partout. */
.page-home .hero-headline {
  border-left: 4px solid var(--color-accent);
  padding-left: var(--space-xl);
}
.page-home .hero-eyebrow {
  display: inline-block;
  background: rgba(230, 57, 70, 0.12);
  border: 1px solid rgba(230, 57, 70, 0.45);
  color: #fff;
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.66rem;
  padding: 0.4rem 0.85rem;
  border-radius: 2px;
  margin-bottom: var(--space-lg);
}
.page-home .hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 8.5vw, 7rem);
  text-transform: uppercase;
  letter-spacing: -0.025em;
  line-height: 0.9;
  color: #fff;
  margin-bottom: var(--space-lg);
  text-wrap: balance;
}
.page-home .hero h1 .accent { color: var(--color-accent); }
.page-home .hero-sub {
  font-size: clamp(1rem, 2vw, 1.18rem);
  color: rgba(247, 247, 245, 0.78);
  max-width: 52ch;
  line-height: 1.7;
  margin-bottom: var(--space-xl);
}

/* ---------- Marquee cinétique ---------- */
.page-home .hero-marquee {
  position: relative;
  z-index: 2;
  flex: 0 0 auto;
  padding: var(--space-md) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(0deg, rgba(6,6,9,0.92), rgba(6,6,9,0.35));
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}
.page-home .hero-marquee-track {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
  width: max-content;
  animation: hmq-scroll 34s linear infinite;
}
.hmq {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3.4vw, 2.6rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  white-space: nowrap;
  color: transparent;
  -webkit-text-stroke: 1.4px var(--dc);
}
.hmq-star { color: var(--color-accent); font-size: 0.9rem; opacity: 0.8; }
@keyframes hmq-scroll { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) {
  .page-home .hero-marquee-track { animation: none; }
}

/* Scroll cue au-dessus du marquee */
.page-home .hero-scroll { display: none; }

/* ---------- Boutons sur fond sombre ---------- */
.page-home .hero .btn-outline,
.page-home .btn-outline {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.38);
  background: transparent;
}
.page-home .hero .btn-outline:hover,
.page-home .btn-outline:hover {
  background: #fff;
  color: #0a0a0f;
  border-color: #fff;
}

/* ======================================================================
   BANDEAU LICENCE — 235 € géant, sombre, glow rouge
   ====================================================================== */
.page-home .bandeau-licence {
  background: #0A0A10;
  color: #fff;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  padding-block: var(--space-4xl);
  position: relative;
  overflow: hidden;
}
.page-home .bandeau-licence::before {
  content: '';
  position: absolute;
  top: 50%; left: -5%;
  transform: translateY(-50%);
  width: 60vw; height: 120%;
  background: radial-gradient(ellipse at center, rgba(230, 57, 70, 0.14) 0%, transparent 62%);
  pointer-events: none;
}
.page-home .bandeau-licence .container { position: relative; z-index: 1; }
.page-home .bandeau-inner {
  display: grid;
  grid-template-columns: auto 1px 1fr;
  gap: var(--space-2xl) var(--space-3xl);
  align-items: center;
}
.page-home .bandeau-price-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.3rem;
}
.page-home .bandeau-licence-price {
  font-family: var(--font-heading);
  font-size: clamp(5rem, 15vw, 11rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
  padding-bottom: 0.08em;
  color: #fff;
}
.page-home .bandeau-currency {
  font-size: 0.45em;
  vertical-align: super;
  color: var(--color-accent);
  -webkit-text-fill-color: var(--color-accent);
}
.page-home .bandeau-period {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(247, 247, 245, 0.34);
}
.page-home .bandeau-sep {
  background: linear-gradient(180deg, transparent, rgba(255,255,255,0.16), transparent);
  align-self: stretch;
  min-height: 120px;
}
.page-home .bandeau-licence-text h2 {
  color: #fff;
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin-bottom: var(--space-md);
}
.page-home .bandeau-licence-text p {
  color: rgba(247, 247, 245, 0.55);
  max-width: 50ch;
  line-height: 1.7;
  margin-bottom: var(--space-lg);
}
.page-home .bandeau-discipline-chip {
  background: rgba(255, 255, 255, 0.04);
  border-width: 1px;
  border-style: solid;
  font-weight: 600;
  letter-spacing: 0.04em;
  border-radius: 2px;
}

/* ======================================================================
   DISCIPLINES — cartes immersives en image
   ====================================================================== */
.page-home #disciplines { background: #060609; padding-top: calc(var(--space-3xl) + 2vw); }
.page-home #disciplines .section-label { color: var(--color-accent); }
.page-home #disciplines .section-title { color: #fff; }
.page-home #disciplines .section-lead  { color: rgba(247, 247, 245, 0.50); }

.page-home .discipline-card {
  position: relative;
  min-height: 460px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 3px;
  overflow: hidden;
  background: #0B0B13;
  isolation: isolate;
}
/* Couche image (zoom au hover) */
.page-home .discipline-card::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: var(--card-img);
  background-size: cover;
  background-position: center;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
/* Scrim dégradé pour lisibilité */
.page-home .discipline-card::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to top,
    rgba(6,6,9,0.96) 0%,
    rgba(6,6,9,0.72) 28%,
    rgba(6,6,9,0.15) 60%,
    rgba(6,6,9,0.45) 100%);
  transition: background 0.4s ease;
}
.page-home .discipline-card:hover::before { transform: scale(1.07); }
.page-home .discipline-card:hover::after {
  background: linear-gradient(
    to top,
    rgba(6,6,9,0.94) 0%,
    rgba(6,6,9,0.55) 32%,
    rgba(6,6,9,0.05) 65%,
    rgba(6,6,9,0.40) 100%);
}
.page-home .discipline-card:hover {
  transform: translateY(-6px);
  border-color: var(--discipline-color);
  box-shadow: 0 30px 64px rgba(0,0,0,0.6), inset 0 0 0 1px var(--discipline-color);
}

.page-home .discipline-card-num {
  position: absolute;
  top: var(--space-md);
  left: var(--space-md);
  z-index: 2;
  font-family: var(--font-heading);
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--discipline-color);
  opacity: 0.85;
}
.page-home .discipline-card-body {
  position: relative;
  z-index: 2;
  padding: var(--space-lg);
}
.page-home .discipline-card-name {
  font-family: var(--font-heading);
  font-size: 1.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: #fff;
  margin-bottom: 0.35rem;
}
/* trait couleur sous le titre */
.page-home .discipline-card-name::after {
  content: '';
  display: block;
  width: 38px; height: 3px;
  margin-top: 0.6rem;
  background: var(--discipline-color);
  transition: width 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.page-home .discipline-card:hover .discipline-card-name::after { width: 72px; }
.page-home .discipline-card-tagline {
  color: rgba(247, 247, 245, 0.66);
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: var(--space-sm);
}
.page-home .discipline-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.74rem;
  font-weight: 600;
  color: var(--discipline-color);
}
.page-home .discipline-card-link svg { transition: transform 0.25s ease; }
.page-home .discipline-card:hover .discipline-card-link svg { transform: translateX(4px); }

/* ======================================================================
   SECTIONS — réassurance, planning preview, ambiance (cohérence dark)
   ====================================================================== */
.page-home .bandeau-reassurance {
  background: #0A0A10;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.page-home .bandeau-reassurance h2 { color: #fff; }
.page-home .bandeau-reassurance p  { color: rgba(247, 247, 245, 0.55); }
.page-home .reassurance-label      { color: rgba(247, 247, 245, 0.80); }
.page-home .reassurance-icon       { color: var(--color-accent); }

/* Planning preview : sombre */
.page-home .section--surface { background: #08080E; }
.page-home .section--surface .section-title { color: #fff; }
.page-home .section--surface .section-lead  { color: rgba(247, 247, 245, 0.5); }
.page-home .section--surface .section-label { color: var(--color-accent); }
.page-home .planning-row {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-left: 3px solid var(--discipline-color, var(--color-accent));
  color: rgba(247, 247, 245, 0.9);
}
.page-home .planning-row:hover { background: rgba(255, 255, 255, 0.06); }
.page-home .planning-day        { color: rgba(247, 247, 245, 0.45); }
.page-home .planning-time       { color: #fff; }
.page-home .planning-discipline { color: #fff; }
.page-home .planning-group-chip {
  background: rgba(255, 255, 255, 0.07);
  color: rgba(247, 247, 245, 0.85);
}
.page-home .btn-outline-dark {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.32);
  background: transparent;
}
.page-home .btn-outline-dark:hover {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: #fff;
}

/* Ambiance (déjà sombre) */
.page-home .section--dark { background: #07070D; }
.page-home .placeholder-media {
  border: 1px dashed rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.02);
}

/* ======================================================================
   CTA ESSAI — noir absolu + glow rouge
   ====================================================================== */
.page-home .cta-essai {
  background: #030306;
  position: relative;
  overflow: hidden;
}
.page-home .cta-essai::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: min(1000px, 160vw);
  height: min(800px, 120vw);
  background: radial-gradient(ellipse at center, rgba(230, 57, 70, 0.18) 0%, transparent 64%);
  pointer-events: none;
}
.page-home .cta-essai > .container { position: relative; z-index: 1; }
.page-home .cta-essai h2 {
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: -0.01em;
}

/* ======================================================================
   BANDE AMBIANCE — image plein cadre cinématographique
   ====================================================================== */
.ambiance-band {
  position: relative;
  min-height: 78vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: #060609;
}
.ambiance-band-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.ambiance-band-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(6,6,9,0.96) 0%, rgba(6,6,9,0.45) 45%, rgba(6,6,9,0.20) 100%);
}
.ambiance-band-inner {
  position: relative;
  z-index: 1;
  padding-block: var(--space-4xl);
}
.ambiance-band .section-label { color: var(--color-accent); }
.ambiance-band .section-title { color: #fff; max-width: 16ch; }
.ambiance-band-lead {
  color: rgba(247, 247, 245, 0.78);
  max-width: 52ch;
  line-height: 1.7;
  margin-top: var(--space-md);
}
.ambiance-band-note {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: var(--space-lg);
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(247, 247, 245, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 0.5rem 0.9rem;
  border-radius: 100px;
}
.ambiance-band-note svg { color: var(--color-accent); }

/* ======================================================================
   TYPO GLOBALE — titres de section plus affirmés
   ====================================================================== */
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5.5vw, 3.4rem);
  line-height: 1.02;
  letter-spacing: -0.02em;
}
.section-label {
  font-family: var(--font-heading);
  font-size: 0.66rem;
  letter-spacing: 0.24em;
  font-weight: 700;
}

/* ======================================================================
   PAGES DISCIPLINE — hero enrichi par l'image
   ====================================================================== */
.discipline-hero {
  position: relative;
  overflow: hidden;
}
.discipline-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: var(--disc-img);
  background-size: cover;
  background-position: center 30%;
  opacity: 0.28;
}
.discipline-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(90deg, rgba(6,6,9,0.92) 0%, rgba(6,6,9,0.65) 55%, rgba(6,6,9,0.4) 100%);
}
.discipline-hero > .container { position: relative; z-index: 1; }
.discipline-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.6rem, 7vw, 5rem);
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 0.92;
}
/* Photo réelle dans le hero discipline */
.discipline-hero-photo {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  border-radius: 3px;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

/* ---------- Tarifs par discipline (section claire des pages discipline) ---------- */
.discipline-tarifs {
  display: grid;
  max-width: 560px;
  margin-top: var(--space-xl);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #fff;
}
.discipline-tarif {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  padding: var(--space-md) var(--space-lg);
  border-top: 1px solid var(--color-border);
}
.discipline-tarif:first-child { border-top: none; }
.discipline-tarif.is-main { background: var(--discipline-color-light, #fafafa); }
.discipline-tarif-label { font-weight: 500; color: var(--color-dark); }
.discipline-tarif-price {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1;
  white-space: nowrap;
  color: var(--discipline-color, var(--color-accent));
}
.discipline-tarifs-notes { margin-top: var(--space-md); max-width: 62ch; }
.discipline-tarifs-notes p {
  font-size: 0.85rem;
  color: var(--color-muted);
  line-height: 1.6;
  margin-top: var(--space-2xs);
}

/* ---------- Planning détaillé (ex: Karaté, plusieurs cours) ---------- */
.disc-schedule { display: grid; gap: var(--space-sm); max-width: 760px; }
.disc-slot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md) var(--space-lg);
  flex-wrap: wrap;
  padding: var(--space-md) var(--space-lg);
  background: #fff;
  border: 1px solid var(--color-border);
  border-left: 3px solid var(--discipline-color, var(--color-accent));
  border-radius: var(--radius-md);
}
.disc-slot-info { display: flex; flex-direction: column; gap: 0.1rem; }
.disc-slot-group { font-weight: 700; font-size: 1rem; color: var(--color-dark); }
.disc-slot-age { font-size: 0.82rem; color: var(--color-muted); }
.disc-slot-when { text-align: right; }
.disc-slot-days {
  display: block;
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.78rem;
  color: var(--color-muted);
}
.disc-slot-time {
  display: block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--color-dark);
}
@media (max-width: 520px) {
  .disc-slot-when { text-align: left; }
}

/* ---------- Page Tarifs : formule tout-accès + grille par discipline ---------- */
.tarif-allaccess {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-lg);
  margin-top: var(--space-2xl);
  padding: var(--space-xl) var(--space-2xl);
  border-radius: var(--radius-lg);
  background: #0A0A10;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.tarif-allaccess::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at left center, rgba(230,57,70,0.18), transparent 60%);
  pointer-events: none;
}
.tarif-allaccess-text { position: relative; z-index: 1; max-width: 60ch; }
.tarif-allaccess-eyebrow {
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.66rem;
  color: var(--color-accent);
}
.tarif-allaccess-text h3 {
  font-family: var(--font-heading);
  text-transform: uppercase;
  font-size: clamp(1.3rem, 3vw, 1.9rem);
  margin: 0.3rem 0 0.5rem;
}
.tarif-allaccess-text p { color: rgba(247,247,245,0.7); line-height: 1.6; }
.tarif-allaccess-price {
  position: relative;
  z-index: 1;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(3rem, 8vw, 5rem);
  line-height: 1;
  white-space: nowrap;
}
.tarif-allaccess-price small { font-size: 0.28em; font-weight: 600; color: rgba(247,247,245,0.6); }

.tarif-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}
.tarif-disc {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #fff;
}
.tarif-disc-head { height: 4px; }
.tarif-disc-name {
  font-family: var(--font-heading);
  text-transform: uppercase;
  font-size: 1.2rem;
  padding: var(--space-md) var(--space-lg) 0;
  color: var(--discipline-color, var(--color-dark));
}
.tarif-disc-tiers { padding: var(--space-sm) var(--space-lg); }
.tarif-disc-tier {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: var(--space-sm);
  padding: var(--space-xs) 0;
  border-top: 1px solid var(--color-border);
}
.tarif-disc-tier:first-child { border-top: none; }
.tarif-disc-tier-label { font-size: 0.9rem; color: var(--color-muted); }
.tarif-disc-tier.is-main .tarif-disc-tier-label { color: var(--color-dark); font-weight: 600; }
.tarif-disc-tier-price {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  white-space: nowrap;
  color: var(--discipline-color, var(--color-accent));
}
.tarif-disc-note {
  font-size: 0.78rem;
  color: var(--color-muted);
  padding: 0 var(--space-lg);
}
.tarif-disc-link {
  display: inline-block;
  margin: auto var(--space-lg) var(--space-lg);
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--discipline-color, var(--color-accent));
}
.tarif-notes {
  margin-top: var(--space-2xl);
  display: grid;
  gap: var(--space-xs);
  max-width: 760px;
}
.tarif-notes li {
  position: relative;
  padding-left: 1.5rem;
  font-size: 0.9rem;
  color: var(--color-muted);
  line-height: 1.6;
}
.tarif-notes li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #22c55e;
  font-weight: 700;
}

/* ---------- Bloc instructeur (page discipline) ---------- */
.instructor-feature {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: var(--space-2xl);
  align-items: center;
  margin-top: var(--space-xl);
  max-width: 900px;
}
.instructor-feature-photo {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-bottom: 4px solid var(--discipline-color, var(--color-accent));
}
.instructor-feature-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.instructor-feature-photo .instructor-photo-placeholder {
  width: 100%;
  height: 100%;
  color: rgba(255, 255, 255, 0.85);
}
.instructor-feature-role {
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
  font-weight: 600;
}
.instructor-feature-name {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  text-transform: uppercase;
  line-height: 1;
  margin: 0.4rem 0 var(--space-md);
}
.instructor-feature-name .placeholder-badge { font-size: 1rem; vertical-align: middle; }
.instructor-feature-bio {
  color: var(--color-muted);
  line-height: 1.8;
  max-width: 54ch;
  margin-bottom: var(--space-lg);
}
@media (max-width: 700px) {
  .instructor-feature { grid-template-columns: 1fr; gap: var(--space-lg); }
  .instructor-feature-photo { max-width: 220px; }
}

/* ---------- Crédit agence (footer) ---------- */
.footer-credit { color: var(--color-accent); font-weight: 600; }
.footer-credit:hover { text-decoration: underline; }

/* ---------- Carte Google Maps intégrée (page contact) ---------- */
.map-embed--live {
  aspect-ratio: 16 / 10;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border);
  background: var(--color-surface);
}
.map-embed--live iframe { display: block; width: 100%; height: 100%; border: 0; }
.map-info {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-sm) var(--space-md);
  margin-top: var(--space-md);
}

/* ---------- Placeholders "à venir" (instructeurs, réseaux) ---------- */
.instructor-photo-placeholder { flex-direction: column; gap: 0.5rem; }
.instructor-photo-soon {
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.62rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
}
.footer-social-soon { font-size: 0.85rem; color: var(--color-muted); }

/* ---------- Description longue d'une discipline (page discipline) ---------- */
.discipline-desc { max-width: 68ch; }
.discipline-desc p {
  line-height: 1.8;
  color: var(--color-muted);
  margin-bottom: var(--space-md);
}
.discipline-desc p:last-child { margin-bottom: 0; }
.discipline-desc ul {
  list-style: disc;
  padding-left: 1.3rem;
  margin: var(--space-xs) 0 var(--space-md);
}
.discipline-desc li {
  line-height: 1.8;
  color: var(--color-muted);
  margin-bottom: var(--space-sm);
}
.discipline-desc strong { color: var(--color-dark); }

/* ---------- Planning : double barre de filtres (discipline + âge) ---------- */
.planning-filters { display: flex; flex-direction: column; gap: var(--space-sm); }
.planning-filter-bar--age { align-items: center; }
.planning-filter-label {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--color-muted);
  margin-right: var(--space-2xs);
}

/* ======================================================================
   RESPONSIVE
   ====================================================================== */
@media (max-width: 900px) {
  .page-home .hero-content {
    padding-bottom: calc(var(--space-4xl) + 1rem);
  }
  .page-home .hero-headline {
    padding-left: var(--space-md);
    border-left-width: 3px;
  }
  .page-home .hero-media { background-position: 68% center; }

  .page-home .bandeau-inner { grid-template-columns: 1fr; gap: var(--space-xl); }
  .page-home .bandeau-sep { display: none; }

  .page-home .discipline-card { min-height: 380px; }
}

/* Mobile : boutons un peu plus compacts + pleine largeur dans le hero,
   pour que les CTA longs tiennent sur une seule ligne. */
@media (max-width: 640px) {
  .btn { white-space: normal; }
  .btn-lg { padding: 0.85rem 1.1rem; font-size: 0.95rem; }
  .hero-actions .btn { width: 100%; }
}

@media (max-width: 600px) {
  .page-home .discipline-card { min-height: 320px; }
  .hmq { font-size: 1.5rem; }
}
