/* ===================================================================
   LES SALES GOSSES — Tableau noir gastronomique
   Ardoise vert-sombre · craie · rose barbe-à-papa · bleu ciel
   =================================================================== */

:root {
  /* Surfaces */
  --board:       oklch(0.285 0.022 200);   /* ardoise principale */
  --board-deep:  oklch(0.225 0.020 205);   /* ardoise foncée (nav, footer) */
  --board-line:  oklch(0.36 0.02 200);
  --white:       oklch(1 0 0);

  /* Encres */
  --chalk:       oklch(0.965 0.006 190);   /* craie */
  --chalk-dim:   oklch(0.82 0.012 195);
  --ink:         oklch(0.245 0.015 215);   /* texte sur blanc */
  --ink-soft:    oklch(0.40 0.014 215);

  /* Marque */
  --rose:        oklch(0.80 0.10 356);     /* barbe à papa */
  --rose-strong: oklch(0.68 0.155 359);    /* CTA */
  --rose-deep:   oklch(0.52 0.16 0);
  --bleu:        oklch(0.80 0.06 220);     /* bleu ciel logo */
  --bleu-deep:   oklch(0.55 0.075 230);

  /* Type */
  --f-display: "Fraunces", Georgia, serif;
  --f-body: "Outfit", "Helvetica Neue", sans-serif;
  --f-chalk: "Caveat", cursive;

  /* Échelle & rythme */
  --wrap: 1160px;
  --s1: .5rem; --s2: 1rem; --s3: 1.75rem; --s4: 3rem; --s5: 5rem; --s6: 7.5rem;
  --r-card: 14px;
  --r-pill: 999px;

  /* z-index sémantique */
  --z-nav: 50; --z-sticky: 60; --z-overlay: 80; --z-modal: 90; --z-toast: 100;

  --ease-out: cubic-bezier(.16, 1, .3, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--f-body);
  font-weight: 300;
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img, video, canvas { display: block; max-width: 100%; }
a { color: inherit; }
button { font: inherit; cursor: pointer; }
h1, h2, h3, h4 { font-family: var(--f-display); font-weight: 600; line-height: 1.12; text-wrap: balance; letter-spacing: -0.015em; }
p { text-wrap: pretty; max-width: 68ch; }
::selection { background: var(--rose); color: var(--board-deep); }

/* ---------- Utilitaires ---------- */
.wrap { width: min(var(--wrap), 100% - 2.5rem); margin-inline: auto; }
.wrap-narrow { width: min(780px, 100% - 2.5rem); margin-inline: auto; }
.center { text-align: center; }
.center p { margin-inline: auto; }

.chalk-note {
  font-family: var(--f-chalk);
  font-weight: 500;
  font-size: clamp(1.35rem, 1.1rem + 1vw, 1.8rem);
  color: var(--rose);
  transform: rotate(-1.5deg);
  display: inline-block;
}
.on-white .chalk-note, .chalk-note.on-white { color: var(--rose-deep); }

.h-underline { position: relative; display: inline-block; }
.h-underline::after {
  content: ""; position: absolute; left: 2%; right: -2%; bottom: -.18em; height: .14em;
  background: var(--rose); border-radius: 2px; transform: rotate(-.6deg);
}

/* ---------- Boutons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .55em;
  padding: .9em 1.7em; border-radius: var(--r-pill);
  font-family: var(--f-body); font-weight: 500; font-size: 1rem;
  text-decoration: none; border: none;
  transition: transform .35s var(--ease-out), background .25s, color .25s, box-shadow .35s var(--ease-out);
}
.btn:active { transform: scale(.97); }
.btn-rose { background: var(--rose); color: var(--board-deep); }
.btn-rose:hover { background: var(--rose-strong); color: var(--white); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--chalk); box-shadow: inset 0 0 0 1.5px var(--chalk-dim); }
.btn-ghost:hover { box-shadow: inset 0 0 0 1.5px var(--chalk); transform: translateY(-2px); }
.btn-ghost.on-white { color: var(--ink); box-shadow: inset 0 0 0 1.5px var(--ink-soft); }
.btn-ghost.on-white:hover { box-shadow: inset 0 0 0 1.5px var(--ink); }

/* ---------- Navigation ---------- */
.site-nav {
  position: fixed; inset-inline: 0; top: 0; z-index: var(--z-nav);
  transition: background .4s var(--ease-out), box-shadow .4s;
  background: transparent;
}
.site-nav.scrolled { background: color-mix(in oklch, var(--board-deep) 92%, transparent); backdrop-filter: blur(10px); box-shadow: 0 1px 0 var(--board-line); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: .7rem 0; }
.nav-brand { display: flex; align-items: center; gap: .7rem; text-decoration: none; }
.nav-brand img { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; box-shadow: 0 0 0 2px color-mix(in oklch, var(--chalk) 60%, transparent); }
.nav-brand span { font-family: var(--f-display); font-weight: 700; font-size: 1.15rem; color: var(--chalk); letter-spacing: .01em; }
.nav-links { display: flex; align-items: center; gap: .1rem; list-style: none; padding: 0; }
.nav-links a {
  display: block; padding: .5rem .72rem; text-decoration: none;
  color: var(--chalk-dim); font-size: .93rem; font-weight: 400;
  border-radius: var(--r-pill); transition: color .2s, background .2s;
  white-space: nowrap;
}
.nav-links a:hover { color: var(--chalk); background: color-mix(in oklch, var(--chalk) 10%, transparent); }
.nav-links a[aria-current="page"] { color: var(--rose); }
.nav-links .nav-cta a { background: var(--rose); color: var(--board-deep); font-weight: 500; padding: .55rem 1.1rem; margin-left: .4rem; }
.nav-links .nav-cta a:hover { background: var(--rose-strong); color: var(--white); }

.nav-burger {
  display: none; flex-direction: column; gap: 5px; background: none; border: 0; padding: .6rem;
}
.nav-burger span { width: 24px; height: 2px; background: var(--chalk); border-radius: 2px; transition: transform .35s var(--ease-out), opacity .2s; }

@media (max-width: 1080px) {
  .nav-burger { display: flex; }
  .nav-links {
    position: fixed; inset: 0; z-index: -1;
    flex-direction: column; justify-content: center; gap: .3rem;
    background: var(--board-deep);
    opacity: 0; pointer-events: none; transition: opacity .35s var(--ease-out);
  }
  .nav-links a { font-size: 1.35rem; font-family: var(--f-display); padding: .55rem 1.2rem; }
  .nav-open .nav-links { opacity: 1; pointer-events: auto; }
  .nav-open .nav-burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-open .nav-burger span:nth-child(2) { opacity: 0; }
  .nav-open .nav-burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .nav-open .site-nav { background: transparent; box-shadow: none; }
}

/* CTA mobile collant */
.sticky-cta {
  position: fixed; z-index: var(--z-sticky); inset-inline: 1rem; bottom: 1rem;
  display: none; justify-content: center;
}
.sticky-cta a { width: 100%; justify-content: center; box-shadow: 0 8px 24px color-mix(in oklch, var(--board-deep) 45%, transparent); }
@media (max-width: 720px) { .sticky-cta { display: flex; } body { padding-bottom: 4.5rem; } }

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 100svh;
  display: grid; place-items: center; text-align: center;
  background: var(--board-deep); color: var(--chalk);
  overflow: hidden; padding: 7rem 0 5rem;
}
.hero-bg { position: absolute; inset: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; opacity: .38; }
.hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to bottom, color-mix(in oklch, var(--board-deep) 55%, transparent), color-mix(in oklch, var(--board-deep) 30%, transparent) 45%, var(--board-deep) 100%);
}
.hero-content { position: relative; display: grid; justify-items: center; gap: var(--s3); }
.hero-logo { width: clamp(96px, 14vw, 140px); height: auto; border-radius: 50%; box-shadow: 0 0 0 3px color-mix(in oklch, var(--chalk) 55%, transparent), 0 18px 50px color-mix(in oklch, var(--board-deep) 70%, transparent); }
.hero h1 { font-size: clamp(2.6rem, 2rem + 4.5vw, 5rem); font-weight: 700; color: var(--chalk); }
.hero h1 em { font-style: normal; color: var(--rose); }
.hero-tagline { font-size: clamp(1.05rem, 1rem + .5vw, 1.3rem); color: var(--chalk-dim); max-width: 34em; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; justify-content: center; }
.hero-meta { font-size: .9rem; color: var(--chalk-dim); }
.hero-meta strong { color: var(--chalk); font-weight: 500; }

