/* ============================================================
   πKOL — Vins Naturels d'Afrique du Sud
   Design system : Abolition / Comfortaa / DIN Condensed / Caveat
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Caveat:wght@400;700&display=swap');

@font-face { font-family: 'Comfortaa'; src: url('../fonts/Comfortaa-Light.ttf') format('truetype'); font-weight: 300; font-style: normal; font-display: swap; }
@font-face { font-family: 'Comfortaa'; src: url('../fonts/Comfortaa-Regular.ttf') format('truetype'); font-weight: 400; font-style: normal; font-display: swap; }
@font-face { font-family: 'Comfortaa'; src: url('../fonts/Comfortaa-Bold.ttf') format('truetype'); font-weight: 700; font-style: normal; font-display: swap; }
@font-face { font-family: 'Abolition'; src: url('../fonts/Abolition.ttf') format('truetype'); font-weight: 400; font-style: normal; font-display: swap; }
@font-face { font-family: 'CoolveticaC'; src: url('../fonts/coolvetica-compressed.otf') format('opentype'); font-weight: 400; font-style: normal; font-display: swap; }
@font-face { font-family: 'DIN Condensed'; src: url('../fonts/DINCondensed-Bold.ttf') format('truetype'); font-weight: 700; font-style: normal; font-display: swap; }

:root {
  --rouge: #C8311A; --rouge-dark: #9B2313; --rouge-light: #E04B31;
  --noir: #1A1612; --anthracite: #2D2926; --charcoal: #4A4440;
  --or: #C9973A; --or-light: #E0B55A;
  --bordeaux: #7B2030;
  --creme: #F5EFE0; --creme-dark: #EDE4CA; --papier: #F9F5EC; --blanc: #FFFFFF;

  --font-display: 'Abolition', Impact, sans-serif;
  --font-display-alt: 'CoolveticaC', 'Abolition', sans-serif;
  --font-condensed: 'DIN Condensed', 'Arial Narrow', sans-serif;
  --font-body: 'Comfortaa', system-ui, sans-serif;
  --font-hand: 'Caveat', cursive;

  /* ── Typographie système ── */
  --text-max-ch: 68ch;
  --lh-body: 1.75;
  --lh-heading: 1.05;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

.skip-link {
  position: absolute;
  top: -999px;
  left: 0;
  background: var(--rouge);
  color: var(--blanc);
  padding: 12px 24px;
  font-family: var(--font-condensed);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  z-index: 9999;
}
.skip-link:focus { top: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--papier);
  color: var(--noir);
  font-family: var(--font-body);
  font-weight: 400;
  /* clip (et non hidden) : empeche le debordement horizontal SANS faire du body
     un conteneur de defilement — evite le bug de repaint (voile blanc au scroll
     molette avec la nav sticky sous Chromium). */
  overflow-x: clip;
  line-height: var(--lh-body);
  text-wrap: pretty;
  hyphens: auto;
  -webkit-hyphenate-limit-chars: 6 3 2;
  hyphenate-limit-chars: 6 3 2;
  hyphenate-limit-lines: 3;
  overflow-wrap: break-word;
}

img { max-width: 100%; display: block; }
a { color: inherit; }

/* ── Typographie — headings — lutte contre les veuves ── */
h1, h2, h3, h4, h5, h6 { text-wrap: balance; }
.section-title, .hero-title, .terroir-title,
.winemakers .section-title, .mentors-title,
.contract-title, .apropos-title, .detail-name,
.winemakers-quote, .mix-banner h3, .who-teaser-title,
.apropos-chapter-title, .newsletter-card-title {
  text-wrap: balance;
}

/* ── BREADCRUMB ── */
.breadcrumb {
  background: var(--noir);
  padding: 8px 48px;
  border-bottom: 1px solid rgba(245, 239, 224, 0.06);
}
.breadcrumb ol {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-condensed);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(245, 239, 224, 0.35);
  margin: 0;
  padding: 0;
}
.breadcrumb li { display: flex; align-items: center; gap: 6px; }
.breadcrumb li::after { content: "›"; font-size: 14px; font-weight: 400; color: rgba(245, 239, 224, 0.2); }
.breadcrumb li:last-child::after { content: ""; }
.breadcrumb a { color: rgba(245, 239, 224, 0.35); text-decoration: none; transition: color 150ms ease; }
.breadcrumb a:hover { color: var(--creme); }
.breadcrumb li[aria-current="page"] { color: rgba(245, 239, 224, 0.65); }

@media (max-width: 960px) {
  .breadcrumb { padding: 8px 24px; }
}

/* ── ALCOOL DISCLAIMER STRIP ── */
.alcohol-strip {
  background: var(--noir);
  color: rgba(245, 239, 224, 0.5);
  font-family: var(--font-condensed);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-align: center;
  padding: 6px 16px;
  border-bottom: 1px solid rgba(245, 239, 224, 0.08);
}

/* ── NAV ── */
nav.site-nav {
  background: var(--noir);
  padding: 0 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  position: sticky;
  top: 0;
  z-index: 100;
  /* Promotion sur couche GPU : evite la trainee blanche au scroll (bug de
     repaint des en-tetes sticky sous Chromium). */
  will-change: transform;
  transform: translateZ(0);
}
.nav-logo { display: flex; flex-direction: column; align-items: center; gap: 0; text-decoration: none; }
.nav-logo .pi { font-family: var(--font-display); font-size: 26px; color: var(--or); line-height: 1; }
.nav-logo .kol { font-family: var(--font-condensed); font-size: 11px; font-weight: 700; letter-spacing: 0.22em; color: var(--rouge); text-transform: uppercase; line-height: 1; }
.nav-links { display: flex; gap: 32px; }
.nav-links a {
  font-family: var(--font-condensed);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(245, 239, 224, 0.6);
  text-decoration: none;
  transition: color 150ms ease;
  white-space: nowrap;
}
.nav-links a:hover, .nav-links a.active { color: var(--creme); }
.nav-cta {
  font-family: var(--font-condensed);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: var(--rouge);
  color: var(--blanc);
  border: none;
  padding: 10px 20px;
  cursor: pointer;
  transition: background 150ms ease;
  text-decoration: none;
  display: inline-block;
}
.nav-cta:hover { background: var(--rouge-dark); }

.nav-burger { display: none; background: transparent; border: none; color: var(--creme); cursor: pointer; padding: 8px; }
.nav-burger svg { width: 24px; height: 24px; }

/* ── HERO ── */
.hero {
  background: var(--noir);
  min-height: 540px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  position: relative;
}
.hero-left { padding: 64px 48px; display: flex; flex-direction: column; justify-content: center; position: relative; z-index: 2; }
.hero-eyebrow { font-family: var(--font-condensed); font-size: 11px; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: var(--rouge); margin-bottom: 16px; }
.hero-title { font-family: var(--font-display); font-size: 88px; color: var(--creme); line-height: 0.88; letter-spacing: 0.01em; }
.hero-title em { font-style: normal; color: var(--rouge); }
.hero-sub { font-family: var(--font-condensed); font-size: 13px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(245, 239, 224, 0.5); margin-top: 20px; line-height: 1.6; }
.hero-hand { font-family: var(--font-hand); font-size: 22px; color: rgba(245, 239, 224, 0.7); margin-top: 12px; }
.hero-actions { display: flex; gap: 12px; margin-top: 32px; flex-wrap: wrap; }

