/* ══════════════════════════════════════
   La Détente – Styles V4
   Mai 2026
══════════════════════════════════════ */

:root {
  --ink:          #131110;
  --slate:        #1e1a16;
  --slate-mid:    #2c2720;
  --rouge:        #b5302a;
  --rouge-vif:    #d43d36;
  --rouge-sombre: #8c2420;
  --bois:         #8a5737;
  --bois-clair:   #c18455;
  --or:           #d4a853;
  --vert:         #2a7a3b;
  --creme:        #f7f2e8;
  --papier:       #fdfaf4;
  --craie:        #f0ece0;
  --muted:        #6e5f55;
  --line:         rgba(138,87,55,.16);
  --shadow:       0 18px 55px rgba(19,17,16,.14);
  --button-radius: 0px;
  --card-radius:   0px;
  --button-width:  220px;
  --font-title:   "Dancing Script", cursive;
  --font-text:    "Lato", Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; }
body  { background: var(--creme); color: var(--ink); font-family: var(--font-text); font-size: 16px; line-height: 1.55; overflow-x: hidden; }
a     { color: inherit; text-decoration: none; }
img   { max-width: 100%; display: block; }
h1,h2,h3,h4 { line-height: 1; }

/* ── TOPBAR ── */
.topbar { position: fixed; top: 0; left: 0; right: 0; z-index: 100; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 13px clamp(16px,4vw,48px); background: rgba(19,17,16,.93); backdrop-filter: blur(14px); border-bottom: 1px solid rgba(181,48,42,.22); transition: padding .3s; }
.topbar.compact { padding-top: 8px; padding-bottom: 8px; }
.brand { font-family: var(--font-title); font-size: 2rem; color: var(--craie); letter-spacing: .02em; white-space: nowrap; }
.nav { display: none; align-items: center; gap: 6px; font-size: .74rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.nav a { color: rgba(240,236,224,.75); padding: 6px 9px; transition: color .2s; }
.nav a:hover { color: var(--craie); }
.nav-call { background: var(--rouge) !important; color: #fff !important; padding: 8px 14px; border-radius: var(--button-radius); transition: background .2s !important; }
.nav-call:hover { background: var(--rouge-vif) !important; }
.burger { display: flex; flex-direction: column; gap: 5px; width: 42px; height: 38px; justify-content: center; align-items: center; background: rgba(240,236,224,.08); border: 1px solid rgba(240,236,224,.2); border-radius: var(--button-radius); cursor: pointer; }
.burger span { display: block; width: 20px; height: 2px; background: var(--craie); }
.nav-overlay { display: none; position: fixed; inset: 0; z-index: 99; background: rgba(19,17,16,.98); flex-direction: column; justify-content: center; align-items: center; gap: 2rem; }
.nav-overlay.open { display: flex; }
.nav-overlay a { font-size: 1.4rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: rgba(240,236,224,.8); padding: .5rem 1rem; transition: color .2s; }
.nav-overlay a:hover { color: var(--rouge-vif); }
.nav-overlay-close { position: absolute; top: 1.2rem; right: 1.5rem; background: none; border: none; color: var(--craie); font-size: 1.8rem; cursor: pointer; }

/* ── HERO ── */
.hero { min-height: 100vh; position: relative; display: grid; place-items: center; padding: 110px clamp(18px,5vw,60px) 70px; overflow: hidden; }

/* Desktop : photo centrée légèrement à droite pour équilibrer le texte à gauche */
.hero-photo {
  position: absolute; inset: 0;
  background-image: url('hero.png');
  background-size: cover;
  background-position: 55% center;
  background-color: var(--slate);
  transition: background-position .6s ease;
}
/* Mobile : recentrer sur l'enseigne */
@media (max-width: 860px) {
  .hero-photo { background-position: 35% top; }
}

.hero-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(19,17,16,.90) 0%, rgba(19,17,16,.80) 55%, rgba(19,17,16,.65) 100%); transition: background .4s ease; }
.hero-accent  { position: absolute; left: 0; top: 0; bottom: 0; width: 5px; background: linear-gradient(to bottom, transparent 8%, var(--rouge) 35%, var(--rouge-sombre) 65%, transparent 92%); z-index: 2; }
.hero-grain   { position: absolute; inset: 0; pointer-events: none; opacity: .28; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='.07'/%3E%3C/svg%3E"); z-index: 2; }

.hero-inner { position: relative; z-index: 3; width: min(1080px,100%); display: grid; grid-template-columns: 1.1fr .9fr; gap: 52px; align-items: center; }
.hero-text { opacity: 0; animation: fadeUp .7s .05s ease forwards; }
@keyframes fadeUp { from{opacity:0;transform:translateY(18px)} to{opacity:1;transform:translateY(0)} }

.eyebrow { font-size: .7rem; font-weight: 700; letter-spacing: .38em; text-transform: uppercase; color: var(--rouge-vif); display: block; margin-bottom: .9rem; }
h1 { font-family: var(--font-title); font-size: clamp(58px,10vw,115px); color: var(--craie); margin-bottom: .4rem; text-shadow: 0 4px 40px rgba(0,0,0,.5); }
.hero-lead { font-size: clamp(.92rem,2vw,1.08rem); color: rgba(240,236,224,.78); max-width: 560px; margin-bottom: .5rem; line-height: 1.65; }
.hero-note  { font-size: .88rem; font-style: italic; color: rgba(240,236,224,.52); max-width: 520px; margin-bottom: 2rem; }
.hero-badges { display: flex; flex-wrap: wrap; gap: .45rem; margin-bottom: 2rem; }
.badge { display: inline-flex; align-items: center; gap: .28rem; background: rgba(181,48,42,.2); border: 1px solid rgba(181,48,42,.35); color: rgba(240,236,224,.85); font-size: .67rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; padding: .25rem .6rem; }
.badge-green { background: rgba(42,122,59,.2); border-color: rgba(42,122,59,.4); }
.actions { display: flex; flex-wrap: wrap; gap: .7rem; }

/* ── BOUTONS ── */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: .45rem; min-width: min(var(--button-width),100%); min-height: 44px; padding: 9px 18px; border-radius: var(--button-radius); border: 1px solid transparent; font-weight: 700; font-size: .8rem; letter-spacing: .08em; text-transform: uppercase; cursor: pointer; transition: all .22s; font-family: var(--font-text); }
.btn:hover { transform: translateY(-1px); }
.btn-rouge  { background: var(--rouge); color: #fff; }
.btn-rouge:hover  { background: var(--rouge-vif); box-shadow: 0 6px 20px rgba(181,48,42,.3); }
.btn-bois   { background: var(--bois); color: #fff; }
.btn-bois:hover   { background: var(--bois-clair); }
.btn-green  { background: rgba(42,122,59,.75); color: #fff; border: 1px solid rgba(42,122,59,.6); backdrop-filter: blur(4px); }
.btn-green:hover  { background: var(--vert); box-shadow: 0 6px 18px rgba(42,122,59,.3); }
.btn-outline { border-color: rgba(240,236,224,.28); color: var(--craie); background: transparent; }
.btn-outline:hover { border-color: var(--rouge-vif); color: var(--rouge-vif); }
.btn-light  { background: var(--papier); color: var(--ink); border-color: var(--line); }
.btn-light:hover  { border-color: var(--bois-clair); }

/* ── ARDOISE ── */
.chalkboard { background: rgba(20,17,13,.92); border: 9px solid var(--bois); border-radius: 0; box-shadow: inset 0 0 70px rgba(0,0,0,.5), 0 20px 55px rgba(0,0,0,.35); padding: clamp(16px,3.5vw,28px); position: relative; overflow: hidden; }
.chalkboard-hero { opacity: 0; animation: fadeUp .7s .3s ease forwards; }
.chalkboard::before { content: ""; position: absolute; inset: 0; pointer-events: none; opacity: .45; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)' opacity='.07'/%3E%3C/svg%3E"); }
.chalkboard > * { position: relative; }
.chalk-title { font-family: var(--font-title); font-size: clamp(1.35rem,3vw,1.85rem); color: var(--craie); text-align: center; margin-bottom: .85rem; padding-bottom: .6rem; border-bottom: 1px solid rgba(240,236,224,.14); }
.chalk-category { font-size: .6rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--or); margin: .8rem 0 .22rem; opacity: .85; }
.chalk-item { display: flex; justify-content: space-between; align-items: baseline; gap: .8rem; padding: .34rem 0; border-bottom: 1px dotted rgba(240,236,224,.09); }
.chalk-item:last-of-type { border-bottom: none; }
.chalk-item-name { color: rgba(240,236,224,.9); font-size: .88rem; font-style: italic; flex: 1; }
.chalk-item-detail { font-size: .72rem; color: rgba(240,236,224,.45); display: block; margin-top: .08rem; }
.chalk-price { color: var(--or); font-weight: 700; font-size: .85rem; white-space: nowrap; }
.chalk-note { margin-top: .85rem; padding: .6rem .82rem; text-align: center; border: 1px solid rgba(212,168,83,.2); background: rgba(212,168,83,.07); font-size: .74rem; color: rgba(240,236,224,.6); line-height: 1.55; }
.chalk-photo { overflow: hidden; }
.chalk-photo img { width: 100%; height: auto; cursor: zoom-in; transition: opacity .2s; }
.chalk-photo img:hover { opacity: .92; }
.chalk-meta { display: flex; align-items: center; gap: .4rem; margin-top: .5rem; font-size: .63rem; color: rgba(240,236,224,.3); justify-content: center; }
.chalk-dot-live { width: 6px; height: 6px; border-radius: 50%; background: var(--vert); display: inline-block; animation: blink 2s ease infinite; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.3} }

/* ── BAND INFO ── */
.band-info { background: var(--rouge-sombre); padding: .78rem clamp(16px,4vw,48px); display: flex; align-items: center; justify-content: center; gap: 2rem; flex-wrap: wrap; }
.band-info-item { display: flex; align-items: center; gap: .4rem; font-size: .73rem; font-weight: 700; color: rgba(255,255,255,.88); letter-spacing: .04em; }
.band-info-item a { color: inherit; transition: opacity .2s; }
.band-info-item a:hover { opacity: .75; }

/* ── SECTIONS ── */
section { padding: 68px clamp(16px,4vw,48px); }
.sec-inner { width: min(1120px,100%); margin: 0 auto; }
.sec-head { text-align: center; margin-bottom: 3rem; }
.sec-title { font-family: var(--font-title); font-size: clamp(2rem,5.5vw,3.4rem); color: var(--slate); line-height: 1.05; margin-bottom: .4rem; }
.sec-title.light { color: var(--craie); }
.sec-ornament { display: flex; align-items: center; justify-content: center; gap: .7rem; margin-top: .8rem; }
.sec-ornament::before, .sec-ornament::after { content: ""; display: block; width: 50px; height: 1px; background: rgba(181,48,42,.35); }
.sec-ornament span { color: var(--rouge-vif); font-size: .75rem; }
.band-dark { background: var(--slate); color: var(--craie); }

/* ── ATOUTS — colonne photo + grille ── */
.atouts-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
.restaurant-photo { overflow: hidden; box-shadow: 0 18px 45px rgba(0,0,0,.35); }
.restaurant-photo img { width: 100%; aspect-ratio: 4/3; object-fit: cover; object-position: center 20%; display: block; }
.atouts-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.atout { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08); border-radius: var(--card-radius); padding: 1.1rem; opacity: 0; transform: translateY(12px); transition: opacity .5s ease, transform .5s ease; }
.atout.visible { opacity: 1; transform: translateY(0); }
.atout-icon  { font-size: 1.5rem; display: block; margin-bottom: .45rem; }
.atout-title { font-family: var(--font-title); font-size: 1.25rem; color: var(--or); margin-bottom: .3rem; }
.atout-text  { font-size: .82rem; color: rgba(240,236,224,.58); line-height: 1.65; }
.atout-text strong { color: rgba(240,236,224,.88); }
.atouts-phrase { margin-top: 1.5rem; padding: 1rem 1.3rem; border-left: 3px solid var(--rouge); background: rgba(181,48,42,.08); font-size: .92rem; color: rgba(240,236,224,.7); font-style: italic; line-height: 1.75; }
.atouts-phrase strong { color: var(--craie); font-style: normal; }

