/* =========================================================
   CHEZ MONSIEUR INGALLS ET CAROLINE INGALLS — STYLES
   Vintage rural chic, terroir authentique
   ========================================================= */

/* ---------- Variables ---------- */
:root {
  /* Palette ajustée pour meilleur contraste */
  --rose:        #EBC9BC;   /* rose clair du logo */
  --rose-soft:   #F5E5DD;   /* rose pâle de fond, éclairci */
  --rose-deep:   #B97A66;   /* rose accent saturé pour titres (meilleur contraste) */
  --rose-warm:   #D4836E;   /* rose chaud pour accents secondaires */
  --cream:       #FAF6F1;   /* crème très clair */
  --beige:       #EDE9E1;   /* cream beige */
  --dark:        #2C3438;   /* gris foncé original (footer + bordures) */
  --dark-soft:   #5A6266;   /* gris moyen */
  --terracotta:  #A67560;   /* terracotta */

  /* Polices : Allura (script classique élégant proche du logo Ingalls) + Oswald (display) + Lato (body) */
  --font-script: 'Parisienne', 'Brush Script MT', cursive;
  --font-display:'Oswald', 'Bebas Neue', 'Helvetica Neue', sans-serif;
  --font-sans:   'Lato', 'Helvetica Neue', Helvetica, system-ui, sans-serif;

  /* Menu mobile — gris foncé (comme le footer, légèrement plus clair) */
  --grey-light:  #3D464A;
  --grey-mid:    #353D40;

  --shadow-soft: 0 4px 20px rgba(44, 52, 56, 0.08);
  --shadow-card: 0 10px 35px rgba(44, 52, 56, 0.14);
  --shadow-hover: 0 18px 48px rgba(185, 122, 102, 0.22);

  --radius-sm: 4px;
  --radius:    8px;
  --radius-lg: 16px;

  --t-fast: 150ms ease;
  --t-mid:  300ms ease;
  --t-slow: 600ms cubic-bezier(.16, 1, .3, 1);
}

/* Alias rétrocompat */
:root {
  --font-serif: var(--font-display);
}

/* ---------- Reset light ---------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  overflow-x: hidden; /* Empêche tout scroll horizontal qui ferait "décaler" le contenu */
  width: 100%;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--dark);
  background: var(--beige);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
  position: relative;
}

img { max-width: 100%; display: block; }
a   { color: inherit; text-decoration: none; }
ul  { list-style: none; padding: 0; margin: 0; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }

:focus-visible {
  outline: 2px solid var(--rose-deep);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

/* Pas d'animations si l'utilisateur préfère */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
  html { scroll-behavior: auto; }
}

/* ---------- Container ---------- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

@media (min-width: 768px)  { .container { padding: 0 2rem;   } }
@media (min-width: 1280px) { .container { padding: 0 2.5rem; } }

/* ---------- Typo helpers ---------- */
/* Titres script style ardoise/craie food truck */
.title-script {
  font-family: var(--font-script);
  font-weight: 600;
  color: var(--rose-deep);
  font-size: clamp(2.5rem, 5.5vw, 4rem);
  line-height: 1.05;
  margin: 0 0 .75rem;
  letter-spacing: 0;
}

.section__head {
  text-align: center;
  margin-bottom: 3rem;
}

.section__sub {
  font-family: var(--font-display);
  font-size: clamp(.85rem, 1.5vw, 1rem);
  color: var(--dark-soft);
  margin: 0;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.section {
  padding: clamp(4rem, 9vw, 7rem) 0;
}

/* =========================================================
   INTRO ANIMATION (3,5 secondes) — Carte de présentation vintage
   ========================================================= */
.intro {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(235, 201, 188, 0.45) 0%, transparent 55%),
    radial-gradient(ellipse at 70% 80%, rgba(212, 169, 155, 0.3) 0%, transparent 50%),
    linear-gradient(170deg, #F5E5DD 0%, #EFE0D3 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1.5rem;
  opacity: 1;
  transition: opacity 800ms cubic-bezier(.4, 0, .2, 1);
}

.intro::after {
  /* Grain papier vintage */
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(185, 122, 102, 0.05) 1px, transparent 0),
    radial-gradient(circle at 3px 3px, rgba(166, 117, 96, 0.03) 1px, transparent 0);
  background-size: 5px 5px, 7px 7px;
  pointer-events: none;
  opacity: 0.8;
}

.intro.is-hidden {
  opacity: 0;
  pointer-events: none;
}

/* Carte centrale style carte de visite */
.intro__card {
  position: relative;
  z-index: 1;
  max-width: 680px;
  width: 100%;
  text-align: center;
  padding: clamp(2.5rem, 6vw, 4rem) clamp(1.5rem, 5vw, 4rem);
  /* Cadre subtle double trait rose-deep */
  border-top: 1px solid var(--rose-deep);
  border-bottom: 1px solid var(--rose-deep);
  opacity: 0;
  transform: scale(.96);
  animation: introCardIn 1000ms cubic-bezier(.16, 1, .3, 1) forwards 100ms;
}

.intro__card::before,
.intro__card::after {
  /* Petits traits décoratifs sur les côtés (forme cadre incomplet) */
  content: "";
  position: absolute;
  width: 1px;
  height: 25%;
  background: var(--rose-deep);
}
.intro__card::before { top: 0; left: 0; }
.intro__card::after  { bottom: 0; right: 0; }

/* Ornements décoratifs haut / bas (fleuron + croix) */
.intro__ornament {
  display: flex;
  justify-content: center;
  color: var(--rose-deep);
  opacity: 0.55;
  margin: 0 auto;
  max-width: 280px;
}

.intro__ornament--top {
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: introFade 700ms ease forwards 400ms;
}

.intro__ornament--bottom {
  margin-top: 1.5rem;
  opacity: 0;
  animation: introFade 700ms ease forwards 2600ms;
}

.intro__ornament svg { width: 100%; height: auto; max-height: 18px; }

/* "Établi en 2026" */
.intro__est {
  font-family: var(--font-display);
  font-size: clamp(.7rem, 1.5vw, .85rem);
  font-weight: 400;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--rose-deep);
  margin: 0 0 1.5rem;
  opacity: 0;
  animation: introFade 700ms ease forwards 600ms;
}

/* "Le FoodTruck" */
.intro__pretitle {
  font-family: var(--font-script);
  font-weight: 400;
  font-size: clamp(1.6rem, 3.2vw, 2.4rem);
  color: var(--rose-deep);
  margin: 0 0 .25rem;
  line-height: 1;
  opacity: 0;
  transform: translateY(10px);
  animation: introFadeUp 900ms cubic-bezier(.16, 1, .3, 1) forwards 900ms;
}

