/* =========================================================
   QUENTIN COCHARD – STYLES (clean + rangé)
   Remplace tout le CSS actuel par ce fichier
========================================================= */

/* ===============================
   VARIABLES
================================ */
:root{
  --bg:#fbfaf7;
  --bg2:#f2efe7;
  --card:#ffffff;
  --ink:#12110f;
  --muted:#5f5b55;

  /* OR LOGO */
  --accent:#d7ab54;
  --accent2:#f3d08a;
  --accent-dark:#9c7428;

  --border:rgba(18,17,15,.12);
  --shadow:0 18px 55px rgba(18,17,15,.10);

  --r:18px;
  --max:1120px;
}

/* ===============================
   RESET / BASE
================================ */
*{box-sizing:border-box;margin:0;padding:0}

body{
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Apple Color Emoji","Segoe UI Emoji";
  background:var(--bg);
  color:var(--ink);
  line-height:1.65;
}

body::before{
  content:"";
  position: fixed;
  inset: 0;
  pointer-events:none;
  z-index:-1;
  background:
    radial-gradient(1200px 700px at 50% 0%,
      rgba(215,171,84,.10),
      rgba(0,0,0,0) 60%
    ),
    linear-gradient(180deg, var(--bg), var(--bg2));
}

img{max-width:100%;display:block}
a{color:inherit;text-decoration:none}

.container{max-width:var(--max);margin:0 auto;padding:0 1.2rem}
.section{padding:1rem 0}

/* ===============================
   TYPO
================================ */
h1{font-size:clamp(2rem,4vw,2.85rem);line-height:1.15}

h2{
  font-size:clamp(1.25rem,2.2vw,1.6rem);
  margin:0 0 .6rem;
  position:relative;
}
h2::after{
  content:"";
  display:block;
  width:42px;
  height:2px;
  margin-top:.4rem;
  background:var(--accent);
  border-radius:2px;
  opacity:.9;
}

h3{font-size:1.05rem;margin:1rem 0 .35rem}
p{margin:.65rem 0}
.lead{color:var(--muted);max-width:78ch;font-size:1.05rem}

/* ===============================
   UI HELPERS
================================ */
.hr{
  height:1px;
  margin:1.2rem 0;
  background: linear-gradient(90deg, transparent, rgba(215,171,84,.45), transparent);
}

.list{
  margin:.6rem 0 0;
  display:grid;
  gap:.25rem;
}
.list li{margin-left:1rem;color:var(--muted)}

/* Layout */
.grid-2{
  display:grid;
  grid-template-columns:1.2fr .8fr;
  gap:1.2rem;
  align-items:start;
}
@media(max-width:900px){
  .grid-2{grid-template-columns:1fr}
}

