/* ============================================================
   LE MARRONNIER LOUNGE — Refonte 2026
   Charte : anthracite chaud + or champagne · Cormorant + Manrope
   ============================================================ */

:root {
  /* ---- Fonds anthracite chaud (un cran plus clair que le noir) ---- */
  --bg:         oklch(0.185 0.006 62);
  --surface-1:  oklch(0.215 0.007 60);
  --surface-2:  oklch(0.255 0.008 58);
  --surface-3:  oklch(0.305 0.009 56);
  --surface-4:  oklch(0.355 0.010 54);

  /* ---- Or champagne, doux à l'œil ---- */
  --gold:        oklch(0.835 0.082 84);
  --gold-bright: oklch(0.905 0.072 88);
  --gold-deep:   oklch(0.700 0.084 74);
  --gold-ink:    oklch(0.205 0.022 64);   /* texte sur fond or */

  /* ---- Texte ---- */
  --cream:  oklch(0.945 0.008 82);
  --muted:  oklch(0.730 0.011 76);
  --faint:  oklch(0.560 0.010 70);
  --gris:   var(--muted);                 /* alias hérité (worldcup.js) */

  /* ---- Hairlines & voiles ---- */
  --line:        oklch(0.86 0.05 82 / 0.16);
  --line-soft:   oklch(0.90 0.03 82 / 0.08);
  --line-strong: oklch(0.86 0.06 82 / 0.34);
  --veil:        oklch(0.18 0.006 62 / 0.72);

  /* ---- Accents fonctionnels ---- */
  --violet: oklch(0.745 0.110 312);       /* identité Midnight */
  --live:   oklch(0.640 0.165 26);
  --wa:     oklch(0.735 0.150 152);
  --wa-ink: oklch(0.250 0.060 158);

  /* ---- Dégradé or très subtil ---- */
  --gold-grad: linear-gradient(105deg, var(--gold-deep) 0%, var(--gold-bright) 48%, var(--gold) 78%, var(--gold-deep) 100%);
  --gold-soft: linear-gradient(180deg, oklch(0.84 0.08 84 / 0.10), oklch(0.84 0.08 84 / 0));

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Manrope', system-ui, -apple-system, sans-serif;

  --radius:    18px;
  --radius-sm: 12px;
  --shadow:    0 24px 60px -18px oklch(0 0 0 / 0.62);
  --shadow-sm: 0 12px 32px -14px oklch(0 0 0 / 0.55);
  --ease:      cubic-bezier(0.22, 0.61, 0.30, 1);

  --maxw: 1240px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
[hidden] { display: none !important; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--bg);
  color: var(--cream);
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.7;
  letter-spacing: 0.002em;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; color: inherit; }
::selection { background: var(--gold); color: var(--gold-ink); }

.container { width: min(var(--maxw), 90%); margin-inline: auto; }
.center { text-align: center; }

/* Accent typographique or (utilisé aussi par worldcup.js) */
.gold {
  color: var(--gold);
  font-style: italic;
}
.flag-img { display: inline-block; width: 24px; height: auto; border-radius: 2px; vertical-align: -3px; box-shadow: 0 1px 3px oklch(0 0 0 / 0.5); }
#wc-pick { scroll-margin-top: 110px; }
.flag-ph {
  display: inline-block; width: 22px; height: 15px; border-radius: 2px; vertical-align: -2px;
  border: 1px solid var(--line-strong);
  background: repeating-linear-gradient(45deg, oklch(0.84 0.08 84 / 0.18) 0 4px, transparent 4px 8px);
}

/* ============================================================
   BOUTONS
   ============================================================ */
.btn {
  position: relative; isolation: isolate; overflow: hidden;
  display: inline-flex; align-items: center; justify-content: center; gap: 0.65rem;
  padding: 0.95rem 1.9rem;
  font-family: var(--font-body); font-size: 0.74rem; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  border-radius: 999px; border: 1px solid transparent;
  white-space: nowrap;
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease),
              color 0.4s var(--ease), border-color 0.4s var(--ease), background 0.4s var(--ease);
}
.btn svg { width: 17px; height: 17px; flex: none; }
.btn-lg { padding: 1.1rem 2.4rem; font-size: 0.8rem; }
.btn-sm { padding: 0.68rem 1.35rem; font-size: 0.68rem; letter-spacing: 0.16em; }
.btn-block { width: 100%; }

/* Primaire — or champagne */
.btn-gold {
  background: var(--gold-grad); background-size: 220% auto; background-position: 0% center;
  color: var(--gold-ink);
  box-shadow: 0 10px 30px -10px oklch(0.78 0.08 80 / 0.55);
}
.btn-gold:hover { background-position: 100% center; transform: translateY(-3px); box-shadow: 0 18px 40px -12px oklch(0.78 0.08 80 / 0.7); }
.btn-gold:active { transform: translateY(-1px); }

/* Contour — hairline or */
.btn-outline {
  border-color: var(--line-strong); color: var(--gold-bright);
  background: transparent;
}
.btn-outline::before {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background: oklch(0.84 0.08 84 / 0.10);
  transform: scaleX(0); transform-origin: left; transition: transform 0.45s var(--ease);
}
.btn-outline:hover { color: var(--cream); border-color: var(--gold); transform: translateY(-3px); }
.btn-outline:hover::before { transform: scaleX(1); }

