/* ═══════════════════════════════════════════════════════════════
   Découv métiers et missions — Design enfant premium
   Palette : crème chaud, corail vif, violet doux, vert menthe,
             jaune soleil. Typo : Nunito (ronde, joyeuse).
═══════════════════════════════════════════════════════════════ */

/* Polices : voir fonts.css (auto-hébergé, chargé séparément dans le head) */

:root {
  --bg:       #FDFAF5;
  --coral:    #FF6B47;
  --coral-lt: #FFF0EC;
  --coral-md: #FFD5C8;
  --violet:   #7C6FF0;
  --violet-lt:#F0EEFF;
  --mint:     #2EC4A9;
  --mint-lt:  #E6FAF7;
  --sun:      #FFD056;
  --sun-lt:   #FFF8DE;
  --sky:      #4FB8F0;
  --sky-lt:   #E8F6FF;
  --rose:     #FF8FAB;
  --rose-lt:  #FFEEF3;
  --text:     #1E1B2E;
  --muted:    #7A7490;
  --surface:  #FFFFFF;
  --line:     #EDE8E0;
  --shadow-sm: 0 4px 16px rgba(100,90,160,.10);
  --shadow:    0 16px 48px rgba(100,90,160,.14);
  --shadow-lg: 0 28px 72px rgba(100,90,160,.18);
  --r-sm: 16px;
  --r:    24px;
  --r-lg: 36px;
  --r-xl: 48px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Nunito', 'Inter', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
button, input, select, textarea { font-family: inherit; }
p { margin: 0; }

/* ── BACKGROUND BLOBS ────────────────────────────────────────── */
.page-glow {
  position: fixed;
  z-index: -1;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.glow-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(255,107,71,.22), transparent 70%);
  top: -120px; right: -160px;
  animation: drift 14s ease-in-out infinite alternate;
}
.glow-2 {
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(124,111,240,.18), transparent 70%);
  left: -140px; top: 35%;
  animation: drift 18s ease-in-out infinite alternate-reverse;
}
.glow-3 {
  width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(46,196,169,.16), transparent 70%);
  right: 5%; bottom: 10%;
  animation: drift 20s ease-in-out infinite alternate;
}
@keyframes drift {
  from { transform: translate(0,0) scale(1); }
  to   { transform: translate(30px, 24px) scale(1.08); }
}

/* ── NAV ─────────────────────────────────────────────────────── */
.nav {
  position: sticky; top: 0; z-index: 30;
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
  padding: 14px clamp(18px, 4vw, 48px);
  background: rgba(253,250,245,.88);
  backdrop-filter: blur(16px);
  border-bottom: 1.5px solid rgba(255,107,71,.12);
}
.brand {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'Nunito', sans-serif;
  font-weight: 900; font-size: 1.15rem; letter-spacing: -0.02em;
}
.brand-mark {
  width: 38px; height: 38px; border-radius: 14px;
  display: block; object-fit: contain;
  box-shadow: 0 8px 20px rgba(255,107,71,.32);
  transition: transform .2s;
}
.brand:hover .brand-mark { transform: rotate(-8deg) scale(1.08); }
.nav-links {
  display: flex; align-items: center; gap: 6px;
  font-size: 14px; font-weight: 700;
}
.nav-links a {
  padding: 8px 14px; border-radius: 999px; color: var(--muted);
  transition: background .15s, color .15s;
}
.nav-links a:hover { background: var(--coral-lt); color: var(--coral); }
.nav-cta {
  background: var(--violet) !important;
  color: #fff !important;
  padding: 10px 20px !important;
  border-radius: 999px;
  box-shadow: 0 8px 22px rgba(124,111,240,.28);
  transition: transform .15s, box-shadow .15s !important;
}
.nav-cta:hover { transform: translateY(-2px) !important; box-shadow: 0 14px 28px rgba(124,111,240,.36) !important; }
.menu-btn {
  display: none;
  width: 40px; height: 40px; border-radius: 12px;
  border: 1.5px solid var(--line); background: var(--surface);
  cursor: pointer; font-size: 18px;
  transition: background .15s;
}
.menu-btn:hover { background: var(--coral-lt); }

/* ── SECTION WRAPPER ─────────────────────────────────────────── */
.section { width: min(1160px, calc(100% - 32px)); margin: 0 auto; }

