/* ============================================================
   MAISON HENRY — Style Terroir & Vintage
   Palette: parchemin · terre · bourgogne · or vieilli · sauge
   ============================================================ */

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

:root {
  /* Palette terroir */
  --parchment:      #f2e8d5;
  --parchment-dark: #e6d8be;
  --parchment-deep: #d4c09a;
  --earth:          #2a1a0e;
  --earth-mid:      #4a3020;
  --earth-soft:     #7a5c3e;
  --terracotta:     #b85c30;
  --terracotta-light: #d4844a;
  --wine:           #6b1e2e;
  --wine-light:     #8a2a3e;
  --gold-old:       #b8943a;
  --gold-worn:      #caa85a;
  --sage:           #5a7a4a;
  --sage-light:     #7a9a6a;
  --ink:            #1e140a;
  --warm-white:     #faf6ef;

  --font-serif:     'Cormorant Garamond', 'Georgia', serif;
  --font-fell:      'IM Fell English', 'Georgia', serif;
  --font-sans:      'Raleway', 'Helvetica Neue', Arial, sans-serif;
}

/* ─── Reset ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  background: var(--warm-white);
  color: var(--earth);
  font-size: 16px;
  line-height: 1.7;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ─── Grain texture overlay ─── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 200px 200px;
}

/* ─── Typography ─── */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.2;
  color: var(--earth);
}

/* Section label — style tampon / gravure */
.section-label {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--terracotta);
  display: inline-block;
  margin-bottom: 0.75rem;
  position: relative;
}

/* Ornement horizontal autour du label */
.section-label-fancy {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  margin-bottom: 0.75rem;
}
.section-label-fancy span {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--terracotta);
}
.section-label-fancy::before,
.section-label-fancy::after {
  content: '';
  flex: 0 0 30px;
  height: 1px;
  background: var(--terracotta);
  opacity: 0.5;
}

/* Filet décoratif */
.ornament {
  display: block;
  text-align: center;
  color: var(--gold-old);
  opacity: 0.6;
  font-size: 1.2rem;
  letter-spacing: 0.5em;
  margin: 0.75rem 0 1.5rem;
  font-family: serif;
}

/* ═══════════════════════════════
   NAVIGATION
═══════════════════════════════ */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 4rem;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.4s, box-shadow 0.4s;
}

nav.scrolled {
  background: var(--earth);
  box-shadow: 0 2px 30px rgba(42,26,14,0.4);
}

nav.scrolled::after {
  content: '';
  position: absolute;
  bottom: 0; left: 4rem; right: 4rem;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold-old), transparent);
  opacity: 0.4;
}

.nav-logo {
  font-family: var(--font-fell);
  font-size: 1.5rem;
  color: var(--warm-white);
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.nav-logo .logo-leaf {
  color: var(--gold-old);
  font-size: 1rem;
}
.nav-logo span { color: var(--gold-old); }

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}
.nav-links a {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(242,232,213,0.8);
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -5px; left: 0; right: 0;
  height: 1px;
  background: var(--gold-old);
  transform: scaleX(0);
  transition: transform 0.25s;
  transform-origin: left;
}
.nav-links a:hover,
.nav-links a.active { color: var(--gold-worn); }
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--parchment);
  transition: all 0.3s;
}

/* ═══════════════════════════════
   HERO
═══════════════════════════════ */
.hero {
  height: 100vh;
  min-height: 620px;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Fond : photo des vignes de Chablis */
.hero-bg {
  position: absolute;
  inset: 0;
  background: var(--earth);
}

.hero-bg img.hero-photo {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center 60%;
  display: block;
}

/* Overlay sombre pour lisibilité du texte */
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(15, 6, 2, 0.45);
  z-index: 1;
}

/* Vignette sombre sur les bords */
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 40% 50%, transparent 20%, rgba(15,6,2,0.55) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 4rem;
  color: var(--parchment);
}

/* Cadre gravé autour du titre hero */
.hero-frame {
  display: inline-block;
  border: 1px solid rgba(184,148,58,0.35);
  padding: 2.5rem 3.5rem 3rem;
  position: relative;
  max-width: 640px;
}
.hero-frame::before, .hero-frame::after {
  content: '';
  position: absolute;
  width: 20px; height: 20px;
  border-color: var(--gold-old);
  border-style: solid;
  opacity: 0.7;
}
.hero-frame::before { top: -4px; left: -4px; border-width: 2px 0 0 2px; }
.hero-frame::after  { bottom: -4px; right: -4px; border-width: 0 2px 2px 0; }

