/* ═══════════════════════════════════════════════════════════════════════════
   CHAMPAGNE GARDET — HOMEPAGE
   Architecture : Tokens · Util bar · Nav · Hero · Heritage · Manifesto ·
                  Collections · Featured · Why · Lifestyle · Final CTA · Footer
   ═══════════════════════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400;500;600;700&family=Jost:wght@300;400;500;600&family=Marcellus&family=Marcellus+SC&display=swap');

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

:root {
  --bg-main:        #1a1a1a;
  --bg-deep:        #111111;
  --bg-card:        #1f1f1f;
  --bg-card-hover:  #262626;
  --bg-util:        #0d0d0d;

  --gold:           #c9a84c;
  --gold-light:     #e0c070;
  --gold-soft:      #b89940;
  --gold-dim:       #8a6f2e;
  --gold-engraved:  #d4b25c;

  --text-primary:   #e8e0d0;
  --text-muted:     #888880;
  --text-dim:       #555;

  --border:         rgba(201,168,76,0.22);
  --border-strong:  rgba(201,168,76,0.45);
  --border-subtle:  rgba(255,255,255,0.06);

  --radius-sm:      4px;
  --radius-md:      8px;
  --radius-lg:      14px;
  --radius-pill:    7px;

  --transition:     0.28s cubic-bezier(.4,0,.2,1);
  --transition-slow: 0.6s cubic-bezier(.4,0,.2,1);

  --container:      1280px;
  --container-wide: 1440px;
  --gutter:         clamp(20px, 4vw, 60px);
}

html { scroll-behavior: smooth; scroll-padding-top: 100px; }

html, body {
  background: var(--bg-main);
  color: var(--text-primary);
  font-family: 'Jost', sans-serif;
  font-size: 15px;
  line-height: 1.55;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; color: inherit; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ═══════════════════════════════════════════════════════════════════════════
   UTILS — boutons, titres, eyebrows réutilisables
   ═══════════════════════════════════════════════════════════════════════════ */

.section-eyebrow {
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: clamp(2rem, 4.4vw, 3.4rem);
  line-height: 1.08;
  letter-spacing: 0.005em;
  color: var(--text-primary);
}
.section-title .italic {
  font-style: italic;
  color: var(--gold);
  display: block;
}
.section-title > span:not(.italic) { display: block; }

.section-sub {
  font-family: 'Jost', sans-serif;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.65;
  color: var(--text-muted);
  max-width: 560px;
  margin-top: 18px;
}

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto clamp(40px, 6vw, 70px);
}
.section-header .section-sub { margin-left: auto; margin-right: auto; }

/* ─── Boutons ─── */
.btn-primary,
.btn-ghost,
.btn-outline-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 30px;
  font-family: 'Jost', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--gold);
  color: #1a1a1a;
  border: 1px solid var(--gold);
  box-shadow: 0 10px 24px -10px rgba(201,168,76,0.55);
}
.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 14px 30px -10px rgba(201,168,76,0.7);
}
.btn-primary svg { transition: transform var(--transition); }
.btn-primary:hover svg { transform: translateX(3px); }

.btn-ghost {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid rgba(255,255,255,0.18);
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201,168,76,0.05);
}

.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
}
.btn-outline-gold:hover {
  background: var(--gold);
  color: #1a1a1a;
}

/* ═══════════════════════════════════════════════════════════════════════════
   UTIL BAR — slim, top, fixe
   ═══════════════════════════════════════════════════════════════════════════ */

