/* =========================================================
   DUD'S SPORT FITNESS CLUB — feuille de style unique
   Sections :  1. Tokens / thème   2. Base   3. Layout
               4. Header / Footer   5. Composants   6. Pages
               7. Responsive
   Pour modifier les couleurs de marque : bloc :root ci-dessous.
   ========================================================= */

/* ---------- 1. TOKENS ---------- */
:root {
  /* marque */
  --sapin:      #1B4332;
  --sapin-deep: #0E1F18;
  --fuchsia:    #D63384;
  --fuchsia-ink:#B32068;   /* fuchsia assombri, pour texte sur clair */
  --rose:       #F8D7E4;
  --rose-tint:  #FCEDF3;

  /* neutres (choisis, légèrement teintés sapin) */
  --paper:   #F6F3EE;
  --surface: #FFFFFF;
  --ink:     #14231C;
  --ink-soft:#55635B;
  --line:        rgba(20, 35, 28, 0.14);
  --line-strong: rgba(20, 35, 28, 0.28);

  /* disciplines (planning) */
  --c-tod:       #D63384;
  --c-sculpt:    #1B4332;
  --c-core:      #F8D7E4;
  --c-endurance: #17796F;
  --c-metcon:    #E0592B;
  --c-mobility:  #9585CE;
  --c-team:      #C79A3E;

  /* rôles */
  --bg:        var(--paper);
  --fg:        var(--ink);
  --fg-soft:   var(--ink-soft);
  --accent:    var(--fuchsia);
  --accent-tx: var(--fuchsia-ink);
  --band:      var(--rose-tint);
  --card:      var(--surface);

  /* type */
  --f-display: "Syne", "Syne Fallback", system-ui, sans-serif;
  --f-body:    "IBM Plex Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
  --f-mono:    "IBM Plex Mono", ui-monospace, "SF Mono", Menlo, monospace;

  --maxw: 1200px;
  --pad:  clamp(20px, 5vw, 72px);
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --paper:   #0E1F18;
    --surface: #16291F;
    --ink:     #EFEAE2;
    --ink-soft:#9FAEA5;
    --line:        rgba(239, 234, 226, 0.16);
    --line-strong: rgba(239, 234, 226, 0.32);
    --accent:    #EA5CA2;
    --accent-tx: #F49CC8;
    --band:      #13271E;
    --card:      #16291F;
    --c-tod:     #EA5CA2;
  }
}

:root[data-theme="dark"] {
  --paper:   #0E1F18;
  --surface: #16291F;
  --ink:     #EFEAE2;
  --ink-soft:#9FAEA5;
  --line:        rgba(239, 234, 226, 0.16);
  --line-strong: rgba(239, 234, 226, 0.32);
  --accent:    #EA5CA2;
  --accent-tx: #F49CC8;
  --band:      #13271E;
  --card:      #16291F;
  --c-tod:     #EA5CA2;
}

/* ---------- 2. BASE ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--f-body);
  font-size: 17px;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4 {
  font-family: var(--f-display);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
  text-wrap: balance;
  margin: 0;
}
h1 { font-size: clamp(2.3rem, 6vw, 4.4rem); }
h2 { font-size: clamp(1.7rem, 3.8vw, 2.7rem); }
h3 { font-size: clamp(1.2rem, 2.2vw, 1.5rem); }
p { margin: 0; }
a { color: inherit; text-decoration-thickness: 1px; text-underline-offset: 3px; }
img, video { max-width: 100%; display: block; }
strong { font-weight: 600; }

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

.mono {
  font-family: var(--f-mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-soft);
}

.skip {
  position: absolute; left: -9999px; top: 0;
  background: var(--accent); color: #fff; padding: 10px 16px; z-index: 200;
}
.skip:focus { left: 8px; top: 8px; }

/* ---------- 3. LAYOUT ---------- */
.wrap { max-width: var(--maxw); margin: 0 auto; padding-left: var(--pad); padding-right: var(--pad); }