/* ===============================
   CARD (une seule version)
================================ */
.card{
  position:relative;
  background:var(--card);
  border:1px solid rgba(0,0,0,.08);
  border-radius:var(--r);
  box-shadow: 0 18px 45px rgba(18,17,15,.10);
  padding:1.6rem;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.card:hover{
  transform: translateY(-2px);
  border-color: rgba(215,171,84,.28);
  box-shadow:
    0 28px 65px rgba(18,17,15,.14),
    0 0 28px rgba(215,171,84,.14);
}

/* Card dorée douce (utilisée pour "Choix du menu" etc.) */
.card-gold-soft{
  background: linear-gradient(to bottom, rgba(215,171,84,0.48), rgba(215,171,84,0.15));
  border: 1px solid rgba(215,171,84,0.45);
  box-shadow:
    0 18px 45px rgba(18,17,15,0.10),
    inset 0 1px 0 rgba(255,255,255,0.35);
}

/* ===============================
   HEADER / NAV
================================ */
.header{
  position: sticky;
  top: 0;
  z-index: 50;
  height: 86px;
  background: rgba(251,250,247,.86);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}

.header-inner{
  height: 100%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:1rem;
}

.brand{
  position: relative;
  display:flex;
  align-items:center;
}

/* logo */
.brand-logo-wrap{
  position: relative;
  width: 300px;
  flex-shrink: 0;
}
.brand-logo{ width:450px;height:auto;display:block ; margin-left: -150px; /* décale à gauche */}

/* texte superposé */
.brand-text{
  position:absolute;
  left:60px;
  top:50%;
  transform:translateY(-50%);
  display:flex;
  flex-direction:column;
  pointer-events:none;
}
.brand-title{
  font-weight:850;
  letter-spacing:.4em;
  text-transform:uppercase;
  font-size:1rem;
  line-height:1.1;
}
.brand-sub{
  font-size:.8rem;
  color:var(--muted);
  margin-top:2px;
}

.nav{display:flex;flex-wrap:wrap;gap:.35rem;justify-content:flex-end}
.nav a{
  font-size:.92rem;
  color:var(--muted);
  padding:.35rem .75rem;
  border-radius:999px;
  border:1px solid transparent;
  transition:.18s;
}
.nav a:hover{
  color:var(--ink);
  border-color:rgba(182,138,58,.35);
  background:rgba(182,138,58,.10);
}
.nav a.is-active{
  color: var(--ink);
  border-color: rgba(215,171,84,.55);
  background: linear-gradient(135deg, rgba(243,208,138,.75), rgba(215,171,84,.18));
  font-weight: 800;
}
@media(max-width:900px){
  .nav{justify-content:flex-start}
}

/* ===============================
   BUTTONS (une seule version)
================================ */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:.78rem 1.15rem;
  border-radius:999px;
  border:1px solid rgba(215,171,84,.55);
  background: linear-gradient(135deg, #f3d08a 0%, #d7ab54 55%, #c39a46 100%);
  color:#12110f;
  font-weight:750;
  transition: transform .18s ease, box-shadow .25s ease, filter .25s ease, background .18s ease;
}
.btn:hover{
  transform: translateY(-2px);
  box-shadow: 0 18px 50px rgba(215,171,84,.35);
  filter: brightness(1.04);
  background: linear-gradient(135deg, #f6ddb0 0%, #d7ab54 50%, #b88a2f 100%);
}

/* ===============================
   FORMS
================================ */
label{display:block;font-size:.92rem;color:var(--muted);margin:.65rem 0 .25rem}
input, select, textarea{
  width:100%;
  border:1px solid var(--border);
  border-radius:14px;
  padding:.7rem .85rem;
  background:#fff;
  color:var(--ink);
  outline:none;
}
textarea{min-height:140px;resize:vertical}

/* ===============================
   FOOTER
================================ */
.footer{ padding:1.8rem 0; color:var(--muted); font-size:.92rem; }

/* ===============================
   HERO COVER (Accueil)
================================ */
.hero-cover{
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  min-height: 520px;
  overflow: hidden;
}
.hero-cover-img{
  position:absolute; inset:0;
  width:100%; height:100%;
  object-fit:cover;
  object-position:center;
  transform: scale(1.02);
}
.hero-cover-overlay{
  position:absolute; inset:0;
  background:
    linear-gradient(90deg, rgba(0,0,0,.55) 0%, rgba(0,0,0,.25) 55%, rgba(0,0,0,0) 100%),
    linear-gradient(180deg, rgba(0,0,0,.25) 0%, rgba(0,0,0,.05) 45%, rgba(0,0,0,.25) 100%);
}
.hero-cover-content{
  position:relative;
  z-index:2;
  padding:5.5rem 0 4.5rem;
  color:#fff;
  max-width: var(--max);
}
.hero-cover-content h1{
  max-width:18ch;
  text-shadow:0 10px 30px rgba(0,0,0,.35);
}
.hero-cover .hero-slogan{
  font-size:1.15rem;
  margin-top:.8rem;
  margin-bottom:1.2rem;
  color:rgba(255,255,255,.95);
  font-weight:500;
  text-shadow:0 4px 18px rgba(0,0,0,.45);
}

/* Ligne infos sous les boutons (points séparateurs) */
.hero-meta{
  display:flex;
  gap:.6rem;
  align-items:center;
  flex-wrap:wrap;
  margin-top:.6rem;
}
.hero-meta span{ position:relative; }
.hero-meta span:not(:last-child)::after{
  content:"•";
  margin:0 .6rem;
  color:rgba(255,255,255,.65);
}

@media (max-width: 900px){
  .hero-cover{ min-height: 460px; }
  .hero-cover-content{ padding: 4.5rem 0 3.5rem; }
  .hero-cover-content h1{ max-width: 24ch; }
}
@media (max-width: 520px){
  .hero-cover{ min-height: 420px; }
  .hero-cover-content{ padding: 4rem 0 3rem; }
}

/* ===============================
   MOSAIC (Accueil)
================================ */
.mosaic{
  display:grid;
  grid-template-columns: repeat(6, 1fr);
  gap:.7rem;
}
.mosaic img{
  width:100%;
  height:260px;
  object-fit:cover;
  border-radius:16px;
  border:1px solid rgba(215,171,84,.35);
  box-shadow: 0 10px 30px rgba(18,17,15,.08);
  transition: transform .35s ease, box-shadow .35s ease;
}
.mosaic img:hover{
  transform: scale(1.02);
  box-shadow: 0 22px 60px rgba(18,17,15,.18);
}
.mosaic img:nth-child(1){ grid-column: span 2; }
.mosaic img:nth-child(2){ grid-column: span 2; }
.mosaic img:nth-child(3){ grid-column: span 2; }

@media(max-width:980px){
  .mosaic{ grid-template-columns: repeat(2, 1fr); }
  .mosaic img{ height: 220px; }
  .mosaic img:nth-child(1),
  .mosaic img:nth-child(2),
  .mosaic img:nth-child(3){ grid-column: span 2; }
}

/* ===============================
   PHOTO CARD (Accueil)
================================ */
.photo-card{
  margin-top:1rem;
  border-radius:18px;
  overflow:hidden;
  border:1px solid rgba(215,171,84,.45);
  box-shadow: 0 18px 55px rgba(18,17,15,.10), 0 0 0 1px rgba(215,171,84,.25);
  background:#fff;
  transition: box-shadow .25s ease;
}
.photo-card:hover{
  box-shadow: 0 22px 70px rgba(18,17,15,.14), 0 0 22px rgba(215,171,84,.30);
}
.photo-card img{
  width:100%;
  height:260px;
  object-fit:cover;
}
@media(max-width:900px){
  .photo-card img{ height:220px; }
}
.photo-experience-up img{ object-position: center 70%; }

/* ===============================
   MENUS (menus.html)
================================ */
.menu-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:1.2rem;
  align-items:stretch;
}
@media(max-width:900px){ .menu-grid{ grid-template-columns:1fr; } }

.menu-card{
  padding:0;
  overflow:hidden;
  display:flex;
  flex-direction:column;
  min-height:100%;
}

.menu-media{
  position:relative;
  height:190px;
  overflow:hidden;
}
.menu-media img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center;
  border:1px solid rgba(215,171,84,.55);
  box-shadow: 0 16px 40px rgba(0,0,0,.10), 0 0 0 1px rgba(215,171,84,.18);
}
.menu-media::after{
  content:"";
  position:absolute; inset:0;
  background: linear-gradient(180deg, rgba(0,0,0,.18), rgba(0,0,0,.35));
  pointer-events:none;
}

.menu-body{
  padding:1.4rem 1.6rem;
  display:flex;
  flex-direction:column;
  gap:.85rem;
  flex:1;
  text-align:center;
}
.menu-title{ margin:0; text-align:center; }
.menu-price{
  text-align:center;
  font-weight:800;
  color:var(--muted);
  margin-top:-.35rem;
}
.menu-section-title{
  font-size:1rem;
  margin:1rem 0 .35rem;
  text-align:center;
}
.menu-choices{
  list-style:none;
  padding:0;
  margin:.3rem 0 .8rem;
  color:var(--muted);
}
.menu-choices li{ margin:.35rem 0; }

/* “ou” (si vous l’ajoutez en HTML via <span class="menu-or">ou</span>) */
.menu-or{
  display:block;
  margin:.6rem 0;
  font-weight:700;
  color:var(--accent);
  text-transform:uppercase;
  letter-spacing:.08em;
  font-size:.85rem;
}

.menu-note{
  font-size:.95rem;
  font-style:italic;
  color:var(--muted);
  margin:.5rem 0 .8rem;
  text-align:center;
}

.menu-footer{
  margin-top:auto;
  padding-top:.8rem;
  display:flex;
  justify-content:center;
}

/* Menu sans "ou" (gastro) */
.menu-fixed .menu-choices li + li::before{ content:none; }