.util-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1001;
  background: var(--bg-util);
  border-bottom: 1px solid var(--border-subtle);
  height: 36px;
}
.util-inner {
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 0 var(--gutter);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* Lang switcher (3 drapeaux) */
.util-lang { display: flex; align-items: center; gap: 10px; }
.util-flag {
  display: block;
  width: 22px; height: 14px;
  opacity: 0.45;
  transition: opacity var(--transition);
  border-radius: 2px;
  overflow: hidden;
  position: relative;
}
.util-flag img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.util-flag:hover { opacity: 0.95; }
.util-flag.is-active {
  opacity: 1;
  box-shadow: 0 2px 0 var(--gold);
}

/* Phone + login CTA */
.util-right {
  display: flex; align-items: center; gap: 22px;
  font-family: 'Jost', sans-serif;
  font-size: 11.5px;
  letter-spacing: 0.06em;
}
.util-phone {
  display: flex; align-items: center; gap: 6px;
  color: var(--text-muted);
  transition: color var(--transition);
}
.util-phone:hover { color: var(--gold); }
.util-phone svg { opacity: 0.8; }

.util-login {
  color: var(--gold);
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 10.5px;
  transition: color var(--transition);
}
.util-login:hover { color: var(--gold-light); }

/* ═══════════════════════════════════════════════════════════════════════════
   TOP NAV — pill flottante, logo central
   ═══════════════════════════════════════════════════════════════════════════ */

.top-nav {
  position: fixed;
  top: 52px;                              /* sous util-bar */
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  width: min(94%, 1200px);
  background: rgba(20,20,20,0.38);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-pill);
  transition: background var(--transition), border-color var(--transition);
}
.top-nav.is-scrolled {
  background: rgba(15,15,15,0.64);
  border-color: var(--border);
}

.nav-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 12px 28px;
  gap: 24px;
}
.nav-left, .nav-right {
  display: flex;
  align-items: center;
  gap: 26px;
}
.nav-right { justify-content: flex-end; }

.nav-link {
  font-family: 'Jost', sans-serif;
  font-size: 11.5px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-primary);
  opacity: 0.8;
  transition: opacity var(--transition), color var(--transition);
  position: relative;
}
.nav-link:hover {
  opacity: 1;
  color: var(--gold);
}

.nav-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}
.nav-logo .logo-svg {
  width: 124px;
  height: auto;
}

.nav-portal {
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #1a1a1a;
  background: var(--gold);
  padding: 9px 18px;
  border-radius: var(--radius-pill);
  transition: all var(--transition);
}
.nav-portal:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}

/* Mobile burger */
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 4px;
}
.nav-burger span {
  display: block; width: 22px; height: 1.5px;
  background: var(--gold);
  border-radius: 1px;
  transition: transform var(--transition), opacity var(--transition);
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 14px;
  margin-top: 12px;
  padding: 20px 22px;
  background: rgba(20,20,20,0.95);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
}
.mobile-menu a {
  font-family: 'Jost', sans-serif;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-primary);
  padding: 6px 0;
}
.nav-portal--mobile {
  background: var(--gold);
  color: #1a1a1a !important;
  padding: 12px 16px !important;
  text-align: center;
  border-radius: var(--radius-pill);
  margin-top: 6px;
}

/* ═══════════════════════════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════════════════════════ */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 100px var(--gutter);
  /* Fond sombre chaud affiché pendant le chargement de la vidéo (évite le hero
     noir) — couleur, pas image. La vidéo (z-index:0) se pose par-dessus. */
  background: linear-gradient(160deg, #241a12 0%, #12100d 60%, #0c0a08 100%);
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(10,10,10,0.55) 0%, rgba(10,10,10,0.35) 40%, rgba(10,10,10,0.85) 100%);
  z-index: 1;
}
.hero-vignette {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, transparent 30%, rgba(0,0,0,0.65) 100%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 920px;
  padding-top: 40px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: 'Jost', sans-serif;
  font-size: 11.5px;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 30px;
}
.hero-dash {
  display: block;
  width: 42px; height: 1px;
  background: var(--gold);
  opacity: 0.7;
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(2.6rem, 7vw, 5.6rem);
  line-height: 1.02;
  letter-spacing: 0.005em;
  color: var(--text-primary);
  margin-bottom: 32px;
  text-shadow: 0 4px 28px rgba(0,0,0,0.5);
}
.hero-line { display: block; }
.hero-line--italic {
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
}