.section { padding: clamp(52px, 9vw, 116px) 0; border-top: 1px solid var(--line); }
.section--flush { border-top: 0; }
.section--band { background: var(--band); }
.section--dark { background: var(--sapin-deep); color: #EFEAE2; }
.section--dark .mono { color: rgba(239, 234, 226, 0.62); }
.section--dark .lede { color: rgba(239, 234, 226, 0.76); }
.section--dark a { color: #EFEAE2; }

.kicker { display: flex; align-items: center; gap: 14px; margin-bottom: 26px; }
.kicker::after { content: ""; flex: 1; height: 1px; background: currentColor; opacity: .18; }
.kicker__idx { font-family: var(--f-mono); font-size: 0.72rem; letter-spacing: .1em; color: var(--accent-tx); }
.section--dark .kicker__idx { color: var(--accent); }

.lede { max-width: 60ch; color: var(--fg-soft); font-size: 1.1rem; }
.lede strong { color: var(--fg); }
.section--dark .lede strong { color: #fff; }

.stack > * + * { margin-top: 1rem; }
.center { text-align: center; }

/* ---------- 4. HEADER ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: saturate(1.4) blur(10px);
  border-bottom: 1px solid var(--line);
}
.site-header__inner {
  max-width: var(--maxw); margin: 0 auto; padding: 10px var(--pad);
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.site-header .btn { padding: 11px 18px; font-size: 0.85rem; white-space: nowrap; }
.site-header .btn small { display: none; }
.brand { display: inline-flex; align-items: baseline; gap: 9px; font-family: var(--f-display); font-weight: 800; font-size: 1.15rem; letter-spacing: -0.02em; text-decoration: none; }
.brand__text { display: inline-flex; align-items: baseline; gap: 9px; }
.brand__name i { font-style: normal; color: var(--accent-tx); }
.brand__sub { font-family: var(--f-mono); font-weight: 400; font-size: 0.55rem; letter-spacing: .16em; color: var(--fg-soft); text-transform: uppercase; white-space: nowrap; }
.site-footer__brand i { font-style: normal; color: var(--accent); }

/* logo image (déposer assets/img/logo.png — sinon le texte reste) */
.brand__logo { height: 46px; width: auto; display: block; align-self: center; }
.site-footer__brand .brand__logo { height: 52px; }
@media (max-width: 720px) { .brand__logo { height: 38px; } }
.brand__logo--light { filter: brightness(0) invert(1); }        /* logo noir -> blanc sur fond sombre */
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) .site-header .brand__logo:not(.brand__logo--light) { filter: brightness(0) invert(1); }
}
:root[data-theme="dark"] .site-header .brand__logo:not(.brand__logo--light) { filter: brightness(0) invert(1); }

.nav { display: flex; align-items: center; gap: 2px; }
.nav a {
  font-family: var(--f-display); font-weight: 600; font-size: 0.88rem;
  padding: 8px 10px; border-radius: 2px; text-decoration: none; color: var(--fg);
  white-space: nowrap;
}
.nav a[aria-current="page"] { color: var(--accent-tx); }
.nav a:hover { background: var(--band); }
.nav a.nav__cta { display: none; }
.nav a.nav__cta:hover { background: var(--accent-tx); }

.nav-toggle { display: none; background: none; border: 1px solid var(--line-strong); border-radius: 2px; padding: 8px 10px; cursor: pointer; color: var(--fg); font-family: var(--f-mono); font-size: 0.66rem; letter-spacing: .12em; text-transform: uppercase; }

/* ---------- 4b. FOOTER ---------- */
.site-footer { background: var(--sapin-deep); color: #EFEAE2; padding: clamp(48px, 8vw, 88px) 0 40px; }
.site-footer a { color: #EFEAE2; text-decoration: none; }
.site-footer a:hover { text-decoration: underline; }
.site-footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; }
.site-footer h4 { font-size: 0.78rem; font-family: var(--f-mono); font-weight: 500; letter-spacing: .14em; text-transform: uppercase; color: rgba(239,234,226,0.55); margin-bottom: 14px; }
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin: 7px 0; }
.site-footer__brand { font-family: var(--f-display); font-weight: 800; font-size: 1.7rem; letter-spacing: -0.02em; }
.site-footer__meta { margin-top: 42px; padding-top: 20px; border-top: 1px solid rgba(239,234,226,0.16); display: flex; flex-wrap: wrap; gap: 8px 24px; }

/* ---------- 5. COMPOSANTS ---------- */

/* boutons */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 26px; border-radius: 2px;
  font-family: var(--f-display); font-weight: 700; font-size: 0.95rem;
  text-decoration: none; border: 1px solid transparent; cursor: pointer;
  transition: transform .15s ease, border-color .15s ease, color .15s ease, background .15s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary { background: var(--accent); color: #fff; }
.btn--primary:hover { background: var(--accent-tx); }
.btn--ghost { border-color: var(--line-strong); color: var(--fg); }
.btn--ghost:hover { border-color: var(--accent); color: var(--accent-tx); }
.section--dark .btn--ghost, .cine .btn--ghost { border-color: rgba(239,234,226,0.4); color: #EFEAE2; }
.section--dark .btn--ghost:hover, .cine .btn--ghost:hover { border-color: var(--accent); color: var(--accent); }
.btn small { font-family: var(--f-mono); font-weight: 400; font-size: 0.6rem; letter-spacing: .1em; opacity: .8; }
.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }

/* hero cinématique */
.cine { position: relative; background: var(--sapin-deep); color: #EFEAE2; overflow: hidden; }
.cine__media { position: absolute; inset: 0; z-index: 0; }
.cine__media img, .cine__media video { width: 100%; height: 100%; object-fit: cover; filter: grayscale(0.35) contrast(1.02); }
.cine__scrim { position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(90deg, rgba(14,31,24,0.93) 0%, rgba(14,31,24,0.6) 55%, rgba(14,31,24,0.4) 100%),
    linear-gradient(180deg, rgba(14,31,24,0.3) 0%, rgba(14,31,24,0.5) 60%, rgba(14,31,24,0.92) 100%),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.026) 0 1px, transparent 1px 76px);
}
.cine__inner { position: relative; z-index: 2; max-width: var(--maxw); margin: 0 auto; padding: clamp(72px, 15vh, 168px) var(--pad) clamp(48px, 9vw, 104px); }
.cine__eyebrow { font-family: var(--f-mono); font-size: 0.72rem; letter-spacing: .16em; text-transform: uppercase; color: var(--accent); }
.cine h1 { margin-top: 22px; max-width: 15ch; }
.cine h1 .hl { color: var(--accent); }
.cine__sub { margin-top: 24px; max-width: 52ch; font-size: clamp(1rem, 2vw, 1.2rem); color: rgba(239,234,226,0.82); }

/* ligne de valeurs / parcours */
.flow {
  display: flex; flex-wrap: wrap; align-items: center; gap: 10px 15px;
  margin-top: 40px; padding-top: 26px; border-top: 1px solid rgba(239,234,226,0.2);
  font-family: var(--f-display); font-weight: 700; font-size: clamp(0.98rem, 2.1vw, 1.3rem); letter-spacing: -0.01em;
}
.flow--ink { border-top-color: var(--line); }
.flow__arrow { color: var(--accent); font-family: var(--f-mono); font-weight: 400; }
.flow--ink .flow__arrow { color: var(--accent-tx); }

/* bandeau statistiques / instruments */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.stats > div { background: var(--bg); padding: 24px 20px; }
.cine .stats { margin-top: 48px; background: rgba(239,234,226,0.18); border-color: rgba(239,234,226,0.18); }
.cine .stats > div { background: transparent; }
.stats__n { font-family: var(--f-display); font-weight: 800; font-size: clamp(1.6rem, 3.6vw, 2.3rem); letter-spacing: -0.03em; font-variant-numeric: tabular-nums; }
.stats__n b { color: var(--accent); }
.cine .stats__n b { color: var(--accent); }
.stats__l { margin-top: 4px; font-family: var(--f-mono); font-size: 0.68rem; letter-spacing: .1em; text-transform: uppercase; color: var(--fg-soft); }
.cine .stats__l { color: rgba(239,234,226,0.6); }

/* grilles */
.grid { display: grid; gap: 22px; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }

/* cartes */
.card { background: var(--card); border: 1px solid var(--line); padding: 28px 26px; display: flex; flex-direction: column; gap: 12px; position: relative; }
.card__code { font-family: var(--f-mono); font-size: 0.7rem; letter-spacing: .12em; color: var(--accent-tx); }
.section--dark .card { background: #16291F; border-color: rgba(239,234,226,0.16); }
.section--dark .card__code { color: var(--accent); }
.card p { color: var(--fg-soft); font-size: 0.98rem; }
.section--dark .card p { color: #9FAEA5; }
.card__tick { position: absolute; width: 10px; height: 10px; border: 1px solid var(--line-strong); }
.card__tick--tl { top: -1px; left: -1px; border-right: 0; border-bottom: 0; }
.card__tick--br { bottom: -1px; right: -1px; border-left: 0; border-top: 0; }

/* révélation au scroll */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } }

/* format en pile (sticky) */
.formats { display: grid; gap: 14px; }
.format {
  background: #16291F; border: 1px solid rgba(239,234,226,0.16);
  padding: clamp(24px, 4vw, 40px);
  display: grid; grid-template-columns: 90px 1fr auto; gap: 24px; align-items: start;
}
.format__code { font-family: var(--f-mono); font-size: 0.82rem; letter-spacing: .1em; color: var(--accent); padding-top: 6px; }
.format h3 { font-size: clamp(1.35rem, 3vw, 2rem); }
.format p { color: #9FAEA5; margin-top: 10px; max-width: 46ch; }
.format__meta { font-family: var(--f-mono); font-size: 0.68rem; letter-spacing: .08em; text-transform: uppercase; color: rgba(239,234,226,0.55); text-align: right; white-space: nowrap; }

/* pills / chips */
.pill { display: inline-flex; align-items: center; gap: 7px; font-family: var(--f-mono); font-size: 0.68rem; letter-spacing: .09em; text-transform: uppercase; padding: 6px 11px; border: 1px solid var(--line-strong); border-radius: 999px; }
.pill__dot { width: 9px; height: 9px; border-radius: 2px; flex: none; }
.chips { display: flex; flex-wrap: wrap; gap: 10px; }

/* légende disciplines */
.legend { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px 30px; }
.legend__item { display: grid; grid-template-columns: 14px 1fr; gap: 12px; font-size: 0.95rem; }
.legend__sw { width: 14px; height: 14px; border-radius: 3px; margin-top: 5px; }
.legend__item b { font-family: var(--f-display); }
.legend__item span { color: var(--fg-soft); }

/* planning */
.planning { margin-top: 8px; }
.planning__controls { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 22px; }
.planning__controls button {
  font-family: var(--f-mono); font-size: 0.68rem; letter-spacing: .1em; text-transform: uppercase;
  padding: 8px 14px; border: 1px solid var(--line-strong); background: transparent; color: var(--fg);
  border-radius: 999px; cursor: pointer;
}
.planning__controls button[aria-pressed="true"] { background: var(--fg); color: var(--bg); border-color: var(--fg); }

.grid-week { width: 100%; border-collapse: separate; border-spacing: 6px; }
.grid-week th { font-family: var(--f-mono); font-size: 0.66rem; letter-spacing: .12em; text-transform: uppercase; color: #EFEAE2; background: var(--sapin); padding: 12px 8px; border-radius: 6px; }
.grid-week th.grid-week__hcol { background: var(--paper); color: var(--fg-soft); }
.grid-week td { padding: 0; vertical-align: stretch; }
.grid-week .hcell { font-family: var(--f-mono); font-variant-numeric: tabular-nums; font-size: 0.8rem; color: var(--fg-soft); text-align: center; white-space: nowrap; }
.slot {
  border-radius: 8px; padding: 14px 10px; min-height: 70px;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 3px;
  text-align: center; font-family: var(--f-display); font-weight: 700; font-size: 0.82rem;
  color: #fff; line-height: 1.15;
}
.slot small { font-family: var(--f-mono); font-weight: 400; font-size: 0.58rem; letter-spacing: .06em; opacity: .85; text-transform: uppercase; }
.slot--empty { background: color-mix(in srgb, var(--fg) 6%, transparent); border: 1px dashed var(--line-strong); }
.slot--tod       { background: var(--c-tod); }
.slot--sculpt    { background: var(--c-sculpt); }
.slot--core      { background: var(--c-core); color: #7A2350; }
.slot--endurance { background: var(--c-endurance); }
.slot--metcon    { background: var(--c-metcon); }
.slot--mobility  { background: var(--c-mobility); }
.slot--team      { background: var(--c-team); color: #3D2E0E; }
.slot--split { padding: 0; gap: 0; overflow: hidden; }
.slot--split > span { width: 100%; padding: 9px 6px; display: block; }

.grid-sat { margin-top: 26px; border: 1px solid var(--line); border-radius: 10px; padding: 22px; max-width: 340px; }
.grid-sat h3 { font-family: var(--f-mono); font-size: 0.7rem; letter-spacing: .14em; text-transform: uppercase; color: var(--fg-soft); font-weight: 500; }
.grid-sat ul { list-style: none; margin: 14px 0 0; padding: 0; display: grid; gap: 8px; }
.grid-sat li { display: flex; align-items: center; gap: 12px; }
.grid-sat .hcell { color: var(--fg-soft); font-family: var(--f-mono); font-size: 0.8rem; }

/* planning — vue mobile (jour par jour) */
.day-list { display: none; }
.day-list__day { border: 1px solid var(--line); border-radius: 10px; margin-bottom: 12px; overflow: hidden; }
.day-list__head { width: 100%; text-align: left; background: var(--sapin); color: #EFEAE2; font-family: var(--f-display); font-weight: 700; padding: 14px 16px; border: 0; cursor: pointer; font-size: 1rem; display: flex; justify-content: space-between; }
.day-list__body { padding: 8px; display: grid; gap: 6px; }
.day-list__row { display: grid; grid-template-columns: 62px 1fr; gap: 10px; align-items: center; }
.day-list__row .hcell { font-family: var(--f-mono); font-size: 0.78rem; color: var(--fg-soft); }

/* formulaire */
.form { display: grid; gap: 18px; max-width: 560px; }
.form__field { display: grid; gap: 6px; }
.form__field label { font-family: var(--f-mono); font-size: 0.7rem; letter-spacing: .1em; text-transform: uppercase; color: var(--fg-soft); }
.form input, .form textarea, .form select {
  font-family: var(--f-body); font-size: 1rem; padding: 13px 14px;
  background: var(--surface); color: var(--fg);
  border: 1px solid var(--line-strong); border-radius: 4px; width: 100%;
}
.form textarea { min-height: 130px; resize: vertical; }
.form__hp { position: absolute; left: -9999px; }

/* témoignages */
.quote { border-left: 2px solid var(--accent); padding-left: 20px; }
.quote p { font-family: var(--f-display); font-weight: 600; font-size: clamp(1.05rem, 2.2vw, 1.35rem); line-height: 1.35; }
.quote cite { display: block; margin-top: 12px; font-style: normal; font-family: var(--f-mono); font-size: 0.72rem; letter-spacing: .08em; text-transform: uppercase; color: var(--fg-soft); }

/* note Google + carrousel d'avis */
.rating {
  display: inline-flex; align-items: center; gap: 14px;
  border: 1px solid var(--line); border-radius: 999px; padding: 10px 20px;
}
.rating__score { font-family: var(--f-display); font-weight: 800; font-size: 1.5rem; letter-spacing: -0.02em; }
.rating__stars { color: var(--c-team); letter-spacing: 2px; font-size: 0.95rem; }
.rating__meta { font-family: var(--f-mono); font-size: 0.68rem; letter-spacing: .08em; text-transform: uppercase; color: var(--fg-soft); }
.section--dark .rating { border-color: rgba(239,234,226,0.24); }
.section--dark .rating__meta { color: rgba(239,234,226,0.6); }

.reviews { position: relative; margin-top: 32px; overflow: hidden; }
.reviews__track { display: flex; transition: transform .5s ease; }
@media (prefers-reduced-motion: reduce) { .reviews__track { transition: none; } }
.review { flex: 0 0 100%; padding-right: 4px; }
.review__text { font-family: var(--f-display); font-weight: 600; font-size: clamp(1.05rem, 2.1vw, 1.4rem); line-height: 1.38; }
.section--dark .review__text { color: #EFEAE2; }
.review__who { margin-top: 14px; font-family: var(--f-mono); font-size: 0.7rem; letter-spacing: .08em; text-transform: uppercase; color: var(--fg-soft); }
.section--dark .review__who { color: rgba(239,234,226,0.62); }
.reviews__dots { display: flex; gap: 8px; margin-top: 22px; }
.reviews__dots button { width: 9px; height: 9px; border-radius: 999px; border: 0; padding: 0; background: var(--line-strong); cursor: pointer; }
.reviews__dots button[aria-current="true"] { background: var(--accent); }

/* section vidéo (format vertical / reel) */
.videobox {
  position: relative; margin: 32px auto 0; border: 1px solid var(--line); background: #000;
  width: 100%; max-width: 400px; aspect-ratio: 9 / 16; overflow: hidden;
}
.videobox video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; background: #000; }
.videobox__poster { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; cursor: pointer; }
.videobox__play {
  position: absolute; inset: 0; margin: auto; width: 84px; height: 84px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 999px; border: 0; cursor: pointer;
  background: var(--accent); color: #fff;
}
.videobox__play svg { width: 30px; height: 30px; margin-left: 4px; }
.videobox.is-playing .videobox__poster, .videobox.is-playing .videobox__play { display: none; }

/* liste "pages / étapes" */
.rows { border-top: 1px solid var(--line); }
.row { display: grid; grid-template-columns: 52px 1fr; gap: 22px; padding: 22px 0; border-bottom: 1px solid var(--line); align-items: baseline; }
.row__n { font-family: var(--f-mono); color: var(--accent-tx); font-size: 0.8rem; }
.row h3 { margin-bottom: 4px; }
.row p { color: var(--fg-soft); font-size: 0.97rem; }

/* infos pratiques */
.facts { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.facts > div { background: var(--bg); padding: 22px; }
.facts h4 { font-family: var(--f-mono); font-size: 0.7rem; letter-spacing: .12em; text-transform: uppercase; color: var(--fg-soft); font-weight: 500; margin-bottom: 8px; }

/* média plein cadre intercalé */
.figure-full { position: relative; }
.figure-full img { width: 100%; height: clamp(280px, 44vh, 520px); object-fit: cover; filter: grayscale(0.3); }

/* placeholder image (en attendant les vraies photos) */
.ph {
  position: relative; background: var(--sapin); color: rgba(239,234,226,0.5);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--f-mono); font-size: 0.66rem; letter-spacing: .14em; text-transform: uppercase;
  background-image: repeating-linear-gradient(135deg, rgba(255,255,255,0.03) 0 2px, transparent 2px 11px);
}
.ph--wide { height: clamp(280px, 44vh, 500px); }
.ph--tall { aspect-ratio: 4 / 5; }
.ph--sq { aspect-ratio: 1 / 1; }
/* vraie image posée par-dessus le placeholder ; si le fichier manque, main.js la retire */
.ph > .ph-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

/* ---------- 7. RESPONSIVE ---------- */
@media (max-width: 960px) {
  .site-footer__grid { grid-template-columns: 1fr 1fr; }
  .grid--3 { grid-template-columns: 1fr; }
  .format { grid-template-columns: 1fr; gap: 8px; }
  .format__meta { text-align: left; }
}
@media (max-width: 900px) {
  .nav { display: none; }
  .nav--open { display: flex; position: absolute; inset: 100% 0 auto 0; flex-direction: column; align-items: stretch; background: var(--bg); border-bottom: 1px solid var(--line); padding: 8px var(--pad) 16px; }
  .nav--open a { padding: 12px 4px; font-size: 1rem; }
  .nav--open a.nav__cta { display: inline-flex; justify-content: center; margin-top: 10px; padding: 14px; color: #fff; }
  .nav-toggle { display: inline-block; }
  .site-header > .site-header__inner > .btn { display: none; }
}
@media (max-width: 720px) {
  .grid--2, .facts, .stats { grid-template-columns: 1fr; }
  .legend { grid-template-columns: 1fr; }
  .grid-week { display: none; }
  .day-list { display: block; }
  .planning__controls { display: none; }
  .flow { font-size: 1.05rem; }
  .ph--tall { aspect-ratio: 16 / 11; }
  .cine__inner { padding-top: clamp(56px, 12vh, 96px); }
  h1 { font-size: clamp(2.1rem, 9vw, 3rem); }
  .btn-row { flex-direction: column; align-items: stretch; }
  .btn-row .btn { justify-content: center; }
  .flow { flex-direction: column; align-items: flex-start; gap: 6px; }
  .flow__arrow { display: none; }
  .flow > span:not(.flow__arrow) { position: relative; padding-left: 18px; }
  .flow > span:not(.flow__arrow)::before { content: "→"; position: absolute; left: 0; color: var(--accent); }
}