.hero-frame .corner-br::before {
  content: '';
  position: absolute;
  top: -4px; right: -4px;
  width: 20px; height: 20px;
  border-top: 2px solid var(--gold-old);
  border-right: 2px solid var(--gold-old);
  opacity: 0.7;
}
.hero-frame .corner-tl::before {
  content: '';
  position: absolute;
  bottom: -4px; left: -4px;
  width: 20px; height: 20px;
  border-bottom: 2px solid var(--gold-old);
  border-left: 2px solid var(--gold-old);
  opacity: 0.7;
}

.hero-origin {
  font-family: var(--font-sans);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold-old);
  display: block;
  margin-bottom: 1.25rem;
}

.hero-content h1 {
  font-family: var(--font-fell);
  font-size: clamp(2.6rem, 6vw, 5rem);
  color: var(--parchment);
  line-height: 1.1;
  margin-bottom: 0.5rem;
}
.hero-content h1 em {
  font-style: italic;
  color: var(--gold-worn);
}

.hero-subtitle {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.1rem;
  color: rgba(242,232,213,0.65);
  margin: 1rem 0 1.5rem;
  letter-spacing: 0.05em;
}

.hero-divider-ornate {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 1.25rem 0;
  opacity: 0.6;
}
.hero-divider-ornate::before,
.hero-divider-ornate::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--gold-old);
}
.hero-divider-ornate span {
  color: var(--gold-old);
  font-size: 0.9rem;
  font-family: serif;
}

.hero-desc {
  font-size: 0.9rem;
  color: rgba(242,232,213,0.6);
  line-height: 1.9;
  margin-bottom: 2rem;
}

/* ─── Boutons ─── */
.btn {
  display: inline-block;
  padding: 0.85rem 2.2rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  transition: all 0.3s;
  cursor: pointer;
  border: none;
  font-family: var(--font-sans);
  position: relative;
}

.btn-terracotta {
  background: var(--terracotta);
  color: var(--warm-white);
}
.btn-terracotta:hover {
  background: var(--terracotta-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(184,92,48,0.4);
}

.btn-outline {
  border: 1px solid rgba(242,232,213,0.4);
  color: var(--parchment);
  background: transparent;
  margin-left: 1rem;
}
.btn-outline:hover {
  border-color: var(--gold-old);
  color: var(--gold-worn);
}

.btn-earth {
  background: var(--earth);
  color: var(--parchment);
}
.btn-earth:hover {
  background: var(--earth-mid);
  transform: translateY(-2px);
}

.btn-wine {
  background: var(--wine);
  color: var(--parchment);
}
.btn-wine:hover {
  background: var(--wine-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(107,30,46,0.35);
}

/* ─── Scroll indicator ─── */
.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  color: rgba(242,232,213,0.35);
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-family: var(--font-sans);
}
.hero-scroll::after {
  content: '';
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(184,148,58,0.5), transparent);
  animation: scrollPulse 2s infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

/* ═══════════════════════════════
   SECTIONS
═══════════════════════════════ */
section {
  padding: 6rem 4rem;
  max-width: 1200px;
  margin: 0 auto;
}
.section-full { max-width: none; padding: 0; }
.bg-parchment { background: var(--parchment); }
.bg-parchment-dark { background: var(--parchment-dark); }
.bg-earth { background: var(--earth); }
.bg-earth-mid { background: var(--earth-mid); }
.bg-warm-white { background: var(--warm-white); }

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}
.section-header h2 {
  font-family: var(--font-fell);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--earth);
  margin-bottom: 0.5rem;
}
.section-header p {
  color: var(--earth-soft);
  max-width: 560px;
  margin: 0.75rem auto 0;
  font-size: 0.95rem;
}

/* ═══════════════════════════════
   SÉPARATEUR DÉCORATIF
═══════════════════════════════ */
.separator {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin: 3rem 0;
}
.separator::before,
.separator::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--parchment-deep);
}
.separator-icon {
  color: var(--gold-old);
  font-size: 1rem;
  font-family: serif;
  opacity: 0.7;
  letter-spacing: 0.3em;
}