/* ── ARDOISE SECTION MENU DU JOUR ── */
.ardoise-section-wrap { max-width: 660px; margin: 0 auto; }

/* ── CARTE ── */
.mode-switcher { display: flex; justify-content: center; margin-bottom: 2.5rem; border: 1px solid rgba(181,48,42,.3); width: fit-content; margin-left: auto; margin-right: auto; overflow: hidden; }
.mode-btn { padding: .8rem 2.2rem; font-weight: 700; font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; background: transparent; color: rgba(240,236,224,.5); border: none; cursor: pointer; transition: all .22s; display: flex; align-items: center; gap: .4rem; }
.mode-btn.active { background: var(--rouge); color: #fff; }
.mode-btn:not(.active):hover { background: rgba(181,48,42,.1); color: rgba(240,236,224,.8); }
.mode-sep { width: 1px; background: rgba(181,48,42,.25); }
.carte-panel { display: none; }
.carte-panel.active { display: block; }

/* Formules highlight */
.formules-highlight { background: rgba(212,168,83,.09); border: 1px solid rgba(212,168,83,.22); padding: 1.1rem 1.4rem; margin-bottom: 1.4rem; }
.formules-highlight-title { font-family: var(--font-title); font-size: 1.35rem; color: var(--or); margin-bottom: .75rem; display: flex; align-items: center; gap: .5rem; }
.formules-highlight-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(185px,1fr)); gap: .55rem; }
.fh-item { background: rgba(0,0,0,.22); padding: .65rem .9rem; display: flex; justify-content: space-between; align-items: center; gap: .5rem; }
.fh-item-left { flex: 1; }
.fh-item-name { font-size: .8rem; color: rgba(240,236,224,.78); }
.fh-item-desc { font-size: .7rem; color: rgba(240,236,224,.4); display: block; margin-top: .08rem; }
.fh-item-price { font-size: .95rem; color: var(--or); font-weight: 700; white-space: nowrap; }

