/* ==========================================================================
   Pyrus · Série Capsule II · Braud & Quennesson (démonstration conceptuelle)
   Tokens mesurés sur braud-quennesson.com le 2026-07-20 (inputs/da/DESIGN.md).
   Les noms de variables reprennent les rôles du kit Elementor pour faciliter
   le portage (--e-global-color-67bfad0 = ambre, etc.).
   ========================================================================== */

/* ---------- Fontes auto-hébergées (OFL) ---------- */
@font-face {
  font-family: "Sorts Mill Goudy";
  src: url("../fonts/sortsmillgoudy-400-latin.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Sorts Mill Goudy";
  src: url("../fonts/sortsmillgoudy-400italic-latin.woff2") format("woff2");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
/* Substitut OFL d'Acumin Pro (fonte variable, cf. DESIGN.md §2 licence) */
@font-face {
  font-family: "Archivo";
  src: url("../fonts/archivo-var-latin.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

/* ---------- Tokens ---------- */
:root {
  /* Palette kit Elementor mesurée */
  --noir: #000000;            /* --e-global-color-primary */
  --texte: #333333;           /* défaut thème Hello Elementor */
  --gris-hover: #616161;      /* --e-global-color-secondary */
  --blanc: #ffffff;           /* --e-global-color-455bc70 */
  --ambre: #f8af3b;           /* --e-global-color-67bfad0 */
  --olive: #929e5e;           /* --e-global-color-f126bd6 */
  --creme: #fcf4e3;           /* --e-global-color-3eab7b8 */

  --serif: "Sorts Mill Goudy", "Times New Roman", serif;
  --sans: "Archivo", "Helvetica Neue", Arial, sans-serif;

  /* Échelle display mesurée : 58/68 → 40/50 → 30/40 */
  --fs-display: 58px; --lh-display: 68px;
  --fs-h2: 50px;      --lh-h2: 70px;
  --fs-h4: 25px;      --lh-h4: 35px;
  --fs-lead: 18px;    --lh-lead: 36px;
  --fs-body: 18px;    --lh-body: 30px;
  --fs-spec: 18px;    --lh-spec: 22px;

  --contenu: 1068px;
  --pad-lat: 20px;
  /* Rythme premium : 40px titre→contenu (le site mesure 20px, cf. direction.md §2) */
  --gap-titre: 40px;
  --transition: 0.3s;
}

/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
body {
  margin: 0;
  background: var(--creme);
  color: var(--texte);
  font-family: var(--sans);
  font-size: var(--fs-body);
  line-height: calc(var(--lh-body) / var(--fs-body));
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
p { margin: 0 0 14.4px; }
h1, h2, h3 { margin: 0; font-weight: 400; }

/* Focus clavier visible partout (nav clavier exigée) */
:focus-visible {
  outline: 2px solid var(--noir);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 10001;
  background: var(--noir);
  color: var(--ambre);
  padding: 10px 20px;
  font: 500 11px/1 var(--sans);
  letter-spacing: 2.2px;
  text-transform: uppercase;
  text-decoration: none;
}
.skip-link:focus { left: 0; }

/* ---------- Composant pill (mesuré DESIGN.md §4) ---------- */
.pill {
  display: inline-block;
  font: 500 11px/11px var(--sans);
  letter-spacing: 2.2px;
  text-transform: uppercase;
  color: var(--noir);
  background: var(--blanc);
  border: 1px solid var(--noir);
  border-radius: 50px;
  padding: 10px 15px 5px;
  text-decoration: none;
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
}
.pill:hover, .pill:focus-visible { background: var(--noir); color: var(--blanc); }
.pill--disabled { opacity: 0.45; cursor: not-allowed; pointer-events: none; }

/* ---------- Age-gate ---------- */
.agegate {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(5px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.agegate[hidden] { display: none; }
.agegate__panel {
  background: var(--blanc);
  max-width: 460px;
  width: 100%;
  padding: 45px 30px;
  text-align: center;
}
.agegate__logo { margin: 0 auto 30px; width: 240px; }
.agegate__q { font: 300 18px/22px var(--sans); color: var(--noir); margin-bottom: 25px; }
.agegate__actions { display: flex; gap: 15px; justify-content: center; margin-bottom: 20px; }
.agegate__remember { font: 400 13px/1.4 var(--sans); color: var(--texte); display: inline-flex; gap: 8px; align-items: center; }
.agegate__legal { font: 400 11px/1.5 var(--sans); color: var(--gris-hover); margin: 20px 0 0; }

/* ---------- Header (91px, fixe comme la section sticky Elementor du site réel,
   z-index 99 mesuré ; overflow hidden pour clipper la pile de logos) ---------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 99;
  overflow: hidden;
  background: var(--blanc);
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}
/* Le header fixe sort le bandeau du flux : on compense sa hauteur */
body { padding-top: 91px; }
.site-header__inner {
  max-width: var(--contenu);
  margin: 0 auto;
  padding: 0 var(--pad-lat);
  height: 91px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.site-nav { display: flex; align-items: center; gap: 28px; }
.site-nav a {
  font: 500 11px/11px var(--sans);
  letter-spacing: 2.2px;
  text-transform: uppercase;
  color: var(--noir);
  text-decoration: none;
  transition: color var(--transition);
}
.site-nav a:hover { color: var(--gris-hover); }
/* Pile de logos glissante, valeurs mesurées sur l'officiel (journal R2) :
   pile de 180px, languette 81x79 en tete, logo horizontal 120px a 141px du haut ;
   etat scrolle = top -115px, transition top 500ms ease. */
.site-header__logo {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 160px;
  height: 91px;
  flex: 0 0 auto;
}
/* fiche-technique.html garde un logo horizontal simple dans le meme slot */
.site-header__logo > img { width: 120px; height: auto; }
.logo-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 180px;
  display: block;
  transition: top 500ms ease;
}
.site-header.is-scrolled .logo-slide { top: -115px; }
.logo-slide__languette {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 81px;
  height: 79px;
  /* boite 81x79 avec object-fit contain, comme le widget Elementor mesure */
  object-fit: contain;
}
.logo-slide__horizontal {
  position: absolute;
  top: 141px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: auto;
}
@media (prefers-reduced-motion: reduce) {
  .logo-slide { transition: none; }
}

.lang-switch { display: flex; align-items: center; gap: 6px; margin-left: 10px; }
.lang-switch__btn {
  font: 500 11px/11px var(--sans);
  letter-spacing: 2.2px;
  background: none;
  border: none;
  padding: 6px 2px;
  color: var(--gris-hover);
  cursor: pointer;
  transition: color var(--transition);
}
/* État actif distingué par couleur/casse uniquement (direction.md §3 : pas de soulignement) */
.lang-switch__btn.is-active { color: var(--noir); }
.lang-switch__sep { color: var(--gris-hover); font-size: 11px; }

/* Bandeau démo : discret mais présent */
.demo-banner {
  background: var(--noir);
  color: var(--blanc);
  text-align: center;
  font: 500 11px/11px var(--sans);
  letter-spacing: 2.2px;
  text-transform: uppercase;
  padding: 9px 20px 7px;
}

/* ---------- Sections génériques ---------- */
.kicker {
  font: 500 11px/11px var(--sans);
  letter-spacing: 2.2px;
  text-transform: uppercase;
  color: var(--noir);
  margin-bottom: 18px;
}
/* Pas de trait apres les kickers : les tirets a droite des sous-titres de
   sections ont ete rejetes en revue (round 2, correction 3). */
.display {
  font-family: var(--serif);
  font-size: var(--fs-display);
  line-height: calc(var(--lh-display) / var(--fs-display));
  text-transform: uppercase;
  color: var(--texte);
  margin-bottom: var(--gap-titre);
}
.lead {
  font-family: var(--serif);
  font-size: var(--fs-lead);
  line-height: calc(var(--lh-lead) / var(--fs-lead));
}

/* ---------- Scrollytelling (round 3) ----------
   Mécanique relevée sur oryzo.ai : l'objet reste épinglé au centre pendant
   toute la traversée du bloc, les contenus s'articulent autour de lui.
   .scrolly__stage est sticky sur 100vh avec une marge négative équivalente :
   les panneaux défilent par-dessus, la bouteille (canvas piloté par
   turntable.js) reste au centre jusqu'à la fin du bloc, puis est relâchée
   à l'approche du pied de page. */
.scrolly { position: relative; }
.scrolly__stage {
  /* taille et décalage de la bouteille, ajustés par media query (mobile :
     plus petite et plus basse pour laisser l'air au titre du hero) */
  --bottle-h: min(62vh, 600px);
  --bottle-shift: 0px;
  position: sticky;
  top: 0;
  height: 100vh;
  margin-bottom: -100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  pointer-events: none;
}
.scrolly__static img {
  height: var(--bottle-h);
  width: auto;
  transform: translateY(var(--bottle-shift));
  filter: drop-shadow(0 30px 40px rgba(51, 33, 5, 0.18));
}
/* Canvas monté : l'image statique reste dans l'arbre (alternative textuelle
   vivante pour les lecteurs d'écran, i18n comprise) mais est masquée
   visuellement. Pas de display:none, qui la sortirait de l'accessibilité. */
.scrolly__stage.is-live .scrolly__static {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
}
.scrolly__canvas {
  display: block;
  height: var(--bottle-h);
  transform: translateY(var(--bottle-shift));
}
/* Avant le premier dessin (is-live posé par turntable.js au premier draw
   réussi), le canvas vide est hors flux et invisible : l'image statique reste
   seule et centrée ; si toutes les frames échouent, elle le reste. */
.scrolly__stage:not(.is-live) .scrolly__canvas {
  position: absolute;
  visibility: hidden;
}
/* Pas de drop-shadow sur le canvas animé (recalcul par frame trop coûteux,
   mesure du round 2) : l'ombre au sol suffit. */
.scrolly__shadow {
  position: absolute;
  left: 50%;
  top: calc(50% + var(--bottle-h) / 2 - 6px);
  transform: translate(-50%, var(--bottle-shift));
  width: min(44vw, 300px);
  height: 26px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(51, 33, 5, 0.22) 0%, rgba(51, 33, 5, 0) 70%);
}

/* Panneaux : pleine hauteur, contenus dans des cartes latérales qui laissent
   le centre de l'écran à la bouteille. */
.scrolly__panels { position: relative; z-index: 2; }
.panel {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 130px 5vw 70px;
}
.panel--left { justify-content: flex-start; }
.panel--right { justify-content: flex-end; }
.panel__card {
  width: min(460px, 100%);
  background: var(--blanc);
  border: 1px solid rgba(51, 51, 51, 0.14);
  padding: 34px 34px 30px;
}
.panel__card--wide { width: min(560px, 100%); }
.panel__card--center { text-align: center; }
.panel__media {
  width: calc(100% + 68px);
  max-width: none;
  margin: -34px -34px 26px;
  height: 160px;
  object-fit: cover;
}
.panel__body { margin-bottom: 0; }
.display--panel {
  font-size: clamp(28px, 2.6vw, 40px);
  line-height: 1.25;
}

/* Panneau d'accueil : titre en haut, chiffres clés en pied, bouteille au
   centre. 118px = header fixe (91) + bandeau démo (27), déjà consommés
   au-dessus : sans cette déduction les chiffres clés passent sous le pli. */
.panel--hero {
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  min-height: calc(100vh - 118px);
  padding-top: 40px;
  padding-bottom: 34px;
}
/* Chiffres clés du hero : fine carte blanche (la bouteille, plus basse au
   repos car le stage sticky n'est pas encore collé, glisse derrière la carte
   au lieu de se superposer au texte ; même langage visuel que les panneaux) */
.panel__bottom {
  width: min(680px, 100%);
}
.hero__facts {
  background: var(--blanc);
  border: 1px solid rgba(51, 51, 51, 0.14);
  padding: 18px 16px 14px;
  width: 100%;
}
.scrolly-hint {
  margin: 0;
  width: 100%;
  background: var(--blanc);
  border: 1px solid rgba(51, 51, 51, 0.14);
  border-top: none;
  padding: 12px 10px 14px;
  font: 500 11px/11px var(--sans);
  letter-spacing: 2.2px;
  text-transform: uppercase;
}
.scrolly-hint a { color: var(--noir); text-decoration: none; }
.scrolly-hint a:hover { color: var(--gris-hover); }
.scrolly-hint__arrow { display: block; margin-top: 10px; color: var(--ambre); font-size: 14px; }

.hero__series {
  font: 500 11px/11px var(--sans);
  letter-spacing: 2.2px;
  text-transform: uppercase;
  color: var(--texte);
  margin-bottom: 22px;
}
.hero__series-num { color: var(--ambre); }
.hero__title {
  font-family: var(--serif);
  font-size: var(--fs-display);
  line-height: 1.17;
  text-transform: uppercase;
  color: var(--texte);
  letter-spacing: 0.04em;
}
.hero__facts {
  display: flex;
  justify-content: center;
  gap: clamp(28px, 6vw, 80px);
  margin: 0;
  padding: 30px 22px 26px;
}
.fact dt {
  font: 500 11px/11px var(--sans);
  letter-spacing: 2.2px;
  text-transform: uppercase;
  color: var(--gris-hover);
  margin-bottom: 12px;
}
.fact dd {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(21px, 2.2vw, 27px);
  line-height: 1.2;
  color: var(--texte);
}

/* Timeline élevage */
.timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  border-left: 1px solid rgba(51, 51, 51, 0.25);
}
.timeline__step { padding: 0 0 28px 26px; position: relative; }
.timeline__step:last-child { padding-bottom: 0; }
.timeline__step::before {
  content: "";
  position: absolute;
  left: -4px;
  top: 8px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--ambre);
}
.timeline__date {
  font: 500 11px/11px var(--sans);
  letter-spacing: 2.2px;
  text-transform: uppercase;
  color: var(--gris-hover);
}
.timeline__label {
  font-family: var(--serif);
  font-size: var(--fs-h4);
  line-height: calc(var(--lh-h4) / var(--fs-h4));
  margin: 8px 0 6px;
}
.timeline__step p { margin-bottom: 0; font-weight: 300; font-size: var(--fs-spec); line-height: 1.55; }

/* Notes aromatiques */
.notes-quote {
  margin: 0 0 34px;
  padding: 0;
  border-left: 2px solid var(--ambre);
  padding-left: 24px;
}
.notes-quote p {
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  line-height: 1.65;
  margin-bottom: 12px;
}
.notes-quote cite { font: 300 13px/1.5 var(--sans); font-style: normal; color: var(--gris-hover); }
.tasting-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  margin: 0;
}
.tasting-grid__cell { border: 1px solid rgba(51, 51, 51, 0.18); padding: 18px 16px; }
.tasting-grid__cell dt {
  font: 500 11px/11px var(--sans);
  letter-spacing: 2.2px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.tasting-grid__cell dd { margin: 0; }
.tasting-grid__todo { font: italic 300 15px/1.5 var(--serif); color: var(--gris-hover); }

/* ---------- Rareté (chiffres empilés dans la carte du panneau) ---------- */
.rarity__figures {
  display: grid;
  gap: 28px;
  margin: 0 0 28px;
}
.rarity__num {
  display: block;
  font-family: var(--serif);
  font-size: 44px;
  line-height: 1.17;
  color: var(--texte);
}
.rarity__figure:nth-child(3) .rarity__num { color: var(--ambre); }
.rarity__label {
  display: block;
  margin-top: 12px;
  font: 300 var(--fs-spec) / 1.45 var(--sans);
}
.rarity__note {
  max-width: 560px;
  margin: 0 auto;
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  line-height: 1.8;
}

/* ---------- Où acheter (dans la carte large du panneau) ---------- */
.where__intro { max-width: 620px; margin: -14px auto 34px; }
.where__tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 34px;
}
.where__tab {
  font: 500 11px/11px var(--sans);
  letter-spacing: 2.2px;
  text-transform: uppercase;
  color: var(--noir);
  background: var(--blanc);
  border: 1px solid rgba(0, 0, 0, 0.35);
  border-radius: 50px;
  padding: 10px 15px 5px;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}
.where__tab.is-active {
  background: var(--noir);
  color: var(--blanc);
  border-color: var(--noir);
}
.where__panel {
  max-width: 620px;
  margin: 0 auto;
  border: 1px solid rgba(51, 51, 51, 0.18);
  padding: 34px 30px 26px;
  background: var(--blanc);
}
.where__seller {
  font-family: var(--serif);
  font-size: var(--fs-h4);
  line-height: calc(var(--lh-h4) / var(--fs-h4));
  margin-bottom: 8px;
}
.where__status {
  font: 500 11px/16px var(--sans);
  letter-spacing: 2.2px;
  text-transform: uppercase;
  color: var(--olive);
  margin-bottom: 16px;
}
.where__status--out { color: var(--ambre); }
.where__panel p:last-child { margin-bottom: 0; font-weight: 300; font-size: var(--fs-spec); line-height: 1.6; }

.demo-example {
  max-width: 620px;
  margin: 30px auto 0;
  border: 1px dashed rgba(51, 51, 51, 0.35);
  padding: 30px 30px 34px;
}
.demo-example__tag {
  font: 500 10px/10px var(--sans);
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gris-hover);
  margin-bottom: 16px;
}
.demo-example h3 {
  font-family: var(--serif);
  font-size: var(--fs-h4);
  margin-bottom: 10px;
}
.demo-example p { font-weight: 300; font-size: var(--fs-spec); line-height: 1.6; }

.disclaimer {
  max-width: 640px;
  margin: 0 auto;
  padding: 20px var(--pad-lat) 60px;
  text-align: center;
  font: 300 13px/1.7 var(--sans);
  color: var(--gris-hover);
}

/* ---------- Footer (bloc noir mesuré, photo chai à droite) ---------- */
.site-footer {
  background: var(--noir) url("../img/footer-chai.webp") no-repeat 100% 50%;
  background-size: auto 100%;
  color: var(--blanc);
  padding: 55px var(--pad-lat) 30px;
}
.site-footer__inner {
  max-width: var(--contenu);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  align-items: flex-start;
  justify-content: space-between;
}
.site-footer__brand img { width: 247px; }
.site-footer__baseline {
  font-family: var(--serif);
  font-style: italic;
  font-size: 15px;
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.85);
}
.site-footer__nav { display: flex; flex-direction: column; gap: 14px; }
.site-footer__nav a {
  font: 500 13px/13px var(--sans);
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--blanc);
  text-decoration: none;
  transition: color var(--transition);
}
.site-footer__nav a:hover { color: var(--ambre); }
.site-footer__contact { display: flex; flex-direction: column; gap: 12px; }
.site-footer__contact img { width: 118px; }
.site-footer__amber {
  font: 500 12px/12px var(--sans);
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ambre);
  text-decoration: none;
  margin: 0;
}
.site-footer__legal {
  max-width: var(--contenu);
  margin: 45px auto 0;
  font: 300 11px/1.8 var(--sans);
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
}

