/* ==========================================================================
   LE T - STYLES MATIÈRE, DENSITÉ & VECTEURS
   ========================================================================== */

@font-face {
  font-family: 'Isidorus';
  src: url('./Police/LaTrappe-Isidorus_1.001/webfonts/Isidorus-Regular.woff2') format('woff2'),
       url('./Police/LaTrappe-Isidorus_1.001/webfonts/Isidorus-Regular.woff') format('woff'),
       url('./Police/LaTrappe-Isidorus_1.001/Isidorus-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* Isidorus utilisée UNIQUEMENT pour les éléments identitaires majeurs.
   Fallback : Cinzel (déjà chargée), puis Georgia. */

:root {
  --c-dark: #070707;       /* Noir encore plus profond */
  --c-wood: #140E0C;       /* Bois bruni extrême */
  --c-copper: #A35A2A;     /* Cuivre ancien — bordures, séparateurs, décor */
  --c-copper-txt: #C97C48; /* Cuivre éclairci pour le TEXTE (contraste AA sur fond sombre) */
  --c-gold: #B4945A;       /* Doré passé */
  --c-text: #DED8C9;       /* Texte parchemin clair */
  --c-mut: #8F877A;
  --c-glass-red: #3A0A0A;  /* Rouge sombre vitrail */
  --c-glass-blue: #0A152A; /* Bleu crépuscule vitrail */
  --c-glass-amber: #4A300A; /* Ambre vitrail */
  
  --font-disp: 'Isidorus', 'Cinzel', Georgia, serif;   /* Titres identitaires */
  --font-title: 'Cinzel', Georgia, serif;               /* Titres secondaires */
  --font-text: 'Inter', sans-serif;                     /* Micro-libellés UI (nav, prix, badges) */
  --font-serif: 'Spectral', Georgia, serif;             /* Corps éditorial (hero, descriptions, accroches) */

  /* Densité architecturale */
  --shadow-heavy: 0 25px 50px rgba(0,0,0,0.9);
  --border-metal: 1px solid rgba(180, 148, 90, 0.15);
  --border-light: 1px solid rgba(255, 255, 255, 0.03);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

/* ── Scroll fluide (UX Pro Max : Smooth Scroll) ── */
html { scroll-behavior: smooth; }

body {
  background-color: var(--c-dark);
  color: var(--c-text);
  font-family: var(--font-text);
  line-height: 1.6;
  overflow-x: hidden;
  /* text-wrap est hérité → anti-orphelins sur TOUT le texte du site, toutes pages.
     Les blocs courts sont passés en balance plus bas. */
  text-wrap: pretty;
}

body.locked { overflow-y: hidden; }

/* ── Cursor pointer global sur tous les éléments interactifs (UX Pro Max) ── */
a, button, [role="button"],
.selection-card, .menu-accordion-trigger, .selector-trigger,
.selector-options li, .cheese-piece, .crypt-card,
.door-wrapper, .btn-primary, .btn-copper, .nav-links a,
.fut-category, .bottle-list li { cursor: pointer; }

/* ── Focus visible (Accessibilité CRITICAL) ── */
:focus-visible {
  outline: 2px solid var(--c-gold);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ── Respect prefers-reduced-motion (UX Pro Max : Motion Sensitivity HIGH) ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}

/* display:none empêche le chargement des images — on utilise visibility à la place */
.hidden { opacity: 0 !important; pointer-events: none !important; }

/* Seuls les grands titres identitaires (Le T, sections) utilisent Isidorus */
.main-title, .section-display, .footer-title { font-family: var(--font-disp); font-weight: 400; }
/* Titres secondaires et corps de texte : lisibilité optimale */
h1, h2, h3, h4, .page-title, .menu-subhead, .card-overlay h3 { font-family: var(--font-title); font-weight: 500; }

a { text-decoration: none; color: inherit; }

/* Texture assombrie et purement structurelle */
.texture-overlay {
  position: fixed; inset: 0; z-index: 100; pointer-events: none; opacity: 0.08;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}

/* ==========================================================================
   1. LE LOGO (Intégration via filtres CSS)
   ========================================================================== */
/* Logo fixe dans la navigation */
.logo-fixed {
  height: 48px;
  width: auto;
  display: block;
  object-fit: contain;
  filter: none;
}

/* Logo central sur l'écran d'entrée */
.real-logo {
  height: 300px;
  width: auto;
  display: block;
  object-fit: contain;
  filter: none;
  opacity: 0; /* état initial pour l'animation GSAP */
  border-radius: 4px;
  will-change: opacity, transform;
}

.brand-gate-logo {
  height: 280px; /* Taille optimisée pour bien mettre en valeur le logo nouveau */
  margin: 0 auto;
  filter: drop-shadow(0 0 20px rgba(0,0,0,0.8)); /* Légère ombre pour le détacher */
}
/* Porte : logo adapté aux petits écrans (280px avalait tout l'écran) */
@media (max-width: 600px) {
  .brand-gate-logo, .real-logo { height: clamp(160px, 48vw, 240px); max-width: 80vw; }
}

/* Indice d'interaction sous le logo de la porte */
.gate-hint {
  display: block;
  margin-top: 1.4rem;
  text-align: center;
  font-family: var(--font-title);
  font-size: 0.72rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--c-gold);
  opacity: 0;
  animation: gateHintPulse 2.6s ease-in-out 1.2s infinite;
  pointer-events: none;
}
@keyframes gateHintPulse {
  0%, 100% { opacity: 0.35; }
  50%      { opacity: 0.9; }
}
@media (prefers-reduced-motion: reduce) {
  .gate-hint { animation: none; opacity: 0.7; }
}

/* Focus clavier visible partout (liseré doré), sans polluer le clic souris */
:focus-visible {
  outline: 2px solid var(--c-gold);
  outline-offset: 3px;
  border-radius: 2px;
}

/* <strong> : poids 600 (chargé) au lieu du 700 synthétisé par le navigateur */
strong, b { font-weight: 600; }

/* Supprimé : plus de blend/filtre sur les logos */
.logo-blend { filter: none; }

.nav-logo img {
  height: 60px;
}

/* ==========================================================================
   2. L'ENTRÉE (La Porte avec le vrai fond)
   ========================================================================== */
.gate {
  position: fixed; inset: 0; z-index: 1000;
  background: transparent;
  display: flex; justify-content: center; align-items: center;
  pointer-events: none;
}

.door-wrapper {
  position: relative;
  cursor: pointer;
  width: 100vw;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: auto; /* Active le clic malgré le pointeur events none du parent */
}

.door-container {
  width: 100%; height: 100%;
  position: relative;
  display: flex; justify-content: center; align-items: center;
  overflow: hidden;
  perspective: 1200px; /* Profondeur 3D */
  transform-style: preserve-3d;
}

.door-half {
  position: absolute;
  top: 0;
  width: 50%; height: 100%;
  overflow: hidden;
  z-index: 1;
  transform-style: preserve-3d;
}

.door-half::before {
  content: "";
  position: absolute;
  top: 0; width: 100vw; height: 100vh;
  background-image: linear-gradient(rgba(4, 4, 4, 0.8), rgba(4, 4, 4, 0.95)), url('Images/Image entrée a animer (entrée du site).jpeg');
  background-size: cover;
  background-position: center;
  z-index: 1;
}

.door-shadow {
  position: absolute;
  inset: 0;
  background: black;
  opacity: 0;
  z-index: 2; /* Au-dessus de l'image de la porte pour simuler la pénombre */
}

.left-half {
  left: 0;
  border-right: 2px solid rgba(0,0,0,0.9);
  box-shadow: 15px 0 40px rgba(0,0,0,0.95);
  transform-origin: left center;
}
.left-half::before { left: 0; }

.right-half {
  right: 0;
  border-left: 2px solid rgba(0,0,0,0.9);
  transform-origin: right center;
}
.right-half::before { right: 0; }

/* ==========================================================================
   2b. HERO BACKGROUND (section Le Lieu)
   ========================================================================== */
.std-section.intro-section {
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 0;
  overflow: hidden;
}

.hero-bg::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(135deg, rgba(10,5,0,0.72) 0%, rgba(20,10,0,0.45) 50%, rgba(10,5,0,0.78) 100%);
  z-index: 1;
}

.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.8) saturate(0.85);
}

.intro-text-wrapper {
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(180,148,90,0.15);
  border-left: 3px solid var(--c-copper);
  padding: 40px 48px;
  border-radius: 4px;
  max-width: 680px;
  margin: 0 auto;
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  box-shadow: 0 8px 40px rgba(0,0,0,0.6), inset 0 1px 0 rgba(255,255,255,0.05);
}

.logo-t-wrapper {
  position: relative;
  z-index: 2;
  text-align: center;
  display: flex; flex-direction: column; align-items: center;
  gap: 2rem;
}

/* ==========================================================================
   3. LE SÉPARATEUR
   ========================================================================== */
.separator-center {
  width: 80px; height: 3px;
  background: var(--c-copper);
  margin: 0 auto 3rem auto;
  opacity: 0.8;
  box-shadow: 0 0 10px rgba(163, 90, 42, 0.4);
}

/* ==========================================================================
   4. LA NAVIGATION
   ========================================================================== */
.main-nav {
  position: fixed; top: 0; width: 100%; padding: 1.5rem 0; z-index: 500;
  transition: background 0.4s ease, padding 0.4s ease, border 0.4s ease, backdrop-filter 0.4s ease;
  border-bottom: 2px solid transparent;
  background: rgba(0,0,0,0.4);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.main-nav.scrolled {
  background: rgba(7, 7, 7, 0.98);
  padding: 1rem 0;
  /* Rappel discret du vitrail en bordure de nav */
  border-bottom: 2px solid transparent;
  border-image: linear-gradient(90deg, transparent, rgba(74, 48, 10, 0.3), rgba(10, 21, 42, 0.3), transparent) 1;
}

.nav-container {
  max-width: 1300px; margin: 0 auto; padding: 0 5vw;
  display: flex; justify-content: space-between; align-items: center;
}

.nav-links { display: flex; list-style: none; gap: 1.6rem; }
.nav-links a {
  color: #f5f1e8; font-size: 0.8rem; text-transform: uppercase;
  letter-spacing: 0.09rem; transition: color 0.3s ease;
  position: relative; white-space: nowrap;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -6px; left: 0; width: 0; height: 1px; background: var(--c-gold); transition: width 0.3s ease;
}
.nav-links a:hover::after { width: 100%; }
.nav-links a:hover { color: var(--c-gold); }
.nav-links a.nav-active { color: var(--c-gold); }
.nav-links a.nav-active::after { width: 100%; }

/* ==========================================================================
   5. SECTIONS & DENSIFICATION
   ========================================================================== */
.std-section { padding: 9vh 0; position: relative; }
.bg-wood {
  background-color: var(--c-wood);
  border-top: var(--border-light);
  border-bottom: var(--border-light);
}
.container { max-width: 1200px; margin: 0 auto; padding: 0 5vw; }
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }
.mt-4 { margin-top: 4rem; }
.mb-3 { margin-bottom: 1.5rem; }