/* ---------- Marquee distinctions ---------- */
.marquee { background: var(--board); border-block: 1px solid var(--board-line); overflow: hidden; padding: 1.1rem 0; }
.marquee-track { display: flex; gap: 3.5rem; width: max-content; animation: marquee 38s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-item { display: flex; align-items: baseline; gap: .55rem; white-space: nowrap; color: var(--chalk-dim); font-size: .95rem; }
.marquee-item strong { font-family: var(--f-display); font-weight: 600; color: var(--chalk); font-size: 1.05rem; }
.marquee-item .note { color: var(--rose); font-weight: 500; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Sections ---------- */
.section { padding-block: var(--s6); }
.section-tight { padding-block: var(--s5); }
.section-board { background: var(--board); color: var(--chalk); }
.section-board h2, .section-board h3 { color: var(--chalk); }
.section-board p { color: var(--chalk-dim); }
.section-deep { background: var(--board-deep); color: var(--chalk); }
.section-deep p { color: var(--chalk-dim); }

.section-head { display: grid; gap: .6rem; margin-bottom: var(--s4); }
.section-head h2 { font-size: clamp(1.9rem, 1.5rem + 2.2vw, 3rem); }
.section-head .lede { font-size: 1.15rem; color: var(--ink-soft); }
.section-board .section-head .lede, .section-deep .section-head .lede { color: var(--chalk-dim); }

/* ---------- Ardoise menu ---------- */
.ardoise {
  background: var(--board-deep);
  border: 1px solid var(--board-line);
  border-radius: var(--r-card);
  padding: clamp(1.6rem, 4vw, 3rem);
  color: var(--chalk);
  box-shadow: inset 0 0 60px color-mix(in oklch, black 25%, transparent);
}
.menu-cols { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: var(--s4); }
.menu-col h3 {
  font-family: var(--f-chalk); font-weight: 700; font-size: 1.9rem; color: var(--bleu);
  margin-bottom: var(--s3); transform: rotate(-1deg);
}
.menu-col ul { list-style: none; padding: 0; display: grid; gap: 1.4rem; }
.menu-col li { color: var(--chalk); font-weight: 300; line-height: 1.5; }
.menu-col li + li { position: relative; padding-top: 1.4rem; }
.menu-col li + li::before {
  content: "—"; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  color: color-mix(in oklch, var(--chalk) 35%, transparent); font-size: .8rem;
}
.menu-prix {
  margin-top: var(--s4); display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center;
}
.prix-tag {
  border: 1.5px solid color-mix(in oklch, var(--chalk) 40%, transparent);
  border-radius: var(--r-card); padding: 1rem 1.6rem; text-align: center; min-width: 175px;
}
.prix-tag .lbl { font-size: .85rem; color: var(--chalk-dim); letter-spacing: .02em; }
.prix-tag .val { font-family: var(--f-display); font-weight: 700; font-size: 2rem; color: var(--rose); }

/* ---------- Menu du soir (déroulé vertical) ---------- */
.soir-flow { display: grid; gap: 2.1rem; justify-items: center; text-align: center; }
.soir-step .etape { font-family: var(--f-chalk); font-size: 1.55rem; color: var(--bleu); display: block; margin-bottom: .25rem; }
.soir-step p { color: var(--chalk); font-size: 1.1rem; }
.soir-prix { font-family: var(--f-display); font-size: 2.4rem; font-weight: 700; color: var(--rose); }

/* ---------- Carte des vins ---------- */
.vins-region { margin-bottom: var(--s4); }
.vins-region > h3 {
  font-family: var(--f-chalk); font-size: 1.8rem; font-weight: 700; color: var(--bleu);
  margin-bottom: 1.1rem; transform: rotate(-.8deg);
}
.vin-row {
  display: grid; grid-template-columns: 1fr auto; gap: .3rem 1.5rem; align-items: baseline;
  padding: .85rem 0; border-bottom: 1px dashed color-mix(in oklch, var(--chalk) 22%, transparent);
}
.vin-row .app { font-weight: 400; color: var(--chalk); }
.vin-row .dom { color: var(--chalk-dim); font-size: .95rem; }
.vin-row .dom em { color: var(--rose); font-style: normal; }
.vin-row .prix { font-family: var(--f-display); font-weight: 600; font-size: 1.15rem; color: var(--chalk); white-space: nowrap; }
.vins-cat { font-size: clamp(1.7rem, 1.4rem + 1.6vw, 2.4rem); margin: var(--s5) 0 var(--s3); }
.vins-cat:first-of-type { margin-top: 0; }

/* ---------- Avis ---------- */
.avis-rail {
  display: grid; grid-auto-flow: column; grid-auto-columns: min(420px, 82vw);
  gap: 1.2rem; overflow-x: auto; scroll-snap-type: x mandatory;
  padding: .5rem .25rem 1.2rem; scrollbar-width: thin;
}
.avis-card {
  scroll-snap-align: start;
  background: var(--white); color: var(--ink);
  border-radius: var(--r-card); padding: 1.7rem;
  border: 1px solid oklch(0.9 0.008 210);
  display: grid; gap: .8rem; align-content: start;
}
.avis-card .stars { color: var(--rose-deep); letter-spacing: .15em; font-size: .95rem; }
.avis-card blockquote { font-size: .98rem; line-height: 1.6; color: var(--ink-soft); }
.avis-card figcaption { font-weight: 500; font-size: .9rem; color: var(--ink); }
.avis-links { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: var(--s3); }

.score-band { display: flex; flex-wrap: wrap; gap: 2.5rem; justify-content: center; margin-bottom: var(--s4); }
.score { text-align: center; }
.score .num { font-family: var(--f-display); font-weight: 700; font-size: clamp(2.4rem, 2rem + 2vw, 3.4rem); color: var(--chalk); }
.score .num sup { font-size: .45em; color: var(--chalk-dim); font-weight: 400; }
.score .src { color: var(--chalk-dim); font-size: .92rem; }
.score .src a { color: var(--bleu); }

/* ---------- Guides (Michelin / G&M) ---------- */
.guide-quote {
  border: 1px solid oklch(0.9 0.008 210); border-radius: var(--r-card);
  padding: clamp(1.5rem, 3.5vw, 2.4rem); background: var(--white);
  display: grid; gap: .9rem; align-content: start;
}
.guide-quote .guide-name { font-family: var(--f-display); font-weight: 700; font-size: 1.25rem; }
.guide-quote .guide-name span { color: var(--rose-deep); }
.guide-quote blockquote { color: var(--ink-soft); font-size: .98rem; }
.guide-quote a { font-size: .9rem; color: var(--bleu-deep); }
.guides-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.3rem; }

/* ---------- Services ---------- */
.services-hero { display: flex; flex-wrap: wrap; gap: .8rem; margin-bottom: var(--s3); }
.badge-big {
  font-weight: 500; padding: .7em 1.3em; border-radius: var(--r-pill);
  background: var(--rose); color: var(--board-deep); font-size: 1.02rem;
}
.badge-big.alt { background: var(--bleu); }
.services-list { display: flex; flex-wrap: wrap; gap: .5rem .6rem; list-style: none; padding: 0; }
.services-list li {
  font-size: .92rem; color: var(--ink-soft);
  border: 1px solid oklch(0.88 0.008 210); border-radius: var(--r-pill); padding: .45em 1em;
}

/* ---------- Duo image/texte ---------- */
.duo { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(420px, 100%), 1fr)); gap: var(--s4); align-items: center; }
.duo img { border-radius: var(--r-card); width: 100%; height: 100%; max-height: 560px; object-fit: cover; }
.duo .duo-txt { display: grid; gap: 1.1rem; justify-items: start; }
.duo h2 { font-size: clamp(1.8rem, 1.4rem + 2vw, 2.7rem); }

