@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=Jost:wght@200;300;400;500&display=swap');

:root {
  --rose: #E8849A;
  --rose-pale: #F7D4DC;
  --rose-light: #FDF0F2;
  --blanc: #FFFFFF;
  --creme: #FBF8F5;
  --gris-chaud: #4A4040;
  --gris-doux: #8C7B7B;
  --bordure: rgba(232,132,154,0.2);
  --font-titre: 'Cormorant Garamond', serif;
  --font-corps: 'Jost', sans-serif;
  --max-width: 1280px;
  --nav-height: 140px;
  --section-padding: 120px 80px;
  --radius: 4px;
}

*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-corps); background: var(--blanc); 
       color: var(--gris-chaud); overflow-x: hidden; opacity: 0;
       transition: opacity 0.4s ease; }
body.loaded { opacity: 1; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; 
         font-family: var(--font-corps); }

.btn-primary {
  display: inline-block; padding: 14px 40px;
  background: var(--gris-chaud); color: var(--blanc);
  font-family: var(--font-corps); font-size: 0.72rem;
  font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase;
  border-radius: 0; transition: all 0.3s ease;
}
.btn-primary:hover { background: var(--rose); }

.btn-outline {
  display: inline-block; padding: 13px 40px;
  background: transparent; color: var(--gris-chaud);
  border: 1px solid var(--gris-chaud);
  font-family: var(--font-corps); font-size: 0.72rem;
  font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase;
  transition: all 0.3s ease;
}
.btn-outline:hover { background: var(--gris-chaud); color: var(--blanc); }

.overline {
  font-family: var(--font-corps); font-size: 0.68rem;
  font-weight: 500; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--rose);
}

.section-title {
  font-family: var(--font-titre); font-weight: 300;
  font-size: clamp(2.4rem, 4vw, 3.6rem); line-height: 1.15;
  color: var(--gris-chaud);
}

.section-title em {
  font-style: italic; color: var(--rose);
}

.reveal { opacity: 0; transform: translateY(32px); 
          transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-48px);
               transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(48px);
                transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal-right.visible { opacity: 1; transform: translateX(0); }

/* --- Additional styles based on spec --- */

/* Age Gate */
#age-gate {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--creme);
  display: none; align-items: center; justify-content: center;
  transition: opacity 0.5s ease;
}
#age-gate .inner-card {
  max-width: 480px; text-align: center; padding: 60px 48px;
}
#age-gate h2 {
  font-family: var(--font-titre); font-weight: 300;
  font-size: 1.8rem; color: var(--gris-chaud);
}
#age-gate p.subtitle {
  font-family: var(--font-corps); font-weight: 300;
  font-size: 0.85rem; color: var(--gris-doux); margin-top: 8px;
}
#age-gate .selects {
  display: flex; gap: 12px; margin: 32px 0;
}
#age-gate select {
  flex: 1;
  border: 1px solid var(--bordure); padding: 10px 16px;
  font-family: var(--font-corps); font-weight: 300; font-size: 0.85rem;
  background: var(--blanc); border-radius: 0; color: var(--gris-chaud);
  appearance: none; -webkit-appearance: none;
}
#ag-error {
  font-family: var(--font-corps); font-weight: 300; font-size: 0.8rem;
  color: #c0392b; min-height: 20px; margin-bottom: 12px;
}
#age-gate .btn-primary {
  width: 100%;
}
#age-gate p.footer-text {
  font-family: var(--font-corps); font-weight: 200; font-size: 0.72rem;
  color: var(--gris-doux); margin-top: 24px; line-height: 1.6;
}

