/* ── Variables ── */
:root {
  /* Palette Alpine Brut - valeurs par défaut (overridées par le style injecté depuis la DB) */
  --ink:   #000000;
  --stone: #000000;
  --sand:  #000000;
  --clay:  #000000;
  --cream: #000000;

  /* Aliases fonctionnels - cascadent automatiquement lors des changements dynamiques */
  --bg-dark:    var(--ink);
  --bg-light:   var(--cream);
  --accent:     var(--clay);
  --text-light: var(--cream);
  --text-dark:  var(--ink);

  --nav-h: 72px;
  --pad-x: 48px;
  --section-py: 100px;

  /* Typographie */
  --ff-display: 'Oswald', system-ui, sans-serif;
  --ff-sans:    'Inter Tight', system-ui, sans-serif;
  --ff-accent:  'Instrument Serif', Georgia, serif;
}

/* ── Reset ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
img, video { display: block; max-width: 100%; }
ul  { list-style: none; }
a   { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* ── Base ── */
html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-h);
  overflow-x: hidden;
}

body {
  font-family: var(--ff-sans);
  font-weight: 300;
  background: var(--bg-dark);
  color: var(--text-dark);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ── Container ── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--pad-x);
}

/* ── Typography helpers ── */
.section-label {
  font-family: var(--ff-sans);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(45, 45, 45, 0.45);
  margin-bottom: 1.2rem;
  display: block;
}
.section-label--light { color: rgba(245, 240, 232, 0.45); }

.section-title {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: clamp(2rem, 3.5vw, 3rem);
  line-height: 1.1;
  text-transform: uppercase;
  color: var(--text-dark);
}
.section-title--light { color: var(--text-light); }

.section-title .accent,
.hero-title .accent {
  font-family: var(--ff-accent);
  font-style: italic;
  font-weight: 400;
  color: var(--clay);
  text-transform: none;
}

/* ── Buttons ── */
.btn {
  display: inline-block;
  font-family: var(--ff-sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0.9rem 1.8rem;
  border: 1px solid transparent;
  transition: background 0.22s, color 0.22s, border-color 0.22s;
  white-space: nowrap;
}

.btn-outline-light {
  color: var(--text-light);
  border-color: rgba(245, 240, 232, 0.35);
  background: transparent;
}
.btn-outline-light:hover {
  background: var(--accent);
  border-color: var(--accent);
}

.btn-accent {
  color: var(--bg-dark);
  background: var(--accent);
  border-color: var(--accent);
}
.btn-accent:hover {
  background: transparent;
  color: var(--accent);
}

.link-arrow {
  font-family: var(--ff-sans);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  border-bottom: 1px solid var(--accent);
  padding-bottom: 2px;
  transition: opacity 0.2s;
}
.link-arrow:hover { opacity: 0.65; }

/* ════════════════════════════════════════
   NAV
════════════════════════════════════════ */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  padding: 0 var(--pad-x) 0 20px;
  background: rgba(26, 26, 26, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 1.1rem;
}

.nav-brand-link {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
}

.nav-lang-switch {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--ff-sans);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.1em;
}
.nav-lang-link { color: rgba(245, 240, 232, 0.4); transition: color 0.2s; }
.nav-lang-link:hover { color: rgba(245, 240, 232, 0.75); }
.nav-lang-link.active { color: var(--accent); }
.nav-lang-dot { font-size: 0.4rem; color: rgba(245, 240, 232, 0.25); }

.nav-brand-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.nav-logo {
  height: 40px;
  width: auto;
  object-fit: contain;
}
.nav-name {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-light);
}
.nav-tagline {
  font-family: var(--ff-sans);
  font-size: 0.56rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-left: auto;
}
.nav-link {
  font-family: var(--ff-sans);
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.65);
  transition: color 0.2s;
}
.nav-link:hover { color: var(--accent); }
.nav-link.active { color: var(--accent); }

.nav-admin-link {
  margin-left: 1.5rem;
  font-family: var(--ff-sans);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clay);
  border: 1px solid var(--clay);
  border-radius: 3px;
  padding: 0.3em 0.75em;
  white-space: nowrap;
  transition: background 0.2s, color 0.2s;
}
.nav-admin-link:hover { background: var(--clay); color: #fff; }

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px 4px;
}
.nav-burger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--text-light);
  transition: transform 0.25s, opacity 0.25s;
}
.nav-burger.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-burger.is-open span:nth-child(2) { opacity: 0; }
.nav-burger.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile overlay - panneau haut */
.nav-overlay {
  display: flex;
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  height: 33vh;
  z-index: 1001;
  background: rgba(16, 16, 16, 0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  flex-direction: column;
  justify-content: center;
  padding: 2.5rem var(--pad-x) 2rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-12px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0s linear 0.25s;
}
.nav-overlay.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  transform: translateY(0);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0s;
}
.nav-overlay ul { list-style: none; padding: 0; margin: 0; }
.nav-overlay ul li + li { margin-top: 0.6rem; }
.nav-overlay ul a {
  font-family: var(--ff-sans);
  font-size: 0.75rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(245, 240, 232, 0.6);
  transition: color 0.2s;
  display: block;
  padding: 0.4rem 0;
}
.nav-overlay ul a:hover { color: var(--accent); }

