/*
Theme Name:   Blocksy Child — In Vino Veritas
Theme URI:    https://projet.drinkspirated.com/
Description:  Child theme Blocksy pour Drinkspirated — luxury editorial 2025
Author:       Drinkspirated
Template:     blocksy
Version:      1.1.3
License:      GPL-2.0-or-later
Text Domain:  blocksy-child-invino
*/

/* =========================================================
   DESIGN TOKENS
   ========================================================= */
:root {
  --B:  #1A2332; --B2: #0F1620; --B3: #243040;
  --G:  #C9A84C; --G2: #A88830; --G3: #D4B86A;
  --C:  #F5F3EF; --C2: #E5E7EB; --C3: #D1D5DB;
  --N:  #1A2332; --N2: #0F1620; --N3: #0A0F18;
  --W:  #FAFAFA;
  --grey:  #6B7280;
  --grey2: #9CA3AF;
  --clr-gris: #6B7280;

  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans:  'DM Sans', system-ui, sans-serif;
  --ff-head: 'Cormorant Garamond', Georgia, serif;
  --ff-body: 'DM Sans', system-ui, sans-serif;

  --ease:  cubic-bezier(.16, 1, .3, 1);
  --ease2: cubic-bezier(.4, 0, .2, 1);
  --dur:   250ms;
  --dur2:  400ms;

  /* Spacing scale */
  --sp-1: .25rem;  --sp-2: .5rem;   --sp-3: .75rem;
  --sp-4: 1rem;    --sp-5: 1.25rem; --sp-6: 1.5rem;
  --sp-8: 2rem;    --sp-10: 2.5rem; --sp-12: 3rem;
  --sp-16: 4rem;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    transition-duration: .01ms !important;
    animation-duration:  .01ms !important;
    animation-iteration-count: 1 !important;
  }
  html { scroll-behavior: auto; }
}

/* =========================================================
   RESET & BASE
   ========================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  color: var(--N);
  background: var(--W);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; transition: color var(--dur) var(--ease2); }
a:focus-visible { outline: 2px solid var(--G); outline-offset: 3px; border-radius: 2px; }

/* =========================================================
   TYPOGRAPHY
   ========================================================= */
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -.02em;
  color: var(--N);
}
h1 { font-size: clamp(3rem, 8vw, 8rem); }
h2 { font-size: clamp(2.25rem, 5vw, 5rem); }
h3 { font-size: clamp(1.5rem, 2.5vw, 2.5rem); }
h4 { font-size: 1.25rem; font-family: var(--sans); font-weight: 400; letter-spacing: 0; }

/* Base paragraph — dark on light backgrounds. Dark sections override with rgba(245,243,239,...) */
p { line-height: 1.85; font-weight: 300; color: #374151; }

em { font-style: italic; color: var(--B); }

.eyebrow {
  font-family: var(--sans);
  font-size: .65rem;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--G);
  display: flex;
  align-items: center;
  gap: 1rem;
}
.eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--G);
  flex-shrink: 0;
}

.s-label {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-size: .65rem;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--grey2);
  margin-bottom: 3rem;
}
.s-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--C2);
}

blockquote {
  font-family: var(--serif);
  font-size: clamp(1.75rem, 3.5vw, 3.5rem);
  font-weight: 300;
  font-style: italic;
  color: var(--C);
  line-height: 1.3;
  letter-spacing: -.01em;
}

/* =========================================================
   LAYOUT
   ========================================================= */
.container {
  width: 100%;
  max-width: 1400px;
  margin-inline: auto;
  padding-inline: 6vw;
}
.container--narrow {
  max-width: 860px;
  margin-inline: auto;
  padding-inline: 6vw;
}

/* =========================================================
   BUTTONS
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .625rem;
  font-family: var(--sans);
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 1rem 2.25rem;
  border-radius: 2px;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: background var(--dur) var(--ease2),
              color var(--dur) var(--ease2),
              transform var(--dur) var(--ease2),
              box-shadow var(--dur) var(--ease2);
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn:focus-visible { outline: 2px solid var(--G); outline-offset: 3px; }

.btn--dark   { background: var(--N);  color: var(--C); }
.btn--dark:hover { background: var(--N2); }

.btn--gold   { background: var(--G);  color: #fff; }
.btn--gold:hover { background: var(--G2); }

.btn--wine   { background: var(--B);  color: #fff; }
.btn--wine:hover { background: var(--B2); }

.btn--ghost  { background: transparent; color: var(--N); border: 1px solid var(--C3); }
.btn--ghost:hover { background: var(--N); color: var(--W); border-color: var(--N); }

.btn--ghost-w { background: transparent; color: rgba(247,242,234,.85); border: 1px solid rgba(255,255,255,.25); }
.btn--ghost-w:hover { border-color: #fff; color: #fff; }

.btn-arrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--B);
  transition: gap var(--dur) var(--ease);
}
.btn-arrow:hover { gap: .875rem; }
.btn-arrow svg { transition: transform var(--dur) var(--ease); }
.btn-arrow:hover svg { transform: translateX(3px); }

/* =========================================================
   HEADER
   ========================================================= */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 6vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  transition: background var(--dur2) var(--ease2),
              border-color var(--dur2) var(--ease2);
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(26, 35, 50, .97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-color: rgba(255,255,255,.08);
}

/* Header always over dark background — all elements light */
.site-logo {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 400;
  letter-spacing: .04em;
  color: var(--C);
  display: flex;
  align-items: center;
  gap: .75rem;
}
.site-logo__mark {
  width: 28px; height: 28px;
  background: var(--G);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #fff;
}
.site-logo__mark svg { width: 13px; height: 13px; }

.site-nav { display: none; }
@media (min-width: 1024px) {
  .site-nav {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    list-style: none;
  }
  .site-nav a {
    font-size: .78rem;
    font-weight: 400;
    letter-spacing: .07em;
    text-transform: uppercase;
    color: rgba(245,243,239,.55);
    position: relative;
  }
  .site-nav a::after {
    content: '';
    position: absolute;
    bottom: -3px; left: 0; right: 100%;
    height: 1px;
    background: var(--G);
    transition: right var(--dur2) var(--ease);
  }
  .site-nav a:hover { color: var(--C); }
  .site-nav a:hover::after { right: 0; }
}

.site-header__cta { display: flex; align-items: center; gap: 1rem; }
.btn-hdr {
  font-family: var(--sans);
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .6rem 1.5rem;
  border-radius: 2px;
  transition: all var(--dur) var(--ease2);
}
.btn-hdr--ghost { border: 1px solid rgba(255,255,255,.25); color: rgba(245,243,239,.75); background: transparent; }
.btn-hdr--ghost:hover { border-color: var(--G); color: var(--G); }
.btn-hdr--solid { background: var(--G); color: var(--N); border: 1px solid var(--G); font-weight: 600; }
.btn-hdr--solid:hover { background: var(--G2); border-color: var(--G2); }

.menu-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.menu-toggle span {
  display: block;
  height: 1.5px;
  background: rgba(245,243,239,.8);
  border-radius: 2px;
  transition: transform var(--dur) var(--ease), opacity var(--dur) var(--ease);
}
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
@media (min-width: 1024px) { .menu-toggle { display: none; } }

.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--B);
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 2rem 6vw;
  gap: .25rem;
}
.mobile-nav.is-open { display: flex; }
.mobile-nav a {
  font-size: .9rem;
  font-weight: 400;
  color: rgba(245,243,239,.7);
  padding-block: .875rem;
  border-bottom: 1px solid rgba(255,255,255,.07);
  letter-spacing: .04em;
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover { color: var(--C); }

/* =========================================================
   HERO
   ========================================================= */
.hero {
  min-height: 100svh;
  position: relative;
  background: var(--N3);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 72px 6vw 8vw;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(26, 35, 50, .6) 0%, transparent 65%),
    radial-gradient(ellipse 50% 80% at 10% 80%, rgba(201, 168, 76, .1) 0%, transparent 60%);
}

.hero__grain {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.045'/%3E%3C/svg%3E");
  background-size: 256px;
  opacity: .6;
}

.hero__watermark {
  position: absolute;
  top: 50%; right: 4vw;
  transform: translateY(-50%);
  font-family: var(--serif);
  font-size: clamp(12rem, 28vw, 32rem);
  font-weight: 300;
  color: rgba(255, 255, 255, .022);
  line-height: 1;
  user-select: none;
  pointer-events: none;
  letter-spacing: -.05em;
}

.hero__content { position: relative; z-index: 2; }

.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-family: var(--sans);
  font-size: .7rem;
  font-weight: 400;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--G);
  margin-bottom: 2rem;
}
.hero__eyebrow::before {
  content: '';
  display: block;
  width: 40px; height: 1px;
  background: var(--G);
  flex-shrink: 0;
}

.hero h1 {
  font-family: var(--serif);
  font-size: clamp(4rem, 10vw, 11rem);
  font-weight: 300;
  color: var(--C);
  line-height: .92;
  letter-spacing: -.03em;
  margin-bottom: 4vw;
}
.hero h1 em { color: var(--G3); font-style: italic; }

.hero__sub {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 3rem;
  flex-wrap: wrap;
}
.hero__desc {
  font-size: clamp(.9rem, 1.1vw, 1.1rem);
  color: rgba(245, 243, 239, .5);
  max-width: 40ch;
  line-height: 1.8;
  font-weight: 300;
}
.hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.scroll-ind {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  color: rgba(255, 255, 255, .2);
  font-size: .6rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  z-index: 2;
}
.scroll-ind__line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(201, 168, 76, .8), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: .3; transform: scaleY(1); }
  50%       { opacity: 1;  transform: scaleY(1.1); }
}

/* =========================================================
   PAGE HERO (sous-pages)
   ========================================================= */
.page-hero {
  padding-top: 72px;
  background: var(--N);
  position: relative;
  overflow: hidden;
}
.page-hero__bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 70% at 80% 30%, rgba(26, 35, 50, .5) 0%, transparent 70%);
}
.page-hero__inner {
  padding: 8vw 6vw 6vw;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: end;
}
@media (max-width: 767px) { .page-hero__inner { grid-template-columns: 1fr; } }

.page-hero__title {
  font-family: var(--serif);
  font-size: clamp(3rem, 7vw, 8rem);
  font-weight: 300;
  letter-spacing: -.03em;
  line-height: .9;
  color: var(--C);
}
.page-hero__title em { font-style: italic; color: var(--G3); }

.page-hero__desc {
  font-size: .95rem;
  color: rgba(245, 243, 239, .45);
  line-height: 1.85;
  font-weight: 300;
  max-width: 42ch;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, .07);
}
.page-hero__line {
  height: 1px;
  background: linear-gradient(to right, var(--G), transparent);
  margin: 0 6vw;
}

/* =========================================================
   MANIFESTE / PHILOSOPHY
   ========================================================= */
.manifeste {
  padding: 12vw 6vw;
  background: var(--W);
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 6vw;
  align-items: start;
}
@media (max-width: 767px) { .manifeste { grid-template-columns: 1fr; } }

.manifeste__num {
  font-family: var(--serif);
  font-size: 5rem;
  font-weight: 300;
  color: var(--C2);
  line-height: 1;
  letter-spacing: -.04em;
  padding-top: .5rem;
}

.manifeste__title {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 5vw, 5.5rem);
  font-weight: 300;
  color: var(--N);
  line-height: 1.0;
  letter-spacing: -.025em;
  margin-bottom: 2.5rem;
}

.manifeste__text {
  font-size: 1rem;
  line-height: 1.9;
  color: var(--grey);
  font-weight: 300;
  max-width: 55ch;
  margin-bottom: 3rem;
}

.stats-row {
  display: flex;
  gap: 4rem;
  flex-wrap: wrap;
  padding-top: 3rem;
  border-top: 1px solid var(--C2);
}
.stat__num {
  font-family: var(--serif);
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--B);
  line-height: 1;
  letter-spacing: -.03em;
  display: block;
}
.stat__label {
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--grey2);
  margin-top: .25rem;
  display: block;
}

/* =========================================================
   FEATURE STRIP
   ========================================================= */
.strip {
  background: var(--B);
  color: var(--C);
  padding: 8vw 6vw;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8vw;
  align-items: center;
}
@media (max-width: 900px) { .strip { grid-template-columns: 1fr; } }

.strip__title {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 4.5vw, 5rem);
  font-weight: 300;
  line-height: 1.0;
  letter-spacing: -.025em;
  color: var(--C);
}
.strip__title em { color: var(--G3); font-style: italic; }

.strip__eyebrow {
  font-size: .65rem;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--G);
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}
.strip__eyebrow::before {
  content: '';
  display: block;
  width: 32px; height: 1px;
  background: var(--G);
  flex-shrink: 0;
}

.feature-item {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(245, 243, 239, .07);
}
.feature-item:last-child { border-bottom: none; padding-bottom: 0; }

.feature-item__num {
  font-family: var(--serif);
  font-size: 3rem;
  font-weight: 300;
  color: rgba(201, 168, 76, .25);
  line-height: 1;
  flex-shrink: 0;
  width: 3.5rem;
}
.feature-item h3 {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--G3);
  letter-spacing: -.01em;
  margin-bottom: .5rem;
}
.feature-item p { font-size: .875rem; color: rgba(245, 243, 239, .5); line-height: 1.75; font-weight: 300; }

