/* ===== AGE GATE ===== */
/*
 * Par défaut le gate est masqué.
 * html.age-gate-active (ajouté par un script inline dans <head>) le rend visible.
 * Cela évite tout flash de contenu : la classe est posée avant le premier paint.
 */
#age-gate {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(8, 4, 1, 0.97);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  align-items: center;
  justify-content: center;
  padding: 20px;
}
html.age-gate-active #age-gate { display: flex; }
html.age-gate-active            { overflow: hidden; }

.age-gate-box {
  max-width: 460px;
  width: 100%;
  background: linear-gradient(160deg, #1c1208 0%, #2a1200 100%);
  border: 1px solid rgba(201, 160, 90, 0.28);
  border-radius: 4px;
  padding: 44px 40px 36px;
  text-align: center;
  box-shadow: 0 32px 96px rgba(0, 0, 0, 0.85);
}

.age-gate-logo {
  width: 68px;
  height: 68px;
  object-fit: contain;
  margin-bottom: 20px;
  filter: drop-shadow(0 4px 12px rgba(201, 160, 90, 0.25));
}

.age-gate-warning {
  font-size: .68rem;
  color: rgba(201, 160, 90, 0.7);
  letter-spacing: .07em;
  text-transform: uppercase;
  padding: 8px 14px;
  border: 1px solid rgba(201, 160, 90, 0.2);
  border-radius: 2px;
  margin-bottom: 32px;
  line-height: 1.6;
}

.age-gate-title {
  font-family: var(--font-heading);
  font-size: 1.65rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 12px;
  letter-spacing: .01em;
}

.age-gate-desc {
  font-size: .87rem;
  color: rgba(245, 232, 211, 0.65);
  line-height: 1.75;
  margin-bottom: 32px;
}
.age-gate-desc strong { color: rgba(245, 232, 211, 0.9); font-weight: 600; }

.age-gate-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.age-gate-btn {
  width: 100%;
  padding: 14px 24px;
  border: none;
  border-radius: 2px;
  font-family: var(--font-body);
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .08em;
  cursor: pointer;
  transition: background .2s, color .2s, opacity .2s;
}

.age-gate-yes {
  background: var(--gold);
  color: #160800;
}
.age-gate-yes:hover  { background: #d9b46a; }
.age-gate-yes:focus  { outline: 2px solid #d9b46a; outline-offset: 2px; }

.age-gate-no {
  background: transparent;
  color: rgba(245, 232, 211, 0.4);
  border: 1px solid rgba(245, 232, 211, 0.12);
}
.age-gate-no:hover  { background: rgba(245, 232, 211, 0.05); color: rgba(245, 232, 211, 0.65); }
.age-gate-no:focus  { outline: 2px solid rgba(245, 232, 211, 0.3); outline-offset: 2px; }

/* État refus */
.age-gate-denied {
  padding-top: 8px;
}
.age-gate-denied-icon  { font-size: 2.2rem; margin-bottom: 14px; }
.age-gate-denied-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: #e07070;
  margin-bottom: 10px;
}
.age-gate-denied p:last-child {
  font-size: .84rem;
  color: rgba(245, 232, 211, 0.5);
  line-height: 1.65;
}

/* Transition de fermeture */
#age-gate.age-gate-exit {
  opacity: 0;
  transition: opacity .4s ease;
}

@media (max-width: 480px) {
  .age-gate-box { padding: 32px 24px 28px; }
  .age-gate-title { font-size: 1.35rem; }
}

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

:root {
  --burgundy:    #5E2208;
  --burgundy-dk: #3a1404;
  --gold:        #c9a05a;
  --gold-lt:     #e8c87a;
  --cream:       #f5e8d3;
  --cream-dk:    #e8d5b7;
  --charcoal:    #1c1208;
  --charcoal-lt: #2e1e10;
  --text:        #f0e0c8;
  --text-muted:  #b89878;
  --white:       #ffffff;

  --font-heading: 'Playfair Display', 'Georgia', serif;
  --font-body:    'Raleway', 'Helvetica Neue', sans-serif;

  --section-pad: 100px 0;
  --container:   1200px;
  --radius:      4px;
  --transition:  0.35s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background-color: var(--charcoal);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
  /* Espace pour le bandeau fixe Vinélia */
  padding-bottom: 60px;
}

a { color: inherit; text-decoration: none; }

img { max-width: 100%; display: block; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--cream);
  line-height: 1.2;
  margin-bottom: 20px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.8;
}

