/* ==========================================================================
   Ô SNACK — Snack Halal · Sainte-Clotilde, La Réunion
   Direction : « ardoise de comptoir ». Titres condensés, filets, colonnes de
   prix alignées. Angles droits, pas de dégradé, pas de lévitation au survol.
   Base = mobile. Les media queries min-width montent vers tablette/desktop.
   ========================================================================== */

:root {
  /* --- Couleurs ---
     L'or est relevé sur le logo (#DDD0AE) ; le cuivre est la teinte moyenne
     réelle des plats en photo (#B3744E). Aucun dégradé : aplats uniquement. */
  --black:      #0B0B0C;
  --coal:       #131315;
  --coal-2:     #1A1A1D;
  --line:       #26262A;
  --line-soft:  #1F1F23;

  --gold:       #D8C79C;   /* or du logo, désaturé pour le texte courant */
  --gold-mid:   #C4AF7E;
  --gold-deep:  #6E6045;
  --ember:      #B3744E;   /* cuivre des plats — accent chaud secondaire */
  --ember-dim:  #7A4E33;

  --white:      #F4F1EB;
  --white-mut:  #A9A49B;
  --white-dim:  #726E67;

  /* --- Rayons : quasi nuls. 2-3px sur les éléments cliquables uniquement --- */
  --r-xs: 2px;
  --r-sm: 3px;
  --r-md: 3px;
  --r-lg: 3px;
  --r-xl: 3px;
  --r-pill: 3px;

  /* --- Rythme --- */
  --gutter: 20px;
  --sp-section: 68px;
  --container: 1180px;

  --shadow: 0 18px 44px -22px rgba(0,0,0,.95);
  --shadow-gold: 0 14px 34px -20px rgba(0,0,0,.9);

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --ease-io: cubic-bezier(0.83, 0, 0.17, 1);

  --tap: 48px; /* cible tactile minimale */
}

@media (min-width: 768px) { :root { --gutter: 36px; --sp-section: 96px; } }
@media (min-width: 1100px){ :root { --gutter: 52px; --sp-section: 124px; } }

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}
body {
  font-family: 'Barlow', system-ui, -apple-system, sans-serif;
  font-size: 16px; line-height: 1.62; font-weight: 400;
  color: var(--white); background: var(--black);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  width: 100%;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; }
address { font-style: normal; }
::selection { background: var(--gold); color: var(--black); }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 0; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
}

/* --- Typographie ---
   Archivo Black : display d'enseigne, capitales serrées, jamais en corps de texte.
   Barlow Condensed : libellés, prix, catégories — la condensation évoque
   l'étiquette de comptoir. Barlow : lecture courante. */
h1, h2, h3, .display {
  font-family: 'Archivo Black', 'Arial Black', sans-serif;
  font-weight: 400; line-height: 1.02;
  letter-spacing: -0.02em; color: var(--white);
  text-transform: uppercase;
}
.hero-title  { font-size: clamp(40px, 13vw, 112px); line-height: .94; letter-spacing: -0.035em; }
.display-xl  { font-size: clamp(32px, 9vw, 72px); letter-spacing: -0.03em; }
.display-lg  { font-size: clamp(26px, 6.6vw, 48px); letter-spacing: -0.025em; }
.display-md  { font-size: clamp(21px, 5vw, 32px); letter-spacing: -0.02em; }
.display-sm  { font-size: clamp(17px, 4vw, 22px); letter-spacing: -0.01em; }

/* .script et .gold-text : anciens accents cursifs / dégradés dorés.
   Sélecteurs conservés (présents dans le HTML) mais réduits à un aplat,
   sans famille cursive ni background-clip. */
.script,
.gold-text {
  font-family: inherit; font-weight: inherit;
  color: var(--gold); -webkit-text-fill-color: currentColor;
  background: none;
}

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'Barlow Condensed', 'Barlow', sans-serif;
  font-size: 13px; font-weight: 600; letter-spacing: 2.6px; text-transform: uppercase;
  color: var(--gold-mid);
}
.eyebrow::before { content: ''; width: 26px; height: 2px; background: var(--ember); flex-shrink: 0; }
.eyebrow.center::after { content: ''; width: 26px; height: 2px; background: var(--ember); flex-shrink: 0; }

.lead { font-size: clamp(16px, 3.6vw, 18.5px); line-height: 1.62; color: var(--white-mut); font-weight: 400; }
.caption { font-size: 13.5px; line-height: 1.55; color: var(--white-dim); }

