/* ============================================================
   BISTROT LA RENAISSANCE — Feuille de style
   Identité graphique 2026 : chocolat / crème / ocre
   Display : Fraunces (serif éditorial) — Body : Inter (bobo)
   ============================================================ */

/* ---------- @font-face Goudos (legacy, kept for fallback) ---------- */
@font-face {
  font-family: "Goudos";
  src: url("assets/fonts/Goudos.ttf") format("truetype");
  font-weight: 400 900;
  font-style: normal;
  font-display: swap;
}

/* ---------- Variables (palette DA + typo) ---------- */
:root {
  /* Palette officielle La Renaissance */
  --c-chocolate: #4b0903;        /* chocolat profond — texte principal, fond sombre */
  --c-chocolate-deep: #2d0500;   /* chocolat très sombre */
  --c-chocolate-soft: #6a1810;   /* chocolat tiède pour gradients */
  --c-cream: #f4e9d8;            /* crème beige — fond principal */
  --c-cream-warm: #ecdfc8;       /* crème chaude */
  --c-cream-deep: #e3d3b6;       /* crème profonde */
  --c-ocre: #8d7055;             /* ocre brun — accent (ex copper) */
  --c-ocre-light: #a88869;       /* ocre clair */
  --c-ocre-deep: #6d553f;        /* ocre profond */
  --c-ink: #2a1a10;              /* encre brune pour texte */
  --c-line: rgba(75, 9, 3, 0.12);

  /* Typo */
  --f-display: "Fraunces", "Goudos", Georgia, "Times New Roman", serif;
  --f-body: "Inter", -apple-system, BlinkMacSystemFont, "Helvetica Neue", sans-serif;

  --max-width: 1240px;
  --section-pad: clamp(6rem, 11vw, 12rem);
  --ease-cinema: cubic-bezier(0.65, 0, 0.35, 1);
  --ease-soft: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--f-body);
  color: var(--c-ink);
  background: var(--c-cream);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  font-weight: 400;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
ul { list-style: none; }

/* ---------- Typographie display ---------- */
h1, h2, h3, h4 {
  font-family: var(--f-display);
  font-weight: 700;
  letter-spacing: 0.005em;
  line-height: 0.95;
  color: var(--c-chocolate);
  text-transform: uppercase;
  font-optical-sizing: auto;
}
h1 { line-height: 0.92; }

/* Eyebrow — petit tag au-dessus des sections */
.eyebrow {
  font-family: var(--f-body);
  font-size: 0.7rem;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--c-ocre);
  font-weight: 500;
  display: inline-block;
  margin-bottom: 1.5rem;
}
.eyebrow::before { content: none; }

/* ---------- Motif rosette R (DA — quatre R en miroir) ---------- */
.motif {
  display: block;
  width: 64px;
  height: 64px;
  background-image: url("assets/img/motif-bis-ocre.png");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  margin: 0 auto;
  opacity: 0.9;
}
.motif--beige { background-image: url("assets/img/motif-bis-beige.png"); }
.motif--rouge { background-image: url("assets/img/motif-bis-rouge.png"); }
.motif--lg { width: 96px; height: 96px; }
.motif--sm { width: 44px; height: 44px; opacity: 0.75; }
/* Diviseur de section centré sur fond clair ou foncé */
.motif-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.75rem;
  padding: 4rem 0;
}
.motif-divider::before,
.motif-divider::after {
  content: "";
  flex: 0 0 80px;
  height: 1px;
  background: currentColor;
  opacity: 0.25;
}
/* Filet répétitif horizontal — bande d'ornement subtile */
.motif-strip {
  height: 56px;
  background-image: url("assets/img/motif-bis-ocre.png");
  background-size: 56px 56px;
  background-repeat: repeat-x;
  background-position: center;
  opacity: 0.18;
}
.motif-strip--beige { background-image: url("assets/img/motif-bis-beige.png"); }

/* ============================================================
   NAVIGATION STICKY
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.4rem 1.75rem;
  background: rgba(45, 5, 0, 0.78);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition: padding 0.4s var(--ease-soft), background 0.4s var(--ease-soft);
}
.nav--compact { padding: 0.7rem 1.75rem; }
.nav__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.nav__brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.nav__brand img {
  height: 38px;
  width: auto;
  transition: height 0.4s var(--ease-soft);
}
.nav--compact .nav__brand img { height: 30px; }

.nav__links {
  display: flex;
  gap: 2rem;
  align-items: center;
}
.nav__links a {
  color: var(--c-cream);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  position: relative;
  padding: 0.3rem 0;
  transition: color 0.3s;
}
.nav__links a::after {
  content: "";
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 1px;
  background: var(--c-ocre-light);
  transition: width 0.4s var(--ease-soft);
}
.nav__links a:hover { color: var(--c-ocre-light); }
.nav__links a:hover::after { width: 100%; }

.nav__actions { display: flex; align-items: center; gap: 0.85rem; }

/* Sélecteur de langue — sobre, sans bordure */
.lang-switch {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.65rem 0.5rem;
  background: transparent;
  color: var(--c-cream);
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  transition: opacity 0.3s;
  opacity: 0.85;
}
.lang-switch:hover { opacity: 1; }
.lang-switch__current { font-weight: 600; }
.lang-switch__arrow { font-size: 0.55rem; opacity: 0.8; }
.lang-switch__menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  background: var(--c-chocolate-deep);
  padding: 0.65rem 0.4rem;
  display: none;
  flex-direction: column;
  min-width: 180px;
}
.lang-switch[aria-expanded="true"] .lang-switch__menu { display: flex; }
.lang-switch__menu a {
  padding: 0.7rem 1rem;
  font-size: 0.78rem;
  color: var(--c-cream);
  transition: opacity 0.2s;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  opacity: 0.78;
}
.lang-switch__menu a:hover { opacity: 1; }
.lang-switch__menu a[aria-current="true"] { color: var(--c-ocre-light); opacity: 1; }
.lang-switch__menu .flag { font-size: 1rem; }