/* Mobile dropdown panel */
.nav-mobile {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  background: rgba(16, 16, 16, 0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.5rem 0;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: transform 0.2s ease, opacity 0.2s ease, visibility 0s linear 0.2s;
}
.nav-mobile.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition: transform 0.2s ease, opacity 0.2s ease, visibility 0s;
}
.nav-mobile ul { padding: 0; margin: 0; }
.nav-mobile-link {
  display: block;
  padding: 0.85rem var(--pad-x);
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.55);
  transition: color 0.15s, background 0.15s;
}
.nav-mobile-link:hover  { color: var(--accent); background: rgba(255, 255, 255, 0.03); }
.nav-mobile-link.active { color: var(--accent); }

/* ════════════════════════════════════════
   HERO
════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-top: var(--nav-h);
  padding-bottom: 80px;
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(26, 26, 26, 0.38) 0%,
    rgba(26, 26, 26, 0.52) 50%,
    rgba(26, 26, 26, 0.88) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 820px;
}

.hero-sub {
  font-family: var(--ff-sans);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 2rem;
}

.hero-title {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: clamp(3rem, 6.5vw, 5.8rem);
  line-height: 1.05;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 1.8rem;
}

.hero-intro {
  font-family: var(--ff-sans);
  font-size: 0.92rem;
  font-weight: 300;
  line-height: 1.85;
  color: rgba(245, 240, 232, 0.7);
  max-width: 520px;
  margin-bottom: 2.5rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-coords {
  position: absolute;
  right: var(--pad-x);
  bottom: 80px;
  z-index: 1;
  text-align: right;
  font-family: var(--ff-sans);
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.35);
  line-height: 2;
}

/* ════════════════════════════════════════
   APPROCHE
════════════════════════════════════════ */
.approche {
  background: var(--bg-light);
  padding: var(--section-py) 0;
}

.approche-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
}

.approche-right {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  padding-top: 0.4rem;
}
.approche-right p {
  font-size: 0.9rem;
  line-height: 1.9;
  color: rgba(45, 45, 45, 0.7);
}


/* ════════════════════════════════════════
   PRESTATIONS
════════════════════════════════════════ */
.prestations {
  background: var(--bg-dark);
  padding: var(--section-py) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.prestations-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3.5rem;
}

.prestations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.presta-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  container-type: inline-size;
}
.presta-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}
.presta-card:hover img { transform: scale(1.05); }
.presta-card-placeholder { width:100%; height:100%; background: var(--stone); }

.presta-card-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  max-height: 100%;
  box-sizing: border-box;
  padding: clamp(1rem, 10cqi, 2.5rem) clamp(0.75rem, 6cqi, 1.5rem) clamp(0.75rem, 6cqi, 1.5rem);
  background: linear-gradient(to top, rgba(0,0,0,0.72) 0%, transparent 100%);
  pointer-events: none;
  text-align: center;
  overflow: hidden;
}
.presta-card-title {
  font-family: var(--ff-display);
  font-size: clamp(0.85rem, 6.2cqi, 1.45rem);
  font-weight: 600;
  color: #fff;
  margin: 0 0 0.3rem;
  line-height: 1.2;
  overflow-wrap: break-word;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.presta-card-sub {
  font-family: var(--ff-sans);
  font-size: clamp(0.7rem, 3.4cqi, 0.92rem);
  color: rgba(255,255,255,0.68);
  margin: 0;
  line-height: 1.4;
  overflow-wrap: break-word;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

/* ════════════════════════════════════════
   LE MONITEUR
════════════════════════════════════════ */
.moniteur {
  background: var(--bg-light);
  padding: var(--section-py) 0;
  border-top: 1px solid rgba(45, 45, 45, 0.1);
}

.moniteur-inner {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 6rem;
  align-items: start;
}

.moniteur-photo img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  filter: grayscale(15%);
}
.moniteur-caption {
  margin-top: 1rem;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(45, 45, 45, 0.4);
}

.moniteur-info { padding-top: 0.5rem; }

.diplomes {
  margin-top: 2rem;
  border-top: 1px solid rgba(45, 45, 45, 0.1);
}
.diplome-item {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 1rem;
  align-items: center;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(45, 45, 45, 0.1);
}
.diplome-sigle {
  font-family: var(--ff-sans);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}
.diplome-desc {
  font-size: 0.83rem;
  line-height: 1.55;
  color: rgba(45, 45, 45, 0.7);
}

/* ════════════════════════════════════════
   RÉCITS & STAGES
════════════════════════════════════════ */
.actualites {
  background: var(--bg-dark);
  padding: var(--section-py) 0;
}

.actualites-header { margin-bottom: 3.5rem; }

.actu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.actu-card {
  display: flex;
  flex-direction: column;
  background: var(--bg-dark);
}

.actu-img-wrap {
  display: block;
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.actu-img-placeholder { width: 100%; height: 100%; background: var(--stone); }
.actu-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}
.actu-card:hover .actu-img-wrap img { transform: scale(1.05); }

.actu-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  font-family: var(--ff-sans);
  font-size: 0.56rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.3rem 0.7rem;
}
.actu-badge--recit { background: var(--accent); color: #111; }
.actu-badge--stage { background: var(--text-light); color: #111; }
.actu-badge--stage-termine { background: var(--stone); color: rgba(245, 240, 232, 0.7); }

.actu-body {
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex: 1;
}
.actu-date {
  font-size: 0.58rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
}
.actu-title {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-light);
}
.actu-excerpt {
  font-size: 0.83rem;
  line-height: 1.8;
  color: rgba(245, 240, 232, 0.5);
  flex: 1;
}
.actu-link {
  font-family: var(--ff-sans);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  border-bottom: 1px solid transparent;
  padding-bottom: 1px;
  align-self: flex-start;
  transition: border-color 0.2s;
}
.actu-link:hover { border-color: var(--accent); }

.actualites-footer {
  display: flex;
  justify-content: center;
  gap: 1.2rem;
  flex-wrap: wrap;
  margin-top: 3rem;
}

/* ════════════════════════════════════════
   CONTACT
════════════════════════════════════════ */
.contact-section {
  background: var(--bg-dark);
  padding: var(--section-py) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

/* ════════════════════════════════════════
   AVIS CLIENTS
════════════════════════════════════════ */
.avis-section {
  background: var(--bg-dark);
  padding: var(--section-py) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}
.avis-header { margin-bottom: 3rem; }

.avis-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.avis-card {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 8px;
  padding: 1.75rem;
}

.avis-stars { display: flex; gap: 3px; }
.star-on  { color: var(--clay); font-size: 1rem; }
.star-off { color: rgba(255, 255, 255, 0.15); font-size: 1rem; }

.avis-text {
  font-family: var(--ff-accent);
  font-style: italic;
  font-size: 0.95rem;
  line-height: 1.75;
  color: rgba(240, 235, 225, 0.7);
  flex: 1;
}

.avis-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.avis-photo {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.avis-photo--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--stone);
  color: var(--cream);
  font-family: var(--ff-sans);
  font-size: 0.85rem;
  font-weight: 600;
}

.avis-author-info { display: flex; flex-direction: column; gap: 0.15rem; }
.avis-author-name {
  font-family: var(--ff-sans);
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--cream);
}