.main-title { font-size: clamp(5rem, 10vw, 8rem); letter-spacing: 0.08rem; color: #f5f1e8; margin-bottom: 0; text-shadow: 0 10px 30px rgba(0,0,0,0.7); line-height: 1; }
.sub-title { font-family: var(--font-text); font-size: 1.5rem; font-weight: 300; opacity: 0.8; color: #f5f1e8; margin-bottom: 3rem; }

/* Hero separator & typography */
.separator-hero {
  width: 48px; height: 2px;
  background: var(--c-copper);
  margin: 1rem 0 1.4rem 0;
  opacity: 0.9;
  box-shadow: 0 0 8px rgba(163,90,42,0.5);
}
.hero-tagline {
  font-family: var(--font-title);
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-copper);
  margin-bottom: 1.4rem;
  opacity: 0.95;
}
/* Sous-tagline doré « Votre rendez-vous Trappiste » */
.hero-tagline-gold {
  color: var(--c-gold);
  font-size: 0.9rem;
  letter-spacing: 0.22em;
}
.hero-desc {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 400;
  line-height: 1.8;
  color: rgba(245,241,232,0.85);
  margin-bottom: 2.4rem;
  text-wrap: balance;
}

.section-display {
  font-size: 3.5rem; color: var(--c-copper); margin-bottom: 3.5rem;
  text-shadow: 0 5px 15px rgba(0,0,0,0.9);
  text-wrap: balance;
}

.lead-text {
  font-family: var(--font-serif);
  font-size: 1.15rem; color: rgba(255,255,255,0.85); max-width: 700px; line-height: 1.8;
  text-wrap: balance;
}

/* Texte éditorial (la « voix » du site) en serif Spectral.
   Les titres (Cinzel/Isidorus) et micro-libellés UI (Inter) restent inchangés. */
.manifesto-text p, .mi-desc, .event-desc, .crypt-sub, .crypt-lead,
.apropos-desc, .cheese-desc, .glass-gallery-desc, .softs-note,
.selector-notes-text, .aroma-dyn, .product-info p {
  font-family: var(--font-serif);
}

.btn-primary {
  display: inline-block;
  color: var(--c-gold);
  background: transparent;
  white-space: nowrap;
  padding: 12px 28px;
  border: 1px solid rgba(180, 148, 90, 0.4);
  border-radius: 4px;
  font-family: var(--font-title);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15rem;
  margin-top: 2rem;
  transition: all 0.5s ease;
  position: relative;
  overflow: hidden;
}
.btn-primary::before {
  content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(180, 148, 90, 0.08);
  transform: scaleY(0); transform-origin: bottom; transition: transform 0.5s ease; z-index: -1;
}
.btn-primary:hover {
  border-color: var(--c-gold);
  box-shadow: 0 5px 20px rgba(180, 148, 90, 0.15);
  transform: translateY(-2px);
}
.btn-primary:active { transform: translateY(0); }
.btn-primary:hover::before { transform: scaleY(1); }

.intro-section { padding-top: 22vh; }

/* ==========================================================================
   6. LA SÉLECTION (Grille Lourde, Premium)
   ========================================================================== */
.selection-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5vw;
}

.selection-card {
  display: block; position: relative; height: 450px; overflow: hidden;
  border: var(--border-metal);
  box-shadow: var(--shadow-heavy);
  background: #000;
}

.card-img-container { width: 100%; height: 100%; position: relative; }
.card-img-container img {
  width: 100%; height: 100%; object-fit: cover;
  object-position: center center;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  filter: contrast(1.1) brightness(0.85) sepia(0.15);
  opacity: 0.9;
}

.selection-card:hover .card-img-container img {
  transform: scale(1.08);
  opacity: 1;
  filter: contrast(1.1) brightness(1) sepia(0);
}

.card-overlay {
  position: absolute; inset: 0;
  /* Gradient lourd du bas vers le haut */
  background: linear-gradient(to top, rgba(7,7,7,1) 0%, rgba(7,7,7,0.4) 40%, rgba(7,7,7,0) 100%);
  display: flex; align-items: flex-end; justify-content: flex-start;
  padding: 3rem;
  transition: background 0.4s ease;
}

.selection-card:hover .card-overlay {
  background: linear-gradient(to top, rgba(163, 90, 42, 0.8) 0%, rgba(7,7,7,0.5) 50%, rgba(7,7,7,0) 100%);
}

.card-overlay h3 {
  font-size: 2.2rem; color: var(--c-gold);
  text-transform: uppercase; letter-spacing: 0.15rem;
  text-shadow: 0 5px 15px rgba(0,0,0,0.9);
  transition: color 0.4s ease;
}

.selection-card:hover .card-overlay h3 { color: #fff; }
.selection-card:hover { transform: translateY(-5px); box-shadow: 0 24px 48px rgba(163,90,42,0.18); }
.selection-card { transition: transform 0.5s cubic-bezier(0.25,0.46,0.45,0.94), box-shadow 0.5s ease; }

/* Sur écran tactile : neutraliser les effets :hover qui "collent" au doigt
   et font sauter les images quand on scrolle dans la sélection. */
@media (hover: none) {
  .selection-card { transition: none; }
  .selection-card:hover { transform: none; box-shadow: var(--shadow-heavy); }
  .selection-card:hover .card-img-container img {
    transform: none;
    opacity: 0.9;
    filter: contrast(1.1) brightness(0.85) sepia(0.15);
  }
  .selection-card:hover .card-overlay {
    background: linear-gradient(to top, rgba(7,7,7,1) 0%, rgba(7,7,7,0.4) 40%, rgba(7,7,7,0) 100%);
  }
  .selection-card:hover .card-overlay h3 { color: var(--c-gold); }
}

/* ==========================================================================
   7. LA CARTE (Listes lisibles et denses)
   ========================================================================== */
.menu-functional { max-width: 900px; margin: 0 auto; }
.menu-category-full { margin-bottom: 4rem; }

.menu-subhead {
  font-size: 2rem; color: var(--c-gold);
  border-bottom: var(--border-metal); padding-bottom: 0.8rem; margin-bottom: 2.5rem;
}

.menu-item-row {
  display: flex; align-items: baseline; margin-bottom: 2rem;
  transition: padding-left 0.3s ease;
}
.menu-item-row:hover { padding-left: 0.8rem; }

.mi-info { display: flex; flex-direction: column; }
.mi-name { font-family: var(--font-title); font-size: 1.05rem; letter-spacing: 0.04em; color: var(--c-copper-txt); }
.mi-desc { font-size: 1rem; color: var(--c-mut); margin-top: 0.3rem; }
/* Petite vignette photo sous un plat (ex. Le T phémère) */
.mi-photo {
  display: block;
  width: 96px; height: 96px;
  object-fit: cover;
  border-radius: 4px;
  margin-top: 0.7rem;
  border: 1px solid rgba(180,148,90,0.25);
  box-shadow: 0 4px 14px rgba(0,0,0,0.5);
}

.mi-dots {
  flex-grow: 1; border-bottom: 1px dotted rgba(255,255,255,0.15);
  margin: 0 1.5rem; position: relative; top: -6px;
}
.mi-price { font-size: 1.35rem; font-family: var(--font-text); color: var(--c-text); font-weight: 500; }

.visual-divider {
  margin-top: 6rem; height: 500px; border: var(--border-light); overflow: hidden;
  box-shadow: var(--shadow-heavy);
}
.styled-img {
  width: 100%; height: 100%; object-fit: cover;
  filter: contrast(1.15) brightness(0.7) sepia(0.1);
}

/* ==========================================================================
   8. PAGES DÉDIÉES & FOOTER
   ========================================================================== */
.page-header {
  /* max() garantit que le titre ne passe jamais sous la nav fixe (~110-130px) */
  padding: max(18vh, 150px) 0 6vh 0;
  background: var(--c-wood);
  border-bottom: var(--border-metal);
  text-align: center;
  position: relative;
  overflow: hidden;
}
/* Façade en filigrane derrière le titre des pages internes */
.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('Images/Image entrée a animer (entrée du site).jpeg');
  background-size: cover;
  background-position: center 30%;
  opacity: 0.06;
  filter: blur(1px);
  pointer-events: none;
  z-index: 0;
}
.page-header > * { position: relative; z-index: 1; }

/* ── T-BRAND : lettre T identitaire (comme dans grigno-T) ── */
.t-brand {
  color: var(--c-gold);
  font-family: var(--font-disp);
  letter-spacing: 0.04em;
}
.page-title { font-size: 4rem; color: var(--c-gold); margin-bottom: 1rem; }

.product-showcase { display: grid; grid-template-columns: 1fr 1fr; gap: 5vw; align-items: center; padding: 8vh 0; }
.product-showcase img {
  width: 100%; max-height: 600px; object-fit: contain;
  filter: drop-shadow(0 30px 60px rgba(0,0,0,0.9));
}

.product-info h2 { font-size: 2.8rem; color: var(--c-copper); margin-bottom: 0.9rem; }
.product-info p { font-size: 1rem; line-height: 1.75; color: rgba(222,216,201,0.78); margin-bottom: 0.6rem; }
.product-price { font-size: 1.1rem; color: var(--c-text); font-weight: 500; display: block; margin-top: 1.2rem; letter-spacing: 0.08em; text-transform: uppercase; }

.footer-functional {
  padding: 12vh 0 5vh 0; background: var(--c-dark);
  border-top: var(--border-metal);
}
.footer-title { font-size: 2.2rem; color: var(--c-gold); margin-bottom: 1rem; }
.btn-copper {
  display: inline-block; padding: 1.2rem 3.5rem; border: var(--border-metal);
  color: var(--c-copper); text-transform: uppercase; letter-spacing: 0.2rem;
  font-size: 1rem; margin-top: 1rem; transition: all 0.4s ease;
  background: rgba(180, 148, 90, 0.03);
}
.btn-copper:hover {
  background: var(--c-copper);
  color: var(--c-dark);
  border-color: var(--c-copper);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(163,90,42,0.35);
}
.btn-copper:active { transform: translateY(0); }
.phone { font-family: var(--font-text); font-size: 1rem; color: var(--c-mut); letter-spacing: 0.06em; margin-top: 0.5rem; }
.footer-socials {
  display: flex;
  justify-content: center;
  gap: 1.8rem;
  margin-top: 1.8rem;
}
.footer-socials a {
  color: var(--c-gold);
  opacity: 0.75;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.footer-socials a:hover { opacity: 1; transform: translateY(-2px); }
.footer-socials svg { width: 26px; height: 26px; display: block; }

.footer-mentions { margin-top: 6rem; font-size: 0.85rem; color: rgba(255,255,255,0.2); border-top: var(--border-light); padding-top: 2rem; }

/* ==========================================================================
   9. LA CRYPTE (Expérience Bières Vieillies)
   ========================================================================== */
.crypt-header {
  background: #020202;
  border-bottom: 1px solid rgba(163, 90, 42, 0.1);
}
.crypt-lead {
  background: transparent;
  border: none;
  font-style: italic;
  color: var(--c-mut);
  text-align: center;
  text-wrap: pretty;
}

.crypt-section {
  background: #000;
  padding: 8vh 0 6vh 0;
}

.crypt-card {
  display: flex;
  flex-wrap: wrap;
  gap: 4vw;
  align-items: stretch;
  margin-bottom: 4rem;
  padding: 3rem;
  border: 1px solid rgba(255, 255, 255, 0.02);
  border-radius: 4px;
  background: linear-gradient(135deg, rgba(7,7,7,1) 0%, rgba(20,14,12,0.6) 100%);
  transition: box-shadow 0.6s ease, transform 0.6s ease, border-color 0.6s ease;
  position: relative;
  z-index: 1;
}

.crypt-card.card-active-dropdown {
  z-index: 100;
}

.crypt-card:hover {
  box-shadow: 0 0 40px rgba(163, 90, 42, 0.15);
  border-color: rgba(163, 90, 42, 0.15);
}

.highlight-card {
  border-color: rgba(163, 90, 42, 0.2);
}
.highlight-card:hover {
  box-shadow: 0 0 50px rgba(163, 90, 42, 0.3);
}

.crypt-visual {
  flex: 1 1 300px;
  min-height: 400px;
  position: relative;
  border-radius: 2px;
  overflow: hidden;
}

.crypt-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.85) contrast(1.1);
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.crypt-card:hover .crypt-visual img {
  filter: brightness(1.05) contrast(1.15) sepia(0.1);
  transform: scale(1.05);
}

.placeholder-img {
  width: 100%;
  height: 100%;
  background: #0A0A0A;
  border: 1px dashed rgba(163, 90, 42, 0.3);
  display: flex;
  justify-content: center;
  align-items: center;
  color: rgba(255,255,255,0.1);
  font-size: 0.8rem;
  text-transform: uppercase;
}
.placeholder-img::after { content: attr(title); }