/* ═══════════════════════════════
   RUBAN / BANDEAU (étiquette-style)
═══════════════════════════════ */
.ribbon {
  display: inline-block;
  background: var(--wine);
  color: var(--parchment);
  font-family: var(--font-sans);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  padding: 0.35rem 1rem;
  position: relative;
}
.ribbon::before {
  content: '';
  position: absolute;
  left: -8px; top: 0; bottom: 0;
  width: 0;
  border-style: solid;
  border-width: 0 8px 100% 0;
  border-color: transparent var(--wine) transparent transparent;
}

/* ═══════════════════════════════
   CARDS DE VIN
═══════════════════════════════ */
.wines-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
}

/* Quand une seule carte est visible, elle prend au max 520px centrée */
.wines-grid .wine-card:only-child {
  max-width: 520px;
  width: 100%;
  margin: 0 auto;
  grid-column: 1 / -1;
}

.wine-card {
  background: var(--warm-white);
  border: 1px solid var(--parchment-deep);
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
}
.wine-card::before {
  content: '';
  position: absolute;
  inset: 6px;
  border: 1px solid rgba(184,148,58,0.15);
  pointer-events: none;
  z-index: 1;
}
.wine-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(42,26,14,0.15);
}

.wine-card-img {
  height: 300px;
  background: var(--parchment);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.wine-card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80'%3E%3Ccircle cx='40' cy='40' r='36' fill='none' stroke='%23b8943a' stroke-width='0.4' opacity='0.2'/%3E%3Ccircle cx='40' cy='40' r='24' fill='none' stroke='%23b8943a' stroke-width='0.4' opacity='0.15'/%3E%3C/svg%3E") center/80px;
  pointer-events: none;
}

.wine-card-img img {
  height: 280px;
  width: auto;
  object-fit: contain;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 8px 20px rgba(42,26,14,0.2));
  transition: transform 0.4s;
}
.wine-card:hover .wine-card-img img {
  transform: scale(1.04) translateY(-4px);
}

.appellation-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--earth);
  color: var(--parchment);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  z-index: 3;
  font-family: var(--font-sans);
}

.wine-card-body {
  padding: 1.5rem 1.75rem 2rem;
  border-top: 2px solid var(--parchment-dark);
  background: var(--warm-white);
}

.wine-card-meta {
  font-size: 0.68rem;
  color: var(--terracotta);
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 0.35rem;
  font-family: var(--font-sans);
}

.wine-card-body h3 {
  font-family: var(--font-fell);
  font-size: 1.5rem;
  color: var(--earth);
  margin-bottom: 0.75rem;
}

.wine-card-body p {
  font-size: 0.875rem;
  color: var(--earth-soft);
  line-height: 1.8;
}

/* ═══════════════════════════════
   STATS
═══════════════════════════════ */
.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid rgba(184,148,58,0.25);
  position: relative;
}
.stats-row::before {
  content: '';
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(184,148,58,0.12);
  pointer-events: none;
}

.stat-item {
  padding: 3.5rem 2rem;
  text-align: center;
  border-right: 1px solid rgba(184,148,58,0.2);
  position: relative;
}
.stat-item:last-child { border-right: none; }

.stat-number {
  font-family: var(--font-fell);
  font-size: 4rem;
  color: var(--gold-old);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.stat-label {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(242,232,213,0.45);
  font-weight: 600;
}

/* ═══════════════════════════════
   TWO-COL
═══════════════════════════════ */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.two-col.reverse { direction: rtl; }
.two-col.reverse > * { direction: ltr; }

.text-col h2 {
  font-family: var(--font-fell);
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  margin-bottom: 1.5rem;
  color: var(--earth);
}
.text-col p {
  color: var(--earth-soft);
  margin-bottom: 1.25rem;
  line-height: 1.9;
  font-size: 0.95rem;
}

.img-col {
  height: 520px;
  background: var(--earth-mid);
  position: relative;
  overflow: hidden;
}
.img-col::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100'%3E%3Ccircle cx='50' cy='50' r='45' fill='none' stroke='%23b8943a' stroke-width='0.5' opacity='0.1'/%3E%3Ccircle cx='50' cy='50' r='30' fill='none' stroke='%23b8943a' stroke-width='0.5' opacity='0.08'/%3E%3Ccircle cx='50' cy='50' r='15' fill='none' stroke='%23b8943a' stroke-width='0.5' opacity='0.06'/%3E%3C/svg%3E") center/100px repeat;
}
.img-col::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(42,26,14,0.5) 0%, transparent 60%);
}
.img-col-inner {
  position: absolute;
  inset: 0;
  z-index: 1;
}

