/* ==========================================
   LE ZESTE DE BRICE — Feuille de style globale
   Mobile First · SEO Optimisé
   ========================================== */

@import url('https://fonts.googleapis.com/css2?family=Rubik:wght@400;700;900&family=Open+Sans:wght@300;400;600&display=swap');

/* === VARIABLES === */
:root {
  --rouge:    #FF5B39;
  --noir:     #2C2C2C;
  --creme:    #FDFAF4;
  --peche:    #F0C98A;
  --olive:    #7A7A35;
  --gris:     #5A5248;
  --bordure:  #E8E0D0;
  --fond-alt: #F5F0E8;
  --blanc:    #FFFFFF;
  --font-titre: 'Rubik', sans-serif;
  --font-corps: 'Open Sans', sans-serif;
  --ombre:    0 2px 16px rgba(0,0,0,0.08);
  --radius:   12px;
  --radius-lg:20px;
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-corps);
  background: var(--creme);
  color: var(--noir);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

/* === TYPOGRAPHY === */
h1, h2, h3, h4 {
  font-family: var(--font-titre);
  font-weight: 900;
  line-height: 1.1;
  color: var(--noir);
}
h1 { font-size: clamp(2rem, 7vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 5vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 4vw, 1.8rem); }
h4 { font-size: 1.1rem; font-weight: 700; }
p { margin-bottom: 1rem; }

/* === LAYOUT === */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.25rem; }
.section { padding: 4rem 0; }
.section--alt { background: var(--fond-alt); }
.section--dark { background: var(--noir); color: var(--creme); }
.section--dark h1, .section--dark h2, .section--dark h3 { color: var(--creme); }

/* === HEADER / NAV === */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--creme);
  border-bottom: 2px solid var(--noir);
  padding: 0.75rem 0;
}
/* Le bandeau d'en-tete occupe toute la largeur de la fenetre (le reste du site
   reste cadre a 1200px) : ca libere la place necessaire au menu sur grand ecran. */
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  max-width: none;
  padding: 0 1.5rem;
}
.site-logo { display: flex; align-items: center; }
.site-logo img { height: 58px; width: auto; }

/* Nav desktop */
.main-nav { display: none; }
.main-nav ul { display: flex; gap: 0.25rem; align-items: center; }
/* Centrage des entrees principales entre le logo et le groupe de droite :
   la nav occupe tout l'espace disponible, puis deux marges automatiques
   (avant la 1re entree et avant "Blog") repartissent le vide a parts egales.
   Blog et "Je reserve" restent donc colles a droite. */
.main-nav { flex: 1; }
.main-nav ul { width: 100%; }
.main-nav ul > li:first-child { margin-left: auto; }
.main-nav ul > li.nav-droite  { margin-left: auto; }
.main-nav a {
  display: block;
  padding: 0.5rem 0.7rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gris);
  border-radius: 8px;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}