/* =========================================================
   MEMBERSHIP EDITORIAL (Accueil)
   ========================================================= */
.membership-editorial {
  padding: 12vw 6vw;
  background: var(--C);
}
.me-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: end;
  margin-bottom: 8rem;
}
@media (max-width: 767px) { .me-header { grid-template-columns: 1fr; margin-bottom: 4rem; } }

.me-title {
  font-family: var(--serif);
  font-size: clamp(3rem, 6vw, 7rem);
  font-weight: 300;
  line-height: .95;
  letter-spacing: -.03em;
  color: var(--N);
}
.me-intro {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--grey);
  font-weight: 300;
  max-width: 45ch;
  padding-top: 1.5rem;
  border-top: 1px solid var(--C3);
}

/* Tier rows */
.tier-row {
  display: grid;
  grid-template-columns: 1fr 2px 1fr;
  margin-bottom: .5rem;
  overflow: hidden;
  border-radius: 3px;
}
@media (max-width: 767px) {
  .tier-row { grid-template-columns: 1fr; }
  .tier-row__divider { display: none; }
}

.tier-row__divider { background: var(--C3); }

.tier-row__label,
.tier-row__detail {
  padding: 3.5rem;
  background: var(--W);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 360px;
}
@media (max-width: 480px) { .tier-row__label, .tier-row__detail { padding: 2rem; } }

.tier-row--initie .tier-row__label { background: var(--B); }
.tier-row--prestige .tier-row__label,
.tier-row--prestige .tier-row__detail { background: var(--N); }
.tier-row--prestige .tier-row__divider { background: rgba(245, 243, 239, .08); }
.tier-row--initie .tier-row__divider  { background: rgba(245, 243, 239, .1); }
.tier-row--initie .tier-row__detail   { background: rgba(26, 35, 50, .03); }

.tier-row__index {
  font-family: var(--serif);
  font-size: 4.5rem;
  font-weight: 300;
  color: var(--C2);
  line-height: 1;
  letter-spacing: -.04em;
}
.tier-row--initie .tier-row__index   { color: rgba(201, 168, 76, .18); }
.tier-row--prestige .tier-row__index { color: rgba(201, 168, 76, .12); }

.tier-badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: .35rem .875rem;
  border-radius: 100px;
  margin-top: 1rem;
  align-self: flex-start;
}
.tier-badge--aventure { background: rgba(26, 35, 50, .07); color: var(--B); }
.tier-badge--initie   { background: var(--B); color: var(--G3); }
.tier-badge--prestige { background: var(--G); color: #fff; }

.tier-row__name {
  font-family: var(--serif);
  font-size: 2.25rem;
  font-weight: 400;
  color: var(--N);
  letter-spacing: -.01em;
  margin-top: auto;
  padding-top: 2rem;
}
.tier-row--initie .tier-row__name   { color: var(--C); }
.tier-row--prestige .tier-row__name { color: var(--C); }

.tier-row__price {
  font-family: var(--serif);
  font-size: 4.5rem;
  font-weight: 300;
  color: var(--B);
  line-height: 1;
  letter-spacing: -.04em;
}
.tier-row__price sup { font-size: 1.4rem; vertical-align: top; margin-top: .6rem; display: inline-block; }
.tier-row--initie .tier-row__price   { color: var(--B); }
.tier-row--prestige .tier-row__price { color: var(--G3); }

.tier-row__period {
  font-family: var(--sans);
  font-size: .7rem;
  font-weight: 400;
  letter-spacing: .06em;
  color: var(--grey2);
  margin-top: .25rem;
  text-transform: uppercase;
}
.tier-row--prestige .tier-row__period { color: rgba(245, 243, 239, .35); }

.tier-discount {
  display: inline-flex;
  align-items: center;
  gap: .375rem;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--G);
  border: 1px solid var(--G);
  padding: .3rem .75rem;
  border-radius: 2px;
  margin-bottom: 2rem;
  align-self: flex-start;
}
.tier-row--prestige .tier-discount {
  color: var(--G3);
  border-color: rgba(201, 168, 76, .4);
  background: rgba(201, 168, 76, .08);
}

.tier-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .75rem;
  margin-bottom: 2.5rem;
}
.tier-features li {
  font-size: .875rem;
  color: var(--grey);
  display: flex;
  align-items: center;
  gap: .875rem;
  font-weight: 300;
  line-height: 1.5;
}
.tier-features li::before {
  content: '';
  width: 16px; height: 1px;
  background: var(--G);
  flex-shrink: 0;
}
.tier-row--prestige .tier-features li { color: rgba(245, 243, 239, .5); }
.tier-row--prestige .tier-features li::before { background: var(--G3); }

/* =========================================================
   MEMBERSHIP FULL (page Abonnements)
   ========================================================= */
.tiers-full { padding: 8vw 6vw; background: var(--W); }

.tier-full-row {
  display: grid;
  grid-template-columns: 280px 1fr;
  border: 1px solid var(--C2);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 1.5rem;
  transition: box-shadow var(--dur2) var(--ease), transform var(--dur2) var(--ease);
}
@media (max-width: 767px) { .tier-full-row { grid-template-columns: 1fr; } }
.tier-full-row:hover { box-shadow: 0 20px 60px rgba(26, 35, 50, .1); transform: translateY(-3px); }
.tier-full-row--initie { border-color: rgba(26, 35, 50, .3); box-shadow: 0 8px 40px rgba(26, 35, 50, .08); }

.tfr-left {
  background: var(--C);
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-right: 1px solid var(--C2);
}
.tier-full-row--initie .tfr-left  { background: var(--B); border-color: transparent; }
.tier-full-row--prestige .tfr-left { background: var(--N); border-color: transparent; }

.tfr-tier-label {
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--grey2);
  margin-bottom: 1.5rem;
}
.tier-full-row--initie .tfr-tier-label  { color: var(--G3); }
.tier-full-row--prestige .tfr-tier-label { color: var(--G); }

.tfr-name {
  font-family: var(--serif);
  font-size: 2.5rem;
  font-weight: 400;
  color: var(--N);
  letter-spacing: -.01em;
  margin-bottom: 2rem;
}
.tier-full-row--initie .tfr-name  { color: var(--C); }
.tier-full-row--prestige .tfr-name { color: var(--C); }

.tfr-price {
  font-family: var(--serif);
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--B);
  letter-spacing: -.03em;
  line-height: 1;
}
.tfr-price sup { font-size: 1.2rem; vertical-align: top; margin-top: .5rem; display: inline-block; }
.tier-full-row--initie .tfr-price  { color: var(--G3); }
.tier-full-row--prestige .tfr-price { color: var(--G3); }

.tfr-period {
  font-size: .7rem;
  color: var(--grey2);
  letter-spacing: .06em;
  margin-top: .25rem;
  text-transform: uppercase;
}
.tier-full-row--initie .tfr-period  { color: rgba(245, 243, 239, .35); }
.tier-full-row--prestige .tfr-period { color: rgba(245, 243, 239, .35); }

.tfr-right {
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: var(--W);
}
.tier-full-row--initie .tfr-right { background: rgba(26, 35, 50, .02); }

.tfr-discount {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  background: var(--G);
  color: #fff;
  padding: .35rem 1rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
  align-self: flex-start;
}

.tfr-desc {
  font-size: .9rem;
  color: var(--grey);
  line-height: 1.75;
  font-weight: 300;
  max-width: 52ch;
  margin-bottom: 2rem;
}

.tfr-features {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-bottom: 2rem;
}
.tfr-feat {
  font-size: .75rem;
  font-weight: 400;
  background: var(--C);
  color: var(--N);
  padding: .3rem .875rem;
  border-radius: 2px;
  border: 1px solid var(--C2);
}
.tier-full-row--initie .tfr-feat { background: rgba(26, 35, 50, .05); border-color: rgba(26, 35, 50, .1); }

.tfr-cta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--C2);
}
.tier-full-row--initie .tfr-cta-row { border-color: rgba(26, 35, 50, .1); }
.tfr-note { font-size: .75rem; color: var(--grey2); }

/* =========================================================
   QUOTE
   ========================================================= */
.quote-section {
  background: var(--N);
  padding: 10vw 6vw;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  min-height: 50vh;
}
.quote-section__bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 30% 50%, rgba(26, 35, 50, .4) 0%, transparent 70%);
}
.quote-section__inner {
  position: relative;
  z-index: 1;
  max-width: 900px;
  text-align: center;
}
.quote-mark {
  font-family: var(--serif);
  font-size: 7rem;
  font-weight: 300;
  color: var(--G);
  line-height: .4;
  display: block;
  margin-bottom: 2.5rem;
  opacity: .35;
}
.quote-author {
  font-size: .72rem;
  font-weight: 400;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--G);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.quote-author::before,
.quote-author::after {
  content: '';
  display: block;
  width: 40px; height: 1px;
  background: var(--G);
  opacity: .4;
}

/* =========================================================
   CTA SECTION
   ========================================================= */
.cta-section {
  padding: 10vw 6vw;
  background: var(--C);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8vw;
  align-items: center;
}
@media (max-width: 767px) { .cta-section { grid-template-columns: 1fr; } }

.cta-section__title {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 5.5vw, 6rem);
  font-weight: 300;
  line-height: .92;
  letter-spacing: -.03em;
  color: var(--N);
}
.cta-section__text {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--grey);
  font-weight: 300;
  margin-bottom: 2.5rem;
}
.cta-section__actions { display: flex; flex-wrap: wrap; gap: 1rem; }

/* =========================================================
   À PROPOS
   ========================================================= */
.about-hero {
  padding-top: 72px;
  background: var(--C);
}
.about-hero__inner {
  padding: 8vw 6vw 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: end;
}
@media (max-width: 767px) { .about-hero__inner { grid-template-columns: 1fr; } }

.about-hero__img {
  background: linear-gradient(160deg, rgba(26, 35, 50, .12), rgba(201, 168, 76, .06));
  border-radius: 4px 4px 0 0;
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 3rem;
}

.about-body {
  padding: 10vw 6vw;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8vw;
  align-items: start;
}
@media (max-width: 900px) { .about-body { grid-template-columns: 1fr; } }

.about-text h2 { margin-bottom: 2rem; }
.about-text p  { margin-bottom: 1.25rem; }

.values-list { display: flex; flex-direction: column; }
.value-item {
  padding: 2rem 0;
  border-bottom: 1px solid var(--C2);
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 2rem;
  align-items: start;
}
.value-item:first-child { border-top: 1px solid var(--C2); }
.value-n {
  font-family: var(--serif);
  font-size: 3rem;
  font-weight: 300;
  color: var(--C2);
  line-height: 1;
}
.value-content h3 {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--N);
  letter-spacing: -.01em;
  margin-bottom: .5rem;
}
.value-content p { font-size: .875rem; margin-bottom: 0; }

.about-stats {
  background: var(--B);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background-color: var(--B2);
}
@media (max-width: 600px) { .about-stats { grid-template-columns: repeat(2, 1fr); } }

.about-stat {
  padding: 3.5rem;
  background: rgba(245, 243, 239, .03);
}
.about-stat__num {
  font-family: var(--serif);
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--G3);
  line-height: 1;
}
.about-stat__label {
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(245, 243, 239, .35);
  margin-top: .5rem;
}

/* =========================================================
   ESPACE PRO
   ========================================================= */
.pro-hero {
  padding-top: 72px;
  background: var(--N);
  min-height: 55vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 6vw;
  padding-left: 6vw;
  padding-right: 6vw;
  position: relative;
  overflow: hidden;
}
.pro-hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 20% 60%, rgba(201, 168, 76, .08) 0%, transparent 60%),
    radial-gradient(ellipse 40% 60% at 80% 20%, rgba(26, 35, 50, .4) 0%, transparent 60%);
}
.pro-hero__badge {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--G);
  margin-bottom: 3rem;
}
.pro-hero__badge::before {
  content: '';
  width: 32px; height: 1px;
  background: var(--G);
  flex-shrink: 0;
}
.pro-hero__title {
  position: relative;
  z-index: 1;
  font-family: var(--serif);
  font-size: clamp(3rem, 7vw, 8rem);
  font-weight: 300;
  letter-spacing: -.03em;
  line-height: .9;
  color: var(--C);
}
.pro-hero__title em { font-style: italic; color: var(--G3); }

.pro-grid {
  padding: 8vw 6vw;
  background: var(--W);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background-color: var(--C2);
}
@media (max-width: 900px) { .pro-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .pro-grid { grid-template-columns: 1fr; } }

.pro-card {
  background: var(--W);
  padding: 3rem 2.5rem;
  transition: background var(--dur2) var(--ease2);
}
.pro-card:hover { background: var(--C); }

.pro-card__num {
  font-family: var(--serif);
  font-size: 3rem;
  font-weight: 300;
  color: var(--C2);
  line-height: 1;
  margin-bottom: 2rem;
}
.pro-card h3 {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--N);
  letter-spacing: -.01em;
  margin-bottom: .75rem;
}
.pro-card p { font-size: .875rem; line-height: 1.75; margin-bottom: 2rem; }
.pro-card__link {
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--B);
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  transition: gap var(--dur) var(--ease);
}
.pro-card:hover .pro-card__link { gap: .875rem; }