.btn-primary {
  font-family: var(--font-condensed);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: var(--rouge);
  color: var(--blanc);
  border: none;
  padding: 14px 28px;
  cursor: pointer;
  transition: background 150ms ease;
  text-decoration: none;
  display: inline-block;
}
.btn-primary:hover { background: var(--rouge-dark); }

.btn-secondary {
  font-family: var(--font-condensed);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: transparent;
  color: var(--creme);
  border: 2px solid rgba(245, 239, 224, 0.3);
  padding: 12px 26px;
  cursor: pointer;
  transition: border-color 150ms ease, color 150ms ease;
  text-decoration: none;
  display: inline-block;
}
.btn-secondary:hover { border-color: var(--creme); }

.btn-secondary.dark { color: var(--noir); border-color: rgba(26, 22, 18, 0.3); }
.btn-secondary.dark:hover { border-color: var(--noir); }

.hero-right { position: relative; overflow: hidden; }
.hero-right .bottle-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  padding: 32px;
  filter: contrast(1.05);
}
.hero-stain { position: absolute; bottom: -30px; left: -20px; width: 180px; opacity: 0.15; pointer-events: none; }

/* ── MANIFESTE STRIP ── */
.manifeste {
  background: var(--rouge);
  padding: 16px 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  overflow: hidden;
}
.manifeste-text { font-family: var(--font-condensed); font-size: 11px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--blanc); white-space: nowrap; }
.manifeste-sep { color: rgba(255, 255, 255, 0.4); margin: 0 16px; }

/* ── SECTIONS ── */
.section { padding: 80px 48px; }
.section-narrow { max-width: 1280px; margin: 0 auto; }
.section-header { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 40px; flex-wrap: wrap; gap: 16px; }
.section-overline { font-family: var(--font-condensed); font-size: 11px; font-weight: 700; letter-spacing: 0.25em; text-transform: uppercase; color: var(--rouge); margin-bottom: 8px; }
.section-title { font-family: var(--font-display); font-size: 52px; color: var(--noir); line-height: 0.95; }
.section-link { font-family: var(--font-condensed); font-size: 12px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--rouge); text-decoration: none; }
.section-link:hover { color: var(--rouge-dark); }

/* ── WINE GRID ── */
.wine-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.wine-card {
  background: var(--creme);
  cursor: pointer;
  transition: transform 200ms ease, box-shadow 200ms ease;
  display: flex;
  flex-direction: column;
  border: none;
  text-align: left;
  font: inherit;
  color: inherit;
  padding: 0;
}
.wine-card:hover { transform: translateY(-4px) scale(1.02); box-shadow: 4px 12px 40px rgba(26, 22, 18, 0.22); }
.wine-card.active { outline: 2px solid var(--rouge); }
.wine-card.disabled { opacity: 0.5; cursor: not-allowed; }
.wine-card.disabled:hover { transform: none; box-shadow: none; }
.wine-card-img { width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; }
.wine-card.contain .wine-card-img { object-fit: contain; background: var(--blanc); }
.wine-card-body { padding: 14px 16px; flex: 1; }
.wine-card-tag { font-family: var(--font-condensed); font-size: 10px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--rouge); }
.wine-card-name { font-family: var(--font-display); font-size: 28px; color: var(--noir); line-height: 1; margin-top: 4px; letter-spacing: 0.01em; }
.wine-card-grape { font-family: var(--font-condensed); font-size: 11px; color: var(--charcoal); letter-spacing: 0.06em; margin-top: 6px; }
.wine-card-footer { padding: 12px 16px; border-top: 1px solid rgba(26, 22, 18, 0.1); display: flex; justify-content: space-between; align-items: center; gap: 8px; }
.wine-card-price { font-family: var(--font-display); font-size: 20px; color: var(--noir); }
.wine-card-price .unit { font-family: var(--font-condensed); font-size: 9px; color: var(--charcoal); letter-spacing: 0.1em; text-transform: uppercase; margin-left: 4px; }
.wine-card-btn {
  font-family: var(--font-condensed);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--noir);
  color: var(--creme);
  border: none;
  padding: 8px 14px;
  cursor: pointer;
  transition: background 150ms ease;
}
.wine-card-btn:hover { background: var(--rouge); }
.wine-card.disabled .wine-card-btn { background: var(--charcoal); }
.wine-card-btn--disabled { background: var(--charcoal) !important; cursor: not-allowed; }

/* ── DETAIL PANEL ── */
.detail-panel {
  background: var(--noir);
  padding: 64px 48px;
  display: none;
  grid-template-columns: 1fr 2fr;
  gap: 56px;
  align-items: start;
  scroll-margin-top: 80px;
}
.detail-panel.open { display: grid; }
.detail-img-wrap { position: relative; }
.detail-img { width: 100%; object-fit: contain; max-height: 420px; }
.detail-img.contain { background: var(--blanc); padding: 24px; }
.detail-stain { position: absolute; bottom: -20px; right: -20px; width: 140px; opacity: 0.2; pointer-events: none; }
.detail-close { font-family: var(--font-condensed); font-size: 11px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; background: transparent; border: none; color: rgba(245, 239, 224, 0.4); cursor: pointer; margin-bottom: 24px; padding: 0; display: flex; align-items: center; gap: 6px; }
.detail-close:hover { color: var(--creme); }
.detail-tag { font-family: var(--font-condensed); font-size: 11px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--rouge); }
.detail-name { font-family: var(--font-display); font-size: 72px; color: var(--creme); line-height: 0.88; letter-spacing: 0.01em; margin-top: 8px; }
.detail-grape { font-family: var(--font-condensed); font-size: 13px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(245, 239, 224, 0.4); margin-top: 12px; }
.detail-desc { font-family: var(--font-body); font-size: 14px; color: rgba(245, 239, 224, 0.7); line-height: var(--lh-body); margin-top: 16px; max-width: var(--text-max-ch, 540px); text-wrap: pretty; hyphens: auto; -webkit-hyphenate-limit-chars: 6 3 2; hyphenate-limit-chars: 6 3 2; overflow-wrap: break-word; }
.detail-divider { height: 1px; background: rgba(245, 239, 224, 0.1); margin: 24px 0; }
.detail-sublabel { font-family: var(--font-condensed); font-size: 10px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--or); margin-bottom: 8px; }
.detail-subvalue { font-family: var(--font-condensed); font-size: 13px; font-weight: 600; letter-spacing: 0.08em; color: rgba(245, 239, 224, 0.55); line-height: 1.6; }
.detail-price-row { display: flex; align-items: baseline; gap: 16px; margin-top: 24px; flex-wrap: wrap; }
.detail-price { font-family: var(--font-display); font-size: 44px; color: var(--creme); }
.detail-price-unit { font-family: var(--font-condensed); font-size: 11px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(245, 239, 224, 0.5); }
.detail-actions { display: flex; gap: 12px; margin-top: 28px; flex-wrap: wrap; }
.detail-actions .btn-primary, .detail-actions .btn-secondary { font-size: 14px; padding: 16px 32px; }
.detail-fiche-btn { border-color: var(--creme); border-width: 2px; }
.detail-fiche-btn:hover { background: var(--creme); color: var(--noir); }
.detail-films-link { display: inline-block; margin-top: 16px; font-family: var(--font-condensed); font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(245, 239, 224, 0.55); text-decoration: underline; text-underline-offset: 3px; transition: color 150ms ease; }
.detail-films-link:hover { color: var(--creme); }

