/* ═══════════════════════════════════════════════════════════════════
   BIG BANG SMASH — Feuille de style principale
   Palette officielle : Bordeaux · Vanille · Ivoire · Terracotta · Olive · Pêche
   Combos autorisés :
     (1) Vanille  sur Bordeaux
     (2) Bordeaux sur Ivoire
     (3) Vanille  sur Terracotta
     (4) Ivoire   sur Bordeaux
   ═══════════════════════════════════════════════════════════════════ */

/* ── FONTS ── */
@font-face {
  font-family: 'Anton';
  src: url('../fonts/Anton-Regular.ttf') format('truetype');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Webcomic';
  src: url('../fonts/Webcomic.ttf') format('truetype');
  font-weight: normal; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Introspection';
  src: url('../fonts/Introspection-Regular.ttf') format('truetype');
  font-weight: normal; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/Montserrat-Regular.ttf') format('truetype');
  font-weight: 400; font-display: swap;
}
@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/Montserrat-Medium.ttf') format('truetype');
  font-weight: 500; font-display: swap;
}
@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/Montserrat-SemiBold.ttf') format('truetype');
  font-weight: 600; font-display: swap;
}
@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/Montserrat-Bold.ttf') format('truetype');
  font-weight: 700; font-display: swap;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* ── TOKENS ── */
:root {
  /* Brand palette — hiérarchie officielle */
  --bordeaux:   #480903;  /* Primaire — le plus utilisé */
  --bordeaux2:  #3a0702;  /* Variante sombre */
  --vanille:    #FFF0AE;  /* Secondaire — duo principal avec bordeaux */
  --ivoire:     #F9EEE5;  /* Claire alternative — fonds clairs */
  --peche:      #FFD8BC;  /* Accent — petite dose, citations */
  --terracotta: #B54B12;  /* Sombre alt — énergie, variété */
  --olive:      #937B26;  /* Sombre alt — artisanal, terroir */

  /* Tokens dérivés */
  --ivoire-dim: #c5b5a6;
  --border-d:   rgba(255,240,174,0.18);   /* vanille transparent — fonds sombres */
  --border-d-hi:rgba(255,240,174,0.5);
  --border-l:   rgba(72,9,3,0.14);        /* bordeaux transparent — fonds clairs */
  --border-l-hi:rgba(72,9,3,0.35);

  --font-head:  'Anton', 'Impact', sans-serif;
  --font-hand:  'Webcomic', cursive;
  --font-accent: 'Introspection', cursive;
  --font-body:  'Montserrat', system-ui, sans-serif;

  --gap:  clamp(1rem, 6vw, 4rem);   /* espacement vertical entre sections */
  --max:  1320px;                     /* largeur maximale du contenu */
  --pad:  clamp(1.5rem, 6vw, 5rem);  /* padding horizontal adaptatif */
}

/* ── BASE ── */
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--ivoire);
  color: var(--bordeaux);
  overflow-x: hidden;
  font-size: 1rem;
  line-height: 1.65;
}


/* ════════════════════════════════════════════════════════════════════
   NAV
   Combo : vanille sur bordeaux (1)
   ════════════════════════════════════════════════════════════════════ */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: var(--bordeaux);
  border-bottom: 1px solid rgba(255,240,174,0.1);
}
nav::before {
  content: "";
  position: absolute; inset: 0;
  background-image: url("../img/BBS-nav.png");
  background-repeat: repeat-x;
  background-position: center center;
  background-size: auto 100%;
  opacity: 0.025;
  pointer-events: none;
  z-index: 0;
}
.nav-inner {
  max-width: var(--max); margin: 0 auto;
  padding: 0.85rem var(--pad);
  display: flex; align-items: center; justify-content: space-between;
  position: relative; z-index: 1;
}
.nav-logo {
  display: inline-flex; align-items: center; gap: 0.75rem;
  text-decoration: none; flex-shrink: 0;
}
.nav-logo img { height: 42px; width: auto; display: block; }

.nav-links { display: flex; gap: 2.5rem; list-style: none; align-items: center; }
.nav-links a {
  color: rgba(249,238,229,0.65); text-decoration: none;
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; transition: color 250ms;
  white-space: nowrap;
}
.nav-links a:hover { color: var(--vanille); }
.nav-cta {
  background: var(--vanille) !important; color: var(--bordeaux) !important;  
  padding: 0.6rem 1.4rem !important;
  font-size: 0.72rem !important; letter-spacing: 0.12em !important;
  font-weight: 700 !important;
  transition: background 250ms, color 250ms !important;
  text-decoration: none !important;
  border: none !important;
  border-radius: 100px !important;
}

.nav-cta:hover { background: #fff9d0 !important; }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; }
.hamburger span { width: 24px; height: 2px; background: var(--ivoire); display: block; transition: transform 300ms, opacity 300ms; }
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Menu mobile overlay */
.nav-overlay {
  display: none; position: fixed; inset: 0; z-index: 99;
  background: var(--bordeaux2);
  flex-direction: column; align-items: center; justify-content: center;
}
.nav-overlay.open { display: flex; }
.nav-overlay ul { list-style: none; text-align: center; }
.nav-overlay ul li { padding: 1.25rem 0; border-bottom: 1px solid var(--border-d); width: 240px; }
.nav-overlay ul a {
  color: var(--ivoire); text-decoration: none;
  font-size: 1rem; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; transition: color 200ms;
}
.nav-overlay ul a:hover { color: var(--vanille); }
.nav-overlay .nav-cta { display: inline-block; margin-top: 2rem; font-size: 1.1rem; padding: 1.4rem 4rem; letter-spacing: 0.20em; text-transform: uppercase; }
.overlay-close {
  position: absolute; top: 1.5rem; right: 2rem;
  background: none; border: none; color: var(--ivoire-dim);
  font-size: 1.5rem; cursor: pointer; line-height: 1;
}


/* ════════════════════════════════════════════════════════════════════
   HERO
   Combo : ivoire + vanille sur bordeaux (1 & 4)
   ════════════════════════════════════════════════════════════════════ */
#hero {
  position: relative; min-height: 100dvh;
  display: flex; flex-direction: column;
  overflow: hidden; padding-top: 5rem;
  background: var(--bordeaux);
}
.hero-bg {
  position: absolute; inset: 0;
  background-position: center; background-size: cover; background-repeat: no-repeat;
  z-index: 0;
}
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background:
    linear-gradient(135deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.1) 55%, transparent 100%),
    linear-gradient(to top, var(--bordeaux) 0%, rgba(72,9,3,0.97) 20%, rgba(72,9,3,0.75) 50%, rgba(72,9,3,0.38) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  flex: 1;
  display: flex; flex-direction: column; justify-content: center;
  gap: clamp(1.5rem, 3.5vh, 2.8rem);
  max-width: var(--max); margin: 0 auto; width: 100%;
  padding: clamp(1rem, 3vh, 3rem) var(--pad) clamp(3.5rem, 7vh, 5rem);
}
.hero-badge { display: inline-flex; align-items: center; gap: 0.75rem; }
.hero-badge-line { width: 2.5rem; height: 1px; background: var(--vanille); }
.hero-badge span { font-family: var(--font-body); font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.2em; color: var(--vanille); }
.hero-title { margin: 0; line-height: 1; }
.hero-slogan-img {
  display: block;
  width: clamp(240px, 42vw, 560px);
  height: auto;
  filter: drop-shadow(0 2px 28px rgba(0,0,0,0.5));
}
.hero-desc { font-size: 1.05rem; font-weight: 400; color: rgba(249,238,229,0.78); max-width: 60ch; line-height: 1.85; margin: 0; }
.hero-actions { display: flex; gap: 1.25rem; flex-shrink: 0; flex-wrap: wrap; margin: 0; }
.hero-actions .btn-primary { font-size: 0.82rem; padding: 1.3rem 3rem; }
.hero-actions .btn-ghost  { font-size: 0.82rem; padding: 1.3rem 3rem; border-radius: 100px;}