.main-nav a:hover, .main-nav a.active { background: var(--fond-alt); color: var(--rouge); }
.main-nav .cta-nav {
  background: var(--rouge);
  color: white !important;
  border-radius: 10px;
  padding: 0.6rem 1.1rem;
}
.main-nav .cta-nav:hover { background: #e04a2a; }
.main-nav .blog-nav {
  color: var(--olive) !important;
  font-family: var(--font-titre) !important;
  font-style: italic;
  font-weight: 700 !important;
}
.main-nav .blog-nav:hover { background: var(--fond-alt); color: var(--olive) !important; }

/* Burger */
.burger-btn {
  background: none;
  border: 2px solid var(--noir);
  border-radius: 8px;
  width: 40px; height: 40px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 5px;
  cursor: pointer;
}
.burger-btn span {
  display: block; width: 18px; height: 2px;
  background: var(--noir); border-radius: 2px;
  transition: transform 0.3s;
}

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--noir);
  z-index: 999;
  flex-direction: column;
  justify-content: center;
  padding: 4rem 2rem 1.5rem;
  overflow-y: auto;
}
.mobile-menu.open { display: flex; }
.mobile-menu-close {
  position: absolute;
  top: 1rem; right: 1.25rem;
  background: none; border: none;
  color: white; font-size: 2rem; cursor: pointer;
}
.mobile-menu a {
  display: block;
  padding: 0.65rem 0;
  font-size: 1.2rem;
  font-weight: 700;
  font-family: var(--font-titre);
  color: var(--creme);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.mobile-menu a.rouge { color: var(--rouge); }

/* === BOUTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.75rem;
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.2s;
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary { background: var(--rouge); color: white; }
.btn-primary:hover { background: #e04a2a; transform: translateY(-1px); }
.btn-outline { background: transparent; border-color: var(--rouge); color: var(--rouge); }
.btn-outline:hover { background: var(--rouge); color: white; }
.btn-dark { background: var(--noir); color: white; border-color: var(--noir); }
.btn-dark:hover { background: #1a1a1a; }
.btn-block { display: flex; width: 100%; }

/* === HERO SLIDER === */
.hero {
  position: relative;
  height: 85vh;
  min-height: 520px;
  max-height: 850px;
  overflow: hidden;
  background: var(--noir);
}
.hero-slider {
  position: relative;
  height: 100%;
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
  pointer-events: none;
}
.hero-slide.active {
  opacity: 1;
  pointer-events: auto;
}
.hero-slide img:not(.sap-watermark) {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.55);
}
.hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem 1.25rem 4rem;
  color: white;
  max-width: 700px;
}
.hero-tag {
  display: table;
  white-space: nowrap;
  background: var(--rouge);
  color: white;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 5px;
  margin-bottom: 1rem;
}
.hero-content h1, .hero-content .hero-heading { color: white; margin-bottom: 1rem; font-size: var(--h1-size, 2.4rem); font-family: var(--font-titre); font-weight: 900; line-height: 1.15; }
.hero-content h1 em, .hero-content .hero-heading em { color: var(--rouge); font-style: normal; }
.hero-content .hero-heading { display: block; }
.hero-content p { color: rgba(255,255,255,0.85); font-size: 1.05rem; margin-bottom: 1.75rem; }
.hero-checks { display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 1.75rem; }
.hero-checks span {
  display: flex; align-items: center; gap: 0.6rem;
  color: white; font-size: 0.95rem;
}
.hero-checks .dot {
  width: 20px; height: 20px; min-width: 20px;
  background: var(--rouge);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem; color: white;
}
.hero-btns { display: flex; flex-direction: column; gap: 0.75rem; }

/* Slider controls */
.slider-dots {
  position: absolute;
  bottom: 1.5rem; right: 1.25rem;
  display: flex; gap: 6px;
}
.slider-dot {
  width: 8px; height: 8px;
  border-radius: 50%; background: rgba(255,255,255,0.4);
  border: none; cursor: pointer;
  transition: background 0.2s;
}
.slider-dot.active { background: var(--rouge); width: 24px; border-radius: 4px; }

/* === SAP LOGO SLIDER === */
.sap-watermark {
  position: absolute !important;
  top: 12px !important;
  right: 12px !important;
  width: 105px !important;
  height: auto !important;
  z-index: 2;
  pointer-events: none;
  display: block !important;
  border-radius: 6px;
}

/* === BANDEAU IMPÔT === */
.impot-band {
  background: var(--peche);
  padding: 1rem 1.25rem;
  display: flex;
  gap: 0.75rem;
  align-items: center;
}
.impot-band .icon { font-size: 1.4rem; flex-shrink: 0; }
.impot-band p { margin: 0; font-size: 0.9rem; color: var(--noir); }
.impot-band strong { font-size: 0.95rem; }
.impot-badge {
  display: inline-block;
  background: var(--rouge);
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 5px;
  margin-top: 4px;
}

/* === SECTION LABEL === */
.section-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--rouge);
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

/* === ÉTAPES === */
.steps { display: flex; flex-direction: column; gap: 1.25rem; margin-top: 1.5rem; }
.step { display: flex; gap: 1rem; align-items: flex-start; }
.step-num {
  width: 36px; height: 36px; min-width: 36px;
  border-radius: 50%;
  background: var(--rouge);
  color: white;
  font-family: var(--font-titre);
  font-weight: 900;
  font-size: 0.9rem;
  display: flex; align-items: center; justify-content: center;
}
.step-body { padding-top: 0.35rem; }
.step-body strong { display: block; font-size: 1rem; margin-bottom: 0.25rem; }
.step-body span { font-size: 0.88rem; color: var(--gris); }

/* === BÉNÉFICES GRID === */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin-top: 1.5rem;
}
.benefit-card {
  background: white;
  border: 1px solid var(--bordure);
  border-radius: var(--radius);
  padding: 1.25rem 1rem;
  text-align: center;
}
.benefit-icon { font-size: 1.75rem; margin-bottom: 0.5rem; }
.benefit-label { font-size: 0.85rem; font-weight: 600; line-height: 1.3; }
.benefit-card--img { padding: 1.25rem 1rem; }
.benefit-img { width: 100%; display: flex; align-items: center; justify-content: center; margin-bottom: 0.5rem; }
.benefit-img img { width: 72px; height: 72px; object-fit: contain; }
.benefit-card--img .benefit-label { }