/* Réserver (nav & hero) — verre qui se remplit d'or */
.btn-reserve {
  border-color: var(--line-strong); color: var(--cream);
  background: oklch(0.20 0.006 62 / 0.4); backdrop-filter: blur(6px);
}
.btn-reserve::before {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background: var(--gold-grad); opacity: 0; transition: opacity 0.4s var(--ease);
}
.btn-reserve:hover { color: var(--gold-ink); border-color: transparent; transform: translateY(-3px); box-shadow: 0 14px 34px -12px oklch(0.78 0.08 80 / 0.6); }
.btn-reserve:hover::before { opacity: 1; }
.btn-nav { padding: 0.62rem 1.3rem; font-size: 0.64rem; }
.cup-dot { display: inline-block; width: 6px; height: 6px; border-radius: 50%; background: var(--live); animation: pulse 1.6s infinite; flex: none; }

/* WhatsApp */
.btn-whatsapp { background: var(--wa); color: var(--wa-ink); box-shadow: 0 10px 30px -12px oklch(0.73 0.15 152 / 0.6); }
.btn-whatsapp:hover { transform: translateY(-3px); box-shadow: 0 18px 40px -14px oklch(0.73 0.15 152 / 0.75); }

/* Lien flèche */
.link-arrow {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--gold-bright);
}
.link-arrow span { transition: transform 0.4s var(--ease); }
.link-arrow:hover span { transform: translateX(6px); }

/* ============================================================
   HEADER / NAV
   ============================================================ */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background 0.5s var(--ease), border-color 0.5s var(--ease), backdrop-filter 0.5s var(--ease);
  border-bottom: 1px solid transparent;
}
.header.is-scrolled {
  background: oklch(0.185 0.006 62 / 0.82);
  backdrop-filter: blur(16px) saturate(1.1);
  border-bottom-color: var(--line);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 84px; gap: 1rem; transition: height 0.5s var(--ease); }
.header.is-scrolled .header-inner { height: 70px; }
.logo { display: flex; align-items: center; }
.logo-img { height: 52px; width: auto; display: block; transition: height 0.5s var(--ease); filter: drop-shadow(0 2px 8px oklch(0 0 0 / 0.45)); }
.header.is-scrolled .logo-img { height: 42px; }
.logo-img--footer { height: 64px; }

.nav { display: none; align-items: center; gap: 2rem; }
.nav-link {
  position: relative; font-size: 0.74rem; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--muted); transition: color 0.3s var(--ease);
}
.nav-link::after {
  content: ''; position: absolute; left: 0; bottom: -6px; height: 1px; width: 0;
  background: var(--gold); transition: width 0.4s var(--ease);
}
.nav-link:hover { color: var(--cream); }
.nav-link:hover::after { width: 100%; }
.nav-link--cup { color: var(--gold-bright); }
.nav-link--cup::before {
  content: ''; display: inline-block; width: 6px; height: 6px; border-radius: 50%;
  background: var(--live); margin-right: 0.5rem; vertical-align: middle;
  animation: pulse 1.6s infinite;
}

.header-phone { display: none; align-items: center; gap: 0.5rem; color: var(--gold-bright); font-weight: 600; font-size: 0.85rem; letter-spacing: 0.02em; }
.header-phone svg { width: 16px; height: 16px; }

.burger { display: flex; flex-direction: column; gap: 5px; background: none; border: 0; padding: 8px; }
.burger span { width: 24px; height: 1.5px; background: var(--gold-bright); transition: 0.3s var(--ease); border-radius: 2px; }

@media (min-width: 1040px) {
  .nav { display: flex; }
  .header-phone { display: inline-flex; }
  .burger { display: none; }
}
.nav.open {
  display: flex; position: fixed; inset: 84px 0 auto 0;
  flex-direction: column; align-items: center; gap: 1.6rem;
  background: oklch(0.185 0.006 62 / 0.98); backdrop-filter: blur(18px);
  padding: 2.6rem 0 3rem; border-bottom: 1px solid var(--line);
}

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; min-height: 100svh; display: flex; align-items: center; isolation: isolate; overflow: hidden; }
.hero-bg {
  position: absolute; inset: 0; z-index: -2;
  width: 100%; height: 100%; object-fit: cover; object-position: center 32%;
}
.hero-overlay {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(180deg, oklch(0.15 0.006 62 / 0.55) 0%, oklch(0.16 0.006 62 / 0.35) 30%, oklch(0.17 0.006 62 / 0.55) 62%, var(--bg) 100%),
    radial-gradient(120% 80% at 50% 18%, transparent 40%, oklch(0.14 0.006 62 / 0.5) 100%);
}
.hero-content { width: min(var(--maxw), 90%); margin-inline: auto; text-align: center; padding: 8rem 0 5rem; display: flex; flex-direction: column; align-items: center; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 0.85rem;
  font-size: 0.72rem; letter-spacing: 0.32em; text-transform: uppercase; color: var(--gold-bright);
  margin-bottom: 1.8rem;
}
.hero-eyebrow::before, .hero-eyebrow::after { content: ''; width: 28px; height: 1px; background: var(--line-strong); }
.hero-title {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(2.7rem, 6.6vw, 5.2rem); line-height: 1.04; letter-spacing: -0.01em;
  margin-bottom: 1.5rem; max-width: 22ch;
}
.hero-title span { color: var(--gold); font-style: italic; font-weight: 400; }
.hero-lead {
  color: var(--cream); font-size: clamp(0.78rem, 1.3vw, 0.92rem); font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  max-width: none; white-space: nowrap; margin-bottom: 2.6rem; opacity: 0.92;
}
@media (max-width: 560px) { .hero-lead { white-space: normal; letter-spacing: 0.1em; } }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; margin-bottom: 3rem; }