/* Boutons globaux */
.btn-primary {
  display: inline-block; background: var(--vanille); color: var(--bordeaux);
  font-family: var(--font-body); font-size: 0.75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.14em;
  text-decoration: none; padding: 1.1rem 2.5rem;
  transition: background 250ms; cursor: pointer; border: none;
  border-radius: 100px;
}
.btn-primary:hover { background: #fff9d0; }
.btn-ghost {
  display: inline-block; background: transparent; color: var(--ivoire);
  font-family: var(--font-body); font-size: 0.75rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.14em;
  text-decoration: none; padding: 1.1rem 2.5rem;
  border: 1px solid rgba(249,238,229,0.3);
  border-radius: 100px;
  transition: border-color 250ms, color 250ms; cursor: pointer;
}
.btn-ghost:hover { border-color: var(--vanille); color: var(--vanille); }

.hero-scroll {
  position: absolute; bottom: 0.5rem; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem; z-index: 2;
}
.hero-scroll span { font-size: 0.56rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(249,238,229,0.45); font-weight: 600; }
.scroll-line { width: 1px; height: 2rem; background: linear-gradient(to bottom, rgba(255,240,174,0.6), transparent); }


/* ════════════════════════════════════════════════════════════════════
   ORNEMENT
   Combo : ivoire (doux) sur terracotta (3) — info secondaire, discret
   ════════════════════════════════════════════════════════════════════ */
.ornement {
  background: var(--bordeaux);
  text-align: center; padding: 1.4rem var(--pad);
}
.ornement-inner {
  max-width: var(--max); margin: 0 auto;
  display: flex; align-items: center; justify-content: center; gap: 2rem;
}
.orn-line { flex: 1; height: 1px; background: rgba(249,238,229,0.3); }
.orn-text {
  font-family: var(--font-hand); font-size: 1.3rem;
  color: rgba(249,238,229,0.85); letter-spacing: 0.02em;
}


/* ════════════════════════════════════════════════════════════════════
   SECTIONS — éléments communs
   ════════════════════════════════════════════════════════════════════ */
.section-wrap { max-width: var(--max); margin: 0 auto; padding: var(--gap) var(--pad); position: relative; z-index: 1; }

/* Eyebrow — fond sombre */
.eyebrow-d { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1.25rem; }
.ey-line-d { width: 2rem; height: 2px; background: var(--vanille); flex-shrink: 0; }
.eyebrow-d span { font-size: 0.6rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.22em; color: var(--vanille); }

/* Eyebrow — fond clair */
.eyebrow { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1.25rem; }
.ey-line { width: 2rem; height: 2px; background: var(--terracotta); flex-shrink: 0; }
.eyebrow span { font-size: 0.6rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.22em; color: var(--terracotta); }

/* Titre — fond sombre */
.section-title-d {
  font-family: var(--font-head); font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 400; line-height: 0.92; text-transform: uppercase;
  color: var(--ivoire);
}
.section-title-d em { font-style: normal; color: var(--vanille); }

/* Titre — fond clair */
.section-title {
  font-family: var(--font-head); font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 400; line-height: 0.92; text-transform: uppercase;
  color: var(--bordeaux);
}
.section-title em { font-style: normal; color: var(--terracotta); }

.section-sub { margin-top: 1rem; font-size: 0.9rem; font-weight: 400; color: rgba(249,238,229,0.65); max-width: 55ch; line-height: 1.9; }


/* ════════════════════════════════════════════════════════════════════
   ABOUT
   Combo : bordeaux sur ivoire (2)
   ════════════════════════════════════════════════════════════════════ */
#about {
  background: var(--peche);
  position: relative;
  z-index: 1;
  overflow: hidden;
  isolation: isolate;
  /* padding-bottom: clamp(6rem, 12vw, 10rem); */
  /* réduire le padding-bottom */
  padding-bottom: clamp(3rem, 9vw, 7rem);
}
#about::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../img/BBS-motif.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  opacity: 0.025;
  pointer-events: none;
  z-index: 0;
}
#about > * {
  position: relative;
  z-index: 1;
}
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(3rem, 7vw, 7rem); align-items: center; }
.about-visual { position: relative; }
.about-main-img {
  width: 100%; aspect-ratio: 3/4;
  background-position: center; background-size: cover; background-repeat: no-repeat;
  position: relative; z-index: 1;
  border-radius: 16px;
}
.about-frame {
  position: absolute; top: -1.5rem; left: -1.5rem; right: 1.5rem; bottom: 1.5rem;
  border: 2px solid rgba(72,9,3,0.12); pointer-events: none; z-index: 0;
  border-radius: 20px;
}
/* Légende photo */
.about-photo-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 0.6rem 1rem;
  background: linear-gradient(to top, rgba(14,3,2,0.72) 0%, transparent 100%);
  border-radius: 0 0 16px 16px;
  font-size: 0.65rem; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: rgba(249,238,229,0.75);
  z-index: 1;
}
/* Desktop : stat bar sur tout le bas de l'image → légende remonte en haut */
@media (min-width: 1025px) {
  .about-photo-caption {
    top: 0; bottom: auto; right: 0;
    border-radius: 16px 16px 0 0;
    background: linear-gradient(to bottom, rgba(14,3,2,0.65) 0%, transparent 100%);
    padding: 0.75rem 1rem 1.5rem;
  }
}