/* Titres en script Allura */
.intro__title {
  font-family: var(--font-script);
  color: var(--rose-deep);
  font-size: clamp(2.6rem, 7vw, 4.6rem);
  font-weight: 400;
  margin: 0;
  line-height: 1.1;
  letter-spacing: 0;
  text-shadow: 0 2px 14px rgba(185, 122, 102, 0.12);
}

.intro__title span {
  display: inline-block;
  opacity: 0;
  transform: translateY(20px) scale(.96);
  animation: introFadeUp 1100ms cubic-bezier(.16, 1, .3, 1) forwards 1200ms;
}

.intro__title + .intro__amp + .intro__title span {
  animation-delay: 2000ms;
}

/* Bloc esperluette avec lignes décoratives de chaque côté */
.intro__amp {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: .75rem 0;
  color: var(--rose-deep);
  opacity: 0;
  animation: introFade 800ms ease forwards 1700ms;
}

.intro__amp-line {
  width: clamp(40px, 8vw, 70px);
  height: 1px;
  background: currentColor;
  opacity: 0.5;
}

.intro__amp-symbol {
  font-family: var(--font-script);
  font-size: clamp(1.5rem, 3.2vw, 2.2rem);
  line-height: 1;
}

/* Tagline italique en bas */
.intro__tagline {
  font-family: var(--font-display);
  font-size: clamp(.8rem, 1.6vw, 1rem);
  font-weight: 300;
  font-style: normal;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--dark-soft);
  margin: 1.5rem 0 0;
  opacity: 0;
  animation: introFade 700ms ease forwards 2400ms;
}

.intro__tagline em {
  font-style: normal;
}

/* Lieu en bas */
.intro__location {
  font-family: var(--font-display);
  font-size: clamp(.7rem, 1.5vw, .85rem);
  font-weight: 400;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--rose-deep);
  margin: 0;
  opacity: 0;
  animation: introFade 700ms ease forwards 2800ms;
}

@keyframes introCardIn {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes introFadeUp {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes introFade {
  to {
    opacity: var(--final-opacity, 1);
  }
}

.intro__ornament--top,
.intro__ornament--bottom {
  --final-opacity: 0.55;
}

/* =========================================================
   HEADER
   ========================================================= */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: transparent;
  /* Pas de transition sur padding pour éviter les sauts au scroll en mobile */
  transition: background var(--t-mid), box-shadow var(--t-mid);
  padding: .9rem 0;
  will-change: background-color;
}

.header.is-scrolled,
.header--simple {
  background: rgba(245, 239, 230, 0.96);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: var(--shadow-soft);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

/* Desktop : nav centrée (le logo--empty est caché, le burger aussi) */
@media (min-width: 900px) {
  .header__inner {
    justify-content: center;
  }
  .header__logo--empty {
    display: none;
  }
}

/* Zone dédiée au logo (image OU texte fallback)
   - Espace réservé : ~ 52 px de haut
   - Si images/logo.png existe → image affichée, texte caché
   - Si pas de logo.png → texte fallback en script affiché */
.header__logo {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  min-height: 56px;
  min-width: 1px;
  line-height: 1;
  transition: opacity var(--t-fast);
  cursor: pointer;
  text-decoration: none;
}

/* Variante vide : juste un espace cliquable pour le retour en haut */
.header__logo--empty {
  width: 56px;
  min-width: 56px;
  visibility: hidden;
}

.header__logo:hover { opacity: 0.7; }

/* Logo image : cachée par défaut, le JS la réaffiche si elle se charge bien */
.header__logo-img {
  display: none;
  height: 72px;
  max-height: 72px;
  width: auto;
  max-width: 300px;
  object-fit: contain;
  transition: height var(--t-mid);
}

.header__logo-img.is-loaded {
  display: block;
}

.header.is-scrolled .header__logo-img,
.header--simple .header__logo-img {
  height: 60px;
  max-height: 60px;
}

/* Mobile : logo plus grand pour qu'on le voie bien */
@media (max-width: 768px) {
  .header__logo {
    min-height: 64px;
  }
  .header__logo-img,
  .header.is-scrolled .header__logo-img,
  .header--simple .header__logo-img {
    height: 64px;
    max-height: 64px;
    max-width: 200px;
  }
}

/* Fallback texte (affiché par défaut, caché si l'image charge OK) */
.header__logo-placeholder {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-script);
  font-weight: 400;
  color: var(--rose-deep);
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  line-height: 1;
  letter-spacing: 0;
}

.header__logo-placeholder.is-hidden {
  display: none;
}

/* Nav desktop */
.nav-desktop ul {
  display: none;
}

@media (min-width: 900px) {
  .nav-desktop ul {
    display: flex;
    gap: 2rem;
  }
}

.nav-link {
  font-family: var(--font-serif);
  font-size: 1rem;
  letter-spacing: 0.3px;
  color: var(--dark);
  position: relative;
  transition: color var(--t-fast);
  cursor: pointer;
  padding: .25rem 0;
}

.header:not(.is-scrolled):not(.header--simple) .nav-link {
  color: var(--cream);
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0; right: 0;
  height: 1px;
  background: var(--rose);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform var(--t-mid);
}

.nav-link:hover { color: var(--rose); }
.nav-link:hover::after { transform: scaleX(1); }

/* Burger */
.burger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: .5rem;
  cursor: pointer;
}

.burger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--dark);
  transition: all var(--t-mid);
  border-radius: 2px;
}

.header:not(.is-scrolled):not(.header--simple) .burger span {
  background: var(--cream);
}

@media (min-width: 900px) { .burger { display: none; } }

.burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.is-open span:nth-child(2) { opacity: 0; }
.burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Nav mobile */
/* =========================================================
   NAV MOBILE — Style ardoise food truck
   ========================================================= */
.nav-mobile {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  /* Fallbacks robustes pour Chrome Android / Safari iOS / etc. */
  min-height: 100vh;
  min-height: -webkit-fill-available;
  min-height: 100dvh;
  z-index: 200;
  background:
    radial-gradient(ellipse at 50% 30%, rgba(255, 255, 255, 0.5) 0%, transparent 55%),
    var(--grey-light);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(5rem, 14vh, 7rem) 1.5rem clamp(2.5rem, 6vh, 3rem);
  opacity: 0;
  pointer-events: none;
  transition: opacity 400ms cubic-bezier(.4, 0, .2, 1);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

/* Quand le menu est ouvert, on bloque aussi le scroll de html (Chrome Android) */
html:has(.nav-mobile.is-open) {
  overflow: hidden;
}

/* Bouton X de fermeture en haut à droite du menu */
.nav-mobile__close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 44px;
  height: 44px;
  background: transparent;
  border: 1px solid rgba(250, 246, 241, 0.25);
  border-radius: 50%;
  color: var(--cream);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
  transition: all var(--t-mid);
  padding: 0;
}

.nav-mobile__close svg { width: 20px; height: 20px; }