.crypt-content {
  flex: 2 1 400px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.crypt-title {
  font-family: var(--font-disp);
  font-size: 2.8rem;
  color: var(--c-copper);
  margin-bottom: 0.5rem;
  line-height: 1.1;
}

.crypt-sub {
  font-size: 1.2rem;
  color: var(--c-gold);
  margin-bottom: 2.5rem;
  font-weight: 300;
  text-wrap: pretty;
}

/* CUSTOM SELECTOR (Cinematic) */
.custom-selector-wrapper {
  position: relative;
  z-index: 20; /* empêche le dropdown d'être masqué par les sections suivantes */
  max-width: 450px;
  margin-bottom: 2rem;
}

.selector-trigger {
  width: 100%;
  background: transparent;
  border: var(--border-metal);
  color: var(--c-text);
  padding: 1.2rem;
  font-size: 1.1rem;
  font-family: var(--font-text);
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: all 0.4s ease;
}

.selector-trigger:hover {
  background: rgba(163, 90, 42, 0.05);
  border-color: var(--c-copper);
}

.chevron {
  font-size: 0.8rem;
  color: var(--c-gold);
  transition: transform 0.4s ease;
}
.selector-trigger.open .chevron {
  transform: rotate(180deg);
}

.selector-options {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: rgba(7, 7, 7, 0.98);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(163, 90, 42, 0.3);
  border-top: none;
  list-style: none;
  z-index: 50;
  overflow: hidden;
  display: none; 
}

.selector-options.scrollable {
  max-height: 350px;
  overflow-y: auto;
  /* Bloque le scroll-chaining : au doigt, scroller la liste ne scrolle plus la page derrière */
  overscroll-behavior: contain;
}
.selector-options.scrollable::-webkit-scrollbar {
  width: 4px;
}
.selector-options.scrollable::-webkit-scrollbar-track {
  background: rgba(0,0,0,0.5);
}
.selector-options.scrollable::-webkit-scrollbar-thumb {
  background: var(--c-copper);
}

.selector-options li {
  padding: 1.2rem 1.2rem;
  border-bottom: 1px solid rgba(255,255,255,0.03);
  cursor: pointer;
  color: var(--c-mut);
  transition: all 0.3s ease;
}
.selector-options li:hover, .selector-options li.active {
  background: rgba(163, 90, 42, 0.1);
  color: var(--c-gold);
  padding-left: 1.8rem;
}

.crypt-aroma {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--c-text);
  padding-left: 1rem;
  border-left: 2px solid var(--c-copper);
  transition: opacity 0.4s ease;
}
.crypt-aroma strong {
  color: var(--c-gold);
  font-family: var(--font-title);
  letter-spacing: 0.05em;
}
.hidden-initially {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.hidden-initially.revealed {
  opacity: 1;
  transform: translateY(0);
}
.aroma-dyn {
  color: #fff;
  font-style: italic;
  opacity: 0.9;
}

/* Secondary & Tertiary Sections */
.faded-section {
  background: #0B0B0B;
}
.basic-grid {
  display: flex;
  justify-content: center;
  gap: 5vw;
  flex-wrap: wrap;
}
.basic-col {
  flex: 1 1 250px;
}
.basic-subhead {
  color: var(--c-copper);
  margin-bottom: 1.5rem;
  font-size: 1.4rem;
  border-bottom: 1px dashed rgba(255,255,255,0.1);
  padding-bottom: 0.5rem;
  font-family: var(--font-title);
}
.basic-list {
  list-style: none;
}
.basic-list li {
  color: var(--c-mut);
  margin-bottom: 0.8rem;
  font-size: 1rem;
}
.no-alcohol-banner {
  padding: 2.5rem;
  border: 1px solid rgba(255,255,255,0.05);
  background: rgba(0,0,0,0.5);
  color: var(--c-gold);
  font-size: 1.1rem;
  border-radius: 4px;
}
.no-interact {
  pointer-events: none;
}

@media (max-width: 992px) {
  .selection-grid, .product-showcase { grid-template-columns: 1fr; gap: 4vh; }
  .nav-links { display: none; }
  /* La nav passe en hamburger dès 992px : le hero doit être dégagé dès ce seuil
     (avant, la correction n'existait qu'à ≤768px → chevauchement sur tablette) */
  .std-section.intro-section { padding-top: calc(90px + 6vh); }
  .page-header { padding-top: max(14vh, 140px); }
  .menu-item-row { flex-direction: column; align-items: flex-start; }
  .mi-dots { display: none; }
  .mi-price { margin-top: 1rem; color: var(--c-gold); }
  .main-title { font-size: clamp(2.4rem, 8vw, 3.5rem); }
  .section-display { font-size: clamp(1.8rem, 6vw, 3.5rem); }
  .page-title { font-size: clamp(2rem, 7vw, 4rem); }

  .crypt-card { padding: 1.5rem; flex-direction: column; }
  .crypt-visual { min-height: 250px; }
  .crypt-title { font-size: clamp(1.6rem, 5vw, 2.2rem); }

  .selector-trigger { min-height: 44px; } /* touch target */
  .menu-accordion-trigger { min-height: 56px; padding: 1.2rem 1.5rem; }

  /* Product showcase : réduire le padding vertical sur tablette/mobile */
  .product-showcase { padding: 4vh 0; }

  /* Selection cards : overlay text adapté */
  .card-overlay { padding: 1.5rem; }
  .card-overlay h3 { font-size: 1.5rem; letter-spacing: 0.08rem; }
  .selection-card { height: 320px; }

  /* Crypt sub : éviter le débordement */
  .crypt-sub { overflow-wrap: break-word; word-break: break-word; }
}

@media (max-width: 580px) {
  /* Annuler le grid-column inline sur la grille verres (1 colonne) */
  .glass-gallery-grid > * { grid-column: auto !important; }

  /* Overlay encore plus compact */
  .card-overlay { padding: 1.2rem; }
  .card-overlay h3 { font-size: 1.3rem; }
  .selection-card { height: 280px; }

  /* product-showcase encore plus serré */
  .product-showcase { padding: 3vh 0; }
}


/* ==========================================================================
   10. MENU ACCORDEON (Mets & Desserts)
   ========================================================================== */
.menu-accordion-container {
  max-width: 900px;
  margin: 0 auto;
}
.menu-accordion-card {
  border: 1px solid rgba(180, 148, 90, 0.15);
  margin-bottom: 1.5rem;
  background: rgba(20, 14, 12, 0.4);
  border-radius: 4px;
  overflow: hidden;
  transition: border-color 0.4s ease;
}
.menu-accordion-card:hover {
  border-color: var(--c-copper);
}
.menu-accordion-trigger {
  padding: 1.5rem 2.5rem;
  min-height: 44px; /* UX Pro Max : touch target CRITICAL */
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  background: transparent;
  color: var(--c-gold);
  transition: background 0.35s ease, border-left-color 0.35s ease;
  border-left: 3px solid transparent;
}
.menu-accordion-trigger:hover {
  background: rgba(163, 90, 42, 0.05);
}
.menu-accordion-trigger.open {
  background: rgba(163, 90, 42, 0.08);
  border-left-color: var(--c-copper);
}
.menu-accordion-trigger h3 {
  font-family: var(--font-disp);
  font-size: 2.2rem;
  margin: 0;
  text-transform: none;
  letter-spacing: 0.05rem;
}
.menu-accordion-trigger .chevron {
  font-size: 1.2rem;
  transition: transform 0.4s ease;
}
.menu-accordion-trigger.open .chevron {
  transform: rotate(180deg);
}
.menu-accordion-content {
  display: none;
  padding: 0.5rem 2.5rem 2.5rem 2.5rem;
  background: transparent;
}
@media (max-width: 768px) {
  .menu-accordion-trigger { padding: 1.5rem; }
  .menu-accordion-trigger h3 { font-size: 1.6rem; }
  .menu-accordion-content { padding: 1rem 1.5rem 2rem 1.5rem; }
}


/* ==========================================================================
   11. PLANCHE A FROMAGE (fromages.html)
   ========================================================================== */
.cheese-board {
  max-width: 1000px;
  margin: 0 auto 4rem auto;
  background: radial-gradient(circle at center, rgba(163, 90, 42, 0.08) 0%, rgba(20, 14, 12, 0.9) 100%), var(--c-wood);
  border: 1px solid rgba(163, 90, 42, 0.15);
  border-radius: 8px;
  padding: 4vw;
  display: flex;
  flex-direction: column;
  gap: 4rem;
  box-shadow: 0 25px 60px rgba(0,0,0,0.95);
  position: relative;
  overflow: hidden;
}

.cheese-origin-title {
  font-family: var(--font-title);
  color: var(--c-gold);
  font-size: 1.3rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  border-bottom: 1px solid rgba(163, 90, 42, 0.2);
  padding-bottom: 0.6rem;
  margin-bottom: 1.6rem;
  display: inline-block;
}

.cheese-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
}

.cheese-piece {
  background: rgba(0,0,0,0.5);
  border: 1px solid rgba(255,255,255,0.03);
  padding: 1.8rem;
  border-radius: 4px;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.cheese-piece::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: radial-gradient(circle at center, rgba(163, 90, 42, 0.15) 0%, transparent 80%);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.cheese-piece:hover {
  transform: translateY(-4px);
  border-color: rgba(163, 90, 42, 0.4);
  box-shadow: 0 15px 30px rgba(0,0,0,0.8);
}

.cheese-piece:hover::before {
  opacity: 1;
}

.cheese-name {
  font-family: var(--font-disp);
  font-size: 1.6rem;
  color: #fff;
  position: relative;
  z-index: 2;
  margin-bottom: 0.5rem;
  display: block;
}

.cheese-desc {
  font-family: var(--font-text);
  color: var(--c-mut);
  font-size: 0.95rem;
  line-height: 1.5;
  position: relative;
  z-index: 2;
  display: block;
  margin-bottom: 1rem;
}

.cheese-tech {
  position: absolute;
  bottom: -50px;
  left: 0;
  width: 100%;
  padding: 0.8rem 1.8rem;
  background: var(--c-copper);
  color: #fff;
  font-family: var(--font-text);
  font-weight: 500;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: bottom 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 3;
}

.cheese-piece:hover .cheese-tech {
  bottom: 0;
}
@media (max-width: 768px) {
  .cheese-board { padding: 8vw 5vw; }
}

/* ==========================================================================
   12. UTILITAIRES MANQUANTS
   ========================================================================== */
.mt-3 { margin-top: 1.5rem; }
.mt-5 { margin-top: 5rem; }
.mb-4 { margin-bottom: 4rem; }
.mb-0 { margin-bottom: 0; }

.product-img { display: flex; align-items: center; justify-content: center; }
.product-img img {
  width: 100%; max-height: 600px; object-fit: contain;
  filter: drop-shadow(0 30px 60px rgba(0,0,0,0.9));
}

.crypt-separator { background: var(--c-copper); opacity: 0.5; }
.reveal-text { opacity: 1; }

.lead-text--centered { text-align: center; margin-bottom: 4rem; }

/* Hero responsive */
@media (max-width: 768px) {
  .intro-text-wrapper {
    padding: 28px 28px 28px 24px;
    margin: 0 1rem;
    max-width: 100%;
  }
  .hero-tagline { font-size: 0.65rem; letter-spacing: 0.12em; }
  .hero-desc { font-size: 0.95rem; }
}

/* ==========================================================================
   13. TAGS CHARCUTERIE / ÉPICERIE (présentation compacte)
   ========================================================================== */
.charcuterie-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1rem;
}