/* ---------- Galerie ---------- */
.masonry { columns: 3 300px; column-gap: 1rem; }
.masonry figure { break-inside: avoid; margin: 0 0 1rem; position: relative; border-radius: 10px; overflow: hidden; background: var(--board); }
.masonry img { width: 100%; transition: transform .8s var(--ease-out), filter .8s; cursor: zoom-in; }
.masonry figure:hover img { transform: scale(1.035); }

.music-pill {
  position: fixed; z-index: var(--z-sticky); bottom: 1.2rem; left: 1.2rem;
  display: flex; align-items: center; gap: .7rem;
  background: var(--board-deep); color: var(--chalk);
  border: 1px solid var(--board-line); border-radius: var(--r-pill);
  padding: .55rem 1.1rem .55rem .6rem; box-shadow: 0 10px 30px color-mix(in oklch, black 35%, transparent);
}
.music-pill button {
  width: 40px; height: 40px; border-radius: 50%; border: 0;
  background: var(--rose); color: var(--board-deep);
  display: grid; place-items: center; font-size: 1rem;
}
.music-pill .title { font-size: .85rem; line-height: 1.25; }
.music-pill .title b { display: block; font-weight: 500; }
.eq { display: flex; align-items: flex-end; gap: 2.5px; height: 18px; }
.eq span { width: 3px; border-radius: 2px; background: var(--bleu); height: 30%; transition: height .09s linear; }
@media (max-width: 720px) { .music-pill { bottom: 4.8rem; } }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: var(--z-modal);
  background: color-mix(in oklch, var(--board-deep) 94%, transparent);
  display: grid; place-items: center; padding: 2rem;
  opacity: 0; pointer-events: none; transition: opacity .3s var(--ease-out);
}
.lightbox.open { opacity: 1; pointer-events: auto; }
.lightbox img { max-height: 88svh; max-width: 92vw; border-radius: 10px; }
.lightbox button {
  position: absolute; top: 1rem; right: 1rem; width: 44px; height: 44px;
  border-radius: 50%; border: 1px solid var(--board-line);
  background: var(--board); color: var(--chalk); font-size: 1.2rem;
}

