/* ============================================
   VARIABLES
   ============================================ */
:root {
  --noir:       #0F1923;
  --teal:       #5B8E8A;
  --teal-light: #7AB0AC;
  --creme:      #F5F0E6;
  --rouge:      #B5342A;
  --gris-clair: #E8E2D6;
  --texte:      #2C2C2C;

  --font-titre:    'Playfair Display', Georgia, serif;
  --font-corps:    'Lato', Helvetica, Arial, sans-serif;
  --font-accent:   'Dancing Script', cursive;

  /* Teal accessible : passe WCAG AA 4.5:1 sur --creme (#F5F0E6) */
  --teal-accessible: #3D6B66;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-corps);
  font-weight: 400;
  color: var(--texte);
  background-color: var(--creme);
  line-height: 1.6;
  min-height: 100vh;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

input, button, textarea, select {
  font: inherit;
}

p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}

ul, ol {
  list-style: none;
}

a {
  color: inherit;
  text-decoration: none;
}

/* ============================================
   TYPOGRAPHIE DE BASE
   ============================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-titre);
  color: var(--noir);
  line-height: 1.2;
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(1.5rem, 5vw, 4rem);
  height: 72px;
  background: var(--noir);
  transition: box-shadow 0.3s ease;
}

.navbar.scrolled {
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
}

/* Logo */
.navbar__logo {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  gap: 0;
}

.logo__top {
  font-family: var(--font-corps);
  font-weight: 300;
  font-size: 14px;
  color: var(--creme);
  letter-spacing: 0.05em;
}

.logo__main {
  font-family: var(--font-titre);
  font-weight: 700;
  font-size: 22px;
  color: var(--creme);
  letter-spacing: 0.12em;
}

/* Liens */
.navbar__links {
  display: flex;
  align-items: center;
  gap: 2.25rem;
}

.navbar__links a {
  font-family: var(--font-corps);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--creme);
  transition: color 0.2s ease;
}

.navbar__links a:hover {
  color: var(--teal-light);
}

/* CTA Réservation */
.navbar__cta {
  border: 1px solid var(--teal) !important;
  padding: 0.5rem 1.25rem;
  border-radius: 100px;
  transition: background 0.2s ease, color 0.2s ease !important;
}

.navbar__cta:hover {
  background: var(--teal) !important;
  color: var(--noir) !important;
}

/* Sélecteur de langue */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: 1.5rem;
}

.lang-switcher span {
  color: #F5F0E6;
  opacity: 0.3;
  font-size: 12px;
}

.lang-btn {
  font-family: var(--font-corps);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 2px;
  color: #F5F0E6;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  opacity: 0.6;
  transition: opacity 0.2s ease, color 0.2s ease;
}

.lang-btn:hover {
  opacity: 1;
}

.lang-btn.active {
  color: #5B8E8A;
  opacity: 1;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger__bar {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--creme);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.hamburger[aria-expanded="true"] .hamburger__bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger[aria-expanded="true"] .hamburger__bar:nth-child(2) {
  opacity: 0;
}

.hamburger[aria-expanded="true"] .hamburger__bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--noir);
}

/* Fond image + overlay */
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg-img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-img-placeholder {
  width: 100%;
  height: 100%;
  background: #1a2530;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-corps);
  font-size: 0.8rem;
  font-weight: 300;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(245, 240, 230, 0.2);
  text-align: center;
  padding: 1rem;
}

.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(15, 25, 35, 0.6);
}

/* Contenu */
.hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  padding: 0 clamp(1.5rem, 5vw, 4rem);
  padding-top: 72px;
}

.hero__eyebrow {
  font-family: var(--font-corps);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--teal);
}

/* Titre hero */
.hero__titre {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  font-family: var(--font-titre);
  color: var(--creme);
  line-height: 1;
}

.hero__titre-top {
  font-size: clamp(1.5rem, 3.5vw, 2.5rem);
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: 0.05em;
}

.hero__titre-main {
  font-size: clamp(4rem, 12vw, 7.5rem);
  font-weight: 900;
  line-height: 0.85;
  letter-spacing: 0.02em;
}

.hero__titre-sub {
  font-family: var(--font-corps);
  font-size: clamp(1.1rem, 2.5vw, 1.75rem);
  font-weight: 300;
  font-style: italic;
  color: var(--gris-clair);
  letter-spacing: 0.08em;
  margin-top: 0.5rem;
}

/* Séparateur */
.hero__separateur {
  width: 80px;
  height: 1px;
  background: var(--teal);
}