/* Nav */
#navbar {
  position: fixed; top: 0; width: 100%; height: var(--nav-height); z-index: 100;
  background: transparent;
  backdrop-filter: none; border-bottom: none;
  transition: all 0.3s ease;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 48px;
}
#navbar.scrolled {
  background: rgba(251,248,245,0.95);
  backdrop-filter: blur(12px); border-bottom: 1px solid var(--bordure);
}
.nav-left, .nav-right {
  flex: 1; display: flex; align-items: center; gap: 24px;
}
.nav-left { justify-content: flex-start; }
.nav-right { justify-content: flex-end; }
.nav-center {
  flex: 0 0 auto; display: flex; justify-content: center;
}
.nav-center img {
  height: 192px;
  width: auto;
}
.nav-link {
  font-family: var(--font-corps); font-weight: 400; font-size: 0.72rem;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gris-chaud); opacity: 0.7;
  transition: opacity 0.2s, border-bottom 0.2s, padding-bottom 0.2s;
}
.nav-link:hover, .nav-link.active { opacity: 1; }
.nav-link.active {
  border-bottom: 1px solid var(--rose); padding-bottom: 2px;
}
#menuToggle { display: none; background: none; border: none; font-size: 1.5rem; color: var(--gris-chaud); }
#mobileMenu {
  position: fixed; inset: 0; top: var(--nav-height);
  background: var(--creme);
  display: none; flex-direction: column;
  align-items: center; justify-content: center; gap: 32px;
  z-index: 99;
}
#mobileMenu.open { display: flex; }
#mobileMenu a {
  font-size: 1.2rem; font-family: var(--font-titre); font-style: italic;
  font-weight: 300; text-transform: none; letter-spacing: normal;
  opacity: 1; border: none; padding: 0;
}

/* Hero */
#hero {
  height: 100svh;
  display: grid; grid-template-columns: 1fr 1fr;
}
.hero-left {
  padding: 0 80px; display: flex; flex-direction: column; justify-content: center;
}
.hero-left h1 {
  display: flex; flex-direction: column; margin-top: 16px;
}
.hero-left h1 span:nth-child(1) {
  font-family: var(--font-titre); font-weight: 300; font-size: clamp(3.2rem, 5.5vw, 5.5rem); font-style: italic; line-height: 1;
}
.hero-left h1 span:nth-child(2) {
  font-family: var(--font-titre); font-weight: 300; font-size: clamp(3.2rem, 5.5vw, 5.5rem); color: var(--rose); line-height: 1;
}
.hero-left h1 span:nth-child(3) {
  font-family: var(--font-titre); font-weight: 600; font-size: clamp(3.2rem, 5.5vw, 5.5rem); line-height: 1;
}
.hero-subline {
  font-family: var(--font-corps); font-weight: 300; font-size: 1rem; color: var(--gris-doux);
  max-width: 380px; margin: 24px 0 40px; line-height: 1.5;
}
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-right {
  overflow: hidden; position: relative;
}
.hero-right::before {
  content: '';
  position: absolute;
  inset: 0;
  left: 0;
  width: 30%;
  background: linear-gradient(to right, var(--blanc), transparent);
  z-index: 1;
  pointer-events: none;
}
.hero-right img {
  object-fit: cover; height: 100%; width: 100%;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(253,240,242,0.3), transparent);
}

/* Hero Animation */
.hero-left > * { opacity: 0; transform: translateY(32px); }
body.loaded .hero-left > * { animation: fadeUp 0.8s ease forwards; }
body.loaded .hero-left .overline { animation-delay: 0ms; }
body.loaded .hero-left h1 span { opacity: 0; transform: translateY(32px); }
body.loaded .hero-left h1 span:nth-child(1) { animation: fadeUp 0.8s ease forwards 0ms; }
body.loaded .hero-left h1 span:nth-child(2) { animation: fadeUp 0.8s ease forwards 200ms; }
body.loaded .hero-left h1 span:nth-child(3) { animation: fadeUp 0.8s ease forwards 400ms; }
body.loaded .hero-left .hero-subline { animation: fadeUp 0.8s ease forwards 600ms; }
body.loaded .hero-left .hero-ctas { animation: fadeUp 0.8s ease forwards 800ms; }

.hero-right img { transform: scale(1.02); }
body.loaded .hero-right img { transition: transform 1.5s ease; transform: scale(1); }

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