/* ---------- Équipe ---------- */
.audio-hint {
  display: inline-flex; align-items: center; gap: .6rem;
  background: color-mix(in oklch, var(--bleu) 22%, transparent);
  border: 1px solid color-mix(in oklch, var(--bleu) 45%, transparent);
  color: var(--ink); border-radius: var(--r-pill); padding: .5rem 1.1rem; font-size: .92rem;
}
.section-board .audio-hint, .section-deep .audio-hint { color: var(--chalk); }

/* ---------- Sommelier futé ---------- */
.sommelier {
  background: var(--board-deep); border: 1px solid var(--board-line); border-radius: var(--r-card);
  padding: clamp(1.5rem, 4vw, 2.6rem); display: grid; gap: 1.2rem;
}
.sommelier form { display: grid; gap: .9rem; }
.sommelier label { font-size: .9rem; color: var(--chalk-dim); display: grid; gap: .35rem; }
.sommelier select, .sommelier input[type="text"] {
  background: var(--board); color: var(--chalk);
  border: 1px solid var(--board-line); border-radius: 10px;
  padding: .8rem 1rem; font: inherit; width: 100%;
}
.sommelier select:focus, .sommelier input:focus { outline: 2px solid var(--rose); outline-offset: 1px; }
.somm-result {
  border-top: 1px dashed color-mix(in oklch, var(--chalk) 25%, transparent);
  padding-top: 1.2rem; display: none; gap: .7rem;
}
.somm-result.show { display: grid; }
.somm-result .plat b, .somm-result .vin b { color: var(--rose); font-weight: 500; }
.somm-result p { color: var(--chalk); }