/* Stat bar */
.about-stat-bar {
  position: absolute; bottom: -2rem; right: -2rem;
  background: rgba(255,240,174,0.1); /* couleur des séparateurs */
  display: grid; grid-template-columns: 1fr 1fr; gap: 1px; z-index: 2;
  border-radius: 14px; overflow: hidden;
  /* texture filigrane */
  box-shadow: inset 0 0 0 1px rgba(255,240,174,0.08);
}
.about-stat-bar::before {
  content: ''; position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background-image: radial-gradient(circle, rgba(255,240,174,0.05) 1px, transparent 1px);
  background-size: 14px 14px;
}
.stat-item {
  position: relative; z-index: 1;
  background: var(--bordeaux);
  padding: 1.25rem 1.5rem;
  display: flex; flex-direction: column; gap: 0.35rem;
  align-items: flex-start;
}
.stat-icon {
  width: 1.25rem; height: 1.25rem;
  color: rgba(255,240,174,0.45);
  stroke-width: 1.5;
  flex-shrink: 0;
  margin-bottom: 0.15rem;
}
.mini-stat-num { font-family: var(--font-head); font-size: 2rem; color: var(--vanille); line-height: 1; display: block; }
.mini-stat-label { font-size: 0.58rem; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(249,238,229,0.5); font-weight: 600; line-height: 1.35; }
.about-text { padding-top: 2rem; }
.about-body { font-size: 0.9rem; font-weight: 400; color: rgba(72,9,3,0.65); line-height: 1.9; margin-bottom: 1.25rem; }
.about-divider { width: 3rem; height: 2px; background: var(--terracotta); margin: 2rem 0; }
.about-values { display: flex; flex-direction: column; gap: 0.75rem; }
.value-row {
  display: flex; align-items: flex-start; gap: 1.25rem; padding: 1.25rem;
  border: 1px solid var(--border-l); background: rgba(72,9,3,0.03);
  transition: border-color 250ms, background 250ms;
  border-radius: 10px;
}
.value-row:hover { border-color: var(--border-l-hi); background: rgba(72,9,3,0.06); }
.value-num { font-family: var(--font-head); font-size: 1.1rem; color: var(--terracotta); flex-shrink: 0; line-height: 1; padding-top: 0.1rem; }
.value-text strong { display: block; font-size: 0.85rem; font-weight: 700; color: var(--bordeaux); margin-bottom: 0.2rem; }
.value-text span { font-size: 0.78rem; color: rgba(72,9,3,0.55); }

/* ── About : expand mobile ───────────────────────────────────────── */
.about-link-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1.25rem;
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--terracotta);
  text-decoration: none;
  padding: 0.4rem 0;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s, color 0.2s;
}
.about-link-btn:hover { border-color: var(--terracotta); }
.about-link-btn:focus-visible { outline: 2px solid var(--terracotta); outline-offset: 3px; border-radius: 2px; }


/* ════════════════════════════════════════════════════════════════════
   MENU
   Combo : ivoire + vanille sur bordeaux (1 & 4)
   ════════════════════════════════════════════════════════════════════ */
#menu { background: linear-gradient(to bottom, var(--bordeaux) 5%, var(--bordeaux2)); position: relative; z-index: 1; scroll-margin-top: 3rem; }
#menu .section-title {
  color: var(--vanille);
}
.menu-head {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: clamp(2.5rem, 5vw, 4rem); padding-bottom: 2rem;
  border-bottom: 2px solid var(--border-d);
}
.burgers-grid {
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px; background: rgba(255,240,174,0.08);
  border: 1px solid rgba(255,240,174,0.08); margin-bottom: 3rem;
  border-radius: 16px; overflow: hidden;
}
.burger-card { background: var(--bordeaux); display: flex; flex-direction: column; transition: background 250ms; cursor: default; position: relative; }
.burger-card:focus-visible { outline: none; }
@media (max-width: 1024px) {
  .burger-card { cursor: pointer; }
  .burger-card:hover { background: #4e0b04; }
  .burger-card:focus-visible { outline: 2px solid var(--vanille); outline-offset: -3px; }
}
.burger-card-ghost { background: transparent; pointer-events: none; cursor: default; }
.burger-card-img-wrap { position: relative; }
.burger-card-img {
  width: 100%; aspect-ratio: 1/1; flex-shrink: 0;
  max-height: clamp(240px, 38vw, 340px);
  object-fit: cover; object-position: center; display: block;
}
.burger-card-body {
  padding: 1.75rem 2rem 1.5rem;
  display: flex; flex-direction: column;
  position: relative;
}
/* Dégradé de transition image → corps de carte */
.burger-card-body::before {
  content: '';
  position: absolute; top: -3rem; left: 0; right: 0; height: 3rem;
  background: linear-gradient(to bottom, transparent, var(--bordeaux));
  pointer-events: none;
}
.burger-card-tag { font-size: 0.6rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.16em; color: var(--peche); margin-bottom: 0.5rem; }
.burger-card-name-row { margin-bottom: 0.75rem; }
.burger-card-name { font-family: var(--font-head); font-size: 1.4rem; color: var(--ivoire); line-height: 1; text-transform: uppercase; }
.burger-desc-seo {
  font-size: 0.8rem; color: rgba(249,238,229,0.6); line-height: 1.7;
  margin: 0.6rem 0 1rem;
}
@media (max-width: 1024px) {
  .burger-desc-seo { display: none; }
}

/* ── Modale burger ──────────────────────────────────────────────────────── */
#burger-modal {
  position: fixed; inset: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: center;
  padding: 1.25rem;
}
#burger-modal[hidden] { display: none; }
.bm-overlay {
  position: absolute; inset: 0;
  background: rgba(14, 3, 2, 0.78);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}