/* --- Layout --- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: var(--sp-section); }
.tile-black { background: var(--black); }
.tile-coal  { background: var(--coal); }
.center { text-align: center; }
.center .eyebrow { justify-content: center; }

.rule { height: 1px; background: var(--line); border: 0; }

/* --- Reveal : translation courte, sans effet « flottant » --- */
.reveal { opacity: 0; transform: translateY(14px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.reveal.visible { opacity: 1; transform: none; }
.d1 { transition-delay: .06s; } .d2 { transition-delay: .12s; }
.d3 { transition-delay: .18s; } .d4 { transition-delay: .24s; }

/* --- Boutons (tactiles ≥48px) ---
   Aplat doré, angles quasi droits, aucun translateY au survol. */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: var(--tap); padding: 14px 28px;
  font-family: 'Barlow Condensed', 'Barlow', sans-serif;
  font-size: 17px; font-weight: 600; letter-spacing: 1.1px; text-transform: uppercase;
  border-radius: var(--r-xs); position: relative; overflow: hidden;
  transition: background .22s var(--ease), color .22s var(--ease), border-color .22s var(--ease);
  -webkit-tap-highlight-color: transparent;
}
.btn svg { width: 17px; height: 17px; flex-shrink: 0; transition: transform .25s var(--ease); }
.btn:active { transform: scale(.985); }

.btn-gold { background: var(--gold); color: #16130C; }
.btn-gold:hover { background: var(--white); }
.btn-gold:hover svg { transform: translateX(3px); }

.btn-ghost { border: 1px solid var(--gold-deep); color: var(--gold); background: transparent; }
.btn-ghost:hover { border-color: var(--gold); background: rgba(216,199,156,.08); color: var(--gold); }

.btn-block { width: 100%; }
@media (min-width: 560px) { .btn-block { width: auto; } }

.actions { display: flex; flex-direction: column; gap: 12px; }
@media (min-width: 560px) { .actions { flex-direction: row; flex-wrap: wrap; } .actions.center { justify-content: center; } }

.text-link {
  display: inline-flex; align-items: center; gap: 8px; color: var(--gold);
  font-family: 'Barlow Condensed', sans-serif; font-weight: 600; font-size: 17px;
  letter-spacing: .6px; min-height: 44px;
  border-bottom: 1px solid transparent; transition: border-color .22s;
}
.text-link::after { content: '→'; transition: transform .25s var(--ease); }
.text-link:hover { border-color: var(--gold-deep); }
.text-link:hover::after { transform: translateX(4px); }

/* ==========================================================================
   NAVIGATION (mobile-first)
   ========================================================================== */
/* z-index : la nav DOIT rester au-dessus du drawer, sinon le burger
   (enfermé dans le contexte d'empilement de .nav) devient inatteignable
   et le menu ne peut plus se refermer. nav 120 > drawer 110. */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 120;
  padding: 12px 0;
  transition: background .3s var(--ease), padding .3s var(--ease), box-shadow .3s;
}
.nav.scrolled {
  background: rgba(11,11,12,.95);
  -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--line);
}
.nav .container { display: flex; align-items: center; justify-content: space-between; gap: 12px; }

.nav-brand { display: flex; align-items: center; gap: 10px; z-index: 2; min-height: var(--tap); }
.nav-brand img { height: 46px; width: auto; transition: height .3s var(--ease); }
.nav.scrolled .nav-brand img { height: 38px; }
@media (min-width: 768px) { .nav-brand img { height: 56px; } .nav.scrolled .nav-brand img { height: 44px; } }

.nav-links { display: none; }
@media (min-width: 900px) {
  .nav-links { display: flex; align-items: center; gap: 34px; }
  .burger { display: none !important; }
}
.nav-link {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 17px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase;
  color: var(--white); position: relative; padding: 6px 0;
}
.nav-link::after {
  content: ''; position: absolute; left: 0; bottom: 0; width: 0; height: 2px;
  background: var(--ember); transition: width .25s var(--ease);
}
.nav-link:hover { color: var(--gold); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }
.nav-link.active { color: var(--gold); }