/* ── MIX PACK BANNER ── */
.mix-banner {
  background: var(--creme);
  padding: 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.mix-banner-img-wrap { position: relative; }
.mix-banner-img { width: 100%; aspect-ratio: 1/1; object-fit: cover; background: var(--noir); }
.mix-banner h3 { font-family: var(--font-display); font-size: 48px; color: var(--noir); line-height: 0.95; margin-bottom: 12px; }
.mix-banner p { font-family: var(--font-body); font-size: 14px; color: var(--anthracite); line-height: 1.65; margin-bottom: 20px; max-width: 480px; text-wrap: pretty; }
.mix-banner .price-row { display: flex; align-items: baseline; gap: 16px; margin-bottom: 24px; }
.mix-banner .price { font-family: var(--font-display); font-size: 36px; color: var(--noir); }
.mix-banner .price-unit { font-family: var(--font-condensed); font-size: 11px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--charcoal); }

/* ── TERROIR SECTION ── */
.terroir {
  background: var(--creme-dark);
  padding: 80px 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.terroir-img-wrap { position: relative; }
.terroir-img { width: 100%; aspect-ratio: 4/3; object-fit: cover; filter: sepia(15%) contrast(1.05); }
.terroir-overline { font-family: var(--font-condensed); font-size: 10px; font-weight: 700; letter-spacing: 0.25em; text-transform: uppercase; color: var(--rouge); margin-bottom: 12px; }
.terroir-title { font-family: var(--font-display); font-size: 48px; color: var(--noir); line-height: 0.95; margin-bottom: 16px; }
.terroir-body { font-family: var(--font-body); font-size: 14px; color: var(--anthracite); line-height: var(--lh-body); text-wrap: pretty; hyphens: auto; -webkit-hyphenate-limit-chars: 6 3 2; hyphenate-limit-chars: 6 3 2; overflow-wrap: break-word; }
.terroir-facts { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 24px; }
.fact { padding: 14px 16px; background: rgba(26, 22, 18, 0.05); border-left: 3px solid var(--rouge); }
.fact-val { font-family: var(--font-condensed); font-size: 20px; font-weight: 800; color: var(--noir); line-height: 1.1; }
.fact-label { font-family: var(--font-condensed); font-size: 10px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--charcoal); margin-top: 4px; }

/* ── BRAND / WOPE STRIP ── */
.brand-strip {
  background: var(--noir);
  padding: 48px;
  text-align: center;
  color: var(--creme);
}
.brand-strip .quote {
  font-family: var(--font-display);
  font-size: 36px;
  line-height: 1.1;
  max-width: 720px;
  margin: 0 auto 16px;
  color: var(--creme);
}
.brand-strip .quote em { font-style: normal; color: var(--rouge); }
.brand-strip .signature { font-family: var(--font-hand); font-size: 22px; color: rgba(245, 239, 224, 0.6); }

/* ── LIVRAISON / FAQ ── */
.livraison { padding: 80px 48px; background: var(--papier); }
.livraison-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 1280px; margin: 0 auto; }
.livraison-card { padding: 24px; background: var(--creme); border-left: 3px solid var(--rouge); }
.livraison-card h4 { font-family: var(--font-condensed); font-size: 14px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--noir); margin-bottom: 8px; }
.livraison-card p { font-family: var(--font-body); font-size: 13px; color: var(--anthracite); line-height: var(--lh-body); text-wrap: pretty; hyphens: auto; -webkit-hyphenate-limit-chars: 6 3 2; hyphenate-limit-chars: 6 3 2; overflow-wrap: break-word; }

/* ── FOOTER ── */
footer.site-footer {
  background: var(--noir);
  padding: 48px;
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 32px;
  align-items: center;
}
.footer-logo { display: flex; flex-direction: column; align-items: flex-start; }
.footer-logo .pi { font-family: var(--font-display); font-size: 32px; color: var(--or); line-height: 1; }
.footer-logo .kol { font-family: var(--font-condensed); font-size: 13px; font-weight: 700; letter-spacing: 0.22em; color: var(--rouge); text-transform: uppercase; }
.footer-copy { font-family: var(--font-condensed); font-size: 10px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(245, 239, 224, 0.4); text-align: center; line-height: 1.7; }
.footer-copy a { color: rgba(245, 239, 224, 0.7); text-decoration: none; transition: color 150ms ease; }
.footer-copy a:hover { color: var(--creme); }
.footer-slogan { font-family: var(--font-hand); font-size: 18px; color: rgba(245, 239, 224, 0.6); text-align: right; line-height: 1.3; }

/* ── AGE GATE MODAL ── */
.age-gate {
  position: fixed;
  inset: 0;
  background: rgba(26, 22, 18, 0.96);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 24px;
}
.age-gate.show { display: flex; }
.age-gate-card {
  background: var(--creme);
  padding: 56px 48px;
  max-width: 480px;
  width: 100%;
  text-align: center;
  border-top: 4px solid var(--rouge);
}
.age-gate-pi { font-family: var(--font-display); font-size: 80px; color: var(--rouge); line-height: 1; }
.age-gate-title { font-family: var(--font-display); font-size: 32px; color: var(--noir); line-height: 1; margin-top: 16px; }
.age-gate-sub { font-family: var(--font-condensed); font-size: 11px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--charcoal); margin-top: 16px; line-height: 1.6; }
.age-gate-actions { display: flex; gap: 12px; margin-top: 32px; justify-content: center; }
.age-gate-warning { font-family: var(--font-body); font-size: 11px; color: var(--charcoal); margin-top: 24px; line-height: 1.6; }

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  nav.site-nav { padding: 0 24px; overflow: visible; }
  .nav-links { display: none; }
  .nav-burger { display: block; }
  .nav-cta { display: none; }
  nav.site-nav.menu-open .nav-links {
    display: flex;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--noir);
    flex-direction: column;
    gap: 0;
    padding: 16px 24px;
    border-top: 1px solid rgba(245, 239, 224, 0.1);
  }
  nav.site-nav.menu-open .nav-links a { padding: 12px 0; border-bottom: 1px solid rgba(245, 239, 224, 0.06); }
  nav.site-nav.menu-open .nav-cta { display: inline-block; margin-top: 12px; }

  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-left { padding: 48px 24px; }
  .hero-title { font-size: 56px; }
  .hero-right { min-height: 320px; }

  .manifeste { padding: 12px 24px; }
  .manifeste-sep { margin: 0 8px; }
  .manifeste-text { font-size: 10px; }

  .section { padding: 56px 24px; }
  .section-title { font-size: 36px; }
  .wine-grid { grid-template-columns: repeat(2, 1fr); }

  .detail-panel { grid-template-columns: 1fr; padding: 40px 24px; gap: 32px; }
  .detail-name { font-size: 52px; }

  .mix-banner { grid-template-columns: 1fr; padding: 32px 24px; gap: 24px; }
  .mix-banner h3 { font-size: 36px; }

  .terroir { grid-template-columns: 1fr; padding: 56px 24px; gap: 32px; }
  .terroir-title { font-size: 36px; }

  .brand-strip { padding: 40px 24px; }
  .brand-strip .quote { font-size: 26px; }

  .livraison { padding: 56px 24px; }
  .livraison-grid { grid-template-columns: 1fr; }

  footer.site-footer { grid-template-columns: 1fr; text-align: center; padding: 40px 24px; gap: 24px; }
  .footer-logo { align-items: center; }
  .footer-slogan { text-align: center; }

  .age-gate-card { padding: 40px 24px; }
  .age-gate-title { font-size: 26px; }
}