.nav-mobile__close:hover,
.nav-mobile__close:focus-visible {
  background: var(--rose);
  color: var(--dark);
  border-color: var(--rose);
  transform: rotate(90deg) scale(1.05);
}

.nav-mobile::after {
  /* Vignettage subtil */
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 55%, rgba(0, 0, 0, 0.25) 100%);
  pointer-events: none;
}

.nav-mobile.is-open {
  opacity: 1;
  pointer-events: auto;
}

.nav-mobile__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 420px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* Signature "Chez Ingalls" en haut — rose clair sur fond foncé */
.nav-mobile__brand {
  font-family: var(--font-script);
  font-weight: 400;
  font-size: 2.4rem;
  color: var(--rose);
  margin: 0 0 .25rem;
  line-height: 1;
}

.nav-mobile__brand em {
  font-style: normal;
  font-size: .55em;
  opacity: 0.75;
  margin-right: .25em;
  color: var(--cream);
}

.nav-mobile__eyebrow {
  font-family: var(--font-display);
  font-size: .7rem;
  font-weight: 400;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--rose);
  margin: 0 0 2.5rem;
  opacity: 0.9;
}

/* Liste des liens */
.nav-mobile ul {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  text-align: center;
  width: 100%;
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav-mobile li {
  position: relative;
}

/* Trait séparateur entre items */
.nav-mobile li + li::before {
  content: "✦";
  position: absolute;
  top: -.85rem;
  left: 50%;
  transform: translateX(-50%);
  color: var(--rose);
  opacity: 0.35;
  font-size: .55rem;
}

.nav-mobile a {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.5rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--cream);
  cursor: pointer;
  transition: color 250ms ease, letter-spacing 350ms cubic-bezier(.16, 1, .3, 1);
  padding: .35rem 0;
  position: relative;
}

.nav-mobile a:hover,
.nav-mobile a:focus-visible {
  color: var(--rose);
  letter-spacing: 6px;
}

/* Item actif (page courante) */
.nav-mobile a[aria-current="page"] {
  color: var(--rose);
  font-weight: 500;
}

/* Footer du menu : horaires + Facebook */
.nav-mobile__footer {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.nav-mobile__hours {
  font-family: var(--font-display);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0.75;
  margin: 0;
}

.nav-mobile__fb {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--rose-deep);
  border: none;
  color: var(--cream);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all var(--t-mid);
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(185, 122, 102, 0.25);
}

.nav-mobile__fb svg { width: 24px; height: 24px; }

.nav-mobile__fb:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 12px 24px rgba(185, 122, 102, 0.4);
}

.nav-mobile__fb:hover {
  background: var(--rose);
  color: var(--dark);
  border-color: var(--rose);
  transform: translateY(-2px) scale(1.05);
}

/* Animations d'entrée cascade */
.nav-mobile.is-open .nav-mobile__brand,
.nav-mobile.is-open .nav-mobile__eyebrow,
.nav-mobile.is-open li,
.nav-mobile.is-open .nav-mobile__footer {
  animation: navMobileSlide 600ms cubic-bezier(.16, 1, .3, 1) backwards;
}

.nav-mobile.is-open .nav-mobile__brand     { animation-delay: 100ms; }
.nav-mobile.is-open .nav-mobile__eyebrow   { animation-delay: 200ms; }
.nav-mobile.is-open li:nth-child(1)        { animation-delay: 300ms; }
.nav-mobile.is-open li:nth-child(2)        { animation-delay: 380ms; }
.nav-mobile.is-open li:nth-child(3)        { animation-delay: 460ms; }
.nav-mobile.is-open li:nth-child(4)        { animation-delay: 540ms; }
.nav-mobile.is-open li:nth-child(5)        { animation-delay: 620ms; }
.nav-mobile.is-open .nav-mobile__footer    { animation-delay: 750ms; }

@keyframes navMobileSlide {
  from {
    opacity: 0;
    transform: translateY(-12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Burger : barres deviennent claires sur le fond ardoise quand ouvert */
.burger.is-open span {
  background: var(--cream);
}

@media (min-width: 900px) { .nav-mobile { display: none; } }

@media (prefers-reduced-motion: reduce) {
  .nav-mobile.is-open .nav-mobile__brand,
  .nav-mobile.is-open .nav-mobile__eyebrow,
  .nav-mobile.is-open li,
  .nav-mobile.is-open .nav-mobile__footer {
    animation: none;
  }
}

/* =========================================================
   HERO
   ========================================================= */
/* =========================================================
   HERO — Style étiquette / magazine vintage
   ========================================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
  color: var(--dark);
  padding: 6rem 1.25rem 5rem;
}

.hero__bg {
  position: absolute;
  inset: 0;
  /* Gris foncé identique au menu mobile, avec vignettage radial pour effet doux */
  background:
    radial-gradient(ellipse at 50% 30%, rgba(255, 255, 255, 0.06) 0%, transparent 55%),
    var(--grey-light);
}

.hero__bg::after {
  /* Vignettage doux sur les bords (centre plus clair) */
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 55%, rgba(0, 0, 0, 0.25) 100%);
  pointer-events: none;
}


/* Cadre encadré central */
.hero__frame {
  position: relative;
  z-index: 2;
  max-width: 680px;
  width: 100%;
  padding: clamp(3rem, 7vw, 5rem) clamp(2rem, 5vw, 4rem);
  /* Marge basse pour détacher la flèche de scroll du cadre */
  margin-bottom: clamp(1.5rem, 2.5vw, 2.25rem);
  /* Bordure rose-deep, contour double */
  border: 2px solid var(--rose-deep);
  outline: 1px solid var(--rose-deep);
  outline-offset: 6px;
  /* Fond rose pâle */
  background:
    linear-gradient(180deg, #FAF0E8 0%, #F5E5DD 100%);
  box-shadow:
    0 18px 50px rgba(44, 52, 56, 0.32),
    0 6px 16px rgba(44, 52, 56, 0.16),
    inset 0 0 60px rgba(212, 169, 155, 0.1);
}

/* Coins ornementaux rose-deep */
.hero__corner {
  position: absolute;
  width: 30px;
  height: 30px;
  color: var(--rose-deep);
}
.hero__corner svg { width: 100%; height: 100%; }

.hero__corner--tl { top: -10px;    left: -10px; }
.hero__corner--tr { top: -10px;    right: -10px; }
.hero__corner--bl { bottom: -10px; left: -10px; }
.hero__corner--br { bottom: -10px; right: -10px; }

/* Eyebrow "Food truck artisanal" */
.hero__est {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  font-family: var(--font-display);
  font-size: clamp(.7rem, 1.5vw, .85rem);
  font-weight: 400;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--rose-deep);
  margin: 0 0 1.5rem;
}

.hero__est-dash {
  display: inline-block;
  width: 30px;
  height: 1px;
  background: currentColor;
  opacity: 0.5;
}

/* Titre principal — accroche PRODUIT (Oswald condensé impactant) */
.hero__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2rem, 5.5vw, 3.6rem);
  line-height: 1.05;
  margin: 0 0 .25rem;
  color: var(--dark);
  letter-spacing: 1px;
  text-transform: uppercase;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: baseline;
  gap: .75rem;
}