/* Tampon */
.stamp { display: inline-flex; align-items: center; gap: .4rem; border: 2px solid rgba(212,168,83,.38); padding: .28rem .75rem; font-size: .63rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; color: rgba(212,168,83,.65); margin-bottom: 1.4rem; }

/* Menu grille */
.menu-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(295px,1fr)); gap: 1rem; }
.menu-group { background: rgba(240,236,224,.055); border: 1px solid rgba(255,255,255,.08); border-radius: var(--card-radius); overflow: hidden; opacity: 0; transform: translateY(10px); transition: opacity .4s ease, transform .4s ease; }
.menu-group.visible { opacity: 1; transform: translateY(0); }
.menu-group:hover { box-shadow: 0 8px 22px rgba(0,0,0,.14); }
.menu-group-head { background: rgba(0,0,0,.28); padding: .72rem 1.15rem; display: flex; align-items: center; gap: .5rem; }
.menu-group-icon  { font-size: .92rem; }
.menu-group-title { font-family: var(--font-title); font-size: 1.3rem; color: var(--craie); }
.menu-group-body  { padding: .85rem 1.15rem; }

/* Note accompagnements */
.menu-accomp { font-size: .72rem; color: rgba(212,168,83,.65); margin-bottom: .6rem; padding: .4rem .5rem; border-left: 2px solid rgba(212,168,83,.2); line-height: 1.55; font-style: italic; }

