/* ==========================================================================
   La Régalade — feuille de style
   Conçu par Cyberenta. Tokens centralisés, palette tirée du flyer.
   Concept : « le snack de quartier, ouvert tard ».
   ========================================================================== */

/* ---------- Fonts (self-hosted : perf + conformité RGPD/CNIL) ------------- */
@font-face {
  font-family: 'Bricolage Grotesque';
  src: url('../assets/fonts/bricolage-latin.woff2') format('woff2');
  font-weight: 200 800; font-style: normal; font-display: swap;
  unicode-range: U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+2000-206F,U+2074,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD;
}
@font-face {
  font-family: 'Bricolage Grotesque';
  src: url('../assets/fonts/bricolage-latin-ext.woff2') format('woff2');
  font-weight: 200 800; font-style: normal; font-display: swap;
  unicode-range: U+0100-024F,U+0259,U+1E00-1EFF,U+2020,U+20A0-20AB,U+20AD-20CF,U+2113,U+2C60-2C7F,U+A720-A7FF;
}
@font-face {
  font-family: 'Hanken Grotesk';
  src: url('../assets/fonts/hanken-latin.woff2') format('woff2');
  font-weight: 100 900; font-style: normal; font-display: swap;
  unicode-range: U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+2000-206F,U+2074,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD;
}
@font-face {
  font-family: 'Hanken Grotesk';
  src: url('../assets/fonts/hanken-latin-ext.woff2') format('woff2');
  font-weight: 100 900; font-style: normal; font-display: swap;
  unicode-range: U+0100-024F,U+0259,U+1E00-1EFF,U+2020,U+20A0-20AB,U+20AD-20CF,U+2113,U+2C60-2C7F,U+A720-A7FF;
}

/* ---------- Tokens -------------------------------------------------------- */
:root {
  /* Palette (extraite du flyer + visuel d'ambiance) */
  --ink: #1B130D;
  --ink-soft: #241910;
  --ink-2: #2E2015;
  --cream: #F8EEDD;
  --cream-deep: #F0E2C9;
  --card: #FFF9EF;
  --orange: #E07B2C;
  --orange-hover: #EC873A;
  --orange-deep: #B8551A;
  --ember: #E8A93A;
  --tomato: #C5402C;
  --tomato-deep: #B0381F;
  --basil: #5C7A3A;
  --muted: #6E5B49;          /* texte atténué sur clair */
  --muted-d: #C8B6A1;        /* texte atténué sur sombre */
  --line: #E3D4B8;           /* filet sur clair */
  --line-d: rgba(248,238,221,.14);

  /* Sémantique (surface par défaut = crème) */
  --bg: var(--cream);
  --surface: var(--card);
  --fg: var(--ink);
  --fg-muted: var(--muted);
  --border: var(--line);
  --accent: var(--orange);
  --accent-ink: var(--tomato-deep);

  /* Typo */
  --font-display: 'Bricolage Grotesque', system-ui, sans-serif;
  --font-body: 'Hanken Grotesk', system-ui, -apple-system, sans-serif;
  --fs-eyebrow: .8125rem;
  --fs-sm: .9375rem;
  --fs-body: 1.0625rem;
  --fs-lead: clamp(1.12rem, .9rem + 1vw, 1.4rem);
  --fs-h3: clamp(1.3rem, 1.05rem + 1.1vw, 1.8rem);
  --fs-h2: clamp(2rem, 1.3rem + 3.1vw, 3.4rem);
  --fs-h1: clamp(2.9rem, 1.4rem + 6.6vw, 6.2rem);

  /* Espacement (échelle 4/8) */
  --space-1: .25rem; --space-2: .5rem; --space-3: .75rem; --space-4: 1rem;
  --space-5: 1.5rem; --space-6: 2rem; --space-7: 3rem; --space-8: 4rem;
  --space-9: 6rem; --space-10: 8rem;
  --section-y: clamp(4rem, 2.2rem + 7vw, 7.5rem);
  --container: 76rem;
  --container-narrow: 50rem;
  --gutter: clamp(1.25rem, .6rem + 2.6vw, 3rem);

  /* Rayons (un seul système : 8 / 16 / 24) */
  --r-sm: 8px; --r: 16px; --r-lg: 24px; --r-pill: 999px;

  /* Ombres (chaudes, discrètes) */
  --sh-1: 0 1px 2px rgba(27,19,13,.06), 0 3px 8px rgba(27,19,13,.05);
  --sh-2: 0 12px 34px -14px rgba(27,19,13,.34);
  --sh-sticker: 0 8px 20px -8px rgba(27,19,13,.45);

  /* Motion */
  --ease-out: cubic-bezier(.23,1,.32,1);
  --ease-in-out: cubic-bezier(.77,0,.175,1);

  /* Z */
  --z-header: 100; --z-overlay: 200; --z-toast: 300;
}