.hero__title-line {
  display: inline-block;
  white-space: nowrap;
}

.hero__title-amp {
  color: var(--rose-deep);
  font-weight: 300;
  font-size: 1.2em;
  line-height: 1;
}

/* Séparateur fleuron */
.hero__sep {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 1.5rem 0;
  color: var(--rose-deep);
}

.hero__sep-line {
  width: clamp(40px, 8vw, 70px);
  height: 1px;
  background: currentColor;
  opacity: 0.45;
}

.hero__sep svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* Logo incrusté dans le cadre hero (entre titre et tagline) */
.hero__logo {
  display: flex;
  justify-content: center;
  margin: 2rem 0 2rem;
}

.hero__logo img {
  display: block;
  width: clamp(200px, 38vw, 320px);
  height: auto;
  max-width: 100%;
}

/* Tagline en 3 lignes empilées (toutes tailles) */
.hero__tagline {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: clamp(.95rem, 1.7vw, 1.1rem);
  color: var(--dark);
  margin: 0 0 1.5rem;
  line-height: 1.8;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .1rem;
}

.hero__tagline-line {
  display: block;
}

.hero__tagline em {
  color: var(--rose-deep);
  font-style: italic;
  font-weight: 500;
}

/* Signature "Chez Ingalls" — script Caveat discret */
.hero__signature {
  font-family: var(--font-script);
  font-weight: 500;
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  color: var(--rose-deep);
  margin: 0 0 2rem;
  line-height: 1;
  letter-spacing: 0;
}

.hero__signature em {
  font-weight: 400;
  opacity: 0.75;
  font-style: normal;
  font-size: .65em;
  margin-right: .2em;
}

/* CTA wrapper */
.hero__cta-wrap {
  margin-bottom: 1.75rem;
}

/* Horaires en bas */
.hero__location {
  font-family: var(--font-display);
  font-size: clamp(.75rem, 1.5vw, .9rem);
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--dark-soft);
  margin: 0;
}

.hero__location-line { display: inline; }
.hero__location-sep { margin: 0 .5rem; }

/* Mobile : empilé sur 2 lignes, séparateur masqué */
@media (max-width: 768px) {
  .hero__location {
    display: flex;
    flex-direction: column;
    gap: .35rem;
    align-items: center;
  }
  .hero__location-line { display: block; }
  .hero__location-sep { display: none; }
}

.hero__content {
  position: relative;
  z-index: 2;
}

/* Animations cascading des éléments du hero
   Déclenchées après le splash (3500ms + 800ms fade out = 4300ms environ) */
.hero__anim {
  opacity: 0;
  transform: translateY(18px);
  animation: heroFadeUp 900ms cubic-bezier(.16, 1, .3, 1) forwards;
}

.hero__anim--1 { animation-delay: 4200ms; }
.hero__anim--2 { animation-delay: 4400ms; }
.hero__anim--3 { animation-delay: 4600ms; }
.hero__anim--4 { animation-delay: 4800ms; }
.hero__anim--5 { animation-delay: 5000ms; }
.hero__anim--6 { animation-delay: 5200ms; }
.hero__anim--7 { animation-delay: 5400ms; }

/* Si le splash a déjà été vu (sessionStorage), on raccourcit le délai */
.no-splash .hero__anim--1 { animation-delay: 100ms; }
.no-splash .hero__anim--2 { animation-delay: 250ms; }
.no-splash .hero__anim--3 { animation-delay: 400ms; }
.no-splash .hero__anim--4 { animation-delay: 550ms; }
.no-splash .hero__anim--5 { animation-delay: 700ms; }
.no-splash .hero__anim--6 { animation-delay: 850ms; }
.no-splash .hero__anim--7 { animation-delay: 1000ms; }

@keyframes heroFadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero__cta { display: inline-block; }

.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  width: 38px;
  height: 38px;
  color: var(--rose);
  animation: bounce 2.4s infinite ease-in-out;
  cursor: pointer;
  opacity: 0.85;
  transition: opacity var(--t-fast);
}

.hero__scroll:hover { opacity: 1; }
.hero__scroll svg { width: 100%; height: 100%; }

@keyframes bounce {
  0%, 100% { transform: translate(-50%, 0);   }
  50%      { transform: translate(-50%, 8px); }
}

/* =========================================================
   BUTTONS
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.5px;
  padding: .9rem 2rem;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--t-mid);
  text-align: center;
}

.btn--primary {
  background: var(--rose-deep);
  color: var(--cream);
  box-shadow: 0 6px 20px rgba(185, 122, 102, 0.35);
}

.btn--primary:hover {
  background: var(--rose-warm);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 14px 32px rgba(185, 122, 102, 0.45);
}

.btn--vintage {
  background: var(--cream);
  color: var(--dark);
  border: 2px solid var(--rose-deep);
  font-family: var(--font-display);
  font-weight: 500;
  font-style: normal;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: .85rem;
  padding: 1rem 2.25rem;
  position: relative;
  overflow: hidden;
}

.btn--vintage::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--rose-deep);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 450ms cubic-bezier(.16, 1, .3, 1);
  z-index: -1;
}

.btn--vintage:hover {
  color: var(--cream);
  border-color: var(--rose-deep);
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(185, 122, 102, 0.3);
}

.btn--vintage:hover::before {
  transform: scaleX(1);
}

/* =========================================================
   HISTOIRE
   ========================================================= */
.histoire { background: var(--cream); }

.histoire__grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 900px) {
  .histoire__grid {
    grid-template-columns: 1fr 1.4fr;
    gap: 4rem;
  }
}

.histoire__visual {
  display: flex;
  justify-content: center;
}

/* Photo dans la section "Notre histoire" */
.histoire__photo {
  width: clamp(240px, 42vw, 380px);
  height: clamp(240px, 42vw, 380px);
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--rose);
  box-shadow: var(--shadow-card), inset 0 0 0 8px rgba(245, 246, 241, 0.4);
  display: block;
  margin: 0 auto;
}

.histoire__placeholder {
  width: clamp(220px, 40vw, 340px);
  height: clamp(220px, 40vw, 340px);
  border-radius: 50%;
  border: 2px solid var(--rose);
  background:
    radial-gradient(circle at 30% 30%, rgba(235, 201, 188, 0.35) 0%, transparent 60%),
    var(--rose-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-card), inset 0 0 0 10px rgba(240, 223, 216, 0.4);
  color: var(--rose-deep);
}