/* CTA Réserver — sticky permanent, rectangulaire éditorial */
.btn-reserve {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.6rem;
  background: var(--c-cream);
  color: var(--c-chocolate);
  font-family: var(--f-display);
  font-weight: 400;
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: 0;
  transition: all 0.3s var(--ease-soft);
}
.btn-reserve:hover { background: var(--c-ocre); color: var(--c-cream); }

.nav__burger { display: none; flex-direction: column; gap: 4px; padding: 6px; }
.nav__burger span { width: 22px; height: 2px; background: var(--c-cream); transition: transform 0.3s; }

/* ============================================================
   HERO — Rideau qui s'ouvre (chocolat + crème)
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--c-chocolate-deep);
  /* Padding-top pour décoller l'animation du crest de la nav fixe */
  padding-top: 7rem;
  padding-bottom: 2.5rem;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background-image: url("assets/img/photos/img_1430.jpg");
  background-size: cover;
  background-position: center 40%;
  transform: scale(1.08);
  will-change: transform;
}
.hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  /* Voile chocolat + vignette — pour que le crest + h1 ressortent */
  background:
    radial-gradient(ellipse at center, rgba(45, 5, 0, 0.45) 0%, rgba(45, 5, 0, 0.82) 100%);
}

/* Rideaux supprimés — voir nouvelle animation crest chromatique */
.curtain { display: none; }

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--c-cream);
  padding: 0 1.5rem;
  max-width: 980px;
}

/* ---------- Crest chromatique : 3 monogrammes superposés ---------- */
.hero__crest {
  position: relative;
  width: 130px;
  height: 130px;
  margin: 0 auto 2.25rem;
}
.hero__crest-layer {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  will-change: transform, opacity;
}
.hero__crest-layer--rouge {
  opacity: 0;
  transform: translate(-26px, 18px) scale(0.92);
  animation: crestRouge 2.4s var(--ease-cinema) 0.35s forwards;
}
.hero__crest-layer--ocre {
  opacity: 0;
  transform: translate(22px, -16px) scale(0.92);
  animation: crestOcre 2.4s var(--ease-cinema) 0.55s forwards;
}
.hero__crest-layer--beige {
  opacity: 0;
  transform: scale(0.78);
  animation: crestBeige 2.6s var(--ease-cinema) 0.75s forwards;
}
@keyframes crestRouge {
  0%   { opacity: 0; transform: translate(-26px, 18px) scale(0.92); }
  45%  { opacity: 0.85; }
  100% { opacity: 0.45; transform: translate(0, 0) scale(1); }
}
@keyframes crestOcre {
  0%   { opacity: 0; transform: translate(22px, -16px) scale(0.92); }
  45%  { opacity: 0.85; }
  100% { opacity: 0.6; transform: translate(0, 0) scale(1); }
}
@keyframes crestBeige {
  0%   { opacity: 0; transform: scale(0.78); }
  60%  { opacity: 0.9; }
  100% { opacity: 1; transform: scale(1); }
}

/* Compatibilité : ancien sélecteur monogramme — masqué si présent */
.hero__monogramme { display: none; }
.hero__eyebrow {
  font-family: var(--f-body);
  font-size: 0.72rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--c-cream);
  opacity: 0;
  margin-bottom: 1.25rem;
  display: block;
  transform: translateY(14px);
  animation: heroRise 1.4s var(--ease-soft) 1.45s forwards;
}
.hero h1 {
  font-size: clamp(3rem, 8vw, 6.5rem);
  font-weight: 400;
  margin-bottom: 1.75rem;
  color: var(--c-cream);
  text-transform: uppercase;
  line-height: 0.92;
  opacity: 0;
  transform: translateY(20px);
  animation: heroRise 1.5s var(--ease-soft) 1.7s forwards;
}
.hero h1 em {
  display: block;
  font-style: normal;
  color: var(--c-ocre-light);
  font-size: 0.55em;
  margin-top: 0.6rem;
  letter-spacing: 0.02em;
}
.hero__tagline {
  font-family: var(--f-body);
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  letter-spacing: 0.04em;
  margin-bottom: 2.75rem;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 300;
  opacity: 0;
  transform: translateY(14px);
  animation: heroRiseSoft 1.4s var(--ease-soft) 2s forwards;
}
@keyframes heroRise {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes heroRiseSoft {
  to { opacity: 0.85; transform: translateY(0); }
}
.hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  padding: 1.2rem 3rem;
  background: var(--c-cream);
  color: var(--c-chocolate);
  font-family: var(--f-display);
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.95rem;
  transition: background 0.4s var(--ease-soft), color 0.4s var(--ease-soft);
  opacity: 0;
  transform: translateY(14px);
  animation: heroRise 1.4s var(--ease-soft) 2.25s forwards;
}
.hero__cta:hover { background: var(--c-ocre); color: var(--c-cream); }

.hero__scroll {
  position: absolute;
  bottom: 2.25rem;
  left: 50%;
  transform: translateX(-50%);
  color: var(--c-cream);
  font-size: 0.66rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  opacity: 0.6;
  z-index: 3;
  font-weight: 400;
}
.hero__scroll::after {
  content: "";
  display: block;
  width: 1px;
  height: 44px;
  background: var(--c-cream);
  margin: 0.85rem auto 0;
  opacity: 0.6;
}

/* ============================================================
   SECTIONS GÉNÉRIQUES
   ============================================================ */
section { position: relative; padding: var(--section-pad) 1.75rem; }
.container { max-width: var(--max-width); margin: 0 auto; }