.pro-cta-bar {
  background: var(--B);
  padding: 5vw 6vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  flex-wrap: wrap;
}
.pro-cta-bar h2 {
  font-family: var(--serif);
  font-size: clamp(1.75rem, 3vw, 3rem);
  font-weight: 300;
  color: var(--C);
  letter-spacing: -.02em;
}
.pro-cta-bar p { font-size: .9rem; color: rgba(245, 243, 239, .5); margin-top: .75rem; font-weight: 300; }

/* =========================================================
   FAQ
   ========================================================= */
.faq-layout {
  padding-top: 72px;
  display: grid;
  grid-template-columns: 340px 1fr;
  min-height: 100vh;
}
@media (max-width: 900px) { .faq-layout { grid-template-columns: 1fr; } }

.faq-sidebar {
  background: var(--N);
  padding: 6vw 3rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (min-width: 901px) {
  .faq-sidebar {
    position: sticky;
    top: 72px;
    height: calc(100vh - 72px);
    overflow-y: auto;
  }
}

.faq-sidebar__title {
  font-family: var(--serif);
  font-size: clamp(2rem, 3vw, 3.5rem);
  font-weight: 300;
  color: var(--C);
  letter-spacing: -.02em;
  line-height: 1;
}
.faq-sidebar__title em { color: var(--G3); font-style: italic; display: block; }

.faq-sidebar__cats { display: flex; flex-direction: column; gap: .25rem; margin-top: 3rem; }

.faq-cat-btn {
  font-size: .78rem;
  font-weight: 400;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(245, 243, 239, .3);
  text-align: left;
  padding: .875rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, .05);
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: color var(--dur) var(--ease2), padding-left var(--dur) var(--ease);
}
.faq-cat-btn::before {
  content: '';
  width: 0; height: 1px;
  background: var(--G);
  transition: width var(--dur2) var(--ease);
  flex-shrink: 0;
}
.faq-cat-btn:hover,
.faq-cat-btn.active { color: var(--C); padding-left: .5rem; }
.faq-cat-btn:hover::before,
.faq-cat-btn.active::before { width: 20px; }
.faq-cat-btn.active { color: var(--G3); }

.faq-sidebar__note { font-size: .75rem; color: rgba(245, 243, 239, .2); line-height: 1.65; font-weight: 300; }

.faq-content { padding: 6vw; background: var(--W); overflow-y: auto; }

.faq-section { display: none; }
.faq-section.active { display: block; }

.faq-section__title {
  font-family: var(--serif);
  font-size: 2.25rem;
  font-weight: 300;
  color: var(--N);
  letter-spacing: -.01em;
  margin-bottom: 2.5rem;
}

.faq-item { border-bottom: 1px solid var(--C2); }

.faq-question {
  width: 100%;
  text-align: left;
  padding: 1.5rem 0;
  font-family: var(--sans);
  font-size: .95rem;
  font-weight: 400;
  color: var(--N);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  transition: color var(--dur) var(--ease2);
}
.faq-question:hover { color: var(--B); }
.faq-question:focus-visible { outline: 2px solid var(--G); outline-offset: 2px; }

.faq-icon {
  width: 20px; height: 20px;
  flex-shrink: 0;
  color: var(--G);
  position: relative;
}
.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background: currentColor;
  border-radius: 1px;
  transition: transform var(--dur) var(--ease), opacity var(--dur) var(--ease);
}
.faq-icon::before { width: 12px; height: 1px; top: 50%; left: 50%; transform: translate(-50%, -50%); }
.faq-icon::after  { width: 1px; height: 12px; top: 50%; left: 50%; transform: translate(-50%, -50%); }

.faq-question[aria-expanded="true"] .faq-icon::after { opacity: 0; transform: translate(-50%, -50%) rotate(90deg); }

.faq-answer { overflow: hidden; max-height: 0; transition: max-height var(--dur2) var(--ease); }
.faq-answer.is-open { max-height: 400px; }
.faq-answer p { padding-bottom: 1.5rem; padding-right: 3rem; font-size: .9rem; line-height: 1.85; font-weight: 300; }

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer {
  background: var(--N3);
  padding: 8vw 6vw 4vw;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 4rem;
  padding-bottom: 5rem;
  border-bottom: 1px solid rgba(255, 255, 255, .05);
  margin-bottom: 3rem;
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .footer-grid { grid-template-columns: 1fr; } }

.footer-logo {
  font-family: var(--serif);
  font-size: 1.75rem;
  font-weight: 300;
  color: var(--C);
  letter-spacing: .02em;
  margin-bottom: 1rem;
}
.footer-tagline {
  font-size: .8rem;
  color: rgba(245, 243, 239, .28);
  line-height: 1.7;
  max-width: 28ch;
  font-weight: 300;
  margin-bottom: 2rem;
}

.footer-social { display: flex; gap: .75rem; }
.social-btn {
  width: 36px; height: 36px;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(245, 243, 239, .3);
  transition: border-color var(--dur), color var(--dur);
}
.social-btn:hover { border-color: var(--G); color: var(--G); }

.footer-col h5 {
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--G);
  margin-bottom: 1.5rem;
  font-family: var(--sans);
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: .875rem; }
.footer-col ul a { font-size: .8rem; color: rgba(245, 243, 239, .28); font-weight: 300; transition: color var(--dur); }
.footer-col ul a:hover { color: var(--C); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-copy  { font-size: .72rem; color: rgba(245, 243, 239, .18); }
.footer-legal { font-size: .72rem; color: rgba(245, 243, 239, .18); font-style: italic; }

/* =========================================================
   WOOCOMMERCE OVERRIDES
   ========================================================= */
.woocommerce .button,
.woocommerce button.button,
.woocommerce input.button {
  font-family: var(--sans) !important;
  font-size: .8rem !important;
  font-weight: 500 !important;
  letter-spacing: .08em !important;
  text-transform: uppercase !important;
  background: var(--B) !important;
  color: #fff !important;
  border-radius: 2px !important;
  padding: .875rem 2rem !important;
  border: none !important;
  transition: background var(--dur) var(--ease2) !important;
}
.woocommerce .button:hover,
.woocommerce button.button:hover { background: var(--B2) !important; }

.woocommerce-message,
.woocommerce-info { border-top-color: var(--G) !important; }

/* =========================================================
   UTILITIES
   ========================================================= */
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* [data-reveal] animation is injected by JS only when IntersectionObserver is available.
   No static opacity:0 here — prevents invisible content when JS is slow or blocked. */
[data-reveal].revealed { opacity: 1 !important; transform: none !important; }

/* =========================================================
   PAGE ABONNEMENTS
   ========================================================= */

/* Hero abonnements */
.abo-hero { padding-block: var(--sp-16); }
.abo-hero__inner {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: var(--sp-12);
  align-items: center;
}
.abo-hero__copy h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); color: var(--W); margin-bottom: var(--sp-4); }
.abo-hero__copy .lead { color: rgba(255,255,255,.75); font-size: 1.0625rem; line-height: 1.7; margin-bottom: var(--sp-6); }

/* Price anchor box */
.price-anchor {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(196,150,58,.3);
  border-radius: 2px;
  padding: var(--sp-6);
}
.price-anchor__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--sp-2) 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.price-anchor__row:last-of-type { border-bottom: none; }
.price-anchor__label { font-family: var(--ff-body); font-size: .875rem; color: rgba(255,255,255,.6); }
.price-anchor__val { font-family: var(--ff-head); font-size: 1.5rem; color: var(--W); }
.price-anchor__val--public { text-decoration: line-through; opacity: .45; }
.price-anchor__row--member .price-anchor__val { color: var(--G); }
.price-anchor__row--prestige .price-anchor__val { color: var(--G); font-size: 1.75rem; }
.price-anchor__note { margin-top: var(--sp-4); font-size: .8125rem; color: rgba(255,255,255,.5); line-height: 1.5; }

/* Pourquoi section */
.abo-pourquoi { text-align: center; }
.abo-pourquoi__headline {
  font-size: clamp(1.8rem, 4vw, 2.75rem);
  color: var(--B);
  line-height: 1.25;
  margin-block: var(--sp-4) var(--sp-6);
}
.abo-pourquoi__body { font-size: 1.0625rem; line-height: 1.75; color: var(--N); max-width: 640px; margin-inline: auto; }

/* Membership cards additions */
.membership-tagline { font-size: .9375rem; color: var(--clr-gris, #6B7280); margin-bottom: var(--sp-4); font-style: italic; }
.membership-microcopy { font-size: .75rem; color: var(--clr-gris, #6B7280); text-align: center; margin-top: var(--sp-2); }
.membership-card--featured .membership-tagline { color: rgba(255,255,255,.7); }
.membership-card--featured .membership-microcopy { color: rgba(255,255,255,.5); }

/* Price compare grid */
.abo-preuve p { color: rgba(255,255,255,.7); line-height: 1.8; margin-bottom: var(--sp-8); }
.price-compare {
  display: flex;
  gap: var(--sp-1);
  max-width: 560px;
  margin-inline: auto;
}
.price-compare__col {
  flex: 1;
  padding: var(--sp-5) var(--sp-3);
  border-radius: 2px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}
.price-compare__col--public { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); }
.price-compare__col--member { background: rgba(196,150,58,.12); border: 1px solid rgba(196,150,58,.3); }
.price-compare__col--prestige { background: rgba(196,150,58,.22); border: 1px solid rgba(196,150,58,.5); }
.price-compare__tag { font-size: .75rem; text-transform: uppercase; letter-spacing: .08em; color: rgba(255,255,255,.5); }
.price-compare__amount { font-family: var(--ff-head); font-size: 2rem; color: var(--W); line-height: 1; }
.price-compare__amount--struck { text-decoration: line-through; opacity: .4; }
.price-compare__col--member .price-compare__amount,
.price-compare__col--prestige .price-compare__amount { color: var(--G); }
.price-compare__label { font-size: .8125rem; color: rgba(255,255,255,.5); }

/* FAQ abo */
.abo-faq { background: var(--W); }

/* Responsive abonnements */
@media (max-width: 900px) {
  .abo-hero__inner { grid-template-columns: 1fr; }
  .abo-hero__anchor { order: -1; }
  .price-anchor { max-width: 400px; margin-inline: auto; }
}
@media (max-width: 640px) {
  .price-compare { flex-direction: column; max-width: 280px; }
}

/* =========================================================
   SECTION UTILITIES
   ========================================================= */
.section {
  padding: 8vw 6vw;
  background: var(--W);
}
.section--creme { background: var(--C); }
.section--dark  { background: var(--N); padding-top: calc(72px + 4vw); }

/* =========================================================
   BUTTON VARIANTS (aliases for page-abonnements usage)
   ========================================================= */
/* Primary CTA = gold (new brand standard) */
.btn--or      { background: var(--G);  color: var(--N); font-weight: 600; }
.btn--or:hover { background: var(--G2); }
.btn--primary { background: var(--G);  color: var(--N); font-weight: 600; }
.btn--primary:hover { background: var(--G2); }
/* Secondary outlined = dark border on light bg, or light border on dark bg */
.btn--outline { background: transparent; color: var(--B); border: 1.5px solid var(--B); }
.btn--outline:hover { background: var(--B); color: var(--C); }
/* Dark-context outline */
.section--dark .btn--outline,
.abo-hero .btn--outline { color: rgba(245,243,239,.8); border-color: rgba(255,255,255,.3); }
.section--dark .btn--outline:hover,
.abo-hero .btn--outline:hover { background: rgba(255,255,255,.1); color: var(--C); border-color: rgba(255,255,255,.5); }

/* =========================================================
   PROPOSITION DE VALEUR
   ========================================================= */
.valeur {
  padding: 10vw 6vw;
  background: var(--W);
}
.valeur__title {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 4.5rem);
  font-weight: 300;
  color: var(--N);
  letter-spacing: -.025em;
  line-height: 1.05;
  margin-bottom: 5rem;
  margin-top: 1.5rem;
}
.valeur__title em { color: var(--B); }
.valeur__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4rem;
}
@media (max-width: 900px) { .valeur__grid { grid-template-columns: 1fr; gap: 2.5rem; } }

.valeur__item { display: flex; flex-direction: column; gap: 1.25rem; }
.valeur__icon {
  width: 48px; height: 48px;
  border: 1px solid var(--C3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--B);
  flex-shrink: 0;
}
.valeur__icon svg { width: 20px; height: 20px; }
.valeur__item h3 {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--N);
  letter-spacing: -.01em;
}
.valeur__item p { font-size: .9rem; line-height: 1.8; color: var(--grey); font-weight: 300; }

/* =========================================================
   SÉLECTION DU MOMENT
   ========================================================= */
.selection {
  padding: 10vw 6vw;
  background: var(--C);
}
.selection__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 4rem;
}
.selection__header > div { max-width: 560px; }
.selection__header h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 4rem);
  font-weight: 300;
  color: var(--N);
  letter-spacing: -.025em;
  margin-top: 1rem;
  margin-bottom: 1rem;
}
.selection__header h2 em { color: var(--B); }
.selection__header p { font-size: .9rem; line-height: 1.8; color: var(--grey); }

.selection__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: var(--C3);
}
@media (max-width: 900px) { .selection__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .selection__grid { grid-template-columns: 1fr; } }