/* Cadre interne décoratif sur les images */
.img-col-frame {
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(184,148,58,0.2);
  z-index: 2;
  pointer-events: none;
}
.img-col-frame::before, .img-col-frame::after {
  content: '';
  position: absolute;
  width: 18px; height: 18px;
  border-color: var(--gold-old);
  border-style: solid;
  opacity: 0.5;
}
.img-col-frame::before { top: -3px; left: -3px; border-width: 2px 0 0 2px; }
.img-col-frame::after  { bottom: -3px; right: -3px; border-width: 0 2px 2px 0; }

.img-label {
  position: absolute;
  bottom: 1.5rem;
  right: 0;
  background: var(--terracotta);
  color: var(--parchment);
  padding: 0.5rem 1.5rem;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
  font-family: var(--font-sans);
  z-index: 3;
}

/* ═══════════════════════════════
   BANDEAU TERROIR — style étiquette
═══════════════════════════════ */
.terroir-banner {
  background: var(--earth);
  padding: 5rem 4rem;
  position: relative;
  overflow: hidden;
}
.terroir-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cg fill='none' stroke='%23b8943a' stroke-width='0.4' opacity='0.08'%3E%3Ccircle cx='100' cy='100' r='90'/%3E%3Ccircle cx='100' cy='100' r='70'/%3E%3Ccircle cx='100' cy='100' r='50'/%3E%3Ccircle cx='100' cy='100' r='30'/%3E%3Cline x1='10' y1='100' x2='190' y2='100'/%3E%3Cline x1='100' y1='10' x2='100' y2='190'/%3E%3C/g%3E%3C/svg%3E") center/200px;
}
.terroir-banner-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.terroir-banner-inner .stats-row {
  background: transparent;
}

/* ═══════════════════════════════
   ENCART CTA STYLE ÉTIQUETTE
═══════════════════════════════ */
.cta-label-box {
  background: var(--parchment);
  padding: 5rem 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-label-box::before {
  content: '';
  position: absolute;
  inset: 20px;
  border: 1px solid var(--parchment-deep);
  pointer-events: none;
}
.cta-label-box::after {
  content: '';
  position: absolute;
  inset: 28px;
  border: 1px solid rgba(184,148,58,0.15);
  pointer-events: none;
}
.cta-label-box h2 {
  font-family: var(--font-fell);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--earth);
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}
.cta-label-box p {
  color: var(--earth-soft);
  max-width: 500px;
  margin: 0 auto 2.5rem;
  font-size: 0.95rem;
  position: relative;
  z-index: 1;
}
.cta-label-box .section-label { position: relative; z-index: 1; }
.cta-label-box .btn { position: relative; z-index: 1; }

/* ═══════════════════════════════
   PHILOSOPHY CARDS
═══════════════════════════════ */
.philo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--parchment-dark);
}
.philo-card {
  padding: 2.5rem 2rem;
  border-right: 1px solid var(--parchment-dark);
  background: var(--warm-white);
  transition: background 0.3s;
}
.philo-card:last-child { border-right: none; }
.philo-card:hover { background: var(--parchment); }
.philo-icon {
  font-size: 1.75rem;
  margin-bottom: 1rem;
  display: block;
  line-height: 1;
}
.philo-card h3 {
  font-family: var(--font-fell);
  font-size: 1.3rem;
  color: var(--earth);
  margin-bottom: 0.75rem;
}
.philo-card p {
  font-size: 0.875rem;
  color: var(--earth-soft);
  line-height: 1.8;
}

/* ═══════════════════════════════
   PAGE HEADER interne
═══════════════════════════════ */
.page-header {
  height: 46vh;
  min-height: 340px;
  background: var(--earth);
  display: flex;
  align-items: flex-end;
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cg fill='none' stroke='%23b8943a' stroke-width='0.4' opacity='0.1'%3E%3Ccircle cx='80' cy='80' r='70'/%3E%3Ccircle cx='80' cy='80' r='50'/%3E%3Ccircle cx='80' cy='80' r='30'/%3E%3Cline x1='10' y1='80' x2='150' y2='80'/%3E%3Cline x1='80' y1='10' x2='80' y2='150'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 160px 160px;
}
.page-header::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(42,26,14,0.85) 0%, transparent 70%);
}
.page-header-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 4rem 3.5rem;
}
.page-header h1 {
  font-family: var(--font-fell);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  color: var(--parchment);
}
.breadcrumb {
  font-size: 0.68rem;
  color: rgba(242,232,213,0.4);
  letter-spacing: 0.15em;
  margin-bottom: 0.6rem;
  font-family: var(--font-sans);
}
.breadcrumb a { color: var(--gold-old); }
.page-header-line {
  width: 50px; height: 2px;
  background: var(--terracotta);
  margin: 0.75rem 0;
}