.charcuterie-tag {
  padding: 0.35rem 0.85rem;
  border: 1px solid rgba(180, 148, 90, 0.2);
  color: var(--c-mut);
  font-family: var(--font-text);
  font-size: 0.85rem;
  border-radius: 2px;
  letter-spacing: 0.04em;
  transition: border-color 0.3s ease, color 0.3s ease;
}
.charcuterie-tag:hover {
  border-color: rgba(163, 90, 42, 0.5);
  color: var(--c-gold);
}

/* ==========================================================================
   14. ACCORDÉON SECONDAIRE (Épicerie, visuellement plus discret)
   ========================================================================== */
.menu-accordion-card--secondary .menu-accordion-trigger {
  opacity: 0.75;
}
.menu-accordion-card--secondary .menu-accordion-trigger:hover {
  opacity: 1;
}
.menu-accordion-card--secondary .menu-accordion-trigger h3 {
  font-size: 1.6rem;
  letter-spacing: 0.08rem;
}

/* ==========================================================================
   15. NOTE SOFTS (mention élégante et discrète)
   ========================================================================== */
.softs-note {
  max-width: 900px;
  margin: 3rem auto;
  padding: 1.5rem 2rem;
  border-left: 2px solid rgba(180, 148, 90, 0.2);
  color: var(--c-mut);
  font-size: 0.95rem;
  line-height: 1.7;
  font-style: italic;
}
.softs-note em { color: var(--c-gold); font-style: normal; }

/* ==========================================================================
   16. BIÈRES AU FÛT — Cave Board (2×2 unifié)
   ========================================================================== */
.fut-board {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 2rem;
  border: 1px solid rgba(180, 148, 90, 0.18);
  overflow: hidden;
  box-shadow:
    0 30px 70px rgba(0,0,0,0.75),
    inset 0 1px 0 rgba(255,255,255,0.04);
  background: rgba(10, 6, 3, 0.92);
}

.fut-block {
  padding: 2.2rem 2rem 2.2rem 2.5rem;
  position: relative;
  border-right: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: background 0.4s ease;
}
/* Placement explicite : Blanche/Ambrée/Brune à gauche, Blonde à droite sur toute la hauteur */
.fut-blanche { grid-column: 1; grid-row: 1; }
.fut-ambree  { grid-column: 1; grid-row: 2; }
.fut-brune   { grid-column: 1; grid-row: 3; border-bottom: none; }
.fut-blonde  { grid-column: 2; grid-row: 1 / 4; border-right: none; border-bottom: none; }

/* Bande colorée gauche = identité du style */
.fut-block::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--fut-color);
  box-shadow: 0 0 12px var(--fut-color);
  opacity: 0.85;
}
.fut-block:hover { background: rgba(20,12,6,0.95); }

.fut-blanche { --fut-color: #EDE8D8; }
.fut-blonde  { --fut-color: #D4A820; }
.fut-ambree  { --fut-color: #C47228; }
.fut-brune   { --fut-color: #963020; }

.fut-block-header {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 1.6rem;
}
.fut-block-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--fut-color);
  flex-shrink: 0;
  box-shadow: 0 0 8px var(--fut-color);
}
.fut-block-label {
  font-family: var(--font-title);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--fut-color);
}

.fut-beer-list { list-style: none; }
.fut-beer-item {
  padding: 0.7rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.fut-beer-item:last-child { border-bottom: none; padding-bottom: 0; }
.fut-beer-name {
  font-family: var(--font-title);
  font-size: 0.98rem;
  color: var(--c-text);
  letter-spacing: 0.02em;
}
.fut-beer-sub {
  font-size: 0.8rem;
  color: var(--c-mut);
  font-style: italic;
  line-height: 1.4;
}

@media (max-width: 600px) {
  .fut-board { grid-template-columns: 1fr; }
  /* Reset des placements explicites DÈS le passage en 1 colonne
     (sinon fut-blonde garde grid-column:2 dans une grille à 1 colonne → mise en page cassée) */
  .fut-blanche, .fut-ambree, .fut-brune, .fut-blonde {
    grid-column: 1 !important; grid-row: auto !important;
  }
  .fut-block { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.05); }
  .fut-block:last-child { border-bottom: none; }
}

/* ==========================================================================
   17. BIÈRES BOUTEILLE — Cartes pays avec drapeaux
   ========================================================================== */
.bottle-grid {
  columns: 4;
  column-gap: 1rem;
  margin-top: 2rem;
}

.bottle-country {
  padding: 1.5rem;
  background: linear-gradient(160deg, rgba(18,11,6,0.9) 0%, rgba(10,6,3,0.95) 100%);
  border: 1px solid rgba(180, 148, 90, 0.1);
  border-radius: 3px;
  transition: border-color 0.35s ease, box-shadow 0.35s ease, transform 0.35s ease;
  position: relative;
  overflow: hidden;
  break-inside: avoid;
  margin-bottom: 1rem;
}
.bottle-country::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--c-copper), transparent);
  opacity: 0;
  transition: opacity 0.35s ease;
}
.bottle-country:hover {
  border-color: rgba(163, 90, 42, 0.35);
  box-shadow: 0 10px 30px rgba(0,0,0,0.6);
  transform: translateY(-3px);
}
.bottle-country:hover::after { opacity: 0.5; }

.bottle-country-header {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.bottle-flag {
  width: 22px;
  height: auto;
  border-radius: 2px;
  flex-shrink: 0;
  display: block;
}
.bottle-country-name {
  font-family: var(--font-title);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--c-copper);
}

.bottle-list { list-style: none; }
.bottle-list li {
  color: var(--c-mut);
  font-size: 0.88rem;
  padding: 0.3rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.03);
  transition: color 0.25s ease, padding-left 0.25s ease;
  line-height: 1.4;
}
.bottle-list li:hover { color: var(--c-gold); padding-left: 0.35rem; }
.bottle-list li:last-child { border-bottom: none; }

@media (max-width: 1100px) {
  .bottle-grid { columns: 3; }
}
@media (max-width: 768px) {
  .bottle-grid { columns: 2; }
}
@media (max-width: 480px) {
  .bottle-grid { columns: 1; }
}


/* ==========================================================================
   18. RESPONSIVE ADDITIONNEL
   ========================================================================== */
@media (max-width: 768px) {
  .fut-grid { grid-template-columns: 1fr; }
  .bottle-grid { columns: 2; }
  .softs-note { padding: 1rem 1.2rem; }
}
@media (max-width: 480px) {
  .bottle-grid { columns: 1; }
  .charcuterie-tags { gap: 0.4rem; }
  .charcuterie-tag { font-size: 0.8rem; padding: 0.3rem 0.65rem; }
}

/* ==========================================================================
   19. BADGES MOINE (Abbaye & Fait Maison) ET TEMPÉRATURE
   ========================================================================== */

/* T-Chaud / T-Froid — labels */
.temp-text.chaud {
  color: var(--c-copper-txt);
}
.temp-text.froid {
  color: var(--c-mut);
}

/* Conteneur badge — insertion propre de SVG */
.badge-moine-wrap {
  display: inline-block;
  height: 40px;
  vertical-align: middle;
  margin-left: 6px;
  flex-shrink: 0;
}
.badge-moine-wrap img {
  height: 40px;
  width: auto;
  opacity: 0.95;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

/* Badge Fait Maison : icône maison SVG — pas de crop, affichage complet */
.badge-moine-wrap.maison {
  width: 22px;
  height: 18px;
  overflow: visible;
}
.badge-moine-wrap.maison img {
  height: 18px;
  width: auto;
  margin-left: 0;
  transform: none;
  filter: none;
  opacity: 0.9;
}

/* Version plus grande pour les sous-titres T-Chaud / T-Froid */
.badge-moine-wrap.lg {
  height: 46px;
}
.badge-moine-wrap.lg img {
  height: 46px;
}

/* Icônes supprimées, on utilise .badge-moine-wrap.lg à la place */

/* Hover sur le parent allume le badge */
.menu-item-row:hover .badge-moine-wrap img,
.menu-subhead:hover .badge-moine-wrap img { opacity: 1; }

/* Bocaux étoile spécialité */
.bocaux-star {
  border-color: rgba(180, 148, 90, 0.45) !important;
  color: var(--c-gold) !important;
}
.bocaux-legende {
  margin-top: 0.7rem;
  font-size: 0.75rem;
  color: var(--c-mut);
  font-style: italic;
  letter-spacing: 0.04em;
}

/* ==========================================================================
   20b. NAVIGATION MOBILE — Hamburger + Overlay plein écran
   ========================================================================== */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  min-width: 44px;
  min-height: 44px;
  z-index: 600;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--c-gold);
  transition: transform 0.35s ease, opacity 0.3s ease;
  transform-origin: center;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

@media (max-width: 992px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
}

/* Overlay plein-écran */
.mobile-overlay {
  position: fixed;
  inset: 0;
  z-index: 490;
  background: rgba(5, 3, 1, 0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-16px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.mobile-overlay.active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.mobile-overlay::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--c-copper), transparent);
}
.mobile-overlay::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--c-copper), transparent);
  opacity: 0.4;
}
.mobile-links {
  list-style: none;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.mobile-links a {
  font-family: var(--font-title);
  font-size: clamp(1.5rem, 5.5vw, 2.3rem);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--c-gold);
  display: block;
  position: relative;
  /* État initial : invisible, légèrement décalé → révélé en cascade à l'ouverture */
  opacity: 0;
  transform: translateY(12px);
  transition: color 0.3s ease, letter-spacing 0.35s ease,
              opacity 0.5s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.mobile-overlay.active .mobile-links a {
  opacity: 1;
  transform: translateY(0);
}
/* Cascade : chaque lien apparaît avec un léger décalage */
.mobile-overlay.active .mobile-links li:nth-child(1) a { transition-delay: 0.06s; }
.mobile-overlay.active .mobile-links li:nth-child(2) a { transition-delay: 0.12s; }
.mobile-overlay.active .mobile-links li:nth-child(3) a { transition-delay: 0.18s; }
.mobile-overlay.active .mobile-links li:nth-child(4) a { transition-delay: 0.24s; }
.mobile-overlay.active .mobile-links li:nth-child(5) a { transition-delay: 0.30s; }
.mobile-overlay.active .mobile-links li:nth-child(6) a { transition-delay: 0.36s; }
.mobile-overlay.active .mobile-links li:nth-child(7) a { transition-delay: 0.42s; }
.mobile-overlay.active .mobile-links li:nth-child(8) a { transition-delay: 0.48s; }
.mobile-overlay.active .mobile-links li:nth-child(9) a { transition-delay: 0.54s; }
.mobile-overlay.active .mobile-links li:nth-child(10) a { transition-delay: 0.60s; }
.mobile-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 50%;
  transform: translateX(-50%);
  width: 0; height: 1px;
  background: var(--c-copper);
  transition: width 0.4s ease;
}
.mobile-links a:hover { color: #fff; }
.mobile-links a:hover::after { width: 60%; }

.mobile-logo {
  width: 60px;
  opacity: 0.6;
  filter: drop-shadow(0 0 12px rgba(163,90,42,0.3));
}
.mobile-close-btn {
  position: absolute;
  top: 1.5rem;
  right: 1.8rem;
  background: none;
  border: 1px solid rgba(180,148,90,0.2);
  color: var(--c-mut);
  font-size: 1.2rem;
  cursor: pointer;
  width: 44px; height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 2px;
  transition: all 0.3s ease;
}
.mobile-close-btn:hover {
  color: var(--c-gold);
  border-color: var(--c-copper);
  background: rgba(163,90,42,0.08);
}

/* ==========================================================================
   19. SCROLL INDICATOR (Hero — appear after entrance)
   ========================================================================== */
.scroll-indicator {
  position: absolute;
  bottom: 2.8rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 3;
  opacity: 0;
  pointer-events: none;
}
.scroll-indicator.visible {
  animation: scrollFadeIn 0.8s ease forwards, scrollBounce 2.4s ease-in-out 0.8s infinite;
}
@keyframes scrollFadeIn {
  to { opacity: 0.55; }
}
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(7px); }
}
.scroll-indicator-label {
  font-family: var(--font-title);
  font-size: 0.58rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--c-copper);
}
.scroll-indicator-line {
  width: 1px;
  height: 32px;
  background: linear-gradient(to bottom, var(--c-copper), transparent);
}
@media (prefers-reduced-motion: reduce) {
  .scroll-indicator.visible { animation: none; opacity: 0.45; }
}