.bm-box {
  position: relative; z-index: 1;
  background: var(--bordeaux);
  border-radius: 16px;
  max-width: 460px; width: 100%;
  max-height: 90dvh; overflow-y: auto;
  border: 1px solid rgba(255,240,174,0.1);
  box-shadow: 0 24px 64px rgba(0,0,0,0.6);
  animation: bm-in 0.26s ease both;
}
@keyframes bm-in {
  from { opacity: 0; transform: scale(0.95) translateY(10px); }
  to   { opacity: 1; transform: scale(1)    translateY(0); }
}
.bm-close {
  position: absolute; top: 0.75rem; right: 0.75rem; z-index: 2;
  background: rgba(0,0,0,0.35); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%; width: 2.1rem; height: 2.1rem;
  cursor: pointer; color: var(--ivoire); font-size: 0.95rem;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.bm-close:hover { background: rgba(0,0,0,0.6); }
.bm-close:focus-visible { outline: 2px solid var(--vanille); outline-offset: 2px; }
.bm-img-wrap { position: relative; }
.bm-img-wrap .burger-label {
  position: absolute; bottom: 0.75rem; right: 0.75rem;
  background: rgba(14,3,2,0.6); backdrop-filter: blur(4px);
  border-color: rgba(255,240,174,0.5);
}
.bm-img {
  width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block;
  border-radius: 16px 16px 0 0;
}
.bm-body { padding: 1.5rem 1.75rem 0.5rem; }
.bm-tag { font-size: 0.58rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.16em; color: var(--peche); margin-bottom: 0.5rem; }
.bm-name { font-family: var(--font-head); font-size: 1.8rem; color: var(--ivoire); text-transform: uppercase; margin: 0 0 0.9rem; line-height: 1.05; }
.bm-desc { font-size: 0.85rem; color: rgba(249,238,229,0.68); line-height: 1.75; margin: 0 0 1.25rem; }
/* Carousel horizontal dans la modale */
.bm-carousel {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.bm-carousel::-webkit-scrollbar { display: none; }
.bm-slide { flex: 0 0 100%; scroll-snap-align: center; }
.bm-dots { display: none; } /* caché par défaut, affiché en mobile */
.bm-dot {
  width: 6px; height: 6px; border-radius: 3px;
  background: rgba(255,240,174,0.3);
  transition: width 0.25s ease, background 0.25s ease;
}
.bm-dot.active { width: 20px; background: var(--vanille); }
@media (max-width: 1024px) {
  #burger-modal { padding: 0; flex-direction: column; justify-content: center; gap: 0.9rem; }
  .bm-box { border-radius: 20px; max-height: 85dvh; margin: 0 20px; width: calc(100% - 40px); }
  .bm-img { aspect-ratio: 16/9; max-height: 38dvh; object-position: center 30%; }
  .bm-body { padding: 0.85rem 1.25rem 0.75rem; }
  .bm-name { font-size: 1.35rem; margin-bottom: 0.5rem; }
  .bm-desc { font-size: 0.8rem; line-height: 1.55; margin-bottom: 0.25rem; }
  .bm-dots { display: flex; gap: 0.4rem; align-items: center; justify-content: center; position: relative; z-index: 2; }
}
.burger-label {
  font-size: 0.6rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em;
  padding: 0.3rem 0.75rem; border: 1px solid rgba(255,240,174,0.4); color: var(--vanille);
  background: rgba(14,3,2,0.5); backdrop-filter: blur(4px);
  border-radius: 8px;
  /* desktop : positionné en absolu dans la carte, coin sup. droit du body */
  position: absolute; top: 1.75rem; right: 2rem; z-index: 1;
}
@media (max-width: 1024px) {
  .burger-label {
    /* mobile : overlay sur l'image, coin inf. droit */
    top: auto; bottom: 0.5rem; right: 0.5rem;
    font-size: 0.5rem; padding: 0.2rem 0.45rem; letter-spacing: 0.08em;
    background: rgba(14,3,2,0.6); backdrop-filter: blur(4px);
    border-color: rgba(255,240,174,0.5);
  }
}
.sub-menu-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; margin-top: 1rem; }
.sub-section-title { font-family: var(--font-head); font-size: 1.2rem; text-transform: uppercase; color: var(--ivoire); margin-bottom: 1.5rem; padding-bottom: 1rem; border-bottom: 2px solid var(--border-d); }
.sub-item { display: flex; justify-content: space-between; align-items: baseline; padding: 1rem 0; border-bottom: 1px solid var(--border-d); gap: 1rem; }
.sub-item-info { flex: 1; }
.sub-item-name { font-size: 0.88rem; font-weight: 600; color: var(--ivoire); margin-bottom: 0.2rem; }
.sub-item-desc { font-size: 0.78rem; color: rgba(249,238,229,0.45); }
.sub-item-price { font-family: var(--font-head); font-size: 1rem; color: var(--vanille); flex-shrink: 0; }


/* ── BANDE ── */
.bande-wrap {
  width: 100%;
  background-position: center;
  background-size: auto 100%;
  height: 80px;
}

/* ════════════════════════════════════════════════════════════════════
   GALERIE MASONRY
   Section désactivée — activer en retirant {% if false %} dans index.html
   ════════════════════════════════════════════════════════════════════ */
#galerie { background: var(--peche); }
#galerie .section-title em { color: var(--terracotta); }
.gallery-bento {
  display: flex;
  gap: clamp(0.5rem, 1.2vw, 0.875rem);
  margin-top: clamp(2rem, 5vw, 3.5rem);
  align-items: flex-start;
}
.gallery-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: clamp(0.5rem, 1.2vw, 0.875rem);
}
.gallery-item {
  overflow: hidden;
  border-radius: 12px;
  cursor: zoom-in;
  width: 100%;
}
.gallery-item img {
  width: 100%; height: 100%; display: block;
  object-fit: cover;
  transition: transform 450ms ease;
}
.gallery-item:hover img { transform: scale(1.04); }
/* Ratios col 1 : 4:3 + 3:4 */
.gallery-col:nth-child(1) .gallery-item:nth-child(1) { aspect-ratio: 4/3; }
.gallery-col:nth-child(1) .gallery-item:nth-child(2) { aspect-ratio: 3/4; }
/* Ratios col 2 : 4:3 + 3:4 */
.gallery-col:nth-child(2) .gallery-item:nth-child(1) { aspect-ratio: 4/3; }
.gallery-col:nth-child(2) .gallery-item:nth-child(2) { aspect-ratio: 3/4; }
/* Ratios col 3 : 3:4 + 4:3 */
.gallery-col:nth-child(3) .gallery-item:nth-child(1) { aspect-ratio: 3/4; }
.gallery-col:nth-child(3) .gallery-item:nth-child(2) { aspect-ratio: 4/3; }
.gallery-item--empty { visibility: hidden; }

/* Carrousel mobile — caché par défaut (desktop) */
.gallery-carousel { display: none; }
.gc-dots { display: none; }

.gallery-empty {
  width: 100%; text-align: center;
  padding: 4rem 2rem; color: var(--ivoire-dim);
  font-size: 0.85rem; border: 1px dashed var(--border-l);
  border-radius: 12px;
}

/* ── BANDE ── */
.bande-wrap-2 {
  width: 100%;
  background-position: center;
  background-size: auto 100%;
  height: 80px;
}