/* Si une card doit prendre toute la largeur dans une grille */
.menu-grid .span-all,
.grid-2 .span-all{
  grid-column: 1 / -1;
  width: 100%;
}

/* Menus – hero + mosaic strip + split */
.menus-hero{
  position:relative;
  min-height:340px;
  display:flex;
  align-items:center;
  overflow:hidden;
  border-bottom:1px solid rgba(0,0,0,.06);
}
.menus-hero-img{
  position:absolute; inset:0;
  width:100%; height:100%;
  object-fit:cover;
  transform: scale(1.02);
}
.menus-hero-overlay{
  position:absolute; inset:0;
  background: linear-gradient(90deg, rgba(0,0,0,.55), rgba(0,0,0,.15));
}
.menus-hero-content{ position:relative; width:100%; }
.menus-hero-card{
  max-width:860px;
  padding:1.4rem 1.6rem;
  border-radius:22px;
  background:rgba(255,255,255,.92);
  border:1px solid rgba(0,0,0,.06);
  box-shadow:0 18px 55px rgba(0,0,0,.12);
  backdrop-filter: blur(8px);
}
.menus-hero-card h1{ margin:0 0 .35rem 0; }

.mosaic-strip{
  display:grid;
  grid-template-columns: 1.2fr .9fr 1.1fr;
  gap:14px;
}
.mosaic-strip img{
  width:100%;
  height:210px;
  object-fit:cover;
  border-radius:18px;
  border:1px solid rgba(215,171,84,.55);
  box-shadow:0 16px 40px rgba(0,0,0,.10);
  transition: transform .35s ease, box-shadow .35s ease;
}
.mosaic-strip img:hover{
  transform: scale(1.02);
  box-shadow: 0 22px 60px rgba(18,17,15,.18);
}

.split-card{
  display:grid;
  grid-template-columns: 1.25fr .75fr;
  gap:1.2rem;
  align-items:center;
}
.split-media img{
  width:100%;
  height:100%;
  max-height:420px;
  object-fit:cover;
  border-radius:18px;
  border:1px solid rgba(215,171,84,.55);
  box-shadow:0 16px 40px rgba(0,0,0,.10);
}

@media (max-width: 900px){
  .mosaic-strip{ grid-template-columns: 1fr; }
  .mosaic-strip img{ height:190px; }
  .split-card{ grid-template-columns: 1fr; }
  .menus-hero{ min-height:300px; }
  .menus-hero-overlay{
    background: linear-gradient(180deg, rgba(0,0,0,.55), rgba(0,0,0,.20));
  }
}

/* ===============================
   BUFFETS (buffets.html)
================================ */
.buffet-hero,
.buffet-inline,
.buffet-banner{
  border-radius:18px;
  overflow:hidden;
  border:1px solid rgba(215,171,84,.35);
  box-shadow: 0 18px 60px rgba(0,0,0,.08);
  background:#fff;
}

.buffet-hero{ margin-top:1.2rem; }
.buffet-hero img{ width:100%; height:420px; object-fit:cover; }
@media (max-width:900px){ .buffet-hero img{ height:260px; } }

.buffet-inline{ margin-top:1.1rem; box-shadow: 0 14px 40px rgba(0,0,0,.06); }
.buffet-inline img{ width:100%; height:320px; object-fit:cover; }
@media (max-width:900px){ .buffet-inline img{ height:220px; } }

.buffet-banner img{ width:100%; height:360px; object-fit:cover; }
@media (max-width:900px){ .buffet-banner img{ height:240px; } }

/* Mignardises / blocs */
.mini-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:1.2rem;
  align-items:start;
}
@media(max-width:900px){ .mini-grid{ grid-template-columns:1fr; } }

.mini-block{
  background: rgba(255,255,255,.75);
  border: 1px solid rgba(0,0,0,.06);
  border-radius: 18px;
  padding: 1.2rem 1.2rem 1.1rem;
  box-shadow: 0 14px 40px rgba(0,0,0,.06);
}
.mini-title{ margin:0 0 .6rem; }

.mini-list{
  list-style:none;
  margin:0;
  padding:0;
  display:grid;
  gap:.45rem;
  color:var(--muted);
}
.mini-list li{
  padding-left:1rem;
  position:relative;
}
.mini-list li::before{
  content:"•";
  position:absolute;
  left:0;
  top:0;
  color:var(--accent);
  font-weight:900;
}
.mini-hint{ margin-top:.75rem; color:var(--muted); font-size:.95rem; }

/* Badges (version “claire” pour vos cards) */
.buffet-meta{
  display:flex;
  gap:.5rem;
  flex-wrap:wrap;
}
.badge-ghost{
  display:inline-flex;
  align-items:center;
  padding:.45rem .7rem;
  border-radius:999px;
  border:1px solid rgba(0,0,0,.10);
  background: rgba(255,255,255,.45);
  font-weight:700;
  color: var(--muted);
}

/* KPI */
.buffet-kpi{
  margin-top:1rem;
  display:flex;
  gap:.8rem;
  flex-wrap:wrap;
}
.buffet-kpi .kpi{
  flex:1 1 160px;
  padding:.85rem 1rem;
  border:1px solid rgba(0,0,0,.08);
  border-radius:16px;
  background: rgba(255,255,255,.55);
  display:flex;
  align-items:baseline;
  gap:.5rem;
}
.buffet-kpi .kpi strong{ font-size:1.35rem; font-weight:900; }
.buffet-kpi .kpi span{ color:var(--muted); font-weight:700; }

/* CTA centré (simple et fiable) */
.buffet-cta-center{
  margin-top:1.2rem;
  width:100%;
  display:flex;
  justify-content:center;
}

/* ===============================
   GALERIE + LIGHTBOX
================================ */
.gallery{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:.7rem;
}
@media(max-width:980px){ .gallery{ grid-template-columns:repeat(3,1fr); } }
@media(max-width:640px){ .gallery{ grid-template-columns:repeat(2,1fr); } }

.gallery img{
  border-radius:16px;
  border:1px solid rgba(215,171,84,.35);
  box-shadow:0 10px 30px rgba(18,17,15,.08);
  aspect-ratio: 4/3;
  object-fit:cover;
  transition: transform .35s ease, box-shadow .35s ease;
}
.gallery img:hover{
  transform: scale(1.02);
  box-shadow:0 22px 60px rgba(18,17,15,.18);
}