/* ==========================================================================
   20. FOOTER ENRICHI — Adresse & horaires
   ========================================================================== */
.footer-infos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin: 2.5rem auto 3rem auto;
  max-width: 760px;
  border-top: 1px solid rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  padding: 2.5rem 0;
}
.footer-info-block {
  text-align: center;
}
.footer-info-label {
  font-family: var(--font-title);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-copper);
  margin-bottom: 0.8rem;
  display: block;
}
.footer-info-value {
  font-family: var(--font-text);
  font-size: 0.92rem;
  color: var(--c-mut);
  line-height: 1.7;
}
.footer-info-value strong {
  color: var(--c-text);
  font-weight: 400;
}
@media (max-width: 640px) {
  .footer-infos-grid { grid-template-columns: 1fr; gap: 1.5rem; padding: 2rem 0; }
  /* Touch targets : liens dans le footer enrichi */
  .footer-info-value a {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    padding: 0.3rem 0.4rem;
  }
}

/* ==========================================================================
   21. SELECTION CARD — Micro-affordance hover
   ========================================================================== */
.card-discover {
  position: absolute;
  bottom: 3.2rem;
  right: 2.5rem;
  font-family: var(--font-title);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0);
  transition: color 0.45s ease;
}
.selection-card:hover .card-discover { color: rgba(255,255,255,0.7); }

/* ==========================================================================
   22. VISUAL DIVIDER — Ambiance caption
   ========================================================================== */
.visual-divider-caption {
  text-align: center;
  margin-top: 1.2rem;
  font-family: var(--font-title);
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-copper);
  opacity: 0.6;
}

/* ==========================================================================
   23. MANIFESTO BOX (UI Framer Style)
   ========================================================================== */
.manifesto-box {
  max-width: 820px;
  margin: 0 auto 5rem auto;
  padding: 3.5rem 3rem;
  position: relative;
  background: linear-gradient(135deg, rgba(20, 14, 12, 0.7) 0%, rgba(7, 7, 7, 0.5) 100%);
  border: 1px solid rgba(180, 148, 90, 0.15); /* Faint gold border */
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  border-radius: 4px;
  overflow: hidden;
}

/* Glassmorphism reflection */
.manifesto-box::before {
  content: "";
  position: absolute;
  top: 0; left: -100%;
  width: 50%; height: 100%;
  background: linear-gradient(to right, transparent, rgba(255,255,255,0.03), transparent);
  transform: skewX(-20deg);
  animation: manifesto-shine 8s infinite;
}

@keyframes manifesto-shine {
  0% { left: -100%; }
  20% { left: 200%; }
  100% { left: 200%; }
}

/* Subtle corner accents */
.manifesto-box::after {
  content: "";
  position: absolute;
  top: 15px; left: 15px; right: 15px; bottom: 15px;
  border: 1px solid rgba(163, 90, 42, 0.15); /* Faint copper */
  pointer-events: none;
  border-radius: 2px;
}

.manifesto-deco {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, transparent, var(--c-copper), transparent);
  margin: 0 auto 1.5rem auto;
}

.manifesto-text {
  font-family: var(--font-text);
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.85;
  color: rgba(222, 216, 201, 0.9);
  text-align: center;
  letter-spacing: 0.03em;
  position: relative;
  z-index: 1;
  text-wrap: balance;
}

.manifesto-text strong {
  font-weight: 500;
  color: var(--c-gold);
  font-style: italic;
  letter-spacing: 0.05em;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .manifesto-box {
    padding: 2.5rem 1.5rem;
    margin-bottom: 3.5rem;
  }
  .manifesto-text {
    font-size: 1.05rem;
  }
}

/* ==========================================================================
   24. MOMENT CARD — "Oups on a oublié"
   ========================================================================== */
.moment-card {
  max-width: 640px;
  margin: 0 auto 3rem auto;
  padding: 2rem 2.5rem;
  position: relative;
  background: linear-gradient(135deg, rgba(163,90,42,0.08) 0%, rgba(7,7,7,0.4) 100%);
  border: 1px dashed rgba(180,148,90,0.35);
  border-radius: 6px;
  text-align: center;
  overflow: hidden;
  transition: border-color 0.4s ease, transform 0.3s ease;
}
.moment-card:hover {
  border-color: rgba(180,148,90,0.6);
  transform: translateY(-2px);
}
.moment-card-badge {
  display: inline-block;
  font-family: var(--font-title);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-copper);
  background: rgba(163,90,42,0.12);
  padding: 4px 16px;
  border-radius: 20px;
  margin-bottom: 1rem;
}
.moment-card-title {
  font-family: var(--font-title);
  font-size: 1.3rem;
  color: var(--c-gold);
  margin-bottom: 0.5rem;
}
.moment-card-desc {
  font-family: var(--font-text);
  font-size: 0.95rem;
  font-weight: 300;
  color: rgba(222,216,201,0.7);
  line-height: 1.7;
}
@media (max-width: 768px) {
  .moment-card { padding: 1.5rem 1.2rem; }
}

/* ==========================================================================
   25. TEASER 10 ANS — Vitrail
   ========================================================================== */
.anni-section {
  padding-top: 2vh;
  padding-bottom: 6vh;
  position: relative;
  overflow: hidden;
}

/* Lumières vitrail en fond de section */
.anni-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 15% 25%, rgba(58,10,10,0.35) 0%, transparent 45%),
    radial-gradient(ellipse at 85% 20%, rgba(10,21,42,0.4) 0%, transparent 45%),
    radial-gradient(ellipse at 50% 85%, rgba(74,48,10,0.28) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 60%, rgba(10,21,42,0.2) 0%, transparent 40%),
    radial-gradient(ellipse at 30% 70%, rgba(58,10,10,0.15) 0%, transparent 40%);
  pointer-events: none;
  animation: vitrail-shift 8s ease-in-out infinite alternate;
}
@keyframes vitrail-shift {
  0%   { opacity: 0.7; }
  100% { opacity: 1; }
}

.anni-teaser {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  padding: 4rem 2rem 3.5rem;
  border: 1px solid rgba(180,148,90,0.15);
  border-top: 2px solid transparent;
  border-image: linear-gradient(90deg,
    rgba(58,10,10,0.6),
    rgba(180,148,90,0.5),
    rgba(10,21,42,0.6)
  ) 1 0 0 0;
  position: relative;
  z-index: 1;
  background: rgba(7,7,7,0.5);
  backdrop-filter: blur(2px);
}

/* Reflets vitrail dans le panneau lui-même */
.anni-teaser::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 10% 10%, rgba(58,10,10,0.12) 0%, transparent 40%),
    radial-gradient(ellipse at 90% 15%, rgba(10,21,42,0.14) 0%, transparent 40%),
    radial-gradient(ellipse at 50% 95%, rgba(74,48,10,0.10) 0%, transparent 45%);
  pointer-events: none;
}

.anni-years {
  font-family: var(--font-title);
  font-size: 0.7rem;
  letter-spacing: 0.35em;
  color: var(--c-copper);
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  position: relative; z-index: 1;
}

.anni-X-wrap {
  line-height: 1;
  margin-bottom: 1rem;
  position: relative; z-index: 1;
}
.anni-X {
  font-family: var(--font-disp);
  font-size: clamp(7rem, 22vw, 11rem);
  color: transparent;
  background: linear-gradient(155deg,
    #8B1A1A 0%,
    var(--c-copper) 22%,
    var(--c-gold) 45%,
    #1A2A4A 68%,
    var(--c-copper) 85%,
    #6B1010 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  display: inline-block;
  animation: anni-breathe 5s ease-in-out infinite;
}
@keyframes anni-breathe {
  0%, 100% {
    filter: drop-shadow(0 0 20px rgba(139,26,26,0.3))
            drop-shadow(0 0 40px rgba(180,148,90,0.15));
  }
  50% {
    filter: drop-shadow(0 0 35px rgba(139,26,26,0.5))
            drop-shadow(0 0 70px rgba(180,148,90,0.25))
            drop-shadow(0 0 15px rgba(26,42,74,0.4));
  }
}

/* Ligne de plomb sous le X */
.anni-lead-line {
  width: 120px;
  height: 1px;
  margin: 0 auto 1.4rem;
  background: linear-gradient(90deg,
    rgba(58,10,10,0.6),
    rgba(180,148,90,0.5),
    rgba(10,21,42,0.6)
  );
  position: relative; z-index: 1;
}

.anni-decade {
  font-family: var(--font-title);
  font-size: 1.15rem;
  color: var(--c-text);
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
  position: relative; z-index: 1;
}
.anni-sub {
  font-size: 0.85rem;
  color: var(--c-mut);
  letter-spacing: 0.06em;
  margin-bottom: 2.5rem;
  position: relative; z-index: 1;
}

.anni-countdown {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  margin-bottom: 2rem;
  position: relative; z-index: 1;
}
.cd-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
}
.cd-num {
  font-family: var(--font-disp);
  font-size: 2.2rem;
  line-height: 1;
  min-width: 2.8rem;
  text-align: center;
}
/* Chaque compteur dans une couleur vitrail */
.cd-block:nth-child(1) .cd-num { color: #C0504A; }
.cd-block:nth-child(3) .cd-num { color: var(--c-gold); }
.cd-block:nth-child(5) .cd-num { color: #5A7AAA; }
.cd-label {
  font-family: var(--font-title);
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  color: var(--c-mut);
  text-transform: uppercase;
}
.cd-sep {
  font-size: 1.2rem;
  color: rgba(180,148,90,0.25);
  margin-bottom: 1.2rem;
}

.anni-collab {
  font-size: 0.8rem;
  color: var(--c-mut);
  font-style: italic;
  letter-spacing: 0.06em;
  position: relative; z-index: 1;
}

/* ==========================================================================
   25b. EVENT TIMELINE — Événements
   ========================================================================== */
.event-timeline {
  max-width: 720px;
  margin: 0 auto;
  position: relative;
  padding-left: 40px;
}
.event-timeline::before {
  content: "";
  position: absolute;
  left: 12px; top: 0; bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--c-copper), transparent);
}
.event-item {
  position: relative;
  padding: 2rem 0 2rem 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.event-item:last-child { border-bottom: none; }
.event-item::before {
  content: "";
  position: absolute;
  left: -34px; top: 2.4rem;
  width: 10px; height: 10px;
  background: var(--c-copper);
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(163,90,42,0.5);
}
.event-date {
  font-family: var(--font-title);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--c-copper);
  margin-bottom: 0.5rem;
}
.event-title {
  font-family: var(--font-title);
  font-size: 1.3rem;
  color: var(--c-gold);
  margin-bottom: 0.4rem;
}
.event-desc {
  font-family: var(--font-text);
  font-size: 0.95rem;
  font-weight: 300;
  color: rgba(222,216,201,0.7);
  line-height: 1.7;
}
.event-empty {
  text-align: center;
  padding: 4rem 2rem;
  color: var(--c-mut);
  font-style: italic;
  font-family: var(--font-text);
}

/* ==========================================================================
   26. VERRES — Anniversary glasses showcase
   ========================================================================== */