.nav-cta {
  background: var(--gold); color: #16130C !important;
  padding: 11px 22px; border-radius: var(--r-xs);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 17px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
  min-height: 44px; display: inline-flex; align-items: center;
  transition: background .22s var(--ease);
}
.nav-cta:hover { background: var(--white); }
.nav-cta::after { display: none; }

/* Burger — cible tactile généreuse */
.burger {
  display: flex; flex-direction: column; justify-content: center; gap: 6px;
  width: var(--tap); height: var(--tap); margin-right: -10px;
  align-items: flex-end; z-index: 2; position: relative;
  -webkit-tap-highlight-color: transparent;
}
.burger span {
  display: block; height: 2px; border-radius: 0; background: var(--white);
  transition: transform .32s var(--ease), opacity .2s, width .25s var(--ease), background .25s;
}
.burger span:nth-child(1) { width: 26px; }
.burger span:nth-child(2) { width: 18px; }
.burger span:nth-child(3) { width: 26px; }
.burger.open span { background: var(--gold); width: 26px; }
.burger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; transform: translateX(10px); }
.burger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* Drawer plein écran */
.drawer {
  position: fixed; inset: 0; z-index: 110;
  background: var(--black);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 2px; padding: 24px;
  opacity: 0; visibility: hidden;
  transition: opacity .32s var(--ease), visibility .32s;
}
.drawer.open { opacity: 1; visibility: visible; }
.drawer a {
  font-family: 'Archivo Black', 'Arial Black', sans-serif; font-weight: 400;
  text-transform: uppercase; letter-spacing: -0.02em;
  font-size: clamp(28px, 8.5vw, 44px); color: var(--white);
  padding: 12px 0; min-height: var(--tap); display: flex; align-items: center;
  opacity: 0; transform: translateY(12px);
  transition: opacity .38s var(--ease), transform .38s var(--ease), color .22s;
}
.drawer.open a { opacity: 1; transform: none; }
.drawer.open a:nth-child(1) { transition-delay: .07s; }
.drawer.open a:nth-child(2) { transition-delay: .12s; }
.drawer.open a:nth-child(3) { transition-delay: .17s; }
.drawer.open a:nth-child(4) { transition-delay: .22s; }
.drawer a:hover, .drawer a.active { color: var(--gold); }
.drawer .drawer-foot { margin-top: 26px; text-align: center; opacity: 0; transition: opacity .4s .3s; }
.drawer.open .drawer-foot { opacity: 1; }
.drawer .drawer-foot a {
  display: inline-flex; align-items: center; min-height: 44px;
  font-family: 'Barlow Condensed', sans-serif; font-size: 20px; letter-spacing: .5px;
  color: var(--gold); text-transform: none;
}

/* Barre d'action mobile fixe (appel rapide) */
.callbar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
  display: flex; gap: 10px; padding: 10px var(--gutter) calc(10px + env(safe-area-inset-bottom));
  background: rgba(11,11,12,.96);
  -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px);
  border-top: 1px solid var(--line);
  transform: translateY(110%); transition: transform .32s var(--ease);
}
.callbar.show { transform: translateY(0); }
.callbar .btn { flex: 1; font-size: 16px; padding: 12px 16px; }
@media (min-width: 900px) { .callbar { display: none; } }
body.has-callbar { padding-bottom: 0; }
@media (max-width: 899px) { main { padding-bottom: 76px; } }

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  position: relative; min-height: 100svh;
  display: flex; align-items: center;
  padding: 96px 0 56px; overflow: hidden;
  background: var(--black);
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; opacity: .32; }
/* Voile linéaire seul : le halo radial doré signait le rendu « généré ». */
.hero::after {
  content: ''; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(to top, var(--black) 3%, rgba(11,11,12,.74) 48%, rgba(11,11,12,.86) 100%);
}
.hero .container { position: relative; z-index: 2; width: 100%; }
.hero-logo { width: clamp(120px, 34vw, 180px); margin: 0 auto 24px; }
.hero-slogan {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 500;
  font-size: clamp(19px, 4.6vw, 27px); line-height: 1.32; margin-top: 14px;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--ember);
}
/* Le slogan porte .script dans le HTML : on neutralise l'héritage doré
   pour garder le cuivre, qui contraste avec le titre plutôt que le doubler. */
.hero-slogan.script { color: var(--ember); }
.hero p.lead { max-width: 540px; margin: 18px auto 0; }
.hero .actions { margin-top: 32px; }
.hero-scroll {
  position: absolute; left: 50%; bottom: 84px; transform: translateX(-50%); z-index: 2;
  width: 1px; height: 44px; background: linear-gradient(var(--gold-deep), transparent);
}
@media (min-width: 900px) { .hero-scroll { bottom: 34px; } }