.divider {
  width: 60px;
  height: 2px;
  background: var(--gold);
  margin: 24px 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}

.btn-primary {
  background: var(--gold);
  color: var(--charcoal);
}
.btn-primary:hover {
  background: var(--gold-lt);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201, 160, 90, 0.35);
}

.btn-outline {
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(245, 232, 211, 0.4);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--charcoal); }
::-webkit-scrollbar-thumb { background: var(--burgundy); border-radius: 3px; }

/* ===== NAVIGATION ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 24px;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
}
.navbar.scrolled {
  background: rgba(28, 18, 8, 0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 40px rgba(0,0,0,0.5);
}
.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  height: 90px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  line-height: 1.1;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.4s ease, transform 0.4s ease;
  pointer-events: auto;
}

/* Hero visible : logo fondu, burger reste à droite */
.navbar.hero-active .nav-logo {
  opacity: 0;
  transform: translateY(-6px);
  pointer-events: none;
}
.nav-logo img {
  height: 68px;
  width: 68px;
  object-fit: contain;
  filter: invert(1) drop-shadow(0 0 10px rgba(201, 160, 90, .45));
  transition: transform var(--transition), filter var(--transition);
}
.nav-logo:hover img {
  transform: scale(1.08);
  filter: invert(1) drop-shadow(0 0 16px rgba(201, 160, 90, .75));
}
.nav-logo .logo-text { display: none; }
.nav-logo .logo-main {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--cream);
  letter-spacing: 0.03em;
}
.nav-logo .logo-sub {
  font-size: 0.58rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}
.footer-logo-img {
  width: 120px;
  height: 120px;
  object-fit: contain;
  margin-bottom: 16px;
  filter: invert(1) drop-shadow(0 0 14px rgba(201, 160, 90, .4));
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color var(--transition);
  position: relative;
  white-space: nowrap;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}
.nav-links a:hover { color: var(--cream); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  background: var(--gold);
  color: var(--charcoal) !important;
  padding: 10px 22px;
  font-weight: 600 !important;
}
.nav-cta::after { display: none; }
.nav-cta:hover { background: var(--gold-lt); color: var(--charcoal) !important; }

/* Sélecteur de langue */
.nav-lang-item { display: flex; align-items: center; }
.nav-lang       { display: flex; align-items: center; gap: 6px; margin-left: 6px; }
.lang-sep       { color: rgba(201,160,90,.35); font-size: .75rem; }
.lang-btn {
  background: none; border: none; cursor: pointer;
  font-family: var(--font-body); font-size: .7rem; font-weight: 600;
  letter-spacing: .12em; color: var(--text-muted);
  padding: 3px 5px; transition: color var(--transition);
}
.lang-btn:hover  { color: var(--cream); }
.lang-btn.lang-active { color: var(--gold); }

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.nav-burger span {
  display: block;
  width: 26px; height: 2px;
  background: var(--cream);
  transition: var(--transition);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 70% 50%, rgba(94, 34, 8, 0.45) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(58, 20, 4, 0.6) 0%, transparent 50%),
    linear-gradient(135deg, #0e0806 0%, #1c1208 40%, #2e1510 70%, #1a0c06 100%);
  z-index: 0;
}

/* Decorative vine pattern overlay */
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 80px,
      rgba(201, 160, 90, 0.025) 80px,
      rgba(201, 160, 90, 0.025) 81px
    );
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 120px 24px 80px;
  max-width: var(--container);
  margin: 0 auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* ── Hero identity lockup ── */
.hero-lockup {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 40px;
}

.hero-logo-wrap {
  position: relative;
  width: 200px;
  height: 200px;
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-logo-glow {
  position: absolute;
  inset: -20px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 160, 90, 0.22) 0%, transparent 70%);
  animation: logo-pulse 3.5s ease-in-out infinite;
}

@keyframes logo-pulse {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50%       { opacity: 1;   transform: scale(1.06); }
}

.hero-logo-img {
  width: 200px;
  height: 200px;
  object-fit: contain;
  filter: invert(1) drop-shadow(0 0 24px rgba(201, 160, 90, 0.55));
  position: relative;
  z-index: 1;
}