@media (max-width: 480px) {
  .whatsapp-fab { bottom: 16px; right: 16px; width: 52px; height: 52px; }
}

/* ── FOOTER LINKS ── */
.footer-copy a {
  color: rgba(245, 239, 224, 0.7);
  text-decoration: none;
  border-bottom: 1px solid rgba(245, 239, 224, 0.2);
  transition: color 150ms ease, border-color 150ms ease;
}
.footer-copy a:hover {
  color: var(--creme);
  border-color: var(--creme);
}

/* ── BRAND STRIP SIGNATURE LINK ── */
.brand-strip .signature-link {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid rgba(245, 239, 224, 0.25);
  transition: border-color 200ms ease, color 200ms ease;
}
.brand-strip .signature-link:hover {
  color: var(--creme);
  border-color: var(--creme);
}

/* ── FOOTER SLAGAN LINK ── */
.footer-slogan a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid rgba(245, 239, 224, 0.2);
  transition: color 150ms ease, border-color 150ms ease;
}
.footer-slogan a:hover {
  color: var(--creme);
  border-color: var(--creme);
}

/* ── HERO SOCIAL BANNER ── */
.hero-social {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 14px;
  font-family: var(--font-condensed);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.hero-social a {
  color: rgba(245, 239, 224, 0.55);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 150ms ease;
}
.hero-social a:hover { color: var(--creme); }
.hero-social .sep { color: rgba(245, 239, 224, 0.25); }

/* ── WINEMAKERS SECTION ── */
.winemakers {
  background: var(--noir);
  color: var(--creme);
  padding: 80px 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.winemakers-text { padding-right: 32px; }
.winemakers .section-overline { color: var(--or); margin-bottom: 12px; }
.winemakers .section-title { color: var(--creme); font-size: 48px; line-height: 0.95; margin-bottom: 24px; }
.winemakers-body {
  font-family: var(--font-body);
  font-size: 14px;
  color: rgba(245, 239, 224, 0.75);
  line-height: var(--lh-body);
  margin-bottom: 16px;
  text-wrap: pretty;
  hyphens: auto;
  -webkit-hyphenate-limit-chars: 6 3 2;
  hyphenate-limit-chars: 6 3 2;
  overflow-wrap: break-word;
}
.winemakers-body strong { color: var(--creme); font-weight: 700; }
.winemakers-body em { font-style: italic; color: var(--or); }
.winemakers-quote {
  font-family: var(--font-display);
  font-size: 28px;
  line-height: 1.2;
  color: var(--creme);
  border-left: 3px solid var(--rouge);
  padding-left: 20px;
  margin: 24px 0 16px;
  font-style: normal;
}
.winemakers-quote em { font-style: normal; color: var(--rouge); }
.winemakers-credits {
  font-family: var(--font-condensed);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245, 239, 224, 0.5);
}
.winemakers-img-wrap { position: relative; }
.winemakers-img {
  width: 100%;
  aspect-ratio: 3/2;
  object-fit: cover;
  filter: contrast(1.05);
}

/* ── MENTORS SECTION ── */
.mentors {
  background: var(--creme-dark);
  padding: 80px 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.mentors-img-wrap {
  position: relative;
}
.mentors-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  filter: contrast(1.04) saturate(0.95);
  box-shadow: 4px 8px 32px rgba(26, 22, 18, 0.18);
}
.mentors-caption {
  font-family: var(--font-hand);
  font-size: 18px;
  color: var(--anthracite);
  text-align: center;
  margin-top: 14px;
  line-height: 1.4;
}
.mentors-text {
  padding-left: 16px;
}
.mentors .section-overline { color: var(--rouge); margin-bottom: 12px; }
.mentors-title {
  font-size: 52px;
  line-height: 0.95;
  margin: 0 0 24px;
}
.mentors-subtitle {
  display: block;
  font-family: var(--font-condensed);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--charcoal);
  margin-top: 10px;
}
.mentors-body {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--anthracite);
  line-height: var(--lh-body);
  margin: 0 0 16px;
  text-wrap: pretty;
  hyphens: auto;
  -webkit-hyphenate-limit-chars: 6 3 2;
  hyphenate-limit-chars: 6 3 2;
  overflow-wrap: break-word;
}
.mentors-body em { font-style: italic; color: var(--rouge); font-weight: 600; }
.mentors-body a { color: var(--rouge); border-bottom: 1px solid var(--rouge); text-decoration: none; }
.mentors-cta { margin-top: 16px; }

/* ── POINTS DE VENTE — CARTE INTERACTIVE ── */
.points-vente {
  background: var(--papier);
  padding: 80px 48px;
}
.map-wrap {
  position: relative;
  width: 100%;
  margin: 0 auto;
  max-width: 1100px;
  background: var(--creme);
  border: 1px solid rgba(26, 22, 18, 0.08);
}
.map-bg {
  width: 100%;
  height: auto;
  display: block;
}
.map-pin {
  position: absolute;
  top: var(--top);
  left: var(--left);
  transform: translate(-50%, -50%);
  width: 36px;
  height: 36px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
.pin-dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--rouge);
  border: 2px solid var(--blanc);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
  transition: transform 200ms ease, box-shadow 200ms ease;
}
.map-pin.pin-cave {
  z-index: 3;
}
.map-pin.pin-resto .pin-dot { background: var(--or); }
.map-pin.pin-resto {
  z-index: 4;
}
.map-pin:hover .pin-dot,
.map-pin:focus-visible .pin-dot {
  transform: scale(1.5);
  box-shadow: 0 0 0 6px rgba(200, 49, 26, 0.18), 0 2px 10px rgba(0, 0, 0, 0.5);
}
.map-pin.pin-resto:hover .pin-dot,
.map-pin.pin-resto:focus-visible .pin-dot {
  box-shadow: 0 0 0 6px rgba(201, 151, 58, 0.22), 0 2px 10px rgba(0, 0, 0, 0.5);
}
.map-pin:focus-visible { outline: none; }