.section-title {
  font-size: clamp(2.4rem, 5.5vw, 4.8rem);
  margin-bottom: 1.5rem;
  font-weight: 400;
  text-transform: uppercase;
  line-height: 0.95;
}
.section-lede {
  font-size: clamp(1.05rem, 1.4vw, 1.18rem);
  max-width: 720px;
  line-height: 1.75;
  opacity: 0.82;
  font-weight: 300;
}

/* Reveal — désactivé : tout est visible d'emblée, sobre */
.reveal,
.reveal.is-visible,
.reveal--delay-1,
.reveal--delay-2,
.reveal--delay-3 {
  opacity: 1;
  transform: none;
  transition: none;
}

/* CTA contextuel — sans bordure, type-driven */
.context-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  margin-top: 2.75rem;
  padding: 0.4rem 0;
  color: var(--c-chocolate);
  font-family: var(--f-display);
  font-size: 0.95rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 400;
  background: transparent;
  position: relative;
}
.context-cta::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: currentColor;
  opacity: 0.5;
  transition: opacity 0.3s, transform 0.4s var(--ease-soft);
  transform-origin: left;
}
.context-cta:hover::after { opacity: 1; }
.context-cta__arrow { transition: transform 0.3s; }
.context-cta:hover .context-cta__arrow { transform: translateX(6px); }

/* ============================================================
   SECTION : GALERIE — bento éditorial, animations clip-path
   ============================================================ */
.gallery {
  background: var(--c-cream);
  padding: var(--section-pad) 1.75rem;
  position: relative;
  overflow: hidden;
}
.gallery::before {
  content: "";
  position: absolute;
  top: -120px;
  left: -160px;
  width: 520px;
  height: 520px;
  background-image: url("assets/img/motif-bis-ocre.png");
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.05;
  pointer-events: none;
}
.gallery__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.gallery__header {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 2rem;
  margin-bottom: 4.5rem;
}
.gallery__header h2 {
  font-size: clamp(2.4rem, 5.5vw, 4.8rem);
  line-height: 0.92;
  max-width: 14ch;
}
.gallery__header h2 em { color: var(--c-ocre); font-style: normal; }
.gallery__header .eyebrow { margin-bottom: 1rem; }
.gallery__caption {
  font-family: var(--f-body);
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--c-ink);
  opacity: 0.65;
  max-width: 22ch;
  text-align: right;
  line-height: 1.6;
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 180px;
  gap: 1.25rem;
}

/* 6 tuiles bento */
.gal-tile {
  position: relative;
  overflow: hidden;
  background: var(--c-cream-deep);
  /* État initial visible : si le JS ne tourne pas ou tarde, les tuiles sont là.
     L'IntersectionObserver ajoute .is-in pour une entrée subtile (fade-up). */
  opacity: 1;
  transform: translateY(16px);
  transition:
    opacity 0.9s var(--ease-soft),
    transform 1.1s var(--ease-soft);
}
.gal-tile.is-in {
  opacity: 1;
  transform: none;
}
/* Fallback : si le JS ne charge pas du tout, retire le décalage */
.no-js .gal-tile,
html:not(.js) .gal-tile { transform: none; }
.gal-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 1.4s var(--ease-soft);
}
.gal-tile:hover img { transform: scale(1.04); }

/* Tuile typographique : grand chiffre cream sur chocolat */
.gal-tile--type {
  background: var(--c-chocolate);
  color: var(--c-cream);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 2rem 1.75rem;
}
.gal-tile--type::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("assets/img/motif-bis-beige.png");
  background-size: 80%;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.06;
  pointer-events: none;
}
.gal-tile__num {
  font-family: var(--f-display);
  font-size: clamp(3.2rem, 7vw, 6rem);
  line-height: 0.85;
  letter-spacing: 0.01em;
  color: var(--c-cream);
  text-transform: uppercase;
  position: relative;
  z-index: 1;
}
.gal-tile__label {
  font-family: var(--f-body);
  font-size: 0.7rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--c-ocre-light);
  font-weight: 500;
  position: relative;
  z-index: 1;
}

/* Tuile motif (fallback élégant si photo manquante) */
.gal-tile--motif {
  background: var(--c-cream-warm);
  display: flex;
  align-items: center;
  justify-content: center;
}
.gal-tile--motif::after {
  content: "";
  width: 60%;
  height: 60%;
  background-image: url("assets/img/motif-bis-rouge.png");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.55;
}
.gal-tile--motif.gal-tile--ocre { background: var(--c-chocolate); }
.gal-tile--motif.gal-tile--ocre::after {
  background-image: url("assets/img/motif-bis-ocre.png");
  opacity: 0.85;
}

/* Bento positions (12 cols × 6 rows) */
.gal-tile--a { grid-column: 1 / span 7; grid-row: 1 / span 3; }
.gal-tile--b { grid-column: 8 / span 5; grid-row: 1 / span 2; }
.gal-tile--c { grid-column: 8 / span 5; grid-row: 3 / span 2; }
.gal-tile--d { grid-column: 1 / span 4; grid-row: 4 / span 2; }
.gal-tile--e { grid-column: 5 / span 3; grid-row: 4 / span 2; }
.gal-tile--f { grid-column: 8 / span 5; grid-row: 5 / span 1; }

/* Délais de stagger sur les tuiles */
.gal-tile--a { transition-delay: 0.05s; }
.gal-tile--b { transition-delay: 0.18s; }
.gal-tile--c { transition-delay: 0.30s; }
.gal-tile--d { transition-delay: 0.42s; }
.gal-tile--e { transition-delay: 0.54s; }
.gal-tile--f { transition-delay: 0.66s; }

/* Légende sur les tuiles photo (subtile, en bas) */
.gal-tile__caption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 1rem 1.25rem;
  font-family: var(--f-body);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-cream);
  background: linear-gradient(to top, rgba(45, 5, 0, 0.75), rgba(45, 5, 0, 0));
  font-weight: 500;
  z-index: 2;
}