/* =========================================================
   PRODUCT CARDS
   ========================================================= */
.product-card {
  background: var(--W);
  display: flex;
  flex-direction: column;
  transition: background var(--dur2) var(--ease2);
}
.product-card:hover { background: var(--C); }
.product-card__img-wrap {
  display: block;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--C2);
  position: relative;
}
.product-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease);
}
.product-card:hover .product-card__img { transform: scale(1.04); }
.product-card__img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--C3);
}
.product-card__img-placeholder svg { width: 48px; height: 48px; }
.product-card__body {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: .75rem;
  flex: 1;
}
.product-card__name {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--N);
  letter-spacing: -.01em;
  line-height: 1.2;
}
.product-card__name a { color: inherit; }
.product-card__name a:hover { color: var(--B); }
.product-card__price { font-size: .85rem; color: var(--grey); }
.product-card__price-member { color: var(--B); font-weight: 500; margin-right: .5rem; }
.product-card__price-public { color: var(--grey); }
.product-card__price-hint {
  display: block;
  font-size: .75rem;
  color: var(--G);
  margin-top: .25rem;
}
.product-card__cta {
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid var(--C2);
}

/* =========================================================
   STORYTELLING
   ========================================================= */
.storytelling {
  padding: 10vw 6vw;
  background: var(--N);
}
.storytelling__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8vw;
  align-items: center;
}
@media (max-width: 900px) { .storytelling__grid { grid-template-columns: 1fr; } }

.storytelling__img-frame {
  aspect-ratio: 3/4;
  background: linear-gradient(160deg, rgba(107,21,38,.25), rgba(196,150,58,.08));
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.06);
}
.storytelling__img-frame svg { width: 80px; height: 80px; }
.storytelling__img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 2px;
}
.storytelling__body .s-label { color: var(--G); }
.storytelling__body .s-label::after { background: rgba(255,255,255,.1); }
.storytelling__body h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 4rem);
  font-weight: 300;
  color: var(--C);
  letter-spacing: -.025em;
  margin-top: 1rem;
  margin-bottom: 2rem;
}
.storytelling__body h2 em { color: var(--G3); font-style: italic; }
.storytelling__text p {
  font-size: .9375rem;
  line-height: 1.85;
  color: rgba(247,242,234,.55);
  font-weight: 300;
  margin-bottom: 1rem;
}
.storytelling__text p:last-child { margin-bottom: 2rem; }
.storytelling__body .btn-arrow { color: var(--G); }

/* =========================================================
   PRODUCTEURS
   ========================================================= */
.producteurs { padding: 8vw 6vw; }
.producteurs .s-label { margin-bottom: 1rem; }
.producteurs h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 4rem);
  font-weight: 300;
  color: var(--N);
  letter-spacing: -.025em;
  margin-bottom: 1.5rem;
}
.producteurs h2 em { color: var(--B); }
.producteurs__intro {
  font-size: .9375rem;
  line-height: 1.8;
  color: var(--grey);
  max-width: 56ch;
  margin-bottom: 4rem;
}
.producteurs__regions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  border-top: 1px solid var(--C2);
  padding-top: 3rem;
}
@media (max-width: 900px) { .producteurs__regions { grid-template-columns: 1fr; gap: 2rem; } }

.producteurs__region-label {
  font-family: var(--sans);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--B);
  margin-bottom: 1.5rem;
}
.producteurs__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .625rem;
}
.producteurs__list li {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--N);
  letter-spacing: -.01em;
  padding-bottom: .625rem;
  border-bottom: 1px solid var(--C2);
}
.producteurs__list li:last-child { border-bottom: none; }

/* =========================================================
   MEMBERSHIP CARDS (page Abonnements)
   ========================================================= */
.abo-niveaux { background: var(--W); }
.membership-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: var(--C2);
  margin-top: 3rem;
}
@media (max-width: 900px) { .membership-cards { grid-template-columns: 1fr; gap: 1px; } }

.membership-card {
  background: var(--W);
  padding: 3rem;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}
.membership-card--featured {
  background: var(--B);
  color: var(--C);
}
.membership-tier-icon {
  width: 40px; height: 40px;
  margin-bottom: 1.5rem;
  color: var(--B);
}
.membership-card--featured .membership-tier-icon { color: var(--G3); }
.membership-tier-icon svg { width: 100%; height: 100%; }

.membership-badge {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  background: var(--G);
  color: #fff;
  padding: .3rem .875rem;
  border-radius: 100px;
}
.membership-card h3 {
  font-family: var(--serif);
  font-size: 1.75rem;
  font-weight: 400;
  color: var(--N);
  letter-spacing: -.01em;
  margin-bottom: .25rem;
}
.membership-card--featured h3 { color: var(--C); }

.membership-price {
  font-family: var(--serif);
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--B);
  line-height: 1;
  letter-spacing: -.04em;
  margin-bottom: 1rem;
}
.membership-price sup { font-size: 1.2rem; vertical-align: top; margin-top: .5rem; display: inline-block; }
.membership-price sub { font-size: .85rem; vertical-align: baseline; opacity: .6; }
.membership-card--featured .membership-price { color: var(--G3); }

.membership-tagline {
  font-size: .9375rem;
  color: var(--clr-gris);
  margin-bottom: 1.5rem;
  font-style: italic;
}
.membership-card--featured .membership-tagline { color: rgba(247,242,234,.7); }

.membership-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .75rem;
  margin-bottom: 2rem;
  flex: 1;
}
.membership-features li {
  font-size: .875rem;
  color: var(--grey);
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  line-height: 1.5;
  font-weight: 300;
}
.membership-features li svg { width: 16px; height: 16px; flex-shrink: 0; color: var(--G); margin-top: 1px; }
.membership-card--featured .membership-features li { color: rgba(247,242,234,.65); }
.membership-card--featured .membership-features li svg { color: var(--G3); }

.membership-microcopy {
  font-size: .75rem;
  color: var(--clr-gris);
  text-align: center;
  margin-top: .75rem;
}
.membership-card--featured .membership-microcopy { color: rgba(247,242,234,.4); }

/* =========================================================
   TIER MICROCOPY
   ========================================================= */
.tier-microcopy {
  text-align: center;
  font-size: .8125rem;
  color: var(--grey2);
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--C2);
}

/* =========================================================
   SECTION--DARK TYPOGRAPHY FIXES
   ========================================================= */
.section--dark h2,
.section--dark h3 { color: var(--C); }
.section--dark p   { color: rgba(247,242,234,.6); }
.section--dark .eyebrow { color: var(--G); }

/* Section without explicit padding from front-page cta-section */
.cta-section { padding: 10vw 6vw; }
@media (max-width: 767px) { .cta-section { grid-template-columns: 1fr; } }

/* =========================================================
   RESPONSIVE GLOBAL
   ========================================================= */
@media (max-width: 600px) {
  .valeur__grid { grid-template-columns: 1fr; }
  .producteurs__regions { grid-template-columns: 1fr; }
  .membership-cards { grid-template-columns: 1fr; }
  .selection__grid  { grid-template-columns: 1fr; }
  .storytelling__grid { grid-template-columns: 1fr; }
}

/* =========================================================
   CONTRAST FIXES — all text on light (#FAFAFA / #F5F3EF) backgrounds
   Replaces invisible var(--grey) #6B7280 (contrast ~3.5:1) with
   readable #374151 (contrast ~6:1 WCAG AA compliant).
   ========================================================= */

/* Light-bg body copy */
.me-intro,
.cta-section__text,
.manifeste__text,
.valeur__item p,
.selection__header p,
.producteurs__intro,
.tfr-desc,
.about-text p,
.value-content p,
.faq-answer p { color: #374151; }

/* Feature lists on light cards */
.tier-features li,
.membership-features li { color: #374151; }

/* Product card secondary text */
.product-card__price,
.product-card__price-public { color: #374151; }

/* Producteurs list items */
.producteurs__list li { color: #1A2332; }

/* Membership tagline (italic) */
.membership-tagline { color: #4B5563; font-style: italic; }

/* Dark-section overrides — restore light text where bg is blue-night */
.section--dark .cta-section__text  { color: rgba(245,243,239,.65) !important; }
.membership-card--featured .membership-tagline  { color: rgba(245,243,239,.7) !important; }
.membership-card--featured .membership-features li { color: rgba(245,243,239,.7) !important; }
/* Prestige tier row features */
.tier-row--prestige .tier-features li { color: rgba(245,243,239,.6) !important; }
/* Storytelling is dark — text already handled by .storytelling__text p override */

/* =========================================================
   SPRINT DYNAMISME VISUEL
   ========================================================= */

/* ── Hero Video ─────────────────────────────────────────── */
.hero-video-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}
.hero-video-wrap video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 35, 50, 0.65);
}
/* Ensure hero content stays above video */
.hero__grain,
.hero__watermark,
.hero__content,
.scroll-ind { position: relative; z-index: 1; }

/* ── Carousel ───────────────────────────────────────────── */
.section-carousel {
  background: var(--B);
  padding: var(--sp-10) 0;
  overflow: hidden;
}
.section-carousel__header {
  display: flex;
  align-items: flex-end;
  gap: var(--sp-4);
  justify-content: space-between;
  margin-bottom: var(--sp-6);
  padding-inline: var(--sp-5);
}
@media (max-width: 640px) {
  .section-carousel__header { flex-direction: column; align-items: flex-start; }
}
.wine-swiper-wrap {
  position: relative;
}
.wine-swiper-wrap::before,
.wine-swiper-wrap::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.wine-swiper-wrap::before {
  left: 0;
  background: linear-gradient(to right, var(--B) 0%, transparent 100%);
}
.wine-swiper-wrap::after {
  right: 0;
  background: linear-gradient(to left, var(--B) 0%, transparent 100%);
}
.wine-swiper {
  padding-inline: 48px !important;
}
.wine-card {
  background: rgba(245,243,239,.05);
  border: 1px solid rgba(245,243,239,.1);
  border-radius: 4px;
  overflow: hidden;
  transition: border-color 0.35s ease, box-shadow 0.35s ease, transform 0.35s cubic-bezier(0.22,1,0.36,1);
  cursor: pointer;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.wine-card:hover {
  border-color: var(--G);
  box-shadow: 0 16px 48px rgba(0,0,0,.4);
  transform: translateY(-6px);
}
.wine-card__img {
  aspect-ratio: 3/4;
  background: rgba(245,243,239,.06);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.wine-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.55s cubic-bezier(0.22,1,0.36,1);
}
.wine-card:hover .wine-card__img img {
  transform: scale(1.06);
}
.wine-card__img svg {
  width: 48px;
  height: 48px;
  color: rgba(245,243,239,.18);
  flex-shrink: 0;
}
.wine-card__body {
  padding: 1rem 1.25rem 1.25rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.wine-card__name {
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 400;
  color: var(--C);
  margin: 0 0 0.4rem;
  line-height: 1.3;
}
.wine-card__name a {
  color: inherit;
  text-decoration: none;
}
.wine-card__name a:hover { color: var(--G); }
.wine-card__short {
  font-size: 0.8125rem;
  color: rgba(245,243,239,.42);
  margin: 0 0 0.75rem;
  line-height: 1.45;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.wine-card__price {
  font-family: var(--serif);
  font-size: 1.25rem;
  color: var(--G);
  font-weight: 500;
  text-align: left;
}
.wine-card__cta {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.8rem;
  color: rgba(245,243,239,.38);
  margin-top: 0.75rem;
  text-decoration: none;
  transition: color 0.2s, gap 0.2s;
}
.wine-card:hover .wine-card__cta {
  color: var(--G);
  gap: 0.6rem;
}

/* ── Lifestyle Mosaic ───────────────────────────────────── */
.lifestyle-mosaic {
  padding: var(--sp-12) 0;
  background: var(--C);
}
.mosaic-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr 1fr;
  grid-template-rows: 280px 200px;
  gap: 10px;
  margin-top: var(--sp-0);
}
.mosaic-item {
  overflow: hidden;
  border-radius: 3px;
  position: relative;
}
.mosaic-item:nth-child(1) { grid-row: 1 / 3; }
.mosaic-item:nth-child(4) { grid-column: 2 / 4; }
.mosaic-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.65s cubic-bezier(0.22,1,0.36,1);
}
.mosaic-item:hover img { transform: scale(1.03); }
.mosaic-caption {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.375rem;
  color: #6B7C8E;
  text-align: center;
  margin-top: var(--sp-5);
  font-weight: 300;
  letter-spacing: 0.01em;
}
@media (max-width: 767px) {
  .mosaic-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 200px 160px 160px;
  }
  .mosaic-item:nth-child(1) { grid-row: 1; grid-column: 1 / 3; }
  .mosaic-item:nth-child(4) { grid-column: 1 / 3; }
}

/* ── Stats Strip ────────────────────────────────────────── */
.stats-strip {
  background: var(--B);
  padding: var(--sp-10) 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-4);
  text-align: center;
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.stat-num {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300;
  font-style: italic;
  color: var(--G);
  line-height: 1;
}
.stat-label {
  font-size: 0.8125rem;
  color: rgba(245,243,239,.45);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 500;
}
@media (max-width: 639px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--sp-6);
  }
}