.glass-collab-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  padding: 3rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.glass-collab-card:last-child { border-bottom: none; }
.glass-collab-card:nth-child(even) { direction: rtl; }
.glass-collab-card:nth-child(even) > * { direction: ltr; }
.glass-collab-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}
.glass-collab-visual img {
  max-height: 400px;
  object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.8));
}
.glass-collab-info h3 {
  font-family: var(--font-title);
  font-size: 1.4rem;
  color: var(--c-gold);
  margin-bottom: 0.5rem;
}
.glass-collab-info .collab-year {
  font-family: var(--font-title);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-copper);
  margin-bottom: 1rem;
  display: block;
}
.glass-collab-info p {
  font-family: var(--font-text);
  font-size: 0.95rem;
  font-weight: 300;
  color: rgba(222,216,201,0.75);
  line-height: 1.8;
}
.glass-sale-note {
  text-align: center;
  margin-top: 3rem;
  padding: 1.5rem 2rem;
  border: 1px solid rgba(180,148,90,0.2);
  border-radius: 4px;
  background: rgba(163,90,42,0.06);
}
.glass-sale-note p {
  font-family: var(--font-text);
  font-size: 1rem;
  color: var(--c-gold);
  font-weight: 400;
}
@media (max-width: 768px) {
  .glass-collab-card {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    text-align: center;
  }
  .glass-collab-card:nth-child(even) { direction: ltr; }
  .glass-collab-visual img { max-height: 250px; }
}

/* ==========================================================================
   27. AUTRES — Coffrets CTA
   ========================================================================== */
.coffret-cta {
  text-align: center;
  padding: 4rem 2rem;
  margin-top: 3rem;
  border-top: 1px solid rgba(180,148,90,0.15);
}
.coffret-cta h3 {
  font-family: var(--font-title);
  font-size: 1.6rem;
  color: var(--c-gold);
  margin-bottom: 1rem;
}
.coffret-cta p {
  font-family: var(--font-text);
  font-weight: 300;
  color: var(--c-mut);
  max-width: 500px;
  margin: 0 auto 0.5rem auto;
  line-height: 1.7;
}

/* ==========================================================================
   28. GALERIE VERRES D'ANNIVERSAIRE
   ========================================================================== */
.glass-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
  margin-top: 3rem;
}
.glass-gallery-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(180,148,90,0.12);
  border-radius: 4px;
  overflow: hidden;
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
  cursor: default;
  will-change: transform;
}
.glass-gallery-card:hover {
  transform: translateY(-5px);
  border-color: rgba(180,148,90,0.35);
  box-shadow: 0 12px 32px rgba(0,0,0,0.5);
}
.glass-gallery-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--c-wood);
}
.glass-gallery-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.45s ease;
}
.glass-gallery-card:hover .glass-gallery-img img {
  transform: scale(1.04);
}
.glass-gallery-label {
  padding: 1.1rem 1.3rem 1.3rem;
  text-align: center;
  border-top: 1px solid rgba(180,148,90,0.08);
}
.glass-year-badge {
  font-family: var(--font-title);
  font-size: 0.76rem;
  letter-spacing: 0.15em;
  color: var(--c-gold);
  text-transform: uppercase;
  display: block;
  margin-bottom: 0.35rem;
}
.glass-gallery-desc {
  font-size: 0.85rem;
  color: rgba(143,135,122,0.9);
  font-style: italic;
  line-height: 1.6;
  margin: 0;
}

/* Calice noir hero */
.calice-noir-showcase {
  display: flex;
  align-items: center;
  gap: 4rem;
  margin-top: 5rem;
  padding-top: 4rem;
  border-top: 1px solid rgba(180,148,90,0.12);
}
.calice-noir-showcase .product-img {
  flex: 0 0 380px;
}
.calice-noir-showcase .product-img img {
  width: 100%;
  border-radius: 4px;
  object-fit: cover;
}
.calice-noir-showcase .product-info h2 {
  color: var(--c-gold);
  margin-bottom: 1.2rem;
}

@media (max-width: 960px) {
  .glass-gallery-grid { grid-template-columns: repeat(2, 1fr); }
  /* Annuler les grid-column inline dès le passage en 2 colonnes */
  .glass-gallery-grid > * { grid-column: auto !important; }
  .calice-noir-showcase { flex-direction: column; gap: 2rem; }
  .calice-noir-showcase .product-img { flex: 0 0 auto; width: 100%; max-width: 360px; margin: 0 auto; }
}
@media (max-width: 580px) {
  .glass-gallery-grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   29. BIÈRES BOUTEILLE — Tooltip photo au survol
   ========================================================================== */
.bottle-list li[data-img] { cursor: pointer; }
.bottle-list li[data-img]:hover { color: var(--c-gold); padding-left: 0.35rem; }

#bottle-tooltip {
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  opacity: 0;
  transform: scale(0.84) translateY(8px);
  transition: opacity 0.22s ease, transform 0.22s ease;
  filter: drop-shadow(0 24px 56px rgba(0,0,0,0.93));
  border-radius: 22px;
  overflow: hidden;
}
#bottle-tooltip.visible {
  opacity: 1;
  transform: scale(1) translateY(0);
}
#bottle-tooltip img {
  width: 240px;
  height: auto;
  object-fit: contain;
  display: block;
  border-radius: 22px;
}

/* ==========================================================================
   30. PRODUCT TRIO (La Carte - mini-showcase produits notables)
   ========================================================================== */
.product-trio {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  margin: 2.5rem 0 1rem 0;
}
.product-trio-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.product-trio-item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 3px;
  border: 1px solid rgba(180,148,90,0.12);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.product-trio-item:hover img {
  transform: scale(1.03);
  box-shadow: 0 12px 30px rgba(0,0,0,0.6);
}
.product-trio-item span {
  font-family: var(--font-title);
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--c-copper);
  margin-top: 0.6rem;
  line-height: 1.4;
}
@media (max-width: 640px) {
  .product-trio { grid-template-columns: 1fr; }
}

/* ==========================================================================
   31. FROMAGES HERO PHOTO
   ========================================================================== */
.fromages-hero-wrap {
  position: relative;
  overflow: hidden;
  max-height: 520px;
}
.fromages-hero-img {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
  object-position: center 55%;
  display: block;
  filter: brightness(0.85) contrast(1.05);
}
.fromages-hero-caption {
  position: absolute;
  bottom: 1.5rem;
  right: 2rem;
  font-family: var(--font-title);
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}

/* ==========================================================================
   32. TYPOGRAPHIE — Phrases indépendantes & équilibre global
   ========================================================================== */

/* Chaque phrase dans son propre <p> : espacement entre elles */
.hero-desc p,
.manifesto-text p,
.manifesto-text-block p,
.lead-text p,
.lead-block p,
.crypt-lead p,
.crypt-lead-block p,
.coffret-cta p {
  margin: 0 0 0.5rem 0;
}
.hero-desc p:last-child,
.manifesto-text p:last-child,
.manifesto-text-block p:last-child,
.lead-text p:last-child,
.lead-block p:last-child,
.crypt-lead p:last-child,
.crypt-lead-block p:last-child,
.coffret-cta p:last-child {
  margin-bottom: 0;
}

/* product-info p : géré directement dans la règle de base (margin-bottom: 0.6rem) */

/* Titres : équilibre des lignes */
h1, h2, h3, h4,
.page-title, .crypt-title, .footer-title,
.product-info h2, .coffret-cta h3,
.glass-gallery-card h3 {
  text-wrap: balance;
}

/* Paragraphes (potentiellement longs) : éviter les orphelins en fin de ligne */
p, li,
.footer-info-value, .footer-mentions p,
.manifesto-text p, .event-desc, .apropos-desc {
  text-wrap: pretty;
}

/* Blocs de texte COURTS : équilibrer les lignes (évite « ligne pleine + 1 mot »
   qui donnait l'impression de phrases coupées partout, surtout sur mobile). */
.hero-desc p, .lead-text, .product-info p, .crypt-aroma, .crypt-sub,
.glass-gallery-desc, .glass-sale-note p, .mi-desc, .cheese-desc, .cheese-tech,
.softs-note p, .moment-card-desc, .moment-popup-desc, .error-desc,
.product-trio-item span, .product-continuit-item span,
.selector-notes-text {
  text-wrap: balance;
}
/* Tagline hero : remplissage gauche→droite classique pour que la 2e ligne
   (« Hauts‑de‑France ») démarre pile sous la 1re (« Bar »). Pas de balance qui
   déplacerait le « · » en début de ligne 2. */
.hero-tagline { text-wrap: normal; }

/* ==========================================================================
   33. CONTINUI-T — Slider horizontal produits trappistes
   ========================================================================== */
.continuit-section {
  margin: 2.5rem 0 1rem 0;
}
.continuit-label {
  font-family: var(--font-title);
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--c-copper);
  text-align: center;
  margin-bottom: 1.2rem;
}
.product-continuit {
  display: flex;
  gap: 1.2rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 0.5rem 0 1rem 0;
}
.product-continuit::-webkit-scrollbar { display: none; }
.product-continuit-item {
  flex: 0 0 200px;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition: transform 0.3s ease;
}
.product-continuit-item:hover { transform: translateY(-4px); }
.product-continuit-item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 3px;
  border: 1px solid rgba(180,148,90,0.12);
  transition: box-shadow 0.35s ease, border-color 0.35s ease;
}
.product-continuit-item:hover img {
  box-shadow: 0 10px 28px rgba(0,0,0,0.6);
  border-color: rgba(180,148,90,0.35);
}
.product-continuit-item span {
  font-family: var(--font-title);
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--c-copper);
  margin-top: 0.6rem;
  line-height: 1.4;
}
/* Slider Continui-T : flèches gauche/droite */
.product-continuit-wrap { position: relative; }
.continuit-arrow {
  position: absolute;
  top: calc(50% - 0.9rem); /* centrées sur l'image, au-dessus du libellé sous la vignette */
  transform: translateY(-50%);
  z-index: 6;
  width: 42px; height: 42px;
  border-radius: 50%;
  background: rgba(10,6,3,0.82);
  border: 1px solid rgba(180,148,90,0.35);
  color: var(--c-gold);
  font-size: 1.5rem; line-height: 1;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease, opacity 0.3s ease;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  box-shadow: 0 6px 18px rgba(0,0,0,0.5);
}
.continuit-arrow:hover { background: rgba(163,90,42,0.92); border-color: var(--c-copper); color: #fff; }
.continuit-arrow--prev { left: -8px; }
.continuit-arrow--next { right: -8px; }
.continuit-arrow[disabled] { opacity: 0; pointer-events: none; }
@media (max-width: 600px) {
  .continuit-arrow { width: 38px; height: 38px; font-size: 1.3rem; }
  .continuit-arrow--prev { left: 2px; }
  .continuit-arrow--next { right: 2px; }
}

/* ==========================================================================
   34. MANIFESTO EYEBROW (Le T vous présente)
   ========================================================================== */
.manifesto-eyebrow {
  font-family: var(--font-title);
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--c-copper);
  margin-bottom: 0.8rem !important;
}

/* ==========================================================================
   35. VERRES — Éléments & Teasing
   ========================================================================== */
.glass-element-badge {
  display: inline-block;
  font-family: var(--font-title);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-copper);
  border: 1px solid rgba(163,90,42,0.4);
  padding: 0.2rem 0.6rem;
  border-radius: 2px;
  margin: 0.3rem 0 0.5rem 0;
}
/* Éléments — couleurs propres */
.glass-el-terre {
  color: #C8794A;
  border-color: rgba(200,121,74,0.5);
  background: rgba(200,121,74,0.06);
  text-shadow: 0 0 12px rgba(200,121,74,0.3);
}
.glass-el-eau {
  color: #4A9BC0;
  border-color: rgba(74,155,192,0.5);
  background: rgba(74,155,192,0.06);
  text-shadow: 0 0 12px rgba(74,155,192,0.3);
}
.glass-el-feu {
  color: #D45030;
  border-color: rgba(212,80,48,0.5);
  background: rgba(212,80,48,0.06);
  text-shadow: 0 0 12px rgba(212,80,48,0.3);
}
.glass-el-air {
  color: #A0B4C0;
  border-color: rgba(160,180,192,0.45);
  background: rgba(160,180,192,0.05);
  text-shadow: 0 0 12px rgba(160,180,192,0.25);
}