/* ---------- Révélation au scroll ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
.no-observer .reveal, .reduced-motion .reveal { opacity: 1; transform: none; transition: none; }

/* ---------- prefers-reduced-motion : fallback statique élégant ----------
   turntable.js ne se monte pas (bouteille statique, aucune séquence). */
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .pill, .site-nav a, .where__tab, .lang-switch__btn { transition: none; }
}

/* ---------- Responsive ---------- */
/* Sous 1100px, les zones latérales sont trop étroites pour les cartes :
   elles passent en pleine largeur, ancrées en bas du panneau ; la bouteille
   épinglée reste visible au centre entre deux cartes. */
@media (max-width: 1099px) {
  .scrolly__stage { --bottle-h: min(46vh, 600px); --bottle-shift: 6vh; }
  /* 140vh par panneau : les cartes (souvent plus hautes que l'écran) gardent
     des fenêtres de respiration entre elles, où la bouteille apparaît seule */
  .panel,
  .panel--left,
  .panel--right { min-height: 140vh; justify-content: center; align-items: flex-end; padding: 110px var(--pad-lat) 8vh; }
  /* Hero mobile : titre en haut, chiffres clés dans une fine carte blanche en
     pied (la bouteille passe derrière la carte, le centre reste dégagé).
     140px = header + bandeau démo sur deux lignes. */
  .panel--hero {
    justify-content: space-between;
    align-items: center;
    min-height: calc(100vh - 140px);
    padding: 20px var(--pad-lat) 20px;
  }
  .panel__card, .panel__card--wide { width: 100%; max-width: 540px; }
  .panel__bottom { max-width: 540px; }
  .hero__facts { flex-wrap: wrap; gap: 16px 24px; justify-content: space-around; padding: 22px 12px 18px; }
  .fact dd { font-size: 15px; }
  .fact dt { margin-bottom: 6px; }
}