/* Duo */
#duo {
  background: var(--creme); padding: var(--section-padding);
}
.duo-header { text-align: center; margin-bottom: 64px; }
.duo-cards {
  display: flex; gap: 48px; max-width: var(--max-width); margin: 0 auto;
}
.duo-card {
  flex: 1; background: var(--blanc); border: 1px solid var(--bordure);
  padding: 0; overflow: hidden; border-radius: 0; display: flex; flex-direction: column;
}
.duo-card .card-image {
  height: 520px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--rose-light);
}
.duo-card img {
  object-fit: contain;
  object-position: center center;
  width: 100%;
  height: 100%;
  padding: 24px;
  background: var(--rose-light);
}
.duo-card-content { padding: 40px; display: flex; flex-direction: column; flex: 1; }
.duo-card-label {
  font-family: var(--font-corps); font-weight: 500; font-size: 0.65rem;
  letter-spacing: 0.4em; color: var(--rose); margin-bottom: 12px; text-transform: uppercase;
}
.duo-card-name {
  font-family: var(--font-titre); font-weight: 300; font-style: italic; font-size: 1.6rem; color: var(--gris-chaud);
}
.duo-card-desc {
  font-family: var(--font-corps); font-weight: 300; font-size: 0.88rem;
  color: var(--gris-doux); margin: 12px 0 24px; line-height: 1.5; flex-grow: 1;
}
.duo-card-link {
  font-family: var(--font-corps); font-weight: 400; font-size: 0.75rem;
  letter-spacing: 0.1em; color: var(--gris-chaud);
  border-bottom: 1px solid var(--rose); padding-bottom: 2px; align-self: flex-start;
  text-transform: uppercase;
}

/* Claim */
#claim {
  background: var(--rose); padding: 100px 80px; text-align: center;
}
#claim p {
  font-family: var(--font-corps); font-weight: 300; font-size: 0.9rem;
  color: rgba(255,255,255,0.8); letter-spacing: 0.1em; margin-top: 32px; text-transform: uppercase;
}

/* Merch Teaser */
#merch-teaser {
  background: var(--blanc); padding: var(--section-padding);
}
.merch-header { margin-bottom: 48px; }
.merch-header p {
  font-family: var(--font-corps); font-weight: 300; font-size: 0.9rem;
  color: var(--gris-doux); max-width: 480px; margin-top: 12px; line-height: 1.5;
}
.merch-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; max-width: var(--max-width); margin: 0 auto;
}
.merch-card {
  background: var(--rose-light); aspect-ratio: 3/4;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden; border-radius: 0; cursor: pointer;
  transition: transform 0.4s ease;
}
.merch-card:hover { transform: translateY(-4px); }
.merch-card-content { text-align: center; }
.merch-icon { font-size: 3rem; margin-bottom: 16px; display: block; }
.merch-name {
  font-family: var(--font-titre); font-style: italic; font-size: 1rem; color: var(--gris-chaud);
}
.merch-cta { text-align: center; margin-top: 48px; }

/* Footer */
#footer {
  background: var(--gris-chaud); padding: 64px 80px 40px;
}
.footer-top {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; max-width: var(--max-width); margin: 0 auto;
}
.footer-col-1 .footer-logo {
  height: 32px; filter: brightness(0) invert(1); margin-bottom: 12px;
}
.footer-col-1 p {
  font-family: var(--font-corps); font-weight: 300; font-size: 0.8rem;
  color: rgba(251,248,245,0.4); margin-top: 12px;
}
.footer-title {
  font-family: var(--font-corps); font-weight: 500; font-size: 0.65rem;
  text-transform: uppercase; letter-spacing: 0.25em; color: rgba(251,248,245,0.4); margin-bottom: 16px;
}
.footer-link {
  font-family: var(--font-corps); font-weight: 300; font-size: 0.82rem;
  color: rgba(251,248,245,0.6); display: block; margin-bottom: 8px; transition: color 0.2s;
}
.footer-link:hover { color: var(--blanc); }
.footer-divider {
  border: none; border-top: 1px solid rgba(251,248,245,0.1); margin: 40px auto 20px; max-width: var(--max-width);
}
.footer-bottom {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; max-width: var(--max-width); margin: 0 auto;
}
.footer-bottom p {
  font-family: var(--font-corps); font-weight: 300; font-size: 0.72rem; color: rgba(251,248,245,0.3);
}

/* Page Shells */
.shell-main {
  min-height: 80vh; display: flex; align-items: center; justify-content: center; flex-direction: column; padding-top: var(--nav-height);
}
.shell-main h1 {
  font-family: var(--font-titre); font-weight: 300; font-size: 3rem; color: var(--gris-chaud); font-style: italic;
}