@media (max-width: 900px) {
  .avis-grid { grid-template-columns: 1fr; }
}

/* ════════════════════════════════════════
   NEWSLETTER (accueil)
════════════════════════════════════════ */
.newsletter-section {
  background: var(--bg-dark);
  padding: var(--section-py) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  text-align: center;
}
.newsletter-inner {
  max-width: 560px;
  margin: 0 auto;
}
.newsletter-intro {
  font-family: var(--ff-sans);
  font-size: 0.88rem;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(240, 235, 225, 0.5);
  margin: 0.75rem 0 2.2rem;
}
.newsletter-form {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
}
.newsletter-input {
  flex: 1;
  min-width: 220px;
  max-width: 320px;
  padding: 0.85rem 1.1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 4px;
  color: var(--cream);
  font-family: var(--ff-sans);
  font-size: 0.85rem;
}
.newsletter-input::placeholder { color: rgba(240, 235, 225, 0.35); }
.newsletter-input:focus { outline: none; border-color: var(--clay); }
.newsletter-hint {
  display: block;
  margin-top: 1rem;
  font-size: 0.78rem;
  font-family: var(--ff-sans);
}
.newsletter-hint--ok { color: #6fb583; }
.newsletter-hint--error { color: #e0776d; }

/* ════════════════════════════════════════
   DÉSABONNEMENT NEWSLETTER
════════════════════════════════════════ */
.unsub-section {
  background: var(--bg-dark);
  min-height: 100vh;
  padding: calc(var(--nav-h) + 4rem) 0 6rem;
  display: flex;
  align-items: center;
}
.unsub-inner {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
}
.unsub-text {
  font-family: var(--ff-sans);
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(240, 235, 225, 0.55);
  margin-top: 1rem;
}


/* ════════════════════════════════════════
   AGENDA
════════════════════════════════════════ */
.agenda-section {
  min-height: 100vh;
  padding: calc(var(--nav-h) + 3rem) 0 6rem;
}
.agenda-top-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2.5rem;
}
.agenda-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 4px;
  color: rgba(245,240,232,0.45);
  font-size: 1rem;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
  flex-shrink: 0;
}
.agenda-arrow:hover { border-color: var(--clay); color: var(--clay); }
.agenda-arrow--disabled { opacity: 0.2; cursor: default; }
.agenda-month-title {
  font-family: var(--ff-display);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--cream);
  min-width: 260px;
  text-align: center;
}
.agenda-cal {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 6px;
  overflow: hidden;
}
.agenda-day-head {
  background: var(--bg-dark, #1a1a1a);
  padding: 0.6rem 0.4rem;
  text-align: center;
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.28);
}
.agenda-cell {
  background: var(--bg-dark, #1a1a1a);
  min-height: 130px;
  padding: 0.45rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.agenda-cell--empty { background: rgba(255,255,255,0.01); }
.agenda-cell--today { background: color-mix(in srgb, var(--clay) 6%, transparent); }
.agenda-cell-date {
  font-size: 0.68rem;
  font-weight: 500;
  color: rgba(245,240,232,0.35);
  line-height: 1;
  flex-shrink: 0;
}
.agenda-cell-date--today {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.4rem;
  height: 1.4rem;
  background: var(--clay);
  border-radius: 50%;
  color: var(--ink);
  font-weight: 700;
  font-size: 0.68rem;
}
.agenda-stage-card {
  display: block;
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  text-decoration: none;
  flex: 1;
  min-height: 80px;
  transition: opacity 0.18s;
}
.agenda-stage-card:hover { opacity: 0.82; }
.agenda-stage-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.agenda-stage-no-img {
  width: 100%;
  height: 100%;
  background: color-mix(in srgb, var(--clay) 22%, var(--stone, #222));
}
.agenda-stage-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.2rem 0.45rem 0.35rem;
  background: linear-gradient(to bottom, transparent, rgba(0,0,0,0.82));
  color: rgba(255,255,255,0.95);
  font-size: 0.6rem;
  font-weight: 600;
  line-height: 1.25;
}
@media (max-width: 768px) {
  .agenda-cal { grid-template-columns: repeat(7, 1fr); }
  .agenda-cell { min-height: 80px; padding: 0.3rem; }
  .agenda-day-head { font-size: 0.5rem; padding: 0.4rem 0.1rem; letter-spacing: 0.08em; }
  .agenda-stage-card { min-height: 52px; }
  .agenda-stage-overlay { font-size: 0.5rem; padding: 0.8rem 0.3rem 0.2rem; }
  .agenda-month-title { min-width: 0; }
}

/* ════════════════════════════════════════
   FOOTER
════════════════════════════════════════ */
.site-footer {
  background: #111;
  padding: 1.8rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
}
.footer-copy,
.footer-center,
.footer-credit {
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.28);
}
.footer-center { text-align: center; }
.footer-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1rem;
}
.footer-social {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.footer-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(245, 240, 232, 0.38);
  transition: color 0.2s;
}
.footer-social-link:hover { color: rgba(245, 240, 232, 0.85); }
.footer-credit {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.5rem;
  text-decoration: none;
  transition: opacity 0.2s;
}
.footer-credit:hover { opacity: 0.75; }
.footer-credit-name {
  color: rgba(245, 240, 232, 0.85);
  font-weight: 600;
  letter-spacing: 0.22em;
}
.footer-credit-logo {
  height: 32px;
  width: auto;
  flex-shrink: 0;
  opacity: 0.9;
}

/* ════════════════════════════════════════
   PAGE CONTACT
════════════════════════════════════════ */
.cpage {
  background: #fff;
  min-height: 100vh;
}

.cpage-section {
  padding: calc(var(--nav-h) + 5rem) 0 6rem;
}

.cpage-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--pad-x);
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 8rem;
  align-items: start;
}