/* Bandeau slogan défilant */
.strip {
  background: var(--coal); color: var(--gold);
  border-block: 1px solid var(--line);
  overflow: hidden; padding: 13px 0; --strip-speed: 46s;
}
.strip-track { display: flex; width: max-content; animation: strip var(--strip-speed) linear infinite; }
.strip-group { display: flex; flex-shrink: 0; }
.strip span {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 600; font-size: 16px;
  letter-spacing: 2.4px; text-transform: uppercase; white-space: nowrap; padding: 0 22px;
  display: inline-flex; align-items: center;
}
.strip span::after { content: ''; width: 4px; height: 4px; background: var(--ember); margin-left: 22px; flex-shrink: 0; }
@keyframes strip { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .strip-track { animation: none; } }

/* ==========================================================================
   CARTES / GRILLES
   ========================================================================== */
/* Gap de 1px + fond clair du conteneur = filet continu entre les articles,
   comme les réglures d'une carte imprimée. */
.grid { display: grid; gap: 1px; grid-template-columns: 1fr; }
@media (min-width: 620px) { .grid.g-2, .grid.g-3, .grid.g-4 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 940px) { .grid.g-3 { grid-template-columns: repeat(3, 1fr); } .grid.g-4 { grid-template-columns: repeat(4, 1fr); } }

.split { display: grid; gap: 30px; grid-template-columns: 1fr; align-items: center; }
@media (min-width: 900px) { .split { grid-template-columns: 1fr 1fr; gap: 56px; } }

/* --- Carte produit : ligne d'ardoise ---
   Les articles ne « lévitent » plus au survol. Hiérarchie nom > prix > desc. */
.grid.g-2, .grid.g-3, .grid.g-4 { background: var(--line-soft); border: 1px solid var(--line-soft); }

.dish {
  position: relative;
  background: var(--coal); display: flex; flex-direction: column;
  transition: background .22s var(--ease);
}
.dish:hover { background: var(--coal-2); }
.dish-body { padding: 22px 22px 24px; display: flex; flex-direction: column; gap: 9px; flex: 1; }
.dish-name {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 700;
  font-size: 25px; line-height: 1.1; letter-spacing: .2px;
  text-transform: uppercase; color: var(--white);
}
.dish-desc { font-size: 14.5px; color: var(--white-mut); line-height: 1.58; flex: 1; }
.dish-row { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-top: 2px; }
.price {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 700;
  font-size: 24px; letter-spacing: .4px; color: var(--gold);
  white-space: nowrap;
}

/* Visuel de remplacement (sections sans photo définitive) */
.ph {
  width: 100%; height: 100%; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 8px;
  background: var(--coal-2);
  position: relative;
}
.ph::after {
  content: ''; position: absolute; inset: 12px; border: 1px solid var(--line);
}
.ph-mark {
  font-family: 'Archivo Black', sans-serif; font-size: 34px; font-weight: 400;
  line-height: 1; color: var(--gold-deep); text-transform: uppercase;
}
.ph-lbl {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px; letter-spacing: 2.2px; text-transform: uppercase; color: var(--white-dim);
}

.badge {
  display: inline-block; background: var(--ember); color: #14100D;
  border: 0;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px; font-weight: 700; letter-spacing: 1.4px; text-transform: uppercase;
  border-radius: 0; padding: 3px 9px; vertical-align: middle;
  white-space: nowrap; line-height: 1.35;
}

/* Cartes info (chiffres / atouts) */
.stat { text-align: center; padding: 26px 16px; background: var(--coal); }
.stat-num {
  font-family: 'Archivo Black', sans-serif; font-weight: 400;
  font-size: clamp(30px, 8vw, 44px); line-height: 1; color: var(--gold);
  letter-spacing: -0.03em;
}
.stat-lbl {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13.5px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--white-dim); margin-top: 10px;
}