@media (max-width: 880px) {
  .gallery__header { grid-template-columns: 1fr; }
  .gallery__caption { text-align: left; }
  .gallery__grid {
    grid-auto-rows: 160px;
    gap: 0.85rem;
  }
  .gal-tile--a { grid-column: 1 / -1; grid-row: 1 / span 2; }
  .gal-tile--b { grid-column: 1 / span 7; grid-row: 3 / span 1; }
  .gal-tile--c { grid-column: 8 / -1; grid-row: 3 / span 1; }
  .gal-tile--d { grid-column: 1 / span 6; grid-row: 4 / span 1; }
  .gal-tile--e { grid-column: 7 / -1; grid-row: 4 / span 1; }
  .gal-tile--f { grid-column: 1 / -1; grid-row: 5 / span 1; }
}

/* ============================================================
   SECTION : LE BISTROT
   ============================================================ */
.bistrot {
  background: var(--c-cream);
  position: relative;
  overflow: hidden;
}
/* Watermark motif rosette derrière le titre — contraste subtil ocre */
.bistrot::before {
  content: "";
  position: absolute;
  top: 6rem;
  right: -8rem;
  width: 480px;
  height: 480px;
  background-image: url("assets/img/motif-bis-ocre.png");
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.06;
  pointer-events: none;
}

/* Header : hiérarchie verticale serrée, aligné gauche, typographique */
.bistrot__header {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 2rem 3rem;
  align-items: end;
  margin-bottom: 4.5rem;
  position: relative;
  z-index: 1;
  text-align: left;
}
.bistrot__header .motif {
  grid-column: 1 / -1;
  margin: 0 0 1rem 0;
  display: none; /* motif retiré du header pour clarté */
}
.bistrot__header .eyebrow {
  grid-column: 1 / span 7;
  margin-bottom: 0;
}
.bistrot__header .section-title {
  grid-column: 1 / span 7;
  color: var(--c-chocolate);
  margin-bottom: 0;
  max-width: 14ch;
}
.bistrot__header .section-lede {
  grid-column: 8 / -1;
  max-width: none;
  align-self: end;
  padding-bottom: 0.4rem;
  font-size: 1rem;
  line-height: 1.7;
}

/* Contenu : texte + image, proportions éditoriales, image sticky */
.bistrot__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 4rem 5rem;
  margin-bottom: 8rem;
  align-items: start;
}
.bistrot__text {
  grid-column: 1 / span 5;
  max-width: 48ch;
}
.bistrot__text p {
  margin-bottom: 1.5rem;
  line-height: 1.85;
  font-size: 1.02rem;
  font-weight: 300;
}
.bistrot__text p strong { color: var(--c-chocolate); font-weight: 600; }
.bistrot__text p:first-of-type::first-letter {
  font-family: var(--f-display);
  font-size: 4.2rem;
  line-height: 0.85;
  float: left;
  padding: 0.2rem 0.7rem 0 0;
  color: var(--c-chocolate);
  font-weight: 400;
}

.bistrot__visual {
  grid-column: 7 / -1;
  position: sticky;
  top: 7rem;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  max-height: 78vh;
}
.bistrot__visual img {
  width: 100%; height: 100%; object-fit: cover;
}

@media (max-width: 900px) {
  .bistrot__header { grid-template-columns: 1fr; gap: 1.25rem; margin-bottom: 3rem; }
  .bistrot__header .eyebrow,
  .bistrot__header .section-title,
  .bistrot__header .section-lede { grid-column: 1; max-width: none; }
  .bistrot__grid { grid-template-columns: 1fr; gap: 2.5rem; margin-bottom: 5rem; }
  .bistrot__text { grid-column: 1; max-width: none; }
  .bistrot__visual { grid-column: 1; position: static; aspect-ratio: 4 / 5; max-height: none; }
  .bistrot__text p:first-of-type::first-letter { font-size: 3.4rem; }
}

/* Liste éditoriale du décor — pas de cartes, pas de chrome, juste de la typo */
.decor-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 4rem 3rem;
  margin-bottom: 8rem;
}
.decor-card {
  padding: 0;
  background: transparent;
  text-align: left;
  opacity: 1;
  transform: none;
  transition: none;
}
.decor-card__num {
  font-family: var(--f-display);
  font-size: 2.6rem;
  color: var(--c-ocre);
  margin-bottom: 1rem;
  display: block;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-weight: 400;
  line-height: 1;
}
.decor-card h3 {
  font-size: 1.55rem;
  margin-bottom: 0.85rem;
  color: var(--c-chocolate);
  font-weight: 400;
  letter-spacing: 0.005em;
}
.decor-card p { font-size: 0.96rem; opacity: 0.72; line-height: 1.75; font-family: var(--f-body); font-weight: 300; text-transform: none; color: var(--c-ink); }