/* ---------- Reset -------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: 84px; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.65;
  color: var(--fg);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, picture, svg { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; color: inherit; }
:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 3px;
  border-radius: 4px;
}
::selection { background: var(--orange); color: var(--ink); }

/* ---------- Typo --------------------------------------------------------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -.02em;
  color: var(--fg);
  text-wrap: balance;
}
.display { font-size: var(--fs-h1); font-weight: 800; line-height: .96; }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); letter-spacing: -.015em; }
p { text-wrap: pretty; }
strong { font-weight: 700; }

.eyebrow {
  font-family: var(--font-body);
  font-size: var(--fs-eyebrow);
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--accent-ink);
  display: inline-flex; align-items: center; gap: .6rem;
}
.eyebrow::before {
  content: ""; width: 1.75rem; height: 2px; background: var(--accent);
  display: inline-block;
}
.lead { font-size: var(--fs-lead); color: var(--fg-muted); line-height: 1.55; }
.muted { color: var(--fg-muted); }
.accent-word { color: var(--orange); }

/* Utilitaires */
.section-head.flush { margin-bottom: 0; }
.note-fine { font-size: var(--fs-sm); color: var(--fg-muted); margin-top: var(--space-2); }
.icon-inline { width: 1em; height: 1em; display: inline-block; vertical-align: -.12em; }
.star--dim { opacity: .35; }

/* ---------- Layout ------------------------------------------------------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.narrow { max-width: var(--container-narrow); }
.section { padding-block: var(--section-y); position: relative; }
.section-head { max-width: 44rem; margin-bottom: var(--space-7); }
.section-head .display, .section-head h2 { margin-top: var(--space-3); }
.section-head .lead { margin-top: var(--space-4); }

/* Surfaces */
.surface-dark {
  --bg: var(--ink); --fg: var(--cream); --fg-muted: var(--muted-d);
  --border: var(--line-d); --surface: var(--ink-soft); --accent-ink: var(--ember);
  background: var(--ink); color: var(--cream);
}
.surface-deep { background: var(--cream-deep); }

/* ---------- Boutons ------------------------------------------------------ */
.btn {
  --btn-bg: var(--orange); --btn-fg: var(--ink);
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  min-height: 48px; padding: .8rem 1.4rem;
  font-family: var(--font-body); font-weight: 700; font-size: var(--fs-sm);
  letter-spacing: .01em;
  background: var(--btn-bg); color: var(--btn-fg);
  border: 2px solid transparent; border-radius: var(--r-pill);
  cursor: pointer; transition: transform 160ms var(--ease-out), box-shadow 200ms var(--ease-out), background-color 160ms;
  box-shadow: var(--sh-1); text-align: center;
}
.btn svg { width: 1.1em; height: 1.1em; flex: none; }
.btn:active { transform: scale(.97); }
@media (hover: hover) and (pointer: fine) {
  .btn:hover { box-shadow: var(--sh-2); transform: translateY(-2px); }
  .btn--primary:hover { background: var(--orange-hover); }
}
.btn--primary { --btn-bg: var(--orange); --btn-fg: var(--ink); }
.btn--ghost {
  --btn-bg: transparent; --btn-fg: var(--fg);
  border-color: color-mix(in srgb, var(--fg) 28%, transparent);
  box-shadow: none;
}
@media (hover: hover) and (pointer: fine) {
  .btn--ghost:hover { background: color-mix(in srgb, var(--fg) 8%, transparent); border-color: var(--fg); }
}
.btn--block { width: 100%; }
.btn--sm { min-height: 44px; padding: .55rem 1.05rem; }

.link-underline {
  color: var(--accent-ink); font-weight: 700;
  display: inline-flex; align-items: center; gap: .4rem;
  background-image: linear-gradient(currentColor, currentColor);
  background-size: 0% 2px; background-repeat: no-repeat; background-position: 0 100%;
  transition: background-size 240ms var(--ease-out);
}
@media (hover: hover) and (pointer: fine) { .link-underline:hover { background-size: 100% 2px; } }