.menu-row { display: flex; justify-content: space-between; align-items: flex-start; gap: .65rem; padding: .4rem 0; border-bottom: 1px solid rgba(255,255,255,.055); }
.menu-row:last-child { border-bottom: none; }
.menu-row-info  { flex: 1; }
.menu-row-name  { font-size: .85rem; color: rgba(240,236,224,.88); }
.menu-row-price { font-size: .82rem; color: var(--or); font-weight: 700; white-space: nowrap; padding-top: .1rem; }

/* Toggle ingrédients — 👁 Ingrédients discret */
.ingr-toggle {
  display: inline-flex; align-items: center; gap: .18rem;
  margin-left: .38rem; vertical-align: middle;
  padding: .04rem .26rem;
  background: transparent;
  border: 1px solid rgba(212,168,83,.25);
  color: rgba(212,168,83,.5);
  font-size: .58rem; font-weight: 700;
  cursor: pointer; font-family: var(--font-text);
  transition: all .15s; white-space: nowrap; line-height: 1.4;
}
.ingr-toggle:hover { background: rgba(212,168,83,.1); color: var(--or); border-color: var(--or); }
.ingr-toggle[aria-expanded="true"] { background: rgba(212,168,83,.1); color: var(--or); }
.ingr-detail {
  font-size: .73rem; color: rgba(240,236,224,.43);
  font-style: italic; line-height: 1.45;
  margin-top: .18rem; padding-left: .42rem;
  border-left: 1px solid rgba(212,168,83,.15);
}
/* Indication unique en bas de chaque grille */
.ingr-hint-global {
  font-size: .66rem; color: rgba(240,236,224,.22);
  font-style: italic; margin-top: .7rem; text-align: right;
  padding-right: .2rem; letter-spacing: .02em;
}

.allergen-note { margin-top: 1.5rem; padding: .7rem 1rem; border-left: 2px solid rgba(181,48,42,.35); font-size: .75rem; color: rgba(240,236,224,.4); font-style: italic; line-height: 1.6; }