.hero-brand-name {
  font-family: var(--font-heading);
  font-size: clamp(2.6rem, 6vw, 5rem);
  font-weight: 700;
  color: var(--cream);
  line-height: 1.1;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.hero-brand-name em {
  font-style: italic;
  color: var(--gold);
}

.hero-brand-sub {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.hero-brand-location {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ── Hero decorative divider ── */
.hero-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  max-width: 400px;
  margin-bottom: 28px;
}
.hero-divider span:not(.hero-divider-icon) {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(201, 160, 90, 0.4), transparent);
}
.hero-divider-icon {
  color: var(--gold);
  font-size: 0.55rem;
  opacity: 0.7;
}

/* ── Hero tagline (secondary) ── */
.hero-tagline {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 2.5vw, 1.55rem);
  font-weight: 400;
  font-style: italic;
  color: var(--text-muted);
  margin-bottom: 18px;
}
.hero-tagline em {
  color: var(--gold-lt);
  font-style: italic;
}

.hero-desc {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 480px;
  line-height: 1.85;
  margin-bottom: 44px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 64px;
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}
.hero-scroll .arrow {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ===== VINÉLIA PROMO STRIP ===== */
.vinelia-strip {
  display: block;
  text-decoration: none;
  background: linear-gradient(90deg, rgba(10,5,3,0.94) 0%, rgba(26,12,6,0.97) 40%, rgba(26,12,6,0.97) 60%, rgba(10,5,3,0.94) 100%);
  border-top: 1px solid rgba(201, 160, 90, 0.22);
  padding: 18px 0;
  transition: background var(--transition), opacity 0.4s ease, transform 0.4s ease;
  /* Fixé en bas de l'écran, visible sans scroller */
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 50;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
/* Caché quand on arrive à la section Vinélia (géré par JS) */
.vinelia-strip.vinelia-strip--hidden {
  opacity: 0;
  transform: translateY(100%);
  pointer-events: none;
}
.vinelia-strip::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(201,160,90,.04) 50%, transparent 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.vinelia-strip:hover::before { opacity: 1; }

.vinelia-strip-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.vinelia-strip-brand {
  display: flex;
  flex-direction: column;
  gap: 1px;
  flex-shrink: 0;
}
.vinelia-strip-name {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--gold-lt);
  letter-spacing: 0.02em;
  line-height: 1;
}
.vinelia-strip-by {
  font-family: var(--font-body);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.vinelia-strip-sep {
  color: rgba(201, 160, 90, 0.3);
  font-size: 0.6rem;
  flex-shrink: 0;
}
.vinelia-strip-tagline {
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  flex: 1;
  min-width: 0;
  font-style: italic;
}
.vinelia-strip:hover .vinelia-strip-tagline { color: var(--cream); }
.vinelia-strip-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  font-family: var(--font-body);
  font-size: 0.72rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  flex-shrink: 0;
  white-space: nowrap;
}
.vinelia-strip-price strong {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--gold);
  font-weight: 700;
}
.vinelia-strip-cta {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(201, 160, 90, 0.35);
  padding: 8px 18px;
  flex-shrink: 0;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}
.vinelia-strip:hover .vinelia-strip-cta {
  background: var(--gold);
  color: var(--charcoal);
  border-color: var(--gold);
}

@media (max-width: 768px) {
  .vinelia-strip-sep    { display: none; }
  .vinelia-strip-inner  { gap: 12px; }
  .vinelia-strip-tagline{ display: none; }
  .vinelia-strip-price  { margin-left: auto; }
}

