/* ============ Sparkling — Merl-Métais ============
   Réutilise les classes .dh-* (distillerie) et .br-* (brasserie).
   Spécifique Sparkling : .sk-* (hero placeholder, valeurs, cuvées,
   raison d'être à 2 fondateurs, terroir tuffeau).
   ================================================= */

/* ----- HERO PLACEHOLDER (sans vidéo réelle) -----
   Décor CSS : fond cave en tuffeau (gradient chaud sombre),
   nappe ambient gold, et bulles d'effervescence qui montent.
*/
.sk-hero {
  position: relative;
  width: 100%;
  min-height: 92vh;
  overflow: hidden;
  background: #0E0A06;
  color: var(--mf-paper);
  display: flex;
  align-items: flex-end;
}

.sk-hero__media {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
.sk-hero__tuffeau {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 18% 20%, rgba(176,138,62,0.22) 0%, transparent 55%),
    radial-gradient(ellipse at 78% 80%, rgba(154,91,58,0.20) 0%, transparent 60%),
    radial-gradient(ellipse at 50% 110%, rgba(176,138,62,0.30) 0%, transparent 50%),
    linear-gradient(180deg, #14100B 0%, #0B0805 60%, #1A1108 100%);
}
/* Nappe granuleuse type tuffeau */
.sk-hero__tuffeau::after {
  content: '';
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 12% 32%, rgba(255,220,150,0.04) 1px, transparent 2px),
    radial-gradient(circle at 78% 14%, rgba(255,220,150,0.03) 1px, transparent 2px),
    radial-gradient(circle at 36% 76%, rgba(255,220,150,0.05) 1px, transparent 2px),
    radial-gradient(circle at 88% 64%, rgba(255,220,150,0.04) 1px, transparent 2px);
  background-size: 240px 240px, 320px 320px, 280px 280px, 360px 360px;
  mix-blend-mode: screen;
  opacity: 0.6;
}
.sk-hero__glow {
  position: absolute;
  left: -10%; top: -20%;
  width: 80%; height: 110%;
  background: radial-gradient(ellipse at center, rgba(212,180,106,0.16) 0%, transparent 60%);
  filter: blur(40px);
  animation: sk-glow 14s ease-in-out infinite alternate;
}
@keyframes sk-glow {
  0%   { transform: translate(0,0) scale(1); opacity: 0.85; }
  50%  { transform: translate(8%, 4%) scale(1.06); opacity: 1; }
  100% { transform: translate(-4%, -3%) scale(0.95); opacity: 0.7; }
}

/* Bulles d'effervescence */
.sk-bubbles {
  position: absolute; inset: 0;
  overflow: hidden;
}
.sk-bubbles .b {
  position: absolute;
  bottom: -40px;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(255,236,180,0.95), rgba(212,180,106,0.5) 60%, rgba(176,138,62,0.0));
  box-shadow: 0 0 8px rgba(212,180,106,0.45);
  opacity: 0;
  animation: sk-bubble linear infinite;
}
@keyframes sk-bubble {
  0%   { transform: translate(0, 0) scale(0.8); opacity: 0; }
  10%  { opacity: 0.9; }
  60%  { opacity: 0.7; }
  100% { transform: translate(var(--bx, 0px), -110vh) scale(1.3); opacity: 0; }
}
.sk-bubbles .b1  { left: 6%;  width: 7px;  height: 7px;  animation-duration: 18s; animation-delay: 0s;   --bx: 22px;  }
.sk-bubbles .b2  { left: 12%; width: 12px; height: 12px; animation-duration: 14s; animation-delay: 2s;   --bx: -14px; }
.sk-bubbles .b3  { left: 18%; width: 5px;  height: 5px;  animation-duration: 22s; animation-delay: 4s;   --bx: 30px;  }
.sk-bubbles .b4  { left: 24%; width: 9px;  height: 9px;  animation-duration: 16s; animation-delay: 1s;   --bx: -22px; }
.sk-bubbles .b5  { left: 32%; width: 6px;  height: 6px;  animation-duration: 20s; animation-delay: 6s;   --bx: 18px;  }
.sk-bubbles .b6  { left: 40%; width: 11px; height: 11px; animation-duration: 15s; animation-delay: 3s;   --bx: -28px; }
.sk-bubbles .b7  { left: 48%; width: 4px;  height: 4px;  animation-duration: 24s; animation-delay: 5s;   --bx: 16px;  }
.sk-bubbles .b8  { left: 56%; width: 10px; height: 10px; animation-duration: 17s; animation-delay: 7s;   --bx: -20px; }
.sk-bubbles .b9  { left: 64%; width: 8px;  height: 8px;  animation-duration: 19s; animation-delay: 0.5s; --bx: 26px;  }
.sk-bubbles .b10 { left: 72%; width: 13px; height: 13px; animation-duration: 13s; animation-delay: 2.5s; --bx: -32px; }
.sk-bubbles .b11 { left: 80%; width: 6px;  height: 6px;  animation-duration: 21s; animation-delay: 4.5s; --bx: 20px;  }
.sk-bubbles .b12 { left: 86%; width: 9px;  height: 9px;  animation-duration: 16s; animation-delay: 6.5s; --bx: -16px; }
.sk-bubbles .b13 { left: 92%; width: 7px;  height: 7px;  animation-duration: 19s; animation-delay: 1.5s; --bx: 24px;  }
.sk-bubbles .b14 { left: 4%;  width: 11px; height: 11px; animation-duration: 15s; animation-delay: 3.5s; --bx: -24px; }
@media (prefers-reduced-motion: reduce) {
  .sk-bubbles, .sk-hero__glow { animation: none; }
  .sk-bubbles .b { display: none; }
}