/* === FORMULES === */
.formules-list { display: flex; flex-direction: column; gap: 1rem; margin-top: 1.5rem; }
.formule-card {
  background: white;
  border: 1.5px solid var(--bordure);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.formule-card.featured { border-color: var(--rouge); border-width: 2px; }
.formule-header { padding: 1.25rem 1.25rem 1rem; border-bottom: 1px solid var(--bordure); }
.formule-header.featured-bg { background: var(--rouge); }
.formule-header.featured-bg .formule-title,
.formule-header.featured-bg .formule-sub { color: white; }
.formule-header.featured-bg .formule-sub { color: rgba(255,255,255,0.75); }
.formule-badge {
  display: inline-block;
  background: white;
  color: var(--rouge);
  font-size: 0.72rem; font-weight: 700;
  padding: 3px 10px; border-radius: 5px;
  margin-bottom: 0.5rem;
}
.formule-title { font-family: var(--font-titre); font-size: 1.2rem; font-weight: 900; }
.formule-sub { font-size: 0.82rem; color: var(--gris); margin-top: 3px; }
.formule-body { padding: 1.25rem; }
.price-row { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 1rem; }
.price-net { font-family: var(--font-titre); font-size: 2.4rem; font-weight: 900; color: var(--rouge); line-height: 1; display: block; }
.price-net-label { font-size: 0.78rem; color: var(--gris); display: block; margin-top: 4px; }
.price-gross { font-size: 1.1rem; font-weight: 600; color: var(--gris); text-decoration: line-through; align-self: flex-end; padding-bottom: 6px; }
.includes { display: flex; flex-direction: column; gap: 0.5rem; }
.include-item { display: flex; gap: 0.6rem; align-items: center; font-size: 0.88rem; }
.include-dot {
  width: 18px; height: 18px; min-width: 18px;
  background: var(--olive);
  border-radius: 50%;
  color: white; font-size: 0.65rem;
  display: flex; align-items: center; justify-content: center;
}

/* === TÉMOIGNAGES === */
.temoignage {
  background: white;
  border-radius: 16px;
  padding: 1.25rem 1.5rem;
  margin-bottom: 1rem;
}
.temoignage-texte { font-style: italic; font-size: 0.95rem; line-height: 1.65; margin-bottom: 0.75rem; }
.temoignage-auteur-row { display: flex; align-items: center; gap: 0.6rem; margin-top: 1rem; }
.temoignage-avatar { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; flex-shrink: 0; border: 2px solid var(--rouge); }
.temoignage-auteur { font-size: 0.85rem; font-weight: 700; color: var(--noir); }

/* === STATS === */
.stats-section { background: var(--noir); padding: 2rem 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.stat-card {
  text-align: center;
  padding: 1rem 0.75rem;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.stat-card.visible { opacity: 1; transform: translateY(0); }
.stat-number {
  font-family: var(--font-titre);
  font-size: 3.2rem;
  font-weight: 900;
  color: var(--rouge);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.stat-label { font-size: 0.78rem; color: rgba(255,255,255,0.65); line-height: 1.5; }
.stat-card--positive .stat-number { color: var(--olive); }
@media (max-width: 768px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-number { font-size: 2.4rem; }
}
@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
}

/* === SEO CARDS === */
.seo-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}
.seo-card {
  background: white;
  border-radius: 20px;
  padding: 1.75rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transition: transform 0.2s, box-shadow 0.2s;
}
.seo-card:hover { transform: translateY(-3px); box-shadow: 0 8px 28px rgba(0,0,0,0.1); }
.seo-card--wide { grid-column: 1 / -1; background: var(--fond-alt); }
.seo-card-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 1rem;
}
.seo-card h3 { font-size: 1.05rem; font-family: var(--font-titre); font-weight: 900; margin-bottom: 0.6rem; color: var(--noir); }
.seo-card p { font-size: 0.92rem; color: var(--gris); line-height: 1.65; margin: 0; }
.seo-list { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.5rem 2rem; }
.seo-list li { font-size: 0.92rem; color: var(--gris); line-height: 1.6; }

.seo-cards > .seo-card:nth-child(1) { background: #FFF1EE; }
.seo-cards > .seo-card:nth-child(1) .seo-card-icon { background: #FFD9CF; }
.seo-cards > .seo-card:nth-child(2) { background: #F2F5DF; }
.seo-cards > .seo-card:nth-child(2) .seo-card-icon { background: #D8E4A8; }
.seo-cards > .seo-card:nth-child(3) { background: #FEF8EC; }
.seo-cards > .seo-card:nth-child(3) .seo-card-icon { background: #F8E5B4; }
.seo-cards > .seo-card:nth-child(4) { background: #F0F5FF; }
.seo-cards > .seo-card:nth-child(4) .seo-card-icon { background: #C9D9F7; }

@media (max-width: 640px) {
  .seo-cards { grid-template-columns: 1fr; }
  .seo-list { grid-template-columns: 1fr; }
}

/* === FAQ === */
.faq-list { margin-top: 1.25rem; }
.faq-item { border-bottom: 1px solid var(--bordure); }
.faq-btn {
  width: 100%; background: none; border: none; cursor: pointer;
  padding: 1.1rem 0;
  display: flex; justify-content: space-between; align-items: center;
  text-align: left;
  font-size: 0.95rem; font-weight: 600; color: var(--noir);
}
.faq-arrow { transition: transform 0.25s; flex-shrink: 0; margin-left: 0.75rem; color: var(--rouge); }
.faq-item.open .faq-arrow { transform: rotate(180deg); }
.faq-answer { display: none; font-size: 0.9rem; color: var(--gris); padding: 0 0 1.1rem; line-height: 1.65; }
.faq-item.open .faq-answer { display: block; }

/* === GALERIE === */
.galerie-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
  margin-top: 1.5rem;
}
.galerie-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 1;
  cursor: pointer;
}
.galerie-item.tall { aspect-ratio: 0.75; }
.galerie-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.galerie-item:hover img { transform: scale(1.05); }

/* === PAGE BRICE === */
.brice-intro-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: start;
  margin-bottom: 3rem;
}
.brice-photo-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 2rem;
  aspect-ratio: 2/3;
}
.brice-photo-wrap img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
@media (min-width: 768px) {
  .brice-intro-grid { grid-template-columns: 300px 1fr; gap: 3rem; align-items: stretch; }
  .brice-intro-grid .brice-photo-wrap { margin-bottom: 0; aspect-ratio: unset; height: 100%; min-height: 400px; }
}
.brice-qualities { display: flex; flex-direction: column; gap: 1rem; margin: 1.5rem 0; }
.quality-item { border-left: 3px solid var(--rouge); padding-left: 1rem; }
.quality-item strong { display: block; font-size: 1rem; margin-bottom: 0.25rem; }
.quality-item span { font-size: 0.88rem; color: var(--gris); line-height: 1.55; }

/* === CARTE DU MOIS === */
.carte-intro {
  background: var(--fond-alt);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  margin-bottom: 2rem;
  border-left: 4px solid var(--olive);
}
.carte-category { margin-bottom: 2.5rem; }
.carte-category-title {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-titre);
  font-size: 1.3rem;
  font-weight: 900;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--bordure);
}
.carte-category-emoji { font-size: 1.5rem; }
.plats-list { display: flex; flex-direction: column; gap: 0.75rem; }
.plat-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.9rem 1rem;
  background: white;
  border-radius: var(--radius);
  border: 1px solid var(--bordure);
}
.plat-item.coup-coeur { border-color: var(--rouge); }
.plat-dot {
  width: 8px; height: 8px; min-width: 8px;
  border-radius: 50%;
  background: var(--bordure);
  margin-top: 6px;
}
.plat-item.coup-coeur .plat-dot { background: var(--rouge); }
.plat-nom { font-weight: 600; font-size: 0.95rem; }
.plat-desc { font-size: 0.82rem; color: var(--gris); margin-top: 2px; }

/* === CGV === */
.cgv-content { max-width: 800px; margin: 0 auto; }
.cgv-article {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--bordure);
}
.cgv-article:last-child { border-bottom: none; }
.cgv-article h3 { font-size: 1.05rem; margin-bottom: 0.75rem; color: var(--rouge); font-family: var(--font-titre); }
.cgv-article p { font-size: 0.9rem; color: var(--gris); line-height: 1.7; }

/* === CONTACT / CALENDLY === */
.contact-steps { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2rem; }
.contact-step { display: flex; gap: 1rem; align-items: flex-start; padding: 1rem; background: white; border-radius: var(--radius); border: 1px solid var(--bordure); }
.contact-step-num { font-family: var(--font-titre); font-size: 1.5rem; font-weight: 900; color: var(--rouge); min-width: 2rem; }
.contact-step-body strong { display: block; font-weight: 600; margin-bottom: 0.25rem; }
.contact-step-body span { font-size: 0.88rem; color: var(--gris); }
.social-links { display: flex; flex-direction: column; gap: 0.75rem; margin: 1.5rem 0; }
.social-link { display: flex; align-items: center; gap: 0.75rem; padding: 0.85rem 1rem; background: white; border: 1px solid var(--bordure); border-radius: var(--radius); font-weight: 600; font-size: 0.95rem; transition: border-color 0.2s; }
.social-link:hover { border-color: var(--rouge); }
.social-icon { width: 28px; height: 28px; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; flex-shrink: 0; }
.social-icon.tel { color: var(--rouge); }
.calendly-wrap { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--bordure); }