/* Carte « prochain match » */
.hero-match {
  width: min(560px, 100%);
  background: oklch(0.20 0.006 62 / 0.55); backdrop-filter: blur(14px);
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.6rem 1.7rem 1.7rem; box-shadow: var(--shadow-sm);
}
.hero-match:empty { display: none; }
.hero-match-label { font-size: 0.66rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--gold-bright); margin-bottom: 0.8rem; }
.hero-match-teams { font-family: var(--font-display); font-size: clamp(1.4rem, 3vw, 1.85rem); font-weight: 500; line-height: 1.2; }
.hero-match .wc-countdown { margin-top: 1.1rem; }
.hero-match-actions { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 1.1rem; margin-top: 1.4rem; }
.hero-match-link { font-size: 0.7rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); border-bottom: 1px solid var(--line-strong); padding-bottom: 2px; transition: color 0.3s var(--ease); }
.hero-match-link:hover { color: var(--gold-bright); }

.hero-scroll { position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%); z-index: 2; }
.hero-scroll span { display: block; width: 22px; height: 36px; border: 1.5px solid var(--line-strong); border-radius: 12px; position: relative; }
.hero-scroll span::after {
  content: ''; position: absolute; top: 6px; left: 50%; width: 3px; height: 7px; margin-left: -1.5px;
  background: var(--gold-bright); border-radius: 2px; animation: scrollDot 1.8s infinite;
}
@keyframes scrollDot { 0% { opacity: 0; transform: translateY(0); } 30% { opacity: 1; } 100% { opacity: 0; transform: translateY(12px); } }
@keyframes pulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.3; transform: scale(0.7); } }

/* ============================================================
   BANDEAU DÉFILANT (discret)
   ============================================================ */
.wc-ticker {
  background: var(--surface-1); color: var(--gold-bright); overflow: hidden;
  padding: 0.7rem 0; border-block: 1px solid var(--line);
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.26em;
}
.wc-ticker-track { display: flex; white-space: nowrap; animation: ticker 46s linear infinite; }
.wc-ticker-track span { padding-right: 1rem; }
@keyframes ticker { to { transform: translateX(-50%); } }

/* ============================================================
   SECTIONS GÉNÉRIQUES
   ============================================================ */
.section { padding: clamp(5rem, 11vw, 9rem) 0; position: relative; scroll-margin-top: 88px; }
section[id], [id].section { scroll-margin-top: 88px; }
.section-head { max-width: 720px; margin: 0 auto clamp(3rem, 6vw, 4.5rem); text-align: center; }
.section-head--left { text-align: left; margin-inline: 0; }
.section-eyebrow {
  display: inline-flex; align-items: center; gap: 0.7rem;
  font-size: 0.7rem; letter-spacing: 0.28em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.1rem;
}
.section-eyebrow::before { content: ''; width: 22px; height: 1px; background: var(--gold-deep); }
.section-head--center .section-eyebrow::after { content: ''; width: 22px; height: 1px; background: var(--gold-deep); }
.section-title { font-family: var(--font-display); font-weight: 500; font-size: clamp(2.3rem, 5.2vw, 3.9rem); line-height: 1.08; letter-spacing: -0.01em; text-wrap: balance; }
.section-sub { color: var(--muted); margin-top: 1.3rem; font-size: 1.02rem; text-wrap: pretty; }
.section-sub strong { color: var(--cream); font-weight: 600; }

/* ============================================================
   L'UNIVERS
   ============================================================ */
.univers { background: var(--bg); }
.univers-grid { display: grid; gap: 1.4rem; grid-template-columns: 1fr; }
@media (min-width: 680px) { .univers-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .univers-grid { grid-template-columns: repeat(3, 1fr); } }

.uni-card {
  position: relative; display: flex; flex-direction: column;
  background: var(--surface-1); border: 1px solid var(--line-soft);
  border-radius: var(--radius); overflow: hidden;
  transition: transform 0.55s var(--ease), border-color 0.55s var(--ease), box-shadow 0.55s var(--ease);
}
.uni-card:hover { transform: translateY(-7px); border-color: var(--line-strong); box-shadow: var(--shadow); }
.uni-img { aspect-ratio: 16 / 11; background-size: cover; background-position: center; transition: transform 0.7s var(--ease); }
.uni-card:hover .uni-img { transform: scale(1.05); }
.uni-card--wide { grid-column: span 1; }
@media (min-width: 1024px) { .uni-card--wide { grid-column: span 1; } }
.uni-body { flex: 1; padding: 1.6rem 1.7rem 1.8rem; }
.uni-kicker { font-size: 0.64rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.6rem; }
.uni-body h3 { font-family: var(--font-display); font-size: 1.6rem; font-weight: 600; line-height: 1.1; margin-bottom: 0.6rem; }
.uni-body p { color: var(--muted); font-size: 0.92rem; line-height: 1.65; }
.uni-link { display: inline-flex; align-items: center; gap: 0.4rem; margin-top: 1rem; color: var(--gold-bright); font-size: 0.72rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; }
.uni-link span { transition: transform 0.4s var(--ease); }
.uni-link:hover span { transform: translateX(5px); }

/* ============================================================
   OFFRES SIGNATURE
   ============================================================ */
