/* ==========================================================================
   M. PATACHON — Design System
   ========================================================================== */

/* ---- Fonts -------------------------------------------------------------- */
/* Corps mono + corps secondaire : équivalents Google gratuits */
@import url('https://fonts.googleapis.com/css2?family=Space+Mono:wght@400;700&family=Josefin+Sans:wght@400;600;700&display=swap');

/* Titres / nav : Antarctican Headline (police officielle M. Patachon) */
@font-face {
  font-family: 'Antarctican Headline';
  src: url('assets/fonts/AntarcticanHeadline-Medium.woff2') format('woff2'),
       url('assets/fonts/AntarcticanHeadline-Medium.woff') format('woff');
  font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Antarctican Headline';
  src: url('assets/fonts/AntarcticanHeadline-Semibold.woff2') format('woff2'),
       url('assets/fonts/AntarcticanHeadline-Semibold.woff') format('woff');
  font-weight: 600; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Antarctican Headline';
  src: url('assets/fonts/AntarcticanHeadline-Bold.woff2') format('woff2'),
       url('assets/fonts/AntarcticanHeadline-Bold.woff') format('woff');
  font-weight: 700; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Antarctican Headline';
  src: url('assets/fonts/AntarcticanHeadline-Black.woff2') format('woff2'),
       url('assets/fonts/AntarcticanHeadline-Black.woff') format('woff');
  font-weight: 800; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Antarctican Headline';
  src: url('assets/fonts/AntarcticanHeadline-Ultrablack.woff2') format('woff2'),
       url('assets/fonts/AntarcticanHeadline-Ultrablack.woff') format('woff');
  font-weight: 900; font-style: normal; font-display: swap;
}

/* ---- Variables ---------------------------------------------------------- */
:root {
  --marine: #13377D;
  --marine-light: #1e4aa0;   /* nuance pour survols */
  --turquoise: #FFFFFF;      /* accent = blanc (palette marine + blanc) */
  --white: #FFFFFF;
  --grey: #4C4C4C;

  --font-title: 'Antarctican Headline', 'Arial Black', sans-serif;   /* titres / nav */
  --font-huge: 'Antarctican Headline', 'Arial Black', sans-serif;    /* très gros titres */
  --font-mono: 'Space Mono', monospace;                 /* corps machine à écrire */
  --font-body: 'Josefin Sans', sans-serif;              /* corps secondaire */

  --header-h: 92px;
  --maxw: 1200px;
  --radius-pill: 999px;
}

/* ---- Reset -------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--grey);
  background: var(--marine);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }

/* ---- Layout helpers ----------------------------------------------------- */
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.section { padding: 90px 0; }
.section--marine { background: var(--marine); color: var(--white); }
.section--white  { background: var(--white);  color: var(--grey); }
.text-center { text-align: center; }

/* ---- Typographie -------------------------------------------------------- */
.title-xl {
  font-family: var(--font-huge);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 0.95;
  letter-spacing: 1px;
  font-size: clamp(2.6rem, 8vw, 8rem);
  margin: 0 0 24px;
}
.title-lg {
  font-family: var(--font-title);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1;
  letter-spacing: 0.5px;
  font-size: clamp(2rem, 5vw, 4rem);
  margin: 0 0 24px;
}
.title-md {
  font-family: var(--font-title);
  font-weight: 800;
  text-transform: uppercase;
  font-size: clamp(1.3rem, 3vw, 2rem);
  margin: 0 0 16px;
}
.mono {
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.7;
  font-size: clamp(0.95rem, 1.4vw, 1.15rem);
}
.eyebrow {
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.8rem;
  color: var(--turquoise);
  margin: 0 0 12px;
}

/* ---- Boutons pill ------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--font-title);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  font-size: 0.9rem;
  line-height: 1;
  height: 50px;
  padding: 0 28px;
  border-radius: var(--radius-pill);
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, background .2s ease, color .2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
/* blanc sur fond marine */
.btn--white { background: var(--white); color: var(--marine); }
.btn--white:hover { background: var(--marine); color: var(--white); border-color: var(--white); }
/* marine sur fond blanc */
.btn--marine { background: var(--marine); color: var(--white); }
.btn--marine:hover { background: var(--marine-light); color: var(--white); }
/* contour */
.btn--outline-white { background: transparent; color: var(--white); border-color: var(--white); }
.btn--outline-white:hover { background: var(--white); color: var(--marine); }