/* Infos gauche */
.cpage-left .section-label--light { color: rgba(28, 25, 22, 0.4); }

.cpage-title {
  font-family: var(--ff-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--bg-dark);
  line-height: 1.05;
  margin-bottom: 3rem;
  margin-top: 1rem;
}

.cpage-details {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.cpage-detail-item {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 1rem;
  padding: 1.2rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.cpage-detail-label {
  font-family: var(--ff-sans);
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(28, 25, 22, 0.38);
  padding-top: 2px;
}
.cpage-detail-value {
  font-family: var(--ff-sans);
  font-size: 0.88rem;
  font-weight: 300;
  line-height: 1.6;
  color: var(--bg-dark);
}
.cpage-detail-link { transition: color 0.2s; }
.cpage-detail-link:hover { color: var(--clay); }

/* Formulaire droite */
.cpage-right {
  background: var(--bg-dark);
  padding: 3rem 3.5rem;
  border-radius: 4px;
}

.cpage-intro {
  font-family: var(--ff-sans);
  font-size: 0.88rem;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(240, 235, 225, 0.5);
  margin: 0.75rem 0 2.5rem;
}

.cpage-form {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}
.cpage-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.cpage-form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.cpage-label {
  font-family: var(--ff-sans);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(240, 235, 225, 0.4);
}
.cpage-input {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  padding: 0.7rem 0;
  font-family: var(--ff-sans);
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--cream);
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}
.cpage-input::placeholder { color: rgba(240, 235, 225, 0.2); }
.cpage-input:focus { border-color: var(--clay); }

.cpage-select {
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='rgba(240,235,225,0.3)'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 4px center;
  padding-right: 1.5rem;
}
.cpage-select option { background: var(--stone); color: var(--cream); }

.cpage-textarea {
  resize: vertical;
  min-height: 130px;
  line-height: 1.7;
}

.cpage-form-hint {
  font-family: var(--ff-sans);
  font-size: 0.78rem;
}
.cpage-form-hint--error { color: #e0654a; }
.cpage-form-hint--ok    { color: #7fb87a; }

@media (max-width: 1024px) {
  .cpage-inner { gap: 4rem; }
}
@media (max-width: 768px) {
  .cpage-inner { grid-template-columns: 1fr; gap: 3rem; }
  .cpage-section { padding-top: calc(var(--nav-h) + 3rem); }
  .cpage-form-row { grid-template-columns: 1fr; }
}

/* ════════════════════════════════════════
   ARTICLE
════════════════════════════════════════ */
.article-page {
  background: var(--bg-dark);
  min-height: 100vh;
  padding-top: var(--nav-h);
  padding-bottom: 6rem;
}
.article-page.has-resa-bar {
  padding-bottom: calc(2rem + var(--resa-bar-h, 110px));
}

.article-container {
  width: 50%;
  margin: 0 auto;
}

.article-cover {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  margin-bottom: 3rem;
}
.article-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}
.article-back {
  font-family: var(--ff-sans);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--clay);
  transition: opacity 0.2s;
}
.article-back:hover { opacity: 0.7; }
.article-date {
  font-family: var(--ff-sans);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(240, 235, 225, 0.35);
}

.article-title {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--cream);
  line-height: 1.08;
  margin-bottom: 1rem;
}
.article-subtitle {
  font-family: var(--ff-sans);
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(240, 235, 225, 0.55);
}