.hero-sub {
  font-family: 'Jost', sans-serif;
  font-size: clamp(14px, 1.2vw, 16px);
  font-weight: 300;
  line-height: 1.7;
  color: var(--text-primary);
  opacity: 0.88;
  max-width: 620px;
  margin: 0 auto 44px;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  left: 50%;
  bottom: 38px;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--text-primary);
  font-family: 'Jost', sans-serif;
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  opacity: 0.7;
  transition: opacity var(--transition);
  animation: scrollBob 2.4s ease-in-out infinite;
}
.hero-scroll:hover { opacity: 1; }
.hero-scroll svg { width: 18px; height: 20px; }

@keyframes scrollBob {
  0%, 100% { transform: translate(-50%, 0); }
  50%      { transform: translate(-50%, 5px); }
}

/* ═══════════════════════════════════════════════════════════════════════════
   HERITAGE STRIP
   ═══════════════════════════════════════════════════════════════════════════ */

.heritage {
  background: var(--bg-deep);
  padding: clamp(50px, 6vw, 80px) var(--gutter);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}
.heritage-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.heritage-stat { text-align: center; position: relative; }
.heritage-stat + .heritage-stat::before {
  content: '';
  position: absolute;
  left: -15px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 60px;
  background: var(--border-subtle);
}
.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  line-height: 1;
  color: var(--gold);
  letter-spacing: 0.02em;
  margin-bottom: 10px;
}
.stat-lbl {
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ═══════════════════════════════════════════════════════════════════════════
   MANIFESTO
   ═══════════════════════════════════════════════════════════════════════════ */

.manifesto {
  /* padding-bottom = 0 : on laisse la cellule image toucher le bord bas
     du section, sinon la rose s'arrête à clamp(80px, 10vw, 130px) du fond. */
  padding: clamp(80px, 10vw, 130px) var(--gutter) 0;
  background: var(--bg-main);
}
.manifesto-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.9fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: end;            /* ancre les cellules au bas de la rangée */
}
.manifesto-text {
  max-width: 580px;
  /* compense le padding-bottom retiré du section pour garder le rythme
     visuel sous le bloc de texte. */
  padding-bottom: clamp(80px, 10vw, 130px);
}
.manifesto-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: clamp(2.2rem, 4.4vw, 3.4rem);
  line-height: 1.1;
  margin-bottom: 28px;
}
.manifesto-title .italic {
  font-style: italic;
  color: var(--gold);
  display: block;
}
.manifesto-title > span:not(.italic) { display: block; }

.manifesto-body {
  font-family: 'Jost', sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--text-primary);
  opacity: 0.85;
  margin-bottom: 32px;
}
.manifesto-sign {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 15px;
  letter-spacing: 0.05em;
  color: var(--gold);
}

.manifesto-image {
  position: relative;
  min-height: 420px;
  /* Ancre la rose en bas du bloc : la tige démarre au pied de la div,
     la fleur monte vers le haut (pattern footer-rose §7terdecima). */
}
.manifesto-image img {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  max-width: 100%;
  max-height: 480px;
  width: auto;
  filter: drop-shadow(0 30px 50px rgba(0,0,0,0.6));
}

/* ═══════════════════════════════════════════════════════════════════════════
   COLLECTIONS (grille 4 cards)
   ═══════════════════════════════════════════════════════════════════════════ */

.collections {
  padding: clamp(80px, 10vw, 130px) var(--gutter);
  background: var(--bg-deep);
}
.collections-grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(18px, 2vw, 28px);
}

.col-card {
  display: flex;
  flex-direction: column;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition);
  cursor: pointer;
  position: relative;
}
.col-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid transparent;
  border-radius: var(--radius-md);
  pointer-events: none;
  transition: border-color var(--transition);
  z-index: 1;
}
.col-card:hover {
  transform: translateY(-6px);
  background: var(--bg-card-hover);
}
.col-card:hover::before { border-color: var(--gold); }