.lightbox{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.82);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  z-index: 200;
}
.lightbox.is-open{ display:flex; }
.lightbox img{
  max-width: min(1100px, 96vw);
  max-height: 86vh;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.18);
  box-shadow: 0 22px 80px rgba(0,0,0,.35);
  object-fit: contain;
  background: rgba(255,255,255,.04);
}
.lightbox-close{
  position: absolute;
  top: 14px;
  right: 16px;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.25);
  background: rgba(255,255,255,.10);
  color: #fff;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
}
.lightbox-close:hover{
  background: rgba(255,255,255,.18);
  border-color: rgba(255,255,255,.40);
}

/* ===============================
   SPECIFIQUES DIVERS
================================ */
.experience-ambiance img{ object-position: center 70%; }

.experience-cta-under-left{
  grid-column: 1;
  grid-row: 2;
  display:flex;
  justify-content:center;
  margin-top: -5rem; /* ajuste si besoin */
}

.duo-conclusion{
  margin-top:1.5rem;
  padding-top:1.2rem;
  text-align:center;
  font-weight:600;
  color:#4a4a4a;
  border-top:1px solid rgba(0,0,0,.08);
}
.buffet-cta-center{
  margin-top: 1.5rem;
  display: flex;
  justify-content: center;
}
.buffet-delivery-note{
  margin-top: 1rem;
  text-align: center;
}
/* ===============================
   BUFFET – HERO (texte sur image)
================================ */
.buffet-hero-cover{
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  min-height: 420px;
  overflow: hidden;
}

.buffet-hero-img{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.buffet-hero-overlay{
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(0,0,0,.55) 0%,
      rgba(0,0,0,.25) 55%,
      rgba(0,0,0,.05) 100%
    );
}

.buffet-hero-content{
  position: relative;
  z-index: 2;
  padding: 5rem 0 4rem;
  max-width: 700px;
  color: #fff;
}

.buffet-hero-content h1{
  text-shadow: 0 10px 30px rgba(0,0,0,.35);
}

.buffet-hero-content .lead{
  color: rgba(255,255,255,.92);
  text-shadow: 0 4px 18px rgba(0,0,0,.45);
}

/* Mobile */
@media (max-width: 900px){
  .buffet-hero-cover{
    min-height: 360px;
  }

  .buffet-hero-content{
    padding: 4rem 0 3rem;
  }
}
.mini-note-center{
  text-align: center;
  margin-top: 1rem;
  color: var(--muted);
}
/* HERO MENUS – texte directement sur l’image */
.menus-hero-card{
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0;
  backdrop-filter: none;
}
.menus-hero-card h1,
.menus-hero-card p{
  color: #fff;
  text-shadow: 0 6px 25px rgba(0,0,0,.45);
}

/* Contact direct : tel + mail */
.contact-direct{
  margin: 1.2rem auto 1.2rem;
  text-align: center;
}

.contact-line{
  margin: .35rem 0;
  font-size: 1.05rem;
  font-weight: 650;
}

.contact-line a{
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid rgba(0,0,0,.15);
}

.contact-line a:hover{
  border-bottom-color: currentColor;
}

.contact-hint{
  margin-top: .7rem;
  font-size: .95rem;
  color: var(--muted);
}
/* Carte pleine largeur (contact) */
.card-wide{
  max-width: 100%;
}
/* HERO CONTACT – texte blanc sur image */
.menus-hero .hero-text h1,
.menus-hero .hero-text p{
  color: #ffffff;
}
/* ===============================
   NAV MOBILE (hamburger)
================================ */

/* Desktop visible, mobile caché */
.nav-desktop{ display:flex; }

/* Bouton hamburger */
.nav-toggle{
  display:none;
  width:44px;
  height:44px;
  border-radius:12px;
  border:1px solid rgba(0,0,0,.10);
  background: rgba(255,255,255,.65);
  backdrop-filter: blur(10px);
  cursor:pointer;
  position:relative;
}

.nav-toggle-lines{
  position:absolute;
  left:50%;
  top:50%;
  width:20px;
  height:2px;
  background: var(--ink);
  transform: translate(-50%,-50%);
  border-radius:2px;
}
.nav-toggle-lines::before,
.nav-toggle-lines::after{
  content:"";
  position:absolute;
  left:0;
  width:20px;
  height:2px;
  background: var(--ink);
  border-radius:2px;
}
.nav-toggle-lines::before{ top:-6px; }
.nav-toggle-lines::after{ top:6px; }

/* Overlay */
.nav-overlay{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.45);
  z-index: 80;
}

/* ===== MENU MOBILE (hamburger + drawer) ===== */

/* bouton hamburger caché sur desktop */
.nav-toggle{
  display:none;
  width:44px;
  height:44px;
  border-radius:12px;
  border:1px solid rgba(0,0,0,.10);
  background: rgba(255,255,255,.65);
  backdrop-filter: blur(10px);
  cursor:pointer;
  position: relative;
}

/* les 3 barres */
.nav-toggle span{
  position:absolute;
  left:12px;
  right:12px;
  height:2px;
  background: var(--ink);
  border-radius:2px;
  transition: transform .2s ease, top .2s ease, opacity .2s ease;
}
.nav-toggle span:nth-child(1){ top:14px; }
.nav-toggle span:nth-child(2){ top:21px; }
.nav-toggle span:nth-child(3){ top:28px; }

/* drawer fermé par défaut */
.nav-mobile{
  display:none;
  border-top: 1px solid var(--border);
  background: rgba(251,250,247,.92);
  backdrop-filter: blur(14px);
}

/* contenu du drawer */
.nav-mobile-inner{
  max-width: var(--max);
  margin: 0 auto;
  padding: .8rem 1.2rem 1.1rem;
  display:flex;
  flex-direction:column;
  gap:.25rem;
}

.nav-mobile-inner a{
  padding:.8rem .9rem;
  border-radius:14px;
  color: var(--muted);
  border:1px solid transparent;
}
.nav-mobile-inner a:hover{
  color: var(--ink);
  border-color: rgba(182,138,58,.35);
  background: rgba(182,138,58,.10);
}

/* état ouvert */
.header.is-open .nav-mobile{
  display:block;
}
.header.is-open .nav-toggle span:nth-child(1){
  top:21px;
  transform: rotate(45deg);
}
.header.is-open .nav-toggle span:nth-child(2){
  opacity:0;
}
.header.is-open .nav-toggle span:nth-child(3){
  top:21px;
  transform: rotate(-45deg);
}