/* Mobile Responsive */
@media (max-width: 1024px) {
  html { --section-padding: 80px 40px; }
  .hero-left, #claim, #footer { padding-left: 40px; padding-right: 40px; }
}
@media (max-width: 768px) {
  html { --section-padding: 60px 24px; --nav-height: 80px; }
  #navbar { padding: 0 24px; }
  .nav-left { display: none; }
  .nav-right a:not(.cart-icon) { display: none; }
  #menuToggle { display: block; margin-left: 16px; font-size: 1.5rem; color: var(--gris-chaud); }
  
  #hero { grid-template-columns: 1fr; height: auto; min-height: 100svh; }
  .hero-left { padding: 120px 24px 80px; align-items: center; text-align: center; position: relative; z-index: 1; justify-content: center; grid-row: 1; }
  .hero-subline { margin-left: auto; margin-right: auto; }
  .hero-ctas { justify-content: center; }
  .hero-right { position: absolute; inset: 0; z-index: 0; }
  .hero-overlay { background: linear-gradient(to top, rgba(253,240,242,0.8), rgba(253,240,242,0.3)); }
  
  .duo-cards { flex-direction: column; gap: 32px; }
  .merch-grid { grid-template-columns: repeat(2, 1fr); }
  
  #claim, #footer { padding-left: 24px; padding-right: 24px; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  #footer { padding: 48px 24px 32px; }
}
@media (max-width: 480px) {
  .hero-left h1 span { font-size: 4rem; }
  .merch-grid { grid-template-columns: 1fr; }
  .hero-ctas { flex-direction: column; width: 100%; }
  .hero-ctas a { width: 100%; text-align: center; }
  #age-gate .inner-card { padding: 40px 24px; }
  #age-gate .selects { flex-direction: column; gap: 8px; }
}