.col-card-image {
  height: auto;
  background: linear-gradient(180deg, rgba(0,0,0,0.15) 0%, transparent 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0px;
  position: relative;
  overflow: hidden;
}
.col-card-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(201,168,76,0.05) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition);
}
.col-card:hover .col-card-image::after { opacity: 1; }
.col-card-image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 20px 32px rgba(0,0,0,0.7));
  transition: transform var(--transition-slow);
}
.col-card:hover .col-card-image img {
  transform: translateY(-4px) scale(1.03);
}

.col-card-body {
  padding: 24px 22px 26px;
  border-top: 1px solid var(--border-subtle);
}
.col-card-eyebrow {
  font-family: 'Jost', sans-serif;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.col-card-title {
  font-family: 'Marcellus SC', 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 22px;
  letter-spacing: 0.08em;
  color: var(--gold);
  margin-bottom: 14px;
}
.col-card-desc {
  font-family: 'Jost', sans-serif;
  font-size: 13px;
  font-weight: 300;
  line-height: 1.65;
  color: var(--text-muted);
  margin-bottom: 22px;
  min-height: 60px;
}
.col-card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 14px;
  border-top: 1px solid var(--border-subtle);
  font-family: 'Jost', sans-serif;
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.col-card-meta > span:first-child { color: var(--text-muted); }
.col-card-arrow {
  color: var(--gold);
  font-weight: 500;
  transition: transform var(--transition);
}
.col-card:hover .col-card-arrow {
  transform: translateX(4px);
}

/* ═══════════════════════════════════════════════════════════════════════════
   FEATURED (cuvées vedettes, BDD)
   ═══════════════════════════════════════════════════════════════════════════ */

.featured {
  padding: clamp(80px, 10vw, 130px) var(--gutter);
  background: var(--bg-main);
}
.featured-grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(22px, 2vw, 36px);
}

.ft-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.02) 0%, transparent 100%);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 40px 30px 32px;
  text-align: center;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  /* Colonne flex : permet de coller .ft-card-link au bas de la carte
     (margin-top:auto) quelle que soit la hauteur de .ft-card-desc. Les cartes
     d'une même rangée sont déjà à hauteur égale (grid align-items:stretch). */
  display: flex;
  flex-direction: column;
}
.ft-card::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}
.ft-card:hover {
  border-color: var(--border);
  background: linear-gradient(180deg, rgba(201,168,76,0.04) 0%, transparent 80%);
  transform: translateY(-4px);
}
.ft-card:hover::before { opacity: 1; }

.ft-card-image {
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  /* L'élément est désormais un <a> (deep-link démo vers product.php) :
     on neutralise les styles de link par défaut (color/underline) tout en
     gardant le curseur pointer hérité. L'effet visuel de clic est porté par
     le translateY -6px sur .ft-bottle au :hover du parent .ft-card. */
  color: inherit;
  text-decoration: none;
}
.ft-bottle {
  filter: drop-shadow(0 22px 36px rgba(0,0,0,0.6));
  transition: transform var(--transition-slow);
}
.ft-card:hover .ft-bottle { transform: translateY(-6px); }

.ft-card-collection {
  font-family: 'Jost', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.ft-card-name {
  font-family: 'Marcellus', 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 22px;
  line-height: 1.25;
  color: var(--text-primary);
  margin-bottom: 14px;
  min-height: 56px;
}
.ft-card-desc {
  font-family: 'Jost', sans-serif;
  font-size: 13px;
  font-weight: 300;
  line-height: 1.65;
  color: var(--text-muted);
  margin-bottom: 22px;
}
.ft-card-link {
  display: inline-block;
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  border-bottom: 1px solid transparent;
  padding-bottom: 3px;
  transition: border-color var(--transition);
  /* Toujours au bas de la carte, quelle que soit la longueur de .ft-card-desc.
     align-self:center → garde la largeur du contenu (soulignement au hover
     sous le texte seulement, pas sur toute la largeur de la carte). */
  margin-top: auto;
  align-self: center;
}
.ft-card-link:hover { border-color: var(--gold); }

.featured-foot {
  margin-top: clamp(40px, 6vw, 60px);
  text-align: center;
}

/* ═══════════════════════════════════════════════════════════════════════════
   AWARDS (palmarès cuvées primées)
   ═══════════════════════════════════════════════════════════════════════════ */

.awards {
  padding: clamp(80px, 10vw, 130px) var(--gutter);
  background:
    radial-gradient(ellipse at 50% 0%, rgba(201,168,76,0.08) 0%, transparent 55%),
    var(--bg-deep);
  position: relative;
}
.awards::before,
.awards::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}
.awards::before { top: 0; }
.awards::after  { bottom: 0; }