/* ════════════════════════════════════════════════════════════════════
   EVENTS
   Combo : ivoire + vanille sur bordeaux foncé (1 & 4)
   ════════════════════════════════════════════════════════════════════ */
#events { background: var(--bordeaux); position: relative; z-index: 1; scroll-margin-top: -3rem; }
.events-layout { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(3rem, 6vw, 6rem); align-items: start; }
/* Citation en pêche — couleur accent */
.events-tagline {
  font-family: var(--font-hand); font-size: 1.45rem; color: var(--peche);
  margin: 1.5rem 0; padding: 1.25rem 1.5rem;
  border-left: 3px solid var(--peche);
  background: rgba(255,216,188,0.06);
}
.event-types { display: flex; flex-direction: column; gap: 0.75rem; margin-top: 2rem; }
.event-type-row {
  display: flex; align-items: center; gap: 1.25rem; padding: 1rem 1.25rem;
  border: 1px solid var(--border-d); transition: border-color 250ms, background 250ms;
  border-radius: 10px;
}
.event-type-row[data-event-type] { cursor: pointer; }
.event-type-row[data-event-type]:hover { border-color: var(--vanille); background: rgba(255,240,174,0.08); }
.event-type-row[data-event-type]:hover strong { color: var(--vanille); }
.event-icon { font-size: 1.5rem; flex-shrink: 0; width: 2rem; text-align: center; }
.event-type-row strong { display: block; font-size: 0.88rem; font-weight: 700; color: var(--ivoire); margin-bottom: 0.1rem; }
.event-type-row span { font-size: 0.78rem; color: var(--ivoire-dim); }
.events-form-wrap {
  background: rgba(255,240,174,0.06);
  border: 1px solid var(--border-d); padding: clamp(2rem, 4vw, 3rem);
  border-radius: 16px;
}
.form-head { font-family: var(--font-head); font-size: 1.5rem; text-transform: uppercase; color: var(--vanille); margin-bottom: 0.5rem; }
.form-sub { font-size: 0.82rem; color: var(--ivoire-dim); margin-bottom: 2rem; }
.form-group { margin-bottom: 1.25rem; min-width: 0; }
.form-group label { display: block; font-size: 0.62rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.14em; color: rgba(255,240,174,0.55); margin-bottom: 0.5rem; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 0.85rem 1rem;
  background: rgba(255,240,174,0.05); border: 1px solid var(--border-d);
  color: var(--ivoire); font-family: var(--font-body); font-size: 0.875rem;
  outline: none; transition: border-color 250ms;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--vanille); }
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(249,238,229,0.2); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-group input[type="date"] { min-width: 0; max-width: 100%; }
.form-group select option { background: var(--bordeaux2); color: var(--ivoire); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.required { color: var(--peche); }

#devis-form { scroll-margin-top: 13rem; }

/* ── Feedback formulaire devis ───────────────────────────────────────── */
.devis-feedback {
  padding: 0.9rem 1.1rem;
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
  border: 1px solid transparent;
}
.devis-feedback--success {
  background: rgba(80,160,80,0.15);
  border-color: rgba(80,160,80,0.4);
  color: #7dd87d;
}
.devis-feedback--error {
  background: rgba(200,60,40,0.15);
  border-color: rgba(200,60,40,0.4);
  color: #f98070;
}
.form-group .field-invalid,
.field-invalid {
  border-color: rgba(200,60,40,0.7) !important;
  box-shadow: 0 0 0 2px rgba(200,60,40,0.2) !important;
}


/* ════════════════════════════════════════════════════════════════════
   CONTACT
   Combo : bordeaux sur ivoire (2)
   ════════════════════════════════════════════════════════════════════ */
#contact {
  background: var(--peche);
  position: relative;
  z-index: 1;
  overflow: hidden;
  isolation: isolate;
  margin-top: calc(-1 * clamp(48px, 6vw, 80px));
  padding-top: clamp(48px, 6vw, 80px);
}
#contact::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../img/icone-motif.png");
  background-repeat: repeat;
  background-size: 1920px ;
  opacity: 0.025;
  pointer-events: none;
  z-index: 0;
}
#contact > * {
  position: relative;
  z-index: 1;
}
/* ── Séparateurs vague ───────────────────────────────────────────── */
.wave-divider {
  background: transparent;
  line-height: 0;
  position: relative;
  z-index: 2;
  margin-bottom: -2px;
}
.wave-divider svg { display: block; width: 100%; height: calc(clamp(48px, 6vw, 80px) + 2px); }
/* Vague about→menu : z-index 1 (sous #menu) */
.wave-divider--flip { margin-top: calc(-1 * clamp(48px, 6vw, 80px) - 1px); z-index: 1; }
/* ── Présences : layout ──────────────────────────────────────────── */
.presence-layout {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: start;
}

/* ── Calendrier ─────────────────────────────────────────────────── */
.presence-calendar-wrap {
  background: var(--ivoire);
  border: 1px solid var(--border-l);
  border-radius: 16px;
  overflow: hidden;
}
.cal-nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.85rem 1.1rem;
  background: var(--bordeaux);
  color: var(--vanille);
}
.cal-month-label { font-family: var(--font-head); font-size: 1rem; letter-spacing: 0.05em; }
.cal-btn {
  background: none; border: none; color: var(--vanille);
  font-size: 1.3rem; cursor: pointer; line-height: 1;
  padding: 0 0.35rem; transition: color 150ms;
}
.cal-btn:hover { color: #fff; }
.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
  padding: 0.75rem;
  background: var(--ivoire);
}
.cal-day-name {
  font-size: 0.6rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--ivoire-dim);
  text-align: center; padding: 0.35rem 0;
}
.cal-day {
  aspect-ratio: 1; display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem; font-weight: 500; border-radius: 8px;
  cursor: pointer; transition: background 150ms, color 150ms;
  color: var(--bordeaux);
  user-select: none;
}
.cal-day:hover:not(.cal-empty) { background: rgba(72,9,3,0.08); }
.cal-empty { cursor: default; }
.cal-today { font-weight: 700; outline: 2px solid var(--terracotta); outline-offset: -2px; }
.cal-has-event {
  background: var(--bordeaux); color: var(--vanille);
  font-weight: 700;
}
.cal-has-event:hover { background: var(--terracotta); }
.cal-selected {
  background: var(--terracotta) !important;
  color: #fff !important;
}
.cal-info {
  padding: 0.9rem 1.1rem 1rem;
  border-top: 1px solid var(--border-l);
  min-height: 4rem;
}
.cal-info-empty { font-size: 0.78rem; color: var(--ivoire-dim); }
.cal-event-card {}
.cal-event-date { font-size: 0.62rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: var(--terracotta); margin-bottom: 0.25rem; }
.cal-event-name { font-size: 0.92rem; font-weight: 700; color: var(--bordeaux); }
.cal-event-lieu { font-size: 0.75rem; color: rgba(72,9,3,0.55); margin-top: 0.2rem; }
.cal-event-desc { font-size: 0.72rem; color: rgba(72,9,3,0.45); margin-top: 0.4rem; font-style: italic; }