/* responsive : mobile */
@media (max-width: 900px){
  .nav-desktop{ display:none; }
  .nav-toggle{ display:inline-flex; align-items:center; justify-content:center; }
}
/* ===============================
   HEADER MOBILE PROPRE (remplace tes 2 blocs actuels)
================================ */
@media (max-width: 900px){

  .header{
    height: 76px;
  }

  .header-inner{
    height: 76px;
    gap: .6rem;
  }

  .brand{
    display: flex;
    align-items: center;
    gap: 0;
    min-width: 0;
  }

  /* Logo */
  .brand-logo{
    width: 200px;       /* ajuste si besoin */
    height: auto;
    flex-shrink: 0;
    margin-left: -60px; /* décale à gauche */
  }

  /* Texte qui “rentre” sur le logo */
  .brand-text{
    margin-left: -50px;
  }

  .brand-title{
    font-size: 1rem;
    line-height: 1.1;
    white-space: nowrap;
  }

  .brand-sub{
    font-size: .7rem;
    opacity: .9;
    white-space: nowrap;
  }
}
/* ===== POPUP SAINT-VALENTIN ===== */
.sv-modal{
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
}
.sv-modal.active{
  display: block;
}
.sv-modal-overlay{
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.55);
}

/* la “carte” centrée */
.sv-modal-dialog{
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: min(92vw, 520px);
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 18px;
  padding: 18px 18px 16px;
  box-shadow: 0 18px 50px rgba(0,0,0,.25);
}

.sv-badge{
  display:inline-block;
  font-size:.8rem;
  font-weight:800;
  letter-spacing:.06em;
  text-transform:uppercase;
  color: var(--accent-dark);
  background: rgba(243,208,138,.55);
  border: 1px solid rgba(215,171,84,.45);
  padding: .35rem .6rem;
  border-radius: 999px;
  margin-bottom: .6rem;
}

.sv-close{
  position: absolute;
  top: 10px;
  right: 10px;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,.12);
  background: rgba(255,255,255,.85);
  cursor: pointer;
  font-size: 18px;
  line-height: 1;
}
/* ===== SAINT-VALENTIN PAGE ===== */
.sv-hero{
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  min-height: 420px;
  overflow: hidden;
}
.sv-hero-img{
  position:absolute; inset:0;
  width:100%; height:100%;
  object-fit:cover;
  transform: scale(1.02);
}
.sv-hero-overlay{
  position:absolute; inset:0;
  background:
    linear-gradient(90deg, rgba(0,0,0,.62) 0%, rgba(0,0,0,.30) 55%, rgba(0,0,0,.08) 100%),
    linear-gradient(180deg, rgba(0,0,0,.25) 0%, rgba(0,0,0,.08) 60%, rgba(0,0,0,.20) 100%);
}
.sv-hero-content{
  position: relative;
  z-index: 2;
  padding: 5rem 0 4rem;
  color:#fff;
  max-width: var(--max);
}
.sv-kicker{
  display:inline-flex;
  align-items:center;
  gap:.4rem;
  padding:.35rem .65rem;
  border-radius:999px;
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.20);
  backdrop-filter: blur(8px);
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  font-size: .78rem;
}
.sv-hero-content h1{
  margin-top:.7rem;
  max-width: 22ch;
  text-shadow: 0 10px 30px rgba(0,0,0,.35);
}
.sv-hero-row{
  margin-top: .9rem;
  display:flex;
  align-items:center;
  gap: .8rem;
  flex-wrap:wrap;
}
.sv-price{
  display:inline-flex;
  align-items:center;
  padding:.45rem .75rem;
  border-radius:999px;
  border:1px solid rgba(243,208,138,.55);
  background: linear-gradient(135deg, rgba(243,208,138,.85), rgba(215,171,84,.22));
  color: #12110f;
  font-weight: 900;
}
.sv-badges{ display:flex; gap:.5rem; flex-wrap:wrap; }
.sv-hero-lead{
  margin-top: .9rem;
  max-width: 62ch;
  color: rgba(255,255,255,.92);
  text-shadow: 0 4px 18px rgba(0,0,0,.45);
}
.sv-hero-cta{ margin-top: 1.2rem; }

/* Intro formats */
.sv-intro .sv-format{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: .8rem;
}
.sv-format-item{
  padding: 1rem;
  border-radius: 16px;
  border: 1px solid rgba(0,0,0,.06);
  background: rgba(255,255,255,.65);
}
.sv-note{
  margin-top: 1rem;
  color: var(--muted);
  text-align:center;
}

/* Menu grid */
.sv-menu-grid{
  margin-top: 1.2rem;
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
}
.sv-course-tag{
  display:inline-flex;
  align-items:center;
  padding:.28rem .55rem;
  border-radius:999px;
  border:1px solid rgba(215,171,84,.45);
  background: rgba(215,171,84,.10);
  color: var(--muted);
  font-weight: 850;
  font-size: .78rem;
}
.sv-course h2{ margin-top:.6rem; }

/* CTA final */
.sv-cta{ text-align:center; }

/* Responsive */
@media (max-width: 900px){
  .sv-intro .sv-format{ grid-template-columns: 1fr; }
  .sv-menu-grid{ grid-template-columns: 1fr; }
  .sv-hero{ min-height: 390px; }
  .sv-hero-content{ padding: 4rem 0 3rem; }
}
/* ===============================
   LAYOUTS WIDE / EDITORIAL / CTA BANNER (HOME)
================================ */

/* Layout A — Split texte + image */
.section-wide .card{ padding: 2rem; }

.split{
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap:1.6rem;
  align-items:center;
}

.split-media img{
  width:100%;
  height:320px;
  object-fit:cover;
  border-radius:18px;
  border:1px solid rgba(215,171,84,.35);
  box-shadow:0 18px 55px rgba(18,17,15,.10);
}

@media (max-width:900px){
  .split{ grid-template-columns:1fr; }
  .split-media img{ height:240px; }
}

/* Layout B — Editorial sans card */
.section-editorial{ padding:2.5rem 0; }

.editorial{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:2rem;
  align-items:start;
}

.editorial p{ margin-top:.6rem; }