.offres { background: var(--surface-1); border-block: 1px solid var(--line-soft); }
.offres-grid { display: grid; gap: 1.5rem; grid-template-columns: 1fr; }
@media (min-width: 920px) { .offres-grid { grid-template-columns: repeat(3, 1fr); } }
.offre-card {
  display: flex; flex-direction: column;
  background: var(--surface-2); border: 1px solid var(--line-soft);
  border-radius: var(--radius); overflow: hidden;
  transition: transform 0.55s var(--ease), border-color 0.55s var(--ease), box-shadow 0.55s var(--ease);
}
.offre-card:hover { transform: translateY(-7px); border-color: var(--line-strong); box-shadow: var(--shadow); }
.offre-card--star { border-color: var(--line-strong); }
.offre-card--star::before {
  content: ''; position: absolute; inset: -1px; border-radius: var(--radius); padding: 1px; pointer-events: none;
  background: linear-gradient(160deg, var(--gold) 0%, transparent 38%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); -webkit-mask-composite: xor; mask-composite: exclude;
}
.offre-card--star { position: relative; }
.offre-img { position: relative; aspect-ratio: 16 / 10; background-size: cover; background-position: center; }
.offre-img::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, oklch(0.20 0.008 58 / 0.85)); }
.offre-badge {
  position: absolute; top: 16px; left: 16px; z-index: 1;
  background: oklch(0.20 0.006 62 / 0.7); backdrop-filter: blur(6px);
  color: var(--gold-bright); border: 1px solid var(--line-strong);
  font-size: 0.6rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase;
  padding: 0.42rem 0.85rem; border-radius: 999px;
}
.offre-body { display: flex; flex-direction: column; flex: 1; padding: 1.7rem 1.7rem 1.85rem; }
.offre-when { font-size: 0.64rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.5rem; }
.offre-body h3 { font-family: var(--font-display); font-size: 1.7rem; font-weight: 600; margin-bottom: 0.75rem; line-height: 1.1; }
.offre-body p { color: var(--muted); font-size: 0.9rem; flex: 1; line-height: 1.65; }
.offre-body strong { color: var(--gold-bright); font-weight: 600; }
.offre-cta { margin-top: 1.5rem; align-self: flex-start; }

/* ============================================================
   FAN ZONE COUPE DU MONDE (intégrée, sobre)
   ============================================================ */
.wc { background: var(--bg); overflow: hidden; position: relative; }
.wc-glow {
  position: absolute; top: -10%; left: 50%; transform: translateX(-50%);
  width: 760px; height: 360px; background: oklch(0.80 0.08 84 / 0.10); filter: blur(150px); pointer-events: none; z-index: 0;
}
.wc .container { position: relative; z-index: 1; }
.wc-grid { display: grid; gap: 1.6rem; }
@media (min-width: 1000px) { .wc-grid { grid-template-columns: 1.2fr 1fr; align-items: start; } }

.wc-card { background: var(--surface-1); border: 1px solid var(--line-soft); border-radius: var(--radius); padding: 2rem; position: relative; }
.wc-card-head { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-bottom: 1.5rem; }
.wc-card h3 { font-family: var(--font-display); font-size: 1.65rem; font-weight: 600; line-height: 1.1; }
.wc-live-dot { display: inline-flex; align-items: center; gap: 0.45rem; font-size: 0.66rem; font-weight: 700; letter-spacing: 0.16em; color: var(--live); }
.wc-live-dot i { width: 8px; height: 8px; border-radius: 50%; background: var(--live); animation: pulse 1.2s infinite; }

.wc-match-list { display: flex; flex-direction: column; gap: 0.6rem; }
.wc-loading, .wc-empty { color: var(--muted); font-size: 0.92rem; padding: 0.8rem 0; }
.wc-match {
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 0.7rem;
  background: var(--surface-2); border: 1px solid var(--line-soft);
  border-radius: var(--radius-sm); padding: 0.85rem 1.05rem;
  transition: border-color 0.3s var(--ease), transform 0.3s var(--ease);
}
.wc-match:hover { border-color: var(--line-strong); transform: translateX(2px); }
.wc-match.is-live { border-color: oklch(0.64 0.16 26 / 0.5); }
.wc-team { display: flex; align-items: center; gap: 0.55rem; font-size: 0.9rem; font-weight: 500; min-width: 0; }
.wc-team .flag { flex: none; display: inline-flex; }
.wc-team span { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.wc-team--away { justify-content: flex-end; text-align: right; }
.wc-mid { text-align: center; min-width: 76px; }
.wc-mid .score { font-size: 1.15rem; font-weight: 700; color: var(--gold-bright); font-variant-numeric: tabular-nums; }
.wc-mid .time { font-size: 0.88rem; font-weight: 700; color: var(--gold-bright); font-variant-numeric: tabular-nums; }
.wc-mid .status { display: block; font-size: 0.58rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--faint); margin-top: 0.15rem; }
.wc-mid .status.live { color: var(--live); font-weight: 700; }
.wc-match-meta { grid-column: 1 / -1; font-size: 0.64rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--faint); text-align: center; padding-top: 0.2rem; }
.wc-match-list--compact .wc-match { padding: 0.6rem 0.9rem; background: transparent; }
.wc-match-list--compact .wc-team { font-size: 0.82rem; }
.wc-upcoming { margin-top: 1.7rem; }
.wc-upcoming h4 { font-size: 0.68rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.7rem; }
.wc-note { margin-top: 1.4rem; font-size: 0.74rem; color: var(--faint); font-style: italic; }

.wc-countdown { display: flex; justify-content: center; gap: 1.1rem; }
.wc-countdown div { min-width: 58px; text-align: center; }
.wc-countdown b { display: block; font-family: var(--font-display); font-size: 1.9rem; font-weight: 600; color: var(--gold-bright); font-variant-numeric: tabular-nums; line-height: 1; }
.wc-countdown small { font-size: 0.58rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); }