/* Tagline */
.hero__tagline {
  font-family: var(--font-corps);
  font-size: 1rem;
  font-weight: 300;
  font-style: italic;
  letter-spacing: 1px;
  color: var(--gris-clair);
  max-width: 480px;
}

/* CTA boutons */
.hero__ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 0.5rem;
}

.btn {
  font-family: var(--font-corps);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 0.85rem 2rem;
  border-radius: 2px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  display: inline-block;
}

.btn--primary {
  background: var(--teal);
  color: var(--noir);
  border-color: var(--teal);
}

.btn--primary:hover {
  background: var(--teal-light);
  border-color: var(--teal-light);
}

.btn--outline {
  background: transparent;
  color: var(--creme);
  border-color: var(--creme);
}

.btn--outline:hover {
  background: var(--creme);
  color: var(--noir);
}

/* Scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

.scroll__chevron {
  display: block;
  width: 24px;
  height: 24px;
  border-right: 2px solid var(--teal);
  border-bottom: 2px solid var(--teal);
  transform: rotate(45deg);
  animation: chevron-bounce 1.6s ease-in-out infinite;
}

@keyframes chevron-bounce {
  0%, 100% { transform: rotate(45deg) translateY(0);   opacity: 1; }
  50%       { transform: rotate(45deg) translateY(6px); opacity: 0.5; }
}

/* ============================================
   SCROLL OFFSET (nav fixe 72px)
   ============================================ */
section[id] {
  scroll-margin-top: 72px;
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.animate {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .animate {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ============================================
   NAVIGATION : ÉTAT ACTIF
   ============================================ */
.navbar__links a.active {
  color: var(--teal);
}

.navbar__links a.active:not(.navbar__cta) {
  position: relative;
}

.navbar__links a.active:not(.navbar__cta)::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--teal);
}

/* ============================================
   UTILITAIRES COMMUNS
   ============================================ */
/*
  Base : teal normal — passe sur fonds sombres (--noir, --teal).
  Sur fonds clairs (--creme, blanc) : surchargé ci-dessous avec --teal-accessible.
*/
.eyebrow {
  font-family: var(--font-corps);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--teal);
}

/* Correction WCAG AA : sections à fond clair */
#carte .eyebrow,
#histoire .eyebrow {
  color: var(--teal-accessible);
}

/* ============================================
   SECTION : LA CARTE
   ============================================ */
#carte {
  background: var(--creme);
  padding: clamp(4rem, 8vw, 7rem) clamp(1.5rem, 5vw, 5rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4rem;
}

/* --- En-tête --- */
.carte__header {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.carte__titre {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: var(--noir);
}

.carte__intro {
  font-size: 1rem;
  font-style: italic;
  color: var(--texte);
  max-width: 600px;
  line-height: 1.7;
}

/* --- Hover : cards formule --- */
.formule-card {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.formule-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  z-index: 1;
}

/* --- Formules (3 cards) --- */
.formules {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  width: 100%;
  max-width: 960px;
  background: var(--noir);
  border-radius: 4px;
  overflow: hidden;
}

.formule-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  padding: 3rem 2rem;
  text-align: center;
  position: relative;
}

.formule-card + .formule-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: rgba(245, 240, 230, 0.12);
}

.formule__nom {
  font-family: var(--font-corps);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--creme);
}

.formule__prix {
  font-family: var(--font-titre);
  font-size: clamp(2rem, 4vw, 2.375rem);
  font-weight: 400;
  color: var(--teal);
  line-height: 1.1;
}

.formule__desc {
  font-size: 0.875rem;
  color: var(--gris-clair);
  line-height: 1.5;
}

/* --- Bloc midi --- */
.midi-bloc {
  width: 100%;
  max-width: 960px;
  background: var(--teal);
  border-radius: 4px;
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.75rem;
  text-align: center;
}

.midi__badge {
  font-family: var(--font-corps);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--noir);
  background: rgba(15, 25, 35, 0.1);
  padding: 0.4rem 1.2rem;
  border-radius: 100px;
}

.midi__tarifs {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.midi__tarif {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
}

.midi__prix {
  font-family: var(--font-titre);
  font-size: clamp(1.75rem, 3.5vw, 2.25rem);
  font-weight: 700;
  color: var(--noir);
  line-height: 1;
}

.midi__label {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--noir);
}

.midi__separateur {
  width: 1px;
  height: 3.5rem;
  background: rgba(15, 25, 35, 0.25);
}

/* --- Sous-blocs bas --- */
.carte__bas {
  width: 100%;
  max-width: 960px;
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 2rem;
  align-items: start;
}

.carte__bas--solo {
  grid-template-columns: 1fr;
  max-width: 440px;
}