/* Le Bar en zinc — bloc plat chocolat, traitement éditorial */
.bar-zinc {
  position: relative;
  margin: 6rem -1.75rem 0;
  padding: clamp(6rem, 11vw, 11rem) 1.75rem;
  background: var(--c-chocolate);
  overflow: hidden;
  text-align: left;
  color: var(--c-cream);
}
.bar-zinc::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -120px;
  width: 520px;
  height: 520px;
  background-image: url("assets/img/motif-bis-beige.png");
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.07;
  pointer-events: none;
}
.bar-zinc .container {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
.bar-zinc__text { grid-column: 1 / span 6; }
.bar-zinc__photo {
  grid-column: 7 / -1;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  position: relative;
}
.bar-zinc__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.bar-zinc__strip { display: none; }
.bar-zinc__glow { display: none; }
.bar-zinc .eyebrow { color: var(--c-ocre-light); }
.bar-zinc .eyebrow::before { background: var(--c-ocre-light); }
.bar-zinc h2 {
  font-size: clamp(2.6rem, 6vw, 5.4rem);
  margin-bottom: 2.5rem;
  color: var(--c-cream);
  line-height: 0.9;
  max-width: 10ch;
}
.bar-zinc__quote {
  font-family: var(--f-body);
  font-weight: 300;
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  max-width: 100%;
  margin: 0 0 2.5rem;
  line-height: 1.7;
  color: var(--c-cream);
  opacity: 0.85;
}
@media (max-width: 900px) {
  .bar-zinc .container { grid-template-columns: 1fr; gap: 3rem; }
  .bar-zinc__text, .bar-zinc__photo { grid-column: 1; }
}

/* ============================================================
   FOOD STRIP — bande horizontale de 5 photos (dans .bistrot)
   ============================================================ */
.food-strip {
  margin: 0 0 8rem;
  padding: 0;
  position: relative;
  z-index: 1;
}
.food-strip__head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}
.food-strip__head h3 {
  font-family: var(--f-display);
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  color: var(--c-chocolate);
  text-transform: uppercase;
  line-height: 0.95;
  max-width: 20ch;
  font-weight: 400;
}
.food-strip__head p {
  font-family: var(--f-body);
  font-weight: 300;
  font-size: 0.95rem;
  opacity: 0.7;
  max-width: 38ch;
  line-height: 1.65;
}
.food-strip__rail {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.85rem;
}
.food-strip__item {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--c-cream-deep);
}
.food-strip__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 1.2s var(--ease-soft);
}
.food-strip__item:hover img { transform: scale(1.05); }
.food-strip__item figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 0.9rem 1rem;
  font-family: var(--f-body);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-cream);
  background: linear-gradient(to top, rgba(45, 5, 0, 0.82), rgba(45, 5, 0, 0));
  font-weight: 500;
}
@media (max-width: 900px) {
  .food-strip__rail {
    grid-template-columns: 1fr 1fr;
    gap: 0.6rem;
  }
  .food-strip__item:nth-child(5) { grid-column: 1 / -1; aspect-ratio: 16 / 9; }
}

/* ============================================================
   SECTION : LE CINÉMA — bandes + reel horizontal
   ============================================================ */
.cinema {
  background: var(--c-chocolate-deep);
  color: var(--c-cream);
  padding: 0;
  position: relative;
  overflow: hidden;
}
.cinema::before {
  content: "";
  position: absolute;
  bottom: -180px;
  left: -180px;
  width: 600px;
  height: 600px;
  background-image: url("assets/img/motif-bis-ocre.png");
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.08;
  pointer-events: none;
}
.cinema__bands { position: relative; }
.cinema__band {
  height: 56px;
  background: #160300;
  width: 100%;
}

.cinema__intro {
  padding: var(--section-pad) 1.75rem 4rem;
  text-align: center;
  max-width: var(--max-width);
  margin: 0 auto;
}
.cinema__intro h2 {
  font-size: clamp(2.4rem, 5.5vw, 4.5rem);
  margin-bottom: 1.75rem;
  color: var(--c-cream);
  text-transform: uppercase;
}
.cinema__intro h2 em { color: var(--c-ocre-light); font-style: normal; }
.cinema__intro p { max-width: 720px; margin: 0 auto; opacity: 0.82; font-size: 1.1rem; line-height: 1.75; font-weight: 300; }

/* Pellicule horizontale */
.reel {
  display: flex;
  gap: 2rem;
  padding: 3.5rem 5vw 6rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.reel::-webkit-scrollbar { display: none; }

.frame {
  flex: 0 0 300px;
  scroll-snap-align: center;
  background: transparent;
  padding: 0;
  position: relative;
  display: flex;
  flex-direction: column;
}
/* Tuile affiche 2:3 — l'image emplit, fallback motif si manquante */
.frame__poster {
  position: relative;
  width: 100%;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  background: var(--c-chocolate);
  margin-bottom: 1.5rem;
}
.frame__poster::before {
  /* Fallback motif rosette + grand chiffre quand pas d'image */
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("assets/img/motif-bis-ocre.png");
  background-size: 70%;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.18;
  pointer-events: none;
}
.frame__poster img {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  z-index: 1;
  transition: transform 1.2s var(--ease-soft);
}
.frame:hover .frame__poster img { transform: scale(1.04); }
.frame h3 {
  font-size: 1.45rem;
  margin: 0 0 0.6rem;
  color: var(--c-cream);
  font-weight: 400;
  line-height: 1;
}
.frame__year { color: var(--c-ocre-light); font-size: 0.68rem; letter-spacing: 0.22em; margin-bottom: 0.85rem; font-family: var(--f-body); font-weight: 500; text-transform: uppercase; }
.frame__director { font-family: var(--f-body); font-size: 0.88rem; margin-bottom: 0.6rem; opacity: 0.85; font-weight: 400; }
.frame__cast { font-family: var(--f-body); font-size: 0.78rem; opacity: 0.65; line-height: 1.6; font-weight: 300; }

.frame--star {
  flex: 0 0 400px;
  background: transparent;
  color: var(--c-cream);
  padding: 0;
}
.frame--star .frame__poster {
  /* Affiche star : ratio plus cinéma, mais reste portrait */
  aspect-ratio: 2 / 3;
}
.frame--star h3 { color: var(--c-cream); font-size: 2.1rem; }
.frame--star .frame__year { color: var(--c-ocre-light); }
.frame--star .frame__director,
.frame--star .frame__cast,
.frame--star .frame__quote { color: var(--c-cream); opacity: 0.82; }
.frame--star .frame__badge {
  display: inline-block;
  font-family: var(--f-body);
  font-size: 0.64rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--c-ocre-light);
  margin-top: 1.25rem;
}
.frame__quote {
  margin-top: 1.4rem;
  font-family: var(--f-body);
  font-style: italic;
  font-size: 0.95rem;
  opacity: 0.78;
  font-weight: 300;
}