@media (max-width:900px){
  .editorial{ grid-template-columns:1fr; }
}

/* Layout C — CTA banner pleine largeur */
.cta-banner{
  margin-top:1rem;
  padding:1.6rem 1.8rem;
  border-radius:22px;
  border:1px solid rgba(215,171,84,.35);
  background:linear-gradient(135deg, rgba(243,208,138,.35), rgba(215,171,84,.10));
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:1rem;
}

.cta-banner .lead{ margin:0; max-width:70ch; }

@media (max-width:900px){
  .cta-banner{
    flex-direction:column;
    text-align:center;
  }
}
/* ====== HOME: largeur + sections premium ====== */
.section-wide .container{ max-width: var(--max); }
.section-wide{ padding: 2.2rem 0; }
@media(max-width:900px){ .section-wide{ padding: 1.4rem 0; } }

/* Split pleine largeur (texte + image) */
.split-wide{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 1.4rem;
  align-items:center;
}
.split-media img{
  width:100%;
  height: 420px;
  object-fit: cover;
  border-radius: 18px;
  border:1px solid rgba(215,171,84,.45);
  box-shadow: 0 18px 55px rgba(18,17,15,.10);
}
.split-cta{ margin-top: 1rem; display:flex; gap:.6rem; flex-wrap:wrap; }
@media(max-width:900px){
  .split-wide{ grid-template-columns: 1fr; }
  .split-media img{ height: 260px; }
}

/* Bullets plus “visuels” */
.bullets{
  list-style:none;
  padding:0;
  margin:.7rem 0 0;
  display:grid;
  gap:.55rem;
  color: var(--muted);
}
.bullets li{
  position:relative;
  padding-left:1.1rem;
}
.bullets li::before{
  content:"•";
  position:absolute;
  left:0;
  top:0;
  color: var(--accent);
  font-weight:900;
}

/* grid-2 un peu plus large (moins “colonne étroite”) */
.grid-2-wide{
  grid-template-columns: 1.05fr .95fr;
}
@media(max-width:900px){
  .grid-2-wide{ grid-template-columns: 1fr; }
}

/* Reasons en grille (plus premium) */
.reasons-grid{
  margin-top: 1rem;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .9rem;
}
.reason-card{
  padding: .95rem 1rem;
  border-radius: 16px;
  border: 1px solid rgba(0,0,0,.08);
  background: rgba(255,255,255,.65);
  box-shadow: 0 12px 35px rgba(0,0,0,.06);
  font-weight: 650;
  color: var(--ink);
}
@media(max-width:980px){
  .reasons-grid{ grid-template-columns: 1fr 1fr; }
}
@media(max-width:560px){
  .reasons-grid{ grid-template-columns: 1fr; }
}

/* Bande CTA (style “banner”) */
.band-cta{
  margin-top: 1.1rem;
  padding: 1rem 1.1rem;
  border-radius: 18px;
  border: 1px solid rgba(215,171,84,.35);
  background: linear-gradient(135deg, rgba(243,208,138,.35), rgba(215,171,84,.10));
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 1rem;
}
.band-text{ color: var(--ink); }
.band-actions{ display:flex; gap:.6rem; flex-wrap:wrap; }
@media(max-width:900px){
  .band-cta{ flex-direction: column; align-items:flex-start; }
}

/* CTA row */
.cta-row{
  margin-top: 1rem;
  display:flex;
  gap:.6rem;
  flex-wrap:wrap;
}

/* petit texte sous photo */
.mini-note-center{
  margin-top:.8rem;
  color: var(--muted);
  text-align:center;
}
/* ===== TYPO SCALE (3 niveaux) ===== */
:root{
  --fs-body: 1rem;        /* texte normal */
  --fs-lead: 1.08rem;     /* phrase d'accroche */
  --fs-small: .92rem;     /* notes / micro-texte */
}

body{ font-size: var(--fs-body); }

.lead{
  font-size: var(--fs-lead);
  line-height: 1.6;
}

.small,
.note,
.mini-note-center{
  text-align: center;
  margin-top: 1rem;
  font-size: var(--fs-small);
  line-height: 1.5;
  color: var(--muted);
}

/* titres : un poil plus “hiérarchisés” */
h2{ letter-spacing: -0.01em; }
h3{ font-size: 1.08rem; letter-spacing: -0.005em; }

/* ===== CTA helpers ===== */
.cta-center{
  display:flex;
  justify-content:center;
  gap:.7rem;
  flex-wrap:wrap;
  margin-top: 1.2rem;
}
/* ===== CTA Banner (important) ===== */
.cta-banner{
  margin-top: 1.4rem;
  padding: 1.1rem 1.2rem;
  border-radius: 18px;
  border: 1px solid rgba(215,171,84,.35);
  background: linear-gradient(135deg, rgba(243,208,138,.40), rgba(215,171,84,.12));
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 1rem;
}

.cta-banner .cta-text{
  max-width: 70ch;
  color: var(--ink);
}

.cta-banner .cta-text strong{
  font-size: 1.05rem;
}

.cta-banner .cta-actions{
  display:flex;
  gap:.6rem;
  flex-wrap:wrap;
  justify-content:center;
}

@media(max-width:900px){
  .cta-banner{ flex-direction:column; align-items:flex-start; }
  .cta-banner .cta-actions{ width:100%; justify-content:flex-start; }
}

/* ===== Section title (H2 hors card) ===== */
.section-title{
  margin-bottom: .9rem;
  max-width: 980px; /* garde une lecture premium */
}

.section-title h2{
  margin: 0;
}

.section-title p{
  margin: .35rem 0 0;
  color: var(--muted);
  max-width: 70ch;
}


@media(max-width:900px){
  .section-title{ flex-direction: column; align-items:flex-start; }
}
.benefits{
  list-style: none;
  padding: 0;
  margin: .2rem 0 0;
  display: grid;
  gap: .6rem;
}

.benefits li{
  padding-left: 1.2rem;
  position: relative;
  color: var(--muted);
}

.benefits li::before{
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent);
  font-weight: 900;
}
/* ===== TITRES DE SECTION CENTRÉS ===== */
.section-title-center{
  text-align: center;
  max-width: 900px;
  margin: 0 auto 1.2rem;
}

.section-title-center h2{
  margin: 0;
}

.section-title-center h2::after{
  margin: .6rem auto 0; /* centre le trait doré */
}