/* Pulse animation for pins — always on, staggered */
@keyframes pin-pulse {
  0%, 100% { box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4), 0 0 0 0 rgba(200, 49, 26, 0); }
  50% { box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4), 0 0 0 8px rgba(200, 49, 26, 0.5); }
}
@keyframes pin-pulse-gold {
  0%, 100% { box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4), 0 0 0 0 rgba(201, 151, 58, 0); }
  50% { box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4), 0 0 0 8px rgba(201, 151, 58, 0.5); }
}
.map-pin.pin-cave .pin-dot { animation: pin-pulse 2s ease-in-out 6; }
.map-pin.pin-resto .pin-dot { animation: pin-pulse-gold 2s ease-in-out 6; }

/* Staggered delays per pin */
.map-pin[data-name="Les Caves du Soleil"] .pin-dot { animation-delay: 0s; }
.map-pin[data-name="Bière au Logis Saint-Denis"] .pin-dot { animation-delay: 0.4s; }
.map-pin[data-name="Le Monde des Saveurs"] .pin-dot { animation-delay: 0.8s; }
.map-pin[data-name="Bière au Logis Saint-Gilles"] .pin-dot { animation-delay: 1.2s; }
.map-pin[data-name="Embuscave"] .pin-dot { animation-delay: 1.6s; }
.map-pin[data-name="Le Lavoir"] .pin-dot { animation-delay: 2.0s; }

.map-tooltip {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--noir);
  color: var(--creme);
  padding: 12px 16px;
  font-family: var(--font-condensed);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transition: opacity 200ms ease;
  z-index: 3;
  max-width: 90%;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}
.map-tooltip.visible { opacity: 1; }
.map-tooltip strong {
  display: block;
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: 0.02em;
  text-transform: none;
  margin-bottom: 4px;
}
.map-tooltip .tt-type { color: rgba(245, 239, 224, 0.6); display: block; margin-bottom: 2px; }
.map-tooltip .tt-addr { color: var(--or); }

.map-legend {
  display: flex;
  gap: 24px;
  justify-content: center;
  margin-top: 24px;
  font-family: var(--font-condensed);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--charcoal);
}
.legend-item { display: inline-flex; align-items: center; gap: 8px; }
.legend-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--rouge);
  border: 2px solid var(--blanc);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}
.legend-dot.pin-resto { background: var(--or); }

.points-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-top: 48px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.points-col-title {
  font-family: var(--font-condensed);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rouge);
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--rouge);
}
.points-list ul { list-style: none; padding: 0; margin: 0; }
.points-list li {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--anthracite);
  line-height: 1.6;
  padding: 8px 0;
  border-bottom: 1px solid rgba(26, 22, 18, 0.08);
}
.points-list li strong { color: var(--noir); }
.points-list li a { color: var(--rouge); text-decoration: none; border-bottom: 1px dashed var(--rouge); }

/* ── DETAIL IMG FIRE (bouteilles avec fond integre) ── */
.detail-img {
  background: transparent !important;
  padding: 0 !important;
  max-height: 520px;
  width: auto;
  margin: 0 auto;
  display: block;
}

/* ── BOTTLE HINT BANDEAU ── */
.bottle-hint {
  background: var(--creme);
  padding: 16px 48px;
  text-align: center;
  border-top: 1px solid rgba(26, 22, 18, 0.08);
  border-bottom: 1px solid rgba(26, 22, 18, 0.08);
}
.bottle-hint p {
  font-family: var(--font-condensed);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--anthracite);
  margin: 0;
}
.bottle-hint-label { color: var(--rouge); }
.bottle-hint-sep { color: var(--charcoal); margin: 0 12px; opacity: 0.5; }
.bottle-hint a { color: var(--rouge); border-bottom: 1px dashed var(--rouge); text-decoration: none; }
.bottle-hint a:hover { color: var(--rouge-dark); }

/* ── PROS / HORECA ── */
.pros { background: var(--noir); padding: 80px 48px; color: var(--creme); }
.pros .section-overline { color: var(--or); margin-bottom: 12px; }
.pros .section-title { color: var(--creme); font-size: 56px; line-height: 0.95; margin-bottom: 24px; }
.pros-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 64px; align-items: start; }
.pros-body { font-size: 14px; color: rgba(245, 239, 224, 0.75); line-height: var(--lh-body); margin-bottom: 16px; overflow-wrap: break-word; }
.pros-body strong { color: var(--or); font-weight: 700; }
.pros-actions { display: flex; gap: 12px; margin-top: 24px; flex-wrap: wrap; }
.pros-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  border-left: 2px solid var(--rouge);
  padding-left: 32px;
}
.pros-feature strong {
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--creme);
  line-height: 1.12;
  letter-spacing: 0.025em;
  display: block;
  margin-bottom: 6px;
}
.pros-feature span {
  font-family: var(--font-condensed);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245, 239, 224, 0.5);
}

/* ── REVIEWS ── */
.reviews { background: var(--papier); padding: 80px 48px; }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 32px;
}
.review-card {
  background: var(--creme);
  padding: 24px 24px 20px;
  border-left: 3px solid var(--or);
  display: flex;
  flex-direction: column;
}
.review-stars {
  color: var(--rouge);
  font-size: 16px;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}
.review-text {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: var(--lh-body);
  color: var(--anthracite);
  flex: 1;
  margin-bottom: 16px;
  text-wrap: pretty;
  hyphens: auto;
  -webkit-hyphenate-limit-chars: 6 3 2;
  hyphenate-limit-chars: 6 3 2;
}
.review-footer {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-condensed);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--charcoal);
  border-top: 1px solid rgba(26, 22, 18, 0.08);
  padding-top: 12px;
  flex-wrap: wrap;
}
.review-author { color: var(--noir); }
.review-date { opacity: 0.7; }
.review-badge {
  background: var(--noir);
  color: var(--creme);
  padding: 3px 8px;
  font-size: 10px;
  letter-spacing: 0.12em;
  margin-left: auto;
}
.reviews-empty {
  text-align: center;
  padding: 32px 0;
  display: none;
}
.reviews-empty-text {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--anthracite);
  margin-bottom: 24px;
}
.reviews-empty-text strong { color: var(--rouge); }
.reviews-empty-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.reviews-empty-text-wrap { max-width: 420px; text-align: left; }
.reviews-qr {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 16px 16px 12px;
  background: var(--blanc);
  border: 1px solid var(--color-border-light);
  text-decoration: none;
  transition: transform 200ms ease, box-shadow 200ms ease;
}
.reviews-qr:hover { transform: translateY(-2px); box-shadow: 4px 8px 16px rgba(26, 22, 18, 0.15); }
.reviews-qr img { display: block; width: 132px; height: 132px; }
.reviews-qr-label {
  font-family: var(--font-condensed);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--noir);
}
.reviews-cta { text-align: center; margin-top: 24px; }
@media (max-width: 600px) {
  .reviews-empty-inner { flex-direction: column; gap: 24px; }
  .reviews-empty-text-wrap { text-align: center; }
}

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .winemakers {
    grid-template-columns: 1fr;
    padding: 56px 24px;
    gap: 32px;
  }
  .winemakers-text { padding-right: 0; order: 2; }
  .winemakers-img-wrap { order: 1; }
  .winemakers .section-title { font-size: 36px; }
  .winemakers-quote { font-size: 22px; }

  .mentors {
    grid-template-columns: 1fr;
    padding: 56px 24px;
    gap: 32px;
  }
  .mentors-text { padding-left: 0; }
  .mentors-title { font-size: 36px; }

  .points-vente { padding: 56px 24px; }
  .map-tooltip { font-size: 11px; padding: 10px 14px; }
  .map-tooltip strong { font-size: 16px; }
  .points-list { grid-template-columns: 1fr; gap: 24px; }

  .pros { padding: 56px 24px; }
  .pros .section-title { font-size: 36px; }
  .pros-grid { grid-template-columns: 1fr; gap: 32px; }
  .pros-features { padding-left: 0; border-left: none; border-top: 2px solid var(--rouge); padding-top: 24px; }

  .reviews { padding: 56px 24px; }
  .reviews-grid { grid-template-columns: 1fr; gap: 16px; }
}