.sk-hero__veil {
  position: absolute; inset: 0; z-index: 2;
  background:
    linear-gradient(180deg, rgba(10,8,6,0.55) 0%, rgba(10,8,6,0.18) 30%, rgba(10,8,6,0.92) 100%),
    radial-gradient(ellipse at 14% 70%, rgba(20,14,8,0.55), transparent 60%);
  pointer-events: none;
}

/* Tag "placeholder visuel" (mention discrète) */
.sk-hero__placeholder-tag {
  position: absolute;
  top: 130px; right: 64px;
  z-index: 5;
  display: inline-flex; align-items: center; gap: 10px;
  padding: 10px 16px;
  border: 1px solid rgba(212,180,106,0.32);
  background: rgba(14,10,6,0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  font-family: var(--font-body); font-size: 10.5px; font-weight: 600;
  letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--mf-gold-light);
}
.sk-hero__placeholder-tag i { font-size: 14px; }
.sk-hero__placeholder-tag .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--mf-gold-light);
  box-shadow: 0 0 8px var(--mf-gold-light);
  animation: sk-pulse 2s ease-in-out infinite;
}
@keyframes sk-pulse { 0%,100% { opacity: 1 } 50% { opacity: 0.35 } }

.sk-hero__inner {
  position: relative; z-index: 3;
  width: 100%; max-width: 1280px; margin: 0 auto;
  padding: 200px 64px 80px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  grid-template-areas:
    "left right"
    "ticket ticket";
  column-gap: 64px; row-gap: 56px;
  align-items: end;
}
.sk-hero__left { grid-area: left; }
.sk-hero__right { grid-area: right; padding-bottom: 14px; }
.sk-hero__ticket-slot { grid-area: ticket; width: 100%; margin-top: 8px; }