/* --- Bloc concept cuisine vivante --- */
.concept-bloc {
  width: 100%;
  max-width: 960px;
  background: var(--noir);
  border-radius: 4px;
  padding: 60px 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}

.concept-bloc__titre {
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  font-style: italic;
  font-weight: 400;
  color: var(--creme);
  line-height: 1.25;
}

.concept-bloc__texte {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--gris-clair);
  max-width: 580px;
}

.concept-bloc__sep {
  width: 60px;
  height: 1px;
  background: var(--teal);
  margin: 0.25rem 0;
}

.concept-bloc__signature {
  font-family: var(--font-accent);
  font-size: 1.375rem;
  color: var(--teal);
}

.concept-bloc__note {
  font-size: 13px;
  font-style: italic;
  color: var(--gris-clair);
  opacity: 0.7;
}

/* Menu Enfant */
.enfant-bloc {
  background: #fff;
  border-left: 4px solid var(--teal);
  padding: 1.75rem 1.5rem;
  border-radius: 0 4px 4px 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.enfant__titre {
  font-family: var(--font-titre);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--noir);
  line-height: 1.4;
}

.enfant__age {
  font-family: var(--font-corps);
  font-size: 0.8rem;
  font-weight: 300;
  color: var(--texte);
}

.enfant__prix {
  color: var(--teal);
}

.enfant__plats {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  padding-left: 0.5rem;
}

.enfant__plats li {
  font-size: 0.9rem;
  color: var(--texte);
  position: relative;
  padding-left: 1rem;
}

.enfant__plats li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--teal);
  font-size: 0.75rem;
  top: 0.1em;
}

.enfant__dessert {
  font-size: 0.875rem;
  color: var(--texte);
  font-weight: 300;
}

/* Placeholder menu du jour */
.placeholder-bloc {
  background: var(--gris-clair);
  border: 1px dashed var(--teal);
  border-radius: 4px;
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.placeholder__ligne {
  font-family: var(--font-corps);
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--texte);
  opacity: 0.7;
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 2px;
  text-align: center;
}

.placeholder__note {
  font-size: 13px;
  font-style: italic;
  color: var(--texte);
  opacity: 0.65;
  text-align: center;
}

/* --- Galerie photos --- */
.galerie-photos {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.galerie-photos__img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
}

.signature-bande {
  background: #E8F0EF;
  padding: 30px 0;
  text-align: center;
}

.signature-manuscrite {
  font-family: var(--font-accent);
  font-size: 26px;
  color: #5B8E8A;
  margin: 0;
}

/* ============================================
   SOUS-SECTION : LES CLASSIQUES
   ============================================ */
.classiques {
  width: 100%;
  max-width: 960px;
  background: #fff;
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* En-tête */
.classiques__header {
  text-align: center;
  padding: 3rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  border-bottom: 1px solid var(--gris-clair);
}

.classiques__titre {
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 700;
  color: var(--noir);
}

.classiques__accroche {
  font-family: var(--font-accent);
  font-size: 1.25rem;
  color: var(--teal);
}

/* Grid deux colonnes */
.classiques__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.classiques__col {
  display: flex;
  flex-direction: column;
}

.classiques__col:first-child {
  border-right: 1px solid var(--gris-clair);
}

/* Catégorie */
.menu-categorie {
  display: flex;
  flex-direction: column;
}

.menu-categorie + .menu-categorie {
  border-top: 2px solid var(--gris-clair);
}

.categorie__header {
  background: var(--teal);
  color: #fff;
  font-family: var(--font-corps);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 0.7rem 1.5rem;
}

/* Items de menu */
.menu-items {
  display: flex;
  flex-direction: column;
  padding: 0.5rem 0;
}

.menu-item {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.65rem 1.5rem;
  border-bottom: 1px solid var(--gris-clair);
}

.menu-item:last-child {
  border-bottom: none;
}

.menu-item:hover {
  background: rgba(91, 142, 138, 0.05);
}

.menu-item__texte {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  flex: 1;
  min-width: 0;
}

.menu-item__nom {
  font-size: 0.9rem;
  color: var(--texte);
}

.menu-item__sous {
  font-size: 0.78rem;
  font-style: italic;
  color: var(--texte);
  opacity: 0.6;
}

.menu-item--titre .menu-item__nom {
  font-weight: 700;
}

.menu-item--note {
  padding-top: 0;
}

.menu-item__prix {
  font-family: var(--font-titre);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--teal);
  white-space: nowrap;
}

/* Variante plateau */
.menu-item--plateau .menu-item__nom {
  font-weight: 300;
  font-style: italic;
  color: var(--texte);
  opacity: 0.8;
}