/* ---------- Signature : sticker / sceau ---------------------------------- */
.sticker {
  --sk-bg: var(--ember);
  position: relative;
  display: inline-grid; place-items: center; text-align: center;
  width: clamp(7rem, 6rem + 4vw, 9.5rem); aspect-ratio: 1;
  padding: 1rem; border-radius: 50%;
  background: var(--sk-bg); color: var(--ink);
  box-shadow: var(--sh-sticker);
  rotate: -8deg;
  font-family: var(--font-display); line-height: 1;
}
.sticker::before {
  content: ""; position: absolute; inset: 7px; border-radius: 50%;
  border: 2px dashed rgba(27,19,13,.5);
}
.sticker .sk-top { font-size: .7rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.sticker .sk-big { font-size: clamp(1.5rem, 1rem + 2.4vw, 2.3rem); font-weight: 800; letter-spacing: -.02em; }
.sticker .sk-sub { font-size: .68rem; font-weight: 600; opacity: .85; }
.sticker--tomato { --sk-bg: var(--tomato); color: var(--cream); }
.sticker--tomato::before { border-color: rgba(248,238,221,.55); }

/* ---------- En-tête / Navigation ---------------------------------------- */
.skip-link {
  position: absolute; left: 1rem; top: -100%; z-index: var(--z-toast);
  background: var(--ink); color: var(--cream); padding: .7rem 1.1rem; border-radius: var(--r-sm);
  transition: top 160ms var(--ease-out);
}
.skip-link:focus { top: 1rem; }

.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: var(--z-header);
  transition: background-color 240ms var(--ease-out), box-shadow 240ms var(--ease-out), border-color 240ms;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: color-mix(in srgb, var(--ink) 92%, transparent);
  backdrop-filter: saturate(140%) blur(8px);
  border-bottom-color: var(--line-d);
  box-shadow: 0 6px 24px -16px rgba(0,0,0,.8);
}
.nav { display: flex; align-items: center; justify-content: space-between; gap: var(--space-5); min-height: 72px; }
.brand { display: inline-flex; align-items: center; gap: .6rem; color: var(--cream); }
.brand img { width: 40px; height: 40px; border-radius: 50%; box-shadow: 0 2px 8px rgba(0,0,0,.4); }
.brand .brand-name { font-family: var(--font-display); font-weight: 800; font-size: 1.3rem; letter-spacing: -.02em; line-height: 1; }
.brand .brand-name b { color: var(--orange); font-weight: 800; }
.nav-links { display: flex; align-items: center; gap: var(--space-2); list-style: none; }
.nav-links a {
  color: var(--cream); font-weight: 600; font-size: var(--fs-sm);
  padding: .55rem .8rem; border-radius: var(--r-pill); position: relative;
  transition: color 160ms, background-color 160ms;
}
.nav-links a .dot { display: none; }
@media (hover: hover) and (pointer: fine) { .nav-links a:hover { background: rgba(248,238,221,.1); } }
.nav-links a[aria-current="true"] { color: var(--orange); }
.nav-links a svg { width: 1.05em; height: 1.05em; display: inline-block; vertical-align: -.18em; margin-right: .3rem; color: var(--orange); }
.nav-phone { font-variant-numeric: tabular-nums; }
.nav-cta { display: flex; align-items: center; gap: var(--space-3); }
.nav-toggle { display: none; }

@media (max-width: 860px) {
  .nav-toggle {
    display: inline-flex; align-items: center; justify-content: center;
    width: 48px; height: 48px; border: 1px solid var(--line-d); border-radius: var(--r-sm);
    background: rgba(248,238,221,.06); color: var(--cream); cursor: pointer;
  }
  .nav-toggle svg { width: 24px; height: 24px; }
  .nav-links {
    position: fixed; inset: 72px 0 auto 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--ink); border-bottom: 1px solid var(--line-d);
    padding: var(--space-3) var(--gutter) var(--space-5);
    transform: translateY(-12px); opacity: 0; visibility: hidden; pointer-events: none;
    transition: opacity 220ms var(--ease-out), transform 220ms var(--ease-out), visibility 220ms;
    box-shadow: var(--sh-2);
  }
  .nav-links.open { opacity: 1; visibility: visible; transform: translateY(0); pointer-events: auto; }
  .nav-links a { padding: .95rem .6rem; border-radius: var(--r-sm); border-bottom: 1px solid var(--line-d); }
  .nav-links li:last-child a { border-bottom: 0; }
  .nav-links .btn { display: inline-flex; margin-top: var(--space-4); }
}