/* ── Product Card Hover Enhancements ────────────────────── */
.product-card {
  transition: box-shadow 0.35s ease, transform 0.35s cubic-bezier(0.22,1,0.36,1);
  position: relative;
  overflow: hidden;
}
.product-card:hover {
  box-shadow: 0 12px 40px rgba(26,35,50,.14);
  transform: translateY(-4px);
}
.product-card__img-wrap {
  overflow: hidden;
  display: block;
}
.product-card__img {
  transition: transform 0.55s cubic-bezier(0.22,1,0.36,1);
}
.product-card:hover .product-card__img {
  transform: scale(1.05);
}
.product-card__cta {
  transition: color 0.2s, gap 0.2s;
}
.product-card:hover .product-card__cta {
  color: var(--B);
  gap: 0.6rem;
}

/* ── Price Toggle ───────────────────────────────────────── */
.price-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: var(--sp-8);
}
.price-toggle__btn {
  padding: 0.65rem 1.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  border: 1px solid rgba(26,35,50,.2);
  background: transparent;
  color: #6B7C8E;
  cursor: pointer;
  transition: background 0.25s, color 0.25s, border-color 0.25s;
  letter-spacing: 0.04em;
  line-height: 1;
  font-family: var(--sans);
}
.price-toggle__btn:first-child {
  border-radius: 3px 0 0 3px;
  border-right: none;
}
.price-toggle__btn:last-child {
  border-radius: 0 3px 3px 0;
}
.price-toggle__btn.is-active {
  background: var(--B);
  color: var(--C);
  border-color: var(--B);
}
.price-toggle__btn:hover:not(.is-active) {
  background: rgba(26,35,50,.06);
  color: var(--B);
}
.price-toggle__badge {
  display: inline-block;
  font-size: 0.65rem;
  background: var(--G);
  color: #fff;
  padding: 0.15rem 0.45rem;
  border-radius: 2px;
  margin-left: 0.5rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  vertical-align: middle;
}
/* Monthly shown by default, annual hidden */
.price-annual { display: none; }
.price-monthly { display: inline; }
/* When annual mode is active */
.annual-active .price-annual { display: inline; }
.annual-active .price-monthly { display: none; }
/* Flip animation */
.membership-price {
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.membership-price.is-flipping {
  opacity: 0;
  transform: translateY(-6px);
}

/* =========================================================
   SPRINT B — NAV DROPDOWN
   ========================================================= */
.nav-chevron {
  display: inline-block;
  vertical-align: middle;
  margin-left: 3px;
  transition: transform 0.2s ease;
}
.nav-item--has-dropdown {
  position: relative;
}
.nav-item--has-dropdown > a {
  display: flex;
  align-items: center;
  gap: 3px;
}
.nav-dropdown {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: var(--W, #FAFAFA);
  border-top: 2px solid var(--G);
  border-radius: 0 0 4px 4px;
  box-shadow: 0 8px 40px rgba(26,35,50,.14);
  padding: 1.75rem 2rem 1.25rem;
  min-width: 580px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0s linear 0.2s;
  z-index: 200;
  pointer-events: none;
}
.nav-item--has-dropdown:hover .nav-dropdown,
.nav-item--has-dropdown:focus-within .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0s;
}
.nav-item--has-dropdown:hover .nav-chevron,
.nav-item--has-dropdown:focus-within .nav-chevron {
  transform: rotate(180deg);
}
.nav-dropdown__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem 2rem;
}
.nav-dropdown__heading {
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--B);
  margin-bottom: 0.6rem;
}
.nav-dropdown a {
  display: block;
  font-size: 0.8125rem;
  color: #4B5563;
  text-decoration: none;
  padding: 0.2rem 0;
  transition: color 0.15s;
  font-family: var(--sans);
}
.nav-dropdown a:hover { color: var(--G); }
.nav-dropdown__footer {
  display: block;
  text-align: right;
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid #E5E7EB;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--B) !important;
  letter-spacing: 0.03em;
}
.nav-dropdown__footer:hover { color: var(--G) !important; }

/* Mobile nav sub-links */
.mobile-nav__sub {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  padding: 0.25rem 0 0.5rem 0.75rem;
  border-left: 2px solid rgba(201,168,76,.3);
  margin-bottom: 0.25rem;
}
.mobile-nav__sub a {
  font-size: 0.8125rem !important;
  color: rgba(245,243,239,.55) !important;
  padding: 0.2rem 0.5rem !important;
  background: rgba(245,243,239,.06);
  border-radius: 2px;
}
.mobile-nav__sub a:hover { color: var(--G) !important; }

/* =========================================================
   SPRINT B — PAGE BOUTIQUE
   ========================================================= */

/* ── Shop hero ──────────────────────────────────────────── */
.shop-hero {
  background: var(--W);
  padding: calc(var(--header-h, 72px) + var(--sp-8)) 0 var(--sp-8);
  border-bottom: 1px solid #E5E7EB;
}
.shop-hero__inner {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--sp-6);
}
.shop-hero__title {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 300;
  color: var(--B);
  line-height: 1.15;
  margin: 0.5rem 0 0;
}
.shop-hero__title em { color: var(--G); font-style: italic; }
.shop-hero__desc {
  max-width: 40ch;
  color: #6B7280;
  font-size: 0.9375rem;
  line-height: 1.65;
  margin: 0;
  padding-bottom: 0.5rem;
}
@media (max-width: 767px) {
  .shop-hero__inner { flex-direction: column; align-items: flex-start; }
  .shop-hero__desc  { max-width: none; }
}

/* ── Filters ────────────────────────────────────────────── */
.shop-filters-wrap {
  background: var(--W);
  border-bottom: 1px solid #E5E7EB;
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: 0 2px 12px rgba(26,35,50,.05);
}
.shop-filters {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 0.875rem 0;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  white-space: nowrap;
}
.shop-filters::-webkit-scrollbar { display: none; }
.shop-filters__group {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  flex-shrink: 0;
}
.shop-filters__group-label {
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--B);
  margin-right: 0.25rem;
}
.shop-filters__sep {
  width: 1px;
  height: 20px;
  background: #E5E7EB;
  margin: 0 1rem;
  flex-shrink: 0;
}
.shop-filters__sep--clear { display: none; }
.filter-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.75rem;
  font-size: 0.8125rem;
  color: #4B5563;
  background: transparent;
  border: 1px solid #E5E7EB;
  border-radius: 99px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  cursor: pointer;
  white-space: nowrap;
  font-family: var(--sans);
}
.filter-pill:hover {
  border-color: var(--B);
  color: var(--B);
}
.filter-pill.is-active {
  background: var(--B);
  color: var(--C);
  border-color: var(--B);
}
.filter-pill.is-active:hover {
  background: var(--B2, #0F1620);
}
.filter-clear {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.35rem 0.75rem;
  font-size: 0.8125rem;
  color: #9CA3AF;
  text-decoration: none;
  border-radius: 99px;
  border: 1px dashed #D1D5DB;
  transition: color 0.2s, border-color 0.2s;
  flex-shrink: 0;
  white-space: nowrap;
  font-family: var(--sans);
}
.filter-clear:hover { color: var(--B); border-color: var(--B); }
.shop-filters__summary {
  font-size: 0.8125rem;
  color: #9CA3AF;
  padding: 0.5rem 0 0.75rem;
  font-family: var(--sans);
}

/* ── Shop grid ──────────────────────────────────────────── */
.shop-section {
  background: var(--W);
  padding: var(--sp-8) 0 var(--sp-12);
}
.shop-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem 1.5rem;
}
@media (min-width: 1280px) {
  .shop-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 900px) {
  .shop-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .shop-grid { grid-template-columns: 1fr; }
}

/* ── Shop card ──────────────────────────────────────────── */
.shop-card {
  background: var(--W);
  border: 1px solid #E5E7EB;
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.3s ease, border-color 0.3s ease, transform 0.3s cubic-bezier(0.22,1,0.36,1);
}
.shop-card:hover {
  box-shadow: 0 12px 40px rgba(26,35,50,.1);
  border-color: rgba(201,168,76,.4);
  transform: translateY(-4px);
}
.shop-card__img-wrap {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  display: block;
  background: var(--C);
}
.shop-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.55s cubic-bezier(0.22,1,0.36,1);
}
.shop-card:hover .shop-card__img { transform: scale(1.04); }
.shop-card__img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.shop-card__img-placeholder svg {
  width: 48px;
  height: 48px;
  color: rgba(26,35,50,.15);
}
.shop-card__badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.2rem 0.5rem;
  border-radius: 2px;
  pointer-events: none;
}
.shop-card__badge--rouge   { background: #6B1526; color: #fff; }
.shop-card__badge--blanc   { background: var(--G); color: var(--B); }
.shop-card__badge--rose,
.shop-card__badge--rosé    { background: #E8828C; color: #fff; }
.shop-card__body {
  padding: 1rem 1.125rem 1.25rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.shop-card__region {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--G);
  margin-bottom: 0.3rem;
}
.shop-card__name {
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 400;
  color: var(--B);
  line-height: 1.3;
  margin: 0 0 0.4rem;
}
.shop-card__name a { color: inherit; text-decoration: none; }
.shop-card__name a:hover { color: var(--G); }
.shop-card__excerpt {
  font-size: 0.8125rem;
  color: #6B7280;
  line-height: 1.5;
  flex: 1;
  margin: 0 0 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.shop-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}
.shop-card__price {
  font-family: var(--serif);
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--B);
}
.shop-card__cta {
  font-size: 0.8rem;
  color: #9CA3AF;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  transition: color 0.2s, gap 0.2s;
  white-space: nowrap;
}
.shop-card:hover .shop-card__cta { color: var(--G); gap: 0.5rem; }

/* ── Empty state ────────────────────────────────────────── */
.shop-empty {
  text-align: center;
  padding: var(--sp-12) 0;
  color: #9CA3AF;
}
.shop-empty svg { margin-bottom: 1rem; color: #D1D5DB; }
.shop-empty p   { font-size: 1rem; margin-bottom: 1.5rem; }

/* ── Pagination ─────────────────────────────────────────── */
.shop-pagination {
  margin-top: var(--sp-8);
  display: flex;
  justify-content: center;
}
.shop-pagination .page-numbers {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 0.375rem;
  align-items: center;
}
.shop-pagination .page-numbers li a,
.shop-pagination .page-numbers li span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid #E5E7EB;
  border-radius: 3px;
  font-size: 0.875rem;
  color: #4B5563;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  font-family: var(--sans);
}
.shop-pagination .page-numbers li a:hover      { border-color: var(--B); color: var(--B); }
.shop-pagination .page-numbers li .current     { background: var(--B); color: var(--C); border-color: var(--B); }
.shop-pagination .page-numbers li .dots        { border-color: transparent; background: transparent; }



/* ============================================================
   IVV — SPRINT DESIGN PREMIUM — Mars 2026
   Nouvelles variables + classes ivv-*
   ============================================================ */

/* ── Nouvelles variables ─────────────────────────────────── */
:root {
  --night:         #0B0E14;
  --navy:          #1A2332;
  --navy-mid:      #243040;
  --gold:          #C9A84C;
  --gold-dim:      rgba(201,168,76,0.12);
  --gold-border:   rgba(201,168,76,0.2);
  --white:         #FAFAFA;
  --white-warm:    #F2F0ED;
  --ink:           #111318;
  --muted:         #6B7280;
  --border:        rgba(0,0,0,0.07);
  --font-display:  'Cormorant Garamond', Georgia, serif;
  --font-body:     'DM Sans', system-ui, sans-serif;
  --radius-pill:   50px;
  --radius-card:   16px;
  --radius-sm:     8px;
  --ease:          cubic-bezier(0.2, 0, 0, 1);
  --dur-fast:      160ms;
  --dur-mid:       280ms;
  --dur-slow:      480ms;
  --safe-top:      env(safe-area-inset-top, 0px);
  --safe-bottom:   env(safe-area-inset-bottom, 0px);
}

/* ── Reset body homepage ─────────────────────────────────── */
.ivv-home body,
body.ivv-home {
  background: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  font-weight: 300;
  color: var(--ink);
  margin: 0;
}

/* ── Utilitaires ─────────────────────────────────────────── */
.ivv-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
}
.ivv-tag {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  display: inline-block;
}
.ivv-tag--gold { color: var(--gold); }

.ivv-h-section {
  font-family: var(--font-display);
  font-size: clamp(40px, 5.5vw, 72px);
  font-weight: 300;
  line-height: 1.06;
  letter-spacing: -0.02em;
  margin: 0;
}
.ivv-h-section em { font-style: italic; font-weight: 300; }
.ivv-h--dark  { color: var(--ink); }
.ivv-h--dark em { color: var(--gold); }
.ivv-h--light { color: var(--white); }

.ivv-section--dark  { background: var(--night); }
.ivv-section--white { background: var(--white); }
.ivv-section--alt   { background: var(--white-warm); }

.ivv-section__head { margin-bottom: 64px; }
.ivv-section__head--center { text-align: center; }
.ivv-section__head .ivv-h-section { margin-top: 16px; }
.ivv-section__sub {
  font-size: 16px;
  color: var(--muted);
  max-width: 48ch;
  margin-top: 20px;
  line-height: 1.8;
}
.ivv-section__head--center .ivv-section__sub { margin-left: auto; margin-right: auto; }