.histoire__placeholder svg {
  width: 50%;
  height: 50%;
  opacity: 0.6;
}

.histoire__text p {
  margin: 0 0 1rem;
  font-size: 1.05rem;
}

.histoire__quote {
  margin: 2rem 0 0;
  padding: 1.25rem 1.75rem;
  border-left: 3px solid var(--rose);
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--rose-deep);
  background: rgba(245, 230, 227, 0.4);
  border-radius: 0 var(--radius) var(--radius) 0;
}

/* =========================================================
   MENU TEASER
   ========================================================= */
/* Section "Notre carte" — même gris foncé que le footer */
.menu {
  background:
    radial-gradient(ellipse at 50% 0%, rgba(212, 169, 155, 0.12) 0%, transparent 55%),
    var(--dark);
  color: var(--cream);
}

.menu .title-script {
  color: var(--rose);
}

.menu .section__sub {
  color: var(--cream);
  opacity: 0.85;
}

.menu .menu-card__name {
  color: var(--cream);
}

.menu .menu-card__price {
  color: var(--rose);
}

.menu .menu-card__visual {
  border-color: rgba(250, 246, 241, 0.25);
  background:
    radial-gradient(circle at 30% 30%, rgba(235, 201, 188, 0.18) 0%, transparent 60%),
    rgba(250, 246, 241, 0.08);
}

/* Bouton vintage sur fond foncé : adapté pour rester lisible */
.menu .btn--vintage {
  background: transparent;
  color: var(--cream);
  border-color: var(--rose);
}

.menu .btn--vintage::before {
  background: var(--rose);
}

.menu .btn--vintage:hover {
  color: var(--dark);
  border-color: var(--rose);
}

.menu__grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
  margin-bottom: 3rem;
}

@media (min-width: 700px)  { .menu__grid { grid-template-columns: repeat(3, 1fr); } }

.menu-card {
  text-align: center;
  transition: transform 450ms cubic-bezier(.16, 1, .3, 1);
  cursor: default;
}

.menu-card:hover {
  transform: translateY(-8px) scale(1.02);
}

.menu-card:hover .menu-card__visual {
  box-shadow: var(--shadow-hover);
  border-color: var(--rose-deep);
}

.menu-card__visual {
  width: 100%;
  aspect-ratio: 1;
  background:
    radial-gradient(circle at 30% 30%, rgba(235, 201, 188, 0.35) 0%, transparent 60%),
    var(--cream);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(212, 169, 155, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: var(--rose-deep);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.menu-card__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 500ms cubic-bezier(.16, 1, .3, 1);
}

.menu-card:hover .menu-card__visual img {
  transform: scale(1.05);
}

.menu-card__visual svg {
  width: 35%;
  height: 35%;
  opacity: 0.5;
}

.menu-card__name {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  color: var(--dark);
  font-size: clamp(1.4rem, 2.5vw, 1.75rem);
  letter-spacing: 0.5px;
  margin: 0;
}

.menu__cta {
  text-align: center;
}

/* =========================================================
   EMPLACEMENTS
   ========================================================= */
.emplacements {
  /* Rose un peu plus marqué (palette dominante) */
  background:
    radial-gradient(ellipse at 50% 0%, rgba(212, 169, 155, 0.25) 0%, transparent 60%),
    #EDD5C7;
  position: relative;
  overflow: hidden;
}

.emplacements::before {
  /* Motif vichy subtil */
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(45deg, rgba(61, 53, 47, 0.04) 25%, transparent 25%),
    linear-gradient(-45deg, rgba(61, 53, 47, 0.04) 25%, transparent 25%),
    linear-gradient(45deg, transparent 75%, rgba(61, 53, 47, 0.04) 75%),
    linear-gradient(-45deg, transparent 75%, rgba(61, 53, 47, 0.04) 75%);
  background-size: 24px 24px;
  background-position: 0 0, 0 12px, 12px -12px, -12px 0;
  pointer-events: none;
}

.emplacements > .container { position: relative; z-index: 1; }

.emplacements__grid {
  display: grid;
  gap: 1.75rem;
  grid-template-columns: 1fr;
  margin-bottom: 3rem;
}

@media (min-width: 600px)  { .emplacements__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .emplacements__grid { grid-template-columns: repeat(4, 1fr); } }

.ticket {
  background: var(--cream);
  padding: 2rem 1.25rem;
  text-align: center;
  position: relative;
  box-shadow: var(--shadow-card);
  border-radius: var(--radius);
  transition: transform 450ms cubic-bezier(.16, 1, .3, 1),
              box-shadow 450ms cubic-bezier(.16, 1, .3, 1);

  /* Bord festonné via mask */
  -webkit-mask:
    radial-gradient(circle 8px at 8px 50%, transparent 98%, #000) -8px 0,
    radial-gradient(circle 8px at calc(100% - 8px) 50%, transparent 98%, #000) 8px 0;
  -webkit-mask-composite: source-in;
          mask:
    radial-gradient(circle 8px at 8px 50%, transparent 98%, #000) -8px 0,
    radial-gradient(circle 8px at calc(100% - 8px) 50%, transparent 98%, #000) 8px 0;
          mask-composite: intersect;
}

.ticket:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: var(--shadow-hover);
}

.ticket:hover .ticket__icon {
  transform: scale(1.15) rotate(-3deg);
  color: var(--rose-deep);
}

.ticket__icon {
  width: 44px;
  height: 44px;
  margin: 0 auto 1rem;
  color: var(--rose);
  transition: transform 400ms cubic-bezier(.16, 1, .3, 1),
              color 300ms ease;
}

.ticket__icon svg { width: 100%; height: 100%; }

.ticket__day {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  color: var(--rose-deep);
  font-size: 1.5rem;
  margin: 0;
  line-height: 1.1;
  letter-spacing: 0.5px;
}

.ticket__hours {
  font-family: var(--font-display);
  color: var(--dark);
  margin: .35rem 0 1rem;
  font-size: .95rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
}

.ticket__place {
  font-family: var(--font-serif);
  font-weight: 600;
  color: var(--dark);
  margin: 0 0 .5rem;
  font-size: 1.1rem;
  letter-spacing: 0.3px;
}

.ticket__addr {
  font-size: .9rem;
  color: var(--dark);
  margin: 0;
  line-height: 1.5;
  opacity: 0.85;
}

/* Carte Leaflet */
.map {
  width: 100%;
  height: 420px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 3px solid var(--cream);
  background: var(--cream);
}

.leaflet-container {
  font-family: var(--font-sans);
  background: var(--cream);
}

.custom-marker {
  background: var(--rose);
  width: 28px;
  height: 28px;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  border: 3px solid var(--cream);
  box-shadow: 0 4px 12px rgba(125, 60, 60, 0.4);
}

.leaflet-popup-content-wrapper {
  background: var(--cream);
  border-radius: var(--radius);
  border: 2px solid var(--rose);
  box-shadow: var(--shadow-card);
}

.leaflet-popup-content {
  font-family: var(--font-serif);
  color: var(--dark);
  margin: .9rem 1.1rem;
}

.leaflet-popup-content strong {
  font-family: var(--font-script);
  font-size: 1.4rem;
  color: var(--rose-deep);
  font-weight: 400;
  display: block;
  margin-bottom: .25rem;
}

.leaflet-popup-tip { background: var(--cream); }

/* =========================================================
   CONTACT — bloc unifié centré, coordonnées en Parisienne
   ========================================================= */
.contact { background: var(--rose-soft); }

.contact-unified {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: clamp(2.5rem, 6vw, 4rem) clamp(1.5rem, 4vw, 3rem);
  box-shadow: var(--shadow-card);
  border: 1px solid var(--dark);
}

.contact-unified__intro {
  margin: 0 0 2.5rem;
  line-height: 1.4;
}

.contact-unified__intro em {
  display: block;
  font-family: var(--font-display);
  font-style: normal;
  font-size: .8rem;
  font-weight: 400;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--dark-soft);
  margin-bottom: .75rem;
}

.contact-unified__names {
  font-family: var(--font-script);
  font-weight: 400;
  font-size: clamp(2rem, 4.5vw, 3rem);
  color: var(--rose-deep);
  letter-spacing: 0;
  line-height: 1.1;
}

.contact-unified__lines {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

.contact-script-line {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  padding: .35rem 0;
  text-decoration: none;
  transition: opacity var(--t-fast), transform var(--t-mid);
  cursor: pointer;
}

.contact-script-line:hover {
  opacity: 0.7;
  transform: translateY(-1px);
}

.contact-script-line__icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  color: var(--rose-deep);
  display: inline-flex;
}

.contact-script-line__icon svg { width: 100%; height: 100%; }

.contact-script-line__text {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(.95rem, 2vw, 1.15rem);
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--dark);
  line-height: 1.1;
  overflow-wrap: anywhere;
  word-break: break-word;
  max-width: 100%;
}

.contact-script-line {
  max-width: 100%;
  flex-wrap: wrap;
}

/* Socials */
.socials {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
}

.social {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--rose);
  color: var(--cream);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all var(--t-mid);
  cursor: pointer;
}

.social svg { width: 22px; height: 22px; }

.social:hover {
  background: var(--rose-deep);
  transform: translateY(-2px);
}

.social--light {
  background: rgba(245, 239, 230, 0.12);
  color: var(--cream);
  border: 1px solid rgba(245, 239, 230, 0.25);
}

.social--light:hover {
  background: var(--rose-deep);
  color: var(--cream);
  border-color: var(--rose-deep);
}

/* =========================================================
   FOOTER
   ========================================================= */
.footer {
  background: var(--dark);
  color: var(--rose-soft);
  padding: 3rem 0 2rem;
  text-align: center;
}

.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .75rem;
}