@media (max-width: 480px) {
  .pin-dot { width: 12px; height: 12px; border-width: 2px; }
  .map-pin { width: 24px; height: 24px; }
  .map-tooltip {
    bottom: 8px;
    font-size: 10px;
    padding: 8px 10px;
    white-space: normal;
    text-align: center;
  }
  .wine-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .wine-card-name { font-size: 22px; }
  .wine-card-tag { font-size: 9px; }
  .wine-card-grape { font-size: 10px; }
}

/* ── NOTRE CONTRAT ── */
.contract {
  background: var(--papier);
  padding: 80px 48px;
  display: flex;
  justify-content: center;
}
.contract-card {
  background: var(--creme);
  padding: 56px 64px;
  max-width: 680px;
  width: 100%;
  text-align: center;
  border: 1px solid rgba(26, 22, 18, 0.1);
  box-shadow: 0 2px 16px rgba(26, 22, 18, 0.06);
  position: relative;
  margin: 0 auto;
}
.contract-card::before {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  height: 3px;
  background: var(--rouge);
}
.contract-overline {
  font-family: var(--font-condensed);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--rouge);
  margin-bottom: 24px;
}
.contract-title {
  font-family: var(--font-display);
  font-size: 48px;
  line-height: 1.05;
  color: var(--noir);
  margin: 0 0 28px;
  letter-spacing: 0.01em;
}
.contract-title em { font-style: normal; color: var(--rouge); }
.contract-list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 32px;
}
.contract-list li {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--anthracite);
  padding: 10px 0;
  border-bottom: 1px dashed rgba(26, 22, 18, 0.12);
  text-align: left;
  hyphens: auto;
  text-wrap: pretty;
  overflow-wrap: break-word;
}
.contract-list li:nth-last-child(-n+2) { border-bottom: none; }
.contract-list li:last-child { color: var(--noir); font-weight: 700; }
.contract-list li::before { display: none; }

@media (max-width: 480px) {
  .contract-list { grid-template-columns: 1fr; gap: 0; }
  .contract-list li:nth-last-child(n) { border-bottom: 1px dashed rgba(26, 22, 18, 0.12); }
  .contract-list li:last-child { border-bottom: none; }
}

.contract-signature { font-family: var(--font-hand); font-size: 22px; color: var(--noir); margin-top: 16px; }

/* ── LE RYTHME DU VIN ── */
.rythme {
  background: var(--noir);
  color: var(--creme);
  padding: 80px 48px;
}
.rythme .section-overline { color: var(--or); }
.rythme .section-title { color: var(--creme); }
.rythme-subtitle {
  font-family: var(--font-hand);
  font-size: 22px;
  color: rgba(245, 239, 224, 0.7);
  align-self: end;
}
.rythme-figure {
  margin: 48px auto 0;
  background: var(--creme);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  overflow: hidden;
  max-width: 900px;
}
.rythme-figure img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  background: var(--creme);
}
.rythme-tags {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 28px;
  flex-wrap: wrap;
  align-items: center;
}
.rythme-tag {
  display: inline-flex;
  align-items: center;
  padding: 10px 16px;
  font-family: var(--font-condensed);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  line-height: 1;
}
.rythme-tag--available {
  background: var(--rouge);
  color: var(--creme);
}
.rythme-tag--soon {
  background: transparent;
  border: 1px solid rgba(245, 239, 224, 0.3);
  color: rgba(245, 239, 224, 0.8);
}

/* ── NEWSLETTER ── */
.newsletter { background: var(--creme-dark); padding: 80px 48px; }
.newsletter-header { margin-bottom: 48px; max-width: 720px; }
.newsletter-intro { font-family: var(--font-body); font-size: 14px; line-height: var(--lh-body); color: var(--anthracite); margin-top: 16px; max-width: 600px; }
.newsletter-intro em { font-style: italic; color: var(--rouge); }
.newsletter-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.newsletter-card { background: var(--creme); padding: 36px 32px; border-top: 3px solid var(--rouge); display: flex; flex-direction: column; }
.newsletter-card-title { font-family: var(--font-display); font-size: 28px; line-height: 1; color: var(--noir); margin-bottom: 20px; }
.newsletter-fineprint { font-family: var(--font-condensed); font-size: 10px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--charcoal); margin-top: 16px; }
.newsletter-wa-desc { font-family: var(--font-body); font-size: 14px; line-height: var(--lh-body); color: var(--anthracite); margin-bottom: 20px; text-wrap: pretty; hyphens: auto; -webkit-hyphenate-limit-chars: 6 3 2; hyphenate-limit-chars: 6 3 2; overflow-wrap: break-word; }
.newsletter-wa-cta { align-self: flex-start; margin-top: auto; }
.brevo-wrap .sib-form-message-panel { display: none; }
.brevo-wrap .brevo-email-input {
  width: 100%; padding: 14px 16px; font-family: var(--font-body); font-size: 14px; background: var(--blanc);
  border: 1px solid rgba(26, 22, 18, 0.12); color: var(--noir); border-radius: 0; transition: border-color 200ms ease;
}
.brevo-wrap .brevo-email-input:focus { outline: none; border-color: var(--rouge); box-shadow: 0 0 0 3px rgba(200, 49, 26, 0.1); }
.brevo-wrap .brevo-submit {
  font-family: var(--font-condensed); font-size: 13px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  background: var(--rouge); color: var(--blanc); border: none; padding: 14px 28px; cursor: pointer; transition: background 150ms ease;
  display: inline-flex; align-items: center; margin-top: 12px;
}
.brevo-wrap .brevo-submit:hover { background: var(--rouge-dark); }

/* ── WHO TEASER ── */
.who-teaser {
  background: var(--creme-dark);
  padding: 72px 48px;
  text-align: center;
}
.who-teaser-inner { max-width: 600px; margin: 0 auto; }
.who-teaser-overline {
  font-family: var(--font-condensed);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--rouge);
  margin-bottom: 16px;
}
.who-teaser-title {
  font-family: var(--font-display);
  font-size: 52px;
  line-height: 1.05;
  color: var(--noir);
  margin: 0 0 20px;
  letter-spacing: 0.01em;
}
.who-teaser-title em { font-style: italic; color: var(--rouge); }
.who-teaser-body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: var(--lh-body);
  color: var(--anthracite);
  margin-bottom: 32px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  text-wrap: pretty;
  hyphens: auto;
  -webkit-hyphenate-limit-chars: 6 3 2;
  hyphenate-limit-chars: 6 3 2;
  overflow-wrap: break-word;
}