/* ===== ABOUT ===== */
.about {
  padding: var(--section-pad);
  background: var(--charcoal-lt);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-visual {
  position: relative;
}
.about-image-frame {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
}
.about-image-main {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: linear-gradient(135deg, #3a1404 0%, #5e2208 40%, #2a1000 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.6s ease;
}
.about-visual:hover .about-photo {
  transform: scale(1.03);
}

.about-text {
  padding-left: 16px;
}
.about-text p {
  color: var(--text-muted);
  margin-bottom: 20px;
  font-size: 1rem;
  line-height: 1.9;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.feature-icon {
  width: 36px;
  height: 36px;
  min-width: 36px;
  background: rgba(201, 160, 90, 0.12);
  border: 1px solid rgba(201, 160, 90, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  margin-top: 2px;
}
.feature-text strong {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--cream);
  margin-bottom: 4px;
}
.feature-text span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ===== VINS ===== */
.vins {
  padding: var(--section-pad);
  background: var(--charcoal);
}
.vins-header {
  text-align: center;
  margin-bottom: 64px;
}
.vins-header .divider { margin: 24px auto; }
.vins-header .section-subtitle { margin: 0 auto; }

.appellations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-bottom: 60px;
}
.appellation-card {
  position: relative;
  padding: 40px 32px;
  background: var(--charcoal-lt);
  border: 1px solid rgba(201, 160, 90, 0.08);
  transition: var(--transition);
  overflow: hidden;
  cursor: default;
}
.appellation-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(94, 34, 8, 0.3), transparent);
  opacity: 0;
  transition: var(--transition);
}
.appellation-card:hover {
  border-color: rgba(201, 160, 90, 0.3);
  transform: translateY(-4px);
}
.appellation-card:hover::before { opacity: 1; }

.appellation-card .card-number {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 700;
  color: rgba(201, 160, 90, 0.1);
  line-height: 1;
  margin-bottom: 12px;
  transition: color var(--transition);
}
.appellation-card:hover .card-number {
  color: rgba(201, 160, 90, 0.25);
}
.appellation-card .card-title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--cream);
  margin-bottom: 8px;
}
.appellation-card .card-region {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.appellation-card .card-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
}
.appellation-card .card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}
.card-tag {
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(201, 160, 90, 0.25);
  padding: 4px 12px;
}

.vins-cta {
  text-align: center;
  padding: 60px;
  background: linear-gradient(135deg, var(--burgundy-dk), rgba(94, 34, 8, 0.3));
  border: 1px solid rgba(94, 34, 8, 0.5);
}
.vins-cta p {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-style: italic;
  color: var(--cream);
  margin-bottom: 28px;
}

/* ===== ETABLISSEMENTS ===== */
.etablissements {
  padding: var(--section-pad);
  background: var(--burgundy-dk);
}
.etab-header {
  text-align: center;
  margin-bottom: 64px;
}
.etab-header .divider { margin: 24px auto; }

.etab-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
}

.etab-card {
  position: relative;
  overflow: hidden;
  background: var(--charcoal);
  border: 1px solid rgba(201, 160, 90, 0.08);
  display: flex;
  flex-direction: column;
}

.etab-image {
  height: 340px;
  position: relative;
  overflow: hidden;
}

/* Photo réelle */
.etab-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.7s ease;
}
.etab-card:hover .etab-photo {
  transform: scale(1.07);
}

/* Dégradé sombre en bas pour la lisibilité du badge */
.etab-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,.15) 0%,
    transparent 40%,
    rgba(0,0,0,.5) 100%
  );
  z-index: 1;
  pointer-events: none;
}

.etab-badge {
  position: absolute;
  top: 20px;
  left: 0;
  background: var(--gold);
  color: var(--charcoal);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 6px 16px;
  z-index: 2;
}

.etab-body {
  padding: 40px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.etab-body h3 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--cream);
  margin-bottom: 6px;
}
.etab-city {
  font-size: 0.68rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.etab-city::before {
  content: '';
  width: 20px; height: 1px;
  background: var(--gold);
}

.etab-body p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 28px;
  flex: 1; /* pousse le bloc d'infos vers le bas pour aligner les deux cartes */
}

.etab-infos {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 24px;
  background: rgba(255,255,255,0.03);
  border-left: 2px solid var(--gold);
}
.etab-info-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 0.85rem;
}
.info-icon {
  color: var(--gold);
  min-width: 18px;
  font-size: 0.9rem;
}
.info-content { color: var(--text-muted); }
.info-content strong {
  display: block;
  color: var(--cream);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 2px;
}


/* ===== EVENEMENTS ===== */
.evenements {
  padding: var(--section-pad);
  background: var(--charcoal);
  position: relative;
  overflow: hidden;
}
.evenements::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(94, 34, 8, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.events-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  align-items: start;
}
.events-intro .divider { margin: 24px 0; }
.events-intro p {
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 32px;
}