.section-title-center p{
  margin-top: .5rem;
  color: var(--muted);
  font-size: var(--fs-lead);
  max-width: 70ch;
  margin-left: auto;
  margin-right: auto;
}
.grid-2 > .card{
  display:flex;
  flex-direction:column;
}
H2{
Font-size: 1.6rem;
}
/* ==================================
   SAINT-VALENTIN (discret + premium)
================================== */

.sv-hero-overlay{
  background:
    linear-gradient(90deg, rgba(0,0,0,.62) 0%, rgba(0,0,0,.28) 55%, rgba(0,0,0,0) 100%),
    radial-gradient(900px 520px at 18% 35%, rgba(215,171,84,.18), rgba(0,0,0,0) 60%),
    linear-gradient(180deg, rgba(0,0,0,.25) 0%, rgba(0,0,0,.08) 45%, rgba(0,0,0,.28) 100%);
}

.sv-kicker{
  display:inline-flex;
  align-items:center;
  gap:.5rem;
  margin-bottom:.65rem;
  padding:.45rem .75rem;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.22);
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.92);
  font-weight: 750;
  font-size: .92rem;
  backdrop-filter: blur(8px);
}

.sv-price{
  display:inline-flex;
  align-items:center;
  padding:.45rem .75rem;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.22);
  background: rgba(255,255,255,.08);
  color:#fff;
  font-weight: 900;
}

.sv-hero-row{
  margin-top: .9rem;
  display:flex;
  align-items:center;
  gap:.7rem;
  flex-wrap:wrap;
}

.sv-badges{
  display:flex;
  gap:.5rem;
  flex-wrap:wrap;
}

/* petits coeurs (mask SVG) */
.sv-heart,
.sv-mini-heart{
  width: 16px;
  height: 16px;
  display:inline-block;
  background: rgba(255,255,255,.88);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 21s-7-4.35-10-9.5C.07 8.04 1.8 5 5.4 5c2 0 3.5 1.2 4.6 2.5C11.1 6.2 12.6 5 14.6 5c3.6 0 5.33 3.04 3.4 6.5C19 16.65 12 21 12 21z'/%3E%3C/svg%3E") center / contain no-repeat;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 21s-7-4.35-10-9.5C.07 8.04 1.8 5 5.4 5c2 0 3.5 1.2 4.6 2.5C11.1 6.2 12.6 5 14.6 5c3.6 0 5.33 3.04 3.4 6.5C19 16.65 12 21 12 21z'/%3E%3C/svg%3E") center / contain no-repeat;
  opacity: .95;
}

.sv-mini-heart{
  width: 14px;
  height: 14px;
  background: rgba(215,171,84,.95);
  opacity: .9;
}

/* grilles */
.sv-format-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  align-items: stretch;
  margin-top: .9rem;
}
@media(max-width:900px){
  .sv-format-grid{ grid-template-columns: 1fr; }
}

.sv-menu-grid{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: .9rem;
}
@media(max-width:900px){
  .sv-menu-grid{ grid-template-columns: 1fr; }
}

.sv-course-head{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap:.6rem;
  margin-bottom: .55rem;
}

.sv-course-tag{
  display:inline-flex;
  align-items:center;
  padding:.35rem .6rem;
  border-radius:999px;
  border:1px solid rgba(215,171,84,.35);
  background: rgba(215,171,84,.10);
  color: var(--ink);
  font-weight: 850;
  font-size: .88rem;
}

/* liseré “coeur” discret autour des cards */
.sv-card-heart{
  position: relative;
  overflow: hidden;
}
.sv-card-heart::before{
  content:"";
  position:absolute;
  inset: -1px;
  border-radius: var(--r);
  padding: 1px;
  background: linear-gradient(135deg, rgba(215,171,84,.55), rgba(255,255,255,0));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  opacity: .55;
  pointer-events:none;
}

/* CTA banner un peu + doux */
.sv-cta-banner{
  border-color: rgba(215,171,84,.40);
  background: linear-gradient(135deg, rgba(243,208,138,.42), rgba(215,171,84,.10));
}
/* MENU SV en parcours vertical (plus clair) */
.sv-menu-vertical{
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: .9rem;
}

/* Petit liseré vertical + effet premium discret */
.sv-card-heartline{
  position: relative;
  overflow: hidden;
}

.sv-card-heartline::before{
  content:"";
  position:absolute;
  left: 18px;
  top: 18px;
  bottom: 18px;
  width: 1px;
  background: linear-gradient(
    180deg,
    rgba(215,171,84,.0),
    rgba(215,171,84,.55),
    rgba(215,171,84,.0)
  );
  opacity: .6;
  pointer-events:none;
}

/* ===== VRAI COEUR EN CONTOUR (SVG) ===== */
.sv-heart-outline{
  width: 18px;
  height: 18px;
  display: inline-block;
  background: rgba(215,171,84,.95);
  opacity: .95;

  /* coeur outline (contour) */
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 20.7S4.2 16.2 2.2 11.4C0.6 7.5 3.2 4.8 6.2 4.8c2 0 3.6 1.2 4.7 2.6c1.1-1.4 2.7-2.6 4.7-2.6c3 0 5.6 2.7 4 6.6C19.8 16.2 12 20.7 12 20.7z' fill='none' stroke='black' stroke-width='2' stroke-linejoin='round'/%3E%3C/svg%3E") center/contain no-repeat;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 20.7S4.2 16.2 2.2 11.4C0.6 7.5 3.2 4.8 6.2 4.8c2 0 3.6 1.2 4.7 2.6c1.1-1.4 2.7-2.6 4.7-2.6c3 0 5.6 2.7 4 6.6C19.8 16.2 12 20.7 12 20.7z' fill='none' stroke='black' stroke-width='2' stroke-linejoin='round'/%3E%3C/svg%3E") center/contain no-repeat;
}
/* ===== MENU SAINT-VALENTIN CENTRÉ ===== */

.sv-menu-centered{
  max-width: 760px;          /* largeur premium */
  margin: 1.5rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.sv-course.sv-centered{
  text-align: center;
  padding: 1.6rem 1.8rem;
  position: relative;
}

/* Tag (Amuse-bouches, Entrée...) */
.sv-course-tag{
  display: inline-block;
  margin-bottom: .4rem;
  font-size: .85rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--muted);
}