.footer__logo {
  font-family: var(--font-script);
  color: var(--rose);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  margin: 0 0 .5rem;
  letter-spacing: 0;
  line-height: 1.1;
}

.footer__note {
  font-family: var(--font-display);
  font-size: .72rem;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin: 0 0 2rem;
  opacity: 0.7;
}

.footer__copy {
  font-family: var(--font-sans);
  font-size: .72rem;
  margin: 1.5rem 0 .25rem;
  letter-spacing: 1px;
  font-weight: 300;
  opacity: 0.6;
}

.footer__credit {
  font-family: var(--font-sans);
  font-size: .7rem;
  margin: 0;
  letter-spacing: 0.5px;
  opacity: 0.55;
  font-weight: 300;
}

.footer__credit a {
  color: var(--rose);
  text-decoration: none;
  border-bottom: 1px solid rgba(235, 201, 188, 0.3);
  padding-bottom: 1px;
  transition: color var(--t-fast), border-color var(--t-fast);
}

.footer__credit a:hover {
  color: var(--cream);
  border-bottom-color: var(--cream);
}

.footer__socials {
  display: flex;
  gap: 1.25rem;
  margin-top: 1.5rem;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

.footer__socials .social--light {
  width: 56px;
  height: 56px;
  background: var(--rose-deep);
  border: none;
  color: var(--cream);
  box-shadow: 0 6px 18px rgba(185, 122, 102, 0.4);
}

.footer__socials .social--light svg { width: 26px; height: 26px; }

.footer__socials .social--light:hover {
  transform: translateY(-3px) scale(1.05);
  background: var(--rose-warm);
  box-shadow: 0 12px 28px rgba(185, 122, 102, 0.5);
}

.footer__socials__label {
  font-family: var(--font-display);
  font-size: .7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--rose-soft);
  opacity: 0.7;
  margin: 0;
}

/* =========================================================
   PAGE BIENTÔT
   ========================================================= */
.page-bientot {
  background:
    linear-gradient(rgba(245, 239, 230, 0.92), rgba(245, 239, 230, 0.92)),
    var(--beige);
  position: relative;
  min-height: 100vh;
}

.page-bientot::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(45deg, rgba(212, 165, 160, 0.06) 25%, transparent 25%),
    linear-gradient(-45deg, rgba(212, 165, 160, 0.06) 25%, transparent 25%),
    linear-gradient(45deg, transparent 75%, rgba(212, 165, 160, 0.06) 75%),
    linear-gradient(-45deg, transparent 75%, rgba(212, 165, 160, 0.06) 75%);
  background-size: 24px 24px;
  background-position: 0 0, 0 12px, 12px -12px, -12px 0;
  pointer-events: none;
  z-index: 0;
}

.bientot {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 7rem 0 4rem;
}

.bientot__inner {
  text-align: center;
  max-width: 760px;
}

.bientot__title {
  margin-bottom: 1rem;
}

.bientot__sub {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.05rem, 2.2vw, 1.35rem);
  color: var(--dark);
  margin: 0 0 3rem;
  opacity: 0.85;
}

.countdown {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: .75rem;
  max-width: 640px;
  margin: 0 auto 2.5rem;
}

@media (min-width: 600px) {
  .countdown { gap: 1.25rem; }
}

.countdown__box {
  background: var(--cream);
  border: 1px solid rgba(212, 169, 155, 0.4);
  border-radius: var(--radius);
  padding: 1.5rem .75rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-card);
  min-height: 120px;
}

.countdown__num {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.85rem, 6vw, 3rem);
  color: var(--dark);
  line-height: 1;
}

.countdown__label {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: clamp(.7rem, 1.6vw, .82rem);
  color: var(--dark-soft);
  margin-top: .5rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.bientot__hint {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--dark);
  opacity: 0.8;
  font-size: 1rem;
  margin: 0 0 2rem;
}