/* ── PAGE À PROPOS (narrative) ── */
.apropos-hero { background: var(--noir); color: var(--creme); padding: 96px 48px 80px; text-align: center; }
.apropos-hero-inner { max-width: 720px; margin: 0 auto; }
.apropos-eyebrow { font-family: var(--font-condensed); font-size: 11px; font-weight: 700; letter-spacing: 0.25em; text-transform: uppercase; color: var(--rouge); margin-bottom: 16px; }
.apropos-title { font-family: var(--font-display); font-size: 88px; line-height: 0.9; color: var(--creme); letter-spacing: 0.01em; }
.apropos-title em { font-style: normal; color: var(--rouge); }
.apropos-subtitle { font-family: var(--font-body); font-size: 16px; line-height: 1.7; color: rgba(245, 239, 224, 0.7); margin-top: 24px; max-width: 560px; margin-left: auto; margin-right: auto; }
.apropos-story { max-width: 880px; margin: 0 auto; padding: 80px 48px 0; }
.apropos-chapter { display: grid; grid-template-columns: 140px 1fr; gap: 48px; padding: 56px 0; border-bottom: 1px solid rgba(26, 22, 18, 0.08); }
.apropos-chapter:last-child { border-bottom: none; }
.apropos-chapter-meta { display: flex; flex-direction: column; gap: 8px; position: sticky; top: 88px; align-self: start; }
.apropos-chapter-num { font-family: var(--font-display); font-size: 64px; line-height: 1; color: var(--rouge); }
.apropos-chapter-year { font-family: var(--font-condensed); font-size: 12px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--charcoal); }
.apropos-chapter-title { font-family: var(--font-display); font-size: 44px; line-height: 1.05; color: var(--noir); margin-bottom: 20px; letter-spacing: 0.01em; }
.apropos-chapter-body p { font-family: var(--font-body); font-size: 15px; line-height: var(--lh-body); color: var(--anthracite); margin-bottom: 14px; max-width: 620px; text-wrap: pretty; hyphens: auto; -webkit-hyphenate-limit-chars: 6 3 2; hyphenate-limit-chars: 6 3 2; overflow-wrap: break-word; }
.apropos-chapter-body p strong { color: var(--noir); font-weight: 700; }
.apropos-chapter-body p em { font-style: italic; color: var(--rouge); }
.apropos-slogan { font-family: var(--font-display); font-size: 24px !important; line-height: 1.3 !important; color: var(--noir) !important; margin: 24px 0 32px !important; }
.apropos-slogan em { color: var(--rouge); }
.apropos-cta-row { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 24px; }

@media (max-width: 768px) {
  .contract { padding: 56px 24px; }
  .contract-card { padding: 40px 28px; }
  .contract-title { font-size: 36px; }
  .contract-list { grid-template-columns: 1fr; gap: 0; }
  .contract-list li::before { position: static; display: block; margin-bottom: 4px; text-align: center; }
  .contract-list li { text-align: center; }
  .rythme { padding: 56px 24px; }
  .rythme-figure { margin-top: 32px; }
  .newsletter { padding: 56px 24px; }
  .newsletter-grid { grid-template-columns: 1fr; }
  .who-teaser { padding: 56px 24px; }
  .who-teaser-title { font-size: 36px; }
  .who-teaser-body { font-size: 15px; }
  .apropos-hero { padding: 64px 24px 48px; }
  .apropos-title { font-size: 56px; }
  .apropos-story { padding: 48px 24px 0; }
  .apropos-chapter { grid-template-columns: 1fr; gap: 16px; padding: 40px 0; }
  .apropos-chapter-meta { flex-direction: row; align-items: baseline; position: static; gap: 16px; }
  .apropos-chapter-num { font-size: 44px; }
  .apropos-chapter-title { font-size: 32px; }
}

/* ── BANDEAU RÉASSURANCE ── */
.trust {
  background: var(--creme);
  padding: 32px 48px;
  border-bottom: 1px solid rgba(26, 22, 18, 0.08);
}
.trust-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  max-width: 1280px;
  margin: 0 auto;
}
.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 6px;
  color: var(--noir);
}
.trust-item svg { color: var(--rouge); margin-bottom: 4px; }
.trust-item strong {
  font-family: var(--font-condensed);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--noir);
}
.trust-item span {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--charcoal);
  line-height: 1.4;
}
.trust-item span a { color: var(--rouge); text-decoration: none; border-bottom: 1px dashed var(--rouge); }
.trust-item span a:hover { color: var(--rouge-dark); }

/* ── COMMENT ÇA MARCHE ── */
.how {
  background: var(--papier);
  padding: 64px 48px;
}
.how-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.how-step {
  background: var(--creme);
  padding: 32px 28px 24px;
  border-top: 3px solid var(--rouge);
  position: relative;
  display: flex;
  flex-direction: column;
}
.how-num {
  font-family: var(--font-display);
  font-size: 64px;
  color: var(--rouge);
  line-height: 1;
  display: block;
  margin-bottom: 8px;
}
.how-step-title {
  font-family: var(--font-condensed);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--noir);
  margin-bottom: 12px;
}
.how-step-desc {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--anthracite);
  line-height: var(--lh-body);
  text-wrap: pretty;
  hyphens: auto;
  -webkit-hyphenate-limit-chars: 6 3 2;
  hyphenate-limit-chars: 6 3 2;
}

/* ── QUI SOMMES-NOUS ── */
.who {
  background: var(--creme-dark);
  padding: 80px 48px;
}
.who-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 56px;
  align-items: center;
}
.who-body {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: var(--lh-body);
  color: var(--anthracite);
  margin-bottom: 16px;
  max-width: 540px;
  text-wrap: pretty;
  hyphens: auto;
  -webkit-hyphenate-limit-chars: 6 3 2;
  hyphenate-limit-chars: 6 3 2;
  overflow-wrap: break-word;
}
.who-body strong { color: var(--noir); font-weight: 700; }
.who-body em { font-style: italic; color: var(--rouge); }
.who-cta { margin-top: 16px; }
.who-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  border-left: 2px solid var(--rouge);
  padding-left: 32px;
}
.who-meta-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--noir);
  line-height: 1.1;
  margin-bottom: 4px;
}
.who-meta-item span {
  font-family: var(--font-condensed);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--charcoal);
  line-height: 1.4;
}

/* ── INSTAGRAM LINK ── */
.ig-link {
  color: var(--rouge);
  text-decoration: none;
  border-bottom: 1px dashed var(--rouge);
  font-family: var(--font-condensed);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: lowercase;
  transition: color 150ms ease, border-color 150ms ease;
}
.ig-link:hover {
  color: var(--rouge-dark);
  border-color: var(--rouge-dark);
}
.ig-link::before { content: "📷 "; }