/* Concours */
.wc-card--contest { border-color: var(--line); background: linear-gradient(168deg, var(--surface-2), var(--surface-1) 60%); }
.wc-contest-ribbon {
  position: absolute; top: -12px; left: 26px;
  background: var(--gold-grad); color: var(--gold-ink);
  font-size: 0.62rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase;
  padding: 0.4rem 1rem; border-radius: 999px; box-shadow: var(--shadow-sm);
}
.wc-contest-intro { color: var(--muted); font-size: 0.92rem; margin: 0.7rem 0 1.3rem; }
.wc-how { list-style: none; display: flex; flex-direction: column; gap: 0.85rem; margin-bottom: 1.6rem; counter-reset: how; }
.wc-how li { font-size: 0.85rem; color: var(--muted); padding-left: 2.3rem; position: relative; counter-increment: how; line-height: 1.55; }
.wc-how li::before {
  content: counter(how); position: absolute; left: 0; top: 0;
  width: 24px; height: 24px; display: grid; place-items: center;
  border: 1px solid var(--line-strong); border-radius: 50%; color: var(--gold-bright); font-size: 0.7rem; font-weight: 700;
}
.wc-how strong { color: var(--cream); font-weight: 600; }
.wc-lots-title { font-size: 0.66rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.85rem; }
.wc-prizes { list-style: none; display: flex; flex-direction: column; gap: 0.65rem; margin-bottom: 1.5rem; }
.wc-prizes li { font-size: 0.86rem; color: var(--muted); padding-left: 1.4rem; position: relative; }
.wc-prizes li::before { content: ''; position: absolute; left: 0; top: 0.55em; width: 6px; height: 6px; border-radius: 50%; background: var(--gold); }
.wc-prizes strong { color: var(--gold-bright); font-weight: 600; }

.wc-pick { background: var(--surface-2); border: 1px solid var(--line-soft); border-radius: var(--radius-sm); padding: 1.5rem; }
.wc-pick-step { display: flex; align-items: center; gap: 0.6rem; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--cream); margin: 1.5rem 0 0.85rem; }
.wc-pick-step:first-child { margin-top: 0; }
.wc-step-num { width: 22px; height: 22px; flex: none; display: grid; place-items: center; background: var(--gold-grad); color: var(--gold-ink); border-radius: 50%; font-size: 0.68rem; font-weight: 700; }
.follow-row { display: grid; gap: 0.5rem; grid-template-columns: 1fr; }
@media (min-width: 480px) { .follow-row { grid-template-columns: repeat(3, 1fr); } }
.follow-btn { position: relative; padding: 0.75rem 0.6rem 0.7rem; border-radius: var(--radius-sm); background: var(--surface-3); border: 1px solid var(--line-soft); color: var(--cream); text-align: center; transition: border-color 0.3s var(--ease), background 0.3s var(--ease), transform 0.2s var(--ease); }
.follow-btn:hover { border-color: var(--line-strong); transform: translateY(-2px); }
.follow-name { display: block; font-size: 0.74rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; }
.follow-handle { display: block; font-size: 0.6rem; color: var(--faint); margin-top: 0.2rem; word-break: break-all; }
.follow-btn.done { border-color: var(--gold); background: oklch(0.84 0.08 84 / 0.12); }
.follow-btn.done::after { content: ''; position: absolute; top: -7px; right: -7px; width: 15px; height: 15px; border-radius: 50%; background: var(--gold-grad); box-shadow: 0 0 0 3px var(--surface-1); }
.follow-btn.done .follow-name { color: var(--gold-bright); }
.wc-follow-hint { font-size: 0.72rem; color: var(--faint); font-style: italic; margin: 0.6rem 0 0; }
.wc-follow-hint.warn { color: oklch(0.78 0.12 55); font-weight: 600; font-style: normal; }

.wc-pick-match { font-family: var(--font-display); font-size: 1.3rem; font-weight: 600; margin-bottom: 1rem; line-height: 1.2; }
#wc-pick-inline { color: var(--gold-bright); }
.wc-pick-scores { display: flex; align-items: center; justify-content: center; gap: 1rem; margin-bottom: 1.1rem; }
.wc-pick-sep { font-size: 1.6rem; font-weight: 700; color: var(--gold-bright); }
.wc-score-stepper { display: flex; align-items: center; gap: 0.7rem; background: var(--surface-3); border: 1px solid var(--line-soft); border-radius: 999px; padding: 0.35rem 0.6rem; }
.wc-score-stepper button { width: 34px; height: 34px; border-radius: 50%; border: 0; background: oklch(0.84 0.08 84 / 0.14); color: var(--gold-bright); font-size: 1.15rem; font-weight: 700; transition: background 0.25s var(--ease), transform 0.15s var(--ease); }
.wc-score-stepper button:hover { background: oklch(0.84 0.08 84 / 0.3); }
.wc-score-stepper button:active { transform: scale(0.9); }
.wc-score-stepper span { font-family: var(--font-display); font-size: 1.6rem; font-weight: 600; min-width: 26px; text-align: center; font-variant-numeric: tabular-nums; }
.input-pair { display: grid; gap: 0.8rem; grid-template-columns: 1fr; margin-bottom: 1rem; }
@media (min-width: 520px) { .wc-pick .input-pair { grid-template-columns: 1fr 1fr; } }
.wc-pick input, #wc-pick-name { width: 100%; padding: 0.85rem 1rem; background: var(--surface-3); border: 1px solid var(--line-soft); border-radius: var(--radius-sm); color: var(--cream); font-family: inherit; font-size: 0.9rem; transition: border-color 0.3s var(--ease); }
.wc-pick input:focus, #wc-pick-name:focus { outline: none; border-color: var(--gold); }
.wc-pick input::placeholder { color: var(--faint); }
.wc-ticket { margin-top: 1.2rem; padding: 1.2rem; text-align: center; border: 1px dashed var(--line-strong); border-radius: var(--radius-sm); background: oklch(0.84 0.08 84 / 0.07); }
.wc-ticket-title { font-size: 0.64rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); }
.wc-ticket-code { font-family: var(--font-display); font-size: 2rem; font-weight: 700; color: var(--gold-bright); letter-spacing: 0.08em; margin: 0.3rem 0; }
.wc-ticket-sub { font-size: 0.82rem; color: var(--cream); }
.wc-ticket-note { font-size: 0.68rem; color: var(--faint); font-style: italic; margin-top: 0.4rem; }
.wc-rules { margin-top: 1.3rem; font-size: 0.66rem; color: var(--faint); line-height: 1.6; }