/* ── AVIS ── */
.avis-intro { text-align: center; margin-bottom: 2rem; }
.avis-score { display: inline-flex; align-items: center; gap: .8rem; background: var(--slate); color: var(--craie); padding: .7rem 1.5rem; border-radius: 40px; margin-bottom: 1.2rem; border: 1px solid rgba(212,168,83,.25); }
.avis-score-num { font-family: var(--font-title); font-size: 2rem; color: var(--or); line-height: 1; }
.avis-stars  { color: var(--or); letter-spacing: .1em; font-size: .9rem; }
.avis-count  { font-size: .7rem; color: rgba(240,236,224,.5); }
.avis-grid   { display: grid; grid-template-columns: repeat(auto-fill,minmax(250px,1fr)); gap: 1rem; margin-bottom: 2rem; }
.avis-card   { background: var(--slate-mid); border: 1px solid rgba(255,255,255,.09); border-radius: var(--card-radius); padding: 1.2rem; position: relative; opacity: 0; transform: translateY(10px); transition: opacity .5s ease, transform .5s ease; }
.avis-card.visible  { opacity: 1; transform: translateY(0); }
.avis-card:hover    { transform: translateY(-3px); box-shadow: 0 10px 28px rgba(0,0,0,.2); }
.avis-card::before  { content: '"'; font-family: Georgia,serif; font-size: 3.2rem; color: rgba(181,48,42,.16); position: absolute; top: .15rem; right: .65rem; line-height: 1; pointer-events: none; }
.avis-name   { font-weight: 700; font-size: .86rem; color: var(--craie); }
.avis-source { font-size: .68rem; color: rgba(240,236,224,.32); margin-top: .1rem; }
.avis-stars-sm { color: var(--or); font-size: .76rem; margin: .45rem 0; }
.avis-text   { font-size: .83rem; color: rgba(240,236,224,.7); font-style: italic; line-height: 1.58; }
.avis-cta    { text-align: center; }

/* ── INFOS ── */
.infos-grid  { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.info-contact { grid-column: 1 / -1; }
.info-bloc   { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08); border-radius: var(--card-radius); padding: 1.5rem; text-align: center; opacity: 0; transform: translateY(10px); transition: opacity .5s ease, transform .5s ease; }
.info-bloc.visible { opacity: 1; transform: translateY(0); }
.info-ico    { font-size: 1.6rem; display: block; margin-bottom: .55rem; }
.info-titre  { font-family: var(--font-title); font-size: 1.35rem; color: var(--or); margin-bottom: .45rem; }
.info-corps  { font-size: .86rem; color: rgba(240,236,224,.58); line-height: 1.85; }
.info-corps strong { color: rgba(240,236,224,.88); }
.info-btns   { display: flex; flex-direction: column; align-items: stretch; width: min(220px,100%); margin: .9rem auto 0; gap: .5rem; }
.info-btns .btn { width: 100%; }