.article-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
  margin: 2.5rem 0;
}

.article-body {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.article-bloc-texte {
  font-family: var(--ff-sans);
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.95;
  color: rgba(240, 235, 225, 0.8);
}
.article-bloc-texte p { margin-bottom: 1.2rem; }
.article-bloc-texte p:last-child { margin-bottom: 0; }
.article-bloc-texte h2 {
  font-family: var(--ff-display);
  font-size: 1.4rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--cream);
  margin: 1.5rem 0 0.75rem;
}
.article-bloc-texte h3 {
  font-family: var(--ff-display);
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--cream);
  margin: 1.2rem 0 0.5rem;
}
.article-bloc-texte strong { color: var(--cream); font-weight: 500; }
.article-bloc-texte s { opacity: 0.5; }
.article-bloc-texte blockquote {
  border-left: 3px solid var(--clay);
  background: rgba(255, 255, 255, 0.025);
  margin: 1.5rem 0;
  padding: 0.6rem 0 0.6rem 1.5rem;
  border-radius: 0 4px 4px 0;
  font-family: var(--ff-accent);
  font-style: italic;
  font-size: 1.15rem;
  line-height: 1.7;
  color: rgba(240, 235, 225, 0.65);
}
.article-bloc-texte blockquote p { margin-bottom: 0; }