.awards-grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(18px, 2vw, 30px);
}

.aw-card {
  position: relative;
  background: linear-gradient(180deg, rgba(201,168,76,0.06) 0%, rgba(255,255,255,0.01) 100%);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 28px 22px 26px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  transition: all var(--transition);
  overflow: hidden;
}
.aw-card::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 70%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.6;
  transition: opacity var(--transition), width var(--transition);
}
.aw-card:hover {
  border-color: var(--border);
  background: linear-gradient(180deg, rgba(201,168,76,0.10) 0%, rgba(255,255,255,0.02) 100%);
  transform: translateY(-4px);
}
.aw-card:hover::before {
  opacity: 1;
  width: 85%;
}

/* Médaille / logo presse en haut de chaque award card.
   Slot 100×100 FIXE pour garantir que tout ce qui suit (bouteille, cuvée,
   award meta) soit à la MÊME hauteur de baseline sur les 4 cards — même si
   les logos sources ont des ratios différents (Drinks Business carré,
   Bettane large, Sakura long, James Suckling mid). L'image dedans est en
   object-fit: contain → ratio préservé, centrée dans le slot, jamais
   rognée. Pas de height:auto ici car ça désaligne les siblings selon le
   logo le plus haut. */
.aw-medal {
  width: 100px;
  height: 100px;
  margin-top: -4px;
  filter: drop-shadow(0 6px 14px rgba(201,168,76,0.35));
  display: flex;
  align-items: center;
  justify-content: center;
}
.aw-medal svg { width: 100%; height: 100%; display: block; }
.aw-medal-img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  /* Halo or doux autour des lettres / formes du logo (WebP transparents).
     drop-shadow() respecte le canal alpha → l'ombre suit le contour réel
     des glyphes, pas le rectangle de l'image. Empilage de 2 couches :
       1. tight glow → bord lumineux net qui « éclaire » les lettres
       2. soft halo  → diffusion subtile autour de l'ensemble du logo
     S'ajoute à la drop-shadow de profondeur héritée de .aw-medal. */
  filter:
    drop-shadow(0 0 2px rgba(201,168,76,0.75))
    drop-shadow(0 0 5px rgba(201,168,76,0.78));
  transition: filter var(--transition);
}
.aw-card:hover .aw-medal-img {
  filter:
    drop-shadow(0 0 3px rgba(224,192,112,0.90))
    drop-shadow(0 0 4px rgba(224,192,112,0.90));
}

/* Bouteille */
.aw-bottle {
  height: 200px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  /* L'élément est désormais un <a> (deep-link démo vers product.php) :
     on neutralise les styles de lien par défaut tout en gardant le
     curseur pointer hérité. L'effet visuel de clic est porté par
     translateY -4px sur .aw-bottle-img au :hover du parent .aw-card. */
  color: inherit;
  text-decoration: none;
}
.aw-bottle-img {
  filter: drop-shadow(0 18px 28px rgba(0,0,0,0.7));
  transition: transform var(--transition-slow);
}
.aw-card:hover .aw-bottle-img { transform: translateY(-4px); }