/* ── WINES PAGE ── */
.wines-header {
  min-height: 60vh;
  background: var(--creme);
  display: grid;
  grid-template-columns: 55% 45%;
  padding-top: var(--nav-height);
}
.wines-header .reveal-left,
.wines-header .overline,
.wines-header h1,
.wines-header p {
  opacity: 1 !important;
  transform: none !important;
}
.wines-header-text h1,
.wines-header-text p,
.wines-header-text .overline {
  color: var(--gris-chaud);
}
.wines-header-text {
  padding: 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-bottom: 80px;
}
.wines-header-text h1 {
  font-family: var(--font-titre);
  font-weight: 300;
  font-size: clamp(2.8rem,4.5vw,4.2rem);
  line-height: 1.15;
}
.wines-header-text p {
  font-family: var(--font-corps);
  font-weight: 300;
  font-size: 0.92rem;
  max-width: 440px;
  margin-top: 16px;
  line-height: 1.8;
}
.wh-right {
  overflow: hidden;
  height: 100%;
}
.wine-feature {
  padding: 120px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.wf-still {
  background: var(--blanc);
}
.wf-sparkling {
  background: var(--rose-light);
}
.wine-badge {
  display: inline-block;
  background: var(--rose-light);
  color: var(--rose);
  font-family: var(--font-corps);
  font-weight: 500;
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  padding: 6px 16px;
  border-radius: 0;
  margin-bottom: 24px;
}
.wf-sparkling .wine-badge {
  background: var(--blanc);
}
.wf-text h2 {
  font-family: var(--font-titre);
  font-weight: 300;
  font-size: clamp(2.4rem,3.5vw,3.2rem);
  line-height: 1.15;
  color: var(--gris-chaud);
}
.wine-appellation {
  font-family: var(--font-corps);
  font-weight: 300;
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  color: var(--gris-doux);
  margin: 12px 0 24px;
}
.wine-desc {
  font-family: var(--font-corps);
  font-weight: 300;
  font-size: 0.92rem;
  color: var(--gris-chaud);
  line-height: 1.85;
  max-width: 420px;
}
.tasting-grid {
  display: flex;
  flex-direction: row;
  gap: 32px;
  margin: 32px 0;
}
.tasting-note {
  border-top: 1px solid var(--bordure);
  padding-top: 12px;
}
.note-label {
  font-family: var(--font-corps);
  font-weight: 500;
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--rose);
}
.note-value {
  font-family: var(--font-titre);
  font-weight: 300;
  font-style: italic;
  font-size: 1rem;
  color: var(--gris-chaud);
  margin-top: 4px;
}
.wf-text .btn-outline {
  margin-top: 40px;
}
.iconic-bottle {
  background: var(--gris-chaud);
  padding: 100px 80px;
  text-align: center;
}
.ib-content {
  max-width: 720px;
  margin: 0 auto;
}
.ib-content h2 {
  font-family: var(--font-titre);
  font-weight: 300;
  font-size: clamp(2.4rem,3.5vw,3.2rem);
  color: var(--creme);
}
.ib-content p {
  font-family: var(--font-corps);
  font-weight: 300;
  font-size: 0.92rem;
  color: rgba(251,248,245,0.65);
  line-height: 1.9;
  margin-top: 20px;
}
.pairings {
  background: var(--creme);
  padding: 100px 80px;
}
.pairings-header {
  text-align: center;
  margin-bottom: 64px;
}
.pairings-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: var(--max-width);
  margin: 0 auto;
}
.pairing-card {
  background: var(--blanc);
  border: 1px solid var(--bordure);
  padding: 36px 28px;
  text-align: center;
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.pairing-card:hover {
  transform: translateY(-4px);
  border-color: var(--rose);
}
.pairing-icon {
  font-size: 2rem;
  margin-bottom: 16px;
  display: block;
}
.pairing-title {
  font-family: var(--font-titre);
  font-weight: 300;
  font-style: italic;
  font-size: 1.1rem;
  color: var(--gris-chaud);
  margin-bottom: 8px;
}
.pairing-desc {
  font-family: var(--font-corps);
  font-weight: 300;
  font-size: 0.8rem;
  color: var(--gris-doux);
  line-height: 1.6;
}
@media (max-width: 768px) {
  .wine-feature, .iconic-bottle, .pairings {
    padding: 80px 24px;
  }
  .wines-header {
    grid-template-columns: 1fr;
    min-height: 50vh;
    position: relative;
  }
  .wines-header-text {
    padding: 80px 24px;
    position: relative;
    z-index: 2;
    text-align: center;
    align-items: center;
  }
  .wh-right {
    position: absolute;
    inset: 0;
    z-index: 1;
  }
  .wh-right::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(251,248,245,0.3);
  }
  .wine-feature {
    display: flex;
    flex-direction: column;
    gap: 48px;
  }
  .wf-sparkling {
    flex-direction: column-reverse;
  }
  .tasting-grid {
    flex-direction: column;
    gap: 16px;
  }
  .pairings-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .pairings-grid {
    grid-template-columns: 1fr;
  }
}

/* ── STORY PAGE ── */

/* Section 1: Hero */
.story-hero {
  height: 80vh;
  position: relative;
  overflow: hidden;
}
.sh-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(74,64,64,0.75) 0%, rgba(74,64,64,0.2) 60%, transparent 100%);
}
.sh-text {
  position: absolute;
  bottom: 80px;
  left: 80px;
  z-index: 2;
  max-width: 600px;
}
.story-hero .reveal-left {
  opacity: 1 !important;
  transform: none !important;
}
.sh-text h1 {
  font-family: var(--font-titre);
  font-weight: 300;
  font-size: clamp(3rem,5vw,5rem);
  color: var(--blanc);
  line-height: 1.1;
  margin-top: 8px;
}
.sh-subline {
  font-family: var(--font-corps);
  font-weight: 300;
  font-size: 1rem;
  color: rgba(251,248,245,0.7);
  margin-top: 16px;
}