/* ═══════════════════════════════
   BOTTLES PAGE
═══════════════════════════════ */
.bottle-showcase {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2.5rem;
}
.bottle-showcase--wide {
  grid-template-columns: repeat(auto-fill, minmax(420px, 1fr));
}
.bottle-card {
  background: var(--warm-white);
  border: 1px solid var(--parchment-dark);
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
  position: relative;
}
.bottle-card::before {
  content: '';
  position: absolute;
  inset: 6px;
  border: 1px solid rgba(184,148,58,0.12);
  pointer-events: none;
  z-index: 0;
}
.bottle-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(42,26,14,0.15);
}
.bottle-img-wrap {
  height: 280px;
  background: var(--parchment);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 2rem;
}
.bottle-img-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80'%3E%3Ccircle cx='40' cy='40' r='36' fill='none' stroke='%23b8943a' stroke-width='0.4' opacity='0.2'/%3E%3C/svg%3E") center/80px;
}
.bottle-img-wrap img {
  height: 90%;
  width: auto;
  object-fit: contain;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 12px 30px rgba(42,26,14,0.25));
  transition: transform 0.4s;
}
.bottle-card:hover .bottle-img-wrap img {
  transform: scale(1.05) translateY(-5px);
}
.bottle-type-badge {
  position: absolute;
  top: 1rem; left: 1rem;
  padding: 0.3rem 0.8rem;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-family: var(--font-sans);
  z-index: 3;
}
.badge-blanc { background: var(--parchment-deep); color: var(--earth-mid); }
.badge-rouge { background: var(--wine); color: var(--parchment); }
.badge-rose  { background: #c87878; color: var(--parchment); }
.badge-1er   { background: var(--earth); color: var(--gold-old); }

.bottle-body {
  padding: 1.75rem 2rem 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  background: var(--warm-white);
  border-top: 2px solid var(--parchment-dark);
  position: relative;
  z-index: 1;
}
.bottle-appellation {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 0.35rem;
  font-family: var(--font-sans);
}
.bottle-body h3 {
  font-family: var(--font-fell);
  font-size: 1.65rem;
  color: var(--earth);
  margin-bottom: 0.2rem;
}
.bottle-cepage {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.9rem;
  color: var(--earth-soft);
  margin-bottom: 1rem;
}
.bottle-body p {
  font-size: 0.875rem;
  color: var(--earth-soft);
  line-height: 1.85;
  flex: 1;
}
.bottle-specs {
  display: flex;
  gap: 1.5rem;
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--parchment-dark);
}
.spec { font-size: 0.8rem; }
.spec strong {
  display: block;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 0.2rem;
  font-family: var(--font-sans);
}

.appellation-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  padding-bottom: 1.5rem;
}
.appellation-header h2 {
  font-family: var(--font-fell);
  font-size: 2rem;
  color: var(--earth);
  white-space: nowrap;
}
.appellation-header .gold-line {
  flex: 1; height: 1px;
  background: linear-gradient(to right, var(--parchment-deep), transparent);
}
.appellation-header .gold-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--terracotta);
  flex-shrink: 0;
}
.appellation-block { margin-bottom: 5rem; }