/* Midnight */
.wc-midnight {
  margin-top: 2.4rem; position: relative; overflow: hidden;
  border: 1px solid var(--line-soft); border-radius: var(--radius);
  background: linear-gradient(120deg, oklch(0.22 0.03 308), oklch(0.20 0.015 300) 55%, var(--surface-1));
  padding: 2.4rem;
}
.wc-midnight::before { content: ''; position: absolute; top: -40%; right: -10%; width: 420px; height: 420px; background: oklch(0.5 0.14 312 / 0.4); filter: blur(130px); pointer-events: none; }
.wc-midnight-head { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1.6rem; position: relative; }
.wc-midnight .section-eyebrow { color: var(--violet); }
.wc-midnight .section-eyebrow::before { background: var(--violet); }
.wc-midnight h3 { font-family: var(--font-display); font-size: 2rem; font-weight: 600; margin: 0.5rem 0 0.7rem; line-height: 1.05; }
.wc-midnight h3 .gold { color: var(--violet); }
.wc-midnight p { color: var(--muted); max-width: 580px; font-size: 0.95rem; }
.wc-midnight .btn-outline { border-color: oklch(0.74 0.11 312 / 0.5); color: oklch(0.85 0.08 312); }
.wc-midnight .btn-outline::before { background: oklch(0.74 0.11 312 / 0.14); }
.wc-midnight .btn-outline:hover { border-color: var(--violet); color: var(--cream); }

.midnight-form { margin-top: 2.2rem; padding-top: 2.2rem; border-top: 1px solid var(--line-soft); position: relative; }
.midnight-grid { display: grid; gap: 1.8rem; grid-template-columns: 1fr; }
@media (min-width: 800px) { .midnight-grid { grid-template-columns: 1fr 1fr; } .midnight-name { grid-column: 1 / -1; } }
.midnight-grid .resa-step { padding: 0; border: 0; }
.midnight-form .resa-actions { margin-top: 1.8rem; }
.midnight-form .resa-foot { margin-top: 1.2rem; }
.midnight-form .btn-gold { background: linear-gradient(105deg, oklch(0.55 0.12 308), oklch(0.78 0.1 312) 55%, oklch(0.6 0.13 308)); color: var(--cream); box-shadow: 0 12px 30px -12px oklch(0.5 0.14 312 / 0.7); }

/* ============================================================
   LA CARTE (cartes catégories — accueil)
   ============================================================ */
.menu { background: var(--surface-1); border-block: 1px solid var(--line-soft); }
.carte-grid { display: grid; gap: 1.3rem; grid-template-columns: 1fr; }
@media (min-width: 640px) { .carte-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1040px) { .carte-grid { grid-template-columns: repeat(4, 1fr); } }
.carte-card {
  position: relative; display: flex; align-items: flex-end; min-height: 380px;
  border-radius: var(--radius); overflow: hidden; background-size: cover; background-position: center;
  border: 1px solid var(--line-soft);
  transition: transform 0.55s var(--ease), border-color 0.55s var(--ease), box-shadow 0.55s var(--ease);
}
.carte-card::before { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, oklch(0.18 0.006 62 / 0.1) 30%, oklch(0.17 0.006 62 / 0.92) 88%); transition: background 0.5s var(--ease); }
.carte-card:hover { transform: translateY(-7px); border-color: var(--line-strong); box-shadow: var(--shadow); }
.carte-card:hover::before { background: linear-gradient(180deg, oklch(0.18 0.006 62 / 0.25) 20%, oklch(0.16 0.006 62 / 0.95) 85%); }
.carte-card-content { position: relative; width: 100%; padding: 2rem 1.6rem 1.7rem; }
.carte-card h3 { font-family: var(--font-display); font-size: 1.6rem; font-weight: 600; margin-bottom: 0.4rem; }
.carte-card p { color: var(--muted); font-size: 0.82rem; margin-bottom: 1rem; line-height: 1.5; }
.carte-link { display: inline-flex; align-items: center; gap: 0.45rem; font-size: 0.7rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold-bright); }
.carte-card:hover .carte-link span { transform: translateX(5px); }
.carte-link span { transition: transform 0.4s var(--ease); display: inline-block; }

/* ============================================================
   RÉSERVATION
   ============================================================ */
.resa { background: var(--bg); position: relative; }
.resa-card {
  max-width: 900px; margin-inline: auto;
  background: var(--surface-1); border: 1px solid var(--line-soft);
  border-radius: var(--radius); padding: clamp(1.7rem, 4vw, 2.8rem); box-shadow: var(--shadow);
}
.resa-steps { display: flex; flex-direction: column; }
.resa-step { padding: 1.5rem 0; }
.resa-step + .resa-step { border-top: 1px solid var(--line-soft); }
.resa-step:first-child { padding-top: 0; }
.resa-label { display: flex; align-items: center; gap: 0.85rem; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--cream); margin-bottom: 1.1rem; }
.resa-num { width: 28px; height: 28px; flex: none; display: grid; place-items: center; border: 1px solid var(--line-strong); color: var(--gold-bright); border-radius: 50%; font-size: 0.74rem; font-weight: 700; transition: background 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease); }
.resa-step:hover .resa-num, .resa-step:focus-within .resa-num { background: var(--gold-grad); color: var(--gold-ink); border-color: transparent; }
.resa-optional { font-style: normal; font-weight: 500; font-size: 0.6rem; letter-spacing: 0.12em; color: var(--muted); border: 1px solid var(--line-soft); border-radius: 999px; padding: 0.18rem 0.6rem; text-transform: none; }