/* === AUTRES PRESTAS === */
.prestas-list { display: flex; flex-direction: column; gap: 1.5rem; margin-top: 2rem; }
.presta-card {
  background: white;
  border-radius: var(--radius-lg);
  border: 1px solid var(--bordure);
  overflow: hidden;
}
.presta-header {
  background: var(--fond-alt);
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--bordure);
  display: grid;
  grid-template-columns: 2.2rem 1fr;
  column-gap: 0.85rem;
  row-gap: 0.15rem;
  align-items: start;
}
.presta-emoji { font-size: 1.75rem; grid-row: 1 / 3; padding-top: 0.1rem; }
.presta-header h3 { align-self: end; }
.presta-header > p { margin: 0; }
.presta-header h3 { font-size: 1.15rem; }
.presta-body { padding: 1.25rem 1.5rem; font-size: 0.9rem; color: var(--gris); line-height: 1.65; }
.presta-body p { margin-bottom: 0.75rem; }
.presta-body p:last-child { margin-bottom: 0; }
.presta-body em { color: var(--rouge); font-style: italic; }

/* === CTA FINAL === */
.cta-final { text-align: center; padding: 4rem 1.25rem; background: var(--noir); }
.cta-final h2 { color: var(--creme); margin-bottom: 0.75rem; }
.cta-final p { color: rgba(255,255,255,0.6); margin-bottom: 1.75rem; font-size: 0.95rem; }