/* Section 2: Intro */
.story-intro {
  background: var(--blanc);
  padding: 120px 80px;
  display: grid;
  grid-template-columns: 45% 55%;
  gap: 80px;
  align-items: center;
}
.intro-right h2 {
  font-family: var(--font-titre);
  font-weight: 300;
  font-size: clamp(2rem,3vw,2.8rem);
  color: var(--gris-chaud);
  line-height: 1.15;
  margin-top: 8px;
}
.intro-body {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 24px;
}
.intro-body p {
  font-family: var(--font-corps);
  font-weight: 300;
  font-size: 0.92rem;
  line-height: 1.85;
  color: var(--gris-chaud);
}
.intro-quote {
  margin-top: 32px;
  border-left: 2px solid var(--rose);
  padding-left: 24px;
  font-family: var(--font-titre);
  font-style: italic;
  font-weight: 300;
  font-size: 1.2rem;
  color: var(--gris-chaud);
}
.quote-author {
  display: block;
  font-family: var(--font-corps);
  font-weight: 300;
  font-style: normal;
  font-size: 0.78rem;
  color: var(--gris-doux);
  margin-top: 8px;
}

/* Section 3: Terroir */
.story-terroir {
  background: var(--creme);
  padding: 120px 80px;
  text-align: center;
}
.terroir-header {
  max-width: 640px;
  margin: 0 auto 80px;
}
.terroir-header h2 {
  font-family: var(--font-titre);
  font-weight: 300;
  font-size: clamp(2.2rem,3.5vw,3rem);
  color: var(--gris-chaud);
  margin-top: 8px;
}
.terroir-header p {
  font-family: var(--font-corps);
  font-weight: 300;
  font-size: 0.92rem;
  color: var(--gris-doux);
  line-height: 1.85;
  margin-top: 16px;
}
.terroir-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
}
.stat-card {
  background: var(--blanc);
  border: 1px solid var(--bordure);
  padding: 48px 32px;
  text-align: center;
}
.stat-number {
  font-family: var(--font-titre);
  font-weight: 300;
  font-size: 3.5rem;
  color: var(--rose);
  line-height: 1;
}
.stat-label {
  font-family: var(--font-corps);
  font-weight: 300;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gris-doux);
  margin-top: 8px;
}