/* Titre plat */
.sv-course h3{
  margin: .2rem 0 .6rem;
  font-size: 1.15rem;
}

/* Texte */
.sv-course p{
  max-width: 58ch;
  margin: 0 auto;
  line-height: 1.55;
}

/* ===== COEUR OUTLINE (discret & chic) ===== */
.sv-heart-outline{
  display: block;
  margin: .6rem auto .4rem;
  width: 20px;
  height: 20px;
  background: rgba(215,171,84,.9);

  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 20.7S4.2 16.2 2.2 11.4C0.6 7.5 3.2 4.8 6.2 4.8c2 0 3.6 1.2 4.7 2.6c1.1-1.4 2.7-2.6 4.7-2.6c3 0 5.6 2.7 4 6.6C19.8 16.2 12 20.7 12 20.7z' fill='none' stroke='black' stroke-width='2' stroke-linejoin='round'/%3E%3C/svg%3E") center/contain no-repeat;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 20.7S4.2 16.2 2.2 11.4C0.6 7.5 3.2 4.8 6.2 4.8c2 0 3.6 1.2 4.7 2.6c1.1-1.4 2.7-2.6 4.7-2.6c3 0 5.6 2.7 4 6.6C19.8 16.2 12 20.7 12 20.7z' fill='none' stroke='black' stroke-width='2' stroke-linejoin='round'/%3E%3C/svg%3E") center/contain no-repeat;

  opacity: .85;
}


.hero-photo-crop{
  height: 260px;          /* ← ajuste la hauteur ici */
  overflow: hidden;
  border-radius: 18px;
}

.hero-photo-crop img{
  width: 100%;
  height: 100%;
  object-fit: cover;     /* 🔥 recadrage automatique */
  object-position: center 55%;
  display: block;
}
.list-check{
  list-style: none;
  padding-left: 0;
}

.list-check li{
  position: relative;
  padding-left: 1.8rem;
  margin-bottom: 1rem;
  text-align: left;
}

.list-check li::before{
  content: "✓";
  position: absolute;
  left: 0;
  top: .15rem;
  Font-size: 1rem;
  font-weight: 600;
  color: var(--gold);
}
:root{
  --gold: #c8a75a;
}
/* =========================
   MENUS – PRIX PAR TRANCHE + CTA
   ========================= */

.menu-price{
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.25;
}

.menu-price .price-note{
  font-size: .85rem;
  font-weight: 500;
  opacity: .78;
  margin-left: .35rem;
}

.menu-price .price-alt{
  display: block;
  margin-top: .35rem;
  font-size: .95rem;
  font-weight: 650;
  color: var(--gold);
}

.cta-center{
  margin-top: 1.2rem;
  display: flex;
  justify-content: center;
}

.menu-footnote{
  text-align: center;
  margin-top: 1.5rem;
  color: var(--muted);
}
.buffet-meta {
  display: flex;
  justify-content: center;   /* centre horizontalement */
  align-items: center;
  gap: .6rem;
  flex-wrap: wrap;           /* évite que ça déborde sur mobile */
  text-align: center;
}
.card h3,
.card h2 {
  text-align: center;
}
/* HERO SAINT-VALENTIN PLUS COMPACT */
.sv-hero--noimg {
  background: linear-gradient(
    180deg,
    rgba(0,0,0,0.55),
    rgba(0,0,0,0.65)
  );
  min-height: 55vh; /* ⬅️ AVANT : 75vh */
  display: flex;
  align-items: center;
  padding: 3rem 0; /* ⬅️ limite la hauteur */
}

.sv-hero-centered {
  text-align: center;
  max-width: 760px; /* un peu plus serré */
  margin: 0 auto;
}

/* Titre plus compact */
.sv-hero h1 {
  font-size: clamp(2rem, 3.5vw, 2.6rem);
  margin-bottom: .6rem;
}

/* Texte secondaire plus proche */
.sv-hero-lead {
  margin-top: .4rem;
  margin-bottom: .9rem;
  font-size: 1.05rem;
  line-height: 1.55;
}

/* Ligne prix + badges */
.sv-hero-row--center {
  margin-top: .8rem;
  margin-bottom: 1rem;
  justify-content: center;
  gap: .5rem;
}

/* CTA plus proche */
.sv-hero .cta-center {
  margin-top: .9rem !important;
}

/* Texte d’aide plus discret */
.sv-hero .small {
  margin-top: .7rem !important;
  font-size: .85rem;
  opacity: .8;
}
.sv-hero--noimg {
  min-height: auto;  /* ⬅️ clé */
  padding: 2rem 0 1.8rem;
}
.sv-hero h1 {
  margin-bottom: .4rem;
}

.sv-hero-lead {
  margin-bottom: .6rem;
}

.sv-hero-row--center {
  margin: .6rem 0 .8rem;
}

.sv-hero .cta-center {
  margin-top: .6rem !important;
}
.sv-hero--noimg {
  min-height: auto;
  padding: 1.6rem 0 1.4rem;
}

.sv-kicker {
  margin-bottom: .3rem;
}

.sv-hero h1 {
  font-size: 2.2rem;
}

.sv-hero .small {
  display: none; /* optionnel */
}
.sv-hero-content {
  max-width: 760px;          /* ⬅️ largeur éditoriale */
  margin: 0 auto;            /* centrage horizontal */
  text-align: center;        /* centrage du texte */
}
.sv-hero h1 {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
/* ✅ Fix : sur écrans étroits, logo + texte restent côte à côte (sans se marcher dessus) */
@media (max-width: 900px){
  .header-inner{
    flex-wrap: nowrap;
    gap: .75rem;
  }

  .brand{
    display:flex;
    align-items:center;
    gap:.65rem;
    min-width:0;
    flex: 1 1 auto;
    flex-wrap: nowrap;
  }

  /* on enlève la superposition sur mobile */
  .brand-text{
    position: static !important;
    transform: none !important;
    left: auto !important;
    top: auto !important;
    min-width:0;
    pointer-events:none;
  }

  /* logo : seulement sur mobile on le met à une taille “safe” */
  .brand-logo{
    width: 160px !important;     /* ✅ mets 180 / 200 si tu veux plus grand */
    margin-left: 0 !important;   /* stop les décalages négatifs */
    flex: 0 0 auto;
  }

  /* texte : coupe proprement au lieu de passer dessous */
  .brand-title,
  .brand-sub{
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}