/* ==========================================================================
   HEADER
   ========================================================================== */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--header-h);
  background: var(--marine);
  display: flex; align-items: center;
  box-shadow: 0 2px 14px rgba(0,0,0,.15);
}
.header .container { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.header__logo img { height: 60px; width: auto; }
.nav { display: flex; align-items: center; gap: 34px; }
.nav__link {
  font-family: var(--font-title);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.95rem;
  color: var(--white);
  transition: color .2s ease;
}
.nav__link:hover, .nav__link.is-active { color: var(--turquoise); }
.header__cta { display: flex; align-items: center; gap: 16px; }

/* Sélecteur de langue (dropdown) */
.lang-switch { position: relative; display: inline-block; }
.lang-flag { display: inline-block; width: 17px; height: 12px; border-radius: 2px; background-size: cover; background-position: center; box-shadow: 0 0 0 1px rgba(0,0,0,.14); flex: 0 0 auto; }
.lang-flag[data-lang-flag="fr"] { background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%203%202%27%3E%3Crect%20width%3D%273%27%20height%3D%272%27%20fill%3D%27%23fff%27%2F%3E%3Crect%20width%3D%271%27%20height%3D%272%27%20fill%3D%27%230055A4%27%2F%3E%3Crect%20x%3D%272%27%20width%3D%271%27%20height%3D%272%27%20fill%3D%27%23EF4135%27%2F%3E%3C%2Fsvg%3E"); }
.lang-flag[data-lang-flag="en"] { background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2060%2030%27%3E%3Crect%20width%3D%2760%27%20height%3D%2730%27%20fill%3D%27%23012169%27%2F%3E%3Cpath%20d%3D%27M0%2C0%20L60%2C30%20M60%2C0%20L0%2C30%27%20stroke%3D%27%23fff%27%20stroke-width%3D%278%27%2F%3E%3Cpath%20d%3D%27M0%2C0%20L60%2C30%20M60%2C0%20L0%2C30%27%20stroke%3D%27%23C8102E%27%20stroke-width%3D%274%27%2F%3E%3Cpath%20d%3D%27M30%2C0%20V30%20M0%2C15%20H60%27%20stroke%3D%27%23fff%27%20stroke-width%3D%2710%27%2F%3E%3Cpath%20d%3D%27M30%2C0%20V30%20M0%2C15%20H60%27%20stroke%3D%27%23C8102E%27%20stroke-width%3D%276%27%2F%3E%3C%2Fsvg%3E"); }
.lang-flag[data-lang-flag="es"] { background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%203%202%27%3E%3Crect%20width%3D%273%27%20height%3D%272%27%20fill%3D%27%23AA151B%27%2F%3E%3Crect%20y%3D%270.5%27%20width%3D%273%27%20height%3D%271%27%20fill%3D%27%23F1BF00%27%2F%3E%3C%2Fsvg%3E"); }
.lang-flag[data-lang-flag="de"] { background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%205%203%27%3E%3Crect%20width%3D%275%27%20height%3D%273%27%20fill%3D%27%23FFCE00%27%2F%3E%3Crect%20width%3D%275%27%20height%3D%272%27%20fill%3D%27%23DD0000%27%2F%3E%3Crect%20width%3D%275%27%20height%3D%271%27%20fill%3D%27%23000%27%2F%3E%3C%2Fsvg%3E"); }

.lang-switch__toggle { display: inline-flex; align-items: center; gap: 7px; font-family: var(--font-mono); font-size: .7rem; letter-spacing: .5px; color: #fff; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.26); padding: 6px 10px; border-radius: 999px; cursor: pointer; transition: background .2s var(--ease); }
.lang-switch__toggle:hover { background: rgba(255,255,255,.16); }
.lang-caret { width: 9px; height: 9px; margin-left: -1px; transition: transform .3s var(--ease); opacity: .75; }
.lang-switch.is-open .lang-caret { transform: rotate(180deg); }
.lang-switch__menu { position: absolute; top: calc(100% + 8px); right: 0; min-width: 158px; background: #fff; border-radius: 14px; box-shadow: 0 18px 42px rgba(0,0,0,.3); padding: 6px; opacity: 0; visibility: hidden; transform: translateY(-6px); transition: opacity .25s var(--ease), transform .25s var(--ease), visibility .25s var(--ease); z-index: 60; }
.lang-switch.is-open .lang-switch__menu { opacity: 1; visibility: visible; transform: translateY(0); }
.lang-switch__menu button { display: flex; align-items: center; gap: 10px; width: 100%; text-align: left; font-family: var(--font-mono); font-size: .74rem; letter-spacing: .3px; text-transform: uppercase; color: var(--marine); background: none; border: 0; padding: 9px 12px; border-radius: 9px; cursor: pointer; transition: background .18s var(--ease); }
.lang-switch__menu button:hover { background: rgba(19,55,125,.07); }
.lang-switch__menu button.is-active { background: var(--marine); color: #fff; }

.lang-switch--nav { display: none; }
@media (max-width: 860px) {
  .lang-switch--head { display: none; }
  /* Dans l'overlay mobile : pas de dropdown (il débordait hors écran).
     On affiche les 4 langues en ligne, toujours visibles. */
  .lang-switch--nav { display: block; margin-top: 30px; }
  .lang-switch--nav .lang-switch__toggle { display: none; }
  .lang-switch--nav .lang-switch__menu {
    position: static; opacity: 1; visibility: visible; transform: none;
    display: flex; flex-wrap: wrap; justify-content: center; gap: 8px;
    min-width: 0; background: transparent; box-shadow: none; padding: 0;
  }
  .lang-switch--nav .lang-switch__menu button {
    width: auto; color: #fff; background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.24); border-radius: 999px; padding: 9px 15px;
  }
  .lang-switch--nav .lang-switch__menu button:hover { background: rgba(255,255,255,.16); }
  .lang-switch--nav .lang-switch__menu button.is-active { background: #fff; color: var(--marine); border-color: #fff; }
}

/* burger toggle (mobile) */
.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: 0; cursor: pointer; padding: 8px;
}
.nav-toggle span { width: 26px; height: 3px; background: var(--white); border-radius: 3px; transition: .3s; }
.nav-toggle.is-open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* offset pour header fixe */
.page { padding-top: var(--header-h); }

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  position: relative;
  min-height: calc(100vh - var(--header-h));
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  background: var(--marine) center/cover no-repeat;
  color: var(--white);
  padding: 60px 24px;
}
.hero::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(19,55,125,.35), rgba(19,55,125,.65));
}
.hero__inner { position: relative; z-index: 2; max-width: 720px; }
.hero__logo { width: min(480px, 80vw); margin: 0 auto 34px; filter: drop-shadow(0 6px 20px rgba(0,0,0,.3)); }

/* ==========================================================================
   SECTIONS génériques
   ========================================================================== */
.split {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
.split__media img { border-radius: 24px; width: 100%; object-fit: cover; }
.rounded { border-radius: 24px; }
.circle { border-radius: 50%; }

/* ---- Bandeau slides ----------------------------------------------------- */
.strip {
  display: flex; gap: 0; overflow-x: auto; scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch; scrollbar-width: none;
}
.strip::-webkit-scrollbar { display: none; }
.strip img {
  flex: 0 0 auto; width: 33.333vw; max-width: 460px; height: 340px;
  object-fit: cover; scroll-snap-align: start;
}

/* ---- Restaurants -------------------------------------------------------- */
.resto-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.resto-card { text-align: center; }
.resto-card__img { width: 260px; height: 260px; object-fit: cover; border-radius: 50%; margin: 0 auto 24px; }
.resto-card h3 { font-family: var(--font-title); font-weight: 900; text-transform: uppercase; font-size: 1.7rem; margin: 0 0 10px; color: var(--turquoise); }
.resto-card p { font-family: var(--font-mono); text-transform: uppercase; font-size: .9rem; letter-spacing: 1px; margin: 6px 0; }
.resto-card a.phone { color: var(--white); font-weight: 700; }

/* ---- Produits (carte) --------------------------------------------------- */
.products { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px; }
.product-card {
  background: var(--white); border-radius: 24px; overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,.12); color: var(--grey);
}
.product-card__img { width: 100%; height: 280px; object-fit: cover; }
.product-card__body { padding: 26px; }
.product-card h3 { font-family: var(--font-title); font-weight: 900; text-transform: uppercase; font-size: 1.6rem; margin: 0 0 6px; color: var(--marine); }
.product-card__price { font-family: var(--font-huge); color: var(--turquoise); font-size: 1.8rem; margin: 12px 0 0; }
.product-card p.desc { font-family: var(--font-mono); font-size: .85rem; line-height: 1.6; }

/* ==========================================================================
   FORMULAIRE (événementiel)
   ========================================================================== */
.form {
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
  max-width: 760px; margin: 0 auto;
}
.form .full { grid-column: 1 / -1; }
.form label { display: block; font-family: var(--font-mono); text-transform: uppercase; font-size: .75rem; letter-spacing: 1px; margin-bottom: 6px; }
.form input, .form select, .form textarea {
  width: 100%; padding: 14px 16px; border: 2px solid rgba(255,255,255,.4);
  border-radius: 14px; background: rgba(255,255,255,.08); color: var(--white);
  font-family: var(--font-body); font-size: 1rem;
}
.form textarea { min-height: 120px; resize: vertical; }
.form input::placeholder, .form textarea::placeholder { color: rgba(255,255,255,.5); }
.form select option { color: var(--grey); }
.form input:focus, .form select:focus, .form textarea:focus { outline: none; border-color: var(--turquoise); }

/* ==========================================================================
   INSTAGRAM
   ========================================================================== */
.ig-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 14px; }
.ig-grid a { display: block; aspect-ratio: 1; border-radius: 16px; overflow: hidden; background: rgba(255,255,255,.06); }
.ig-grid img { width: 100%; height: 100%; object-fit: cover; }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer { background: var(--marine); color: var(--white); padding: 60px 0 30px; text-align: center; border-top: 1px solid rgba(255,255,255,.12); }
.footer__logo { width: 150px; margin: 0 auto 26px; }
.footer .nav { justify-content: center; flex-wrap: wrap; margin-bottom: 22px; }
.footer__links { display: flex; gap: 26px; justify-content: center; flex-wrap: wrap; margin-bottom: 24px; }
.footer__links a { font-family: var(--font-mono); text-transform: uppercase; letter-spacing: 1px; font-size: .8rem; }
.footer__copy { font-family: var(--font-mono); font-size: .72rem; opacity: .6; letter-spacing: 1px; }
.signature { font-family: var(--font-title); font-weight: 800; text-transform: uppercase; color: var(--turquoise); letter-spacing: 1px; margin-bottom: 24px; }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 860px) {
  /* Menu overlay plein écran */
  .nav {
    position: fixed; inset: 0; z-index: 999;
    flex-direction: column; align-items: center; justify-content: center; gap: 6px;
    padding: var(--header-h) 24px 40px;
    background: var(--marine);
    opacity: 0; visibility: hidden; transform: translateY(-10px);
    transition: opacity .35s var(--ease), transform .45s var(--ease), visibility .35s;
  }
  .nav.is-open { opacity: 1; visibility: visible; transform: none; }
  .nav__link {
    width: auto; text-align: center; padding: 12px 8px;
    font-family: var(--font-huge); font-weight: 900; font-size: clamp(2.2rem, 9vw, 3rem);
    color: #fff; letter-spacing: -.5px; line-height: 1.1;
    opacity: 0; transform: translateY(18px);
    transition: opacity .4s var(--ease), transform .5s var(--ease), color .2s ease;
  }
  .nav.is-open .nav__link { opacity: 1; transform: none; }
  .nav.is-open .nav__link:nth-child(1) { transition-delay: .08s; }
  .nav.is-open .nav__link:nth-child(2) { transition-delay: .15s; }
  .nav.is-open .nav__link:nth-child(3) { transition-delay: .22s; }
  .nav__link::after { display: none; }
  /* page active : petit repère qui slide, discret */
  .nav__link.is-active { color: #fff; }
  .nav__link.is-active::after {
    display: block; content: '';
    position: absolute; left: 50%; bottom: 2px;
    width: 30px; height: 3px; border-radius: 3px; background: #fff;
    transform: translateX(-50%) scaleX(0); transform-origin: center;
    transition: transform .55s var(--ease) .38s;
  }
  .nav.is-open .nav__link.is-active::after { transform: translateX(-50%) scaleX(1); }
  .nav-toggle { display: flex; position: relative; z-index: 1001; }
  /* menu ouvert : header opaque + pas de backdrop-filter (sinon l'overlay ne couvre pas tout l'écran) */
  .header.nav-open { background: var(--marine) !important; backdrop-filter: none !important; -webkit-backdrop-filter: none !important; }
  .header__cta .btn { height: 42px; padding: 0 18px; font-size: .78rem; }

  .split { grid-template-columns: 1fr; gap: 34px; }
  .split--reverse .split__media { order: -1; }
  .resto-grid { grid-template-columns: 1fr; gap: 50px; }
  .products { grid-template-columns: 1fr; }
  .form { grid-template-columns: 1fr; }
  .strip img { width: 78vw; height: 260px; }
  .section { padding: 60px 0; }
}


/* ==========================================================================
   MODERNISATION — ANIMATIONS & COMPOSANTS 2026
   (bloc appendé : surcharge volontairement les règles ci-dessus)
   ========================================================================== */
:root {
  --ease: cubic-bezier(.16,1,.3,1);
  --ease-back: cubic-bezier(.34,1.56,.64,1);
  --shadow-lg: 0 24px 60px rgba(0,0,0,.28);
  --shadow-md: 0 14px 36px rgba(0,0,0,.16);
}

/* ---- Scroll-reveal ------------------------------------------------------ */
[data-reveal] {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
  transition-delay: calc(var(--i, 0) * 90ms);
  will-change: opacity, transform;
}
[data-reveal="left"]  { transform: translateX(-40px); }
[data-reveal="right"] { transform: translateX(40px); }
[data-reveal="zoom"]  { transform: scale(.92); }
[data-reveal].is-visible { opacity: 1; transform: none; }

/* ---- HEADER moderne : transparent puis solide au scroll ----------------- */
.header {
  transition: background .35s var(--ease), box-shadow .35s var(--ease), height .35s var(--ease);
}
body.home .header { background: linear-gradient(180deg, rgba(11,30,70,.72) 0%, rgba(11,30,70,.42) 45%, rgba(11,30,70,0) 100%); box-shadow: none; }
body.home .header.is-scrolled,
.header.is-scrolled {
  background: rgba(19,55,125,.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 8px 30px rgba(0,0,0,.28);
  height: 74px;
}
.header__logo img { transition: height .35s var(--ease); }
.header.is-scrolled .header__logo img { height: 48px; }
.nav__link { position: relative; }
.nav__link::after {
  content: ''; position: absolute; left: 0; bottom: -6px;
  width: 100%; height: 2px; background: var(--turquoise);
  transform: scaleX(0); transform-origin: left; transition: transform .3s var(--ease);
}
.nav__link:hover::after, .nav__link.is-active::after { transform: scaleX(1); }

/* Bouton pill : effet de brillance + press */
.btn { position: relative; overflow: hidden; }
.btn::before {
  content: ''; position: absolute; top: 0; left: -120%; width: 60%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,.45), transparent);
  transform: skewX(-18deg); transition: left .6s var(--ease); pointer-events: none;
}
.btn:hover::before { left: 130%; }
.btn:active { transform: translateY(0) scale(.97); }

/* ==========================================================================
   HERO full-bleed animé
   ========================================================================== */
body.home .page { padding-top: 0; }
.hero {
  min-height: 100svh;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: var(--header-h) 0 0;  /* réserve la barre de menu ; pas de margin négative (le fond .hero__bg est en inset:0 derrière le header) */
  background: var(--marine);
}
.hero__bg {
  position: absolute; inset: 0; z-index: 0;
  background-position: center 30%; background-size: cover; background-repeat: no-repeat;
  transform: scale(1.12); will-change: transform;
  animation: heroZoom 14s var(--ease) forwards;
}
@keyframes heroZoom { to { transform: scale(1); } }
.hero::after {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(180deg, rgba(19,55,125,.55) 0%, rgba(19,55,125,.18) 30%, rgba(11,30,70,.55) 68%, rgba(11,30,70,.94) 100%);
}
.hero__inner {
  position: relative; z-index: 2;
  width: 100%; max-width: var(--maxw); margin: 0 auto;
  padding: clamp(16px, 3vh, 40px) 24px clamp(48px, 8vh, 92px);
  display: flex; flex-direction: column; align-items: center; gap: clamp(16px, 2.6vh, 26px);
}
.hero__logo {
  width: min(500px, 82vw); max-height: min(42vh, 300px); object-fit: contain;
  margin: 0 0 4px;
  filter: drop-shadow(0 10px 30px rgba(0,0,0,.45));
  opacity: 0; transform: translateY(40px);
  animation: heroUp 1s var(--ease) .25s forwards;
}
.hero__tagline {
  color: rgba(255,255,255,.92);
  opacity: 0; transform: translateY(30px);
  animation: heroUp .9s var(--ease) .5s forwards;
}
.hero__cta {
  display: flex; gap: 16px; flex-wrap: wrap;
  opacity: 0; transform: translateY(30px);
  animation: heroUp .9s var(--ease) .7s forwards;
}
@keyframes heroUp { to { opacity: 1; transform: none; } }

/* Sceau "élu meilleur burger" — texte circulaire tournant */
.hero__seal {
  position: absolute; z-index: 3;
  bottom: clamp(96px, 15vh, 150px); right: clamp(22px, 5vw, 78px);
  width: clamp(120px, 12vw, 158px); aspect-ratio: 1;
  display: grid; place-items: center;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--marine);
  box-shadow: var(--shadow-md);
  animation: badgePop .6s var(--ease-back) 1s both, floaty 6s ease-in-out 1.6s infinite;
}
.hero__seal svg {
  position: absolute; inset: 0; width: 100%; height: 100%;
  animation: spin 20s linear infinite;
}
.hero__seal text {
  fill: var(--marine);
  font-family: var(--font-title); font-weight: 800; text-transform: uppercase;
  font-size: 13.5px; letter-spacing: 1.2px;
}
.hero__seal-head {
  position: relative; z-index: 1;
  width: 46%; height: auto;
  filter: drop-shadow(0 2px 5px rgba(0,0,0,.18));
}
@keyframes badgePop { from { opacity: 0; transform: scale(0); } to { opacity: 1; transform: scale(1); } }
@keyframes spin { to { transform: rotate(360deg); } }

/* Indice de scroll */
.hero__scroll { display: none; }  /* indicateur "souris" retiré (retour client) */
.hero__scroll::before {
  content: ''; position: absolute; top: 8px; left: 50%; width: 4px; height: 8px;
  background: #fff; border-radius: 4px; transform: translateX(-50%);
  animation: scrollDot 1.8s ease-in-out infinite;
}
@keyframes scrollDot { 0%{opacity:0;transform:translate(-50%,0);} 40%{opacity:1;} 80%{opacity:0;transform:translate(-50%,14px);} 100%{opacity:0;} }
@keyframes floaty { 0%,100%{ transform: translateY(0);} 50%{ transform: translateY(-9px);} }

/* ==========================================================================
   MARQUEE (bandeau texte défilant)
   ========================================================================== */
.marquee {
  background: var(--turquoise); color: var(--marine);
  padding: 16px 0; overflow: hidden; white-space: nowrap;
  border-top: 3px solid var(--marine); border-bottom: 3px solid var(--marine);
}
.marquee__track { display: inline-flex; gap: 0; animation: marquee 26s linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee span {
  font-family: var(--font-huge); font-weight: 900; text-transform: uppercase;
  font-size: clamp(1.3rem, 3vw, 2.4rem); letter-spacing: 1px; padding: 0 26px;
}
.marquee span::after {
  content: ''; display: inline-block; vertical-align: middle;
  width: 1.5em; height: 1.5em; margin: 0 0 .15em 52px;
  background-position: center; background-size: contain; background-repeat: no-repeat;
  background-image: url('assets/icons/burger.png');
}
.marquee span:nth-of-type(4n+2)::after { background-image: url('assets/icons/fries.png'); }
.marquee span:nth-of-type(4n+3)::after { background-image: url('assets/icons/patty.png'); }
.marquee span:nth-of-type(4n+4)::after { background-image: url('assets/icons/wheat.png'); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---- Bandeau photos : marquee auto (remplace le scroll manuel) ---------- */
.photo-marquee { overflow: hidden; background: var(--marine); }
.photo-marquee__track { display: flex; width: max-content; animation: marquee 45s linear infinite; }
/* défile en continu, ne s'arrête jamais (pas de pause au survol) */
.photo-marquee figure { margin: 0; flex: 0 0 auto; overflow: hidden; }
.photo-marquee img {
  width: clamp(240px, 26vw, 380px); height: clamp(300px, 34vw, 460px);
  object-fit: cover; transition: transform .6s var(--ease); filter: saturate(1.05);
}
.photo-marquee figure:hover img { transform: scale(1.06); }

/* ==========================================================================
   SPLIT / MEDIA modernisés
   ========================================================================== */
.split__media { position: relative; }
.split__media img {
  border-radius: 26px; box-shadow: var(--shadow-lg);
  transition: transform .7s var(--ease);
}
.media-frame { overflow: hidden; border-radius: 26px; }
.media-frame img { border-radius: 0; }
.media-frame:hover img { transform: scale(1.05); }

/* Badge rotatif à côté du visuel "c'est bon" */
.sticker {
  position: absolute; z-index: 4; bottom: -28px; left: -28px;
  width: clamp(110px, 12vw, 150px); aspect-ratio: 1; border-radius: 50%;
  display: grid; place-items: center; text-align: center;
  background: var(--marine); color: #fff;
  font-family: var(--font-title); font-weight: 900; text-transform: uppercase;
  font-size: clamp(.6rem,.95vw,.75rem); line-height: 1.2; padding: 12px;
  box-shadow: var(--shadow-md); border: 3px solid var(--turquoise);
  animation: floaty 6s ease-in-out infinite;
}

/* ==========================================================================
   RESTAURANTS — cartes avec hover
   ========================================================================== */
.resto-card {
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.12);
  border-radius: 26px; padding: 40px 26px 34px;
  transition: transform .4s var(--ease), background .4s var(--ease), border-color .4s var(--ease);
}
.resto-card:hover { transform: translateY(-8px); background: rgba(255,255,255,.09); border-color: var(--turquoise); }
.resto-card__img { transition: transform .5s var(--ease); border: 4px solid rgba(255,255,255,.15); }
.resto-card:hover .resto-card__img { transform: scale(1.05); border-color: var(--turquoise); }

/* ==========================================================================
   PRODUITS / INSTAGRAM hover
   ========================================================================== */
.product-card { transition: transform .4s var(--ease), box-shadow .4s var(--ease); }
.product-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.product-card .media-frame img { height: 280px; width: 100%; object-fit: cover; }

.ig-grid a { position: relative; }
.ig-grid img { transition: transform .6s var(--ease); }
.ig-grid a:hover img { transform: scale(1.08); }
.ig-grid a::after {
  content: '↗'; position: absolute; inset: 0; display: grid; place-items: center;
  font-family: var(--font-title); font-size: 2rem; color: #fff;
  background: rgba(19,55,125,.45); opacity: 0; transition: opacity .3s var(--ease);
}
.ig-grid a:hover::after { opacity: 1; }

/* ==========================================================================
   SECTION rythme / accents
   ========================================================================== */
.section { position: relative; }
.eyebrow { display: inline-flex; align-items: center; gap: 10px; }
.eyebrow::before { content: ''; width: 26px; height: 2px; background: var(--turquoise); display: inline-block; }

/* ==========================================================================
   RESPONSIVE — ajustements modernisation
   ========================================================================== */
@media (max-width: 860px) {
  .hero__inner { padding-top: calc(var(--header-h) + 30px); padding-bottom: 52px; gap: 16px; }
  .hero__logo { width: min(340px, 76vw); max-height: 34vh; }
  /* le sceau chevauchait les boutons sur mobile — masqué ici (l'info est reprise dans le bandeau défilant) */
  .hero__seal { display: none; }
  .sticker { left: 50%; transform: translateX(-50%); bottom: -24px; }
  .photo-marquee img { width: 62vw; height: 78vw; }
}

/* ==========================================================================
   ACCESSIBILITÉ — mouvement réduit
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  [data-reveal] { opacity: 1 !important; transform: none !important; }
  .hero__bg { transform: scale(1); }
  /* Le bandeau photos doit défiler en continu même en "réduire les animations" (demandé) */
  .photo-marquee__track { animation-duration: 45s !important; animation-iteration-count: infinite !important; }
}

/* ==========================================================================
   PALETTE MARINE + BLANC — accents contextuels sur fond clair
   (l'accent global est blanc ; sur les sections/cartes blanches il passe en marine)
   ========================================================================== */
.section--white .eyebrow { color: var(--marine); }
.section--white .eyebrow::before { background: var(--marine); }
.product-card__price { color: var(--marine); }

/* ==========================================================================
   TITRES H3 (cartes) — typo moderne (géométrique) en contraste des gros titres
   ========================================================================== */
.resto-card h3,
.product-card h3 {
  font-family: var(--font-body);       /* Josefin Sans, géométrique */
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.resto-card h3 { font-size: 1.45rem; }
.product-card h3 { font-size: 1.35rem; letter-spacing: 1.5px; }

/* ==========================================================================
   DA "AFFICHE" — grotesque XL (full marine)
   ========================================================================== */

/* Titres un peu plus gros et resserrés (feel poster) */
.title-xl { letter-spacing: -1px; line-height: .9; }
.title-lg { font-size: clamp(2.2rem, 5.4vw, 4.4rem); letter-spacing: -.5px; line-height: .95; }

/* Kicker : petit label mono en capitales (moderne, sobre) */
.eyebrow {
  font-family: var(--font-mono);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: .8rem;
  line-height: 1.2;
  margin-bottom: 12px;
}
.eyebrow::before { display: inline-block; }
.section--marine .eyebrow, .eyebrow { color: #fff; }
.section--white .eyebrow { color: var(--marine); }

/* Signature (footer) — police d'affichage Antarctican */
.signature {
  font-family: var(--font-title); font-weight: 800;
  text-transform: uppercase; letter-spacing: 1px;
  font-size: clamp(1rem, 1.7vw, 1.35rem); color: #fff;
}

/* Bandeau de tagline statique (façon "BIG BUNS · JUICY PATTIES · ZERO BS") */
.tagline-row {
  display: flex; flex-wrap: wrap; justify-content: center; align-items: center;
  gap: 10px 26px; margin-top: 22px;
  font-family: var(--font-mono); text-transform: uppercase;
  letter-spacing: 3px; font-size: clamp(.72rem, 1.1vw, .9rem);
}
.tagline-row span { position: relative; white-space: nowrap; }
.tagline-row span + span::before {
  content: ''; position: absolute; left: -15px; top: 50%;
  width: 5px; height: 5px; border-radius: 50%; transform: translateY(-50%);
  background: currentColor; opacity: .5;
}
.section--white .tagline-row { color: var(--marine); }

.hero__tagline { letter-spacing: 3px; }

/* "Badge sans badge" : mot tamponné sur un visuel (Antarctican, incliné) */
.stamp {
  position: absolute; z-index: 4;
  font-family: var(--font-title); font-weight: 900; text-transform: uppercase;
  letter-spacing: .5px; color: #fff;
  font-size: clamp(1.25rem, 2.3vw, 1.9rem); line-height: .95;
  transform: rotate(-4deg);
  text-shadow: 0 2px 12px rgba(0,0,0,.65);
  pointer-events: none;
}
.stamp--tl { top: 24px; left: 24px; }
.stamp--bl { bottom: 24px; left: 24px; }
.stamp--br { bottom: 24px; right: 24px; text-align: right; }

/* ==========================================================================
   PICTOS DE MARQUE (brandboard) — un peu partout
   ========================================================================== */
/* Kicker : petit filet devant le sous-titre */
.eyebrow { gap: 12px; }

/* Sceau : le burger un poil plus compact que la tête */
.hero__seal-head { width: 40%; }

/* ==========================================================================
   ANIMATIONS AVANCÉES — parallax, pictos flottants, compteurs, progress
   ========================================================================== */

/* Barre de progression de scroll */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0%;
  background: #fff; z-index: 3000; transition: width .08s linear;
  box-shadow: 0 0 10px rgba(255,255,255,.5);
}

/* Sections pouvant accueillir des pictos décoratifs en fond */
.has-deco { position: relative; overflow: hidden; }
.has-deco > .container { position: relative; z-index: 2; }
.deco {
  position: absolute; z-index: 0; pointer-events: none;
  background-position: center; background-size: contain; background-repeat: no-repeat;
  opacity: .07; will-change: transform;
}
.section--marine .deco { opacity: .08; }
/* le mouvement des pictos déco est géré par le parallax JS (évite tout conflit de transform) */

/* Reveals enrichis (variantes + easing plus marqué) */
[data-reveal] { transition-duration: .9s; }
[data-reveal="clip"] { opacity: 1; transform: none; clip-path: inset(0 0 102% 0); transition: clip-path 1.1s var(--ease); }
[data-reveal="clip"].is-visible { clip-path: inset(0 0 0 0); }
[data-reveal="rotate"] { transform: rotate(-6deg) translateY(30px) scale(.96); }
[data-reveal="rotate"].is-visible { transform: none; }

/* Titres : reveal ligne par ligne via masque */
.title-reveal { display: inline-block; overflow: hidden; }
.title-reveal > span {
  display: inline-block; transform: translateY(105%);
  transition: transform .9s var(--ease); transition-delay: calc(var(--i,0)*90ms);
}
.title-reveal.is-visible > span { transform: none; }

/* Compteurs / stats */
.stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
  margin-top: 54px; text-align: center;
}
.stat { padding: 10px; }
.stat__num {
  font-family: var(--font-huge); font-weight: 900; line-height: .9;
  font-size: clamp(2.6rem, 6vw, 5rem); letter-spacing: -1px;
  display: flex; align-items: baseline; justify-content: center; gap: 2px;
}
.stat__label {
  font-family: var(--font-mono); text-transform: uppercase; letter-spacing: 2px;
  font-size: clamp(.68rem, 1vw, .82rem); margin-top: 12px; opacity: .85; line-height: 1.4;
}
.stat + .stat { position: relative; }

/* Boutons : préparés pour l'effet magnétique */
.btn { will-change: transform; }

/* Photo-marquee : accélère/ralentit selon le sens (déjà infini) — légère profondeur */
.photo-marquee figure { transition: filter .5s var(--ease); }

@media (max-width: 860px) {
  .stats { grid-template-columns: repeat(2, 1fr); gap: 30px 16px; }
  .deco { opacity: .05 !important; }
}
@media (prefers-reduced-motion: reduce) {
  .deco--float { animation: none; }
  .scroll-progress { display: none; }
  .title-reveal > span { transform: none !important; }
}

/* ==========================================================================
   RESTAURANTS — cartes "lieu" éditoriales modernes
   ========================================================================== */
.resto2 {
  position: relative;
  display: flex; flex-direction: column;
  background: #0f2d68;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 28px; overflow: hidden;
  transition: transform .55s var(--ease), border-color .45s var(--ease), box-shadow .45s var(--ease);
}
.resto2:hover { transform: translateY(-10px); border-color: #fff; box-shadow: var(--shadow-lg); }

.resto2__num {
  position: absolute; z-index: 3; top: 12px; left: 22px;
  font-family: var(--font-huge); font-weight: 900; letter-spacing: -2px;
  font-size: clamp(2.8rem, 5.5vw, 4.6rem); line-height: 1;
  color: transparent; -webkit-text-stroke: 2px rgba(255,255,255,.85);
  transition: color .45s var(--ease), -webkit-text-stroke-color .45s var(--ease);
}
.resto2:hover .resto2__num { color: rgba(255,255,255,.92); }

.resto2__media { position: relative; aspect-ratio: 16 / 12; overflow: hidden; }
.resto2__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.resto2:hover .resto2__media img { transform: scale(1.07); }
.resto2__media::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(15,45,104,.15) 0%, rgba(15,45,104,0) 34%, rgba(15,45,104,.9) 100%);
}
.resto2__name {
  position: absolute; z-index: 2; left: 26px; bottom: 18px; margin: 0;
  font-family: var(--font-title); font-weight: 900; text-transform: uppercase;
  color: #fff; line-height: .9; letter-spacing: -.5px;
  font-size: clamp(2.1rem, 4vw, 3.2rem);
  text-shadow: 0 6px 24px rgba(0,0,0,.4);
}

.resto2__body { padding: 24px 28px 30px; display: flex; flex-direction: column; align-items: flex-start; gap: 14px; }
.resto2__body .tagline-row { margin: 0; color: #fff; }
.resto2__addr { font-family: var(--font-mono); text-transform: uppercase; letter-spacing: 1px; font-size: .82rem; line-height: 1.5; margin: 0; opacity: .85; }
.resto2__phone {
  font-family: var(--font-title); font-weight: 800; letter-spacing: 1px;
  font-size: 1.15rem; color: #fff; transition: color .3s var(--ease);
}
.resto2__phone:hover { color: rgba(255,255,255,.7); }
.resto2__cta { display: inline-flex; align-items: center; gap: 10px; margin-top: 4px; }
.resto2__hours { display: flex; gap: 11px; align-items: flex-start; width: 100%; padding: 13px 0; border-top: 1px solid rgba(255,255,255,.15); border-bottom: 1px solid rgba(255,255,255,.15); }
.resto2__hours svg { width: 18px; height: 18px; flex: 0 0 18px; margin-top: 2px; opacity: .8; }
.resto2__hours-txt { display: flex; flex-direction: column; gap: 4px; font-family: var(--font-mono); text-transform: uppercase; letter-spacing: .5px; font-size: .72rem; line-height: 1.35; opacity: .85; }
.resto2__hours-lead { font-family: var(--font-title); font-weight: 800; letter-spacing: 1px; font-size: .82rem; opacity: 1; margin-bottom: 2px; }
.resto2__hours-off { opacity: .6; }
.resto2__cta .arrow { transition: transform .35s var(--ease); }
.resto2:hover .resto2__cta .arrow { transform: translateX(6px); }

@media (max-width: 860px) {
  .resto2__media { aspect-ratio: 16 / 11; }
}

/* ==========================================================================
   PATACREW — bloc recrutement éditorial
   ========================================================================== */
.crew { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(32px,5vw,64px); align-items: center; text-align: left; }
.crew__media { position: relative; }
.crew__media .media-frame { aspect-ratio: 4/5; }
.crew__media .media-frame img { width: 100%; height: 100%; object-fit: cover; }
.crew__num {
  position: absolute; z-index: 3; top: -18px; right: 16px;
  font-family: var(--font-huge); font-weight: 900; letter-spacing: -2px;
  font-size: clamp(3rem,7vw,6rem); line-height: 1;
  color: transparent; -webkit-text-stroke: 2px rgba(255,255,255,.5);
}
.crew__text .title-lg { margin: 10px 0 18px; }
.crew__mail {
  display: inline-flex; align-items: center; gap: 12px; margin: 6px 0 26px;
  font-family: var(--font-title); font-weight: 800; text-transform: none;
  font-size: clamp(1.05rem,1.8vw,1.4rem); color: #fff;
  border-bottom: 2px solid rgba(255,255,255,.4); padding-bottom: 4px;
  transition: border-color .3s var(--ease), color .3s var(--ease);
}
.crew__mail:hover { color: #fff; border-color: #fff; }
@media (max-width: 860px) { .crew { grid-template-columns: 1fr; text-align: left; } }

/* ==========================================================================
   INSTAGRAM — galerie portrait en quinconce
   ========================================================================== */
.ig-row { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; margin-top: 44px; }
.ig-row a {
  position: relative; display: block; border-radius: 18px; overflow: hidden;
  aspect-ratio: 3/4; background: rgba(19,55,125,.06);
  box-shadow: 0 12px 30px rgba(0,0,0,.10);
}
.ig-row a:nth-child(even) { margin-top: 38px; }
.ig-row img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.ig-row a:hover img { transform: scale(1.09); }
.ig-row a::after {
  content: '↗'; position: absolute; inset: 0; display: grid; place-items: center;
  font-family: var(--font-title); font-weight: 900; font-size: 2.2rem; color: #fff;
  background: rgba(19,55,125,.5); opacity: 0; transition: opacity .35s var(--ease);
}
.ig-row a:hover::after { opacity: 1; }
.ig-handle {
  font-family: var(--font-huge); font-weight: 900; text-transform: none;
  font-size: clamp(2rem,5vw,3.6rem); color: var(--marine); letter-spacing: -1px; line-height: 1;
  margin: 0 0 8px;
}
@media (max-width: 860px) {
  .ig-row { grid-template-columns: repeat(2, 1fr); }
  .ig-row a:nth-child(even) { margin-top: 0; }
}

/* ==========================================================================
   FOOD TRUCK — bloc incisif + amorce de tunnel de conversion
   ========================================================================== */
.ft-lead { font-family: var(--font-body); font-size: clamp(1.05rem,1.5vw,1.25rem); line-height: 1.55; color: var(--grey); margin: 0 0 4px; }
.ft-tags { display: flex; flex-wrap: wrap; gap: 10px; margin: 22px 0 28px; }
.ft-tags span {
  font-family: var(--font-mono); text-transform: uppercase; letter-spacing: 1px;
  font-size: .72rem; padding: 8px 16px; border-radius: 999px;
  border: 1.5px solid rgba(19,55,125,.3); color: var(--marine);
  transition: background .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease);
}
.ft-tags span:hover { background: var(--marine); color: #fff; border-color: var(--marine); }
.ft-cta { display: flex; align-items: center; gap: 22px 26px; flex-wrap: wrap; }
.ft-cta .btn .arrow { display: inline-block; transition: transform .35s var(--ease); }
.ft-cta .btn:hover .arrow { transform: translateX(6px); }
.ft-phone { display: inline-flex; flex-direction: column; line-height: 1.1; }
.ft-phone small { font-family: var(--font-mono); text-transform: uppercase; letter-spacing: 1.5px; font-size: .66rem; opacity: .7; }
.ft-phone b { font-family: var(--font-title); font-weight: 800; letter-spacing: 1px; font-size: 1.25rem; color: var(--marine); }

/* Panneau "comment ça marche" — étapes du tunnel */
.ft-steps {
  margin-top: clamp(52px, 7vw, 96px);
  background: var(--marine); color: #fff;
  border-radius: 32px; padding: clamp(34px, 5vw, 60px);
  position: relative; overflow: hidden;
}
.ft-steps__head { display: flex; align-items: center; gap: 14px; margin-bottom: 34px; }
.ft-steps__head h3 {
  font-family: var(--font-title); font-weight: 900; text-transform: uppercase;
  font-size: clamp(1.4rem, 2.6vw, 2.1rem); letter-spacing: -.5px; margin: 0;
}
.ft-steps__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.ft-step {
  position: relative; padding: 30px 26px 28px;
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.14);
  border-radius: 22px; transition: transform .45s var(--ease), background .45s var(--ease), border-color .45s var(--ease);
}
.ft-step:hover { transform: translateY(-8px); background: rgba(255,255,255,.1); border-color: #fff; }
.ft-step__num {
  font-family: var(--font-huge); font-weight: 900; line-height: 1; letter-spacing: -2px;
  font-size: clamp(2.6rem, 4vw, 3.4rem);
  color: transparent; -webkit-text-stroke: 2px rgba(255,255,255,.55);
}
.ft-step h4 { font-family: var(--font-title); font-weight: 900; text-transform: uppercase; font-size: 1.15rem; margin: 14px 0 8px; color: #fff; letter-spacing: .3px; }
.ft-step p { font-family: var(--font-mono); text-transform: uppercase; letter-spacing: .5px; font-size: .76rem; line-height: 1.6; margin: 0; opacity: .82; }

@media (max-width: 860px) {
  .ft-steps__grid { grid-template-columns: 1fr; gap: 14px; }
}

/* ==========================================================================
   PAGE FOOD TRUCK — landing tunnel de vente
   ========================================================================== */
/* Hero */
.ftp-hero {
  position: relative; min-height: 100svh; display: flex; align-items: center;
  overflow: hidden; background: var(--marine);
  padding-top: var(--header-h);  /* réserve la barre de menu → contenu jamais dessous (pas de margin négative : le fond .ftp-hero__bg est déjà en inset:0 derrière le header) */
}
.ftp-hero__bg { position: absolute; inset: 0; z-index: 0; background: center/cover no-repeat; transform: scale(1.08); animation: heroZoom 16s var(--ease) forwards; }
.ftp-hero::after { content: ''; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(11,30,70,.55) 0%, rgba(11,30,70,.3) 38%, rgba(11,30,70,.95) 100%); }
.ftp-hero__inner { position: relative; z-index: 2; width: 100%; max-width: var(--maxw); margin: 0 auto;
  padding: clamp(20px,4vh,44px) 24px clamp(40px,7vh,80px); color: #fff; }
.ftp-hero .eyebrow { color: #fff; }
.ftp-hero__title { font-family: var(--font-huge); font-weight: 900; text-transform: uppercase;
  line-height: .92; letter-spacing: -1px; font-size: clamp(2.3rem,5vw,4.6rem); margin: 8px 0 16px; max-width: 18ch; }
.ftp-hero__sub { font-family: var(--font-body); font-size: clamp(1.05rem,1.6vw,1.35rem);
  line-height: 1.55; max-width: 54ch; margin: 0 0 28px; color: rgba(255,255,255,.94); }
.ftp-hero__cta { display: flex; align-items: center; gap: 18px 26px; flex-wrap: wrap; }
.ftp-trustline { display: flex; gap: 8px 24px; flex-wrap: wrap; margin-top: 26px;
  font-family: var(--font-mono); text-transform: uppercase; letter-spacing: 1.2px; font-size: .72rem; color: rgba(255,255,255,.9); }
.ftp-trustline span { display: inline-flex; align-items: center; gap: 8px; }
.ftp-trustline span::before { content: '✓'; font-weight: 700; }

/* Téléphone CTA */
.cta-phone { display: inline-flex; flex-direction: column; line-height: 1.12; }
.cta-phone small { font-family: var(--font-mono); text-transform: uppercase; letter-spacing: 1.5px; font-size: .64rem; opacity: .8; }
.cta-phone b { font-family: var(--font-title); font-weight: 800; letter-spacing: 1px; font-size: 1.3rem; }
.cta-phone--light { color: #fff; }
.cta-phone--marine b { color: var(--marine); }

/* Barre de confiance / compteurs (bande) */
.trust { background: var(--marine); color: #fff; }

/* Occasions */
.occasions { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 52px; }
.occasion { padding: 30px 26px; border-radius: 22px; background: #fff; border: 1px solid rgba(19,55,125,.14);
  transition: transform .45s var(--ease), border-color .45s var(--ease), box-shadow .45s var(--ease); }
.occasion:hover { transform: translateY(-8px); border-color: var(--marine); box-shadow: var(--shadow-lg); }
.occasion img { width: 46px; height: 46px; object-fit: contain; }
.occasion h3 { font-family: var(--font-title); font-weight: 900; text-transform: uppercase; color: var(--marine); font-size: 1.25rem; margin: 16px 0 8px; }
.occasion p { font-family: var(--font-body); font-size: .98rem; line-height: 1.5; margin: 0; }

/* Menu inclus — liste */
.inc-list { display: grid; gap: 14px; margin: 8px 0 26px; }
.inc-list li { position: relative; padding-left: 34px; font-family: var(--font-body); font-size: 1.05rem; line-height: 1.45; }
.inc-list li::before { content: ''; position: absolute; left: 0; top: 2px; width: 22px; height: 22px; border-radius: 50%;
  background: var(--turquoise); color: var(--marine); }
.section--marine .inc-list li::before { background: #fff; }
.inc-list li::after { content: '✓'; position: absolute; left: 5px; top: 1px; font-weight: 900; color: var(--marine); font-size: .9rem; }

/* Différenciateurs */
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; margin-top: 50px; }
.why-card { text-align: left; }
.why-card img { width: 52px; height: 52px; object-fit: contain; margin-bottom: 14px; }
.why-card h3 { font-family: var(--font-title); font-weight: 900; text-transform: uppercase; color: var(--marine); font-size: 1.15rem; margin: 0 0 8px; }
.section--marine .why-card h3 { color: #fff; }
.why-card p { font-family: var(--font-body); font-size: .96rem; line-height: 1.5; margin: 0; }

/* Témoignages */
.testis { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 50px; }
.testi { background: #fff; border: 1px solid rgba(19,55,125,.14); border-radius: 22px; padding: 30px 26px; }
.testi__stars { color: var(--marine); letter-spacing: 3px; font-size: 1rem; margin-bottom: 12px; }
.testi__quote { font-family: var(--font-body); font-size: 1.05rem; line-height: 1.55; color: var(--grey); margin: 0 0 18px; }
.testi__who { font-family: var(--font-title); font-weight: 800; text-transform: uppercase; color: var(--marine); font-size: .9rem; letter-spacing: .5px; }
.testi__who span { display: block; font-family: var(--font-mono); font-weight: 400; text-transform: uppercase; letter-spacing: 1px; font-size: .7rem; opacity: .7; margin-top: 3px; }

/* FAQ */
.faq { max-width: 820px; margin: 44px auto 0; }
.faq-item { border-bottom: 1px solid rgba(255,255,255,.18); }
.faq-item summary { list-style: none; cursor: pointer; padding: 22px 44px 22px 0; position: relative;
  font-family: var(--font-title); font-weight: 800; text-transform: uppercase; letter-spacing: .5px; font-size: clamp(1rem,1.6vw,1.2rem); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; position: absolute; right: 6px; top: 50%; transform: translateY(-50%);
  font-family: var(--font-title); font-size: 1.6rem; transition: transform .3s var(--ease); }
.faq-item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-item p { margin: 0 0 22px; font-family: var(--font-mono); text-transform: uppercase; letter-spacing: .5px;
  font-size: .82rem; line-height: 1.7; opacity: .85; }

/* Formulaire devis */
.devis-wrap { max-width: 860px; margin: 0 auto; }
.devis-reassure { display: flex; gap: 10px 24px; flex-wrap: wrap; justify-content: center; margin: 20px 0 0;
  font-family: var(--font-mono); text-transform: uppercase; letter-spacing: 1.2px; font-size: .72rem; opacity: .85; }
.devis-reassure span::before { content: '✓ '; }
.form .btn { width: 100%; height: 56px; }
.hp { position: absolute; left: -9999px; opacity: 0; }

/* CTA sticky mobile — barre flottante arrondie */
.sticky-cta {
  position: fixed; left: 14px; right: 14px; z-index: 1500; display: none;
  bottom: calc(14px + env(safe-area-inset-bottom));
  gap: 10px; padding: 8px; border-radius: 22px;
  background: rgba(19,55,125,.98);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 16px 40px rgba(0,0,0,.4);
}
.sticky-cta .btn { height: 52px; }
.sticky-cta__call { flex: 0 0 auto; width: 52px; padding: 0; }
.sticky-cta__call svg { width: 20px; height: 20px; }
.sticky-cta__devis { flex: 1; }
.sticky-cta__ghost { flex: 0 0 auto; }

/* Desktop : petit pop flottant en bas à droite (pas pleine largeur) */
@media (min-width: 861px) {
  .sticky-cta {
    display: flex; left: auto; right: 24px; width: auto;
    bottom: 24px; padding: 7px; gap: 8px; border-radius: 20px;
    transform: translateY(150%); opacity: 0; pointer-events: none;
    transition: transform .5s var(--ease), opacity .35s var(--ease);
  }
  .sticky-cta.is-shown { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .sticky-cta .btn { height: 46px; font-size: .82rem; }
  .sticky-cta__call { width: 46px; }
  .sticky-cta__call svg { width: 18px; height: 18px; }
  .sticky-cta__devis { flex: 0 0 auto; }
}
@media (prefers-reduced-motion: reduce) {
  .sticky-cta { transition: opacity .35s var(--ease); transform: none; }
}

/* ===== Choix du restaurant à appeler ===== */
.call-sheet { position: fixed; inset: 0; z-index: 1200; display: flex; align-items: flex-end; justify-content: center; opacity: 0; visibility: hidden; transition: opacity .3s var(--ease), visibility .3s var(--ease); }
.call-sheet.is-open { opacity: 1; visibility: visible; }
.call-sheet__backdrop { position: absolute; inset: 0; background: rgba(6,20,52,.55); backdrop-filter: blur(3px); }
.call-sheet__panel {
  position: relative; width: min(440px, calc(100% - 24px)); margin-bottom: 88px;
  background: #fff; color: var(--marine); border-radius: 26px; padding: 30px 24px 24px;
  box-shadow: 0 30px 70px rgba(0,0,0,.45);
  transform: translateY(24px); transition: transform .4s var(--ease);
}
.call-sheet.is-open .call-sheet__panel { transform: translateY(0); }
.call-sheet__close { position: absolute; top: 14px; right: 16px; width: 38px; height: 38px; border: 0; border-radius: 50%; background: rgba(19,55,125,.07); color: var(--marine); font-size: 1.6rem; line-height: 1; cursor: pointer; transition: background .25s; }
.call-sheet__close:hover { background: rgba(19,55,125,.14); }
.call-sheet__kicker { display: block; font-family: var(--font-mono); text-transform: uppercase; letter-spacing: 1.5px; font-size: .64rem; opacity: .55; }
.call-sheet__panel h3 { font-family: var(--font-title); font-weight: 900; text-transform: uppercase; font-size: 1.5rem; letter-spacing: .5px; margin: 4px 0 20px; }
.call-sheet__opt {
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  padding: 16px 18px; border-radius: 16px; border: 1.5px solid rgba(19,55,125,.16);
  text-decoration: none; color: var(--marine); margin-top: 12px;
  transition: transform .3s var(--ease), background .3s var(--ease), border-color .3s var(--ease);
}
.call-sheet__opt:hover, .call-sheet__opt:active { transform: translateY(-3px); background: var(--marine); border-color: var(--marine); color: #fff; }
.call-sheet__opt-info { display: flex; flex-direction: column; gap: 3px; }
.call-sheet__opt-name { font-family: var(--font-title); font-weight: 800; text-transform: uppercase; font-size: .9rem; letter-spacing: .3px; line-height: 1.1; }
.call-sheet__opt-sub { font-family: var(--font-body); font-size: .82rem; opacity: .7; }
.call-sheet__opt-num { font-family: var(--font-mono); font-weight: 700; font-size: .9rem; white-space: nowrap; }

@media (max-width: 860px) {
  .occasions, .why-grid, .testis { grid-template-columns: 1fr; }
  .why-grid { gap: 30px; }
  .sticky-cta { display: flex; }
  body.ftpage { padding-bottom: 92px; }
}

/* ==========================================================================
   FOOD TRUCK — ajustements photos réelles + lisibilité hero mobile
   ========================================================================== */
/* Bandeau plein cadre : le vrai camion */
.truck-band { position: relative; height: clamp(400px, 62vh, 680px); overflow: hidden; background: var(--marine); }
.truck-band__img { position: absolute; inset: -6% 0; background-position: center 60%; background-size: cover; background-repeat: no-repeat; will-change: transform; }
.truck-band::after { content: ''; position: absolute; inset: 0;
  background: linear-gradient(175deg, rgba(11,30,70,.82) 0%, rgba(11,30,70,.5) 16%, rgba(11,30,70,.06) 44%, rgba(11,30,70,.02) 100%); }
.truck-band__cap { position: relative; z-index: 2; max-width: var(--maxw); margin: 0 auto; height: 100%;
  display: flex; flex-direction: column; justify-content: flex-start; padding: clamp(30px,5vw,54px) 24px; color: #fff; }
.truck-band__cap h3, .truck-band__cap .eyebrow { text-shadow: 0 3px 18px rgba(0,0,0,.5); }
.truck-band__cap .eyebrow { color: #fff; }
.truck-band__cap h3 { font-family: var(--font-huge); font-weight: 800; text-transform: uppercase;
  font-size: clamp(1.9rem,4.2vw,3.4rem); line-height: .95; letter-spacing: -.5px; margin: 6px 0 0; max-width: 18ch; }

/* Lisibilité du titre hero sur mobile (moins gros, moins lourd) */
@media (max-width: 860px) {
  .ftp-hero { min-height: 86svh; }
  .ftp-hero__title { font-size: clamp(1.9rem, 8.4vw, 2.8rem); font-weight: 800; letter-spacing: -.4px; }
  .ftp-hero__sub { font-size: 1.02rem; }
}

/* ==========================================================================
   FOOTER moderne (éditorial, multi-colonnes)
   ========================================================================== */
.footer2 { background: var(--marine); color: #fff; padding: clamp(56px,7vw,92px) 0 28px; border-top: 1px solid rgba(255,255,255,.12); }
.footer2__top { display: grid; grid-template-columns: 1.1fr 2fr; gap: clamp(32px,5vw,64px); align-items: start; }
.footer2__logo { width: 148px; margin: 0 0 18px; }
.footer2__sign { font-family: var(--font-title); font-weight: 800; text-transform: uppercase; letter-spacing: .5px; font-size: 1.02rem; line-height: 1.35; color: #fff; max-width: 24ch; margin: 0; }
.footer2__cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.footer2__col h4 { font-family: var(--font-title); font-weight: 900; text-transform: uppercase; font-size: .95rem; letter-spacing: 1px; margin: 0 0 16px; }
.footer2__col a { display: block; font-family: var(--font-mono); text-transform: uppercase; letter-spacing: .5px; font-size: .76rem; line-height: 1.5; opacity: .8; margin-bottom: 11px; transition: opacity .25s var(--ease), transform .25s var(--ease); }
.footer2__col a:hover { opacity: 1; transform: translateX(4px); }
.footer2__bar { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
  margin-top: clamp(40px,5vw,64px); padding-top: 22px; border-top: 1px solid rgba(255,255,255,.12);
  font-family: var(--font-mono); text-transform: uppercase; letter-spacing: 1px; font-size: .7rem; opacity: .68; }
.footer2__links { display: flex; gap: 22px; }
.footer2__links a { transition: opacity .25s var(--ease); }
.footer2__links a:hover { opacity: 1; text-decoration: underline; }
@media (max-width: 860px) {
  .footer2__top { grid-template-columns: 1fr; gap: 32px; }
  .footer2__cols { grid-template-columns: 1fr 1fr; gap: 26px 18px; }
  .footer2__bar { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 560px) {
  .footer2 { padding: 40px 0 22px; }
  .footer2__top { gap: 26px; }
  .footer2__brand { display: flex; align-items: center; gap: 14px; }
  .footer2__logo { width: 76px; margin: 0; }
  .footer2__sign { font-size: .82rem; line-height: 1.3; max-width: 20ch; }
  .footer2__cols { grid-template-columns: 1fr 1fr; gap: 22px 16px; }
  .footer2__col h4 { font-size: .82rem; margin: 0 0 10px; }
  .footer2__col a { font-size: .72rem; line-height: 1.4; margin-bottom: 7px; }
  .footer2__col:first-child { grid-column: 1 / -1; }
  .footer2__col:first-child > * { display: inline-block; }
  .footer2__col:first-child h4 { display: block; }
  .footer2__col:first-child a { margin-right: 18px; }
  .footer2__bar { margin-top: 26px; padding-top: 16px; font-size: .64rem; gap: 8px; }
  .footer2__links { gap: 18px; }
}

/* ==========================================================================
   PAGE LA CARTE — vraie carte
   ========================================================================== */
/* En-tête de catégorie */
.menu-head { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 34px; }
.menu-head img { width: 46px; height: 46px; object-fit: contain; flex: 0 0 auto; margin-top: 4px; }
.section--marine .menu-head img { filter: brightness(0) invert(1); }
.menu-head__t h2 { margin: 0; }
.menu-head__t p { margin: 6px 0 0; font-family: var(--font-mono); text-transform: uppercase; letter-spacing: 1.5px; font-size: .78rem; opacity: .75; }

/* Grille d'items */
.menu-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px 56px; }
.menu-item { padding: 16px 0; border-bottom: 1px dashed rgba(19,55,125,.18); }
.section--marine .menu-item { border-bottom-color: rgba(255,255,255,.18); }
.menu-item__row { display: flex; align-items: baseline; gap: 10px; }
.menu-item__name { font-family: var(--font-title); font-weight: 900; text-transform: uppercase; font-size: 1.15rem; letter-spacing: .3px; white-space: nowrap; }
.menu-item__name small { font-family: var(--font-mono); font-weight: 400; font-size: .62rem; letter-spacing: 1px; opacity: .6; margin-left: 6px; }
.menu-item__dots { flex: 1 1 auto; border-bottom: 2px dotted currentColor; opacity: .25; transform: translateY(-4px); }
.menu-item__price { font-family: var(--font-huge); font-weight: 700; font-size: 1.4rem; color: var(--marine); white-space: nowrap; }
.section--marine .menu-item__price { color: #fff; }
.menu-item__price sup { font-size: .62em; }
.menu-item__desc { margin: 6px 0 0; font-family: var(--font-body); font-size: .95rem; line-height: 1.45; opacity: .85; max-width: 46ch; }
.menu-item--wide { grid-column: 1 / -1; }

/* Options (protéines, sauces) en pills avec pictos */
.opt-block { margin-top: 30px; }
.opt-block h4 { font-family: var(--font-title); font-weight: 900; text-transform: uppercase; font-size: .95rem; letter-spacing: 1px; margin: 0 0 14px; }
.opt-block h4 span { font-family: var(--font-mono); font-weight: 400; letter-spacing: 1px; font-size: .68rem; opacity: .6; }
.opts { display: flex; flex-wrap: wrap; gap: 10px; }
.opt {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-mono); text-transform: uppercase; letter-spacing: .5px; font-size: .74rem;
  padding: 9px 16px 9px 12px; border-radius: 999px;
  border: 1.5px solid rgba(19,55,125,.28); color: var(--marine);
}
.opt img { width: 22px; height: 22px; object-fit: contain; }
.section--marine .opt { border-color: rgba(255,255,255,.35); color: #fff; }
.section--marine .opt img { filter: brightness(0) invert(1); }

/* Suppléments / ligne compacte */
.supp { display: flex; flex-wrap: wrap; gap: 10px 22px; margin-top: 24px; font-family: var(--font-mono); text-transform: uppercase; letter-spacing: 1px; font-size: .8rem; }
.supp b { font-family: var(--font-title); font-weight: 900; }

/* ===== Compose ton burger — protéine & suppléments visuels ===== */
.compose, .boost { margin-top: 48px; }
.compose__head, .boost__head { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; margin-bottom: 24px; }
.compose__step {
  font-family: var(--font-title); font-weight: 900; font-size: 1rem; letter-spacing: .5px;
  width: 40px; height: 40px; flex: 0 0 40px; display: grid; place-items: center;
  border-radius: 50%; border: 2px solid currentColor;
}
.compose__head h3, .boost__head h3 {
  font-family: var(--font-title); font-weight: 900; text-transform: uppercase;
  font-size: clamp(1.3rem, 3.4vw, 2rem); letter-spacing: .5px; margin: 0; line-height: 1;
}
.compose__head p {
  font-family: var(--font-mono); text-transform: uppercase; letter-spacing: 1px;
  font-size: .68rem; opacity: .55; margin: 0; padding-left: 4px;
}

.prots { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.prot {
  display: flex; flex-direction: column; align-items: center; text-align: center; gap: 14px;
  padding: 30px 16px 26px; border-radius: 22px;
  border: 1.5px solid rgba(255,255,255,.20); background: rgba(255,255,255,.05);
  transition: transform .45s var(--ease), background .45s var(--ease), border-color .45s var(--ease);
}
.prot:hover { transform: translateY(-7px); background: rgba(255,255,255,.13); border-color: rgba(255,255,255,.55); }
.prot__ic {
  width: 78px; height: 78px; border-radius: 50%; display: grid; place-items: center;
  background: #fff; box-shadow: 0 10px 26px rgba(0,0,0,.18);
  transition: transform .45s var(--ease);
}
.prot:hover .prot__ic { transform: scale(1.06) rotate(-4deg); }
.prot__ic img { width: 44px; height: 44px; object-fit: contain; }
.prot__name { font-family: var(--font-title); font-weight: 800; text-transform: uppercase; font-size: .92rem; letter-spacing: .5px; line-height: 1.12; }
.prot__tag { font-family: var(--font-mono); text-transform: uppercase; letter-spacing: 1px; font-size: .6rem; opacity: .6; }

.section--white .prot { border-color: rgba(19,55,125,.16); background: rgba(19,55,125,.035); color: var(--marine); }
.section--white .prot:hover { background: rgba(19,55,125,.08); border-color: rgba(19,55,125,.42); }
.section--white .prot__ic { background: var(--marine); }

.boosts { display: flex; flex-wrap: wrap; gap: 12px; }
.boost__item {
  display: inline-flex; align-items: center; gap: 12px; padding: 11px 12px 11px 20px;
  border-radius: 999px; border: 1.5px solid rgba(255,255,255,.24);
  font-family: var(--font-mono); text-transform: uppercase; letter-spacing: .5px; font-size: .74rem;
  transition: border-color .35s var(--ease), background .35s var(--ease);
}
.boost__item:hover { border-color: rgba(255,255,255,.6); background: rgba(255,255,255,.06); }
.boost__item b { font-family: var(--font-title); font-weight: 900; font-size: .9rem; letter-spacing: .5px; background: #fff; color: var(--marine); padding: 4px 12px; border-radius: 999px; }
.section--white .boost__item { border-color: rgba(19,55,125,.2); color: var(--marine); }
.section--white .boost__item:hover { border-color: rgba(19,55,125,.5); background: rgba(19,55,125,.04); }
.section--white .boost__item b { background: var(--marine); color: #fff; }

/* Menu upgrade — indépendant & mis en avant */
.menu-up {
  display: flex; align-items: center; gap: 18px; margin-top: 22px; width: 100%;
  background: #fff; color: var(--marine); border-radius: 20px; padding: 18px 22px;
  box-shadow: 0 16px 38px rgba(0,0,0,.24);
  transition: transform .4s var(--ease);
}
.menu-up:hover { transform: translateY(-4px); }
.menu-up__ic { width: 48px; height: 48px; flex: 0 0 48px; display: grid; place-items: center; }
.menu-up__ic img { width: 100%; height: 100%; object-fit: contain; }
.menu-up__txt { display: flex; flex-direction: column; gap: 3px; flex: 1; }
.menu-up__label { font-family: var(--font-title); font-weight: 900; text-transform: uppercase; font-size: 1.1rem; letter-spacing: .5px; }
.menu-up__sub { font-family: var(--font-mono); text-transform: uppercase; letter-spacing: .5px; font-size: .72rem; opacity: .7; }
.menu-up__price { font-family: var(--font-huge); font-weight: 900; font-size: 1.5rem; background: var(--marine); color: #fff; padding: 6px 18px; border-radius: 999px; white-space: nowrap; }
@media (max-width: 460px) { .menu-up { flex-wrap: wrap; gap: 12px; } .menu-up__txt { flex: 1 1 100%; order: 2; } }

@media (max-width: 860px) { .prots { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 420px) { .prot { padding: 22px 10px 20px; } .prot__ic { width: 66px; height: 66px; } .prot__ic img { width: 38px; height: 38px; } }

/* Recettes du moment — cartes vedettes */
.momo-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; margin-top: 50px; }
.momo {
  position: relative; display: flex; flex-direction: column; overflow: hidden;
  background: #0f2d68; border: 1px solid rgba(255,255,255,.14); border-radius: 28px;
  transition: transform .5s var(--ease), border-color .45s var(--ease), box-shadow .45s var(--ease);
}
.momo:hover { transform: translateY(-8px); border-color: #fff; box-shadow: var(--shadow-lg); }
.momo__media { position: relative; aspect-ratio: 16/10; overflow: hidden; }
.momo__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.momo:hover .momo__media img { transform: scale(1.06); }
.momo__tag { position: absolute; top: 16px; left: 16px; z-index: 2; background: #fff; color: var(--marine);
  font-family: var(--font-title); font-weight: 900; text-transform: uppercase; letter-spacing: .5px; font-size: .7rem;
  padding: 7px 14px; border-radius: 999px; }
.momo__body { padding: 24px 26px 28px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.momo__row { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; }
.momo__name { font-family: var(--font-title); font-weight: 900; text-transform: uppercase; font-size: 1.6rem; line-height: 1; color: #fff; margin: 0; }
.momo__price { font-family: var(--font-huge); font-weight: 900; font-size: 1.7rem; color: #fff; white-space: nowrap; }
.momo__desc { font-family: var(--font-body); font-size: .98rem; line-height: 1.5; color: rgba(255,255,255,.86); margin: 0; }

/* Bandeau CTA commande */
.order-cta { text-align: center; }
.order-cta .title-lg { color: #fff; }

@media (max-width: 860px) {
  .menu-grid { grid-template-columns: 1fr; gap: 0; }
  .momo-grid { grid-template-columns: 1fr; }
  .menu-item__desc { max-width: none; }
}

/* ==========================================================================
   RECETTE DU MOMENT — vedette unique
   ========================================================================== */
.momo-feature {
  display: grid; grid-template-columns: 1.05fr 1fr; margin-top: 46px;
  background: #0f2d68; border: 1px solid rgba(255,255,255,.14);
  border-radius: 30px; overflow: hidden;
}
.momo-feature__media { position: relative; min-height: 380px; overflow: hidden; }
.momo-feature__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .9s var(--ease); }
.momo-feature:hover .momo-feature__media img { transform: scale(1.05); }
.momo-feature__tag {
  position: absolute; z-index: 2; top: 20px; left: 20px; display: inline-flex; align-items: center; gap: 9px;
  background: #fff; color: var(--marine);
  font-family: var(--font-title); font-weight: 900; text-transform: uppercase; letter-spacing: 1px;
  font-size: .86rem; padding: 11px 20px; border-radius: 999px; box-shadow: 0 10px 28px rgba(0,0,0,.32);
}
.momo-feature__tag::before { content: ""; width: 10px; height: 10px; border-radius: 50%; background: var(--marine); animation: pulseDot 1.5s ease-in-out infinite; }
@keyframes pulseDot { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: .35; transform: scale(.65); } }
@media (prefers-reduced-motion: reduce) { .momo-feature__tag::before { animation: none; } }
.momo-feature__body { padding: clamp(30px,4vw,58px); display: flex; flex-direction: column; justify-content: center; gap: 16px; color: #fff; }
.momo-feature__row { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.momo-feature__name { font-family: var(--font-huge); font-weight: 900; text-transform: uppercase; font-size: clamp(2.2rem,4.5vw,3.4rem); line-height: .95; margin: 0; }
.momo-feature__price { font-family: var(--font-huge); font-weight: 900; font-size: clamp(1.7rem,3vw,2.4rem); white-space: nowrap; }
.momo-feature__desc { font-family: var(--font-body); font-size: clamp(1.02rem,1.5vw,1.18rem); line-height: 1.6; color: rgba(255,255,255,.9); margin: 0; }
.momo-feature__ings { display: flex; flex-wrap: wrap; gap: 8px; }
.momo-feature__ings span { font-family: var(--font-mono); text-transform: uppercase; letter-spacing: .5px; font-size: .68rem; padding: 6px 12px; border-radius: 999px; border: 1px solid rgba(255,255,255,.3); }
.momo-feature .btn { align-self: flex-start; margin-top: 6px; }
@media (max-width: 860px) {
  .momo-feature { grid-template-columns: 1fr; }
  .momo-feature__media { min-height: 300px; }
}

/* Titre hero court (ex. "La carte") — plus impactant sur mobile */
@media (max-width: 860px) {
  .ftp-hero__title--xl { font-size: clamp(3.6rem, 19vw, 6rem); line-height: .9; font-weight: 900; }
}

/* ==========================================================================
   MENU ENFANT — construit "au choix"
   ========================================================================== */
.kids { display: grid; grid-template-columns: 1fr auto 1fr; gap: 22px; align-items: stretch; margin-top: 44px; }
.kids__opt {
  background: #fff; border: 1px solid rgba(19,55,125,.16); border-radius: 22px; padding: 30px 26px; text-align: center;
  box-shadow: 0 12px 30px rgba(0,0,0,.06);
  transition: transform .4s var(--ease), border-color .4s var(--ease), box-shadow .4s var(--ease);
}
.kids__opt:hover { transform: translateY(-6px); border-color: var(--marine); box-shadow: var(--shadow-lg); }
.kids__opt img { width: 56px; height: 56px; object-fit: contain; margin: 0 auto 14px; }
.kids__ic { display: flex; align-items: center; justify-content: center; gap: 12px; margin: 0 auto 14px; }
.kids__ic img { width: 54px; height: 54px; object-fit: contain; margin: 0; }
.kids__plus { font-family: var(--font-huge); font-weight: 900; color: var(--marine); font-size: 1.5rem; opacity: .45; }
.kids__opt h4 { font-family: var(--font-title); font-weight: 900; text-transform: uppercase; color: var(--marine); font-size: 1.2rem; letter-spacing: .3px; margin: 0 0 8px; }
.kids__opt p { font-family: var(--font-body); font-size: .96rem; line-height: 1.5; margin: 0; }
.kids__or { display: flex; align-items: center; justify-content: center; font-family: var(--font-huge); font-weight: 900; text-transform: uppercase; color: var(--marine); font-size: 1.5rem; }
.kids__drink { margin-top: 24px; font-family: var(--font-mono); text-transform: uppercase; letter-spacing: 1px; font-size: .82rem; }
.kids__drink b { font-family: var(--font-title); font-weight: 900; }
@media (max-width: 860px) {
  .kids { grid-template-columns: 1fr; gap: 14px; }
  .kids__or { font-size: 1.2rem; padding: 4px; }
}

/* ==========================================================================
   RETOURS CLIENT — hovers non trompeurs (éléments non cliquables)
   ========================================================================== */
/* Tags occasion (mariage, séminaire…) : pas de survol "bouton" */
.ft-tags span:hover { background: transparent; color: var(--marine); border-color: rgba(19,55,125,.3); }
/* Étapes "comment ça marche" : plus d'effet de lévitation */
.ft-step:hover { transform: none; background: rgba(255,255,255,.05); border-color: rgba(255,255,255,.14); }
/* Cartes occasion (page food truck) : plus d'effet cliquable */
.occasion:hover { transform: none; border-color: rgba(19,55,125,.14); box-shadow: none; }
/* Photos décoratives : plus de zoom au survol (ne suggère plus un lien) */
.media-frame:hover img,
.photo-marquee figure:hover img,
.resto2:hover .resto2__media img,
.momo:hover .momo__media img,
.momo-feature:hover .momo-feature__media img { transform: none; }
/* La barre/pill flottante ne doit pas recouvrir le footer */
.sticky-cta.is-hidden { opacity: 0; visibility: hidden; pointer-events: none; transform: translateY(150%); }

/* Compteurs "À propos" cliquables (ancres internes) */
.stat--link { text-decoration: none; color: inherit; cursor: pointer; transition: transform .3s var(--ease); }
.stat--link .stat__label { text-decoration: underline; text-underline-offset: 4px; text-decoration-thickness: 1px; text-decoration-color: rgba(255,255,255,.4); transition: text-decoration-color .3s var(--ease); }
.stat--link:hover { transform: translateY(-4px); }
.stat--link:hover .stat__label { text-decoration-color: #fff; }

/* CTA devis à la fin de "Comment ça marche" */
.ft-steps__cta { display: flex; justify-content: center; margin-top: clamp(30px, 4vw, 44px); }

/* Page Mentions légales / contenu texte */
.legal { max-width: 820px; margin: 0 auto; }
.legal h2 { font-family: var(--font-title); font-weight: 900; text-transform: uppercase; color: var(--marine); font-size: 1.15rem; letter-spacing: .3px; margin: 34px 0 10px; }
.legal p, .legal li { font-family: var(--font-body); font-size: 1rem; line-height: 1.65; color: var(--grey); margin: 0 0 10px; }
.legal ul { padding-left: 20px; margin: 0 0 10px; }
.legal a { color: var(--marine); }
.legal .legal__todo { background: rgba(19,55,125,.06); border-left: 3px solid var(--marine); padding: 4px 12px; border-radius: 4px; font-style: italic; }