.events-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.events-empty {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
  padding: 32px 0;
  font-style: italic;
}
/* Masquer les événements au-delà du 5e quand replié */
.events-list.events-collapsed .event-item:nth-child(n+6) {
  display: none;
}
/* Bouton "Voir tous / Réduire" */
.events-toggle {
  margin-top: 18px;
  background: transparent;
  border: 1px solid rgba(201, 160, 90, 0.4);
  color: var(--gold);
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 10px 24px;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
  align-self: flex-start;
}
.events-toggle:hover {
  background: rgba(201, 160, 90, 0.1);
  border-color: var(--gold);
  color: var(--gold-lt);
}
.event-item {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 28px 32px;
  background: var(--charcoal-lt);
  border: 1px solid rgba(201, 160, 90, 0.06);
  transition: var(--transition);
  cursor: default;
}
.event-item:hover {
  border-color: rgba(201, 160, 90, 0.25);
  background: rgba(94, 34, 8, 0.15);
}
.event-date {
  text-align: center;
  border-right: 1px solid rgba(201, 160, 90, 0.2);
  padding-right: 24px;
}
.event-date .day {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.event-date .month {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 4px;
}
.event-details h4 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: var(--cream);
  margin-bottom: 6px;
}
.event-details p {
  font-size: 0.82rem;
  color: var(--text-muted);
}
.event-location {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  white-space: nowrap;
  padding: 6px 14px;
  border: 1px solid rgba(201, 160, 90, 0.25);
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  padding: var(--section-pad);
  background: var(--burgundy-dk);
  position: relative;
  overflow: hidden;
  display: none;
}
.testimonials::before {
  content: '\201C';
  position: absolute;
  top: -40px;
  left: 40px;
  font-family: var(--font-heading);
  font-size: 20rem;
  color: rgba(201, 160, 90, 0.05);
  line-height: 1;
  pointer-events: none;
}

.testimonials-header {
  text-align: center;
  margin-bottom: 56px;
}
.testimonials-header .divider { margin: 20px auto; }

.grw-wrap {
  max-width: 960px;
  margin: 0 auto;
}

/* ===== VINÉLIA ===== */
.vinelia {
  padding: var(--section-pad);
  /* background: var(--charcoal); */
  background: var(--burgundy-dk);
}
.vinelia-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 64px;
  align-items: start;
}
.vinelia-byline {
  font-family: var(--font-body);
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 4px 0 20px;
}
.vinelia-features {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-top: 36px;
}
.vinelia-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}
.vinelia-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border: 1px solid rgba(201, 160, 90, 0.35);
  font-size: 0.82rem;
  font-family: var(--font-body);
  letter-spacing: 0.06em;
  color: var(--gold-lt);
  background: rgba(201, 160, 90, 0.07);
}
/* Price card */
.vinelia-card {
  position: sticky;
  top: 110px;
}
.vinelia-card-inner {
  background: var(--charcoal-lt);
  border: 1px solid rgba(201, 160, 90, 0.3);
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.vinelia-card-label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.vinelia-price {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  margin-bottom: 24px;
}
.vinelia-price-from {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-family: var(--font-body);
  letter-spacing: 0.06em;
}
.vinelia-price-amount {
  font-family: var(--font-heading);
  font-size: 3rem;
  color: var(--gold-lt);
  line-height: 1.1;
}
.vinelia-price-note {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-family: var(--font-body);
}
.vinelia-card-divider {
  width: 40px;
  height: 1px;
  background: rgba(201, 160, 90, 0.3);
  margin: 0 auto 24px;
}
.vinelia-card-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 28px;
}
.vinelia-btn {
  width: 100%;
  text-align: center;
  margin-bottom: 18px;
}
.vinelia-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.92rem;
  color: var(--cream);
  text-decoration: none;
  font-family: var(--font-body);
  letter-spacing: 0.04em;
  transition: color var(--transition);
  margin-bottom: 24px;
}
.vinelia-phone:hover { color: var(--gold); }
.vinelia-disclaimer {
  font-size: 0.72rem;
  color: var(--text-muted);
  font-style: italic;
  line-height: 1.5;
  border-top: 1px solid rgba(201, 160, 90, 0.15);
  padding-top: 16px;
  width: 100%;
}

@media (max-width: 900px) {
  .vinelia-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .vinelia-card {
    position: static;
  }
}