/* ---------- Marquee (bandeau défilant) ---------------------------------- */
.marquee {
  overflow: hidden; border-block: 1px solid var(--line-d);
  background: var(--ink-soft); padding-block: .7rem;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee-track { display: inline-flex; gap: 2.5rem; white-space: nowrap; will-change: transform; animation: marquee 32s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee span {
  font-family: var(--font-display); font-weight: 700; font-size: 1.05rem;
  color: var(--cream); letter-spacing: .02em; display: inline-flex; align-items: center; gap: 2.5rem;
}
.marquee span::after { content: "●"; color: var(--orange); font-size: .7em; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Hero --------------------------------------------------------- */
.hero {
  position: relative; overflow: clip;
  padding-top: clamp(7rem, 6rem + 6vw, 10rem);
  padding-bottom: clamp(3rem, 2rem + 5vw, 6rem);
  background:
    radial-gradient(58% 48% at 84% 2%, rgba(232,169,58,.18), transparent 70%),
    linear-gradient(180deg, var(--ink), var(--ink-soft));
  color: var(--cream);
}
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 1rem + 4vw, 4.5rem); align-items: center; }
.hero-copy { max-width: 34rem; }
.hero h1 { margin-top: var(--space-4); color: var(--cream); }
.hero h1 .accent-word { display: inline-block; }
.hero .lead { color: var(--muted-d); margin-top: var(--space-5); max-width: 32rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: var(--space-3); margin-top: var(--space-6); }
.hero-meta { display: flex; flex-wrap: wrap; gap: var(--space-2) var(--space-5); margin-top: var(--space-6); color: var(--muted-d); font-size: var(--fs-sm); }
.hero-meta .mi { display: inline-flex; align-items: center; gap: .5rem; }
.hero-meta svg { width: 1.05rem; height: 1.05rem; color: var(--orange); }

.hero-visual { position: relative; justify-self: center; width: 100%; max-width: 30rem; }
.hero-poster {
  width: 100%; border-radius: var(--r-lg); box-shadow: var(--sh-2), 0 0 0 1px rgba(248,238,221,.08);
  rotate: 1.5deg;
}
.hero-visual .sticker { position: absolute; left: -1.6rem; bottom: -1.6rem; rotate: -10deg; }

/* ---------- Bandeau infos rapides --------------------------------------- */
.facts { background: var(--ink-2); color: var(--cream); }
.facts-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: var(--line-d);
}
.fact { background: var(--ink-2); padding: var(--space-5) var(--space-4); display: flex; gap: .85rem; align-items: flex-start; }
.fact svg { width: 1.6rem; height: 1.6rem; color: var(--orange); flex: none; }
.fact .ft-k { font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; line-height: 1.1; }
.fact .ft-v { color: var(--muted-d); font-size: var(--fs-sm); margin-top: .15rem; }

/* ---------- À propos ----------------------------------------------------- */
.about-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(2rem,1rem + 4vw,5rem); align-items: center; }
.about-media { position: relative; }
.about-media .coin {
  width: clamp(9rem, 7rem + 10vw, 13rem); border-radius: 50%;
  box-shadow: var(--sh-2); rotate: -6deg;
}
.about-media .quote-card {
  position: absolute; right: 0; bottom: -1rem; max-width: 17rem;
  background: var(--card); color: var(--ink); padding: var(--space-4) var(--space-5);
  border-radius: var(--r); box-shadow: var(--sh-2); border: 1px solid var(--line);
  font-family: var(--font-display); font-weight: 600; line-height: 1.2; font-size: 1.05rem;
}
.about-media .quote-card span { color: var(--accent-ink); }
.about-body h2 { margin-bottom: var(--space-4); }
.about-body p + p { margin-top: var(--space-4); }
.about-tags { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: var(--space-6); }
.tag {
  display: inline-flex; align-items: center; gap: .45rem;
  padding: .45rem .9rem; border-radius: var(--r-pill);
  background: var(--cream-deep); border: 1px solid var(--line);
  font-size: var(--fs-sm); font-weight: 600;
}
.tag svg { width: 1rem; height: 1rem; color: var(--basil); }