/* Transport STAR */
.transport-wrap  { padding-top: 2rem; border-top: 1px solid rgba(255,255,255,.07); margin-top: 2rem; }
.transport-label { font-size: .67rem; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; color: rgba(240,236,224,.35); margin-bottom: .75rem; text-align: center; }
.bus-line { display: inline-flex; align-items: center; justify-content: center; width: 32px; height: 32px; border-radius: 50%; font-weight: 700; font-size: .82rem; color: #fff; }
.bus-11 { background: #003DA5; } .bus-54 { background: #C5309A; } .bus-55 { background: #E87722; } .bus-56 { background: #009A44; }
.bus-row      { display: flex; align-items: center; justify-content: center; gap: .5rem; margin-bottom: .6rem; flex-wrap: wrap; }
.bus-stop     { font-size: .78rem; color: rgba(240,236,224,.5); }
.transport-extras { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; margin-top: .8rem; }
.transport-extra  { font-size: .76rem; color: rgba(240,236,224,.48); display: flex; align-items: center; gap: .3rem; }

/* ── MAP ── */
.map-wrap { position: relative; height: 320px; overflow: hidden; }
.map-wrap iframe { width: 100%; height: 100%; border: none; filter: grayscale(20%) contrast(1.1); }
.map-card { position: absolute; top: 0; left: 0; bottom: 0; width: 295px; max-width: 86%; background: rgba(19,17,16,.94); padding: 1.7rem; display: flex; flex-direction: column; justify-content: center; gap: .45rem; }
.map-tags { display: flex; flex-wrap: wrap; gap: .3rem; }
.map-tag { display: inline-block; background: var(--rouge); color: #fff; font-size: .6rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; padding: .18rem .5rem; }
.map-tag-green { background: var(--vert); }
.map-name { font-family: var(--font-title); font-size: 1.65rem; color: var(--craie); }
.map-addr { font-size: .81rem; color: rgba(240,236,224,.52); line-height: 1.7; }

/* ── LIGHTBOX ── */
.lightbox { display: none; position: fixed; inset: 0; z-index: 500; align-items: center; justify-content: center; }
.lightbox.open { display: flex; }
.lightbox-backdrop { position: absolute; inset: 0; background: rgba(10,8,6,.93); cursor: pointer; }
.lightbox-content { position: relative; z-index: 1; max-width: min(94vw,920px); max-height: 92vh; display: flex; align-items: center; justify-content: center; }
.lightbox-content img { max-width: 100%; max-height: 90vh; object-fit: contain; display: block; box-shadow: 0 30px 80px rgba(0,0,0,.6); cursor: zoom-out; }
.lightbox-close { position: fixed; top: 1rem; right: 1rem; z-index: 2; width: 44px; height: 44px; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.2); color: #fff; font-size: 1.2rem; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background .2s; }
.lightbox-close:hover { background: var(--rouge); }

/* ── MOBILE BOTTOM BAR ── */
.bottom-bar { display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 50; background: rgba(19,17,16,.97); border-top: 1px solid rgba(181,48,42,.25); backdrop-filter: blur(12px); padding: .45rem 1rem .55rem; }
.bottom-bar-inner { display: flex; gap: .45rem; max-width: 420px; margin: 0 auto; }
.bottom-btn { flex: 1; display: flex; flex-direction: column; align-items: center; gap: .18rem; padding: .45rem .25rem; border: 1px solid rgba(255,255,255,.09); background: rgba(255,255,255,.05); color: rgba(240,236,224,.72); font-size: .58rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; cursor: pointer; transition: all .2s; text-decoration: none; }
.bottom-btn:hover, .bottom-btn:active { background: var(--rouge); color: #fff; border-color: var(--rouge); }
.bottom-btn-icon { font-size: 1.15rem; }
.bottom-btn-call { background: rgba(42,122,59,.8); color: #fff !important; border-color: rgba(42,122,59,.6); }
.bottom-btn-call:hover { background: var(--vert) !important; }

/* ── FLOATING CALL ── */
.floating-call { position: fixed; right: 1.2rem; bottom: 1.2rem; z-index: 50; display: flex; align-items: center; gap: .5rem; background: #2a7a3b; color: #fff; padding: 0 1.2rem 0 1rem; height: 52px; border-radius: 999px; font-weight: 700; font-size: .8rem; letter-spacing: .05em; box-shadow: 0 8px 24px rgba(0,0,0,.25); animation: nudge 8s ease-in-out infinite; }
.floating-call:hover { transform: scale(1.05); }
@keyframes nudge { 0%,80%,100%{transform:translateX(0)} 84%{transform:translateX(-4px)} 88%{transform:translateX(3px)} 92%{transform:translateX(-2px)} }

/* ── FOOTER ── */
footer { background: var(--ink); color: rgba(240,236,224,.38); padding: 2.5rem 1.5rem; text-align: center; font-size: .8rem; }
.footer-inner  { width: min(960px,100%); margin: 0 auto; }
.footer-logo   { font-family: var(--font-title); font-size: 2rem; color: var(--craie); display: block; margin-bottom: .3rem; }
.footer-tagline { font-size: .7rem; color: rgba(240,236,224,.26); letter-spacing: .06em; margin-bottom: 1.2rem; }
.footer-nav    { display: flex; justify-content: center; flex-wrap: wrap; gap: 1.2rem; margin-bottom: 1rem; }
.footer-nav a  { font-size: .7rem; letter-spacing: .06em; text-transform: uppercase; color: rgba(240,236,224,.36); transition: color .2s; }
.footer-nav a:hover { color: var(--rouge-vif); }
.footer-seo    { font-size: .66rem; color: rgba(240,236,224,.16); margin: .4rem 0; }
.footer-copy   { font-size: .68rem; color: rgba(240,236,224,.2); }
.footer-copy a { color: rgba(240,236,224,.35); }
.footer-credit { font-size: .65rem; color: rgba(240,236,224,.2); margin-top: .4rem; }
.footer-credit a { color: rgba(240,236,224,.35); transition: color .2s; }
.footer-credit a:hover { color: var(--rouge-vif); }

/* ── MENTIONS LÉGALES ── */
.legal-page  { padding-top: 90px; }
.legal-inner { max-width: 800px; margin: 0 auto; padding: 3rem 1.5rem; }
.legal-inner h1 { font-family: var(--font-title); font-size: clamp(2.5rem,7vw,4rem); color: var(--slate); margin-bottom: 2rem; }
.legal-inner h2 { font-size: 1rem; color: var(--slate); margin: 2rem 0 .4rem; padding-bottom: .3rem; border-bottom: 1px solid rgba(181,48,42,.18); font-weight: 700; }
.legal-inner p, .legal-inner ul { font-size: .87rem; color: var(--muted); line-height: 1.8; margin-bottom: .7rem; }
.legal-inner ul { padding-left: 1.2rem; }
.legal-inner strong { color: var(--ink); }
.legal-inner a { color: var(--rouge); }
.legal-updated { font-size: .74rem; color: #aaa; margin-top: 2.5rem; }

/* ── ADMIN ── */
.admin-body  { background: #f4f3f0; font-family: var(--font-text); color: #1e1b18; }
.admin-shell { width: min(1100px,calc(100% - 32px)); margin: 28px auto 60px; }
.admin-header { display: flex; justify-content: space-between; align-items: center; gap: 16px; margin-bottom: 16px; flex-wrap: wrap; }
.admin-header h1 { font-family: var(--font-title); font-size: 2.8rem; color: var(--slate); }
.admin-eyebrow { font-size: .68rem; font-weight: 700; letter-spacing: .3em; text-transform: uppercase; color: var(--rouge); }
.admin-greeting { background: linear-gradient(135deg, rgba(181,48,42,.08), rgba(212,168,83,.08)); border: 1px solid rgba(181,48,42,.18); padding: 1rem 1.4rem; margin-bottom: 1.2rem; font-size: .95rem; color: var(--slate); display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: .5rem; }
.admin-greeting-date { font-size: .82rem; color: var(--muted); }
.admin-warning { background: #fff3e0; border-left: 4px solid #e67e22; padding: .9rem 1.2rem; margin-bottom: 1rem; font-size: .84rem; color: #7d4e00; }
.admin-warning a { color: #e67e22; text-decoration: underline; }
.admin-grid  { display: grid; grid-template-columns: 230px 1fr; gap: 16px; }
.admin-nav, .admin-panel-wrap { background: #fff; border: 1px solid #ddd7cf; padding: 16px; box-shadow: 0 8px 24px rgba(19,17,16,.06); }
.admin-nav-btn { width: 100%; min-height: 40px; display: block; text-align: left; margin-bottom: 6px; border: 1px solid transparent; background: transparent; padding: 9px 12px; cursor: pointer; font-weight: 700; font-size: .84rem; transition: all .2s; }
.admin-nav-btn:hover  { background: rgba(181,48,42,.07); color: var(--rouge); }
.admin-nav-btn.active { background: var(--rouge); color: #fff; }
.admin-section { display: none; }
.admin-section.active { display: block; }
.admin-section h2 { font-family: var(--font-title); font-size: 1.8rem; color: var(--slate); margin-bottom: .3rem; }
.admin-section > p { font-size: .85rem; color: var(--muted); margin-bottom: 1rem; }
.admin-photo-box { background: rgba(181,48,42,.05); border: 1px solid rgba(181,48,42,.18); padding: 1.1rem; margin-bottom: 1rem; }
.admin-photo-btns { display: flex; gap: .6rem; flex-wrap: wrap; margin-top: .6rem; }
.admin-photo-btns label { margin: 0; cursor: pointer; }
label { display: block; margin: 12px 0 5px; font-weight: 700; font-size: .84rem; }
input, textarea, select { width: 100%; border: 1px solid rgba(19,17,16,.18); padding: 10px 11px; font: inherit; background: #fff; transition: border-color .2s; }
input:focus, textarea:focus, select:focus { outline: none; border-color: var(--rouge); }
input[type=color] { height: 42px; padding: 4px 6px; cursor: pointer; }
textarea { min-height: 90px; resize: vertical; }
.admin-status { margin: 12px 0; padding: 11px; background: #fff3cd; color: #5d4700; font-size: .84rem; }
.admin-status.ok    { background: #e6f5e8; color: #24532c; }
.admin-status.error { background: #fae4e2; color: #76221d; }
.admin-row { display: grid; grid-template-columns: 1fr 160px; gap: 8px; margin-bottom: 8px; }
.admin-mini { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; }
.admin-panel-inner { background: rgba(181,48,42,.04); border: 1px solid rgba(181,48,42,.12); padding: 14px; margin-bottom: 12px; }
.admin-panel-inner h3 { font-family: var(--font-title); font-size: 1.2rem; color: var(--rouge-sombre); margin-bottom: .5rem; }
.admin-color-row { display: grid; grid-template-columns: repeat(auto-fill,minmax(180px,1fr)); gap: .8rem; margin-bottom: .5rem; }
.admin-color-item label { margin: 0 0 4px; }
.admin-sig { margin-top: 2rem; padding-top: 1.5rem; border-top: 1px solid rgba(181,48,42,.12); text-align: center; font-size: .82rem; color: var(--muted); }
.admin-sig a { color: var(--rouge); font-weight: 700; }
.hidden { display: none !important; }

/* ── RESPONSIVE ── */
@media (min-width: 861px) {
  .nav { display: flex; }
  .burger { display: none; }
  .floating-call { display: flex; }
  .bottom-bar { display: none !important; }
  .hero-actions-mobile { display: none; }
}
@media (max-width: 860px) {
  .hero-inner { grid-template-columns: 1fr; }
  .chalkboard-hero { display: none; }
  /* Atouts option B mobile : photo visible, pas de bg */
  .atouts-layout { grid-template-columns: 1fr; }
  .atouts-grid   { grid-template-columns: 1fr 1fr; }
  .admin-grid    { grid-template-columns: 1fr; }
  .admin-nav     { display: grid; grid-template-columns: repeat(2,1fr); gap: 6px; }
  .band-info     { gap: .75rem; }
  .map-card      { position: static; width: 100%; max-width: 100%; }
  .map-wrap      { height: auto; }
  .map-wrap iframe { height: 230px; }
  .floating-call { display: none !important; }
  .bottom-bar    { display: block; }
  body           { padding-bottom: 72px; }
  .hero-text     { text-align: center; }
  .hero-badges   { justify-content: center; }
  .actions       { justify-content: center; }
  .hero-actions-mobile { display: flex; justify-content: center; margin-top: 1rem; }
}
@media (max-width: 540px) {
  .menu-grid    { grid-template-columns: 1fr; }
  .avis-grid    { grid-template-columns: 1fr; }
  .atouts-grid  { grid-template-columns: 1fr 1fr; }
  .formules-highlight-grid { grid-template-columns: 1fr; }
  .infos-grid   { grid-template-columns: 1fr; }
  .info-contact { grid-column: 1; }
  .admin-nav    { grid-template-columns: 1fr; }
  .admin-row    { grid-template-columns: 1fr; }
  .admin-color-row { grid-template-columns: 1fr 1fr; }
}

/* ── ADMIN ACCORDION ── */
.admin-accordion-layout { max-width: 760px; margin: 0 auto; }
.acc-item { border: 1px solid #ddd7cf; margin-bottom: 6px; background: #fff; }
.acc-header { width: 100%; display: flex; justify-content: space-between; align-items: center; padding: 12px 16px; background: #fff; border: none; cursor: pointer; font-weight: 700; font-size: .92rem; color: var(--slate); transition: background .2s; text-align: left; }
.acc-header:hover { background: rgba(181,48,42,.05); }
.acc-item.acc-open .acc-header { background: var(--rouge); color: #fff; }
.acc-arrow { font-size: .8rem; transition: transform .2s; }
.acc-body { padding: 16px; border-top: 1px solid #eee; }
.acc-sub-title { font-family: var(--font-title); font-size: 1.15rem; color: var(--rouge-sombre); margin: 1rem 0 .4rem; }
.admin-header-left .admin-eyebrow { color: var(--rouge); font-size: .68rem; font-weight: 700; letter-spacing: .3em; text-transform: uppercase; margin-bottom: 2px; }

/* ── ADMIN — boutons largeur uniforme, header compact ── */
.admin-header { display: flex; justify-content: space-between; align-items: center; gap: 12px; margin-bottom: 10px; flex-wrap: wrap; padding-bottom: 12px; border-bottom: 1px solid rgba(181,48,42,.12); }
.admin-header-left .admin-eyebrow { color: var(--rouge); font-size: .68rem; font-weight: 700; letter-spacing: .3em; text-transform: uppercase; margin-bottom: 2px; display: block; }
.admin-header h1 { font-family: var(--font-title); font-size: 2rem; color: var(--slate); margin: 0; }
.admin-header-btns { display: flex; gap: 8px; flex-wrap: wrap; align-items: center; }
.admin-header-btns .btn { min-width: 160px; justify-content: center; font-size: .8rem; }
/* Section photo menu du jour — couleurs propres */
.admin-photo-box { background: #f9f9f7; border: 1px solid #ddd7cf; padding: 1.1rem; margin-bottom: 1rem; }
.admin-photo-box > label:first-child { font-size: .95rem; font-weight: 700; color: var(--slate); margin-bottom: .6rem; }
.admin-photo-btns { display: flex; gap: .6rem; flex-wrap: wrap; margin-top: .6rem; }
.admin-photo-btns label { min-width: 160px; justify-content: center; cursor: pointer; }
.admin-photo-btns .btn-photo-gallery { background: var(--papier); color: var(--slate); border: 1px solid #ccc; }
.admin-photo-btns .btn-photo-gallery:hover { border-color: var(--rouge); color: var(--rouge); }
.admin-photo-btns .btn-photo-camera { background: var(--rouge); color: #fff; border: 1px solid var(--rouge); }
.admin-photo-btns .btn-photo-camera:hover { background: var(--rouge-vif); }