.feature { padding: 30px 26px; background: var(--coal); transition: background .22s var(--ease); }
.feature:hover { background: var(--coal-2); }
.feature-ico {
  width: 46px; height: 46px; border-radius: 0;
  display: flex; align-items: center; justify-content: center; font-size: 20px;
  background: transparent; border: 1px solid var(--gold-deep); color: var(--gold);
  margin-bottom: 16px;
}
.feature h3 { font-size: 20px; margin-bottom: 10px; letter-spacing: -0.01em; }
.feature p { font-size: 14.5px; color: var(--white-mut); line-height: 1.6; }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer { background: var(--coal); border-top: 1px solid var(--line); padding: 56px 0 26px; }
.footer-grid { display: grid; gap: 32px; grid-template-columns: 1fr; }
@media (min-width: 620px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1000px){ .footer-grid { grid-template-columns: 1.6fr 1fr 1.2fr 1fr; gap: 40px; } }
.footer-brand img { width: 140px; margin-bottom: 16px; }
.footer h4 {
  font-family: 'Barlow Condensed', sans-serif; font-size: 14px; font-weight: 600;
  letter-spacing: 2.2px; text-transform: uppercase; color: var(--gold-mid);
  margin-bottom: 14px; padding-bottom: 10px; border-bottom: 1px solid var(--line);
}
.footer-links a { display: flex; align-items: center; min-height: 44px; font-size: 15px; color: var(--white-mut); transition: color .22s; }
.footer-links a:hover { color: var(--gold); }
.socials { display: flex; gap: 10px; }
.socials a {
  width: var(--tap); height: var(--tap); border-radius: 0;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--line); color: var(--white-mut);
  transition: border-color .22s, color .22s;
}
.socials a:hover { border-color: var(--gold-deep); color: var(--gold); }
.socials svg { width: 19px; height: 19px; }
.footer-legal {
  border-top: 1px solid var(--line); margin-top: 34px; padding-top: 20px;
  display: flex; flex-direction: column; gap: 10px;
  font-size: 12.5px; color: var(--white-dim);
}
.footer-legal .lg { display: flex; flex-wrap: wrap; gap: 6px 16px; }
.footer-legal a { color: var(--white-dim); }
.footer-legal a:hover { color: var(--gold); }
@media (min-width: 760px) { .footer-legal { flex-direction: row; align-items: center; justify-content: space-between; } }

/* ==========================================================================
   PAGE HERO (pages internes)
   ========================================================================== */
/* Simple filet de clôture : l'ancien halo radial doré signait le « généré ». */
.page-hero { position: relative; padding: 118px 0 48px; overflow: hidden; background: var(--black); }
.page-hero::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 1px;
  background: var(--line); pointer-events: none;
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { margin-top: 16px; }
.page-hero p { margin-top: 16px; max-width: 620px; }
@media (min-width: 768px) { .page-hero { padding: 158px 0 66px; } }

/* --- Utilitaires --- */
.mt-s { margin-top: 14px; } .mt-m { margin-top: 26px; } .mt-l { margin-top: 40px; }
.round { border-radius: var(--r-xs); overflow: hidden; }
.nowrap { white-space: nowrap; }

/* Renforts d'accessibilité et de confort mobile. */
html { scroll-padding-top: 88px; }
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible { outline: 3px solid var(--gold); outline-offset: 4px; }
.hero { min-height: 100dvh; }
.hero-bg img { object-position: 58% center; opacity: .48; }
.hero::after { background: linear-gradient(90deg, rgba(11,11,12,.93) 0%, rgba(11,11,12,.72) 58%, rgba(11,11,12,.38) 100%), linear-gradient(to top, var(--black) 1%, transparent 48%); }
.home-feature-photo { border: 1px solid var(--line); aspect-ratio: 4 / 3; background: var(--coal-2); }
.home-feature-photo img { width: 100%; height: 100%; object-fit: cover; }

@media (max-width: 559px) {
  :root { --gutter: 18px; --sp-section: 56px; }
  .hero { align-items: flex-end; padding: 108px 0 44px; }
  .hero-logo { width: 118px; margin-bottom: 18px; }
  .hero-title { font-size: clamp(48px, 16vw, 62px); }
  .hero p.lead { font-size: 16px; line-height: 1.55; }
  .hero .actions { margin-top: 24px; }
  .hero-scroll { display: none; }
  .spec-list { grid-template-columns: 1fr; gap: 8px; }
  .spec-item { min-height: 58px; padding: 12px 14px; }
  .feature { padding: 24px 20px; }
  .page-hero { padding: 108px 0 40px; }
  .footer { padding-top: 44px; }
}