/* Cuvée name */
.aw-cuvee {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.aw-collection-tag {
  font-family: 'Jost', sans-serif;
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.85;
}
.aw-name {
  font-family: 'Marcellus', 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 17px;
  line-height: 1.25;
  color: var(--text-primary);
  letter-spacing: 0.005em;
  min-height: 42px;
}

/* Award détail */
.aw-award {
  width: 100%;
  padding-top: 16px;
  border-top: 1px solid var(--border-subtle);
}
.aw-critic {
  font-family: 'Marcellus SC', 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 6px;
  line-height: 1.25;
  /* Réserve 2 lignes minimum pour aligner les .aw-meta des 4 cards.
     Sans ça, « James Suckling » (1 ligne) et « La Sélection Bettane +
     Desseauve » (2 lignes) feraient des hauteurs différentes → l'année
     et le score plus bas se désaligneraient entre cards. 
  min-height: calc(1.25em * 2);*/
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
.aw-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.02em;
  margin-bottom: 8px;
  line-height: 1.3;
}
.aw-meta {
  font-family: 'Jost', sans-serif;
  font-size: 10.5px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.aw-sep { opacity: 0.5; }
.aw-score {
  color: var(--text-primary);
  font-weight: 500;
}

/* ═══════════════════════════════════════════════════════════════════════════
   WHY GARDET (4 value props)
   ═══════════════════════════════════════════════════════════════════════════ */

.why {
  padding: clamp(80px, 10vw, 130px) var(--gutter);
  background: var(--bg-deep);
  position: relative;
}
.why::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.why-grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(20px, 2.4vw, 36px);
}

.why-card {
  position: relative;          /* ancre pour le ::before image */
  overflow: hidden;            /* tronque l'image au radius */
  isolation: isolate;          /* nouveau stacking context (z-index propre) */
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 36px 26px;
  text-align: center;
  transition: all var(--transition);
}
/* Image décorative en background — opt-in via --why-img sur l'article.
   Couche 1 (::before, z-index:-2) : l'image elle-même, opacité basse pour
   rester discrète et ne pas dominer le texte.
   Couche 2 (::after, z-index:-1)  : vignette dark gradient qui assombrit
   progressivement le bas de la card → boost lisibilité du .why-desc
   (qui est en font-weight 400 + text-secondary).
   Couche 3 (contenu, z-index:1)   : icône, titre, texte au premier plan. */
.why-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: var(--why-img, none);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.70;                       /* ↓ de 0.5 → 0.30 : laisse passer le texte */
  z-index: -2;
  /* « luminosity » fond la teinte de l'image avec le dark/gold du fond pour
     un rendu cohérent — pas de visage qui ressort en couleur criarde. 
  mix-blend-mode: luminosity;*/
  transition: opacity var(--transition), transform var(--transition);
}
.why-card::after {
  content: '';
  position: absolute;
  inset: 0;
  /* Vignette dark : transparente en haut (laisse voir l'icône or sur l'image),
     opaque en bas (zone du .why-desc) → contraste garanti pour le texte. */
  background: linear-gradient(
    180deg,
    rgba(20,20,20,0)    0%,
    rgba(20,20,20,0)    30%,
    rgba(20,20,20,0.55) 75%,
    rgba(20,20,20,0.80) 100%
  );
  z-index: -1;
  pointer-events: none;
}
.why-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border);
  transform: translateY(-4px);
}
.why-card:hover::before {
  opacity: 0.42;                       /* léger boost au survol */
  transform: scale(1.04);              /* zoom ken-burns subtil */
}
/* Contenu au-dessus des 2 couches décoratives */
.why-card > * { position: relative; z-index: 1; }

.why-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  border: 1px solid var(--border);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.12) 0%, transparent 70%);
}
.why-icon svg { width: 26px; height: 26px; }

.why-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 19px;
  color: var(--text-primary);
  margin-bottom: 14px;
  letter-spacing: 0.01em;
  /* Micro-shadow pour décoller le titre du background image qui peut être
     clair par endroits (reflets, étiquettes blanches). Imperceptible sur
     un fond uni car ombre noire à 20%, très diffuse. */
  text-shadow: 0 1px 3px rgba(0,0,0,0.45);
}
.why-desc {
  font-family: 'Jost', sans-serif;
  font-size: 13px;
  font-weight: 400;                          /* ↑ de 300 → 400 : plus dense */
  line-height: 1.7;
  color: var(--text-secondary);              /* ↑ de muted → secondary : +30% contraste */
  text-shadow: 0 1px 2px rgba(0,0,0,0.55);   /* boost lisibilité sur image */
}