.sk-hero__rail {
  display: inline-flex; align-items: center; gap: 14px;
  font-family: var(--font-body); font-size: 13px; font-weight: 500;
  letter-spacing: 0.32em; text-transform: uppercase;
  color: #CFAF66; margin-bottom: 28px;
}
.sk-hero__rail .dash { width: 40px; height: 1px; background: #B08A3E; }

.sk-hero__title {
  font-family: var(--font-display); font-weight: 500;
  margin: 0; display: flex; flex-direction: column;
}
.sk-hero__title .small {
  font-size: 20px; letter-spacing: 0.4em;
  color: var(--mf-paper-3); text-transform: uppercase;
  margin-bottom: 14px;
}
.sk-hero__title .big {
  font-size: clamp(64px, 9vw, 148px);
  line-height: 0.94; letter-spacing: -0.015em;
  color: var(--mf-paper);
}
.sk-hero__title em {
  font-style: italic;
  background: var(--foil-gold);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

.sk-hero__lede {
  font-family: var(--font-subhead); font-style: italic;
  font-size: 22px; line-height: 1.5;
  color: var(--mf-paper-2); max-width: 42ch; margin: 0 0 36px;
}
.sk-hero__lede em { color: #CFAF66; font-style: italic; }

.sk-hero__stats {
  display: grid;
  grid-template-columns: repeat(3, max-content);
  gap: 40px;
  border-top: 1px solid rgba(207,175,102,0.35);
  padding-top: 24px;
}
.sk-hero__stats .k {
  font-family: var(--font-body); font-size: 11.5px; font-weight: 600;
  letter-spacing: 0.32em; text-transform: uppercase;
  color: #CFAF66; margin-bottom: 10px;
}
.sk-hero__stats .v {
  font-family: var(--font-display); font-weight: 500;
  font-size: 30px; line-height: 1.1; color: var(--mf-paper);
}
.sk-hero__stats .v .unit {
  font-family: var(--font-body); font-size: 13px; font-weight: 400;
  letter-spacing: 0.22em; margin-left: 4px;
  color: var(--mf-paper-3);
}

.sk-hero__ticket-overline {
  display: inline-flex; align-items: center; gap: 14px;
  margin-bottom: 18px;
  font-family: var(--font-body); font-size: 12px; font-weight: 600;
  letter-spacing: 0.42em; text-transform: uppercase;
  color: var(--mf-gold-light);
}
.sk-hero__ticket-overline .dash {
  width: 34px; height: 1px;
  background: var(--mf-gold-light); opacity: 0.7;
}

/* ----- RAISON D'ÊTRE — 2 fondateurs ----- */
.sk-raison {
  background: var(--mf-paper);
  padding: 140px 64px;
  border-top: 1px solid rgba(176,138,62,0.18);
}
.sk-raison__wrap { max-width: 1280px; margin: 0 auto; }
.sk-raison__head {
  display: grid; grid-template-columns: 0.55fr 1fr; gap: 64px;
  align-items: end; margin-bottom: 80px;
}
.sk-raison__head h2 {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(40px, 4.6vw, 64px); line-height: 1.06;
  color: var(--mf-ink); letter-spacing: -0.005em; margin: 18px 0 0;
}
.sk-raison__head h2 em {
  font-style: italic;
  background: var(--foil-gold);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.sk-raison__lede {
  font-family: var(--font-subhead); font-style: italic;
  font-size: 19px; line-height: 1.6;
  color: var(--mf-ink-3); max-width: 50ch; margin: 0;
}
.sk-raison__quote {
  position: relative;
  padding: 42px 48px;
  border-left: 2px solid var(--mf-gold);
  background: linear-gradient(180deg, rgba(176,138,62,0.04), rgba(176,138,62,0.02));
  font-family: var(--font-display); font-style: italic; font-weight: 500;
  font-size: clamp(22px, 2.2vw, 28px); line-height: 1.4;
  color: var(--mf-ink); margin: 0 0 32px;
  max-width: 720px;
}
.sk-raison__quote::before {
  content: '«';
  position: absolute; left: 14px; top: 20px;
  font-family: var(--font-display); font-size: 70px;
  color: var(--mf-gold); opacity: 0.3; line-height: 1;
}
.sk-raison__signs {
  display: flex; gap: 56px; flex-wrap: wrap;
  margin-bottom: 64px;
}
.sk-raison__sign {
  font-family: var(--font-display); font-style: italic;
  color: var(--mf-ink);
}
.sk-raison__sign .role {
  display: block;
  font-family: var(--font-body); font-style: normal;
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--mf-gold); margin-bottom: 6px;
}
.sk-raison__sign .name { font-size: 22px; }
.sk-raison__sign .scribble {
  display: block; margin-top: 8px;
  font-family: 'Brush Script MT', cursive;
  font-size: 32px; color: var(--mf-gold-deep);
  letter-spacing: 0.04em;
}
.sk-raison__missions {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px;
  padding-top: 48px;
  border-top: 1px solid rgba(176,138,62,0.18);
}
.sk-raison__mission {
  position: relative; padding-left: 28px;
}
.sk-raison__mission::before {
  content: ''; position: absolute;
  left: 0; top: 8px;
  width: 14px; height: 14px;
  border: 2px solid var(--mf-gold);
  background: var(--mf-paper);
  border-radius: 50%;
}
.sk-raison__mission h4 {
  font-family: var(--font-body); font-size: 11px; font-weight: 600;
  letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--mf-gold); margin: 0 0 14px;
}
.sk-raison__mission p {
  font-family: var(--font-body); font-size: 15px; line-height: 1.55;
  color: var(--mf-ink-3); margin: 0;
}

/* ----- VALEURS DE MARQUE — 4 cells ----- */
.sk-values {
  background: var(--mf-ink);
  color: var(--mf-paper);
  padding: 140px 64px;
  position: relative;
  overflow: hidden;
}
.sk-values::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(176,138,62,0.12), transparent 50%),
    radial-gradient(ellipse at 50% 100%, rgba(154,91,58,0.10), transparent 60%);
  pointer-events: none;
}
.sk-values__wrap { max-width: 1280px; margin: 0 auto; position: relative; z-index: 1; }
.sk-values__head {
  text-align: center; margin-bottom: 72px;
}
.sk-values__head h2 {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(36px, 4.2vw, 56px); line-height: 1.08;
  color: var(--mf-paper); margin: 18px 0 24px;
}
.sk-values__head h2 em {
  font-style: italic;
  background: var(--foil-gold);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.sk-values__head p {
  font-family: var(--font-subhead); font-style: italic;
  font-size: 19px; line-height: 1.6;
  color: var(--mf-paper-3); max-width: 56ch; margin: 0 auto;
}
.sk-values__grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  border-top: 1px solid rgba(176,138,62,0.25);
  border-bottom: 1px solid rgba(176,138,62,0.25);
}
.sk-value {
  padding: 44px 28px;
  border-right: 1px solid rgba(176,138,62,0.18);
  display: flex; flex-direction: column;
  min-height: 480px;
}
.sk-value:last-child { border-right: none; }
.sk-value__num {
  font-family: var(--font-display); font-style: italic;
  font-size: 14px; color: var(--mf-gold-light);
  margin-bottom: 18px;
}
.sk-value__title {
  font-family: var(--font-display); font-weight: 500;
  font-size: 22px; line-height: 1.2;
  color: var(--mf-paper); margin: 0 0 18px;
  min-height: 5.5em;
}
.sk-value__title em {
  font-style: italic;
  background: var(--foil-gold);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.sk-value__desc {
  font-family: var(--font-body); font-size: 15px; line-height: 1.55;
  color: var(--mf-paper-3); margin: 0 0 28px;
}
.sk-value__tags {
  margin-top: auto;
  padding-top: 24px;
  border-top: 1px solid rgba(176,138,62,0.18);
  font-family: var(--font-display); font-style: italic;
  font-size: 16px; line-height: 1.7;
  color: var(--mf-gold-light);
}
.sk-value__tags span { display: block; }

/* ----- SLOGAN BAND ----- */
.sk-slogan {
  background: var(--mf-paper);
  padding: 110px 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.sk-slogan::before, .sk-slogan::after {
  content: '';
  position: absolute;
  width: 280px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--mf-gold), transparent);
}
.sk-slogan::before { top: 60px; left: 50%; transform: translateX(-50%); }
.sk-slogan::after  { bottom: 60px; left: 50%; transform: translateX(-50%); }
.sk-slogan__wrap { max-width: 920px; margin: 0 auto; }
.sk-slogan__eyebrow {
  font-family: var(--font-body); font-size: 11px; font-weight: 600;
  letter-spacing: 0.4em; text-transform: uppercase;
  color: var(--mf-gold); margin-bottom: 24px;
}
.sk-slogan h2 {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(38px, 4.4vw, 60px); line-height: 1.1;
  color: var(--mf-ink); letter-spacing: -0.005em; margin: 0 0 24px;
}
.sk-slogan h2 em {
  font-style: italic;
  background: var(--foil-gold);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.sk-slogan p {
  font-family: var(--font-subhead); font-style: italic;
  font-size: 21px; line-height: 1.5;
  color: var(--mf-ink-3); max-width: 600px; margin: 0 auto;
}

/* ----- CUVÉES — 2 cards (Pineau d'Aunis & Chenin Blanc) ----- */
.sk-cuvees {
  background: linear-gradient(180deg, #0E0A06 0%, #14100B 100%);
  color: var(--mf-paper);
  padding: 140px 64px;
  border-top: 1px solid rgba(176,138,62,0.22);
}
.sk-cuvees__head {
  max-width: 1280px; margin: 0 auto 72px;
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 64px;
  align-items: end;
}
.sk-cuvees__head h2 {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(40px, 4.6vw, 64px); line-height: 1.06;
  color: var(--mf-paper); letter-spacing: -0.005em; margin: 18px 0 0;
}
.sk-cuvees__head h2 em {
  font-style: italic;
  background: var(--foil-gold);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.sk-cuvees__lede {
  font-family: var(--font-subhead); font-style: italic;
  font-size: 19px; line-height: 1.6;
  color: var(--mf-paper-3); max-width: 52ch; margin: 0;
}
.sk-cuvees__grid {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 28px;
}
.sk-cuvee {
  position: relative;
  display: flex; flex-direction: column;
  padding: 48px 40px 40px;
  background: linear-gradient(180deg, rgba(35,30,24,0.7) 0%, rgba(20,16,12,0.85) 100%);
  border: 1px solid rgba(176,138,62,0.22);
  text-decoration: none; color: inherit;
  transition: border-color var(--t-med), transform var(--t-med);
  overflow: hidden;
}
.sk-cuvee:hover {
  border-color: var(--mf-gold);
  transform: translateY(-4px);
}
.sk-cuvee__num {
  font-family: var(--font-display); font-style: italic;
  font-size: 14px; letter-spacing: 0.06em;
  color: var(--mf-gold); margin-bottom: 6px;
}
.sk-cuvee__type {
  font-family: var(--font-body); font-size: 11px; font-weight: 600;
  letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--mf-silver); margin-bottom: 28px;
}
.sk-cuvee__visual {
  position: relative;
  aspect-ratio: 1 / 1;
  margin: 0 -10px 28px;
  display: flex; align-items: center; justify-content: center;
  background: radial-gradient(ellipse at center, rgba(176,138,62,0.18) 0%, transparent 65%);
  overflow: hidden;
}
/* "Bouteille" stylisée placeholder — proportions fixes */
.sk-cuvee__bottle {
  position: relative;
  width: 150px; height: 360px;
  border-radius: 75px 75px 14px 14px / 100px 100px 14px 14px;
  background: linear-gradient(180deg,
    #2a1f12 0%,
    #1a1108 10%,
    #2a1f12 16%,
    #0a0604 22%,
    #15100a 100%);
  box-shadow:
    inset 8px 0 22px rgba(255,200,120,0.07),
    inset -8px 0 28px rgba(0,0,0,0.7),
    0 22px 32px rgba(0,0,0,0.6);
}
.sk-cuvee__bottle::before {
  content: ''; position: absolute;
  top: -28px; left: 50%; transform: translateX(-50%);
  width: 36px; height: 38px;
  background: linear-gradient(180deg, #1a1108, #0a0604);
  border-radius: 4px 4px 2px 2px;
  box-shadow: inset 0 -4px 6px rgba(255,200,120,0.1);
}
/* Étiquette — rectangle papier */
.sk-cuvee__bottle::after {
  content: ''; position: absolute;
  left: 50%; bottom: 22%; transform: translateX(-50%);
  width: 78%; height: 130px;
  background: var(--mf-paper);
  border: 1px solid rgba(176,138,62,0.4);
  box-shadow: 0 1px 0 rgba(255,255,255,0.04);
}
.sk-cuvee__label {
  position: absolute;
  left: 50%; bottom: calc(22% + 12px);
  transform: translateX(-50%);
  width: 76%;
  height: 110px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  z-index: 2;
  font-family: var(--font-display); font-weight: 600;
  color: var(--mf-ink);
  text-align: center;
  padding: 0 4px;
}
.sk-cuvee__label .mark {
  display: block;
  font-size: 30px;
  line-height: 1;
  background: var(--foil-gold);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  margin-bottom: 10px;
}
.sk-cuvee__label .nm {
  display: block;
  font-size: 9px; font-family: var(--font-body); font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--mf-ink);
  white-space: nowrap;
}
.sk-cuvee__label .yr {
  display: block; margin-top: 6px;
  font-size: 7px; font-family: var(--font-body); font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--mf-gold-deep);
  white-space: nowrap;
}
/* Bulles ambient autour de la bouteille (effervescence visuelle) */
.sk-cuvee__visual .b {
  position: absolute;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: rgba(212,180,106,0.65);
  box-shadow: 0 0 6px rgba(212,180,106,0.5);
  left: 50%; bottom: 12%;
  animation: sk-cb 5s ease-in infinite;
}
.sk-cuvee__visual .b:nth-child(2) { left: 38%; animation-delay: 0.6s; width: 3px; height: 3px; bottom: 14%; }
.sk-cuvee__visual .b:nth-child(3) { left: 62%; animation-delay: 1.2s; width: 5px; height: 5px; bottom: 18%; }
.sk-cuvee__visual .b:nth-child(4) { left: 30%; animation-delay: 1.8s; width: 3px; height: 3px; bottom: 22%; }
@keyframes sk-cb {
  0%   { transform: translateY(0); opacity: 0; }
  18%  { opacity: 1; }
  90%  { opacity: 0.3; }
  100% { transform: translateY(-260px); opacity: 0; }
}

.sk-cuvee__name {
  font-family: var(--font-display); font-weight: 500;
  font-size: 32px; line-height: 1.1;
  margin: 0 0 8px; color: var(--mf-paper);
}
.sk-cuvee__name em { font-style: italic; color: var(--mf-gold); }
.sk-cuvee__tag {
  font-family: var(--font-subhead); font-style: italic;
  font-size: 17px; line-height: 1.5;
  color: var(--mf-paper-3); margin: 0 0 24px;
}
.sk-cuvee__specs {
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid rgba(176,138,62,0.2);
  display: grid; grid-template-columns: 1fr 1fr; gap: 18px 24px;
}
.sk-cuvee__spec .k {
  font-family: var(--font-body); font-size: 10px; font-weight: 600;
  letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--mf-gold); margin-bottom: 4px;
}
.sk-cuvee__spec .v {
  font-family: var(--font-body); font-size: 14px;
  color: var(--mf-paper-2);
}

/* ----- TERROIR — Domaine de La Gildonnière ----- */
.sk-terroir {
  background: var(--mf-paper);
  padding: 140px 64px;
  position: relative;
}
.sk-terroir__wrap {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
  align-items: center;
}
.sk-terroir__visual {
  position: relative;
  aspect-ratio: 1 / 1.1;
  background:
    radial-gradient(ellipse at 30% 30%, rgba(176,138,62,0.32), transparent 55%),
    radial-gradient(ellipse at 70% 70%, rgba(154,91,58,0.28), transparent 60%),
    linear-gradient(180deg, #2A1F14 0%, #14100B 100%);
  border: 1px solid rgba(176,138,62,0.35);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.sk-terroir__visual::before {
  /* Texture tuffeau granuleuse */
  content: '';
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 12% 32%, rgba(255,220,150,0.05) 1px, transparent 2px),
    radial-gradient(circle at 78% 14%, rgba(255,220,150,0.04) 1px, transparent 2px),
    radial-gradient(circle at 36% 76%, rgba(255,220,150,0.06) 1px, transparent 2px),
    radial-gradient(circle at 88% 64%, rgba(255,220,150,0.05) 1px, transparent 2px);
  background-size: 180px 180px, 220px 220px, 200px 200px, 260px 260px;
  mix-blend-mode: screen;
}
.sk-terroir__arch {
  position: relative;
  width: 60%; height: 78%;
  border-radius: 50% 50% 0 0;
  background:
    radial-gradient(ellipse at 50% 90%, rgba(176,138,62,0.3), transparent 70%),
    linear-gradient(180deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.85) 60%, rgba(0,0,0,0.95) 100%);
  border: 1px solid rgba(176,138,62,0.45);
  border-bottom: none;
  display: flex; align-items: flex-end; justify-content: center;
  padding-bottom: 40px;
  box-shadow:
    inset 0 -40px 60px rgba(176,138,62,0.15),
    inset 0 0 0 8px rgba(0,0,0,0.5);
}
.sk-terroir__arch-mark {
  font-family: var(--font-display); font-style: italic; font-weight: 500;
  font-size: 32px;
  background: var(--foil-gold);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.sk-terroir__caption {
  position: absolute;
  left: 24px; bottom: 24px;
  font-family: var(--font-body); font-size: 10.5px; font-weight: 600;
  letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--mf-gold-light);
  background: rgba(14,10,6,0.6);
  padding: 8px 14px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.sk-terroir__text h2 {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(36px, 4.2vw, 56px); line-height: 1.06;
  color: var(--mf-ink); letter-spacing: -0.005em; margin: 18px 0 28px;
}
.sk-terroir__text h2 em {
  font-style: italic;
  background: var(--foil-gold);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.sk-terroir__text p {
  font-family: var(--font-body); font-size: 17px; line-height: 1.6;
  color: var(--mf-ink-3); margin: 0 0 18px; max-width: 52ch;
}
.sk-terroir__text p em { color: var(--mf-gold); font-style: italic; }
.sk-terroir__list {
  margin-top: 28px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 18px 28px;
}
.sk-terroir__item {
  display: flex; align-items: flex-start; gap: 14px;
}
.sk-terroir__item i {
  font-size: 20px; color: var(--mf-gold);
  flex-shrink: 0; margin-top: 2px;
}
.sk-terroir__item h4 {
  font-family: var(--font-body); font-size: 11px; font-weight: 600;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--mf-gold); margin: 0 0 4px;
}
.sk-terroir__item p {
  font-family: var(--font-body); font-size: 14px; line-height: 1.5;
  color: var(--mf-ink-3); margin: 0;
}

/* ----- Responsive ----- */
@media (max-width: 1100px) {
  .sk-hero__inner {
    padding: 170px 40px 64px;
    grid-template-columns: 1fr;
    grid-template-areas:
      "left"
      "right"
      "ticket";
    gap: 28px;
  }
  .sk-hero__placeholder-tag { right: 20px; top: 110px; }
  .sk-hero__stats { gap: 28px; }
  .sk-hero__lede { max-width: none; font-size: 19px; }
  .sk-raison { padding: 110px 40px; }
  .sk-raison__head { grid-template-columns: 1fr; gap: 18px; }
  .sk-raison__missions { grid-template-columns: 1fr; gap: 24px; }
  .sk-values { padding: 110px 40px; }
  .sk-values__grid { grid-template-columns: repeat(2, 1fr); }
  .sk-value:nth-child(2) { border-right: none; }
  .sk-value:nth-child(-n+2) { border-bottom: 1px solid rgba(176,138,62,0.18); }
  .sk-value { min-height: auto; }
  .sk-slogan { padding: 80px 40px; }
  .sk-cuvees { padding: 110px 40px; }
  .sk-cuvees__head { grid-template-columns: 1fr; gap: 18px; }
  .sk-cuvees__grid { grid-template-columns: 1fr; gap: 22px; }
  .sk-terroir { padding: 110px 40px; }
  .sk-terroir__wrap { grid-template-columns: 1fr; gap: 48px; }
  .sk-terroir__list { grid-template-columns: 1fr; }
}
@media (max-width: 680px) {
  .sk-hero { min-height: 86vh; }
  .sk-hero__inner { padding: 150px 20px 56px; }
  .sk-hero__title .big { font-size: clamp(54px, 14vw, 80px); }
  .sk-hero__lede { font-size: 17px; }
  .sk-hero__stats { grid-template-columns: 1fr; gap: 14px; padding-top: 18px; }
  .sk-hero__stats .v { font-size: 24px; }
  .sk-hero__placeholder-tag { font-size: 9px; padding: 8px 12px; right: 12px; top: 100px; }
  .sk-raison { padding: 80px 20px; }
  .sk-raison__quote { padding: 28px 24px 28px 36px; }
  .sk-raison__quote::before { left: 4px; top: 8px; }
  .sk-raison__signs { gap: 28px; }
  .sk-values { padding: 80px 20px; }
  .sk-values__grid { grid-template-columns: 1fr; }
  .sk-value { border-right: none !important; border-bottom: 1px solid rgba(176,138,62,0.18); }
  .sk-value:last-child { border-bottom: none; }
  .sk-slogan { padding: 64px 20px; }
  .sk-cuvees { padding: 80px 20px; }
  .sk-cuvee { padding: 36px 24px 32px; }
  .sk-cuvee__name { font-size: 26px; }
  .sk-cuvee__specs { grid-template-columns: 1fr; gap: 14px; }
  .sk-terroir { padding: 80px 20px; }
  .sk-terroir__visual { aspect-ratio: 1 / 0.9; }
}