.categorie__note {
  font-size: 12px;
  font-style: italic;
  color: var(--texte);
  opacity: 0.6;
  padding: 0.75rem 1.5rem 1.25rem;
}

/* Bannière desserts */
.desserts-banniere {
  background: var(--noir);
  padding: 2.25rem 2rem;
  text-align: center;
}

.desserts-banniere__texte {
  font-family: var(--font-titre);
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  font-style: italic;
  font-weight: 400;
  color: var(--creme);
  letter-spacing: 0.02em;
}

/* Grid desserts */
.desserts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: #fff;
}

.dessert-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 1.25rem 1.5rem;
  border-right: 1px solid var(--gris-clair);
  border-bottom: 1px solid var(--gris-clair);
}

.dessert-item:nth-child(3n) {
  border-right: none;
}

.dessert-item:nth-child(7),
.dessert-item:nth-child(8),
.dessert-item:nth-child(9) {
  border-bottom: none;
}

.dessert-item__nom {
  font-size: 0.9rem;
  color: var(--texte);
  line-height: 1.4;
}

.dessert-item__detail {
  font-size: 0.78rem;
  font-style: italic;
  color: var(--teal);
}

.dessert-item--fromage .dessert-item__nom {
  font-weight: 700;
}

.dessert-item__supp {
  font-size: 0.78rem;
  color: var(--rouge);
  font-weight: 700;
}

/* Note régimes */
.classiques__note-regimes {
  font-size: 13px;
  font-style: italic;
  color: var(--texte);
  opacity: 0.7;
  text-align: center;
  line-height: 1.7;
  padding: 1.5rem 2rem 2rem;
  border-top: 1px solid var(--gris-clair);
}

/* ============================================
   SECTION : BOISSONS & APÉRITIFS
   ============================================ */
#boissons {
  background: var(--creme);
  padding-top: 20px;
  padding-right: clamp(1.5rem, 5vw, 5rem);
  padding-bottom: clamp(4rem, 8vw, 7rem);
  padding-left: clamp(1.5rem, 5vw, 5rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
}

#boissons .eyebrow {
  color: var(--teal-accessible);
}

.boissons__header {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.boissons__titre {
  font-family: var(--font-titre);
  font-size: clamp(2rem, 5vw, 44px);
  font-weight: 700;
  color: var(--noir);
}

.boissons__container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  width: 100%;
  max-width: 960px;
}

.boissons__bloc {
  padding: 2rem clamp(1.5rem, 4vw, 2.5rem);
}

.boissons__bloc--blanc {
  background: #fff;
  box-shadow: 0 4px 20px rgba(15, 25, 35, 0.08);
}

.boissons__bloc--sombre {
  background: var(--noir);
  color: var(--creme);
}

.boissons__bloc-titre {
  font-family: var(--font-corps);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 2px;
  color: var(--teal);
  text-align: center;
  margin-bottom: 1.5rem;
}

.boissons__bloc--blanc .boissons__bloc-titre {
  color: var(--teal-accessible);
}

.boissons__deux-col {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem 3rem;
}

.boissons__trois-col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.boissons__liste {
  display: flex;
  flex-direction: column;
}

.boissons__item {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--gris-clair);
  font-size: 0.9rem;
}

.boissons__item:last-child {
  border-bottom: none;
}

.boissons__bloc--sombre .boissons__item {
  border-bottom-color: rgba(245, 240, 230, 0.15);
}

.boissons__nom {
  flex: 1;
  min-width: 0;
}

.boissons__prix {
  font-family: var(--font-titre);
  font-weight: 700;
  color: var(--teal-accessible);
  white-space: nowrap;
}

.boissons__bloc--sombre .boissons__prix {
  color: var(--teal);
}

.boissons__categorie {
  font-family: var(--font-corps);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.72rem;
  letter-spacing: 1.5px;
  color: var(--teal);
  opacity: 0.7;
  margin-bottom: 0.35rem;
}

.boissons__sous-titre {
  font-family: var(--font-titre);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--creme);
  margin-bottom: 0.25rem;
}

.boissons__sous-adresse {
  font-size: 0.78rem;
  font-style: italic;
  color: var(--creme);
  opacity: 0.6;
  margin-bottom: 1rem;
}

.boissons__biere-table {
  display: flex;
  flex-direction: column;
}

.boissons__biere-row {
  display: grid;
  grid-template-columns: 1fr repeat(3, 56px);
  gap: 0.5rem;
  align-items: baseline;
  padding: 0.55rem 0;
  border-bottom: 1px solid rgba(245, 240, 230, 0.15);
  font-size: 0.9rem;
}