@media (min-width: 900px) {
  .hero .container { text-align: left; max-width: var(--container); }
  .hero-logo { margin-inline: 0; }
  .hero .actions.center { justify-content: flex-start; }
  .hero p.lead { margin-left: 0; }
  .hero::after { background: linear-gradient(90deg, rgba(11,11,12,.95) 0%, rgba(11,11,12,.8) 44%, rgba(11,11,12,.18) 100%), linear-gradient(to top, var(--black), transparent 45%); }
}

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

/* Formes souples et mouvement léger : la page garde son caractère, sans rigidité. */
:root {
  --r-xs: 14px;
  --r-sm: 18px;
  --r-md: 22px;
  --r-lg: 28px;
  --r-xl: 36px;
  --r-pill: 999px;
}

.btn, .nav-cta { border-radius: var(--r-pill); }
.btn { transition: transform .24s var(--ease), background .24s var(--ease), color .24s var(--ease), border-color .24s var(--ease), box-shadow .24s var(--ease); }
.btn:hover { transform: translateY(-2px); }
.btn-gold:hover { box-shadow: 0 12px 28px rgba(216,199,156,.16); }
.btn:active { transform: translateY(1px) scale(.98); }

.callbar { border-radius: 24px 24px 0 0; }
.callbar .btn { border-radius: 16px 16px 9px 16px; }
.socials a, .feature-ico, .info-ico { border-radius: 50%; }
.badge { border-radius: var(--r-pill); padding-inline: 11px; }
.grid.g-2, .grid.g-3, .grid.g-4 { border-radius: var(--r-lg); overflow: hidden; }
.spec-item { border-radius: 18px 8px 18px 8px; }
.home-feature-photo { border-radius: 30px 74px 30px 74px; }
.home-feature-photo img { transition: transform .7s var(--ease); }
.home-feature-photo:hover img { transform: scale(1.045); }
.ambiance .amb { border-radius: 24px 56px 24px 56px; }
.ambiance .amb:nth-child(2) { border-radius: 56px 24px 56px 24px; }
.ambiance .amb:nth-child(3) { border-radius: 48px 20px 48px 20px; }
.feature, .info-card, .form, .formula, .daily, .map { border-radius: var(--r-md); overflow: hidden; }
.field input, .field select, .field textarea { border-radius: 14px 14px 7px 14px; }
.gitem { border-radius: 26px 58px 26px 58px !important; }
.gitem:nth-child(even) { border-radius: 58px 26px 58px 26px !important; }
.gitem .zoom, .lb-close, .lb-prev, .lb-next { border-radius: 50% !important; }
.lb-frame { border-radius: var(--r-lg); overflow: hidden; }

@media (hover: hover) and (pointer: fine) {
  .dish, .feature, .info-card, .formula, .daily, .spec-item { transition: transform .3s var(--ease), background .3s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease); }
  .dish:hover, .feature:hover, .info-card:hover, .formula:hover, .daily:hover, .spec-item:hover { transform: translateY(-5px); box-shadow: 0 18px 34px rgba(0,0,0,.22); }
}

@media (prefers-reduced-motion: no-preference) {
  .hero-bg img { animation: food-pan 18s var(--ease-io) both; }
  .hero-logo { animation: logo-arrival .8s .08s var(--ease) both; }
  .hero-slogan { animation: copy-arrival .75s .26s var(--ease) both; }
  .hero .lead { animation: copy-arrival .75s .38s var(--ease) both; }
  .hero .actions { animation: copy-arrival .75s .5s var(--ease) both; }
}

@keyframes food-pan { from { transform: scale(1.08); } to { transform: scale(1); } }
@keyframes logo-arrival { from { opacity: 0; transform: translateY(18px) scale(.94); } to { opacity: 1; transform: none; } }
@keyframes copy-arrival { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }

@media (max-width: 559px) {
  .home-feature-photo { border-radius: 24px 48px 24px 48px; }
  .ambiance .amb, .ambiance .amb:nth-child(2), .ambiance .amb:nth-child(3) { border-radius: 18px 36px 18px 36px; }
  .gitem, .gitem:nth-child(even) { border-radius: 20px 40px 20px 40px !important; }
}