/* ── Carte Leaflet ───────────────────────────────────────────────── */
.presence-map-wrap { position: relative; }
#presence-map {
  width: 100%; height: 420px;
  border-radius: 16px; overflow: hidden;
  border: 1px solid var(--border-l);
  z-index: 0;
}
.map-hint {
  text-align: center; font-size: 0.78rem;
  color: var(--ivoire-dim); margin-top: 0.6rem;
}
.map-pin {
  width: 24px; height: 24px;
  background: var(--terracotta);
  border: 3px solid #fff;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

/* ── Bande contact ───────────────────────────────────────────────── */
.contact-strip {
  display: flex; flex-wrap: wrap; gap: 0.75rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-l);
}
.contact-strip-item {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.55rem 1rem; border: 1px solid var(--border-l);
  border-radius: 100px; font-size: 0.78rem; font-weight: 500;
  color: rgba(72,9,3,0.65); text-decoration: none;
  transition: border-color 200ms, color 200ms;
}
.contact-strip-item:hover { border-color: var(--terracotta); color: var(--terracotta); }
.cs-icon { font-size: 0.9rem; }


/* ════════════════════════════════════════════════════════════════════
   FOOTER
   Combo : vanille sur bordeaux (1)
   ════════════════════════════════════════════════════════════════════ */
footer { background: var(--bordeaux); border-top: 1px solid rgba(255,240,174,0.08); position: relative; z-index: 1; overflow: hidden; }
.footer-mascotte {
  position: absolute; right: -25rem; bottom: -27rem;
  height: clamp(800px, 50vw, 900px); width: auto; opacity: 0.07;
  pointer-events: none; display: block; z-index: 0;
}
.footer-inner { max-width: var(--max); margin: 0 auto; padding: clamp(3rem, 6vw, 5rem) var(--pad) 2rem; position: relative; z-index: 1; }
.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem;
  padding-bottom: 3rem; border-bottom: 1px solid var(--border-d); margin-bottom: 2rem;
}
.footer-logo { text-decoration: none; display: inline-block; margin-bottom: 1rem; }
.footer-logo img { height: 72px; width: auto; display: block; }
.footer-logo-text { font-family: var(--font-head); font-size: 1.5rem; color: var(--vanille); text-transform: uppercase; }
.footer-brand p { font-size: 0.82rem; color: rgba(249,238,229,0.5); line-height: 1.85; max-width: 30ch; }
.footer-col h4 { font-size: 0.6rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.16em; color: var(--vanille); margin-bottom: 1.25rem; opacity: 0.7; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.6rem; }
.footer-col a { font-size: 0.83rem; color: rgba(249,238,229,0.45); text-decoration: none; transition: color 200ms; }
.footer-col a:hover { color: var(--ivoire); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.footer-bottom p { font-size: 0.7rem; color: rgba(249,238,229,0.25); }
.footer-bottom a { color: inherit; text-decoration: none; }
.footer-bottom a:hover { color: rgba(249,238,229,0.5); }

/* ── Pages légales ───────────────────────────────────────────────── */
.legal-page {
  background: var(--ivoire);
  min-height: 100dvh;
  padding-top: 6rem;
  padding-bottom: 4rem;
}
.legal-wrap {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 var(--pad);
  color: var(--bordeaux);
}
.legal-back {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--terracotta);
  text-decoration: none;
  margin-bottom: 2.5rem;
}
.legal-back:hover { text-decoration: underline; }
.legal-wrap h1 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 400;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 2.5rem;
}
.legal-date {
  font-size: 0.78rem;
  color: var(--ivoire-dim);
  margin-top: -1.5rem;
  margin-bottom: 2.5rem;
}
.legal-wrap section {
  margin-bottom: 2.25rem;
  padding-bottom: 2.25rem;
  border-bottom: 1px solid var(--border-l);
}
.legal-wrap section:last-child { border-bottom: none; }
.legal-wrap h2 {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--terracotta);
  margin-bottom: 0.75rem;
}
.legal-wrap p, .legal-wrap li {
  font-size: 0.9rem;
  line-height: 1.8;
  color: rgba(72,9,3,0.75);
}
.legal-wrap ul {
  padding-left: 1.25rem;
  margin: 0.75rem 0;
}
.legal-wrap li { margin-bottom: 0.25rem; }
.legal-wrap a { color: var(--bordeaux); }
.legal-wrap a:hover { color: var(--terracotta); }
.legal-wrap em { font-style: italic; color: var(--ivoire-dim); }


/* ════════════════════════════════════════════════════════════════════
   PAGE NOTRE HISTOIRE (about.html)
   ════════════════════════════════════════════════════════════════════ */

.btn-outline {
  display: inline-block; background: transparent;
  color: var(--bordeaux); border: 2px solid var(--bordeaux);
  font-family: var(--font-body); font-size: 0.75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.14em;
  text-decoration: none; padding: 1.05rem 2.5rem;
  transition: background 250ms, color 250ms; cursor: pointer;
  border-radius: 100px;
}
.btn-outline:hover { background: var(--bordeaux); color: var(--vanille); }

.nav-links .nav-link-active { color: var(--vanille) !important; }