.chip-row { display: flex; flex-wrap: wrap; gap: 0.55rem; }
.chip { padding: 0.66rem 1.25rem; border-radius: 999px; background: var(--surface-2); border: 1px solid var(--line-soft); color: var(--cream); font-size: 0.86rem; font-weight: 500; transition: border-color 0.25s var(--ease), background 0.25s var(--ease), transform 0.15s var(--ease), color 0.25s var(--ease); }
.chip:hover { border-color: var(--line-strong); transform: translateY(-2px); }
.chip:active { transform: scale(0.95); }
.chip.active { background: var(--gold-grad); color: var(--gold-ink); font-weight: 700; border-color: transparent; box-shadow: 0 8px 20px -10px oklch(0.78 0.08 80 / 0.6); }

.resa-input { width: 100%; max-width: 340px; padding: 0.88rem 1.1rem; background: var(--surface-2); border: 1px solid var(--line-soft); border-radius: var(--radius-sm); color: var(--cream); font-family: inherit; font-size: 0.95rem; color-scheme: dark; transition: border-color 0.3s var(--ease); }
.resa-input:focus { outline: none; border-color: var(--gold); }
.resa-input::placeholder { color: var(--faint); }
.resa-hint { font-size: 0.76rem; color: var(--muted); margin-top: 0.55rem; font-style: italic; }
.resa-hint.warn { color: oklch(0.78 0.12 55); font-style: normal; }
.input-pair-wrap { display: grid; gap: 0.8rem; grid-template-columns: 1fr; }
@media (min-width: 620px) { .input-pair-wrap { grid-template-columns: 1fr 1fr; max-width: 700px; } }
.input-pair-wrap .resa-input { max-width: none; }
.resa-tel-link { color: var(--gold-bright); font-weight: 600; white-space: nowrap; }
.resa-tel-link:hover { text-decoration: underline; }

.form-status { margin-top: 1.6rem; padding: 1rem 1.3rem; border-radius: var(--radius-sm); font-size: 0.9rem; font-weight: 500; }
.form-status.is-ok { background: oklch(0.73 0.15 152 / 0.12); border: 1px solid oklch(0.73 0.15 152 / 0.45); color: oklch(0.86 0.12 158); }
.form-status.is-err { background: oklch(0.64 0.16 26 / 0.1); border: 1px solid oklch(0.64 0.16 26 / 0.45); color: oklch(0.8 0.12 30); }
.resa-summary { margin-top: 2rem; padding: 1.1rem 1.4rem; background: oklch(0.84 0.08 84 / 0.08); border-left: 2px solid var(--gold); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; font-size: 0.92rem; }
.resa-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2rem; }
.resa-actions .btn { flex: 1 1 240px; }
.resa-foot { margin-top: 1.6rem; text-align: center; font-size: 0.84rem; color: var(--muted); }

/* ============================================================
   GALERIE
   ============================================================ */
.galerie { background: var(--surface-1); border-block: 1px solid var(--line-soft); }
.galerie-grid { display: grid; gap: 1rem; grid-template-columns: repeat(2, 1fr); grid-auto-rows: 1fr; }
@media (min-width: 760px) { .galerie-grid { grid-template-columns: repeat(4, 1fr); } }
.galerie-grid img { width: 100%; height: 100%; aspect-ratio: 1 / 1; object-fit: cover; border-radius: var(--radius-sm); border: 1px solid var(--line-soft); transition: transform 0.5s var(--ease), border-color 0.5s var(--ease); }
.galerie-grid img:hover { transform: scale(1.03); border-color: var(--line-strong); }
.galerie-grid img:first-child { grid-column: span 2; grid-row: span 2; aspect-ratio: auto; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact { background: var(--bg); }
.contact-grid { display: grid; gap: 2.8rem; grid-template-columns: 1fr; align-items: start; }
@media (min-width: 920px) { .contact-grid { grid-template-columns: 1fr 1.15fr; } }
.contact-list { list-style: none; margin-top: 2.2rem; display: grid; gap: 1.7rem; grid-template-columns: 1fr 1fr; }
.contact-list li:last-child { grid-column: 1 / -1; }
.contact-list h4 { font-size: 0.66rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.45rem; }
.contact-list p { color: var(--muted); font-size: 0.95rem; line-height: 1.6; }
.contact-list a:hover { color: var(--gold-bright); }
.social-row { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 0.2rem; }
.social-row a { font-size: 0.68rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; padding: 0.5rem 1.05rem; border: 1px solid var(--line-soft); border-radius: 999px; color: var(--gold-bright); transition: border-color 0.3s var(--ease), background 0.3s var(--ease); }
.social-row a:hover { background: oklch(0.84 0.08 84 / 0.1); border-color: var(--gold); }
.contact-map { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line-soft); }
.contact-map iframe { width: 100%; height: 460px; border: 0; display: block; filter: grayscale(0.6) contrast(1.05) brightness(0.92); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { border-top: 1px solid var(--line); padding: 4rem 0 2.5rem; background: var(--surface-1); }
.footer-inner { display: flex; flex-direction: column; align-items: center; gap: 1.8rem; text-align: center; }
.footer-brand { display: flex; flex-direction: column; align-items: center; gap: 1rem; color: var(--muted); font-size: 0.86rem; line-height: 1.6; }
.footer-nav { display: flex; flex-wrap: wrap; justify-content: center; gap: 1.6rem; }
.footer-nav a { font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); transition: color 0.3s var(--ease); }
.footer-nav a:hover { color: var(--gold-bright); }
.footer-copy { font-size: 0.72rem; color: var(--faint); }

/* ============================================================
   BOUTON FLOTTANT WHATSAPP
   ============================================================ */