/* Variantes de couleur - 10 tons alpins */
.article-bloc-texte blockquote[data-color="terre"]      { border-color: var(--clay);  background: color-mix(in srgb, var(--clay) 8%, transparent); }
.article-bloc-texte blockquote[data-color="neige"]      { border-color: #c8c3bb;       background: rgba(200,195,187,0.06); }
.article-bloc-texte blockquote[data-color="granit"]     { border-color: #7a8a96;       background: rgba(122,138,150,0.07); }
.article-bloc-texte blockquote[data-color="foret"]      { border-color: #4d7f5c;       background: rgba(77,127,92,0.08); }
.article-bloc-texte blockquote[data-color="glacier"]    { border-color: #4d8fab;       background: rgba(77,143,171,0.08); }
.article-bloc-texte blockquote[data-color="aurore"]     { border-color: #c05a3a;       background: rgba(192,90,58,0.08); }
.article-bloc-texte blockquote[data-color="roche"]      { border-color: #8b7060;       background: rgba(139,112,96,0.08); }
.article-bloc-texte blockquote[data-color="mousse"]     { border-color: #6d9959;       background: rgba(109,153,89,0.08); }
.article-bloc-texte blockquote[data-color="ciel"]       { border-color: #7aaabe;       background: rgba(122,170,190,0.07); }
.article-bloc-texte blockquote[data-color="crepuscule"] { border-color: #9478a0;       background: rgba(148,120,160,0.08); }
.article-bloc-texte em { font-family: var(--ff-accent); font-style: italic; color: var(--clay); }

/* Listes */
.article-bloc-texte ul,
.article-bloc-texte ol {
  padding-left: 1.5rem;
  margin-bottom: 1.2rem;
}
.article-bloc-texte ul { list-style: disc; }
.article-bloc-texte ol { list-style: decimal; }
.article-bloc-texte li { margin-bottom: 0.35rem; }
.article-bloc-texte li:last-child { margin-bottom: 0; }

/* Code inline */
.article-bloc-texte code {
  font-family: 'Courier New', Courier, monospace;
  font-size: 0.88em;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 3px;
  padding: 0.1em 0.4em;
  color: var(--clay);
}

/* Séparateur */
.article-bloc-texte hr {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin: 2rem 0;
}

/* H4 */
.article-bloc-texte h4 {
  font-family: var(--ff-display);
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--cream);
  margin: 1rem 0 0.4rem;
}

/* Liens */
.article-bloc-texte a {
  color: var(--clay);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: opacity 0.15s;
}
.article-bloc-texte a:hover { opacity: 0.75; }

/* Surlignage */
.article-bloc-texte mark {
  background: rgba(193, 142, 93, 0.3);
  color: inherit;
  border-radius: 2px;
  padding: 0.05em 0.2em;
}

/* YouTube / iframe responsive */
.article-bloc-texte div[data-youtube-video] {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  margin: 1rem 0;
  border-radius: 6px;
  overflow: hidden;
}
.article-bloc-texte img {
  max-width: 100%;
  height: auto;
  border-radius: 6px;
  margin: 1rem 0;
  display: block;
}

.article-bloc-texte div[data-youtube-video] iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.article-bloc-image {
  margin: 0;
  width: 100%;
}
.article-bloc-image img {
  width: 100%;
  display: block;
}

/* Blocs image consécutifs (2+) uniquement : affichés côte à côte à hauteur
   égale, SANS recadrage - chaque image garde son ratio naturel, donc une
   image plus large prend simplement plus de place (largeur = hauteur commune
   × ratio intrinsèque de l'image, calculé par le navigateur). Ça reste dans
   la largeur de l'article : on wrap à la ligne plutôt que de dépasser, et
   max-width sert de filet de sécurité pour une image seule trop large.
   Une image seule (non groupée) garde sa taille naturelle via la règle
   .article-bloc-image de base. */
.article-bloc-image-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: flex-start;
}
.article-bloc-image-row .article-bloc-image--grouped {
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
  height: clamp(160px, 28vw, 320px);
}
.article-bloc-image-row .article-bloc-image--grouped img {
  width: auto;
  height: 100%;
  max-width: 100%;
  object-fit: contain;
}
@media (max-width: 640px) {
  .article-bloc-image-row { flex-direction: column; }
  .article-bloc-image-row .article-bloc-image--grouped { flex: 1 1 auto; width: 100%; height: auto; }
  .article-bloc-image-row .article-bloc-image--grouped img { width: 100%; height: auto; object-fit: initial; }
}

@media (max-width: 1024px) {
  .article-container { width: 70%; }
}
@media (max-width: 768px) {
  .article-container { width: 100%; padding: 0 var(--pad-x); }
  .article-cover { margin-bottom: 2rem; }
}

.presta-children-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin: 2rem 0;
}
@media (max-width: 768px) {
  .presta-children-grid { grid-template-columns: 1fr; }
}

/* ════════════════════════════════════════
   RÉCITS
════════════════════════════════════════ */
.recits-page {
  background: var(--bg-dark);
  min-height: 100vh;
  padding-top: calc(var(--nav-h) + 3rem);
  padding-bottom: 5rem;
}

.recits-header {
  margin-bottom: 2.5rem;
}

/* La hauteur de toute la rangée est fixée une fois pour toutes par ce
   ratio (équivalent à l'à la une en 4/3 sur une colonne = 8/3 sur les 2,
   gap mis à part - l'écart entre les deux entités grignote un peu de
   largeur sur chaque côté, négligeable pour un gap de cette taille) :
   les deux côtés se contentent ensuite d'un simple height:100%, sans
   dépendre d'un calcul de taille "naturelle" d'un flex/grid imbriqué
   (qui peut varier selon les dimensions réelles des photos et
   désynchroniser les deux côtés). */
.recits-grid {
  display: flex;
  align-items: stretch;
  gap: 1.25rem;
  aspect-ratio: 8 / 3;
  margin-bottom: 2.5rem;
}

/* Article à la une */
.recit-une {
  flex: 1 1 0;
  min-width: 0;
  height: 100%;
  position: relative;
  display: block;
  overflow: hidden;
  background: var(--stone);
  text-decoration: none;
  container-type: inline-size;
}
.recit-une-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}
.recit-une:hover .recit-une-img { transform: scale(1.04); }
.recit-une-placeholder { width: 100%; height: 100%; background: var(--stone); }
.recit-une--empty {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 0.5rem;
  padding: 2rem;
  background: var(--stone);
}
.recit-une--empty .recit-une-label { color: var(--clay); }

.recit-une-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(28,25,22,0.92) 0%, rgba(28,25,22,0.2) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
  gap: 0.5rem;
}
.recit-une-label {
  font-family: var(--ff-sans);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--clay);
}
.recit-une-title {
  font-family: var(--ff-display);
  font-size: clamp(1.3rem, 4.5cqw, 1.9rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--cream);
  line-height: 1.1;
}
.recit-une-sub {
  font-size: 0.82rem;
  color: rgba(240, 235, 225, 0.6);
  line-height: 1.5;
}
.recit-une-date {
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(240, 235, 225, 0.4);
}

/* Grille 2×2 (2 stages à venir en haut, 2 passés en bas) qui se partage
   équitablement la hauteur de la colonne (héritée de .recits-grid via
   height:100%). */
.recits-secondary {
  flex: 1 1 0;
  min-width: 0;
  height: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 1.25rem;
}

.recit-card {
  display: flex;
  flex-direction: column;
  background: var(--bg-dark);
  text-decoration: none;
  overflow: hidden;
  transition: background 0.2s;
}
.recit-card:hover { background: rgba(46, 43, 38, 0.6); }

.recit-card-img {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  container-type: inline-size;
}
.recit-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}
.recit-card:hover .recit-card-img img { transform: scale(1.05); }
.recit-card-placeholder { aspect-ratio: 16 / 9; background: var(--stone); }

/* Dans la grille "à la une", les 4 cartes secondaires (grille 2×2) doivent
   remplir exactement la hauteur de l'élément à la une (pas d'aspect-ratio
   fixe : l'image se partage l'espace restant une fois le texte posé).
   .recit-card s'étire déjà pour remplir sa cellule (stretch par défaut
   dans une grid) : seul son contenu interne (flex-column) a besoin d'être
   ajusté. */
.recits-secondary .recit-card-img,
.recits-secondary .recit-card-placeholder {
  aspect-ratio: unset;
  /* flex-basis à 0 (pas "auto") : sinon la taille intrinsèque de la photo
     fait exploser la hauteur "naturelle" de la carte, qui dépasse alors
     celle de l'à la une et inverse tout l'étirement. */
  flex: 1 1 0;
  min-height: 0;
}
/* Le texte ne doit jamais être compressé par le partage d'espace avec
   l'image : il garde sa hauteur naturelle, l'image absorbe le reste. */
.recits-secondary .recit-card-body { flex: none; }

.recit-card-body {
  padding: 1rem 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  flex: 1;
}
.recit-card-date {
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--clay);
}
.recit-card-title {
  font-family: var(--ff-display);
  font-size: 0.88rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--cream);
  line-height: 1.2;
}
.recit-card-sub {
  font-size: 0.75rem;
  color: rgba(240, 235, 225, 0.45);
  line-height: 1.5;
}