.bientot__back {
  margin-bottom: 2rem;
}

.bientot__socials {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

/* =========================================================
   REVEAL ON SCROLL
   ========================================================= */
/* =========================================================
   REVEAL ON SCROLL — Animations enrichies
   ========================================================= */
.reveal {
  opacity: 0;
  transform: translateY(36px) scale(.98);
  transition: opacity 900ms cubic-bezier(.16, 1, .3, 1),
              transform 900ms cubic-bezier(.16, 1, .3, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Cascade sur les enfants de section emplacements */
.reveal.is-visible .ticket {
  animation: cardFadeUp 700ms cubic-bezier(.16, 1, .3, 1) backwards;
}
.reveal.is-visible .ticket:nth-child(1) { animation-delay: 100ms; }
.reveal.is-visible .ticket:nth-child(2) { animation-delay: 200ms; }
.reveal.is-visible .ticket:nth-child(3) { animation-delay: 300ms; }
.reveal.is-visible .ticket:nth-child(4) { animation-delay: 400ms; }

/* Cascade sur les cards menu teaser */
.reveal.is-visible .menu-card {
  animation: cardFadeUp 700ms cubic-bezier(.16, 1, .3, 1) backwards;
}
.reveal.is-visible .menu-card:nth-child(1) { animation-delay: 100ms; }
.reveal.is-visible .menu-card:nth-child(2) { animation-delay: 250ms; }
.reveal.is-visible .menu-card:nth-child(3) { animation-delay: 400ms; }

/* Cascade sur les items menu (page menu) */
.is-visible .menu-item,
.menu-list .menu-item {
  animation: itemFadeIn 600ms cubic-bezier(.16, 1, .3, 1) backwards;
}
.menu-list .menu-item:nth-child(1) { animation-delay: 100ms; }
.menu-list .menu-item:nth-child(2) { animation-delay: 200ms; }
.menu-list .menu-item:nth-child(3) { animation-delay: 300ms; }
.menu-list .menu-item:nth-child(4) { animation-delay: 400ms; }
.menu-list .menu-item:nth-child(5) { animation-delay: 500ms; }

@keyframes cardFadeUp {
  from {
    opacity: 0;
    transform: translateY(28px) scale(.95);
  }
}

@keyframes itemFadeIn {
  from {
    opacity: 0;
    transform: translateX(-12px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .hero__anim,
  .intro__title,
  .intro__subtitle,
  .intro__est,
  .intro__line,
  .ticket,
  .menu-card,
  .menu-item {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
  }
}

/* =========================================================
   COMMON — Pages internes
   ========================================================= */
.page-main {
  padding-top: 70px; /* compensation header sticky */
}

.page-hero {
  background:
    radial-gradient(ellipse at 20% 0%, rgba(235, 201, 188, 0.35) 0%, transparent 55%),
    linear-gradient(180deg, #F5E8E0 0%, #EFE3D6 100%);
  padding: clamp(3.5rem, 8vw, 6rem) 0 clamp(3rem, 6vw, 5rem);
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Variante avec photo bandeau en arrière-plan */
.page-hero--with-photo {
  padding: clamp(5rem, 12vw, 8rem) 0 clamp(4rem, 8vw, 6rem);
}

.page-hero--with-photo .page-hero__photo {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.page-hero--with-photo .page-hero__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page-hero--with-photo::after {
  /* Overlay rose pâle semi-transparent pour la lisibilité du texte */
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(245, 232, 224, 0.82) 0%, rgba(239, 227, 214, 0.92) 100%);
  z-index: 1;
}

.page-hero--with-photo .container {
  position: relative;
  z-index: 2;
}

.page-hero__inner {
  max-width: 800px;
}

.page-hero__eyebrow {
  font-family: var(--font-sans);
  font-size: .72rem;
  font-weight: 400;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--rose-deep);
  margin: 0 0 1rem;
}

.page-hero__title {
  margin: 0 0 1.25rem;
  font-size: clamp(2.8rem, 7vw, 4.5rem);
  color: var(--rose-deep);
}

.page-hero__sub {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--dark);
  margin: 0;
  line-height: 1.7;
}

.section__eyebrow {
  font-family: var(--font-sans);
  font-size: .7rem;
  font-weight: 400;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--rose-deep);
  margin: 0 0 .75rem;
}

/* CTA emplacements bottom */
.emplacements__cta {
  text-align: center;
  margin-top: 2.5rem;
}

/* Logo sous les emplacements */
.emplacements__watermark {
  margin-top: 3.5rem;
  text-align: center;
  pointer-events: none;
}

.emplacements__watermark img {
  display: inline-block;
  max-width: clamp(200px, 35vw, 320px);
  height: auto;
}

/* =========================================================
   MENU.HTML
   ========================================================= */
.menu-page { background: var(--cream); }
.menu-page--alt { background: var(--rose-soft); }

.menu-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.menu-item {
  border-bottom: 1px dashed rgba(166, 117, 96, 0.3);
  padding-bottom: 1.5rem;
}

.menu-item:last-child {
  border-bottom: none;
}

.menu-item__head {
  display: flex;
  align-items: baseline;
  gap: .5rem;
  margin-bottom: .5rem;
}

.menu-item__name {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(1.25rem, 2.2vw, 1.55rem);
  color: var(--dark);
  margin: 0;
  flex-shrink: 0;
}

.menu-item__dots {
  flex-grow: 1;
  border-bottom: 1.5px dotted rgba(166, 117, 96, 0.45);
  margin-bottom: .3rem;
}

.menu-item__price {
  font-family: var(--font-serif);
  font-weight: 600;
  font-style: italic;
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: var(--rose-deep);
  flex-shrink: 0;
}

.menu-item__desc {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1rem;
  color: var(--dark-soft);
  margin: 0;
  line-height: 1.5;
}

.menu-page__note {
  text-align: center;
  margin: 3rem auto 0;
  max-width: 600px;
  font-family: var(--font-serif);
  font-size: .95rem;
  color: var(--dark-soft);
  line-height: 1.65;
}

.menu-page__note a {
  color: var(--rose-deep);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.menu-page__note a:hover { color: var(--terracotta); }

/* Prix sur les menu-card teaser */
.menu-card__price {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  color: var(--rose-deep);
  margin: .25rem 0 0;
  font-size: 1.05rem;
}

/* Section CTA fin de menu */
.page-cta {
  background: var(--rose-soft);
  text-align: center;
}

.page-cta__inner {
  max-width: 600px;
}

.page-cta h2 {
  margin: 0 0 1rem;
  color: var(--rose-deep);
}

.page-cta p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--dark);
  margin: 0 0 2rem;
}

/* =========================================================
   EMPLACEMENTS.HTML
   ========================================================= */
.empl-page { background: var(--beige); }

.empl-list {
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
}

.empl-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  background: var(--cream);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(166, 117, 96, 0.18);
}

@media (min-width: 800px) {
  .empl-card {
    grid-template-columns: 1fr 1.1fr;
  }

  .empl-card:nth-child(even) {
    grid-template-columns: 1.1fr 1fr;
  }

  .empl-card:nth-child(even) .empl-card__info { order: 2; }
  .empl-card:nth-child(even) .empl-card__map  { order: 1; }
}

.empl-card__info {
  padding: clamp(2rem, 4vw, 3rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.empl-card__day {
  font-family: var(--font-script);
  font-weight: 400;
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--rose-deep);
  margin: 0 0 .25rem;
  line-height: 1;
}

.empl-card__hours {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--dark-soft);
  margin: 0 0 1.25rem;
  letter-spacing: 0.5px;
}

.empl-card__place {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(1.4rem, 2.5vw, 1.75rem);
  color: var(--dark);
  margin: 0 0 .75rem;
  line-height: 1.2;
}

.empl-card__addr {
  font-style: normal;
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--dark-soft);
  margin: 0 0 1.25rem;
  line-height: 1.55;
}

.empl-card__desc {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1rem;
  color: var(--dark);
  margin: 0 0 1.75rem;
  line-height: 1.65;
}

.empl-card__map {
  position: relative;
  min-height: 320px;
  background: var(--beige);
}

.empl-card__map iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  filter: saturate(0.85);
}