/* ── Boutons ─────────────────────────────────────────────── */
.ivv-btn {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  cursor: pointer;
  border: none;
  min-height: 44px;
  white-space: nowrap;
  font-family: var(--font-body);
  border-radius: var(--radius-pill);
  transition: opacity var(--dur-fast) var(--ease),
              transform var(--dur-fast) var(--ease),
              background var(--dur-fast) var(--ease);
}
.ivv-btn--gold {
  padding: 15px 36px;
  background: var(--gold);
  color: var(--ink);
  font-size: 14px;
  font-weight: 500;
}
.ivv-btn--gold:hover { opacity: 0.88; transform: scale(0.99); color: var(--ink); }

.ivv-btn--ghost {
  padding: 15px 36px;
  background: rgba(255,255,255,0.07);
  color: rgba(255,255,255,0.75);
  font-size: 14px;
  font-weight: 400;
  border: 0.5px solid rgba(255,255,255,0.14);
}
.ivv-btn--ghost:hover { background: rgba(255,255,255,0.12); color: rgba(255,255,255,.95); }

.ivv-btn--ink {
  padding: 14px 28px;
  background: var(--ink);
  color: var(--white);
  font-size: 13px;
  font-weight: 500;
}
.ivv-btn--ink:hover { opacity: 0.82; color: var(--white); }

.ivv-btn--outline-navy {
  padding: 14px 28px;
  background: transparent;
  color: var(--navy);
  font-size: 13px;
  font-weight: 400;
  border: 0.5px solid rgba(26,35,50,0.2);
}
.ivv-btn--outline-navy:hover { background: rgba(26,35,50,0.04); color: var(--navy); }

.ivv-btn--sm {
  padding: 9px 18px;
  background: transparent;
  color: var(--ink);
  font-size: 12px;
  font-weight: 500;
  border: 0.5px solid rgba(0,0,0,0.14);
}
.ivv-btn--sm:hover { background: rgba(0,0,0,0.04); color: var(--ink); }

/* ── Header IVV ──────────────────────────────────────────── */
.ivv-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  padding-top: var(--safe-top);
  height: 60px;
  background: rgba(11,14,20,0.8);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  backdrop-filter: blur(20px) saturate(140%);
  border-bottom: 0.5px solid rgba(255,255,255,0.06);
  transition: background var(--dur-mid) var(--ease);
}
.ivv-header.scrolled { background: rgba(26,35,50,0.97); }

.ivv-logo {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.02em;
  display: flex;
  flex-direction: column;
  line-height: 1;
  text-decoration: none;
  gap: 3px;
}
.ivv-logo em {
  font-style: normal;
  font-family: var(--font-body);
  font-size: 8px;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
}
.ivv-logo:hover { opacity: 0.85; }

.ivv-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
.ivv-nav a {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  transition: color var(--dur-fast) var(--ease);
}
.ivv-nav a:hover { color: rgba(255,255,255,0.9); }
.ivv-nav__cta {
  padding: 9px 20px !important;
  background: var(--gold) !important;
  color: var(--ink) !important;
  font-weight: 500 !important;
  border-radius: var(--radius-pill) !important;
}
.ivv-nav__cta:hover { opacity: 0.88; color: var(--ink) !important; }

.ivv-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  min-height: 44px;
  min-width: 44px;
  align-items: center;
  justify-content: center;
}
.ivv-menu-btn span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: rgba(255,255,255,0.7);
  transition: transform var(--dur-fast) var(--ease), opacity var(--dur-fast) var(--ease);
}
.ivv-menu-btn[aria-expanded="true"] span:first-child {
  transform: translateY(3.25px) rotate(45deg);
}
.ivv-menu-btn[aria-expanded="true"] span:last-child {
  transform: translateY(-3.25px) rotate(-45deg);
}

/* Mobile nav */
.ivv-mobile-nav {
  position: fixed;
  inset: 60px 0 0 0;
  z-index: 999;
  background: rgba(11,14,20,0.97);
  -webkit-backdrop-filter: blur(24px);
  backdrop-filter: blur(24px);
  display: flex;
  flex-direction: column;
  padding: 32px 24px calc(32px + var(--safe-bottom));
  gap: 4px;
  transform: translateY(-8px);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--dur-mid) var(--ease), transform var(--dur-mid) var(--ease);
}
.ivv-mobile-nav.is-open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.ivv-mobile-nav a {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 300;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  padding: 12px 0;
  border-bottom: 0.5px solid rgba(255,255,255,0.06);
  transition: color var(--dur-fast) var(--ease);
}
.ivv-mobile-nav a:hover { color: var(--white); }
.ivv-mobile-nav .ivv-btn { font-family: var(--font-body); font-size: 14px; font-weight: 500; }

/* ── Hero ────────────────────────────────────────────────── */
.ivv-hero {
  min-height: 100vh;
  display: grid;
  grid-template-rows: 1fr auto;
  position: relative;
  overflow: hidden;
  background: var(--night);
}
.ivv-hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1510812431401-41d2bd2722f3?w=1800&q=85');
  background-size: cover;
  background-position: center 40%;
  opacity: 0.18;
  animation: ivvHeroBreath 18s ease-in-out infinite alternate;
}
@keyframes ivvHeroBreath {
  from { transform: scale(1.0);  opacity: 0.18; }
  to   { transform: scale(1.04); opacity: 0.22; }
}
.ivv-hero__body {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 48px 80px;
  position: relative;
  z-index: 2;
}
.ivv-hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 44px;
}
.ivv-hero__tag::before,
.ivv-hero__tag::after {
  content: '';
  height: 1px;
  width: 24px;
  background: var(--gold);
  opacity: 0.4;
  display: block;
}
.ivv-hero__h1 {
  font-family: var(--font-display);
  font-size: clamp(64px, 9vw, 120px);
  font-weight: 300;
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: var(--white);
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 0;
}
.ivv-hero__h1 em     { font-style: italic; font-weight: 300; color: rgba(201,168,76,0.85); }
.ivv-hero__h1 strong { font-style: normal; font-weight: 600; color: var(--white); }

.ivv-hero__sub {
  font-size: 17px;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(255,255,255,0.45);
  max-width: 480px;
  margin: 36px auto 52px;
}
.ivv-hero__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}
.ivv-hero__micro {
  margin-top: 18px;
  font-size: 11px;
  color: rgba(255,255,255,0.2);
  letter-spacing: 0.07em;
}
.ivv-hero__stats {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 48px;
  border-top: 0.5px solid rgba(255,255,255,0.07);
  flex-wrap: wrap;
  gap: 0;
}
.ivv-hero__stat   { text-align: center; padding: 0 40px; }
.ivv-hero__stat-n {
  display: block;
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}
.ivv-hero__stat-l {
  display: block;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-top: 5px;
}
.ivv-hero__stat-div {
  width: 0.5px;
  height: 36px;
  background: rgba(255,255,255,0.07);
  flex-shrink: 0;
}

/* ── Intro ───────────────────────────────────────────────── */
.ivv-intro {
  padding: 120px 64px;
  background: var(--white);
}
.ivv-intro__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
}
.ivv-intro__left { padding-top: 8px; }
.ivv-intro__left .ivv-h-section { margin-top: 20px; }
.ivv-intro__desc {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.8;
  max-width: 38ch;
  margin-top: 24px;
  margin-bottom: 40px;
}
.ivv-pillar {
  padding: 28px 0;
  border-bottom: 0.5px solid var(--border);
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 20px;
  align-items: start;
}
.ivv-pillar:first-child { border-top: 0.5px solid var(--border); }
.ivv-pillar__num {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 300;
  color: rgba(0,0,0,0.12);
  padding-top: 2px;
}
.ivv-pillar__title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--ink);
  margin: 0 0 6px;
}
.ivv-pillar__text {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.75;
  margin: 0;
}

/* Fix 2 — Intro section : override Blocksy, fix var(--muted) non défini */
.ivv-intro {
  background: #FAFAFA !important;
  color: #111318 !important;
}
.ivv-intro .ivv-tag {
  color: rgba(0, 0, 0, 0.35) !important;
}
.ivv-intro .apple-h,
.ivv-intro .ivv-h-section {
  color: #111318 !important;
}
.ivv-intro .ivv-intro__body p,
.ivv-intro__body p,
.ivv-intro__desc {
  color: #4B5563 !important;
  font-size: 16px;
  line-height: 1.8;
}
.ivv-pillar__title {
  color: #111318 !important;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 22px;
  font-weight: 600;
}
.ivv-pillar__text {
  color: #6B7280 !important;
  font-size: 14px;
  line-height: 1.75;
}
.ivv-pillar {
  border-bottom: 0.5px solid rgba(0,0,0,0.07) !important;
}
.ivv-pillar:first-child {
  border-top: 0.5px solid rgba(0,0,0,0.07) !important;
}

/* ── Ancrage prix ────────────────────────────────────────── */
.ivv-anchor {
  padding: 120px 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--night) !important;
}
.ivv-anchor__card {
  max-width: 680px;
  width: 100%;
  text-align: center;
}
.ivv-anchor__card .ivv-h-section { margin-top: 20px; }

.ivv-anchor__example {
  margin-top: 52px;
  padding: 40px;
  background: rgba(255,255,255,0.04);
  border: 0.5px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-card);
}
.ivv-anchor__wine-name {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 300;
  font-style: italic;
  color: rgba(255,255,255,0.5);
  margin: 0 0 32px;
}
.ivv-anchor__prices {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 0;
  border-bottom: 0.5px solid rgba(255,255,255,0.08);
  padding-bottom: 32px;
  margin-bottom: 24px;
}
.ivv-anchor__col {
  flex: 1;
  text-align: center;
  padding: 0 16px;
}
.ivv-anchor__col + .ivv-anchor__col {
  border-left: 0.5px solid rgba(255,255,255,0.08);
}
.ivv-anchor__label {
  display: block;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 12px;
}
.ivv-anchor__price {
  display: block;
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 300;
  line-height: 1;
}
.ivv-anchor__price--struck {
  color: rgba(255,255,255,0.2);
  text-decoration: line-through;
  font-size: 36px;
}
.ivv-anchor__price--active { color: var(--white); }
.ivv-anchor__price--gold   { color: var(--gold); font-size: 52px; }

.ivv-anchor__note {
  font-size: 13px;
  color: rgba(255,255,255,0.3);
  line-height: 1.7;
  margin: 0;
}

/* ── Vins ────────────────────────────────────────────────── */
.ivv-wines {
  padding: 120px 0;
}
.ivv-wines__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 64px auto 0;
  /* pas de justify-content qui décale */
}
.ivv-wines__grid:has(article:only-child) {
  grid-template-columns: repeat(1, minmax(0, 360px));
  justify-content: center;
}
.ivv-wines__grid:has(article:nth-child(2):last-child) {
  grid-template-columns: repeat(2, minmax(0, 360px));
  justify-content: center;
}
.ivv-wine-card {
  border-radius: var(--radius-card);
  overflow: hidden;
  background: var(--white);
  border: 0.5px solid rgba(0,0,0,0.07);
  transition: transform var(--dur-mid) var(--ease),
              box-shadow var(--dur-mid) var(--ease);
}
.ivv-wine-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px rgba(0,0,0,0.09);
}
.ivv-wine-card__img-wrap {
  position: relative;
  display: block;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: #F2F0ED;
}
.ivv-wine-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--dur-slow) var(--ease);
}
.ivv-wine-card:hover .ivv-wine-card__img { transform: scale(1.04); }
.ivv-wine-card__img-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #E8E5E0, #D4D0C8);
}
.ivv-wine-card__badge {
  position: absolute;
  top: 16px;
  left: 16px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--ink);
  padding: 4px 12px;
  border-radius: 20px;
}
.ivv-wine-card__body { padding: 20px 24px 24px; }
.ivv-wine-card__region {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 6px;
}
.ivv-wine-card__name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.2;
  margin: 0 0 8px;
}
.ivv-wine-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 0.5px solid rgba(0,0,0,0.06);
}
.ivv-wine-card__price {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 600;
  color: var(--ink);
}
.ivv-wines__cta { text-align: center; margin-top: 56px; }

/* ── Tiers ───────────────────────────────────────────────── */
.ivv-tiers { padding: 120px 0; }
.ivv-tiers__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  max-width: 1000px;
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden;
}
.ivv-tier {
  background: var(--white);
  padding: 52px 40px;
  position: relative;
  transition: background var(--dur-mid) var(--ease);
}
.ivv-tier:hover { background: #FDFBF8; }
.ivv-tier--mid  { background: var(--navy); }
.ivv-tier--mid:hover { background: var(--navy-mid); }

.ivv-tier__popular {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--gold);
  padding: 4px 10px;
  border-radius: 20px;
}
.ivv-tier__name {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 20px;
}
.ivv-tier--mid .ivv-tier__name { color: rgba(255,255,255,0.45); }

.ivv-tier__price {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 300;
  line-height: 1;
  color: var(--ink);
  margin-bottom: 28px;
}
.ivv-tier--mid .ivv-tier__price { color: var(--white); }
.ivv-tier__price sup { font-size: 20px; vertical-align: super; font-weight: 400; }
.ivv-tier__cents { font-size: 22px; vertical-align: super; }
.ivv-tier__period { font-size: 14px; vertical-align: baseline; color: var(--muted); }
.ivv-tier--mid .ivv-tier__period { color: rgba(255,255,255,0.35); }