/* ---------- La Carte ----------------------------------------------------- */
.carte-top { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: var(--space-5); margin-bottom: var(--space-7); }
.carte-note {
  font-size: var(--fs-sm); color: var(--fg-muted); max-width: 24rem;
  border-left: 3px solid var(--orange); padding-left: var(--space-4);
}
.carte-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(1.5rem,1rem + 2vw,3.5rem) clamp(2rem,1rem + 4vw,5rem); }
.carte-cat { break-inside: avoid; }
.carte-cat > h3 {
  display: flex; align-items: center; gap: .6rem; flex-wrap: wrap; padding-bottom: var(--space-3);
  border-bottom: 2px solid var(--ink); margin-bottom: var(--space-4);
}
.carte-cat > h3 .cat-em {
  font-family: var(--font-body); font-size: .7rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .08em; color: var(--orange-deep);
  background: color-mix(in srgb, var(--orange) 15%, transparent);
  padding: .22rem .55rem; border-radius: var(--r-pill);
}
.carte-item { display: flex; align-items: baseline; gap: .5rem; padding-block: .5rem; }
.carte-item .nm { font-weight: 700; }
.carte-item .nm .it-desc { display: block; font-weight: 400; font-size: var(--fs-sm); color: var(--fg-muted); letter-spacing: 0; }

.deal {
  margin-top: var(--space-8);
  display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: var(--space-5);
  background: linear-gradient(120deg, var(--ink), var(--ink-2));
  color: var(--cream); border-radius: var(--r-lg); padding: clamp(1.5rem,1rem + 2vw,2.5rem);
  box-shadow: var(--sh-2); overflow: hidden; position: relative;
}
.deal .sticker { rotate: -8deg; flex: none; }
.deal .deal-body h3 { color: var(--cream); }
.deal .deal-body p { color: var(--muted-d); margin-top: .4rem; max-width: 34rem; }
.deal .deal-cta { display: flex; flex-direction: column; gap: .5rem; }

/* ---------- Avis --------------------------------------------------------- */
.avis-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(2rem,1rem + 3vw,4rem); align-items: start; }
.rating-card {
  position: sticky; top: 100px;
  background: var(--ink); color: var(--cream); border-radius: var(--r-lg);
  padding: var(--space-7) var(--space-6); text-align: center; box-shadow: var(--sh-2);
}
.rating-num { font-family: var(--font-display); font-weight: 800; font-size: 4.5rem; line-height: 1; color: var(--ember); }
.rating-num span { font-size: 1.6rem; color: var(--muted-d); }
.stars { display: inline-flex; gap: .15rem; margin-top: var(--space-3); color: var(--ember); }
.stars svg { width: 1.4rem; height: 1.4rem; }
.rating-card .rc-sub { color: var(--muted-d); margin-top: var(--space-3); font-size: var(--fs-sm); }
.rating-card .btn { margin-top: var(--space-5); }

.reviews { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-5); align-content: start; }
.reviews .note-fine { grid-column: 1 / -1; margin-top: 0; }
.review {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--r);
  padding: var(--space-5); box-shadow: var(--sh-1);
}
.review .stars { color: var(--orange); margin: 0 0 var(--space-3); }
.review .stars svg { width: 1.05rem; height: 1.05rem; }
.review blockquote { font-size: 1.08rem; line-height: 1.5; }
.review .rv-meta { margin-top: var(--space-4); font-size: var(--fs-sm); color: var(--fg-muted); display: flex; flex-wrap: wrap; align-items: center; gap: .15rem .5rem; }
.review .rv-meta b { color: var(--fg); font-weight: 700; white-space: nowrap; }
.review--lg blockquote { font-family: var(--font-display); font-weight: 600; font-size: clamp(1.2rem,1rem + 1vw,1.6rem); line-height: 1.25; letter-spacing: -.01em; }