.recits-footer {
  display: flex;
  justify-content: center;
  padding-top: 1rem;
}
.recits-footer--split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  justify-items: center;
  gap: 1.25rem;
}

.recits-empty {
  color: rgba(240, 235, 225, 0.4);
  font-size: 0.85rem;
  padding: 3rem 0;
}

/* Grille tout-mes-recits */
.recits-all-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
}

@media (max-width: 1024px) {
  .recits-all-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ════════════════════════════════════════
   STAGE - visualisation
════════════════════════════════════════ */
.stage-infos {
  margin-bottom: 2rem;
}

.stage-infos-title {
  font-family: var(--ff-display);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sand);
  margin-bottom: 0.75rem;
}

.stage-dates {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.stage-date-badge {
  display: inline-block;
  padding: 0.35rem 0.85rem;
  border: 1px solid rgba(184, 160, 122, 0.35);
  border-radius: 2px;
  font-family: var(--ff-sans);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--sand);
  background: rgba(184, 160, 122, 0.08);
}

.stage-tarifs-scroll {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.stage-tarifs-table {
  width: 100%;
  border-collapse: collapse;
  white-space: nowrap;
  font-family: var(--ff-sans);
  font-size: 0.88rem;
  color: rgba(240, 235, 225, 0.75);
}

.stage-tarifs-table thead th {
  text-align: center;
  padding: 0.55rem 1rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sand);
  border-bottom: 1px solid rgba(184, 160, 122, 0.2);
}

.stage-tarifs-table tbody tr {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.stage-tarifs-table tbody tr:last-child {
  border-bottom: none;
}

.stage-tarifs-table tbody td {
  padding: 0.55rem 1rem;
  text-align: center;
}

.stage-tarifs-table tbody td strong {
  color: var(--cream);
  font-weight: 600;
}

.stage-tarifs-table thead th:first-child,
.stage-tarifs-table tbody td:first-child {
  text-align: left;
  font-family: var(--ff-display);
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--cream);
  text-transform: none;
}

/* ════════════════════════════════════════
   BARRE DE RÉSERVATION FLOTTANTE
════════════════════════════════════════ */
.resa-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 200;
  display: flex;
  justify-content: center;
  padding: 0 var(--pad-x) calc(1rem + env(safe-area-inset-bottom));
  pointer-events: none;
}

.resa-bar-inner {
  pointer-events: auto;
  width: 100%;
  max-width: 1100px;
  background: rgba(28, 25, 22, 0.95);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.45);
  padding: 0.9rem 1.5rem;
  display: flex;
  align-items: flex-end;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.resa-field {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.resa-label {
  font-family: var(--ff-sans);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sand);
}

.resa-select {
  font-family: var(--ff-sans);
  font-size: 0.85rem;
  color: var(--cream);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 3px;
  padding: 0.5rem 0.7rem;
  min-width: 130px;
}
.resa-select:focus { outline: 1px solid var(--accent); }

/* La liste déroulante ouverte est rendue par le système (fond clair) :
   on force un texte sombre sur les options pour rester lisible. */
.resa-select option {
  color: var(--ink);
  background: #fff;
}

.resa-price {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  margin-right: auto;
}
.resa-price-label {
  font-family: var(--ff-sans);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sand);
}
.resa-price-value {
  font-family: var(--ff-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--cream);
}

.resa-btn {
  white-space: nowrap;
}

/* Prestation/stage sans tarif : bouton seul, centré dans la barre. */
.resa-bar--simple .resa-bar-inner {
  justify-content: center;
}

@media (max-width: 768px) {
  .resa-bar {
    padding: 0 0.75rem calc(0.75rem + env(safe-area-inset-bottom));
  }
  .resa-bar-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
    gap: 0.7rem 0.8rem;
    padding: 0.85rem 1rem;
    border-radius: 12px;
  }
  .resa-field--date {
    grid-column: 1 / -1;
  }
  .resa-select {
    width: 100%;
    min-width: 0;
  }
  .resa-price {
    grid-column: 1 / -1;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    margin-right: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 0.6rem;
  }
  .resa-btn {
    grid-column: 1 / -1;
    width: 100%;
    text-align: center;
  }
}

/* ════════════════════════════════════════
   RESPONSIVE - tablet
════════════════════════════════════════ */
@media (max-width: 1024px) {
  :root {
    --pad-x: 32px;
    --section-py: 80px;
  }
  .approche-inner { gap: 3rem; }
  .moniteur-inner { gap: 3rem; }
}