/* Fromages — icône colorée, texte reste doré */
.cheese-origin-title {
  display: flex;
  align-items: center;
}
.cheese-origin-title::before {
  content: '';
  display: inline-block;
  width: 9px; height: 9px;
  border-radius: 50%;
  margin-right: 0.75rem;
  flex-shrink: 0;
  opacity: 0.9;
}
.abbey-orval    { color: var(--c-gold); }
.abbey-orval::before    { background: #6AAA44; box-shadow: 0 0 6px rgba(106,170,68,0.55); }
.abbey-chimay   { color: var(--c-gold); }
.abbey-chimay::before   { background: #4A7ABF; box-shadow: 0 0 6px rgba(74,122,191,0.55); }
.abbey-westmalle{ color: var(--c-gold); }
.abbey-westmalle::before{ background: #D4A820; box-shadow: 0 0 6px rgba(212,168,32,0.55); }
.abbey-trappe   { color: var(--c-gold); }
.abbey-trappe::before   { background: #C47228; box-shadow: 0 0 6px rgba(196,114,40,0.55); }
.abbey-france   { color: var(--c-gold); }
.abbey-france::before   { background: #B09060; box-shadow: 0 0 6px rgba(176,144,96,0.55); }
.glass-year-badge--gold {
  color: var(--c-gold);
  font-size: 0.78rem;
}
.glass-gallery-img--placeholder,
.glass-gallery-img--teasing {
  width: 100%;
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(180,148,90,0.04);
  border-bottom: 1px solid rgba(180,148,90,0.08);
}
.glass-photo-coming {
  font-family: var(--font-title);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-mut);
  opacity: 0.65;
}
.glass-teasing-icon {
  font-family: var(--font-disp);
  font-size: 4rem;
  color: rgba(180,148,90,0.15);
  user-select: none;
}
.glass-teasing-card {
  border-color: rgba(180,148,90,0.25);
  background: rgba(180,148,90,0.03);
}
.glass-teasing-text {
  font-style: italic;
}
.glass-gallery-desc + .glass-gallery-desc {
  margin-top: 0.25rem;
}

/* ==========================================================================
   36. COFFRET CTA — Fix alignement bouton
   ========================================================================== */


/* ==========================================================================
   37. MOMENT POPUP — Toast nouveauté
   ========================================================================== */
.moment-popup {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  z-index: 450;
  width: 270px;
  background: var(--c-wood);
  border: 1px solid rgba(180,148,90,0.3);
  padding: 1.3rem 1.5rem 1.2rem 1.3rem;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.55s cubic-bezier(0.33,1,0.68,1), transform 0.55s cubic-bezier(0.33,1,0.68,1);
  pointer-events: none;
  box-shadow: 0 12px 40px rgba(0,0,0,0.6);
}
/* Petit écran : la popup prend la largeur disponible, sans couvrir le back-to-top */
@media (max-width: 480px) {
  .moment-popup { left: 1rem; right: 4.5rem; width: auto; bottom: 1rem; }
}
.moment-popup.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.moment-popup-close {
  position: absolute;
  top: 0.55rem;
  right: 0.65rem;
  background: none;
  border: none;
  color: var(--c-mut);
  font-size: 0.72rem;
  cursor: pointer;
  padding: 0.2rem 0.3rem;
  line-height: 1;
  transition: color 0.2s ease;
}
.moment-popup-close:hover { color: var(--c-text); }
.moment-popup-badge {
  display: block;
  font-family: var(--font-title);
  font-size: 0.58rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--c-copper);
  margin-bottom: 0.55rem;
}
.moment-popup-title {
  font-family: var(--font-title);
  font-size: 1rem;
  color: var(--c-gold);
  font-weight: 500;
  margin-bottom: 0.45rem;
}
.moment-popup-desc {
  font-size: 0.82rem;
  color: var(--c-text);
  line-height: 1.5;
  margin-bottom: 0.2rem;
}
.moment-popup-sub {
  font-size: 0.77rem;
  color: var(--c-mut);
  font-style: italic;
  line-height: 1.4;
}

/* ==========================================================================
   38. BACK TO TOP
   ========================================================================== */
#back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 500;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(180,148,90,0.35);
  background: rgba(7,7,7,0.88);
  color: var(--c-gold);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.35s ease, transform 0.35s ease, border-color 0.2s ease;
  pointer-events: none;
  backdrop-filter: blur(6px);
}
#back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
#back-to-top:hover {
  border-color: rgba(180,148,90,0.7);
  color: var(--c-text);
}
.coffret-cta p { margin: 0 auto 0.5rem auto; }
.coffret-cta p:last-of-type { margin-bottom: 0; }
.coffret-cta .btn-copper { margin-top: 1.8rem; display: inline-block; }

/* ==========================================================================
   39. PAGE À PROPOS — Équipe
   ========================================================================== */
.apropos-team {
  display: flex;
  gap: 4rem;
  align-items: flex-start;
  max-width: 820px;
  margin: 3rem auto 0 auto;
}
@media (max-width: 700px) {
  .apropos-team { flex-direction: column; gap: 2.5rem; }
  .apropos-sep { display: none; }
}
.apropos-person { flex: 1; }
.apropos-sep {
  width: 1px;
  align-self: stretch;
  background: rgba(180,148,90,0.15);
  flex-shrink: 0;
}
.apropos-role {
  font-family: var(--font-title);
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-copper);
  margin-bottom: 0.5rem;
}
.apropos-name {
  font-family: var(--font-title);
  font-size: 1.6rem;
  color: var(--c-gold);
  margin-bottom: 1rem;
  font-weight: 400;
}
.apropos-desc {
  color: var(--c-mut);
  font-size: 0.95rem;
  line-height: 1.8;
}

/* ==========================================================================
   40. APROPOS — Photo de groupe La T-eam & Logo ATI
   ========================================================================== */