/* ---------- Contact & accès --------------------------------------------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.5rem,1rem + 3vw,3.5rem); align-items: stretch; }
.info-list { display: grid; gap: var(--space-4); align-content: start; }
.info-row { display: flex; gap: var(--space-4); align-items: flex-start; padding: var(--space-5); background: var(--surface); border: 1px solid var(--border); border-radius: var(--r); }
.info-row .ic { width: 2.6rem; height: 2.6rem; flex: none; display: grid; place-items: center; border-radius: var(--r-sm); background: color-mix(in srgb, var(--orange) 16%, transparent); color: var(--orange-deep); }
.info-row .ic svg { width: 1.35rem; height: 1.35rem; }
.info-row .ir-k { font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; }
.info-row .ir-v { color: var(--fg-muted); font-size: var(--fs-sm); margin-top: .15rem; }
.info-row a.ir-v { color: var(--accent-ink); font-weight: 600; }

.hours { width: 100%; border-collapse: collapse; margin-top: .5rem; }
.hours th, .hours td { text-align: left; padding: .35rem 0; font-size: var(--fs-sm); border-bottom: 1px solid var(--border); }
.hours td:last-child { text-align: right; font-variant-numeric: tabular-nums; color: var(--fg-muted); }
.hours tr:last-child th, .hours tr:last-child td { border-bottom: 0; }

.delivery { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: var(--space-4); }
.delivery a {
  display: inline-flex; align-items: center; gap: .5rem; padding: .6rem 1rem;
  border-radius: var(--r-pill); border: 1px solid var(--border); background: var(--surface);
  font-weight: 700; font-size: var(--fs-sm); transition: transform 160ms var(--ease-out), border-color 160ms;
}
.delivery a:active { transform: scale(.97); }
@media (hover: hover) and (pointer: fine) { .delivery a:hover { border-color: var(--orange); } }
.delivery a .badge-dot { width: .55rem; height: .55rem; border-radius: 50%; background: var(--basil); }

/* Carte interactive */
.map-wrap { position: relative; border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--border); box-shadow: var(--sh-1); min-height: 24rem; height: 100%; background: var(--cream-deep); }
#map { position: absolute; inset: 0; width: 100%; height: 100%; }
.map-wrap .map-placeholder {
  position: absolute; inset: 0; display: grid; place-items: center; text-align: center;
  gap: .75rem; padding: var(--space-6); color: var(--fg-muted);
}
.map-wrap .map-placeholder svg { width: 2.5rem; height: 2.5rem; color: var(--orange); margin-inline: auto; }
.leaflet-container { font-family: var(--font-body); background: var(--cream-deep); }
.leaflet-popup-content-wrapper { border-radius: var(--r); }
.leaflet-popup-content { font-size: var(--fs-sm); }
.map-pin {
  width: 34px; height: 34px; border-radius: 50% 50% 50% 0; rotate: -45deg;
  background: var(--orange); border: 3px solid var(--ink);
  box-shadow: 0 6px 14px -4px rgba(27,19,13,.6); display: grid; place-items: center;
}
.map-pin::after { content: ""; width: 10px; height: 10px; background: var(--ink); border-radius: 50%; }

/* Formulaire */
.contact-form { margin-top: var(--space-7); display: grid; gap: var(--space-4); max-width: 46rem; }
.contact-form > .btn { justify-self: start; }
.field { display: grid; gap: .4rem; }
.field label { font-weight: 700; font-size: var(--fs-sm); }
.field .req { color: var(--tomato-deep); }
.field input, .field textarea {
  width: 100%; padding: .8rem 1rem; min-height: 48px;
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-sm);
  transition: border-color 160ms, box-shadow 160ms;
}
.field textarea { min-height: 7rem; resize: vertical; }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--orange); box-shadow: 0 0 0 3px color-mix(in srgb, var(--orange) 28%, transparent); }
.field .hint { font-size: .8rem; color: var(--fg-muted); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-4); }
.form-note { font-size: .8rem; color: var(--fg-muted); }
.form-status { font-size: var(--fs-sm); font-weight: 600; min-height: 1.2em; }
.form-status[data-state="ok"] { color: var(--basil); }