/* Section 4: Bottle */
.story-bottle {
  background: var(--blanc);
  padding: 120px 80px;
  display: grid;
  grid-template-columns: 55% 45%;
  gap: 80px;
  align-items: center;
}
.bottle-left h2 {
  font-family: var(--font-titre);
  font-weight: 300;
  font-size: clamp(2rem,3vw,2.8rem);
  color: var(--gris-chaud);
  margin-top: 8px;
}
.bottle-body {
  font-family: var(--font-corps);
  font-weight: 300;
  font-size: 0.92rem;
  line-height: 1.85;
  color: var(--gris-chaud);
  margin-top: 24px;
}
.bottle-features {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.feature-line {
  display: flex;
  align-items: center;
  gap: 16px;
}
.feature-dot {
  width: 6px;
  height: 6px;
  background: var(--rose);
  border-radius: 50%;
  flex-shrink: 0;
}
.feature-text {
  font-family: var(--font-corps);
  font-weight: 300;
  font-size: 0.88rem;
  color: var(--gris-chaud);
}

/* Section 5: CTA */
.story-cta {
  background: var(--rose);
  padding: 100px 80px;
  text-align: center;
}
.story-cta h2 {
  font-family: var(--font-titre);
  font-weight: 300;
  font-size: clamp(2.2rem,3.5vw,3rem);
  color: var(--gris-chaud);
  line-height: 1.15;
}
.story-cta-btns {
  margin-top: 40px;
  gap: 16px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.btn-outline-white {
  border-color: var(--blanc);
  color: var(--blanc);
}
.btn-outline-white:hover {
  background: var(--blanc);
  color: var(--gris-chaud);
}

/* RESPONSIVE STORY PAGE */
@media (max-width: 768px) {
  .story-intro, .story-terroir, .story-bottle, .story-cta {
    padding: 80px 24px;
  }
  .story-intro, .story-bottle {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .terroir-grid {
    grid-template-columns: 1fr;
  }
  .sh-text {
    bottom: 40px;
    left: 24px;
    right: 24px;
  }
}

/* ── SHOP PAGE ── */

/* Section 1: Shop Header */
.shop-header {
  background: var(--creme);
  padding: calc(var(--nav-height) + 80px) 80px 60px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.sh-left h1 {
  font-family: var(--font-titre);
  font-weight: 300;
  font-size: clamp(2.4rem,4vw,3.6rem);
  color: var(--gris-chaud);
  line-height: 1.15;
  margin-top: 8px;
}
.sh-left p {
  font-family: var(--font-corps);
  font-weight: 300;
  font-size: 0.88rem;
  color: var(--gris-doux);
  max-width: 400px;
  margin-top: 12px;
  line-height: 1.7;
}
.filter-tabs {
  display: flex;
  flex-direction: row;
  gap: 8px;
}
.filter-btn {
  font-family: var(--font-corps);
  font-weight: 400;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  padding: 8px 20px;
  border: 1px solid var(--bordure);
  background: transparent;
  color: var(--gris-doux);
  cursor: pointer;
  transition: all 0.2s;
  border-radius: 0;
}
.filter-btn.active {
  background: var(--gris-chaud);
  color: var(--blanc);
  border-color: var(--gris-chaud);
}
.filter-btn:not(.active):hover {
  border-color: var(--rose);
  color: var(--rose);
}

/* Section 2: Product Grid */
.shop-grid-section {
  background: var(--blanc);
  padding: 60px 80px 120px;
}
.shop-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: var(--max-width);
  margin: 0 auto;
}
.product-card {
  position: relative;
  cursor: pointer;
}
.product-image-wrap {
  position: relative;
  overflow: hidden;
  background: var(--rose-light);
  aspect-ratio: 3/4;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-emoji {
  font-size: 4rem;
  transition: transform 0.5s ease;
}
.product-card:hover .product-emoji {
  transform: scale(1.04);
}
.product-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  font-family: var(--font-corps);
  font-weight: 500;
  font-size: 0.58rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  padding: 5px 12px;
  background: var(--blanc);
  color: var(--rose);
  z-index: 2;
}
.product-info {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.product-name {
  font-family: var(--font-titre);
  font-weight: 300;
  font-style: italic;
  font-size: 1.1rem;
  color: var(--gris-chaud);
}
.product-type {
  font-family: var(--font-corps);
  font-weight: 300;
  font-size: 0.72rem;
  color: var(--gris-doux);
  margin-top: 4px;
}
.product-price {
  font-family: var(--font-corps);
  font-weight: 400;
  font-size: 0.88rem;
  color: var(--gris-chaud);
}
.product-cta {
  margin-top: 14px;
}
.product-buy-btn {
  display: block;
  width: 100%;
  padding: 12px;
  text-align: center;
  border: 1px solid var(--gris-chaud);
  font-family: var(--font-corps);
  font-weight: 400;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--gris-chaud);
  transition: all 0.25s ease;
  background: transparent;
}
.product-buy-btn:hover {
  background: var(--gris-chaud);
  color: var(--blanc);
}

/* Section 3: Club Teaser */
.club-teaser-wrapper {
  background: var(--gris-chaud);
  padding: 80px;
}
.club-teaser {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}
.club-teaser h2 {
  font-family: var(--font-titre);
  font-weight: 300;
  font-size: clamp(2rem,3vw,2.6rem);
  color: var(--creme);
  margin-top: 8px;
}
.club-teaser p {
  font-family: var(--font-corps);
  font-weight: 300;
  font-size: 0.88rem;
  color: rgba(251,248,245,0.6);
  line-height: 1.8;
  margin-top: 16px;
}
.club-form {
  display: flex;
  gap: 0;
  max-width: 440px;
  margin: 32px auto 0;
}
.club-form input {
  flex: 1;
  padding: 14px 20px;
  border: 1px solid rgba(251,248,245,0.2);
  background: rgba(251,248,245,0.08);
  color: var(--blanc);
  font-family: var(--font-corps);
  font-weight: 300;
  font-size: 0.88rem;
  outline: none;
  border-radius: 0;
}
.club-form input::placeholder {
  color: rgba(251,248,245,0.35);
}
.club-form button {
  flex-shrink: 0;
  border-radius: 0;
  background: var(--rose);
  color: var(--blanc);
  padding: 14px 24px;
  font-family: var(--font-corps);
  font-weight: 500;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
}
.club-form button:hover {
  background: var(--rose-pale);
  color: var(--gris-chaud);
}

/* RESPONSIVE SHOP PAGE */
@media (max-width: 900px) {
  .shop-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .shop-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
    padding: calc(var(--nav-height) + 40px) 24px 40px;
  }
  .shop-grid-section {
    padding: 60px 24px 80px;
  }
  .filter-tabs {
    flex-wrap: wrap;
  }
  .club-teaser-wrapper {
    padding: 60px 24px;
  }
}
@media (max-width: 540px) {
  .shop-grid {
    grid-template-columns: 1fr;
  }
  .club-form {
    flex-direction: column;
    gap: 16px;
  }
  .club-form input, .club-form button {
    width: 100%;
  }
}

/* ── CONTACT PAGE ── */

/* Section 1: Header */
.contact-header {
  background: var(--blanc);
  padding: calc(var(--nav-height) + 100px) 80px 60px;
  max-width: 640px;
}
.contact-header h1 {
  font-family: var(--font-titre);
  font-weight: 300;
  font-size: clamp(2.4rem,4vw,3.6rem);
  color: var(--gris-chaud);
  line-height: 1.15;
  margin-top: 8px;
}
.contact-header p {
  font-family: var(--font-corps);
  font-weight: 300;
  font-size: 0.92rem;
  color: var(--gris-doux);
  line-height: 1.8;
  margin-top: 16px;
}

/* Section 2: Contact Grid */
.contact-grid {
  background: var(--blanc);
  padding: 0 80px 120px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  max-width: var(--max-width);
  margin: 0 auto;
}
.form-title {
  font-family: var(--font-titre);
  font-weight: 300;
  font-style: italic;
  font-size: 1.4rem;
  color: var(--gris-chaud);
  margin-bottom: 32px;
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  font-family: var(--font-corps);
  font-weight: 400;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gris-chaud);
  display: block;
  margin-bottom: 8px;
}
.form-group input, 
.form-group select, 
.form-group textarea {
  width: 100%;
  padding: 14px 0;
  border: none;
  border-bottom: 1px solid var(--bordure);
  background: transparent;
  color: var(--gris-chaud);
  font-family: var(--font-corps);
  font-weight: 300;
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.2s;
  border-radius: 0;
}
.form-group textarea {
  resize: vertical;
}
.form-group input:focus, 
.form-group select:focus, 
.form-group textarea:focus {
  border-bottom-color: var(--rose);
}
.form-group input::placeholder, 
.form-group textarea::placeholder {
  color: rgba(74,64,64,0.35);
}
#contactSubmitBtn {
  width: 100%;
  margin-top: 8px;
}
#formMessage {
  font-family: var(--font-corps);
  font-weight: 300;
  font-size: 0.85rem;
  min-height: 24px;
  margin-top: 16px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.info-block {
  border-top: 1px solid var(--bordure);
  padding-top: 32px;
}
.info-title {
  font-family: var(--font-corps);
  font-weight: 500;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--rose);
  margin-bottom: 16px;
}
.info-body {
  font-family: var(--font-corps);
  font-weight: 300;
  font-size: 0.88rem;
  color: var(--gris-chaud);
  line-height: 1.8;
}
.store-locator-btn {
  font-size: 0.68rem;
  padding: 10px 24px;
  margin-top: 20px;
  display: inline-block;
}
.info-lines {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 16px;
}
.info-lines span {
  font-family: var(--font-corps);
  font-weight: 300;
  font-size: 0.82rem;
  color: var(--gris-doux);
}

/* Section 3: Locator Teaser */
.locator-teaser {
  background: var(--creme);
  padding: 80px;
  text-align: center;
}
.locator-teaser h2 {
  font-family: var(--font-titre);
  font-weight: 300;
  font-size: clamp(1.8rem,3vw,2.4rem);
  color: var(--gris-chaud);
  line-height: 1.15;
  margin-top: 8px;
}
.locator-teaser p {
  font-family: var(--font-corps);
  font-weight: 300;
  font-size: 0.88rem;
  color: var(--gris-doux);
  max-width: 480px;
  margin: 16px auto 32px;
  line-height: 1.8;
}

/* RESPONSIVE CONTACT PAGE */
@media (max-width: 768px) {
  .contact-header {
    padding: calc(var(--nav-height) + 40px) 24px 40px;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 64px;
    padding: 0 24px 80px;
  }
  .locator-teaser {
    padding: 60px 24px;
  }
}