/* ---------- Afterwork ---------- */
.afterwork { position: relative; overflow: hidden; }
.afterwork .duo img { max-height: 640px; }
.tarifs { list-style: none; padding: 0; display: grid; gap: .4rem; width: 100%; }
.tarifs li { display: flex; justify-content: space-between; gap: 1.5rem; border-bottom: 1px dashed color-mix(in oklch, var(--chalk) 25%, transparent); padding: .5rem 0; color: var(--chalk); }
.tarifs li span:last-child { font-family: var(--f-display); font-weight: 600; }

/* ---------- Récré / jeu ---------- */
.game-shell { display: grid; gap: 1.2rem; justify-items: center; }
#game-canvas {
  width: min(560px, 100%); aspect-ratio: 4 / 5; border-radius: var(--r-card);
  background: var(--board-deep); border: 1px solid var(--board-line); touch-action: none;
}
.game-hud { display: flex; gap: 2rem; font-family: var(--f-display); font-size: 1.2rem; color: var(--chalk); }
.game-reward {
  display: none; text-align: center; gap: .8rem;
  background: color-mix(in oklch, var(--rose) 18%, transparent);
  border: 1.5px dashed var(--rose); border-radius: var(--r-card); padding: 1.5rem 2rem;
}
.game-reward.show { display: grid; }
.game-reward .code { font-family: var(--f-display); font-weight: 700; font-size: 1.8rem; color: var(--rose); letter-spacing: .06em; }