/* ---------- Affiches typographiques (plaque-titre éditoriale) ----------
   Chaque affiche est composée en CSS/HTML avec la typo Goudos,
   comme des cartons de film art-house. Palette : chocolat/crème/ocre.
*/
.frame__poster { --poster-accent: var(--c-ocre-light); }
.frame__poster.frame__poster--card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.5rem 1.35rem 1.45rem;
  color: var(--c-cream);
  text-align: left;
  border: 1px solid rgba(244, 233, 216, 0.1);
}
.frame__poster--card::before {
  /* Atténue le motif en fond pour qu'il reste subtil */
  opacity: 0.08;
  background-size: 130%;
}
.frame__poster--card::after {
  /* Grain/vignette subtil pour effet papier imprimé */
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at top, rgba(244, 233, 216, 0.05) 0%, rgba(0, 0, 0, 0.28) 100%);
  pointer-events: none;
}
.poster__top,
.poster__bottom {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--f-body);
  font-size: 0.62rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--poster-accent);
}
.poster__rule {
  flex: 1;
  height: 1px;
  background: currentColor;
  opacity: 0.45;
}
.poster__title {
  position: relative;
  z-index: 2;
  font-family: var(--f-display);
  font-size: clamp(1.8rem, 2.4vw, 2.6rem);
  line-height: 0.88;
  letter-spacing: 0.005em;
  text-transform: uppercase;
  color: var(--c-cream);
  margin: 1.3rem 0;
  font-weight: 400;
}
.frame--star .poster__title {
  font-size: clamp(2.3rem, 3.2vw, 3.6rem);
}
.poster__sig {
  position: relative;
  z-index: 2;
  font-family: var(--f-body);
  font-size: 0.64rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-cream);
  opacity: 0.72;
  font-weight: 400;
}

/* Variantes par film — chaque carton a sa propre dominante. */
.frame__poster--ib {
  background:
    linear-gradient(155deg, #2d0500 0%, #4b0903 55%, #2d0500 100%);
  --poster-accent: #c4a57a;
}
.frame__poster--sang {
  background:
    linear-gradient(180deg, #1a0300 0%, #3a0601 55%, #1a0300 100%);
  --poster-accent: #8d7055;
}
.frame__poster--ripoux {
  background:
    linear-gradient(160deg, #3a1a0b 0%, #6a1810 50%, #3a1a0b 100%);
  --poster-accent: #e3d3b6;
}
.frame__poster--mouton {
  background:
    linear-gradient(200deg, #4b0903 0%, #2d0500 50%, #1a0300 100%);
  --poster-accent: #a88869;
}
.frame__poster--autres {
  background:
    linear-gradient(180deg, #2d0500 0%, #4b0903 100%);
  --poster-accent: #8d7055;
}
.frame__poster--autres .poster__title {
  font-size: clamp(1.4rem, 2vw, 2.1rem);
}

.cinema__cta-wrap {
  text-align: center;
  padding: 0 1.75rem 6rem;
}
.cinema .context-cta,
.bar-zinc .context-cta { color: var(--c-cream); }

/* ============================================================
   SECTION : LA TERRASSE
   ============================================================ */
.terrasse {
  background: var(--c-cream-warm);
  color: var(--c-ink);
  position: relative;
  overflow: hidden;
}
.terrasse::before {
  content: "";
  position: absolute;
  bottom: -100px;
  right: -100px;
  width: 460px;
  height: 460px;
  background-image: url("assets/img/motif-bis-rouge.png");
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.08;
  pointer-events: none;
}
.terrasse__sun { display: none; }

.terrasse__container {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4.5rem;
  align-items: center;
  position: relative;
  z-index: 2;
}
.terrasse__text { padding-top: 5rem; }
.terrasse__text h2 { color: var(--c-chocolate); }
.terrasse__text p { margin-top: 1.3rem; line-height: 1.85; font-size: 1.05rem; font-weight: 300; }

.terrasse__visual {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.terrasse__item {
  aspect-ratio: 4 / 5;
  background: var(--c-cream);
  position: relative;
  overflow: hidden;
  opacity: 1;
  transform: none;
  transition: none;
}
.terrasse__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 1.2s var(--ease-soft);
}
.terrasse__item:hover img { transform: scale(1.04); }
.terrasse__item figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 0.9rem 1rem;
  font-family: var(--f-body);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-cream);
  background: linear-gradient(to top, rgba(45, 5, 0, 0.82), rgba(45, 5, 0, 0));
  font-weight: 500;
}
/* Offset de décalage vertical type masonry — première colonne plus basse */
.terrasse__item:nth-child(2) { transform: translateY(2.5rem); }
.terrasse__item:nth-child(4) { transform: translateY(2.5rem); }

/* ============================================================
   SECTION : LE QUARTIER — carte SVG animée
   ============================================================ */
.quartier {
  background: var(--c-cream);
  position: relative;
}
.quartier__header { text-align: center; margin-bottom: 4.5rem; }
.quartier__header h2 { color: var(--c-chocolate); }

.quartier__map-wrap {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
}
.quartier__map { width: 100%; height: auto; }
.quartier__map path, .quartier__map line {
  fill: none;
  stroke: var(--c-ocre);
  stroke-width: 1.5;
}

.quartier__points {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 3.5rem 2.5rem;
  margin-top: 5rem;
}
.poi {
  padding: 0;
  background: transparent;
  opacity: 1;
  transform: none;
  transition: none;
}
.poi__distance {
  font-family: var(--f-body);
  font-size: 0.68rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--c-ocre);
  font-weight: 500;
  margin-bottom: 0.85rem;
  display: block;
}
.poi h3 { font-size: 1.25rem; margin-bottom: 0.6rem; color: var(--c-chocolate); font-weight: 400; }
.poi p { font-size: 0.92rem; opacity: 0.72; line-height: 1.7; font-family: var(--f-body); font-weight: 300; text-transform: none; color: var(--c-ink); }

.quartier__cta { text-align: center; margin-top: 4.5rem; }

/* ============================================================
   SECTION : PRIVATISATION — flip cards
   ============================================================ */
.privatisation {
  background: var(--c-chocolate);
  color: var(--c-cream);
  position: relative;
  overflow: hidden;
}
.privatisation::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 720px;
  height: 720px;
  transform: translate(-50%, -50%);
  background-image: url("assets/img/motif-bis-ocre.png");
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.05;
  pointer-events: none;
}
.privatisation__container { position: relative; z-index: 2; }
.privatisation__header { text-align: center; margin-bottom: 4.5rem; }
.privatisation__header h2 { color: var(--c-cream); }
.privatisation__header h2 em { color: var(--c-ocre-light); font-style: normal; }
.privatisation__header p { color: var(--c-cream); opacity: 0.82; margin-top: 1rem; font-weight: 300; }

.spaces {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 4rem 3rem;
}
.space {
  position: relative;
  opacity: 1;
}

.space__face {
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  background: transparent;
}
.space__front { background: transparent; }
.space__back { display: none; }
.space__capacity {
  font-family: var(--f-display);
  font-size: 4.2rem;
  color: var(--c-ocre-light);
  font-weight: 400;
  line-height: 0.9;
  text-transform: uppercase;
}
.space__capacity span { font-size: 0.7rem; display: block; letter-spacing: 0.32em; text-transform: uppercase; color: var(--c-cream); margin-top: 0.85rem; opacity: 0.7; font-family: var(--f-body); font-weight: 500; }
.space h3 { font-size: 1.65rem; margin-bottom: 0; color: var(--c-cream); font-weight: 400; }
.space__type { font-family: var(--f-body); font-size: 0.68rem; letter-spacing: 0.32em; text-transform: uppercase; color: var(--c-ocre-light); margin-bottom: 0.5rem; font-weight: 500; display: block; }
.space p { font-family: var(--f-body); font-size: 0.95rem; line-height: 1.75; opacity: 0.8; font-weight: 300; text-transform: none; color: var(--c-cream); }
.space__hint { display: none; }

.privatisation__cta-wrap {
  text-align: center;
  margin-top: 4.5rem;
}
.privatisation__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  padding: 1.2rem 3rem;
  background: var(--c-cream);
  color: var(--c-chocolate);
  font-family: var(--f-display);
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.9rem;
  transition: background 0.35s var(--ease-soft), color 0.35s var(--ease-soft);
}
.privatisation__cta:hover { background: var(--c-ocre); color: var(--c-cream); }