.boissons__biere-row:last-child {
  border-bottom: none;
}

.boissons__biere-row span:not(:first-child) {
  text-align: right;
}

.boissons__biere-row--header {
  font-family: var(--font-corps);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.7rem;
  letter-spacing: 1px;
  color: var(--teal);
  opacity: 0.7;
  border-bottom: none;
  padding-bottom: 0.35rem;
}

.boissons__col-titre {
  font-family: var(--font-corps);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 1px;
  color: var(--teal-accessible);
  text-align: center;
  margin-bottom: 0.75rem;
}

.boissons__col-sous {
  font-size: 0.75rem;
  font-style: italic;
  color: var(--texte);
  opacity: 0.6;
  text-align: center;
  margin-top: -0.25rem;
  margin-bottom: 0.75rem;
}

.boissons__bandeau-cafe {
  background: var(--teal);
  padding: 1.75rem 2rem;
  text-align: center;
}

.boissons__bandeau-titre {
  font-family: var(--font-corps);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 2px;
  color: var(--noir);
  margin-bottom: 1rem;
}

.boissons__cafe-liste {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem 2.5rem;
}

.boissons__cafe-nom {
  font-family: var(--font-corps);
  font-weight: 700;
  color: var(--noir);
  margin-right: 0.5rem;
}

.boissons__cafe-prix {
  font-family: var(--font-titre);
  font-weight: 700;
  color: var(--noir);
}

.boissons__cafe-item {
  flex-basis: 100%;
}

.boissons__cafe-sous {
  font-size: 0.75rem;
  font-style: italic;
  color: var(--noir);
  opacity: 0.7;
  margin-top: 0.35rem;
}

/* ============================================
   SECTION : LA CAVE
   ============================================ */
#cave {
  background: var(--noir);
  padding: clamp(4rem, 8vw, 7rem) clamp(1.5rem, 5vw, 5rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3.5rem;
}

/* En-tête */
.cave__header {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.cave__titre {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: var(--creme);
}

.cave__intro {
  font-size: 1rem;
  font-style: italic;
  color: var(--gris-clair);
  max-width: 560px;
  line-height: 1.7;
}

.cave__note {
  font-size: 0.78rem;
  font-style: italic;
  color: var(--teal);
  opacity: 0.8;
  max-width: 520px;
  line-height: 1.7;
  letter-spacing: 0.01em;
}

/* ── Carte des vins en bouteilles ── */
.cave__vins {
  width: 100%;
  max-width: 900px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.cave__color {
  padding: 2.5rem 0;
  border-top: 1px solid rgba(91, 142, 138, 0.2);
}

.cave__color:first-child {
  border-top: none;
  padding-top: 0;
}

.cave__color-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0;
  flex-wrap: wrap;
  width: 100%;
  background: none;
  border: none;
  border-bottom: 1px solid rgba(91, 142, 138, 0.2);
  padding: 1.1rem 0;
  cursor: pointer;
  text-align: left;
  transition: opacity 0.2s ease;
}

.cave__color-header:hover {
  opacity: 0.8;
}

.cave__accordion-chevron {
  margin-left: auto;
  width: 18px;
  height: 18px;
  border-right: 2px solid var(--teal);
  border-bottom: 2px solid var(--teal);
  transform: rotate(45deg);
  transition: transform 0.35s ease;
  flex-shrink: 0;
  position: relative;
  top: -3px;
}

.cave__color.is-open .cave__accordion-chevron {
  transform: rotate(-135deg);
  top: 3px;
}

.cave__accordion-panel {
  overflow: hidden;
  transition: max-height 0.45s ease;
}

.cave__color:not(.is-open) .cave__accordion-panel {
  max-height: 0 !important;
}

.cave__wine-regions {
  margin-top: 1.75rem;
}

.cave__color-emoji {
  font-size: 1.2rem;
  line-height: 1;
}

.cave__color-titre {
  font-family: var(--font-titre);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--creme);
  letter-spacing: 0.03em;
}

.cave__color-legende {
  font-size: 0.7rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--teal);
  opacity: 0.7;
  margin-left: auto;
}

.cave__wine-regions {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem 3rem;
}

.cave__wine-regions--small {
  grid-template-columns: 1fr;
  max-width: 400px;
}

.cave__wine-region {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.cave__wine-region-name {
  font-family: var(--font-corps);
  font-weight: 700;
  font-size: 0.65rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--teal);
  padding-bottom: 0.4rem;
  margin-bottom: 0.4rem;
  border-bottom: 1px solid rgba(91, 142, 138, 0.25);
}