.ivv-tier__features {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.ivv-tier__features li {
  font-size: 14px;
  color: var(--muted);
  padding-left: 18px;
  position: relative;
  line-height: 1.5;
}
.ivv-tier--mid .ivv-tier__features li { color: rgba(255,255,255,0.6); }
.ivv-tier__features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.5;
}

.ivv-tier__btn {
  display: block;
  width: 100%;
  padding: 14px;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  border: 0.5px solid rgba(0,0,0,0.12);
  background: transparent;
  color: var(--ink);
  min-height: 44px;
  transition: all var(--dur-fast) var(--ease);
}
.ivv-tier__btn:hover { background: rgba(0,0,0,0.04); color: var(--ink); }
.ivv-tier--mid .ivv-tier__btn {
  background: var(--gold);
  color: var(--ink);
  border-color: transparent;
}
.ivv-tier--mid .ivv-tier__btn:hover { opacity: 0.88; }

.ivv-tier__micro {
  font-size: 11px;
  color: rgba(0,0,0,0.25);
  text-align: center;
  margin: 14px 0 0;
}
.ivv-tier--mid .ivv-tier__micro { color: rgba(255,255,255,0.2); }

/* ── Editorial split ─────────────────────────────────────── */
.ivv-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 640px;
  background: var(--white);
}
.ivv-split__text {
  padding: 100px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
.ivv-split__text .ivv-h-section { margin-top: 20px; }
.ivv-split__body {
  margin-top: 32px;
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.ivv-split__body p {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.8;
  max-width: 42ch;
  margin: 0;
}
.ivv-split__quote {
  font-family: var(--font-display) !important;
  font-size: 20px !important;
  font-style: italic;
  font-weight: 300;
  color: var(--gold) !important;
  line-height: 1.45 !important;
}
.ivv-split__img {
  position: relative;
  overflow: hidden;
}
.ivv-split__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ── Producteurs ─────────────────────────────────────────── */
.ivv-prod { padding: 120px 0; }
.ivv-prod__intro {
  font-size: 16px;
  color: rgba(255,255,255,0.38);
  max-width: 52ch;
  margin: 20px auto 0;
  line-height: 1.8;
  text-align: center;
}
.ivv-prod__table {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 64px;
  border-top: 0.5px solid rgba(255,255,255,0.06);
}
.ivv-prod__col {
  padding: 40px 48px;
  border-right: 0.5px solid rgba(255,255,255,0.06);
}
.ivv-prod__col:last-child { border-right: none; }
.ivv-prod__region {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 24px;
}
.ivv-prod__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.ivv-prod__list li {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 300;
  color: rgba(255,255,255,0.65);
  transition: color var(--dur-fast) var(--ease);
  line-height: 1.2;
}
.ivv-prod__list li:hover { color: var(--white); }

/* ── CTA Final ───────────────────────────────────────────── */
.ivv-cta-final {
  padding: 140px 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ivv-cta-final__inner {
  text-align: center;
  max-width: 640px;
}
.ivv-cta-final__title {
  font-family: var(--font-display);
  font-size: clamp(52px, 7vw, 96px);
  font-weight: 300;
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin: 16px 0 0;
}
.ivv-cta-final__title em { font-style: italic; color: var(--gold); }
.ivv-cta-final__sub {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.75;
  margin: 32px auto;
  max-width: 44ch;
}
.ivv-cta-final__actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.ivv-cta-final__legal {
  font-size: 11px;
  color: rgba(0,0,0,0.2);
  letter-spacing: 0.04em;
  margin: 0;
}

/* ── Sticky mobile CTA ───────────────────────────────────── */
.ivv-sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px 20px;
  padding-bottom: calc(12px + var(--safe-bottom));
  background: rgba(26,35,50,0.95);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  border-top: 0.5px solid rgba(255,255,255,0.08);
  z-index: 900;
}
.ivv-sticky-cta .ivv-btn { width: 100%; justify-content: center; }

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (min-width: 769px) and (max-width: 1024px) {
  .ivv-intro__grid   { gap: 48px; }
  .ivv-wines__grid   { grid-template-columns: repeat(2, 1fr); }
  .ivv-tiers__grid   { grid-template-columns: 1fr; max-width: 480px; }
  .ivv-hero__h1      { font-size: clamp(52px, 7vw, 84px); }
  .ivv-split         { grid-template-columns: 1fr; }
  .ivv-split__img    { min-height: 360px; }
  .ivv-split__text   { padding: 72px 48px; }
  .ivv-prod__table   { grid-template-columns: 1fr; }
  .ivv-prod__col     { border-right: none; border-bottom: 0.5px solid rgba(255,255,255,0.06); }
  .ivv-container     { padding: 0 32px; }
}

@media (max-width: 768px) {
  .ivv-header        { padding: 0 20px; padding-top: var(--safe-top); }
  .ivv-menu-btn      { display: flex; }
  .ivv-nav a:not(.ivv-nav__cta):not(.ivv-menu-btn) { display: none; }

  .ivv-hero__body    { padding: 100px 24px 60px; }
  .ivv-hero__h1      { font-size: clamp(48px, 13vw, 72px); }
  .ivv-hero__sub     { font-size: 15px; }
  .ivv-hero__actions { flex-direction: column; align-items: stretch; width: 100%; max-width: 320px; }
  .ivv-hero__stats   { padding: 24px 16px; flex-wrap: wrap; }
  .ivv-hero__stat    { padding: 12px 16px; }
  .ivv-hero__stat-n  { font-size: 26px; }
  .ivv-hero__stat-div { display: none; }

  .ivv-intro         { padding: 72px 24px; }
  .ivv-intro__grid   { grid-template-columns: 1fr; gap: 48px; }

  .ivv-anchor        { padding: 80px 24px; }
  .ivv-anchor__prices { flex-direction: column; gap: 24px; }
  .ivv-anchor__col + .ivv-anchor__col { border-left: none; border-top: 0.5px solid rgba(255,255,255,0.08); padding-top: 24px; }

  .ivv-wines         { padding: 80px 0; }
  .ivv-container     { padding: 0 24px; }
  .ivv-wines__grid   { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; }

  .ivv-tiers         { padding: 80px 0; }
  .ivv-tiers__grid   { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; border-radius: var(--radius-card); }

  .ivv-split         { grid-template-columns: 1fr; }
  .ivv-split__text   { padding: 64px 24px; order: 2; }
  .ivv-split__img    { min-height: 280px; order: 1; }
  .ivv-split__body p { max-width: 100%; }

  .ivv-prod          { padding: 80px 0; }
  .ivv-prod__table   { grid-template-columns: 1fr; }
  .ivv-prod__col     { padding: 32px 24px; border-right: none; border-bottom: 0.5px solid rgba(255,255,255,0.06); }

  .ivv-cta-final     { padding: 80px 24px; }
  .ivv-cta-final__actions { flex-direction: column; align-items: stretch; }
  .ivv-cta-final__actions .ivv-btn { justify-content: center; }

  .ivv-sticky-cta    { display: flex; }
  body.ivv-home main { padding-bottom: 76px; }

  .ivv-btn--gold, .ivv-btn--ghost, .ivv-btn--ink, .ivv-btn--outline-navy {
    width: 100%;
    justify-content: center;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .ivv-hero__bg { animation: none; }
  .ivv-wine-card, .ivv-wine-card__img,
  .ivv-btn, .ivv-tier { transition: none !important; }
}

/* iPhone safe areas */
@supports (padding: env(safe-area-inset-bottom)) {
  .ivv-header     { padding-top: env(safe-area-inset-top); }
  .ivv-sticky-cta { padding-bottom: calc(12px + env(safe-area-inset-bottom)); }
}


/* =========================================================
   SPRINT 2 — PAGES SECONDAIRES
   ========================================================= */

/* ── Hero page (variante --page) ─────────────────────────── */
.ivv-hero--page {
    min-height: 85vh;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 60px;
    padding: 120px 80px;
}
.ivv-hero--page .ivv-hero__body {
    text-align: left;
    padding: 0;
    align-items: flex-start;
}
.ivv-hero--page .ivv-hero__h1 { font-size: clamp(48px, 6vw, 84px); }
.ivv-hero__body--center { text-align: center; align-items: center; }
.ivv-hero__h1--center { text-align: center; }
.ivv-hero--about {
    grid-template-columns: 1fr;
    justify-items: center;
    min-height: 70vh;
}
.ivv-hero--pro { grid-template-columns: 1fr; }

/* Encadré prix flottant dans hero abo */
.ivv-hero__price-anchor {
    background: rgba(255,255,255,0.04);
    border: 0.5px solid rgba(201,168,76,0.2);
    border-radius: 16px;
    padding: 36px 32px;
    min-width: 240px;
    flex-shrink: 0;
}
.ivv-price-anchor__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 0.5px solid rgba(255,255,255,0.06);
    gap: 24px;
}
.ivv-price-anchor__row:last-of-type { border-bottom: none; }
.ivv-price-anchor__row--mid {
    background: rgba(201,168,76,0.05);
    margin: 0 -8px;
    padding: 12px 8px;
    border-radius: 8px;
}
.ivv-price-anchor__label {
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.3);
}
.ivv-price-anchor__val {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 32px;
    font-weight: 300;
    line-height: 1;
}
.ivv-price-anchor__val--out {
    color: rgba(255,255,255,0.2);
    text-decoration: line-through;
    font-size: 24px;
}
.ivv-price-anchor__val--on  { color: var(--white); }
.ivv-price-anchor__val--gold { color: var(--gold); }
.ivv-price-anchor__note {
    font-size: 11px;
    color: rgba(255,255,255,0.25);
    line-height: 1.6;
    margin-top: 16px;
    text-align: center;
}

/* ── Section Pourquoi ────────────────────────────────────── */
.ivv-why {
    padding: 120px 64px;
    background: var(--white);
    text-align: center;
}
.ivv-why__inner { max-width: 760px; margin: 0 auto; }
.ivv-why__body {
    font-size: 18px;
    font-weight: 300;
    line-height: 1.8;
    color: #4B5563;
    margin: 32px auto 56px;
    max-width: 560px;
}
.ivv-why__proof {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    padding: 40px;
    background: #F5F3EF;
    border-radius: 16px;
}
.ivv-why__proof-item { text-align: center; }
.ivv-why__proof-n {
    display: block;
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #9CA3AF;
    margin-bottom: 8px;
}
.ivv-why__proof-v {
    display: block;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 32px;
    font-weight: 600;
    color: var(--ink);
}
.ivv-why__proof-v--out {
    text-decoration: line-through;
    color: rgba(0,0,0,0.2);
}
.ivv-why__proof-v--gold { color: #A07828; }
.ivv-why__proof-arrow { font-size: 20px; color: rgba(0,0,0,0.15); }

/* ── FAQ accordion ───────────────────────────────────────── */
.ivv-faq { padding: 100px 64px; background: var(--white); }
.ivv-faq__inner { max-width: 720px; margin: 0 auto; }
.ivv-faq__list { margin-top: 56px; }
.ivv-faq__item {
    border-bottom: 0.5px solid rgba(0,0,0,0.07);
    padding: 4px 0;
}
.ivv-faq__item:first-child { border-top: 0.5px solid rgba(0,0,0,0.07); }
.ivv-faq__q {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 20px;
    font-weight: 600;
    color: var(--ink);
    padding: 24px 0;
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}
.ivv-faq__q::-webkit-details-marker { display: none; }
.ivv-faq__q::after {
    content: '+';
    font-family: 'DM Sans', system-ui, sans-serif;
    font-size: 20px;
    font-weight: 300;
    color: var(--gold);
    flex-shrink: 0;
    transition: transform 0.25s ease;
}
details[open] .ivv-faq__q::after { content: '−'; }
.ivv-faq__a {
    font-size: 15px;
    color: #4B5563;
    line-height: 1.8;
    padding-bottom: 24px;
    max-width: 600px;
}

/* ── CTA final navy variant ──────────────────────────────── */
.ivv-section--navy { background: var(--navy); }
.ivv-section--navy .ivv-cta-final__title { color: var(--white); }
.ivv-section--navy .ivv-cta-final__title em { color: var(--gold); }
.ivv-section--navy .ivv-cta-final__sub { color: rgba(255,255,255,0.55); }
.ivv-section--navy .ivv-cta-final__legal { color: rgba(255,255,255,0.25); }

/* ── Page À Propos ───────────────────────────────────────── */
.ivv-about-story {
    padding: 120px 64px;
}
.ivv-about-story__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    max-width: 1100px;
    margin: 0 auto;
    align-items: start;
}
.ivv-about-story__left p {
    color: #4B5563;
    font-size: 16px;
    line-height: 1.85;
    margin-bottom: 16px;
}
.ivv-about-story__left .ivv-h-section { margin: 20px 0 32px; }

/* Team section */
.ivv-about-team { padding: 100px 64px; }
.ivv-about-team__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1100px;
    margin: 56px auto 0;
}
.ivv-team-card {
    background: var(--white);
    border: 0.5px solid rgba(0,0,0,0.07);
    border-radius: 16px;
    padding: 40px;
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 28px;
    align-items: start;
}
.ivv-team-card__avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 28px;
    font-weight: 600;
    color: var(--gold);
    flex-shrink: 0;
}
.ivv-team-card__name {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 26px;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 4px;
}
.ivv-team-card__role {
    font-size: 12px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
}
.ivv-team-card__bio { font-size: 15px; color: #4B5563; line-height: 1.8; }

.ivv-about-team__network {
    background: var(--white);
    border: 0.5px solid rgba(0,0,0,0.07);
    border-radius: 16px;
    padding: 40px;
}
.ivv-about-team__network-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 22px;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 16px;
}
.ivv-about-team__network-body { font-size: 15px; color: #4B5563; line-height: 1.8; margin-bottom: 32px; }
.ivv-about-team__stats {
    display: flex;
    gap: 32px;
}
.ivv-about-team__stat { text-align: center; }
.ivv-about-team__stat-n {
    display: block;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 40px;
    font-weight: 300;
    color: var(--ink);
    line-height: 1;
}
.ivv-about-team__stat-l {
    display: block;
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #9CA3AF;
    margin-top: 6px;
}

/* Philosophie / engagements */
.ivv-about-philo { padding: 100px 64px; }
.ivv-about-philo__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2px;
    max-width: 1000px;
    margin: 56px auto 0;
}
.ivv-about-philo__item {
    padding: 48px;
    border: 0.5px solid rgba(255,255,255,0.06);
}
.ivv-about-philo__num {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 14px;
    font-weight: 300;
    color: rgba(255,255,255,0.2);
    letter-spacing: 0.1em;
    margin-bottom: 20px;
    display: block;
}
.ivv-about-philo__title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 24px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 12px;
}
.ivv-about-philo__body { font-size: 14px; color: rgba(255,255,255,0.45); line-height: 1.8; }