.apropos-team-photo {
  max-width: 640px;
  margin: 0 auto 3rem auto;
  border: 1px solid rgba(180,148,90,0.15);
  border-radius: 4px;
  overflow: hidden;
}
.apropos-photo-placeholder {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: rgba(20,14,12,0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.apropos-photo-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.apropos-photo-label {
  font-family: var(--font-title);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-mut);
  opacity: 0.6;
}
.ati-logo {
  height: 22px;
  width: auto;
  opacity: 0.85;
  filter: invert(1) brightness(0.85);
  vertical-align: middle;
}

/* ==========================================================================
   41. MOBILE GLOBAL — Fluidité & Beauté typographique (≤ 768px → ≤ 480px)
   ========================================================================== */

/* ── Tablette & petit écran ── */
@media (max-width: 768px) {
  /* Titres d'accordéon : taille fluide */
  .menu-accordion-trigger h3 {
    font-size: clamp(1.4rem, 5.5vw, 2rem);
    letter-spacing: 0.03em;
  }
  .menu-accordion-trigger { padding: 1.2rem 1.5rem; }
  .menu-accordion-content { padding: 0.5rem 1.5rem 2rem 1.5rem; }

  /* Noms plats : plus lisibles */
  .mi-name { font-size: clamp(0.9rem, 3.2vw, 1.05rem); }
  .mi-desc { font-size: clamp(0.82rem, 3vw, 1rem); }

  /* Sous-titres de sections */
  /* Sous-titres de catégorie : légèrement plus grands que les plats (.mi-name)
     pour marquer qu'ils chapeautent une sous-partie. Les petits labels (Croquettes…)
     gardent leur font-size inline, donc restent sous le sous-titre. */
  .menu-subhead { font-size: clamp(1.05rem, 4vw, 1.3rem); letter-spacing: 0.1em; }

  /* Tags charcuterie : plus compacts */
  .charcuterie-tag { font-size: clamp(0.62rem, 2.2vw, 0.72rem); padding: 0.35rem 0.75rem; }

  /* Notes softs : meilleure lisibilité */
  .softs-note { padding: 1rem 1.4rem; font-size: 0.9rem; }
  .softs-note strong { font-size: 0.95rem; }

  /* Cheese board : padding adapté */
  .cheese-board { padding: 6vw; gap: 2.5rem; }
  .cheese-grid { grid-template-columns: 1fr; gap: 1.2rem; }
  .cheese-name { font-size: clamp(1.2rem, 4.5vw, 1.6rem); }
  .cheese-piece { padding: 1.4rem; }

  /* Visual divider : moins haute */
  .visual-divider { height: 320px; margin-top: 4rem; }

  /* Continuit items : taille adaptée */
  .product-continuit-item { flex: 0 0 160px; }
  .product-continuit-item span { font-size: 0.58rem; }

  /* Selector Chartreuse : pleine largeur */
  .custom-selector-wrapper { max-width: 100%; }
  .selector-trigger { font-size: 0.95rem; padding: 1rem; }
  .selector-options li { padding: 1rem; font-size: 0.92rem; }

  /* Hero text : respiration */
  .hero-desc p { font-size: 0.95rem; line-height: 1.75; }
  .hero-tagline { font-size: clamp(0.6rem, 2.5vw, 0.8rem); }

  /* Manifesto text : taille fluide */
  .manifesto-text p { font-size: clamp(0.9rem, 3.2vw, 1.05rem); line-height: 1.85; }

  /* ── Nav mobile compacte ── */
  .nav-logo img { height: 46px; }
  .main-nav { padding: 0.8rem 0; }
  .main-nav.scrolled { padding: 0.65rem 0; }

  /* ── Hero dégagé sous la nav fixe (spécificité .std-section.intro-section
        pour passer outre le reset .std-section des requêtes plus petites) ── */
  .std-section.intro-section { padding-top: calc(62px + 6vh); padding-bottom: 7vh; }
  .intro-text-wrapper { padding: 28px 26px; }

  /* ── Accordéon secondaire (Épicerie & Charcuterie) : hiérarchie correcte,
        toujours plus petit que les titres principaux ── */
  .menu-accordion-card--secondary .menu-accordion-trigger h3 {
    font-size: clamp(1.05rem, 4vw, 1.3rem);
  }
}

/* ── Téléphone strict ── */
@media (max-width: 600px) {
  .page-header { padding: max(13vh, 140px) 0 5vh 0; }
  .page-title  { font-size: clamp(1.8rem, 9vw, 3rem); }

  /* Sections : respiration verticale resserrée */
  .std-section { padding: 4.5vh 0; }

  /* Titres de sections */
  .section-display { font-size: clamp(1.6rem, 7vw, 2.4rem); line-height: 1.2; }

  /* Footer */
  .footer-functional { padding: 7vh 0 4vh 0; }
  .footer-title { font-size: clamp(1.4rem, 6vw, 1.8rem); }
  .footer-mentions { margin-top: 3rem; }
  .footer-infos-grid { gap: 2rem; }

  /* Touch targets footer — uniquement les liens texte, PAS le bouton .btn-copper */
  .footer-functional a[href*="maps"]:not(.btn-copper),
  .footer-functional a[href^="tel"]:not(.btn-copper),
  .footer-functional a[href^="mailto"]:not(.btn-copper) {
    display: inline-flex; align-items: center;
    min-height: 44px; padding: 0.3rem 0.5rem;
  }

  /* CTA bouton : pleine largeur élégante */
  .btn-copper {
    display: block; min-height: 48px;
    padding: 1rem 2rem; text-align: center;
    width: 100%; max-width: 320px;
    margin-left: auto; margin-right: auto;
  }

  /* Manifesto box */
  .manifesto-box { padding: 1.8rem 1.2rem; }
  .separator-center { margin-bottom: 1.5rem; }
  .lead-text { font-size: 0.9rem; line-height: 1.8; }

  /* Sélection cards : hauteur réduite */
  .selection-card { height: 240px; }
  .card-overlay h3 { font-size: clamp(1rem, 4.5vw, 1.3rem); }

  /* Accordion : plus compact et lisible */
  .menu-accordion-trigger h3 { font-size: clamp(1.2rem, 5vw, 1.6rem); }
  .menu-accordion-trigger { padding: 1rem 1.2rem; }
  .menu-accordion-content { padding: 0.4rem 1.2rem 1.8rem 1.2rem; }

  /* Items de menu */
  .mi-name { font-size: clamp(0.88rem, 3.4vw, 1rem); letter-spacing: 0.03em; }
  .mi-desc { font-size: clamp(0.8rem, 3vw, 0.9rem); margin-top: 0.2rem; }
  .menu-item-row { padding: 0.6rem 0; }

  /* Softs note : texte aéré */
  .softs-note { font-size: 0.88rem; padding: 0.9rem 1.1rem; }

  /* Visual divider : hauteur mobile */
  .visual-divider { height: 220px; margin-top: 3rem; }

  /* Fromages */
  .cheese-origin-title { font-size: clamp(1rem, 4vw, 1.3rem); }
  .cheese-name { font-size: clamp(1.1rem, 4.5vw, 1.4rem); }
  .cheese-desc { font-size: 0.88rem; }
  .cheese-board { padding: 5vw; gap: 2rem; }

  /* Continuit slider */
  .product-continuit-item { flex: 0 0 140px; }
  .continuit-label { font-size: 0.58rem; letter-spacing: 0.18em; }

  /* Carte monde */
  .carte-filters { gap: 0.4rem; }
  .carte-filter-btn { font-size: 0.6rem; padding: 0.38rem 0.85rem; }
  .carte-stats { gap: 0.8rem; }
  .carte-stat { font-size: 0.6rem; }
  .carte-stat-num { font-size: 0.82rem; }
}

/* ==========================================================================
   42. MOBILE TOUCH — Fluidité maximale téléphone (≤ 480px)
   ========================================================================== */
@media (max-width: 480px) {

  /* ── Navigation ── */
  .nav-container { padding: 0 1rem; }
  .nav-logo img { height: 42px; }
  .nav-hamburger span { width: 22px; }

  /* ── Hero ── */
  .hero-tagline { font-size: 0.62rem; letter-spacing: 0.18em; }
  /* Sous-tagline doré : interlettrage resserré pour tenir sur UNE ligne (pas de coupure) */
  .hero-tagline-gold { font-size: 0.82rem; letter-spacing: 0.08em; }
  .hero-desc p { font-size: 0.88rem; line-height: 1.8; }
  .btn-primary { font-size: 0.7rem; padding: 0.85rem 2rem; letter-spacing: 0.18em; }
  /* Bloc hero un peu plus large → moins de retours à la ligne forcés */
  .intro-text-wrapper { padding: 26px 18px; }

  /* ── Sélection cards ── */
  .selection-grid { gap: 0.8rem; }
  .selection-card { height: 200px; border-radius: 3px; }
  .card-overlay h3 { font-size: 0.95rem; letter-spacing: 0.06em; }
  .card-discover { font-size: 0.65rem; }

  /* ── Manifesto ── */
  .manifesto-text p { font-size: 0.88rem; line-height: 1.9; }
  .manifesto-box { padding: 1.4rem 1rem; }

  /* ── Sections encore plus resserrées ── */
  .std-section { padding: 4vh 0; }

  /* ── Accordéons menu ── */
  .menu-accordion-trigger h3 { font-size: clamp(1.1rem, 4.8vw, 1.4rem); }
  .menu-accordion-card--secondary .menu-accordion-trigger h3 { font-size: clamp(0.95rem, 3.8vw, 1.2rem); }
  .menu-accordion-trigger { padding: 0.95rem 1rem; min-height: 52px; }
  .menu-accordion-content { padding: 0.4rem 1rem 1.6rem 1rem; }
  .menu-accordion-card { margin-bottom: 0.8rem; }

  /* ── Items plats ── */
  .mi-name { font-size: 0.88rem; letter-spacing: 0.02em; }
  .mi-desc { font-size: 0.78rem; line-height: 1.5; }
  .badge-moine-wrap img { height: 22px; }
  .badge-moine-wrap { height: 22px; }
  .badge-moine-wrap.maison, .badge-moine-wrap.maison img { height: 16px; }
  .menu-subhead { font-size: 1.05rem; letter-spacing: 0.08em; margin-top: 1.5rem; }

  /* Tags charcuterie : micro-scroll */
  .charcuterie-tags {
    display: flex; flex-wrap: wrap; gap: 0.3rem;
  }
  .charcuterie-tag { font-size: 0.6rem; padding: 0.3rem 0.65rem; }

  /* Softs note */
  .softs-note { font-size: 0.82rem; padding: 0.85rem 1rem; line-height: 1.75; }

  /* Continuit */
  .product-continuit-item { flex: 0 0 130px; }
  .product-continuit-item span { font-size: 0.56rem; line-height: 1.4; }

  /* Visual divider */
  .visual-divider { height: 180px; margin-top: 2.5rem; }
  .visual-divider-caption { font-size: 0.58rem; letter-spacing: 0.14em; }

  /* Fromages */
  .cheese-board { padding: 4vw; gap: 1.5rem; border-radius: 4px; }
  .cheese-piece { padding: 1.1rem; }
  .cheese-name { font-size: 1rem; }
  .cheese-desc { font-size: 0.82rem; }
  .cheese-grid { gap: 0.9rem; }

  /* Bières au fût */
  .fut-board { grid-template-columns: 1fr; }
  .fut-blanche, .fut-ambree, .fut-brune, .fut-blonde {
    grid-column: 1 !important; grid-row: auto !important;
  }
  .fut-block { padding: 1.4rem 1.2rem; border-right: none; }
  .fut-block-label { font-size: 0.62rem; }
  .fut-beer-name { font-size: 0.9rem; }
  .fut-beer-sub { font-size: 0.75rem; }

  /* Crypte */
  .crypt-card { padding: 1.2rem; gap: 1.5rem; }
  .crypt-title { font-size: clamp(1.2rem, 5vw, 1.6rem); }
  .crypt-sub { font-size: 0.82rem; }
  .selector-trigger { font-size: 0.88rem; padding: 0.9rem; }
  .selector-options li { font-size: 0.86rem; padding: 0.9rem 1rem; }

  /* Footer */
  .footer-infos-grid { grid-template-columns: 1fr; gap: 1.5rem; text-align: center; }
  .footer-title { font-size: clamp(1.3rem, 5.5vw, 1.6rem); }
  .footer-info-label { font-size: 0.58rem; }

  /* Touch feedback global */
  a, button, [role="button"] { -webkit-tap-highlight-color: transparent; }
  .selection-card, .menu-accordion-trigger, .btn-primary, .btn-copper,
  .carte-filter-btn, .cheese-piece { touch-action: manipulation; }
}

/* ==========================================================================
   43. SIGNATURE & ARTISANAT — détails de maison, pas de gadgets
   ========================================================================== */

/* Sélection de texte aux couleurs de la maison (au lieu du bleu système) */
::selection { background: rgba(163, 90, 42, 0.55); color: #F5F1E8; }

/* Scrollbar assortie au thème (desktop) */
html { scrollbar-color: rgba(163, 90, 42, 0.45) #0A0603; scrollbar-width: thin; }
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: #0A0603; }
::-webkit-scrollbar-thumb {
  background: rgba(163, 90, 42, 0.45);
  border-radius: 5px;
  border: 2px solid #0A0603;
}
::-webkit-scrollbar-thumb:hover { background: rgba(163, 90, 42, 0.7); }

/* Lettrine enluminée : première lettre en gothique doré, façon manuscrit d'abbaye */
.lettrine::first-letter {
  font-family: var(--font-disp);
  font-size: 3em;
  float: left;
  line-height: 0.75;
  padding: 0.08em 0.14em 0 0;
  color: var(--c-gold);
}

/* Colophon : le T gothique entre deux filets cuivre, comme une marque d'imprimeur */
.footer-colophon {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.1rem;
  margin-top: 3rem;
}
.footer-colophon::before,
.footer-colophon::after {
  content: '';
  width: 56px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(163, 90, 42, 0.55));
}
.footer-colophon::after { background: linear-gradient(270deg, transparent, rgba(163, 90, 42, 0.55)); }
.footer-colophon span {
  font-family: var(--font-disp);
  font-size: 1.5rem;
  color: var(--c-gold);
  opacity: 0.75;
  line-height: 1;
}
.footer-colophon + .footer-mentions { border-top: none; margin-top: 1rem; }

/* Horaires compacts + état d'ouverture dans les footers */
.footer-hours {
  font-family: var(--font-title);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-mut);
  margin-bottom: 0.9rem;
  text-wrap: balance;
}
.open-status {
  font-family: var(--font-title);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-mut);
  margin-bottom: 1.4rem;
}
.open-dot {
  display: inline-block;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--c-mut);
  margin-right: 0.5rem;
  vertical-align: 1px;
}
.open-status.is-open { color: var(--c-gold); }
.open-status.is-open .open-dot {
  background: var(--c-gold);
  box-shadow: 0 0 8px rgba(180, 148, 90, 0.8);
}

/* Fondu doux entre les pages (navigateurs récents, respecte reduced-motion) */
@media (prefers-reduced-motion: no-preference) {
  @view-transition { navigation: auto; }
}

/* ==========================================================================
   44. FORMULAIRE DE RÉSERVATION
   ========================================================================== */
/* Accroche et textes du formulaire : en Spectral comme toute la « voix » du site */
.resa-intro, .resa-success p { font-family: var(--font-serif); }
/* Accroche sur UNE seule ligne : taille fluide qui rétrécit sur petit écran plutôt que de couper */
.resa-intro {
  white-space: nowrap;
  font-size: clamp(0.6rem, 2.9vw, 1.05rem);
}

.resa-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem 1.2rem;
}
.resa-field--full { grid-column: 1 / -1; }
.resa-field label {
  display: block;
  font-family: var(--font-title);
  font-size: 0.66rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-copper-txt);
  margin-bottom: 0.45rem;
}
.resa-field input {
  width: 100%;
  background: rgba(7, 7, 7, 0.55);
  border: 1px solid rgba(180, 148, 90, 0.25);
  border-radius: 3px;
  color: var(--c-text);
  font-family: var(--font-serif);
  font-size: 1rem;             /* >= 16px : évite le zoom automatique iOS */
  padding: 0.8rem 0.95rem;
  transition: border-color 0.3s ease, background 0.3s ease;
  color-scheme: dark;          /* calendrier / horloge natifs en sombre */
}
.resa-field input::placeholder { color: rgba(143, 135, 122, 0.55); }
.resa-field input:focus {
  outline: none;
  border-color: var(--c-gold);
  background: rgba(7, 7, 7, 0.8);
}
/* Champ anti-spam : hors écran, invisible pour les humains */
.resa-hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.resa-submit {
  grid-column: 1 / -1;
  justify-self: center;
  margin-top: 0.6rem;
  min-width: 260px;
  cursor: pointer;
}
.resa-submit[disabled] { opacity: 0.55; cursor: wait; }

.resa-error {
  grid-column: 1 / -1;
  color: #C96A4A;
  font-size: 0.9rem;
  text-align: center;
  margin: 0.2rem 0 0;
}

.resa-success {
  text-align: center;
  border: 1px solid rgba(180, 148, 90, 0.3);
  border-left: 3px solid var(--c-copper);
  border-radius: 4px;
  padding: 2.2rem 1.6rem;
  background: rgba(20, 14, 12, 0.5);
}
.resa-success-title {
  font-family: var(--font-title);
  font-size: 1.15rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: 0.7rem;
}
.resa-success-note { color: var(--c-mut); font-size: 0.88rem; margin-top: 1rem; }
.resa-success-note a { color: var(--c-gold); font-weight: 600; text-decoration: none; }

@media (max-width: 600px) {
  .resa-form { grid-template-columns: 1fr; gap: 0.9rem; }
  .resa-field--full { grid-column: 1; }
  .resa-submit, .resa-error { grid-column: 1; }
}