/* ════════════════════════════════════════
   RESPONSIVE - mobile
════════════════════════════════════════ */
@media (max-width: 768px) {
  :root {
    --pad-x: 20px;
    --section-py: 64px;
  }

  /* Nav */
  .nav-links { display: none; }
  .nav-admin-link { display: none; }
  .nav-burger { display: flex; margin-left: auto; }
  .nav-mobile { display: block; }

  /* Hero */
  .hero-coords { display: none; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-actions .btn { text-align: center; width: 100%; max-width: 320px; }

  /* Approche */
  .approche-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  /* Prestations */
  .prestations-header { flex-direction: column; align-items: flex-start; gap: 1.2rem; }
  .prestations-grid { grid-template-columns: 1fr; }

  /* Moniteur */
  .moniteur-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .moniteur-photo img { aspect-ratio: 4 / 3; }

  /* Récits */
  .actu-grid { grid-template-columns: 1fr; }
  /* Empilé (plus côte à côte) : le ratio 8/3 calculé pour la rangée
     desktop ne s'applique plus, chaque bloc reprend une hauteur propre. */
  .recits-grid { flex-direction: column; gap: 1.25rem; aspect-ratio: unset; }
  .recit-une { flex: none; height: auto; aspect-ratio: 4 / 3; }
  .recits-secondary {
    flex: none;
    height: auto;
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }
  .recits-secondary .recit-card-img,
  .recits-secondary .recit-card-placeholder { aspect-ratio: 16 / 9; flex: none; }
  .recits-all-grid { grid-template-columns: 1fr; }
  .recits-footer--split { grid-template-columns: 1fr; }

  /* Contact */

  /* Footer */
  .footer-inner { grid-template-columns: 1fr; text-align: center; gap: 0.5rem; }
  .footer-right { justify-content: center; }
  .footer-credit { justify-content: center; }
}

/* ════════════════════════════════════════
   OVERLAY ARTICLE - panneau sur miniature
════════════════════════════════════════ */

/* filtre sombre global sur l'image (gauche / droite uniquement) */
.art-overlay-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.32);
  z-index: 1;
  pointer-events: none;
}

.art-overlay {
  position: absolute;
  display: flex;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  pointer-events: none;
  z-index: 2;
  max-width: 100%;
  max-height: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

/* contenu textuel : titre + dates + sous-titre empilés */
.art-overlay-body {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  flex: 1;
  min-width: 0;
}

.art-overlay .art-overlay-logo,
.recit-une-overlay .art-overlay-logo {
  width: auto !important;
  height: auto !important;
  max-height: clamp(18px, 9cqw, 28px) !important;
  max-width: clamp(64px, 32cqw, 100px) !important;
  object-fit: contain !important;
  filter: brightness(0) invert(1);
  opacity: 0.88;
  flex-shrink: 0;
  transform: none !important;
  transition: none !important;
}
.art-overlay-title {
  color: var(--cream, #F5F1E9);
  font-family: var(--ff-display);
  font-size: 4cqw;
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
  overflow-wrap: break-word;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

/* bas : fondu (comme gauche/droite), logo + titre groupés et centrés,
   section plus haute avec titre et logo agrandis à l'avenant */
.art-overlay--bas {
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(12,12,10,0.95) 0%, rgba(12,12,10,0.95) 38%, transparent 100%);
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding: clamp(1.25rem, 12cqi, 3rem) clamp(0.75rem, 6cqi, 1.5rem) clamp(0.75rem, 7cqi, 1.75rem);
}
.art-overlay--bas .art-overlay-body {
  flex: 0 0 auto;
  align-items: center;
  text-align: center;
}
.art-overlay--bas .art-overlay-title {
  font-size: 6cqw;
}
.art-overlay--bas .art-overlay-logo {
  max-height: clamp(26px, 13cqw, 42px) !important;
  max-width: clamp(90px, 45cqw, 150px) !important;
}

/* gauche / droite : gradient latéral, titre → barre → logo, restent
   centrés entre eux (même axe de référence) mais l'ensemble du panneau
   est rapproché du bord de l'image via un padding asymétrique */
.art-overlay--gauche {
  top: 0; bottom: 0; left: 0;
  width: 60%;
  background: linear-gradient(to right, rgba(12,12,10,0.95) 0%, transparent 100%);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-left: 1rem;
  padding-right: 3.5rem;
}
.art-overlay--droite {
  top: 0; bottom: 0; right: 0;
  width: 60%;
  background: linear-gradient(to left, rgba(12,12,10,0.95) 0%, transparent 100%);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-right: 1rem;
  padding-left: 3.5rem;
}
.art-overlay--gauche .art-overlay-body,
.art-overlay--droite .art-overlay-body {
  order: 1;
  flex: 0 0 auto;
  align-items: center;
  text-align: center;
}
.art-overlay--gauche .art-overlay-logo,
.art-overlay--droite .art-overlay-logo {
  order: 2;
  max-height: clamp(28px, 14cqw, 44px) !important;
  max-width: clamp(100px, 50cqw, 160px) !important;
}
.art-overlay--gauche .art-overlay-title,
.art-overlay--droite .art-overlay-title {
  font-size: 7cqw;
}

.art-overlay-divider {
  display: none;
}
.art-overlay--gauche .art-overlay-divider,
.art-overlay--droite .art-overlay-divider {
  display: block;
  width: 80px;
  height: 2px;
  background: var(--cream, #F5F1E9);
  margin: 0.5rem 0;
}
.art-overlay-dates {
  color: rgba(245,241,233,0.55);
  font-family: var(--ff-sans);
  font-size: 2.4cqw;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  margin: 0;
  line-height: 1.4;
  overflow-wrap: break-word;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}
/* ════════════════════════════════════════
   PAGE PRESTATIONS
════════════════════════════════════════ */
.prestations-page {
  background: var(--bg-dark);
  min-height: calc(100vh - var(--nav-h));
  padding: var(--section-py) 0;
}
.prestations-page-header {
  margin-bottom: 3rem;
}