/* ── Espace Pro ──────────────────────────────────────────── */
.ivv-pro-prop { padding: 120px 64px; }
.ivv-pro-prop__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 48px;
    max-width: 900px;
    margin: 64px auto 0;
}
.ivv-pro-prop__item { padding: 0; }
.ivv-pro-prop__num {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 13px;
    font-weight: 300;
    color: var(--gold);
    letter-spacing: 0.1em;
    margin-bottom: 16px;
    display: block;
}
.ivv-pro-prop__title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 22px;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 10px;
}
.ivv-pro-prop__body { font-size: 15px; color: #4B5563; line-height: 1.8; }

/* Cibles */
.ivv-pro-cibles { padding: 100px 64px; }
.ivv-pro-cibles__list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    max-width: 900px;
    margin: 56px auto 0;
}
.ivv-pro-cibles__item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px;
    border: 0.5px solid rgba(255,255,255,0.08);
    border-radius: 12px;
}
.ivv-pro-cibles__dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold);
    flex-shrink: 0;
}
.ivv-pro-cibles__item span:last-child {
    font-size: 14px;
    color: rgba(255,255,255,0.65);
    line-height: 1.5;
}

/* Formulaire pro */
.ivv-pro-form-section { padding: 100px 64px; }
.ivv-pro-form-wrap {
    max-width: 760px;
    margin: 0 auto;
}
.ivv-pro-form-wrap .ivv-h-section { margin: 16px 0; }
.ivv-pro-form { margin-top: 48px; }
.ivv-pro-form__row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}
.ivv-form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
    min-width: 0;
}
.ivv-form-label {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #9CA3AF;
}
.ivv-form-input {
    padding: 14px 16px;
    font-family: 'DM Sans', system-ui, sans-serif;
    font-size: 15px;
    color: var(--ink);
    background: var(--white);
    border: 0.5px solid rgba(0,0,0,0.14);
    border-radius: 10px;
    outline: none;
    transition: border-color 0.2s ease;
    min-height: 48px;
    width: 100%;
    appearance: none;
    -webkit-appearance: none;
}
.ivv-form-input:focus {
    border-color: var(--navy);
    box-shadow: 0 0 0 3px rgba(26,35,50,0.07);
}
.ivv-form-textarea { min-height: 120px; resize: vertical; }
.ivv-form-group { margin-bottom: 20px; }
.ivv-pro-form .ivv-btn--gold { margin-top: 8px; }

/* ── Fiche produit ───────────────────────────────────────── */
.ivv-product__top {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 64px;
    align-items: start;
    background: var(--white);
}
.ivv-product__img-wrap {
    aspect-ratio: 3/4;
    border-radius: 16px;
    overflow: hidden;
    background: #F2F0ED;
    position: sticky;
    top: 80px;
}
.ivv-product__img { width: 100%; height: 100%; object-fit: cover; }
.ivv-product__img-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(160deg, #E8E5E0, #D4D0C8);
}
.ivv-product__name {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(32px, 3.5vw, 52px);
    font-weight: 600;
    color: var(--ink);
    line-height: 1.1;
    margin: 12px 0 8px;
}
.ivv-product__subtitle {
    font-size: 14px;
    color: #9CA3AF;
    margin-bottom: 36px;
    font-style: italic;
}
.ivv-product__price-block {
    padding: 32px 0;
    border-top: 0.5px solid rgba(0,0,0,0.07);
    border-bottom: 0.5px solid rgba(0,0,0,0.07);
    margin-bottom: 28px;
}
.ivv-product__prices {
    display: flex;
    align-items: baseline;
    gap: 16px;
    margin-bottom: 8px;
}
.ivv-product__price-out {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 28px;
    font-weight: 300;
    color: rgba(0,0,0,0.2);
    text-decoration: line-through;
}
.ivv-product__price-on {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 48px;
    font-weight: 600;
    color: var(--ink);
    line-height: 1;
}
.ivv-product__price-public {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 48px;
    font-weight: 600;
    color: var(--ink);
}
.ivv-product__price-note { font-size: 12px; color: #9CA3AF; letter-spacing: 0.06em; }
.ivv-product__club-prompt {
    background: #F5F3EF;
    border-radius: 10px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-top: 16px;
}
.ivv-product__club-prompt p { font-size: 13px; color: #6B7280; margin: 0; }
.ivv-product__trust {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    color: rgba(0,0,0,0.3);
    letter-spacing: 0.06em;
}

/* WC add-to-cart override */
.ivv-product .single_add_to_cart_button {
    width: 100% !important;
    background: var(--navy) !important;
    color: var(--white) !important;
    border-radius: 50px !important;
    font-family: 'DM Sans', system-ui, sans-serif !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    padding: 16px !important;
    letter-spacing: 0.03em !important;
    text-transform: none !important;
    border: none !important;
    min-height: 52px !important;
    margin-top: 24px !important;
    transition: opacity 0.2s ease !important;
}
.ivv-product .single_add_to_cart_button:hover { opacity: 0.85 !important; transform: none !important; }

/* Zone milieu produit */
.ivv-product__mid {
    background: var(--white);
    padding: 80px 0;
    border-top: 0.5px solid rgba(0,0,0,0.06);
}
.ivv-product__mid .ivv-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    max-width: 1200px;
    padding: 0 64px;
}
.ivv-product__section-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(0,0,0,0.3);
    margin-bottom: 32px;
}

/* Profil dégustation barres */
.ivv-profile-bar { margin-bottom: 24px; }
.ivv-profile-bar__top { margin-bottom: 8px; }
.ivv-profile-bar__label {
    font-size: 13px;
    font-weight: 500;
    color: var(--ink);
    letter-spacing: 0.04em;
}
.ivv-profile-bar__track {
    display: flex;
    align-items: center;
    gap: 12px;
}
.ivv-profile-bar__left,
.ivv-profile-bar__right {
    font-size: 10px;
    color: rgba(0,0,0,0.3);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    white-space: nowrap;
    min-width: 52px;
}
.ivv-profile-bar__right { text-align: right; }
.ivv-profile-bar__rail {
    flex: 1;
    height: 3px;
    background: rgba(0,0,0,0.07);
    border-radius: 2px;
    position: relative;
}
.ivv-profile-bar__fill {
    position: absolute;
    top: 0; left: 0;
    height: 100%;
    background: var(--gold);
    border-radius: 2px;
    opacity: 0.5;
}
.ivv-profile-bar__dot {
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--gold);
    border: 2px solid var(--white);
    box-shadow: 0 1px 4px rgba(0,0,0,0.15);
}

/* Détails cépages / accords */
.ivv-product__detail-row {
    display: flex;
    align-items: baseline;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 0.5px solid rgba(0,0,0,0.06);
}
.ivv-product__detail-row:first-child { border-top: 0.5px solid rgba(0,0,0,0.06); }
.ivv-product__detail-label {
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(0,0,0,0.3);
    min-width: 100px;
    flex-shrink: 0;
}
.ivv-product__detail-val { font-size: 15px; color: var(--ink); line-height: 1.6; }

/* Zone basse produit */
.ivv-product__low { padding: 80px 0; }
.ivv-product__low .ivv-container {
    max-width: 1200px;
    padding: 0 64px;
}
.ivv-product__low-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}
.ivv-product__domaine-body { font-size: 16px; color: #4B5563; line-height: 1.85; margin-top: 8px; }
.ivv-product__sommelier-card {
    background: var(--white);
    border: 0.5px solid rgba(0,0,0,0.07);
    border-radius: 16px;
    padding: 36px;
    margin-bottom: 32px;
}
.ivv-product__sommelier-label {
    font-size: 10px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    display: block;
    margin-bottom: 16px;
}
.ivv-product__sommelier-quote {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 20px;
    font-weight: 300;
    font-style: italic;
    color: var(--ink);
    line-height: 1.6;
    border: none;
    padding: 0;
    margin: 0 0 16px;
}
.ivv-product__sommelier-sig { font-size: 12px; color: rgba(0,0,0,0.3); }
.ivv-product__club-cta {
    background: var(--night);
    border-radius: 16px;
    padding: 36px;
}
.ivv-product__club-cta-body {
    font-size: 14px;
    color: rgba(255,255,255,0.55);
    line-height: 1.7;
    margin: 16px 0 24px;
}

/* ── Responsive Sprint 2 ────────────────────────────────── */
@media (max-width: 1024px) {
    .ivv-hero--page {
        grid-template-columns: 1fr;
        padding: 120px 48px 80px;
    }
    /* Encadré prix : passe sous le body hero au lieu de disparaître */
    .ivv-hero__price-anchor {
        width: 100%;
        min-width: 0;
        margin-top: 40px;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 0;
    }
    .ivv-price-anchor__row {
        flex-direction: column;
        align-items: center;
        border-bottom: none;
        border-right: 0.5px solid rgba(255,255,255,0.06);
        padding: 16px 12px;
    }
    .ivv-price-anchor__row:last-of-type { border-right: none; }
    .ivv-price-anchor__row--mid { margin: 0; border-radius: 0; }
    .ivv-price-anchor__note { grid-column: 1 / -1; }
    .ivv-about-story__grid,
    .ivv-about-team__grid,
    .ivv-about-philo__grid,
    .ivv-pro-prop__grid { grid-template-columns: 1fr; }
    .ivv-pro-cibles__list { grid-template-columns: repeat(2, 1fr); }
    .ivv-product__top,
    .ivv-product__mid .ivv-container,
    .ivv-product__low-grid { grid-template-columns: 1fr; }
    .ivv-product__img-wrap {
        position: relative;
        top: auto;
        aspect-ratio: 4/3;
        max-height: 480px;
    }
}
@media (max-width: 768px) {
    /* Hero page */
    .ivv-hero--page { padding: 100px 24px 60px; }
    .ivv-hero__price-anchor {
        width: 100%;
        margin-top: 40px;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
    }

    /* Why section */
    .ivv-why { padding: 80px 24px; }
    .ivv-why__proof {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    .ivv-why__proof-arrow { transform: rotate(90deg); }

    /* FAQ */
    .ivv-faq { padding: 72px 24px; }

    /* À propos */
    .ivv-about-story { padding: 80px 24px; }
    .ivv-about-team { padding: 72px 24px; }
    .ivv-about-philo { padding: 72px 24px; }
    .ivv-about-philo__item { padding: 32px 24px; }
    .ivv-about-team__stats { gap: 20px; }

    /* Team card */
    .ivv-team-card {
        grid-template-columns: 1fr;
    }
    .ivv-team-card__avatar { width: 64px; height: 64px; font-size: 22px; }

    /* Espace pro */
    .ivv-pro-prop { padding: 80px 24px; }
    .ivv-pro-cibles { padding: 72px 24px; }
    .ivv-pro-cibles__list { grid-template-columns: 1fr; }
    .ivv-pro-form-section { padding: 72px 24px; }
    .ivv-pro-form__row { flex-direction: column; }

    /* Fiche produit */
    .ivv-product__top {
        grid-template-columns: 1fr;
        padding: 24px;
        gap: 40px;
    }
    .ivv-product__img-wrap {
        position: relative;
        top: auto;
        max-height: 360px;
        aspect-ratio: 3/4;
    }
    .ivv-product__mid .ivv-container { padding: 0 24px; gap: 40px; }
    .ivv-product__low .ivv-container { padding: 0 24px; }
    .ivv-product__club-prompt { flex-direction: column; align-items: flex-start; }
}