.cave__wine {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.45rem 0;
  border-bottom: 1px dotted rgba(245, 240, 230, 0.08);
}

.cave__wine:last-child {
  border-bottom: none;
}

.cave__wine-info {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  flex: 1;
  min-width: 0;
}

.cave__wine-nom {
  font-size: 0.82rem;
  color: var(--creme);
  line-height: 1.35;
}

.cave__wine-prod {
  font-size: 0.7rem;
  font-style: italic;
  color: var(--gris-clair);
  opacity: 0.55;
}

.cave__wine-bio {
  display: inline-block;
  font-size: 0.6rem;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #7AB0AC;
  background: rgba(91, 142, 138, 0.15);
  padding: 1px 5px;
  border-radius: 2px;
  vertical-align: middle;
  margin-left: 3px;
}

.cave__wine-prix-cell {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.1rem;
  flex-shrink: 0;
}

.cave__wine-prix {
  font-family: var(--font-titre);
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--teal);
  white-space: nowrap;
}

.cave__wine-prix--nous-consulter {
  font-family: var(--font-corps);
  font-size: 0.7rem;
  font-style: italic;
  font-weight: 400;
  color: var(--gris-clair);
  opacity: 0.5;
}

.cave__wine-demi {
  font-size: 0.65rem;
  color: var(--gris-clair);
  opacity: 0.45;
  white-space: nowrap;
}

.cave__wine-demi em {
  font-style: normal;
}

/* Grid 4 catégories "Au Verre" */
.cave__categories {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  width: 100%;
  max-width: 900px;
}

.cave-card__prix-multi {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.1rem;
  flex-shrink: 0;
}

.cave-card__prix-verre {
  font-size: 0.7rem;
  color: var(--gris-clair);
  opacity: 0.55;
  white-space: nowrap;
}

.cave-card__prix-verre em {
  font-style: italic;
}

.cave-card {
  background: #1F2D36;
  border-top: 3px solid var(--teal);
  border-radius: 0 0 4px 4px;
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  transition: background 0.2s ease;
}

.cave-card:hover {
  background: #253642;
}

.cave-card__emoji {
  font-size: 1.5rem;
  line-height: 1;
  margin-bottom: 0.25rem;
}

.cave-card__titre {
  font-family: var(--font-corps);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--creme);
}

.cave-card__sous {
  font-size: 0.8rem;
  color: var(--gris-clair);
  font-weight: 300;
}

.cave-card__ph {
  font-size: 13px;
  font-style: italic;
  color: var(--gris-clair);
  opacity: 0.5;
  margin-top: 0.5rem;
}

.cave-card__liste {
  display: flex;
  flex-direction: column;
  margin-top: 0.75rem;
}

.cave-card__item {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(245, 240, 230, 0.1);
  font-size: 0.85rem;
}

.cave-card__item:last-child {
  border-bottom: none;
}

.cave-card__texte {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  flex: 1;
  min-width: 0;
}

.cave-card__nom {
  color: var(--creme);
}

.cave-card__sous-item {
  font-size: 0.72rem;
  font-style: italic;
  color: var(--gris-clair);
  opacity: 0.6;
}

.cave-card__prix {
  font-family: var(--font-titre);
  font-weight: 700;
  color: var(--teal);
  white-space: nowrap;
}

/* Citation */
.cave__citation {
  font-family: var(--font-corps);
  font-size: 13px;
  font-style: italic;
  color: var(--teal);
  text-align: center;
  letter-spacing: 0.02em;
}

/* ============================================
   SECTION : NOTRE HISTOIRE
   ============================================ */
#histoire {
  background: var(--creme);
  padding: clamp(4rem, 8vw, 7rem) clamp(1.5rem, 5vw, 5rem);
}

.histoire__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: start;
}