/* ---------- Réserver ---------- */
.resa-frame { border: 0; width: 100%; height: min(78svh, 760px); border-radius: var(--r-card); background: var(--white); }
.resa-steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.2rem; margin-block: var(--s4); counter-reset: step; }
.resa-step { display: grid; gap: .4rem; }
.resa-step::before {
  counter-increment: step; content: counter(step);
  font-family: var(--f-chalk); font-size: 2.2rem; font-weight: 700; color: var(--rose);
}
.resa-step h3 { font-size: 1.1rem; font-family: var(--f-body); font-weight: 500; }
.resa-step p { font-size: .95rem; color: var(--chalk-dim); }

/* ---------- Formulaire contact simple ---------- */
.info-lines { display: grid; gap: .9rem; font-size: 1.08rem; }
.info-lines a { color: var(--bleu-deep); text-decoration-thickness: 1px; }
.section-board .info-lines a, .section-deep .info-lines a { color: var(--bleu); }
.map-embed { border: 0; width: 100%; height: 420px; border-radius: var(--r-card); filter: grayscale(.2); }

/* ---------- Footer ---------- */
.site-footer { background: var(--board-deep); color: var(--chalk-dim); padding: var(--s5) 0 var(--s3); border-top: 1px solid var(--board-line); }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: var(--s4); margin-bottom: var(--s4); }
.footer-grid h4 { color: var(--chalk); font-size: 1.05rem; margin-bottom: .8rem; }
.footer-grid ul { list-style: none; padding: 0; display: grid; gap: .45rem; font-size: .95rem; }
.footer-grid a { color: var(--chalk-dim); text-decoration: none; }
.footer-grid a:hover { color: var(--rose); }
.footer-brand { display: grid; gap: .8rem; justify-items: start; }
.footer-brand img.logo { width: 74px; border-radius: 50%; }
.footer-legal { border-top: 1px solid var(--board-line); padding-top: var(--s3); display: flex; flex-wrap: wrap; gap: 1rem 2rem; align-items: center; justify-content: space-between; font-size: .85rem; }
.footer-legal img { width: 64px; }
.socials { display: flex; gap: .6rem; }
.socials a {
  width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center;
  border: 1px solid var(--board-line); color: var(--chalk); text-decoration: none; transition: background .2s, transform .3s var(--ease-out);
}
.socials a:hover { background: var(--rose); color: var(--board-deep); transform: translateY(-2px); }
.socials svg { width: 18px; height: 18px; fill: currentColor; }

/* ---------- Page hero (sous-pages) ---------- */
.page-hero {
  background: var(--board-deep); color: var(--chalk);
  padding: 9.5rem 0 4rem; text-align: center;
}
.page-hero h1 { font-size: clamp(2.1rem, 1.6rem + 3vw, 3.6rem); color: var(--chalk); }
.page-hero .lede { color: var(--chalk-dim); margin-top: .8rem; font-size: 1.1rem; margin-inline: auto; }

/* ---------- Reveal (JS actif seulement) ---------- */
html.js .reveal { opacity: 0; transform: translateY(22px); transition: opacity .8s var(--ease-out), transform .8s var(--ease-out); }
html.js .reveal.in { opacity: 1; transform: none; }
html.js .reveal-d1 { transition-delay: .08s; } html.js .reveal-d2 { transition-delay: .16s; } html.js .reveal-d3 { transition-delay: .24s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  html.js .reveal { opacity: 1; transform: none; transition: none; }
  .marquee-track { animation: none; flex-wrap: wrap; width: auto; justify-content: center; }
  * { transition-duration: .01ms !important; animation-duration: .01ms !important; }
}

@media (max-width: 720px) {
  .section { padding-block: var(--s5); }
  .hero { padding-top: 6rem; }
}