/* ── En-tête de page ─────────────────────────────────────────────── */
.ap-header {
  background: var(--bordeaux);
  padding: calc(80px + 1rem) var(--pad) clamp(4rem, 7vw, 6rem);
  text-align: center;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.ap-header::before {
  content: "";
  position: absolute; inset: 0;
  background-image: url("../img/icone-motif.png");
  background-repeat: repeat;
  background-position: center;
  background-size: 260px;
  opacity: 0.04;
  pointer-events: none; z-index: 0;
}
.ap-header > * { position: relative; z-index: 1; }
.ap-header-back {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: rgba(249,238,229,0.4);
  text-decoration: none; margin-bottom: 1.5rem;
  transition: color 200ms;
}
.ap-header-back:hover { color: var(--vanille); }
@media (min-width: 961px) { .ap-header-back { display: none; } }
.ap-header-title {
  font-family: var(--font-head);
  font-size: clamp(3.5rem, 9vw, 7rem);
  font-weight: 400; line-height: 0.88; text-transform: uppercase;
  color: var(--ivoire);
}
.ap-header-title em { font-style: normal; color: var(--vanille); }
.ap-header-eyebrow { display: flex; align-items: center; justify-content: center; gap: 1rem; margin-bottom: 1rem; }
.ap-header-eyebrow span { font-size: 0.58rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.22em; color: rgba(249,238,229,0.4); }
.ap-header-eyebrow .ey-line-d { width: 1.5rem; }
.ap-header-sub {
  margin-top: 1rem;
  font-size: 0.78rem; color: rgba(249,238,229,0.38);
  letter-spacing: 0.14em; font-weight: 600; text-transform: uppercase;
}

/* ── Chapitres ───────────────────────────────────────────────────── */
.ap-chapter { position: relative; z-index: 1; overflow: hidden; isolation: isolate; }
.ap-chapter--light { background: var(--peche); overflow: visible; }
.ap-chapter--light::before {
  content: "";
  position: absolute; top: -80px; left: 0; right: 0; bottom: 0;
  background-image: url("../img/BBS-motif.png");
  background-repeat: repeat;
  background-size: 1800px;
  background-position: center;
  opacity: 0.025;
  pointer-events: none; z-index: 0;
}
.ap-chapter--dark { background: linear-gradient(to bottom, var(--bordeaux) 5%, var(--bordeaux2)); }

/* ── Photo sous le texte (3/2 — format 35mm éditorial) ──────────── */
.ap-chapter-photo { margin-top: clamp(2rem, 4vw, 3rem); margin-bottom: clamp(2rem, 5vw, 4rem); border-radius: 16px; overflow: hidden; }
.ap-chapter-photo img { width: 100%; aspect-ratio: 3/2; object-fit: cover; display: block; }
@media (min-width: 961px) {
  .ap-chapter-photo { max-width: 720px; margin-left: auto; margin-right: auto; }
}
.ap-photo-placeholder {
  width: 100%; aspect-ratio: 3/2;
  background: rgba(72,9,3,0.06);
  border-radius: 16px;
  border: 2px dashed rgba(72,9,3,0.14);
}
.ap-photo-placeholder--dark {
  background: rgba(255,240,174,0.04);
  border: 2px dashed rgba(255,240,174,0.12);
}

/* ── Variation typo Big Bang Smash ──────────────────────────────── */
.ap-bbs-title em { font-size: 1.22em; letter-spacing: -0.02em; }

/* ── Section closing ─────────────────────────────────────────────── */
.ap-closing { text-align: center; }
.ap-closing .about-divider { margin: 2rem auto; }
.ap-closing .section-sub { max-width: 64ch; margin: 0 auto; }
.ap-welcome {
  font-family: var(--font-hand);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  margin: 2.5rem 0 1rem;
  line-height: 1.2;
}
.ap-welcome--light { color: var(--bordeaux); }
.ap-welcome--dark  { color: var(--vanille); }
.ap-cta-wrap {
  display: flex; gap: 1rem; flex-wrap: wrap;
  justify-content: center; margin-top: 2.5rem;
}

/* ── Desktop uniquement ──────────────────────────────────────────── */
@media (min-width: 961px) {
  /* Ch2 + ch3 côte à côte */
  .ap-dual { display: grid; grid-template-columns: 1fr 1fr; }
  .ap-dual-wave { display: none; }

  /* Ch3 : fond bordeaux unifié + séparateur subtil */
  .ap-dual .ap-chapter--light {
    background: var(--bordeaux);
    box-shadow: inset 1px 0 0 rgba(255,240,174,0.12);
  }
  .ap-dual .ap-chapter--light::before { display: none; }
  /* Couleurs texte de ch3 adaptées au fond bordeaux */
  .ap-dual .ap-chapter--light .ey-line { background: rgba(255,240,174,1); }
  .ap-dual .ap-chapter--light .eyebrow span { color: rgba(255,240,174,1); }
  .ap-dual .ap-chapter--light .section-title { color: var(--vanille); }
  .ap-dual .ap-chapter--light .section-title em { color: var(--vanille); }
  .ap-dual .ap-chapter--light .about-divider { background: rgba(255,240,174,0.4); }
  .ap-dual .ap-chapter--light .about-body { color: rgba(249,238,229,0.65); }

  /* Photo ch1 à droite du texte */
  .ap-chapter--with-photo .section-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(3rem, 5vw, 5rem);
    align-items: center;
  }
  .ap-chapter--with-photo .ap-chapter-photo { margin: 0; max-width: none; }

  /* Uniformiser taille em ch3 avec ch2 dans le dual */
  .ap-dual .ap-bbs-title em { font-size: 1em; letter-spacing: normal; }

  /* Section closing : fond pêche dégradé + texte foncé */
  .ap-closing { background: linear-gradient(to bottom, #FFD8BC 0px, #FFD8BC 80px, #F5C4A0 45%, #E89468 100%) !important; }
  .ap-closing::before { display: none; }
  .ap-closing .eyebrow-d span { color: rgba(72,9,3,0.5); }
  .ap-closing .ey-line-d { background: rgba(72,9,3,0.25); }
  .ap-closing .section-title-d { color: var(--bordeaux); }
  .ap-closing .section-title-d em { color: var(--terracotta); }
  .ap-closing .about-divider { background: rgba(72,9,3,0.18) !important; }
  .ap-closing .section-sub { color: rgba(72,9,3,0.65); }
  .ap-closing .ap-welcome--dark { color: var(--bordeaux); }
  .ap-closing .btn-ghost { color: var(--bordeaux); border-color: rgba(72,9,3,0.3); }
  .ap-closing .btn-ghost:hover { border-color: var(--bordeaux); color: var(--bordeaux2); }

  /* Wave avant closing : bordeaux → pêche sur desktop */
  .ap-pre-closing-wave path { fill: #FFD8BC; }
}

/* ── Responsive page histoire ────────────────────────────────────── */
@media (max-width: 960px) {
  .ap-dual .ap-chapter--dark { padding-bottom: clamp(3rem, 8vw, 5rem); }
}
@media (max-width: 480px) {
  .ap-header-title { font-size: clamp(3rem, 14vw, 5rem); }
  .ap-cta-wrap { flex-direction: column; align-items: stretch; }
  .ap-cta-wrap a { text-align: center; }
}


/* ════════════════════════════════════════════════════════════════════
   BARRE CTA MOBILE — collée en bas, visible uniquement sur smartphone
   ════════════════════════════════════════════════════════════════════ */
.mobile-devis-bar {
  display: none;
  position: fixed; bottom: 1.25rem; left: 50%; transform: translateX(-50%); z-index: 95;
  width: calc(100% - 3rem); max-width: 360px;
  border-radius: 100px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.28);
  overflow: hidden;
  transition: opacity 600ms ease, transform 600ms ease;
}

.mobile-devis-bar a {
  display: flex; align-items: center; justify-content: center; gap: 0.6rem;
  width: 100%; padding: 1rem 2rem;
  background: var(--bordeaux); color: var(--vanille);
  font-family: var(--font-body); font-size: 0.78rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.14em;
  text-decoration: none; transition: background 250ms;
}
.mobile-devis-bar a:hover { background: var(--bordeaux2); }


/* ════════════════════════════════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════════════════════════════════ */

/* ── 1024px : TABLETTE PAYSAGE ─────────────────────────────────────── */
@media (max-width: 1024px) {
  .presence-layout { grid-template-columns: 1fr; }
  #presence-map { height: 320px; }

  .footer-top { grid-template-columns: 1fr 1fr; }
  .nav-links { gap: 1.25rem; }
}

/* ── 960px : TABLETTE PORTRAIT ──────────────────────────────────────── */
@media (max-width: 960px) {
  .gallery-bento { gap: 0.5rem; }
  .gallery-col:nth-child(3) { display: none; }

  /* Nav → hamburger */
  .nav-links { display: none; }
  .hamburger { display: flex; }

  /* Grilles → colonne unique */
  .about-grid,
  .events-layout,
  .contact-layout { grid-template-columns: 1fr; }

  /* About */
  .about-stat-bar { position: relative; right: auto; bottom: auto; margin-top: 1rem; }
  .about-frame { display: none; }
  .about-visual { order: 2; }
  .about-text { order: 1; padding-top: 0; }
  .about-main-img { aspect-ratio: 16/9; }
  .stat-item { padding: 0.75rem 0.9rem; gap: 0.25rem; }
  .stat-icon { width: 1rem; height: 1rem; }
  .mini-stat-num { font-size: 1.5rem; }
  .mini-stat-label { font-size: 0.52rem; letter-spacing: 0.07em; }

  /* Burgers & formulaire */
  .sub-menu-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .menu-head { flex-direction: column; align-items: flex-start; gap: 1.5rem; }

  /* Hero */
  .hero-bottom { flex-direction: column; align-items: flex-start; }
  .hero-badge-line { display: none; }
  .hero-badge span { letter-spacing: 0.1em; }
  .hero-scroll { display: none; }
  #hero { min-height: auto; }
  .hero-content { justify-content: flex-start; padding: 1.25rem var(--pad) 3rem; gap: 1.1rem; }
  .hero-slogan-img { width: clamp(180px, 45vw, 300px); }
  .hero-title { margin: 1.5rem 0; }
  .hero-actions { flex-direction: column; width: 100%; max-width: 400px; }
  .hero-actions .btn-primary,
  .hero-actions .btn-ghost { text-align: center; width: 100%; padding: 1rem 2rem; font-size: 0.78rem; }
  .hero-actions .btn-ghost { display: none; }

  /* Ornement */
  .orn-text { font-size: 1.4rem; white-space: normal; text-align: center; }

  /* Barre CTA mobile */
  .mobile-devis-bar { display: block; }
  footer { padding-bottom: 5rem; }
}

/* ── 768px : MOBILE ──────────────────────────────────────────────────── */
@media (max-width: 768px) {
  #contact::before { background-size: 600px; }

  .footer-top { grid-template-columns: 1fr 1fr; gap: 1.5rem 2rem; }
  .footer-top .footer-brand { grid-column: 1 / -1; }
  .footer-mascotte { display: none; }

  /* Galerie : remplace le bento par un carrousel */
  .gallery-bento { display: none; }

  .gallery-carousel {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    gap: 0.75rem;
    padding: 1.25rem 1.25rem 0.5rem;
    margin: 1rem -1.25rem 0;
  }
  .gallery-carousel::-webkit-scrollbar { display: none; }

  .gc-item {
    flex: 0 0 86%;
    scroll-snap-align: center;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 4/3;
  }
  .gc-item img { width: 100%; height: 100%; object-fit: cover; display: block; }

  /* Dots */
  .gc-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.4rem;
    margin-top: 1rem;
  }
  .gc-dot {
    height: 6px;
    width: 6px;
    border-radius: 3px;
    background: rgba(80, 20, 10, 0.25);
    transition: width 0.25s ease, background 0.25s ease;
  }
  .gc-dot.active {
    width: 20px;
    background: var(--terracotta);
  }

  .about-stat-bar { display: none; }
  #events { scroll-margin-top: -41rem; }

}

/* ── 480px : SMARTPHONE ÉTROIT ───────────────────────────────────────── */
@media (max-width: 480px) {

  /* Hero mobile — contenu compact, sans grand vide */
  #hero { min-height: auto; }
  .hero-content { gap: 0.9rem; padding: 1rem 1.25rem 2.5rem; justify-content: flex-start; }
  .hero-slogan-img { width: clamp(160px, 55vw, 240px); }
  .hero-title { margin: 1.25rem 0; }
  .hero-desc { font-size: 0.88rem; max-width: none; }
  .hero-actions { flex-direction: column; width: 100%; max-width: none; }
  .hero-actions .btn-primary,
  .hero-actions .btn-ghost { text-align: center; width: 100%; padding: 0.95rem 1.5rem; font-size: 0.78rem; }


  /* Burger cards */
  .burger-card-body { padding: 1.25rem; }
  .burger-card-name { font-size: 1.2rem; }

  /* Events — types en grille 2x2 */
  .event-types { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0.6rem; }
  .event-type-row { flex-direction: column; align-items: flex-start; gap: 0.4rem; padding: 0.85rem 0.9rem; }
  .event-icon { font-size: 1.25rem; width: auto; }
  .event-type-row strong { font-size: 0.8rem; }
  .event-type-row div span { display: none; }

  /* Events — formulaire */
  .events-form-wrap { padding: 1.5rem 1.25rem; scroll-margin-top: 5rem; }
  .events-tagline { font-size: 1.1rem; padding: 1rem 1.1rem; }

  /* Contact */
  .map-wrap { aspect-ratio: 4/3; }

  /* Sections : réduit l'espacement vertical */
  .section-wrap { padding-top: clamp(2.5rem, 8vw, 4rem); padding-bottom: clamp(2.5rem, 8vw, 4rem); }

  /* Footer */
  footer { padding-bottom: 5.5rem; }
}

@media (prefers-reduced-motion: reduce) {
  * { transition-duration: 0ms !important; }
  html { scroll-behavior: auto; }
}