/* ===== CONTACT ===== */
.contact {
  padding: var(--section-pad);
  background: var(--charcoal-lt);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-intro .divider { margin: 24px 0; }
.contact-intro p {
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 40px;
}

.contact-locations {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 40px;
}
.contact-location {
  display: flex;
  gap: 20px;
  padding: 24px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(201, 160, 90, 0.1);
}
.contact-location .loc-icon {
  font-size: 1.4rem;
  color: var(--gold);
  min-width: 28px;
}
.contact-location h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--cream);
  margin-bottom: 6px;
}
.contact-location p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 0;
}

/* Honeypot : hors écran, invisible mais présent dans le DOM (les bots le voient) */
.form-honeypot {
  position: absolute;
  left: -9999px;
  top: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
}

.contact-form {
  background: var(--charcoal);
  padding: 48px;
  border: 1px solid rgba(201, 160, 90, 0.1);
}
.contact-form h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--cream);
  margin-bottom: 32px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(245, 232, 211, 0.12);
  color: var(--cream);
  padding: 14px 18px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: border-color var(--transition);
  outline: none;
  resize: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(184, 152, 120, 0.5);
}
.form-group select option {
  background: var(--charcoal);
  color: var(--cream);
}
.form-group textarea { height: 120px; }

.form-note {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.form-note span { color: var(--gold); }

/* ===== FOOTER ===== */
footer {
  background: #0e0806;
  padding: 64px 0 0;
  border-top: 1px solid rgba(201, 160, 90, 0.1);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand .logo-main {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--cream);
  margin-bottom: 4px;
}
.footer-brand .logo-sub {
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer-brand p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 300px;
}
.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}
.social-link {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(201, 160, 90, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: var(--transition);
}
.social-link:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.footer-col h4 {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer-col ul { list-style: none; }
.footer-col ul li {
  margin-bottom: 10px;
}
.footer-col ul li a {
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--cream); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p {
  font-size: 0.78rem;
  color: var(--text-muted);
}
.footer-legal {
  display: flex;
  gap: 24px;
}
.footer-legal a {
  font-size: 0.75rem;
  color: var(--text-muted);
  transition: color var(--transition);
}
.footer-legal a:hover { color: var(--cream); }

/* ===== ANIMATIONS ===== */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-up-delay-1 { transition-delay: 0.1s; }
.fade-up-delay-2 { transition-delay: 0.2s; }
.fade-up-delay-3 { transition-delay: 0.3s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .about-grid,
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-visual { max-width: 500px; margin: 0 auto; }
  .events-layout { grid-template-columns: 1fr; gap: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .appellations-grid { grid-template-columns: 1fr 1fr; }
}

/* Intermédiaire : liens plus compacts */
@media (min-width: 769px) and (max-width: 1100px) {
  .nav-logo img { height: 52px; width: 52px; }
  .nav-links { gap: 20px; }
  .nav-links a { font-size: 0.68rem; letter-spacing: 0.08em; }
  .nav-cta { padding: 8px 14px; }
}

@media (max-width: 768px) {
  :root { --section-pad: 72px 0; }

  /* Repasser en flex sur mobile (logo gauche, burger droite) */
  .nav-inner { display: flex; justify-content: space-between; }

  /* Texte du logo visible sur mobile (les liens sont cachés, on a la place) */
  .nav-logo .logo-text { display: flex; flex-direction: column; }

  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 90px; left: 0; right: 0;
    background: rgba(14, 8, 6, 0.98);
    padding: 32px 24px;
    gap: 24px;
    border-top: 1px solid rgba(201, 160, 90, 0.15);
    z-index: 999;
  }
  .nav-burger { display: flex; }

  .hero-brand-name { font-size: clamp(2.2rem, 9vw, 3.5rem); }
  .hero-logo-img { width: 160px; height: 160px; }
  .hero-logo-wrap { width: 160px; height: 160px; }
  
  .appellations-grid { grid-template-columns: 1fr; }
  .etab-grid { grid-template-columns: 1fr; }
.form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }

  .event-item { grid-template-columns: 64px 1fr; }
  .event-location { display: none; }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* Grille desktop : les liens sont toujours centrés par la colonne auto centrale */

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { justify-content: center; }
  .hero-logo-img { width: 140px; height: 140px; }
  .hero-logo-wrap { width: 140px; height: 140px; }
  .contact-form { padding: 32px 24px; }
  .etab-body { padding: 28px; }
}