/* ═══════════════════════════════════════════════════════════════════════════
   LIFESTYLE (video slider)
   ═══════════════════════════════════════════════════════════════════════════ */

.lifestyle {
  padding: clamp(80px, 10vw, 130px) 0 0;
  background: var(--bg-main);
}
.lifestyle .section-header { padding: 0 var(--gutter); }

.video-slider {
  position: relative;
  margin-top: clamp(30px, 5vw, 50px);
  padding: 0 var(--gutter) clamp(60px, 8vw, 100px);
}
.slider-viewport {
  overflow: hidden;
  max-width: var(--container-wide);
  margin: 0 auto;
  border-radius: var(--radius-md);
}
.slider-track {
  display: flex;
  gap: 14px;
  transition: transform 0.5s cubic-bezier(.4,0,.2,1);
}
.slide {
  flex: 0 0 calc(33.333% - 9.5px);
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: var(--radius-sm);
  background: var(--bg-card);
  position: relative;
}
.slide-video {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}

.slider-arrow {
  position: absolute;
  top: calc(50% - 30px);                /* compense le padding-bottom de la section */
  transform: translateY(-50%);
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(20,20,20,0.85);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-subtle);
  color: var(--text-primary);
  display: flex; align-items: center; justify-content: center;
  z-index: 5;
  transition: all var(--transition);
}
.slider-arrow:hover {
  background: var(--gold);
  color: #1a1a1a;
  border-color: var(--gold);
}
.slider-arrow svg { width: 20px; height: 20px; }
.slider-arrow--prev { left: calc(var(--gutter) + 8px); }
.slider-arrow--next { right: calc(var(--gutter) + 8px); }

/* ═══════════════════════════════════════════════════════════════════════════
   FINAL CTA
   ═══════════════════════════════════════════════════════════════════════════ */

.final-cta {
  padding: clamp(90px, 12vw, 150px) var(--gutter);
  background:
    radial-gradient(ellipse at 30% 0%, rgba(201,168,76,0.10) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 100%, rgba(201,168,76,0.06) 0%, transparent 50%),
    var(--bg-deep);
  text-align: center;
  border-top: 1px solid var(--border-subtle);
}
.final-cta-inner {
  max-width: 760px;
  margin: 0 auto;
}
.final-cta-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  line-height: 1.08;
  letter-spacing: 0.005em;
  margin: 18px 0 28px;
}
.final-cta-title .italic {
  font-style: italic;
  color: var(--gold);
  display: block;
}
.final-cta-title > span:not(.italic) { display: block; }

.final-cta-sub {
  font-family: 'Jost', sans-serif;
  font-size: 15.5px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--text-muted);
  margin: 0 auto 40px;
  max-width: 580px;
}
.final-cta-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ═══════════════════════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════════════════════ */

.site-footer {
  background: #0a0a0a;
  border-top: 1px solid var(--border-subtle);
  padding: clamp(60px, 8vw, 90px) var(--gutter) 0;
}
.footer-grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1.4fr;
  gap: clamp(28px, 4vw, 60px);
  padding-bottom: clamp(40px, 5vw, 56px);
}
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-col-title {
  font-family: 'Marcellus SC', 'Cormorant Garamond', serif;
  font-size: 15px;
  letter-spacing: 0.14em;
  color: var(--gold);
  margin-bottom: 8px;
}
.footer-col a {
  font-family: 'Jost', sans-serif;
  font-size: 13px;
  font-weight: 300;
  color: var(--text-muted);
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--gold); }
.footer-col p {
  font-family: 'Jost', sans-serif;
  font-size: 13px;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.7;
}
.footer-col p a {
  color: var(--text-primary);
  border-bottom: 1px dotted transparent;
}
.footer-col p a:hover { border-color: var(--gold); color: var(--gold); }

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 14px;
}
.social-icon {
  width: 34px; height: 34px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--border-subtle);
  border-radius: 50%;
  color: var(--text-muted);
  transition: all var(--transition);
}
.social-icon svg { width: 17px; height: 17px; }
.social-icon:hover {
  color: var(--gold);
  border-color: var(--gold);
  transform: translateY(-2px);
}