/* === SAP LOGO BAND === */
.sap-band {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: white;
  border: 1px solid var(--bordure);
  border-radius: var(--radius);
  margin: 1.5rem 0;
}
.sap-logo { width: 60px; height: auto; flex-shrink: 0; }
.sap-text { font-size: 0.85rem; color: var(--gris); line-height: 1.5; }
.sap-text strong { color: var(--noir); display: block; margin-bottom: 3px; }

/* === FOOTER === */
.site-footer { background: #1A1A1A; color: var(--creme); padding: 3rem 0 2rem; }
.footer-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
.footer-logo { display: inline-block; background: var(--creme); border-radius: 8px; padding: 5px 10px; margin-bottom: 0.75rem; }
.footer-logo img { height: 38px; width: auto; }
.footer-tagline { font-size: 0.72rem; letter-spacing: 2.5px; text-transform: uppercase; color: #666; margin-bottom: 1rem; }
.footer-desc { font-size: 0.85rem; color: #888; line-height: 1.6; }
.footer-nav h4 { font-size: 0.72rem; letter-spacing: 2px; text-transform: uppercase; color: #666; margin-bottom: 1rem; font-family: var(--font-corps); }
.footer-nav ul { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-nav a { font-size: 0.88rem; color: #aaa; transition: color 0.2s; }
.footer-nav a:hover { color: var(--rouge); }
.footer-contact { font-size: 0.88rem; color: #888; line-height: 2; }
.footer-bottom {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid #333;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.78rem;
  color: #555;
}

/* === LIGHTBOX GALERIE === */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.lightbox.open { display: flex; }
.lightbox img, .lightbox video { max-width: 90vw; max-height: 82vh; object-fit: contain; border-radius: var(--radius); }
.lightbox-close { position: absolute; top: 1rem; right: 1.25rem; color: white; font-size: 2rem; cursor: pointer; background: none; border: none; }
.lightbox-caption { color: rgba(255,255,255,0.75); font-size: 0.88rem; margin-top: 1rem; text-align: center; max-width: 600px; min-height: 1.2em; }
.lightbox-nav { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,0.12); border: none; color: white; font-size: 2rem; cursor: pointer; border-radius: 50%; width: 50px; height: 50px; display: flex; align-items: center; justify-content: center; transition: background 0.2s; }
.lightbox-nav:hover { background: rgba(255,255,255,0.25); }
.lightbox-prev { left: 1rem; }
.lightbox-next { right: 1rem; }
/* Légende au survol des items galerie */
.galerie-item { position: relative; }
.galerie-legende {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.7));
  color: white; font-size: 0.8rem; padding: 1.5rem 0.75rem 0.6rem;
  opacity: 0; transform: translateY(6px);
  transition: opacity 0.25s, transform 0.25s;
  pointer-events: none;
}
.galerie-item:hover .galerie-legende { opacity: 1; transform: translateY(0); }

/* === PAGE HERO (non-home) === */
.page-hero {
  background-color: var(--noir);
  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='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.06'/%3E%3C/svg%3E");
  padding: 3.5rem 1.25rem 3rem;
  color: white;
}
.page-hero h1 { color: white; }
.page-hero h1 em { color: var(--rouge); font-style: normal; }
.page-hero p { color: rgba(255,255,255,0.7); margin-top: 0.75rem; font-size: 1.05rem; }

/* === BREADCRUMB SEO === */
.breadcrumb { padding: 0.75rem 0; font-size: 0.8rem; color: var(--gris); }
.breadcrumb a { color: var(--rouge); }
.breadcrumb span { margin: 0 0.4rem; }

/* ==========================================
   RESPONSIVE — Tablet 640px+
   ========================================== */
@media (min-width: 640px) {
  .hero-content { padding: 2.5rem 2.5rem 5rem; }
  .hero-btns { flex-direction: row; }
  .benefits-grid { grid-template-columns: repeat(3, 1fr); }
  .galerie-grid { grid-template-columns: repeat(3, 1fr); }
  .prestas-list { display: grid; grid-template-columns: repeat(2, 1fr); }
}

/* ==========================================
   RESPONSIVE — Desktop 1024px+
   ========================================== */
@media (min-width: 1024px) {
  .burger-btn { display: none; }
  .main-nav { display: flex; }
  .section { padding: 5.5rem 0; }
  /* suite du bloc inchangee */
  .hero-content { max-width: 860px; padding: 3rem 3rem 6rem; }
  .sap-watermark { width: 105px; top: 16px; right: 20px; }
  .benefits-grid { grid-template-columns: repeat(4, 1fr); }
  .galerie-grid { grid-template-columns: repeat(4, 1fr); }
  .footer-inner { grid-template-columns: 1.8fr 1fr 1fr 1.2fr 1.4fr; }
  .footer-bottom { flex-direction: row; justify-content: space-between; }
  .formules-list { display: grid; grid-template-columns: repeat(3, 1fr); }
  .steps-two-col { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .prestas-list { grid-template-columns: repeat(3, 1fr); }
}

/* ---------- Vidéo de présentation (accueil) ---------- */
.video-section { background: var(--fond-alt); }
.video-grid { display: grid; gap: 1.8rem; align-items: center; }
.video-media { display: flex; justify-content: center; }
.video-facade,
.video-frame {
  position: relative;
  width: 100%;
  max-width: 320px;
  aspect-ratio: 9 / 16;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--ombre);
}
.video-facade { display: block; padding: 0; border: 0; background: none; cursor: pointer; }
.video-facade img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .45s ease; }
.video-facade:hover img,
.video-facade:focus-visible img { transform: scale(1.05); }
.video-play {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 68px; height: 68px; border-radius: 50%;
  background: var(--rouge); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem; box-shadow: 0 4px 20px rgba(0,0,0,.35);
  transition: transform .25s ease;
}
.video-facade:hover .video-play { transform: translate(-50%, -50%) scale(1.09); }
.video-dur {
  position: absolute; bottom: .7rem; right: .7rem;
  background: rgba(0,0,0,.72); color: #fff;
  font-size: .76rem; font-weight: 600; padding: .12rem .48rem; border-radius: 6px;
}
.video-frame iframe { width: 100%; height: 100%; border: 0; display: block; }
.video-text h2 { margin-top: .2rem; }
@media (min-width: 860px) {
  .video-grid { grid-template-columns: 320px 1fr; gap: 3rem; }
}

/* ---------- Anti-débordement horizontal sur petits écrans ---------- */
@media (max-width: 520px) {
  /* Les boutons longs (« Je réserve ma semaine sereine → ») dépassaient
     du conteneur à cause de white-space:nowrap + 32px de padding latéral. */
  .btn { white-space: normal; text-align: center; max-width: 100%; }
}

/* ---------- Barre d'action mobile (appel / réservation) ---------- */
.mobile-cta { display: none; }
@media (max-width: 760px) {
  .mobile-cta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
    position: fixed;
    left: 0; right: 0; bottom: 0;
    z-index: 900;
    padding: 0.55rem 0.7rem calc(0.55rem + env(safe-area-inset-bottom));
    background: rgba(255,255,255,0.97);
    border-top: 1px solid var(--bordure);
    box-shadow: 0 -3px 16px rgba(0,0,0,0.10);
  }
  .mobile-cta a {
    display: flex; align-items: center; justify-content: center; gap: 0.4rem;
    padding: 0.75rem 0.5rem;
    border-radius: 10px;
    font-family: var(--font-titre);
    font-weight: 700; font-size: 0.92rem;
    text-decoration: none;
    text-align: center;
  }
  .mobile-cta-call { background: var(--rouge); color: #fff; }
  .mobile-cta-book { background: var(--olive); color: #fff; }
  /* Libère la place en bas de page pour ne rien masquer */
  body { padding-bottom: 68px; }
}

/* ---------- Sélection de plats sur la carte du mois ---------- */
.plat-pick { cursor: pointer; position: relative; transition: background .15s, border-color .15s; }
.plat-pick:hover { background: #FFF3EF; }
.plat-pick.picked { background: #FFF0EC; border-color: var(--rouge) !important; box-shadow: inset 0 0 0 1.5px var(--rouge); }

/* Pastille de sélection : « + » gris au repos, « ✓ » orange une fois le plat choisi.
   Placée en tête de ligne (order: -1) plutôt qu'à droite : sur un plat qui tient sur
   deux lignes, une pastille à droite se centrait verticalement et se désalignait des
   icônes de régime. En tête, elle reste calée sur la première ligne du nom. */
.plat-pick::after {
  content: '+';
  order: -1;
  flex-shrink: 0;
  align-self: flex-start;
  margin-top: 1px;
  width: 20px; height: 20px; border-radius: 50%;
  background: #fff; border: 1.5px solid var(--bordure); color: var(--gris);
  font-size: .95rem; font-weight: 700; line-height: 1;
  display: flex; align-items: center; justify-content: center;
  transition: background .15s, border-color .15s, color .15s;
}
.plat-pick:hover::after { border-color: var(--rouge); color: var(--rouge); }
.plat-pick.picked::after {
  content: '✓'; background: var(--rouge); border-color: var(--rouge); color: #fff;
  font-size: .72rem;
}

.pick-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 950;
  background: rgba(255,255,255,.98); border-top: 1px solid var(--bordure);
  box-shadow: 0 -3px 18px rgba(0,0,0,.12);
  transform: translateY(120%); transition: transform .25s ease;
  padding: .7rem 1rem calc(.7rem + env(safe-area-inset-bottom));
}
.pick-bar.on { transform: translateY(0); }
.pick-bar-inner { max-width: 1100px; margin: 0 auto; display: flex; align-items: center; gap: .8rem; flex-wrap: wrap; }
.pick-count { font-family: var(--font-titre); font-weight: 700; color: var(--noir); }
.pick-count strong { color: var(--rouge); font-size: 1.25rem; }
.pick-open { margin-left: auto; }
.pick-clear { background: none; border: 0; color: var(--gris); text-decoration: underline; cursor: pointer; font-size: .88rem; }

.pick-modal { position: fixed; inset: 0; z-index: 1000; background: rgba(0,0,0,.55); display: none; overflow-y: auto; padding: 1rem; }
.pick-modal.on { display: block; }
.pick-dialog {
  background: var(--creme); max-width: 640px; margin: 3vh auto; border-radius: var(--radius-lg);
  padding: 1.8rem 1.5rem; position: relative; box-shadow: 0 12px 50px rgba(0,0,0,.3);
}
.pick-close { position: absolute; top: .6rem; right: .9rem; background: none; border: 0; font-size: 2rem; line-height: 1; color: var(--gris); cursor: pointer; }
.pick-dialog h2 { margin: 0 0 .3rem; }
.pick-help { color: var(--gris); font-size: .95rem; margin: 0 0 1.1rem; }
.pick-list { list-style: none; padding: 0; margin: 0 0 1.4rem; display: flex; flex-direction: column; gap: .35rem; }
.pick-list li {
  background: #fff; border: 1px solid var(--bordure); border-radius: 10px;
  padding: .5rem .7rem; font-size: .92rem; display: flex; align-items: center; gap: .5rem;
}
.pick-remove { margin-left: auto; background: none; border: 0; color: var(--rouge); font-size: 1.3rem; line-height: 1; cursor: pointer; }
.pick-form label { display: flex; flex-direction: column; gap: .25rem; font-size: .85rem; font-weight: 600; color: var(--gris); }
.pick-form input, .pick-form select, .pick-form textarea {
  font-family: var(--font-corps); font-size: 1rem; color: var(--noir);
  border: 1px solid var(--bordure); border-radius: 10px; padding: .6rem .7rem; background: #fff; width: 100%;
}
.pick-row { display: grid; grid-template-columns: 1fr; gap: .8rem; margin-bottom: .8rem; }
.pick-full { margin-bottom: 1rem; }
.pick-submit { width: 100%; }
.pick-legal { font-size: .78rem; color: var(--gris); margin: .8rem 0 0; text-align: center; }
@media (min-width: 620px) { .pick-row { grid-template-columns: 1fr 1fr; } }
@media (max-width: 760px) { .pick-bar.on ~ .mobile-cta, body:has(.pick-bar.on) .mobile-cta { display: none; } }

/* ---------- Bandeau de consentement cookies ---------- */
.ck-banner{
  position:fixed;left:0;right:0;bottom:0;z-index:1200;
  background:#fff;border-top:2px solid var(--rouge);
  box-shadow:0 -6px 28px rgba(0,0,0,.18);
  padding:1rem 1.1rem calc(1rem + env(safe-area-inset-bottom));
  transform:translateY(140%);transition:transform .35s ease;
  max-height:88vh;overflow-y:auto;
}
.ck-banner.on{transform:translateY(0);}
.ck-inner{max-width:1100px;margin:0 auto;display:flex;gap:1rem;align-items:center;flex-wrap:wrap;}
.ck-txt{flex:1 1 320px;}
.ck-txt strong{font-family:var(--font-titre);font-size:1rem;color:var(--noir);}
.ck-txt p{margin:.25rem 0 0;font-size:.86rem;color:var(--gris);line-height:1.45;}
.ck-btns{display:flex;gap:.5rem;flex-wrap:wrap;}
.ck-b{
  font-family:var(--font-titre);font-weight:700;font-size:.86rem;
  border-radius:10px;padding:.6rem 1.1rem;cursor:pointer;border:1.5px solid var(--bordure);
  background:#fff;color:var(--noir);
}
.ck-accept{background:var(--rouge);border-color:var(--rouge);color:#fff;}
.ck-custom{background:var(--fond-alt);}
.ck-details{max-width:1100px;margin:1rem auto 0;border-top:1px solid var(--bordure);padding-top:.9rem;}
.ck-line{display:flex;align-items:center;gap:1rem;justify-content:space-between;padding:.6rem 0;border-bottom:1px solid var(--fond-alt);font-size:.88rem;}
.ck-line small{color:var(--gris);font-size:.8rem;}
.ck-line input{width:20px;height:20px;accent-color:var(--olive);flex-shrink:0;}
.ck-details .ck-b{margin-top:.9rem;width:100%;}
@media(max-width:760px){
  .ck-btns{width:100%;}
  .ck-btns .ck-b{flex:1;text-align:center;padding:.7rem .5rem;}
}

/* ---------- Hero des pages commune : arguments + appels à l'action ---------- */
.hero-accroche { font-size: 1.05rem; color: var(--gris); margin: .9rem 0 1rem; max-width: 620px; }
.hero-accroche strong { color: #fff; }
/* Sur grand écran, la 1re phrase de l'accroche a besoin d'environ 890 px pour
   tenir sur une seule ligne : le plafond de 620 px la coupait en deux. */
@media (min-width: 1024px) { .hero-accroche { max-width: 960px; } }
.hero-args { list-style: none; padding: 0; margin: 0 0 1.3rem; display: flex; flex-wrap: wrap; gap: .5rem .9rem; }
.hero-args li {
  display: inline-flex; align-items: center; gap: .4rem;
  font-size: .9rem; font-weight: 600; color: var(--noir);
  background: #fff; border: 1px solid var(--bordure); border-radius: 999px; padding: .35rem .8rem;
}
.hero-args span { color: var(--rouge); font-weight: 900; }
.hero-cta { display: flex; flex-wrap: wrap; gap: .7rem; margin-bottom: 1rem; }
.hero-cta .btn { display: inline-flex; align-items: center; gap: .45rem; }
.hero-preuve { display: flex; flex-wrap: wrap; gap: .5rem; font-size: .85rem; color: var(--gris); margin: 0; }
.hero-preuve span:first-child { color: #E8A33D; font-weight: 700; }
.hero-preuve span:nth-child(2) { opacity: .5; }
@media (max-width: 620px) { .hero-preuve span:nth-child(2) { display: none; } .hero-preuve { gap: .15rem .5rem; } }
@media (max-width: 620px) {
  .hero-accroche { font-size: 1rem; margin: .7rem 0 .8rem; }
  .hero-args { gap: .4rem; margin-bottom: 1rem; }
  .hero-args li { font-size: .82rem; padding: .3rem .65rem; }
  .hero-cta { gap: .5rem; }
  .hero-cta .btn { flex: 1 1 100%; justify-content: center; }
}

/* ==========================================
   EN-TÊTE — seuil du menu burger
   Le menu desktop complet (10 entrées) ne tient qu'à partir de 1280px.
   Entre 1024 et 1280, il débordait : logo écrasé et bouton « Je réserve »
   coupé au bord de la fenêtre. On y garde donc le menu burger.
   ========================================== */
@media (min-width: 1024px) and (max-width: 1279.98px) {
  .burger-btn { display: flex; }
  .main-nav   { display: none; }
}