/* ---------- Pied de page ------------------------------------------------- */
.site-footer { background: var(--ink); color: var(--cream); padding-block: var(--space-8) var(--space-6); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: var(--space-7); }
.footer-brand .brand { margin-bottom: var(--space-4); }
.footer-brand p { color: var(--muted-d); font-size: var(--fs-sm); max-width: 24rem; }
.footer-col h4 { font-family: var(--font-display); font-size: 1rem; letter-spacing: .04em; text-transform: uppercase; color: var(--muted-d); margin-bottom: var(--space-4); }
.footer-col ul { list-style: none; display: grid; gap: .65rem; }
.footer-col a { color: var(--cream); font-size: var(--fs-sm); }
@media (hover: hover) and (pointer: fine) { .footer-col a:hover { color: var(--orange); } }
.footer-bottom {
  margin-top: var(--space-8); padding-top: var(--space-5); border-top: 1px solid var(--line-d);
  display: flex; flex-wrap: wrap; gap: var(--space-3) var(--space-5); align-items: center; justify-content: space-between;
  font-size: var(--fs-sm); color: var(--muted-d);
}
.footer-bottom nav { display: flex; flex-wrap: wrap; gap: var(--space-2) var(--space-5); }
.footer-bottom a { color: var(--muted-d); }
@media (hover: hover) and (pointer: fine) { .footer-bottom a:hover { color: var(--cream); } }
.credit-cyberenta { color: var(--muted-d); }
.credit-cyberenta a { color: var(--cream); font-weight: 600; }
@media (hover: hover) and (pointer: fine) { .credit-cyberenta a:hover { color: var(--orange); } }

/* ---------- Pages légales ----------------------------------------------- */
.legal { padding-top: clamp(7rem, 6rem + 5vw, 9rem); }
.legal .container { max-width: var(--container-narrow); }
.legal h1 { font-size: var(--fs-h2); margin-bottom: var(--space-3); }
.legal h2 { font-size: var(--fs-h3); margin-top: var(--space-7); margin-bottom: var(--space-3); }
.legal p, .legal li { color: var(--fg); }
.legal p + p { margin-top: var(--space-3); }
.legal ul { margin: var(--space-3) 0; padding-left: 1.2rem; display: grid; gap: .4rem; }
.legal .todo { background: color-mix(in srgb, var(--ember) 22%, var(--card)); border: 1px dashed var(--orange-deep); padding: .15rem .5rem; border-radius: 6px; font-weight: 600; }
.legal .back { margin-top: var(--space-8); }
.legal .updated { color: var(--fg-muted); font-size: var(--fs-sm); }

/* ---------- Page 404 ----------------------------------------------------- */
.error-page { min-height: 100dvh; display: grid; place-items: center; text-align: center; }
.error-page .eyebrow { justify-content: center; }
.error-page .display { color: var(--cream); margin-top: var(--space-3); }
.error-page .lead { color: var(--muted-d); margin: var(--space-5) auto 0; max-width: 30rem; }
.error-page .hero-actions { justify-content: center; margin-top: var(--space-6); }
.error-coin { width: 120px; height: 120px; margin: 0 auto var(--space-5); border-radius: 50%; box-shadow: var(--sh-2); }

/* ---------- Reveal au scroll -------------------------------------------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 600ms var(--ease-out), transform 600ms var(--ease-out); }
.reveal.in { opacity: 1; transform: none; }
.reveal-stagger > * { opacity: 0; transform: translateY(14px); transition: opacity 500ms var(--ease-out), transform 500ms var(--ease-out); }
.reveal-stagger.in > * { opacity: 1; transform: none; }
.reveal-stagger.in > *:nth-child(2) { transition-delay: 60ms; }
.reveal-stagger.in > *:nth-child(3) { transition-delay: 120ms; }
.reveal-stagger.in > *:nth-child(4) { transition-delay: 180ms; }

/* ---------- Responsive --------------------------------------------------- */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { order: -1; max-width: 22rem; }
  .hero-visual .sticker { left: auto; right: -1rem; }
  .avis-grid { grid-template-columns: 1fr; }
  .rating-card { position: static; }
}
@media (max-width: 860px) {
  .facts-grid { grid-template-columns: repeat(2, 1fr); }
  .carte-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .reviews { grid-template-columns: 1fr; }
  .deal { grid-template-columns: 1fr; text-align: left; }
  .deal .sticker { justify-self: start; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .about-grid { grid-template-columns: 1fr; }
  .about-media { justify-self: start; margin-bottom: var(--space-7); }
}
@media (max-width: 520px) {
  .facts-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-actions .btn { width: 100%; }
  .nav-cta .btn--primary .btn-label { display: none; }
  .nav-cta .btn--primary { padding-inline: .9rem; min-width: 44px; }
  .hero-visual .sticker { right: 0; bottom: -1rem; }
}
@media (max-width: 400px) {
  .brand .brand-name { font-size: 1.15rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  .marquee-track { animation: none; }
  .reveal, .reveal-stagger > * { opacity: 1; transform: none; }
}