/* ── EYEBROW ─────────────────────────────────────────────────── */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 16px; border-radius: 999px;
  background: var(--sun-lt); color: #9A6C00;
  font-size: 12px; font-weight: 800; letter-spacing: .06em;
  text-transform: uppercase; border: 1.5px solid rgba(255,208,86,.4);
}
.eyebrow.colorful {
  background: linear-gradient(90deg, var(--sun-lt), var(--coral-lt));
  border-color: rgba(255,107,71,.2);
}

/* ── HERO ────────────────────────────────────────────────────── */
.hero {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 48px; align-items: center;
  padding: 80px 0 48px;
}
.hero-copy { display: flex; flex-direction: column; align-items: flex-start; gap: 0; }

.hero h1 {
  font-family: 'Nunito', sans-serif;
  font-size: clamp(2.6rem, 4.5vw, 5rem);
  font-weight: 1000;
  line-height: .96;
  letter-spacing: -0.04em;
  margin: 18px 0 18px;
  color: var(--text);
}
.hero h1 .highlight {
  background: linear-gradient(135deg, var(--coral), var(--violet));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.lead { font-size: 1.07rem; color: var(--muted); max-width: 56ch; font-weight: 500; }

.hero-actions { display: flex; gap: 14px; margin: 28px 0 22px; flex-wrap: wrap; }

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; min-height: 50px; padding: 0 24px;
  border-radius: var(--r); border: none; cursor: pointer;
  font-family: 'Nunito', sans-serif; font-weight: 800; font-size: .95rem;
  transition: transform .2s cubic-bezier(.34,1.56,.64,1), box-shadow .2s;
}
.btn:hover { transform: translateY(-3px) scale(1.02); }
.btn.primary {
  background: linear-gradient(135deg, var(--coral) 0%, #FF9550 100%);
  color: #fff;
  box-shadow: 0 12px 32px rgba(255,107,71,.35);
}
.btn.primary:hover { box-shadow: 0 18px 40px rgba(255,107,71,.45); }
.btn.secondary {
  background: var(--surface); color: var(--text);
  border: 2px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.btn.secondary:hover { border-color: var(--coral); color: var(--coral); }
.btn.full { width: 100%; }

.trust-row {
  display: flex; gap: 10px; flex-wrap: wrap;
}
.trust-row span {
  display: flex; align-items: center; gap: 6px;
  padding: 9px 14px; border-radius: 999px;
  background: var(--surface); border: 1.5px solid var(--line);
  font-size: 13px; font-weight: 700; color: var(--muted);
  box-shadow: var(--shadow-sm);
}

/* ── HERO SHOWCASE ───────────────────────────────────────────── */
.hero-showcase {
  display: flex; flex-direction: column;
}
/* Deux instances du même contenu décoratif : .showcase-desktop (dans le hero, à côté
   du texte, >1000px) et .showcase-mobile (repositionnée après les stats, ≤1000px). */
.showcase-mobile { display: none; }

/* Les 4 bulles (badge + 3 thèmes) forment une seule ligne centrée au-dessus du board,
   en flux normal — plus de positionnement absolu, donc plus de risque de chevauchement. */
.pill-row {
  display: flex; flex-wrap: wrap; justify-content: center; align-items: center;
  gap: 10px; margin-bottom: 16px;
}
.floating-pill {
  padding: 11px 18px; border-radius: 999px;
  background: var(--surface);
  box-shadow: var(--shadow);
  font-size: 13.5px; font-weight: 800;
  border: 2px solid var(--line);
  white-space: nowrap;
}
.floating-pill:first-child { background: var(--violet-lt); color: var(--violet); border-color: rgba(124,111,240,.2); }
.pill-a { border-color: var(--coral-md); color: var(--coral); }
.pill-b { border-color: rgba(124,111,240,.3); color: var(--violet); }
.pill-c { border-color: rgba(46,196,169,.3); color: var(--mint); }

.adventure-board {
  background: rgba(255,255,255,.90);
  border: 2px solid rgba(255,107,71,.14);
  border-radius: var(--r-xl);
  padding: 28px;
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(14px);
}
.board-top { display: flex; justify-content: center; align-items: center; }
.board-badge {
  background: var(--violet-lt); color: var(--violet);
  padding: 8px 14px; border-radius: 999px;
  font-size: 12px; font-weight: 800;
  border: 1.5px solid rgba(124,111,240,.2);
}
.board-top > strong { font-size: .92rem; color: var(--muted); text-align: center; line-height: 1.3; }
.board-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 14px; margin: 20px 0;
}
.mini-card {
  padding: 20px; border-radius: var(--r);
  border: 2px solid transparent;
  transition: transform .2s, box-shadow .2s;
}
.mini-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.mini-card span { font-size: 30px; display: block; margin-bottom: 10px; }
.mini-card strong { display: block; font-weight: 800; font-size: .9rem; margin-bottom: 5px; color: var(--text); }
.mini-card p { font-size: 12px; color: var(--muted); font-weight: 600; }
.mini-card.wide { grid-column: span 2; }
.mini-card.sky { background: var(--sky-lt); border-color: rgba(79,184,240,.2); }
.mini-card.peach { background: var(--coral-lt); border-color: var(--coral-md); }
.mini-card.mint { background: var(--mint-lt); border-color: rgba(46,196,169,.2); }
.mini-card.lilac { background: var(--violet-lt); border-color: rgba(124,111,240,.2); }
.board-bottom {
  display: flex; justify-content: space-between; align-items: center;
  background: linear-gradient(135deg, var(--sun-lt), #FFF);
  border-radius: var(--r-sm); padding: 14px 18px;
  border: 1.5px solid rgba(255,208,86,.3);
}
.board-bottom strong { font-size: .9rem; font-weight: 900; }
.board-bottom span { font-size: 12px; color: var(--muted); font-weight: 600; }
.sparkles { font-size: 20px; letter-spacing: 4px; }

/* ── STATS BAR ───────────────────────────────────────────────── */
.stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin: 24px auto 48px;
}
.stats div {
  background: var(--surface);
  border: 2px solid var(--line);
  border-radius: var(--r);
  padding: 20px 24px;
  box-shadow: var(--shadow-sm);
  transition: border-color .2s, transform .2s;
}
.stats div:hover { border-color: var(--coral-md); transform: translateY(-2px); }
.stats strong { display: block; font-size: 1.55rem; font-weight: 900; color: var(--text); }
.stats span { font-size: .88rem; color: var(--muted); font-weight: 600; }

/* ── FEATURES ────────────────────────────────────────────────── */
.features { padding: 48px 0; }
.section-head {
  display: flex; flex-direction: column; align-items: flex-start; gap: 10px;
  margin-bottom: 28px;
}
.center-head { align-items: center; text-align: center; }
.section-head h2, .reservation-copy h2 {
  margin: 0;
  font-family: 'Nunito', sans-serif;
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 900; line-height: 1.05; letter-spacing: -0.04em;
}
.section-head p { color: var(--muted); font-weight: 600; max-width: 56ch; }
.feature-grid { display: flex; gap: 18px; flex-wrap: wrap; }
.feature-card {
  flex: 1 1 280px;
  background: var(--surface); border: 2px solid var(--line);
  border-radius: var(--r-lg); padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: border-color .2s, transform .2s, box-shadow .2s;
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.feature-card:nth-child(1) { border-color: rgba(124,111,240,.25); }
.feature-card:nth-child(1):hover { border-color: var(--violet); }
.feature-card:nth-child(2) { border-color: var(--coral-md); }
.feature-card:nth-child(2):hover { border-color: var(--coral); }
.feature-card:nth-child(3) { border-color: rgba(46,196,169,.25); }
.feature-card:nth-child(3):hover { border-color: var(--mint); }
.feature-icon {
  width: 60px; height: 60px; border-radius: 20px;
  display: grid; place-items: center; font-size: 28px;
  margin-bottom: 18px;
}
.feature-icon.lilac { background: var(--violet-lt); }
.feature-icon.peach { background: var(--coral-lt); }
.feature-icon.mint  { background: var(--mint-lt); }
.feature-card h3 { margin: 0 0 10px; font-size: 1.1rem; font-weight: 900; }
.feature-card p { color: var(--muted); font-weight: 600; font-size: .92rem; }

/* ── CATEGORY CHIPS ─────────────────────────────────────────── */
.category-strip { display: flex; flex-wrap: wrap; gap: 12px; padding: 32px 0; }
.category-chip {
  padding: 13px 20px; border-radius: 999px;
  background: var(--surface); border: 2px solid var(--line);
  font-size: 14px; font-weight: 800;
  box-shadow: var(--shadow-sm);
  transition: all .2s cubic-bezier(.34,1.56,.64,1);
  cursor: default;
}
.category-chip:hover { transform: translateY(-3px) scale(1.04); }
.category-chip:nth-child(1):hover { background: var(--mint-lt);   border-color: var(--mint);   color: #1a8a78; }
.category-chip:nth-child(2):hover { background: var(--violet-lt); border-color: var(--violet); color: var(--violet); }
.category-chip:nth-child(3):hover { background: var(--sky-lt);    border-color: var(--sky);    color: #1a7fb8; }
.category-chip:nth-child(4):hover { background: var(--sun-lt);    border-color: var(--sun);    color: #9A6C00; }
.category-chip:nth-child(5):hover { background: var(--rose-lt);   border-color: var(--rose);   color: #C43D63; }
.category-chip:nth-child(6):hover { background: var(--coral-lt);  border-color: var(--coral);  color: var(--coral); }

/* ── WORKSHOP CARDS ─────────────────────────────────────────── */
.workshop-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px; margin-top: 8px;
}
.workshop-card {
  position: relative; overflow: hidden;
  background: var(--surface);
  border: 2px solid var(--line);
  border-radius: var(--r-lg);
  padding: 24px;
  display: flex; flex-direction: column; gap: 14px;
  box-shadow: var(--shadow-sm);
  transition: transform .25s cubic-bezier(.34,1.56,.64,1), box-shadow .25s, border-color .2s;
}
.workshop-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.workshop-card::before {
  content: '';
  position: absolute; inset: 0;
  border-radius: inherit;
  background: linear-gradient(160deg, rgba(255,255,255,.8) 0%, rgba(255,255,255,.0) 60%);
  pointer-events: none;
}
/* color accents per card (1 médecine·mint / 2 droit·violet / 3 architecture·sky / 4 enseignement·sun / 5 finance·rose / 6 innovation·coral) */
.workshop-card:nth-child(1) { border-color: rgba(46,196,169,.3); }
.workshop-card:nth-child(1):hover { border-color: var(--mint); }
.workshop-card:nth-child(2) { border-color: rgba(124,111,240,.3); }
.workshop-card:nth-child(2):hover { border-color: var(--violet); }
.workshop-card:nth-child(3) { border-color: rgba(79,184,240,.3); }
.workshop-card:nth-child(3):hover { border-color: var(--sky); }
.workshop-card:nth-child(4) { border-color: rgba(255,208,86,.45); }
.workshop-card:nth-child(4):hover { border-color: var(--sun); }
.workshop-card:nth-child(5) { border-color: rgba(255,143,171,.35); }
.workshop-card:nth-child(5):hover { border-color: var(--rose); }
.workshop-card:nth-child(6) { border-color: rgba(255,107,71,.3); }
.workshop-card:nth-child(6):hover { border-color: var(--coral); }

.workshop-top { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
.badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 7px 13px; border-radius: 999px;
  font-size: 12px; font-weight: 800;
}
.badge-age   { background: var(--sun-lt);    color: #9A6C00; border: 1.5px solid rgba(255,208,86,.5); }
.badge-theme { background: var(--violet-lt); color: var(--violet); border: 1.5px solid rgba(124,111,240,.25); }

.workshop-card h3 {
  margin: 0; font-size: 1.15rem; font-weight: 900; letter-spacing: -.02em;
}
.workshop-card p { color: var(--muted); font-size: .88rem; font-weight: 600; }

.meta { display: flex; flex-wrap: wrap; gap: 8px; }
.meta span {
  font-size: 13px; color: var(--muted); font-weight: 700;
  background: var(--bg); padding: 7px 12px;
  border-radius: 999px; border: 1.5px solid var(--line);
}

.spots { width: 100%; height: 8px; border-radius: 999px; background: #EDE8E0; overflow: hidden; }
.spots span {
  display: block; height: 100%; border-radius: inherit;
  background: linear-gradient(90deg, var(--violet), var(--sky));
  transition: width .6s ease;
}

.workshop-footer { display: flex; justify-content: space-between; align-items: flex-end; margin-top: auto; }
.price { font-size: 2rem; font-weight: 900; letter-spacing: -0.05em; color: var(--text); }
.remaining-pill {
  background: var(--mint-lt); color: #1a8a78;
  padding: 8px 13px; border-radius: 999px;
  font-size: 12px; font-weight: 800;
  border: 1.5px solid rgba(46,196,169,.25);
  display: inline-flex; align-items: center; gap: 5px;
}

/* ── EXPERIENCE JOURNEY ──────────────────────────────────────── */
.experience { padding: 48px 0; }
.journey-grid { display: flex; gap: 16px; flex-wrap: wrap; }
.journey-grid article {
  flex: 1 1 230px;
  background: var(--surface); border: 2px solid var(--line);
  border-radius: var(--r-lg); padding: 24px;
  transition: transform .2s, box-shadow .2s;
}
.journey-grid article:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.journey-grid article:nth-child(1) { border-color: rgba(255,107,71,.25); }
.journey-grid article:nth-child(2) { border-color: rgba(124,111,240,.25); }
.journey-grid article:nth-child(3) { border-color: rgba(79,184,240,.25); }
.journey-grid article:nth-child(4) { border-color: rgba(46,196,169,.25); }
.journey-step {
  width: 42px; height: 42px; border-radius: 14px;
  display: inline-grid; place-items: center;
  font-weight: 900; font-size: 1.1rem; color: #fff;
  margin-bottom: 16px;
}
.journey-grid article:nth-child(1) .journey-step { background: var(--coral); box-shadow: 0 8px 20px rgba(255,107,71,.3); }
.journey-grid article:nth-child(2) .journey-step { background: var(--violet); box-shadow: 0 8px 20px rgba(124,111,240,.3); }
.journey-grid article:nth-child(3) .journey-step { background: var(--sky); box-shadow: 0 8px 20px rgba(79,184,240,.3); }
.journey-grid article:nth-child(4) .journey-step { background: var(--mint); box-shadow: 0 8px 20px rgba(46,196,169,.3); }
.journey-grid h3 { margin: 0 0 8px; font-size: 1.05rem; font-weight: 900; }
.journey-grid p { color: var(--muted); font-size: .88rem; font-weight: 600; }

/* ── TESTIMONIALS ────────────────────────────────────────────── */
.testimonial-band {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 18px; padding: 48px 0;
}
.quote-card {
  background: var(--surface);
  border: 2px solid var(--line);
  border-radius: var(--r-lg); padding: 28px;
  box-shadow: var(--shadow-sm);
  position: relative; overflow: hidden;
  transition: transform .2s, box-shadow .2s;
}
.quote-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.quote-card::before {
  content: '"';
  position: absolute; top: 12px; right: 20px;
  font-size: 5rem; font-weight: 900; line-height: 1;
  opacity: .08; color: var(--violet);
  font-family: Georgia, serif;
}
.quote-card p { font-size: .95rem; color: var(--text); font-weight: 600; line-height: 1.7; font-style: italic; }
.quote-card strong { display: block; margin-top: 16px; font-size: .85rem; color: var(--muted); font-weight: 800; }

/* ── RESERVATION ─────────────────────────────────────────────── */
.reservation { display: flex; gap: 28px; align-items: flex-start; padding: 48px 0; }
.reservation-copy, .booking-form {
  flex: 1 1 0;
  background: var(--surface);
  border: 2px solid var(--line);
  border-radius: var(--r-lg); padding: 32px;
  box-shadow: var(--shadow-sm);
}
.reservation-copy p { color: var(--muted); font-weight: 600; }

/* ── PRODUCT SWITCH (atelier unique / pass 6 domaines) ──────────── */
.product-switch {
  display: flex; gap: 8px; margin-bottom: 20px;
  background: var(--bg); border: 2px solid var(--line); border-radius: var(--r);
  padding: 5px;
}
.product-tab {
  flex: 1; border: none; background: transparent; cursor: pointer;
  padding: 12px 10px; border-radius: 10px;
  font-family: inherit; font-weight: 800; font-size: 13px; color: var(--muted);
  transition: background .15s, color .15s;
}
.product-tab.active { background: var(--surface); color: var(--violet); box-shadow: var(--shadow-sm); }
.pass-note {
  background: var(--violet-lt); border: 2px solid rgba(124,111,240,.25);
  border-radius: var(--r); padding: 16px 18px; margin-bottom: 18px;
}
.pass-note strong { display: block; font-size: .92rem; color: var(--violet); margin-bottom: 5px; }
.pass-note p { margin: 0; font-size: .82rem; color: var(--muted); font-weight: 600; line-height: 1.5; }

.progress-pills { display: flex; flex-wrap: wrap; gap: 10px; margin: 22px 0; }
.progress-pills span {
  border: 2px solid var(--line); background: var(--surface);
  color: var(--muted); padding: 9px 16px; border-radius: 999px;
  font-size: 12px; font-weight: 800;
}
.progress-pills .active {
  background: var(--violet); border-color: transparent; color: #fff;
  box-shadow: 0 6px 18px rgba(124,111,240,.3);
}
.summary-card {
  background: linear-gradient(135deg, var(--sky-lt) 0%, #fff 100%);
  border-radius: var(--r); padding: 22px;
  border: 2px solid rgba(79,184,240,.25); margin-top: 6px;
}
.summary-top { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 14px; }
.summary-icon {
  width: 56px; height: 56px; border-radius: 18px;
  display: inline-grid; place-items: center;
  background: #fff; font-size: 28px;
  box-shadow: var(--shadow-sm); flex-shrink: 0;
}
.summary-top strong { font-size: 1rem; font-weight: 900; }
.summary-top p { font-size: .85rem; color: var(--muted); font-weight: 600; margin-top: 4px; }
.summary-details { display: flex; flex-wrap: wrap; gap: 8px; }
.summary-details span {
  padding: 8px 13px; border-radius: 999px;
  background: rgba(255,255,255,.85); border: 1.5px solid rgba(79,184,240,.2);
  font-size: 12px; font-weight: 800; color: var(--muted);
}
.booking-form label {
  display: block; font-size: 14px; font-weight: 800;
  margin-bottom: 14px;
}
.booking-form input, .booking-form select, .modal-input {
  width: 100%; margin-top: 8px;
  border: 2px solid var(--line); border-radius: var(--r-sm);
  padding: 13px 15px; background: var(--bg); color: var(--text);
  font-weight: 600; font-size: .92rem;
  transition: border-color .15s, box-shadow .15s; outline: none;
}
.booking-form input:focus, .booking-form select:focus, .modal-input:focus {
  border-color: var(--violet); box-shadow: 0 0 0 4px rgba(124,111,240,.12);
}
.form-row { display: flex; gap: 14px; }
.form-row > label { flex: 1 1 0; }
.check {
  display: flex !important; align-items: flex-start; gap: 10px;
  font-size: 13px !important; color: var(--muted); font-weight: 600 !important;
}
.check input { width: 18px; height: 18px; margin-top: 2px; accent-color: var(--violet); flex-shrink: 0; }
.check span { min-width: 0; line-height: 1.5; }
.check a { color: var(--violet); font-weight: 700; }
.form-status { min-height: 20px; margin: 10px 2px 0; font-size: 13px; color: var(--muted); }

/* ── FAQ ─────────────────────────────────────────────────────── */
.faq { padding: 48px 0; }
.faq-list { display: grid; gap: 12px; max-width: 880px; margin: 0 auto; }
.faq-list details {
  background: var(--surface); border: 2px solid var(--line);
  border-radius: var(--r); padding: 20px 24px;
  transition: border-color .15s;
}
.faq-list details[open] { border-color: var(--violet-lt); }
.faq-list summary {
  cursor: pointer; font-weight: 800; font-size: .95rem;
  list-style: none; display: flex; justify-content: space-between; align-items: center;
}
.faq-list summary::after { content: '+'; font-size: 1.2rem; color: var(--violet); transition: transform .2s; }
.faq-list details[open] summary::after { transform: rotate(45deg); }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list p { color: var(--muted); font-weight: 600; margin-top: 12px; font-size: .92rem; }

/* ── FOOTER ──────────────────────────────────────────────────── */
.footer {
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  width: min(1160px, calc(100% - 32px)); margin: 32px auto 0;
  padding: 24px 0 36px;
  border-top: 2px solid var(--line);
}
.footer strong { display: block; font-weight: 900; }
.footer span { font-size: .88rem; color: var(--muted); font-weight: 600; }

/* ── ADMIN ENTRY ─────────────────────────────────────────────── */
.credit-line {
  text-align: center; padding: 18px 0 0;
  font-size: 12px; color: var(--muted); font-weight: 600;
}
.credit-line a { color: var(--muted); text-decoration: underline; text-underline-offset: 2px; }
.credit-line a:hover { color: var(--violet); }
.admin-entry { text-align: center; padding: 8px 0 32px; }
.admin-dot {
  display: inline-block;
  width: 10px; height: 10px; border-radius: 50%;
  background: rgba(30,27,46,.12); border: none; cursor: pointer;
  transition: all .25s;
}
.admin-dot:hover { background: rgba(30,27,46,.25); box-shadow: 0 0 0 8px rgba(30,27,46,.06); }

/* ── OVERLAYS & MODALS ───────────────────────────────────────── */
.overlay {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(30,27,46,.5);
  backdrop-filter: blur(6px);
  align-items: center; justify-content: center; padding: 18px;
}
.modal-card {
  position: relative;
  width: min(620px, 96vw);
  max-height: 88vh; overflow-y: auto;
  background: var(--surface); border-radius: var(--r-xl);
  padding: 32px;
  box-shadow: 0 40px 100px rgba(30,27,46,.25);
  border: 2px solid rgba(255,255,255,.8);
  animation: popIn .25s cubic-bezier(.34,1.56,.64,1);
  -webkit-overflow-scrolling: touch;
}
.modal-card.small { width: min(420px, 92vw); }
@keyframes popIn {
  from { opacity: 0; transform: scale(.92) translateY(12px); }
  to   { opacity: 1; transform: none; }
}
.modal-close {
  position: absolute; top: 16px; right: 18px;
  width: 36px; height: 36px; border-radius: 12px;
  border: 2px solid var(--line); background: var(--bg);
  font-size: 16px; cursor: pointer; color: var(--muted);
  transition: all .15s;
}
.modal-close:hover { background: var(--coral-lt); border-color: var(--coral); color: var(--coral); }
.modal-head { margin-bottom: 20px; }
.modal-title { font-size: 1.2rem; font-weight: 900; margin-bottom: 4px; }
.modal-subtitle { font-size: .85rem; color: var(--muted); font-weight: 600; }
.modal-label { display: block; font-size: 13px; font-weight: 800; margin: 12px 0 4px; color: var(--text); }
.error-box {
  background: #FFF0F0; border: 2px solid rgba(255,107,71,.3);
  border-radius: var(--r-sm); padding: 12px 14px;
  color: #c0392b; font-size: 13px; font-weight: 700; margin-bottom: 14px;
}
.modal-actions { display: flex; gap: 12px; justify-content: flex-end; margin-top: 8px; }

/* ── CONFIRMATION MODAL ──────────────────────────────────────── */
.confirmation-summary { display: grid; gap: 14px; margin: 18px 0 22px; }
.confirm-block {
  border: 2px solid var(--line); border-radius: var(--r); padding: 18px;
  background: var(--bg);
}
.confirm-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.confirm-item strong {
  display: block; font-size: 11px; text-transform: uppercase;
  letter-spacing: .06em; color: var(--muted); margin-bottom: 4px; font-weight: 800;
}

/* ── PAYMENT (virement) ──────────────────────────────────────── */
.rib-panel {
  background: var(--mint-lt); border: 2px solid rgba(46,196,169,.3);
  border-radius: var(--r); padding: 20px; margin-top: 6px;
}
.rib-panel h4 { margin: 0 0 12px; font-size: .95rem; font-weight: 900; color: #1a8a78; }
.rib-row {
  display: flex; justify-content: space-between; align-items: center; gap: 10px;
  padding: 10px 0; border-bottom: 1.5px dashed rgba(46,196,169,.3);
  font-size: .88rem;
}
.rib-row:last-of-type { border-bottom: none; }
.rib-row strong { font-weight: 800; color: var(--text); word-break: break-word; text-align: right; }
.rib-row span:first-child { color: var(--muted); font-weight: 700; flex-shrink: 0; }
.ref-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff; border: 2px dashed var(--mint);
  border-radius: 999px; padding: 8px 16px;
  font-weight: 900; font-size: .9rem; color: #1a8a78;
  margin: 10px 0;
}
.rib-note { font-size: .78rem; color: #1a8a78; font-weight: 700; margin-top: 10px; line-height: 1.5; }

/* ── REVEAL ANIMATION ────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ── RESPONSIVE ──────────────────────────────────────────────── */
/* Breakpoints : Desktop (>1024px) · Tablette paysage (769–1024px) ·
   Tablette portrait / grand mobile (481–768px) · Mobile (≤480px) */

/* ---- Tablette paysage / petit desktop ---- */
@media (max-width: 1024px) {
  .hero { gap: 36px; }
  .workshop-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ---- Tablette (portrait) ---- */
@media (max-width: 860px) {
  .nav-links {
    position: absolute; top: calc(100% + 8px); left: 12px; right: 12px;
    display: none; flex-direction: column; align-items: stretch; gap: 6px;
    background: var(--surface); border: 2px solid var(--line);
    border-radius: var(--r); padding: 14px;
    box-shadow: var(--shadow);
    max-height: calc(100vh - 90px); overflow-y: auto;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px 14px; }
  .menu-btn { display: inline-grid; }
}
@media (max-width: 1000px) {
  .hero, .reservation, .testimonial-band { grid-template-columns: 1fr; }
  .showcase-desktop { display: none; }
  .showcase-mobile { display: block; padding-top: 4px; }
  .hero-showcase { min-height: 0; }
  .reservation { flex-direction: column; }
}
@media (max-width: 768px) {
  .section { width: min(100%, calc(100% - 28px)); }
  .workshop-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .board-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .stats { gap: 12px; grid-template-columns: repeat(2, 1fr); }
  .hero { padding: 40px 0 32px; }
  .feature-card { padding: 22px; }
  .feature-icon { width: 50px; height: 50px; font-size: 24px; margin-bottom: 14px; }
  .journey-grid article { padding: 20px; }
  .journey-step { width: 38px; height: 38px; font-size: 1rem; margin-bottom: 12px; }
  .adventure-board { padding: 22px; }
  .mini-card { padding: 16px; }
  .mini-card span { font-size: 24px; margin-bottom: 8px; }
}

/* ---- Mobile ---- */
@media (max-width: 640px) {
  .hero h1 { font-size: 2.15rem; }
  .lead { font-size: 1rem; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; }
  .trust-row { gap: 8px; }
  .trust-row span { font-size: 12px; padding: 8px 12px; }
  .workshop-grid { grid-template-columns: 1fr; }
  .confirm-grid { grid-template-columns: 1fr; }
  .form-row { flex-direction: column; gap: 0; }
  .footer { flex-direction: column; align-items: flex-start; }
  .reservation-copy, .booking-form { padding: 24px 20px; }
  .modal-card { padding: 24px 18px; }

  /* Densité mobile : cartes plus compactes, board sur 2 colonnes plutôt qu'empilé plein écran */
  .stats { margin: 16px auto 32px; gap: 10px; }
  .stats div { padding: 14px 16px; }
  .stats strong { font-size: 1.25rem; }
  .stats span { font-size: .78rem; }

  .features { padding: 32px 0; }
  .feature-grid { gap: 12px; }
  .feature-card { padding: 18px; flex-basis: 100%; }
  .feature-icon { width: 42px; height: 42px; font-size: 20px; border-radius: 14px; margin-bottom: 10px; }
  .feature-card h3 { font-size: .98rem; margin-bottom: 5px; }
  .feature-card p { font-size: .84rem; }

  .experience { padding: 32px 0; }
  .journey-grid { gap: 10px; }
  .journey-grid article { padding: 16px; flex-basis: 100%; }
  .journey-step { width: 32px; height: 32px; font-size: .9rem; border-radius: 9px; margin-bottom: 8px; }
  .journey-grid h3 { font-size: .92rem; margin-bottom: 4px; }
  .journey-grid p { font-size: .8rem; }

  .adventure-board { padding: 18px; }
  .board-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .mini-card.wide { grid-column: span 2; }
  .mini-card { padding: 12px; }
  .mini-card span { font-size: 20px; margin-bottom: 5px; }
  .mini-card strong { font-size: .76rem; margin-bottom: 2px; }
  .mini-card p { font-size: 10.5px; line-height: 1.35; }
  .board-bottom { padding: 10px 12px; }
  .board-bottom strong { font-size: .78rem; }
  .board-bottom span { font-size: 10.5px; }
}
@media (max-width: 480px) {
  .section { width: calc(100% - 24px); }
  .brand { font-size: .84rem; gap: 8px; }
  .brand-mark { width: 32px; height: 32px; border-radius: 11px; }
  .hero { padding-top: 28px; }
  .hero h1 { font-size: 1.9rem; letter-spacing: -0.03em; }
  .eyebrow { font-size: 11px; padding: 7px 13px; }
  .board-top { flex-direction: column; align-items: flex-start; gap: 6px; }
  .board-top > strong { font-size: .8rem; text-align: left; }
  .workshop-card { padding: 20px; }
  .price { font-size: 1.6rem; }
  .workshop-footer { flex-wrap: wrap; gap: 10px; }
  .section-head h2, .reservation-copy h2 { font-size: 1.7rem; }
  .quote-card { padding: 22px; }
  .modal-card { width: min(620px, 94vw); padding: 20px 16px; }
  .modal-card.small { width: min(420px, 92vw); }
  .modal-title { font-size: 1.05rem; }
  .summary-top { flex-direction: column; }
}
@media (max-width: 360px) {
  /* Écrans très étroits : le board repasse en 1 colonne pour rester lisible */
  .board-grid { grid-template-columns: 1fr; }
  .mini-card.wide { grid-column: span 1; }
  .stats { grid-template-columns: 1fr; }
}