/* Bloc info */
.empl-info { background: var(--cream); }
.empl-info__inner {
  max-width: 720px;
  text-align: center;
}

.empl-info h2 {
  margin: 0 0 1.5rem;
  color: var(--rose-deep);
}

.empl-info__list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-family: var(--font-serif);
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--dark);
  text-align: left;
}

.empl-info__list li {
  padding: 1rem 0;
  border-bottom: 1px dashed rgba(166, 117, 96, 0.25);
}

.empl-info__list li:last-child { border-bottom: none; }

.empl-info__list a {
  color: var(--rose-deep);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.empl-info__list a:hover { color: var(--terracotta); }

/* =========================================================
   ACTUALITES.HTML
   ========================================================= */
.news-empty { background: var(--cream); }
.news-empty__inner { display: flex; justify-content: center; }

.news-empty__card {
  background: var(--rose-soft);
  border: 1px solid rgba(166, 117, 96, 0.2);
  border-radius: var(--radius-lg);
  padding: clamp(2.5rem, 6vw, 4.5rem) clamp(1.75rem, 5vw, 4rem);
  text-align: center;
  max-width: 640px;
  width: 100%;
  box-shadow: var(--shadow-card);
}

.news-empty__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.5rem;
  color: var(--rose-deep);
}

.news-empty__icon svg { width: 100%; height: 100%; }

.news-empty__title {
  font-size: clamp(2.4rem, 5vw, 3.5rem);
  margin: 0 0 1.5rem;
  color: var(--rose-deep);
}

.news-empty__text {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--dark);
  margin: 0 0 2rem;
  line-height: 1.65;
}

.news-empty__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

/* =========================================================
   BTN VARIANTS supplémentaires
   ========================================================= */
.btn--small {
  padding: .55rem 1.25rem;
  font-size: .92rem;
}

.btn--ghost {
  background: transparent;
}

/* =========================================================
   SOCIAL LABEL
   ========================================================= */
.social__label {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

/* =========================================================
   FOOTER NAV
   ========================================================= */
.footer__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin: 1rem 0 1.25rem;
}

.footer__nav a {
  font-family: var(--font-serif);
  font-size: .95rem;
  color: var(--beige);
  opacity: 0.85;
  transition: opacity var(--t-fast), color var(--t-fast);
  cursor: pointer;
  text-decoration: none;
}

.footer__nav a:hover {
  opacity: 1;
  color: var(--rose);
}

/* =========================================================
   RESPONSIVE FINE TUNING
   ========================================================= */
@media (max-width: 480px) {
  .hero { min-height: 540px; }
  .countdown__box { min-height: 90px; padding: .9rem .35rem; }
  .ticket { padding: 1.5rem 1rem; }
  .empl-card__map { min-height: 260px; }
  .news-empty__actions .btn { width: 100%; }
}

@media (max-width: 600px) {
  .menu-item__head {
    flex-wrap: nowrap;
    gap: .75rem;
    align-items: baseline;
  }
  .menu-item__dots {
    display: none;
  }
  .menu-item__name {
    flex: 1 1 auto;
    min-width: 0;
    white-space: normal;
  }
  .menu-item__price {
    flex: 0 0 auto;
    margin-left: auto;
    padding-right: 4px;
    white-space: nowrap;
  }
}

/* =========================================================
   MOBILE — Centrage + nowrap pour groupes sémantiques
   ========================================================= */
@media (max-width: 768px) {
  /* Centrage général des textes (hors zones déjà centrées ou volontairement à gauche) */
  .histoire__text,
  .histoire__text p,
  .histoire__quote,
  .empl-card__info,
  .empl-card__addr,
  .empl-card__desc {
    text-align: center;
  }

  /* Descriptions du menu : alignées à gauche pour la lecture */
  .menu-item__desc {
    text-align: left;
  }

  /* Bouton itinéraire centré dans la carte emplacement */
  .empl-card__info .btn {
    align-self: center;
  }

  /* Groupes sémantiques qu'on ne veut pas couper en milieu de groupe */
  .hero__location,
  .intro__location,
  .nav-mobile__hours,
  .ticket__hours,
  .empl-card__hours,
  .section__eyebrow,
  .page-hero__eyebrow,
  .hero__est,
  .empl-card__day,
  .ticket__day {
    white-space: nowrap;
  }

  /* Footer note peut wrapper sur mobile (sinon coupé) */
  .footer__note {
    white-space: normal;
    text-align: center;
    padding: 0 1rem;
    line-height: 1.6;
  }

  /* Histoire : visuel et texte empilés et centrés */
  .histoire__visual { justify-content: center; }
  .histoire__quote {
    border-left: none;
    border-top: 3px solid var(--rose);
    border-radius: 0;
  }

  /* Contact unifié : padding compact sur mobile */
  .contact-unified {
    padding: 2rem 1.25rem;
  }

  /* Mobile : réduction des coordonnées pour qu'elles tiennent sur 1 ligne */
  .contact-script-line {
    flex-wrap: nowrap;
    width: 100%;
    justify-content: center;
    gap: .5rem;
  }
  .contact-script-line__text {
    font-size: .72rem;
    letter-spacing: 1px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: calc(100% - 30px);
  }
  .contact-script-line__icon {
    width: 16px;
    height: 16px;
  }
}

/* Encore plus compact en très petite largeur */
@media (max-width: 380px) {
  .contact-script-line__text {
    font-size: .65rem;
    letter-spacing: .5px;
  }
}