.wa-float {
  position: fixed; right: 16px; bottom: 16px; z-index: 90;
  display: flex; align-items: center; gap: 0.6rem;
  padding: 0.4rem 0.95rem 0.4rem 0.4rem;
  background: var(--wa); color: var(--wa-ink); border-radius: 999px;
  box-shadow: 0 10px 26px -10px oklch(0.73 0.15 152 / 0.55);
  animation: waEnter 0.7s var(--ease) 0.9s backwards;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.wa-float:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 20px 46px -14px oklch(0.73 0.15 152 / 0.75); }
.wa-float:active { transform: scale(0.97); }
@keyframes waEnter { from { opacity: 0; transform: translateY(40px) scale(0.7); } }
.wa-float-icon { position: relative; width: 34px; height: 34px; flex: none; display: grid; place-items: center; background: oklch(1 0 0 / 0.2); border-radius: 50%; }
.wa-float-icon svg { width: 20px; height: 20px; }
.wa-float-icon::before { content: ''; position: absolute; inset: -3px; border-radius: 50%; border: 2px solid oklch(1 0 0 / 0.5); animation: waPulse 2.6s ease-out infinite; }
@keyframes waPulse { 0% { transform: scale(0.9); opacity: 0.9; } 70%, 100% { transform: scale(1.5); opacity: 0; } }
.wa-float-text { display: none; line-height: 1.2; }
.wa-float-text b { display: block; font-size: 0.72rem; font-weight: 700; }
.wa-float-text small { font-size: 0.58rem; opacity: 0.85; }
@media (min-width: 640px) { .wa-float-text { display: block; } }

/* ============================================================
   PAGE « LA CARTE » (menu.html)
   ============================================================ */
.carte-hero { padding: 9rem 0 0; text-align: center; }
.carte-hero .section-title { margin-top: 0.3rem; }
.carte-tabs { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.6rem; margin-top: 2.4rem; padding-bottom: 2.4rem; border-bottom: 1px solid var(--line-soft); }
.carte-tab { padding: 0.72rem 1.5rem; border-radius: 999px; border: 1px solid var(--line-soft); color: var(--muted); font-size: 0.76rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; transition: border-color 0.3s var(--ease), background 0.3s var(--ease), color 0.3s var(--ease); }
.carte-tab:hover { border-color: var(--line-strong); color: var(--cream); }
.carte-tab.active { background: var(--gold-grad); color: var(--gold-ink); border-color: transparent; }
.menu-page { display: none; padding-top: 3.5rem; }
.menu-page.is-active { display: block; animation: fadeUp 0.6s var(--ease); }
@keyframes fadeUp { from { opacity: 0; transform: translateY(16px); } }
.menu-page-banner { position: relative; min-height: 230px; border-radius: var(--radius); overflow: hidden; background-size: cover; background-position: center; display: flex; align-items: flex-end; margin-bottom: 3.2rem; border: 1px solid var(--line-soft); }
.menu-page-banner::before { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 30%, oklch(0.16 0.006 62 / 0.92)); }
.menu-page-banner > div { position: relative; width: 100%; padding: 3rem 2rem 1.7rem; }
.menu-page-banner h2 { font-family: var(--font-display); font-size: clamp(2rem, 5vw, 3rem); font-weight: 600; line-height: 1.05; }
.menu-page-banner p { color: var(--muted); font-size: 0.92rem; margin-top: 0.4rem; }
.menu-cols { display: grid; gap: clamp(2.5rem, 5vw, 4rem); grid-template-columns: 1fr; }
@media (min-width: 880px) { .menu-cols { grid-template-columns: 1fr 1fr; } }
.menu-col-title { font-family: var(--font-display); font-size: 1.45rem; font-weight: 600; color: var(--gold-bright); padding-bottom: 0.8rem; margin: 2.4rem 0 1.4rem; border-bottom: 1px solid var(--line-soft); display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; }
.menu-col-title:first-child { margin-top: 0; }
.menu-col-title i.menu-note { font-size: 0.7rem; }
.menu-line { display: flex; justify-content: space-between; align-items: baseline; gap: 1.2rem; padding: 0.6rem 0; border-bottom: 1px dashed var(--line-soft); font-size: 0.92rem; }
.menu-line span i { font-style: normal; color: var(--faint); font-size: 0.78rem; }
.menu-line b { font-family: var(--font-display); font-weight: 600; color: var(--gold-bright); white-space: nowrap; font-size: 1.1rem; }
.menu-item { display: flex; justify-content: space-between; gap: 1.4rem; align-items: baseline; padding: 0.95rem 0; border-bottom: 1px dashed var(--line-soft); }
.menu-item h4 { font-size: 0.92rem; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; }
.menu-item p { font-size: 0.82rem; color: var(--muted); margin-top: 0.3rem; line-height: 1.5; }
.menu-price { font-family: var(--font-display); font-size: 1.3rem; font-weight: 600; color: var(--gold-bright); white-space: nowrap; }
.menu-note { font-size: 0.76rem; color: var(--faint); font-style: italic; margin: 0.7rem 0 0; }
.menu-page .center { margin-top: 2.4rem; }

/* ============================================================
   APPARITION AU SCROLL
   ============================================================ */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal.visible { opacity: 1; transform: none; }
.univers-grid .uni-card:nth-child(2), .offres-grid .offre-card:nth-child(2), .carte-grid .carte-card:nth-child(2) { transition-delay: 0.08s; }
.univers-grid .uni-card:nth-child(3), .offres-grid .offre-card:nth-child(3), .carte-grid .carte-card:nth-child(3) { transition-delay: 0.16s; }
.univers-grid .uni-card:nth-child(4), .carte-grid .carte-card:nth-child(4) { transition-delay: 0.24s; }
.univers-grid .uni-card:nth-child(5) { transition-delay: 0.32s; }
.univers-grid .uni-card:nth-child(6) { transition-delay: 0.4s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
}