/* ============================================================
   SECTION : RÉSERVATION FINALE — ZenChef
   ============================================================ */
.reservation {
  background: var(--c-cream);
  color: var(--c-chocolate);
  padding: var(--section-pad) 1.75rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.reservation__container { position: relative; z-index: 2; max-width: 820px; margin: 0 auto; }
.reservation h2 {
  font-size: clamp(2.4rem, 5.5vw, 4.5rem);
  margin-bottom: 1.25rem;
  color: var(--c-chocolate);
}
.reservation h2 em { color: var(--c-ocre); font-style: normal; }
.reservation__lede {
  font-size: 1.15rem;
  opacity: 0.82;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 300;
}

/* ----- CTA card Zenchef (popup SDK) ----- */
.reservation-cta {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
  padding: 3.25rem 2.5rem 3rem;
  background: linear-gradient(165deg, #4b0903 0%, #2d0500 55%, #1a0300 100%);
  color: var(--c-cream);
  border-radius: 22px;
  box-shadow:
    0 35px 90px -30px rgba(42, 8, 3, 0.55),
    inset 0 1px 0 rgba(244, 233, 216, 0.08);
  overflow: hidden;
  isolation: isolate;
}
.reservation-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("assets/img/motif-bis-ocre.png");
  background-size: 380px;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.07;
  pointer-events: none;
  z-index: 0;
}
.reservation-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top, rgba(244, 233, 216, 0.05) 0%, rgba(0,0,0,0.28) 100%);
  pointer-events: none;
  z-index: 0;
}
.reservation-cta > * { position: relative; z-index: 1; }
.reservation-cta__mono {
  display: block;
  width: 58px;
  height: auto;
  margin: 0 auto 1.25rem;
  opacity: 0.9;
}
.reservation-cta__eyebrow {
  display: block;
  text-align: center;
  font-family: var(--f-body);
  font-size: 0.68rem;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--c-ocre-light);
  margin-bottom: 1.15rem;
  font-weight: 500;
}
.reservation-cta__title {
  text-align: center;
  font-family: var(--f-display);
  font-size: clamp(1.85rem, 3.4vw, 2.85rem);
  line-height: 0.98;
  color: #ffffff;
  margin: 0 0 1rem;
  font-weight: 400;
  letter-spacing: 0.01em;
}
.reservation-cta__title em {
  color: #ffffff;
  font-style: normal;
}
.reservation-cta__lede {
  text-align: center;
  max-width: 480px;
  margin: 0 auto 2rem;
  font-family: var(--f-body);
  font-size: 0.98rem;
  line-height: 1.7;
  color: #ffffff;
  opacity: 0.92;
  font-weight: 300;
}
.reservation-cta__btn {
  display: block;
  width: fit-content;
  margin: 0 auto 1.25rem;
  padding: 1.15rem 2.75rem;
  background: var(--c-cream);
  color: var(--c-chocolate);
  font-family: var(--f-display);
  font-size: 0.92rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.35s var(--ease-soft), color 0.35s var(--ease-soft), transform 0.35s var(--ease-soft);
}
.reservation-cta__btn:hover,
.reservation-cta__btn:focus-visible {
  background: var(--c-ocre);
  color: var(--c-cream);
  transform: translateY(-2px);
}
.reservation-cta__phone {
  display: block;
  text-align: center;
  font-family: var(--f-body);
  font-size: 0.74rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-cream);
  opacity: 0.68;
  text-decoration: none;
  transition: opacity 0.3s var(--ease-soft);
}
.reservation-cta__phone:hover { opacity: 1; }