@media (max-width: 900px) {
  .site-nav--left { display: none; }
  .site-nav--right a { display: none; }
  .site-header__inner { justify-content: center; position: relative; }
  .lang-switch { position: absolute; right: var(--pad-lat); top: 50%; transform: translateY(-50%); margin: 0; }
  /* la bouteille épinglée (stage z-index 1) passe DERRIÈRE le pied de page :
     sur petit écran elle le recouvrait au lieu d'empiéter élégamment */
  .site-footer { position: relative; z-index: 2; }
}

@media (max-width: 768px) {
  :root {
    --fs-display: 40px; --lh-display: 50px;
    --fs-h2: 30px; --lh-h2: 40px;
    --fs-h4: 22px; --lh-h4: 35px;
    --fs-lead: 15px; --lh-lead: 36px;
    --fs-body: 15px; --lh-body: 30px;
    --fs-spec: 15px; --lh-spec: 22px;
    --gap-titre: 30px;
  }
  .display--panel { font-size: 26px; }
  .panel__card { padding: 26px 22px 24px; }
  .panel__media { width: calc(100% + 44px); margin: -26px -22px 22px; height: 130px; }
  .tasting-grid { grid-template-columns: 1fr; }
  .site-footer { background-image: none; }
  .site-footer__inner { flex-direction: column; align-items: center; text-align: center; gap: 36px; }
  .site-footer__contact { align-items: center; }
}

@media (max-width: 480px) {
  :root { --fs-display: 30px; --lh-display: 40px; }
  .hero__facts { flex-wrap: wrap; gap: 22px 34px; justify-content: center; }
  .agegate__actions { flex-direction: row; }
}

/* ---------- Impression ---------- */
@media print {
  .agegate, .demo-banner, .skip-link { display: none !important; }
}

/* ---------- Photos de panneau au cadrage adapté à leur format natif
   (retour Alexis 22-07 : le bandeau 160px coupait le verre et la bouteille).
   Déclarées en fin de fichier pour primer sur la hauteur mobile de 130px. ---------- */
.panel__media--fut {
  height: auto;
  aspect-ratio: 4 / 3;
  object-position: 50% 36%;
}
.panel__media--carre {
  height: auto;
  aspect-ratio: auto;
}

/* Liens revendeurs de la section Où acheter : le paragraphe de lien devient le
   dernier enfant du panneau, la description garde donc son style via .where__desc */
.where__desc {
  font-weight: 300;
  font-size: var(--fs-spec);
  line-height: 1.6;
}
.where__meta {
  margin-bottom: 0;
  font-size: var(--fs-spec);
}
.where__meta a {
  color: var(--ambre);
  text-underline-offset: 3px;
}