/* --- Colonne photos --- */
.histoire__media {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.histoire-carousel {
  position: relative;
  width: 100%;
  height: 700px;
  border-radius: 2px;
  overflow: hidden;
}

.histoire-carousel__viewport {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.histoire-carousel__track {
  display: flex;
  flex-direction: row;
  height: 100%;
}

.histoire-carousel__img {
  flex: 0 0 100%;
  width: 100%;
  height: 700px;
  object-fit: cover;
  display: block;
}

.histoire-carousel__arrow {
  position: absolute;
  left: 10px;
  right: 10px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: rgba(15, 25, 35, 0.45);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease;
  z-index: 2;
  top: 50%;
  transform: translateY(-50%);
}

.histoire-carousel__arrow:hover,
.histoire-carousel__arrow:focus-visible {
  background: var(--teal);
}

.histoire-carousel__arrow--prev {
  left: 10px;
  right: auto;
}

.histoire-carousel__arrow--next {
  right: 10px;
  left: auto;
}

.histoire-carousel__dots {
  position: absolute;
  bottom: 14px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 7px;
  z-index: 2;
}

.histoire-carousel__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  border: none;
  padding: 0;
  background: rgba(91, 142, 138, 0.45);
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.histoire-carousel__dot.is-active {
  background: #5B8E8A;
  transform: scale(1.3);
}

/* --- Colonne texte --- */
.histoire__texte {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding-top: 0.5rem;
}

.histoire__titre {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  color: var(--noir);
  line-height: 1.2;
}

.histoire__para {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--texte);
}

.histoire__citation {
  background: var(--noir);
  border-left: 4px solid var(--teal);
  padding: 1.75rem 2rem;
  border-radius: 0 2px 2px 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.citation__label {
  font-family: var(--font-corps);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--teal);
}

.citation__regles {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.citation__regles li {
  font-family: var(--font-titre);
  font-size: 1.125rem;
  font-style: italic;
  font-weight: 400;
  color: var(--creme);
  line-height: 2;
}

/* Informations pratiques */
.histoire__infos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem 1.5rem;
  border-top: 1px solid var(--gris-clair);
  padding-top: 1.5rem;
  margin-top: 0.5rem;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
}

.info-item__icone {
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 0.1em;
  line-height: 1.6;
}

.info-item__texte {
  font-size: 0.875rem;
  color: var(--texte);
  line-height: 1.6;
}

.info-item__texte em {
  font-style: italic;
  opacity: 0.7;
}

.info-item__lien {
  transition: color 0.2s ease;
}

.info-item__lien:hover {
  color: var(--teal);
}

/* ============================================
   SECTION : RÉSERVATION
   ============================================ */
#reservation {
  background: var(--teal);
  padding: clamp(4rem, 8vw, 7rem) clamp(1.5rem, 5vw, 5rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3.5rem;
}

.resa__header {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

/* opacity: 1 — --noir sur --teal atteint 4.96:1, WCAG AA ✓ */
.resa__eyebrow {
  font-family: var(--font-corps);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--noir);
}

.resa__titre {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: var(--noir);
}

.resa__intro {
  font-size: 1rem;
  color: var(--noir);
  line-height: 1.7;
  max-width: 500px;
}

.resa__options {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 1.5rem;
  width: 100%;
  max-width: 900px;
  align-items: start;
}

/* Cards */
.resa-card {
  background: #fff;
  border-radius: 4px;
  box-shadow: 0 4px 24px rgba(15, 25, 35, 0.12);
  padding: 2.25rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.resa-card__icone {
  font-size: 1.75rem;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.resa-card__label {
  font-family: var(--font-corps);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--texte);
  opacity: 0.7;
}

.resa-card__numero {
  font-family: var(--font-titre);
  font-size: clamp(1.5rem, 3vw, 1.75rem);
  font-weight: 700;
  color: var(--teal);
  line-height: 1.1;
  transition: color 0.2s ease;
}

.resa-card__numero:hover {
  color: var(--noir);
}

.resa-card__note {
  font-size: 13px;
  font-style: italic;
  color: var(--texte);
  opacity: 0.6;
  margin-top: 0.25rem;
}

/* Formulaire de réservation */
.resa-card--form {
  padding: 40px;
  border-radius: 4px;
  gap: 0;
}

.resa-form {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  width: 100%;
}

.resa-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem;
}

.resa-form__field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.resa-form__field label {
  font-family: var(--font-corps);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #0F1923;
}

.resa-form__field input,
.resa-form__field select,
.resa-form__field textarea {
  border: 1px solid #D8D0C4;
  border-radius: 2px;
  padding: 12px;
  font-family: var(--font-corps);
  font-size: 0.9rem;
  color: var(--texte);
  background: #fff;
  width: 100%;
}

.resa-form__field textarea {
  resize: vertical;
}

.resa-form__field input:focus,
.resa-form__field select:focus,
.resa-form__field textarea:focus {
  outline: none;
  border-color: #5B8E8A;
}

.resa-form__btn {
  background: #5B8E8A;
  color: #fff;
  border: none;
  border-radius: 2px;
  padding: 16px 40px;
  font-family: var(--font-corps);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  width: 100%;
  margin-top: 0.25rem;
  transition: background 0.2s ease;
}

.resa-form__btn:hover {
  background: var(--noir);
}

.resa-form__rgpd {
  font-size: 0.72rem;
  color: var(--texte);
  opacity: 0.5;
  margin-top: 0.75rem;
  line-height: 1.5;
}

.resa-form__notice {
  font-size: 0.78rem;
  line-height: 1.65;
  color: var(--texte);
  opacity: 0.75;
  margin-top: 1rem;
  padding: 0.85rem 1rem;
  border-left: 3px solid var(--teal);
  background: rgba(91, 142, 138, 0.07);
  border-radius: 0 2px 2px 0;
}

.resa-form__notice strong {
  color: var(--noir);
  opacity: 1;
  font-weight: 700;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--noir);
  color: var(--creme);
  padding: clamp(3rem, 6vw, 5rem) clamp(1.5rem, 5vw, 5rem) 0;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

/* Logo + tagline */
.footer__top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  text-align: center;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(245, 240, 230, 0.1);
}