/* ═══════════════════════════════
   CONTACT
═══════════════════════════════ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: start;
}
.contact-info h3 {
  font-family: var(--font-fell);
  font-size: 2rem;
  margin-bottom: 1.25rem;
}
.contact-detail {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  align-items: flex-start;
}
.contact-icon {
  width: 42px; height: 42px;
  background: var(--parchment);
  border: 1px solid var(--parchment-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
}
.contact-detail-text strong {
  display: block;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 0.25rem;
  font-family: var(--font-sans);
}
.contact-detail-text span {
  font-size: 0.9rem;
  color: var(--earth-soft);
  line-height: 1.7;
}

/* Formulaire */
.form-group { margin-bottom: 1.5rem; }
.form-group label {
  display: block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--earth-mid);
  margin-bottom: 0.5rem;
  font-family: var(--font-sans);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  border: 1px solid var(--parchment-dark);
  background: var(--parchment);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: var(--earth);
  outline: none;
  transition: border-color 0.2s, background 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--terracotta);
  background: var(--warm-white);
}
.form-group textarea { resize: vertical; min-height: 140px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* ═══════════════════════════════
   FOOTER
═══════════════════════════════ */
footer {
  background: var(--ink);
  color: rgba(242,232,213,0.45);
  padding: 5rem 4rem 3rem;
  position: relative;
}
footer::before {
  content: '';
  position: absolute;
  top: 0; left: 4rem; right: 4rem;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold-old), transparent);
  opacity: 0.3;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 4rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(184,148,58,0.12);
  margin-bottom: 2rem;
}
.footer-brand .nav-logo {
  font-size: 1.9rem;
  margin-bottom: 1.25rem;
}
.footer-brand p {
  font-size: 0.875rem;
  line-height: 1.85;
  max-width: 280px;
  color: rgba(242,232,213,0.4);
}
.footer-brand .footer-tagline {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.85rem;
  color: rgba(184,148,58,0.6);
  margin-top: 0.75rem;
  display: block;
}

.footer-col h4 {
  font-family: var(--font-sans);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 1.25rem;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.6rem; }
.footer-col ul a {
  font-size: 0.875rem;
  color: rgba(242,232,213,0.4);
  transition: color 0.2s;
}
.footer-col ul a:hover { color: var(--gold-worn); }

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
}

/* ═══════════════════════════════
   TIMELINE
═══════════════════════════════ */
.timeline { position: relative; padding-left: 3.5rem; }
.timeline::before {
  content: '';
  position: absolute;
  left: 0.6rem; top: 0; bottom: 0;
  width: 1px;
  background: var(--parchment-dark);
}
.timeline-item { position: relative; margin-bottom: 3rem; }
.timeline-item::before {
  content: '';
  position: absolute;
  left: -2.95rem; top: 0.6rem;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--terracotta);
  box-shadow: 0 0 0 3px var(--parchment-dark);
}
.timeline-year {
  font-family: var(--font-fell);
  font-size: 1.1rem;
  color: var(--terracotta);
  margin-bottom: 0.25rem;
}
.timeline-item h3 { font-family: var(--font-fell); font-size: 1.4rem; color: var(--earth); margin-bottom: 0.5rem; }
.timeline-item p { color: var(--earth-soft); font-size: 0.9rem; line-height: 1.8; }

/* ═══════════════════════════════
   RESPONSIVE
═══════════════════════════════ */
@media (max-width: 1024px) {
  nav { padding: 0 2rem; }
  section { padding: 5rem 2rem; }
  .page-header-content { padding: 0 2rem 3rem; }
  footer { padding: 4rem 2rem 2.5rem; }
  footer::before { left: 2rem; right: 2rem; }
  .two-col { grid-template-columns: 1fr; gap: 3rem; }
  .two-col.reverse { direction: ltr; }
  .img-col { height: 360px; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .footer-brand { grid-column: span 2; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .stats-row { grid-template-columns: 1fr; border: none; gap: 1px; }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(184,148,58,0.15); }
  .stat-item:last-child { border-bottom: none; }
  .philo-grid { grid-template-columns: 1fr; }
  .philo-card { border-right: none; border-bottom: 1px solid var(--parchment-dark); }
  .philo-card:last-child { border-bottom: none; }
}

@media (max-width: 768px) {
  .nav-links {
    display: none; flex-direction: column; gap: 1.5rem;
    position: fixed; top: 0; right: 0; bottom: 0; width: 75%;
    background: var(--earth); padding: 5rem 2rem 2rem;
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }
  .hero-content { padding: 0 1.5rem; }
  .hero-frame { padding: 1.75rem 1.75rem 2rem; }
  .wines-grid { grid-template-columns: 1fr; }
  .bottle-showcase { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-brand { grid-column: span 1; }
  .footer-bottom { flex-direction: column; gap: 0.75rem; text-align: center; }
  section { padding: 4rem 1.5rem; }
  .terroir-banner { padding: 4rem 1.5rem; }
  .cta-label-box { padding: 4rem 1.5rem; }
  .btn-outline { margin-left: 0; margin-top: 0.75rem; }
  .stats-row::before { display: none; }
}