.footer-bottom {
  border-top: 1px solid var(--border-subtle);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
  max-width: var(--container);
  margin: 0 auto;
}
.footer-copyright {
  font-family: 'Jost', sans-serif;
  font-size: 12px;
  color: var(--text-dim);
  letter-spacing: 0.06em;
}
.footer-legal {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}
.footer-legal a {
  font-family: 'Jost', sans-serif;
  font-size: 11.5px;
  color: var(--text-dim);
  letter-spacing: 0.08em;
  transition: color var(--transition);
}
.footer-legal a:hover { color: var(--gold); }

/* ═══════════════════════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════════════════════ */

@media (max-width: 1100px) {
  .collections-grid { grid-template-columns: repeat(2, 1fr); }
  .featured-grid    { grid-template-columns: repeat(2, 1fr); }
  .awards-grid      { grid-template-columns: repeat(2, 1fr); }
  .why-grid         { grid-template-columns: repeat(2, 1fr); }
  .footer-grid      { grid-template-columns: 1fr 1fr; }
  .heritage-inner   { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .heritage-stat + .heritage-stat::before { display: none; }
  .slide            { flex-basis: calc(50% - 7px); }
}

@media (max-width: 768px) {
  .util-right { gap: 14px; }
  .util-phone span { display: none; }

  .top-nav { top: 46px; width: calc(100% - 24px); border-radius: 10px; padding: 4px; }
  /* Logo nav CENTRÉ sur mobile : grille 1fr | auto | 1fr → logo en col 2 (centré
     entre deux colonnes égales), burger en col 3 à droite. */
  .nav-inner { padding: 8px 16px; grid-template-columns: 1fr auto 1fr; }
  .nav-left, .nav-right { display: none; }
  .nav-logo { grid-column: 2; justify-self: center; }
  .nav-logo .logo-svg { width: 100px; }
  .nav-burger { grid-column: 3; justify-self: end; display: flex; }
  .mobile-menu { display: none; }
  .top-nav.menu-open .mobile-menu { display: flex; }

  .hero { padding-top: 120px; min-height: 90vh; }
  .hero-title { font-size: clamp(2.2rem, 9vw, 3.4rem); }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-ctas a { justify-content: center; }
  .hero-eyebrow { font-size: 10px; letter-spacing: 0.22em; gap: 8px; }
  .hero-dash { width: 24px; }
  .hero-scroll { display: none; }

  .manifesto-inner { grid-template-columns: 1fr; gap: 50px; }
  /* Ordre naturel du DOM sur mobile : le texte AU-DESSUS de l'image (on retire
     order:-1 qui remontait l'image). On annule aussi le padding-bottom du texte
     (utile seulement en 2 colonnes desktop) → l'espacement texte↔image est porté
     par le gap de 50px, et l'image reste ancrée au bas de la section (rose). */
  .manifesto-text { padding-bottom: 0; }
  .manifesto-image { min-height: 320px; }
  .manifesto-image img { max-height: 320px; }

  .collections-grid,
  .featured-grid,
  .awards-grid,
  .why-grid {
    grid-template-columns: 1fr;
  }
  .col-card-image { height: auto; }
  .ft-card-image  { height: auto; }

  .slide { flex-basis: calc(100% - 0px); }
  .slider-arrow { width: 40px; height: 40px; }

  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 14px; }
}

@media (max-width: 440px) {
  .util-login { font-size: 9.5px; letter-spacing: 0.1em; }
  .hero-title { font-size: 2rem; }
  .section-title { font-size: 1.9rem; }
  .stat-num { font-size: 2rem; }
}