.footer__logo {
  font-family: var(--font-titre);
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--creme);
  letter-spacing: 0.08em;
}

.footer__tagline {
  font-size: 13px;
  font-style: italic;
  color: var(--gris-clair);
  opacity: 0.7;
}

/* Trois colonnes */
.footer__cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
}

.footer__col-titre {
  font-family: var(--font-corps);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 1rem;
}

.footer__adresse {
  font-style: normal;
  font-size: 0.875rem;
  color: var(--gris-clair);
  line-height: 1.8;
  opacity: 0.8;
}

.footer__adresse a {
  transition: color 0.2s ease;
}

.footer__adresse a:hover {
  color: var(--teal-light);
}

.footer__horaires {
  font-size: 0.875rem;
  color: var(--gris-clair);
  line-height: 1.8;
  opacity: 0.8;
}

.footer__horaires em {
  font-style: italic;
  opacity: 0.6;
}

/* Réseaux sociaux */
.footer__socials {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--gris-clair);
  opacity: 0.8;
  font-size: 0.875rem;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.social-link:hover {
  color: var(--teal-light);
  opacity: 1;
}

/* Copyright */
.footer__bottom {
  border-top: 1px solid rgba(245, 240, 230, 0.08);
  padding: 1.25rem 0;
  text-align: center;
}

.footer__bottom p {
  font-size: 12px;
  color: var(--gris-clair);
  opacity: 0.4;
  letter-spacing: 0.03em;
}

.footer__credit-link {
  color: #5B8E8A;
  text-decoration: none;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {

  /* Galerie photos */
  .galerie-photos {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Boissons */
  .boissons__deux-col,
  .boissons__trois-col {
    grid-template-columns: 1fr;
    gap: 0.5rem 0;
  }

  .boissons__trois-col > div {
    margin-bottom: 1.5rem;
  }

  .boissons__trois-col > div:last-child {
    margin-bottom: 0;
  }

  /* Nav mobile */
  .hamburger {
    display: flex;
  }

  .navbar__links {
    position: fixed;
    inset: 72px 0 0 0;
    background: var(--noir);
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
  }

  .navbar__links.open {
    opacity: 1;
    pointer-events: auto;
  }

  .navbar__links a {
    font-size: 1.1rem;
    letter-spacing: 3px;
  }

  .navbar__cta {
    padding: 0.75rem 2rem !important;
  }

  /* Carte */
  .formules {
    grid-template-columns: 1fr;
  }

  .formule-card + .formule-card::before {
    left: 20%;
    top: 0;
    width: 60%;
    height: 1px;
  }

  .carte__bas {
    grid-template-columns: 1fr;
  }

  .midi__separateur {
    display: none;
  }

  /* Classiques */
  .classiques__grid {
    grid-template-columns: 1fr;
  }

  .classiques__col:first-child {
    border-right: none;
    border-bottom: 2px solid var(--gris-clair);
  }

  .desserts-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .dessert-item:nth-child(3n) {
    border-right: 1px solid var(--gris-clair);
  }

  .dessert-item:nth-child(2n) {
    border-right: none;
  }

  .dessert-item:nth-child(9) {
    border-bottom: none;
  }

  /* Cave */
  .cave__categories {
    grid-template-columns: 1fr;
  }

  .cave__wine-regions {
    grid-template-columns: 1fr;
  }

  .cave__color-legende {
    margin-left: 0;
    width: 100%;
  }

  /* Histoire */
  .histoire__inner {
    grid-template-columns: 1fr;
  }

  .histoire__infos {
    grid-template-columns: 1fr;
  }

  /* Hero mobile */
  .hero__titre-main {
    font-size: 72px;
  }

  /* Réservation */
  .resa__options {
    grid-template-columns: 1fr;
  }

  .resa-form__row {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .footer__cols {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer__socials {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1.25rem;
  }
}