/* Thème clair : l'adresse devient plus accueillante et plus lisible au soleil. */
:root {
  --black: #f8f5ee;
  --coal: #fffdf8;
  --coal-2: #f0e8dc;
  --line: #dfd5c8;
  --line-soft: #ebe2d7;
  --gold: #1f4d43;
  --gold-mid: #316b5e;
  --gold-deep: #98afa5;
  --ember: #c45e40;
  --ember-dim: #9f422d;
  --white: #20332d;
  --white-mut: #55645e;
  --white-dim: #77827c;
  --shadow: 0 18px 44px -24px rgba(42, 49, 44, .24);
}

body { color: var(--white); background: var(--black); }
::selection { background: var(--ember); color: #fffdf8; }
.tile-black { background: var(--black); }
.tile-coal { background: #f0e8dc; }
.nav.scrolled { background: rgba(248,245,238,.94); box-shadow: 0 1px 0 var(--line); }
.nav-link { color: var(--white); }
.nav-link:hover, .nav-link.active { color: var(--gold); }
.nav-cta, .btn-gold { background: var(--gold); color: #fffdf8 !important; }
.nav-cta:hover, .btn-gold:hover { background: #163b33; color: #fffdf8 !important; }
.btn-ghost { border-color: var(--gold-deep); color: var(--gold); background: rgba(255,253,248,.42); }
.btn-ghost:hover { border-color: var(--gold); background: #fffdf8; color: var(--gold); }
.burger span { background: var(--gold); }
.burger.open span { background: var(--ember); }
.drawer { background: #f8f5ee; }
.drawer a { color: var(--white); }
.drawer a:hover, .drawer a.active, .drawer .drawer-foot a { color: var(--gold); }
.callbar { background: rgba(255,253,248,.96); border-top-color: var(--line); box-shadow: 0 -12px 30px rgba(42,49,44,.08); }
.callbar .btn-ghost { background: #f0e8dc; }

.hero { background: #efe4d5; }
.hero-bg img { opacity: .63; filter: saturate(.92) contrast(.98); }
.hero::after { background: linear-gradient(90deg, rgba(248,245,238,.97) 0%, rgba(248,245,238,.85) 46%, rgba(248,245,238,.22) 100%), linear-gradient(to top, rgba(248,245,238,.86), transparent 50%); }
.hero-slogan.script { color: var(--ember); }
.halal-note { border-color: rgba(31,77,67,.28); background: rgba(255,253,248,.72); color: var(--gold); }
.hero-scroll { background: linear-gradient(var(--ember), transparent); }
.eyebrow { color: var(--gold-mid); }
.eyebrow::before, .eyebrow.center::after { background: var(--ember); }
.script, .gold-text { color: var(--gold); }
.lead, .dish-desc, .feature p, .info-card address, .info-card p { color: var(--white-mut); }

.grid.g-2, .grid.g-3, .grid.g-4 { background: var(--line-soft); border-color: var(--line-soft); box-shadow: 0 10px 28px rgba(42,49,44,.04); }
.dish, .feature, .stat, .info-card, .form, .formula, .daily { background: var(--coal); }
.dish:hover, .feature:hover { background: #fffaf3; }
.spec-item { background: rgba(255,253,248,.75); border-color: var(--line); }
.spec-item:hover { border-color: var(--ember); background: #fffdf8; }
.spec-item .em { color: var(--ember); }
.feature-ico, .info-ico { border-color: var(--gold-deep); color: var(--gold); background: #f5ede1; }
.stat-num, .price { color: var(--gold); }
.badge { background: var(--ember); color: #fffdf8; }
.home-feature-photo { background: #ece1d4; border-color: #e4d5c6; box-shadow: 0 20px 44px rgba(57,52,43,.16); }
.ambiance .amb { border-color: #e4d5c6; box-shadow: 0 12px 24px rgba(57,52,43,.1); }
.text-link { color: var(--gold); }
.text-link:hover { border-color: var(--ember); }
.footer { background: #efe7da; border-top-color: var(--line); }
.footer h4 { color: var(--gold); border-bottom-color: var(--line); }
.footer-links a, .footer-legal, .footer-legal a, .caption { color: var(--white-mut); }
.footer-links a:hover, .footer-legal a:hover { color: var(--gold); }
.socials a { border-color: var(--line); color: var(--gold); background: rgba(255,253,248,.54); }
.socials a:hover { border-color: var(--ember); color: var(--ember); }
.footer-legal { border-top-color: var(--line); }
.page-hero { background: #f0e8dc; }
.page-hero::after { background: var(--line); }
.catnav { background: rgba(248,245,238,.9) !important; border-color: var(--line) !important; }
.catnav a { background: #fffdf8 !important; border-color: var(--line) !important; color: var(--gold) !important; }
.catnav a:hover, .catnav a.active { background: var(--gold) !important; color: #fffdf8 !important; }
.field input, .field select, .field textarea { background: #fffdf8 !important; border-color: var(--line) !important; color: var(--white) !important; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--gold) !important; box-shadow: 0 0 0 3px rgba(31,77,67,.12) !important; }
.map { border-color: var(--line); }
.gitem { border-color: #e2d4c4 !important; }

@media (max-width: 899px) {
  main { padding-bottom: 88px; }
  .callbar { padding: 10px var(--gutter) calc(10px + env(safe-area-inset-bottom)); }
  .callbar .btn { min-height: 52px; font-size: 15px; letter-spacing: .6px; }
  .hero { min-height: 82dvh; }
  .hero::after { background: linear-gradient(to top, rgba(248,245,238,.97) 14%, rgba(248,245,238,.86) 53%, rgba(248,245,238,.35) 100%); }
}

/* Palette reprise de l'effigie Ô Snack : encre noire et doré, sans vert. */
:root {
  --black: #fbf8f1;
  --coal: #fffdfa;
  --coal-2: #f3eddf;
  --line: #e2d7c5;
  --line-soft: #eee6d9;
  --gold: #9a742f;
  --gold-mid: #76551e;
  --gold-deep: #cdb982;
  --ember: #b88632;
  --ember-dim: #8f651f;
  --white: #171715;
  --white-mut: #4d4a43;
  --white-dim: #706a5d;
}

body, .nav-link, .drawer a { color: #171715; }
.nav-link:hover, .nav-link.active, .drawer a:hover, .drawer a.active, .drawer .drawer-foot a { color: var(--gold); }
.nav-cta, .btn-gold { background: #d8c79c; color: #171715 !important; }
.nav-cta:hover, .btn-gold:hover { background: #171715; color: #d8c79c !important; }
.btn-ghost { color: #171715; border-color: var(--gold-deep); }
.btn-ghost:hover { color: #171715; border-color: var(--gold); }
.burger span { background: #171715; }
.burger.open span { background: var(--gold); }
.hero { background: #f1e8d8; }
.hero::after { background: linear-gradient(90deg, rgba(251,248,241,.97) 0%, rgba(251,248,241,.84) 46%, rgba(251,248,241,.2) 100%), linear-gradient(to top, rgba(251,248,241,.86), transparent 50%); }
.hero-slogan.script, .script, .gold-text, .eyebrow, .text-link { color: var(--gold); }
.eyebrow::before, .eyebrow.center::after { background: var(--gold); }
.halal-note { color: #171715; border-color: rgba(154,116,47,.34); }
.hero-scroll { background: linear-gradient(var(--gold), transparent); }
.spec-item .em, .stat-num, .price, .feature-ico, .info-ico, .footer h4, .socials a { color: var(--gold); }
.badge { background: #171715; color: #d8c79c; }
.footer-links a:hover, .footer-legal a:hover { color: var(--gold); }
.catnav a { color: #171715 !important; }
.catnav a:hover, .catnav a.active { background: #171715 !important; color: #d8c79c !important; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--gold) !important; box-shadow: 0 0 0 3px rgba(154,116,47,.14) !important; }

@media (max-width: 899px) {
  .hero::after { background: linear-gradient(to top, rgba(251,248,241,.97) 14%, rgba(251,248,241,.86) 53%, rgba(251,248,241,.3) 100%); }
}

/* Mobile : barre supérieure noire pour encadrer clairement le logo. */
@media (max-width: 899px) {
  .nav, .nav.scrolled { background: #171715; box-shadow: 0 1px 0 rgba(216,199,156,.3); }
  .burger span, .burger.open span { background: #d8c79c; }
}

/* Au défilement, la navigation passe en noir sur tous les écrans. */
.nav.scrolled { background: #171715; box-shadow: 0 1px 0 rgba(216,199,156,.32); }
.nav.scrolled .nav-link { color: #fffdf8; }
.nav.scrolled .nav-link:hover, .nav.scrolled .nav-link.active { color: #d8c79c; }
.nav.scrolled .nav-cta { background: #d8c79c; color: #171715 !important; }