@media (max-width: 720px) {
  .reservation-cta { padding: 2.5rem 1.5rem 2.25rem; border-radius: 18px; }
  .reservation-cta__btn { padding: 1rem 2.2rem; font-size: 0.82rem; letter-spacing: 0.18em; }
}

/* ============================================================
   FAQ
   ============================================================ */
.faq {
  background: var(--c-cream-warm);
  padding: var(--section-pad) 1.75rem;
}
.faq__container { max-width: 900px; margin: 0 auto; }
.faq h2 {
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  text-align: center;
  margin-bottom: 3.5rem;
  color: var(--c-chocolate);
}
.faq__item {
  padding: 2.25rem 0;
}
.faq__item summary {
  font-family: var(--f-display);
  font-size: 1.2rem;
  cursor: pointer;
  color: var(--c-chocolate);
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.01em;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "+";
  font-size: 1.65rem;
  color: var(--c-ocre);
  transition: transform 0.3s;
  font-family: var(--f-body);
  font-weight: 300;
}
.faq__item[open] summary::after { transform: rotate(45deg); }
.faq__item p {
  margin-top: 1.1rem;
  line-height: 1.75;
  font-size: 0.98rem;
  opacity: 0.82;
  font-weight: 300;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--c-chocolate-deep);
  color: var(--c-cream);
  padding: 5rem 1.75rem 2.5rem;
  position: relative;
  overflow: hidden;
}
.footer::before {
  content: "";
  position: absolute;
  bottom: -200px;
  right: -200px;
  width: 560px;
  height: 560px;
  background-image: url("assets/img/motif-bis-ocre.png");
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.06;
  pointer-events: none;
}
.footer__grid, .footer__bottom { position: relative; z-index: 1; }
.footer__grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 3rem;
  margin-bottom: 3.5rem;
}
.footer__brand img { height: 64px; width: auto; margin-bottom: 1.25rem; }
.footer__col h4 {
  font-family: var(--f-body);
  font-size: 0.74rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-ocre-light);
  margin-bottom: 1.25rem;
  font-weight: 600;
}
.footer__col p, .footer__col a {
  font-size: 0.92rem;
  line-height: 1.85;
  opacity: 0.82;
  display: block;
  transition: opacity 0.3s, color 0.3s;
  font-weight: 300;
}
.footer__col a:hover { opacity: 1; color: var(--c-ocre-light); }
.footer__bottom {
  max-width: var(--max-width);
  margin: 0 auto;
  padding-top: 2.5rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.74rem;
  opacity: 0.55;
  flex-wrap: wrap;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 960px) {
  .nav__links { display: none; }
  .nav__brand img { height: 32px; }

  .bistrot__grid { grid-template-columns: 1fr; }
  .bistrot__text, .bistrot__visual { grid-column: 1 / -1; }
  .bistrot__visual { margin-top: 2rem; max-width: 500px; }

  .terrasse__container { grid-template-columns: 1fr; gap: 2.5rem; }
  .terrasse__text { padding-top: 0; }

  .frame { flex: 0 0 280px; padding: 1.65rem 1.35rem; }
  .frame--star { flex: 0 0 320px; }

  .footer__bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 720px) {
  .nav { padding: 0.85rem 1rem; }
  .nav__brand img { height: 28px; }
  .btn-reserve { padding: 0.55rem 1.1rem; font-size: 0.72rem; }
  .lang-switch { padding: 0.45rem 0.75rem; font-size: 0.68rem; }

  .hero { padding-top: 5.5rem; padding-bottom: 2rem; }
  .hero__monogramme { height: 56px; margin-bottom: 1.25rem; }
  .hero h1 { font-size: clamp(2.4rem, 11vw, 3.8rem); }
  .hero__cta { padding: 0.9rem 2rem; font-size: 0.85rem; }

  .decor-card { padding: 1.65rem 1.35rem; }

  /* Privatisation — mobile : espacement resserré, hauteur auto */
  .privatisation__header { margin-bottom: 2.5rem; }
  .spaces {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .space {
    height: auto;
    min-height: 0;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(244, 233, 216, 0.12);
  }
  .space:first-child { border-top: 0; padding-top: 0; }
  .space__face {
    gap: 0.85rem;
    padding: 0;
  }
  .space h3 { font-size: 1.45rem; }
  .space p { font-size: 0.92rem; line-height: 1.65; }
  .space__type { margin-bottom: 0.35rem; font-size: 0.62rem; }
  .space__capacity { font-size: 3.2rem; line-height: 0.85; }
  .space__capacity span { margin-top: 0.55rem; font-size: 0.62rem; }
  .privatisation__cta-wrap { margin-top: 2.75rem; }
  .privatisation__cta {
    padding: 1rem 1.65rem;
    font-size: 0.76rem;
    letter-spacing: 0.14em;
    text-align: center;
  }
}

/* ============================================================
   PREFERS-REDUCED-MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal, .decor-card, .poi, .space, .terrasse__item, .hero__content,
  .hero h1, .hero__eyebrow, .hero__cta { opacity: 1 !important; transform: none !important; }
  .hero__tagline { opacity: 0.85 !important; transform: none !important; }
  .hero__crest-layer--rouge { opacity: 0.45 !important; transform: none !important; }
  .hero__crest-layer--ocre  { opacity: 0.6 !important; transform: none !important; }
  .hero__crest-layer--beige { opacity: 1 !important; transform: none !important; }
}