/* ── FOOTER BADGES ── */
.footer-badges {
  display: inline-block;
  margin: 8px 0 4px;
  padding: 6px 12px;
  background: rgba(245, 239, 224, 0.06);
  border: 1px solid rgba(245, 239, 224, 0.1);
  font-family: var(--font-condensed);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(245, 239, 224, 0.6);
}

/* ── HISTOIRE TEASER ── */
.histoire-teaser {
  background: var(--noir);
  padding: 80px 48px;
  text-align: center;
}
.histoire-teaser .section-header { margin-bottom: 32px; }
.histoire-teaser .section-title { color: var(--creme); }
.histoire-teaser-body { max-width: 640px; margin: 0 auto 40px; }
.histoire-teaser-intro {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: var(--lh-body, 1.75);
  color: var(--creme);
  opacity: 0.85;
  margin-bottom: 16px;
  text-wrap: balance;
}
.histoire-teaser-footer { margin-top: 0; }

/* ── HISTOIRE ── */
.histoire {
  background: var(--noir);
  padding: 80px 48px;
}
.histoire .section-header { margin-bottom: 32px; }
.histoire .section-overline { color: var(--rouge); }
.histoire .section-title { color: var(--creme); }
.histoire-body { max-width: 720px; }
.histoire-body p {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: var(--lh-body, 1.75);
  color: var(--creme);
  opacity: 0.85;
  margin-bottom: 20px;
  text-wrap: balance;
}
.histoire-body p:last-child { margin-bottom: 0; }
.histoire-body strong { color: var(--creme); font-weight: 700; }
.histoire-body em { color: var(--rouge); font-style: italic; }

/* ── RESPONSIVE for new sections ── */
@media (max-width: 960px) {
  .trust { padding: 24px 16px; }
  .trust-inner { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .how { padding: 48px 24px; }
  .how-steps { grid-template-columns: 1fr; gap: 16px; }
  .how-num { font-size: 48px; }
  .who { padding: 56px 24px; }
  .who-grid { grid-template-columns: 1fr; gap: 32px; }
  .who-meta { padding-left: 0; border-left: none; border-top: 2px solid var(--rouge); padding-top: 24px; }
  .histoire-teaser { padding: 56px 24px; }
  .histoire-teaser-intro { font-size: 16px; }
  .histoire { padding: 56px 24px; }
  .histoire-body p { font-size: 16px; }
}
@media (max-width: 480px) {
  .trust-inner { grid-template-columns: 1fr; gap: 16px; }
}

/* Lien maillage interne sous la grille des cuvées (home) */
.cuvees-fiches { margin-top: 28px; text-align: center; font-family: var(--font-condensed); font-size: 13px; letter-spacing: 0.06em; color: var(--charcoal); }
.cuvees-fiches a { color: var(--rouge); text-decoration: none; border-bottom: 1px solid transparent; transition: border-color 150ms ease; }
.cuvees-fiches a:hover { border-color: var(--rouge); }

/* ═══════════════════════════════════════════════════════
   PAGES PRODUIT (Product Detail Pages — /vins/*.html)
   ═══════════════════════════════════════════════════════ */
.pdp { background: var(--papier); padding: 32px 24px 80px; }
.pdp-inner { max-width: 1080px; margin: 0 auto; }
.pdp-breadcrumb {
  font-family: var(--font-condensed); font-size: 12px; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--charcoal); margin-bottom: 28px;
}
.pdp-breadcrumb a { color: var(--charcoal); text-decoration: none; border-bottom: 1px solid transparent; transition: border-color 150ms ease; }
.pdp-breadcrumb a:hover { border-color: var(--charcoal); }
.pdp-breadcrumb span { color: var(--rouge); }

.pdp-grid { display: grid; grid-template-columns: 0.85fr 1fr; gap: 56px; align-items: center; }
.pdp-media {
  background: var(--noir); border-radius: 6px; padding: 48px;
  display: flex; align-items: center; justify-content: center; min-height: 460px;
  position: relative; overflow: hidden;
}
.pdp-media img { max-height: 420px; width: auto; max-width: 100%; object-fit: contain;
  filter: drop-shadow(0 24px 48px rgba(0,0,0,0.5)); }
.pdp-media.contain img { max-height: 340px; }

.pdp-tag {
  font-family: var(--font-condensed); font-size: 13px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--rouge); margin-bottom: 14px;
}
.pdp-name { font-family: var(--font-display); font-size: clamp(56px, 9vw, 96px); line-height: 0.92; color: var(--noir); margin-bottom: 14px; }
.pdp-grape { font-family: var(--font-condensed); font-size: 16px; letter-spacing: 0.04em; color: var(--anthracite); margin-bottom: 24px; }
.pdp-desc { font-family: var(--font-body); font-size: 15px; line-height: 1.75; color: var(--charcoal); margin-bottom: 28px; max-width: 52ch; }
.pdp-block { margin-bottom: 24px; }
.pdp-sublabel { font-family: var(--font-condensed); font-size: 12px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--charcoal); margin-bottom: 6px; }
.pdp-subvalue { font-family: var(--font-body); font-size: 14px; line-height: 1.6; color: var(--anthracite); }
.pdp-price-row { display: flex; align-items: baseline; gap: 12px; margin: 28px 0 8px; }
.pdp-price { font-family: var(--font-display); font-size: 48px; color: var(--rouge); line-height: 1; }
.pdp-price-unit { font-family: var(--font-condensed); font-size: 13px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--charcoal); }
.pdp-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 24px; }
.pdp-delivery { margin-top: 22px; font-family: var(--font-body); font-size: 12.5px; color: var(--charcoal); line-height: 1.6; }
.pdp-soldout { font-family: var(--font-condensed); font-size: 14px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--charcoal); padding: 14px 22px; background: rgba(26,22,18,0.06); display: inline-block; border-radius: 4px; }

/* Cross-sell autres cuvées */
.pdp-more { max-width: 1080px; margin: 80px auto 0; }
.pdp-more-title { font-family: var(--font-condensed); font-size: 14px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--charcoal); margin-bottom: 24px; text-align: center; }
.pdp-more-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.pdp-more-card { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 28px 18px; background: var(--blanc); border-radius: 6px; text-decoration: none; transition: transform 160ms ease, box-shadow 160ms ease; }
.pdp-more-card:hover { transform: translateY(-4px); box-shadow: 0 14px 30px rgba(26,22,18,0.12); }
.pdp-more-card img { height: 130px; width: auto; object-fit: contain; margin-bottom: 16px; }
.pdp-more-name { font-family: var(--font-display); font-size: 28px; color: var(--noir); line-height: 1; }
.pdp-more-tag { font-family: var(--font-condensed); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--rouge); margin-top: 6px; }

@media (max-width: 860px) {
  .pdp-grid { grid-template-columns: 1fr; gap: 32px; }
  .pdp-media { min-height: 360px; padding: 36px; }
  .pdp-more-grid { grid-template-columns: 1fr; }
  .pdp-more-card { flex-direction: row; gap: 18px; text-align: left; justify-content: flex-start; }
  .pdp-more-card img { height: 90px; margin-bottom: 0; }
}
