/* ============================================
   VELMOND SPIRITS — Vintage Premium Design
   Fond ivoire, relief marron, police marron/or
   ============================================ */

/* ---------- RESET & BASE ---------- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Velmond Core Colors */
  --ivory: #F7F3EB;
  --ivory-dark: #EDE8DB;
  --cream: #F4F0E8;
  --gold: #C8A46D;
  --gold-light: #D9C499;
  --gold-dark: #A8864D;
  --brown: #4B2E20;
  --brown-medium: #6B4A3A;
  --brown-light: #8B6A5A;
  --brown-warm: #5C3D2E;
  --black: #1E1C1A;
  --black-pure: #121212;
  --copper: #B8753A;
  --red-berry: #9C2A3A;

  /* Typography */
  --font-title: 'Playfair Display', 'Georgia', serif;
  --font-body: 'Cormorant Garamond', 'Georgia', serif;
  --font-cinzel: 'Cinzel', serif;
  --font-sans: 'Montserrat', 'Helvetica Neue', sans-serif;
  --font-poppins: 'Poppins', sans-serif;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--ivory);
  color: var(--brown);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Background grain texture via CSS */
body::before {
  content: '';
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 2;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

a {
  color: var(--gold-dark);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--copper);
}

em {
  font-style: italic;
  color: var(--gold-dark);
}

img {
  max-width: 100%;
  height: auto;
}

/* ---------- NAVBAR ---------- */
.navbar {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  transition: all 0.4s ease;
  background: transparent;
}

.navbar.scrolled {
  background: rgba(247, 243, 235, 0.97);
  backdrop-filter: blur(10px);
  padding: 12px 0;
  box-shadow: 0 2px 20px rgba(75, 46, 32, 0.08);
  border-bottom: 1px solid rgba(200, 164, 109, 0.2);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  gap: 2px;
}

.logo-text {
  font-family: var(--font-title);
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  color: var(--gold);
  transition: color 0.3s;
}

.navbar.scrolled .logo-text {
  color: var(--brown);
}

.logo-sub {
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.4em;
  color: var(--gold-light);
  font-style: italic;
  text-transform: uppercase;
}

.navbar.scrolled .logo-sub {
  color: var(--gold-dark);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 36px;
}

.nav-links a {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cream);
  text-decoration: none;
  position: relative;
  padding-bottom: 4px;
  transition: color 0.3s;
}

.navbar.scrolled .nav-links a {
  color: var(--brown);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  width: 0; height: 1px;
  background: var(--gold);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-links a:hover {
  color: var(--gold);
}

/* Mobile toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold);
  transition: all 0.3s;
}

.navbar.scrolled .nav-toggle span {
  background: var(--brown);
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(180deg,
    #1E1C1A 0%,
    #2a1f17 30%,
    #3a2a1d 60%,
    #4B2E20 100%
  );
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(200, 164, 109, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 50%, rgba(184, 117, 58, 0.06) 0%, transparent 60%),
    radial-gradient(ellipse at 50% 80%, rgba(200, 164, 109, 0.05) 0%, transparent 50%);
}

.hero-grain {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 300 300' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.7' numOctaves='5' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 24px;
}

.hero-ornament {
  font-size: 0.8rem;
  color: var(--gold);
  letter-spacing: 1em;
  margin-bottom: 40px;
  opacity: 0;
  animation: fadeInDown 1s ease 0.3s forwards;
}

.hero-title {
  margin-bottom: 24px;
}

.hero-title-line {
  display: block;
  font-family: var(--font-title);
  color: var(--cream);
  opacity: 0;
  animation: fadeInUp 1s ease 0.5s forwards;
}

.hero-title-line:first-child {
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 700;
  letter-spacing: 0.15em;
}

.hero-title-line.accent {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
  letter-spacing: 0.5em;
  animation-delay: 0.7s;
}

.hero-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 32px auto;
  opacity: 0;
  animation: fadeIn 1s ease 0.9s forwards;
}

.divider-line {
  display: block;
  width: 60px;
  height: 1px;
  background: var(--gold);
  opacity: 0.4;
}

.divider-diamond {
  color: var(--gold);
  font-size: 0.5rem;
}

.hero-subtitle {
  font-family: var(--font-body);
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  color: var(--cream);
  font-weight: 300;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
  opacity: 0;
  animation: fadeInUp 1s ease 1.1s forwards;
}

.hero-tagline {
  font-family: var(--font-body);
  font-size: clamp(0.9rem, 1.5vw, 1.1rem);
  color: var(--gold-light);
  font-style: italic;
  letter-spacing: 0.1em;
  margin-bottom: 48px;
  opacity: 0;
  animation: fadeInUp 1s ease 1.3s forwards;
}

.hero-cta {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 16px 40px;
  transition: all 0.4s ease;
  opacity: 0;
  animation: fadeInUp 1s ease 1.5s forwards;
}

.hero-cta:hover {
  background: var(--gold);
  color: var(--black);
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
  opacity: 0;
  animation: fadeIn 1s ease 2s forwards;
}

.hero-scroll span {
  font-family: var(--font-sans);
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-light);
  opacity: 0.6;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: var(--gold);
  opacity: 0.3;
  animation: scrollPulse 2s ease infinite;
}

/* ---------- SECTIONS COMMON ---------- */
.section {
  padding: 120px 0;
  position: relative;
}

.section-badge {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-dark);
  border: 1px solid var(--gold);
  padding: 6px 20px;
  margin-bottom: 24px;
  border-radius: 2px;
}

.section-badge.light {
  color: var(--gold);
  border-color: rgba(200, 164, 109, 0.4);
}

.section-title {
  font-family: var(--font-title);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  color: var(--brown);
  line-height: 1.3;
  margin-bottom: 24px;
}

.section-title.light {
  color: var(--cream);
}

.section-title em {
  font-style: italic;
  color: var(--gold-dark);
}

.section-title.light em {
  color: var(--gold);
}

.section-intro {
  font-family: var(--font-body);
  font-size: 1.15rem;
  color: var(--brown-medium);
  max-width: 700px;
  margin: 0 auto 60px;
  text-align: center;
  line-height: 1.8;
}

/* ---------- MANIFESTE ---------- */
.manifeste {
  text-align: center;
  background: var(--ivory);
}

.manifeste-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 60px;
}

.ornament-line {
  display: block;
  width: 80px;
  height: 1px;
  background: var(--gold);
  opacity: 0.3;
}

.ornament-icon {
  color: var(--gold);
  font-size: 1rem;
  opacity: 0.5;
}

.manifeste-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  text-align: left;
}

.manifeste-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
}

.manifeste-lead {
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 1.8;
  color: var(--brown);
}

.manifeste-text p {
  font-size: 1.1rem;
  color: var(--brown-medium);
  line-height: 1.9;
}

.manifeste-values {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.value-card {
  padding: 32px;
  background: var(--cream);
  border: 1px solid rgba(200, 164, 109, 0.15);
  border-radius: 4px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.value-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 100%;
  background: var(--gold);
  opacity: 0;
  transition: opacity 0.4s;
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(75, 46, 32, 0.08);
}

.value-card:hover::before {
  opacity: 1;
}

.value-number {
  font-family: var(--font-title);
  font-size: 0.9rem;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 12px;
  letter-spacing: 0.1em;
}

.value-card h3 {
  font-family: var(--font-title);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--brown);
  margin-bottom: 8px;
}

.value-card p {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--brown-medium);
  line-height: 1.7;
}

/* ---------- LES MAISONS ---------- */
.maisons-section {
  background: var(--ivory-dark);
  text-align: center;
}

.maisons-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.maison-card {
  perspective: 1000px;
  cursor: pointer;
}

.maison-card-inner {
  background: var(--ivory);
  border: 1px solid rgba(200, 164, 109, 0.15);
  border-radius: 6px;
  overflow: hidden;
  transition: all 0.5s ease;
  cursor: pointer;
}

.maison-card-inner:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(75, 46, 32, 0.12);
  border-color: var(--gold);
}

.maison-visual {
  position: relative;
  height: 220px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.maison-bg {
  position: absolute;
  inset: 0;
  transition: transform 0.6s ease;
}

.maison-card-inner:hover .maison-bg {
  transform: scale(1.05);
}

.maison-icon {
  position: relative;
  z-index: 2;
  font-size: 3rem;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.3));
}

.maison-info {
  padding: 28px 24px;
  text-align: left;
}

.maison-badge {
  font-family: var(--font-sans);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 12px;
}

.maison-name {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--brown);
  margin-bottom: 12px;
  line-height: 1.3;
}

.maison-desc {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--brown-medium);
  line-height: 1.7;
  margin-bottom: 16px;
}

.maison-colors {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
}

.color-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 1px solid rgba(200, 164, 109, 0.3);
  transition: transform 0.3s;
}

.color-dot:hover {
  transform: scale(1.3);
}

.maison-link {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-dark);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: all 0.3s;
}

.maison-link:hover {
  color: var(--copper);
  gap: 8px;
}

/* ---------- SAVOIR-FAIRE ---------- */
.savoir-faire {
  background: linear-gradient(180deg,
    #2a1f17 0%,
    #1E1C1A 50%,
    #121212 100%
  );
  text-align: center;
  position: relative;
  overflow: hidden;
}

.sf-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 60%, rgba(200, 164, 109, 0.06) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 40%, rgba(184, 117, 58, 0.04) 0%, transparent 50%);
}

.sf-content {
  position: relative;
  z-index: 2;
}

.sf-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-top: 60px;
}

.sf-item {
  padding: 40px 24px;
  border: 1px solid rgba(200, 164, 109, 0.1);
  border-radius: 4px;
  transition: all 0.4s ease;
  background: rgba(255, 255, 255, 0.02);
}

.sf-item:hover {
  border-color: rgba(200, 164, 109, 0.3);
  background: rgba(200, 164, 109, 0.05);
  transform: translateY(-4px);
}

.sf-icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.sf-item h3 {
  font-family: var(--font-title);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 12px;
}

.sf-item p {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: rgba(244, 240, 232, 0.7);
  line-height: 1.7;
}

.sf-item p em {
  color: var(--gold);
}

/* ---------- COLLECTION / PRODUCTS ---------- */
.collection {
  text-align: center;
  background: var(--ivory);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-bottom: 48px;
}

.product-card {
  background: var(--cream);
  border: 1px solid rgba(200, 164, 109, 0.12);
  border-radius: 6px;
  overflow: hidden;
  transition: all 0.4s ease;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 50px rgba(75, 46, 32, 0.1);
  border-color: var(--gold);
}

.product-visual {
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.product-emoji {
  font-size: 4rem;
  transition: transform 0.4s ease;
}

.product-card:hover .product-emoji {
  transform: scale(1.15) rotate(-5deg);
}

.product-tag {
  position: absolute;
  top: 16px; right: 16px;
  font-family: var(--font-sans);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--brown);
  background: rgba(247, 243, 235, 0.9);
  padding: 4px 12px;
  border-radius: 2px;
}

.product-tag.light {
  color: var(--cream);
  background: rgba(30, 28, 26, 0.6);
}

.product-info {
  padding: 24px 20px;
  text-align: left;
}

.product-info h3 {
  font-family: var(--font-title);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--brown);
  margin-bottom: 4px;
}

.product-brand {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 8px;
}

.product-notes {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--brown-medium);
  margin-bottom: 16px;
  font-style: italic;
}

.product-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.product-price {
  font-family: var(--font-title);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--brown);
}

.product-btn {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-dark);
  border: 1px solid var(--gold);
  padding: 8px 20px;
  border-radius: 2px;
  transition: all 0.3s;
}

.product-btn:hover {
  background: var(--gold);
  color: var(--black);
}

/* Rupture de stock */
.product-card.rupture {
  opacity: 0.55;
  pointer-events: none;
  position: relative;
}
.product-card.rupture .product-visual::after {
  content: 'Rupture de stock';
  position: absolute;
  top: 12px;
  left: 12px;
  background: #8B4513;
  color: #fff;
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 2px;
  z-index: 5;
}
.product-card.rupture .product-btn {
  background: #ccc;
  color: #999;
  pointer-events: none;
}
.product-card.rupture .product-price {
  text-decoration: line-through;
  opacity: 0.5;
}

/* --- Product Page Visual Disclaimer --- */
.product-visual-note {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.55rem;
  color: #A8864D;
  text-align: center;
  letter-spacing: 0.08em;
  font-style: italic;
  opacity: 0.55;
  margin: 1.5rem 0 0;
}

/* --- Product Page Rupture Badge --- */
.product-rupture-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: #8B4513;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 3px;
  z-index: 5;
  box-shadow: 0 4px 12px rgba(75, 46, 32, 0.3);
}

.collection-cta {
  text-align: center;
}

/* ---------- BUTTONS ---------- */
.btn-primary {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ivory);
  background: var(--brown);
  border: 2px solid var(--brown);
  padding: 16px 44px;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.4s ease;
}

.btn-primary:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  color: var(--ivory);
}

/* ---------- QUOTE BANNER ---------- */
.quote-banner {
  background: var(--cream);
  padding: 100px 0;
  text-align: center;
  border-top: 1px solid rgba(200, 164, 109, 0.15);
  border-bottom: 1px solid rgba(200, 164, 109, 0.15);
}

.big-quote {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.quote-mark {
  font-family: var(--font-title);
  font-size: 6rem;
  color: var(--gold);
  opacity: 0.2;
  line-height: 0;
  position: absolute;
  top: -20px;
  left: -20px;
}

.big-quote p {
  font-family: var(--font-body);
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-weight: 400;
  color: var(--brown);
  line-height: 1.8;
  font-style: italic;
}

.big-quote footer {
  margin-top: 24px;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-dark);
}

/* ---------- NEWSLETTER ---------- */
.newsletter {
  background: var(--ivory);
}

.newsletter-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.newsletter-content p {
  font-size: 1.1rem;
  color: var(--brown-medium);
  line-height: 1.8;
  margin-top: 16px;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-group input {
  width: 100%;
  padding: 16px 20px;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--brown);
  background: var(--cream);
  border: 1px solid rgba(200, 164, 109, 0.25);
  border-radius: 3px;
  outline: none;
  transition: all 0.3s;
}

.form-group input::placeholder {
  color: var(--brown-light);
  font-style: italic;
}

.form-group input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200, 164, 109, 0.1);
}

.form-legal {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  color: var(--brown-light);
  margin-top: 8px;
}

/* ---------- FOOTER ---------- */
.footer {
  background: var(--black);
  color: var(--cream);
  padding: 80px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-logo {
  font-family: var(--font-title);
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  color: var(--gold);
  margin-bottom: 4px;
}

.footer-tagline {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--gold-light);
  font-style: italic;
  letter-spacing: 0.2em;
  margin-bottom: 16px;
}

.footer-desc {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: rgba(244, 240, 232, 0.6);
  line-height: 1.7;
  margin-bottom: 24px;
}

.footer-social {
  display: flex;
  gap: 16px;
}

.footer-social a {
  color: var(--gold);
  opacity: 0.7;
  transition: all 0.3s;
}

.footer-social a:hover {
  opacity: 1;
  transform: translateY(-2px);
}

.footer-links h4 {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer-links ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: rgba(244, 240, 232, 0.5);
  transition: all 0.3s;
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-bottom {
  text-align: center;
  padding-top: 40px;
}

.footer-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 24px;
}

.footer-divider .ornament-line {
  background: rgba(200, 164, 109, 0.2);
  width: 120px;
}

.footer-divider .ornament-icon {
  color: var(--gold);
  opacity: 0.3;
}

.footer-bottom p {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  color: rgba(244, 240, 232, 0.4);
  letter-spacing: 0.1em;
}

.footer-warning {
  margin-top: 12px;
  font-style: italic;
  opacity: 0.5;
}

/* ---------- AGE GATE ---------- */
.age-gate {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(18, 18, 18, 0.97);
  backdrop-filter: blur(20px);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease;
  overflow-y: auto;
  padding: 20px 0;
}

.age-gate.hidden {
  opacity: 0;
  pointer-events: none;
}

.age-gate-inner {
  text-align: center;
  max-width: 480px;
  padding: 60px 40px;
}

.age-gate-ornament {
  color: var(--gold);
  font-size: 1.2rem;
  margin-bottom: 24px;
  opacity: 0.5;
}

.age-gate-inner h2 {
  font-family: var(--font-title);
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  color: var(--gold);
  margin-bottom: 4px;
}

.age-gate-sub {
  font-family: var(--font-body);
  font-size: 1.1rem;
  color: var(--gold-light);
  letter-spacing: 0.3em;
  font-style: italic;
  margin-bottom: 24px;
}

.age-gate-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 32px;
}

.age-gate-divider .ornament-line {
  width: 60px;
  background: rgba(200, 164, 109, 0.3);
}

.age-gate-divider .ornament-icon {
  color: var(--gold);
  opacity: 0.4;
}

.age-gate-question {
  font-family: var(--font-body);
  font-size: 1.2rem;
  color: var(--cream);
  line-height: 1.7;
  margin-bottom: 36px;
}

.age-gate-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-bottom: 32px;
}

.age-btn {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 16px 36px;
  border: 1px solid var(--gold);
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.3s;
}

.age-yes {
  background: var(--gold);
  color: var(--black);
}

.age-yes:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
}

.age-no {
  background: transparent;
  color: var(--gold);
}

.age-no:hover {
  background: rgba(200, 164, 109, 0.1);
}

.age-gate-legal {
  font-family: var(--font-sans);
  font-size: 0.6rem;
  color: rgba(244, 240, 232, 0.3);
  letter-spacing: 0.1em;
}

/* ---------- GATE SPLIT SCREEN (B2B/B2C) ---------- */
.gate-split {
  display: flex;
  width: 100%;
  max-width: 100%;
  min-height: 100vh;
  position: relative;
  animation: fadeInUp 0.6s ease;
}

.gate-half {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: var(--cream);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: flex 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gate-half::before {
  content: '';
  position: absolute;
  inset: 0;
  transition: opacity 0.5s;
}

.gate-half--pro::before {
  background: linear-gradient(135deg, rgba(200, 164, 109, 0.1) 0%, rgba(10, 8, 5, 0.95) 100%);
}

.gate-half--btc::before {
  background: linear-gradient(225deg, rgba(200, 164, 109, 0.1) 0%, rgba(10, 8, 5, 0.95) 100%);
}

.gate-half::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(200, 164, 109, 0.15) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.5s;
}

.gate-half:hover {
  flex: 1.2;
}

.gate-half:hover::after {
  opacity: 1;
}

.gate-half:hover .gate-half__cta {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}

.gate-half__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 40px 32px;
}

.gate-half__tag {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(200, 164, 109, 0.35);
  padding: 6px 18px;
  border-radius: 20px;
  margin-bottom: 20px;
}

.gate-half__title {
  font-family: var(--font-cinzel);
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--cream);
  margin-bottom: 10px;
}

.gate-half__desc {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: rgba(244, 240, 232, 0.5);
  letter-spacing: 0.05em;
  margin-bottom: 28px;
}

.gate-half__cta {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(200, 164, 109, 0.45);
  padding: 14px 36px;
  border-radius: 2px;
  transition: all 0.35s;
}

/* Center divider with logo */
.gate-split__center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  pointer-events: none;
}

.gate-split__logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--black);
  padding: 20px 18px 14px;
  border-radius: 4px;
}

.gate-split__diamond {
  font-size: 0.7rem;
  color: var(--gold);
  margin-bottom: 6px;
}

.gate-split__brand {
  font-family: var(--font-title);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.35em;
  color: var(--gold);
}

.gate-split__sub {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-style: italic;
  color: rgba(200, 164, 109, 0.6);
  letter-spacing: 0.15em;
}

.gate-split__or {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-style: italic;
  color: rgba(200, 164, 109, 0.4);
  background: var(--black);
  padding: 6px 12px;
  border-radius: 20px;
  margin-top: 4px;
}

/* Vertical separator line */
.gate-split::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  background: linear-gradient(180deg, transparent 5%, rgba(200, 164, 109, 0.2) 30%, rgba(200, 164, 109, 0.2) 70%, transparent 95%);
  z-index: 5;
  pointer-events: none;
}

.gate-split__legal {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  width: 100%;
  text-align: center;
}

@media (max-width: 680px) {
  .gate-split {
    flex-direction: column;
    min-height: 100vh;
  }
  .gate-half {
    flex: 1;
    min-height: 0;
  }
  .gate-half:hover {
    flex: 1;
  }
  .gate-half__title {
    font-size: 1.6rem;
  }
  .gate-half__content {
    padding: 28px 24px;
  }
  .gate-split__center {
    flex-direction: row;
    gap: 10px;
  }
  .gate-split__logo {
    padding: 10px 14px 8px;
  }
  .gate-split__brand {
    font-size: 0.75rem;
  }
  .gate-split__or {
    display: none;
  }
  .gate-split::after {
    top: 50%;
    bottom: auto;
    left: 0;
    right: 0;
    width: auto;
    height: 1px;
    background: linear-gradient(90deg, transparent 5%, rgba(200, 164, 109, 0.2) 30%, rgba(200, 164, 109, 0.2) 70%, transparent 95%);
  }
  .gate-split__legal {
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    padding: 0 20px;
    font-size: 0.55rem;
  }
}

/* ---------- ANIMATIONS ---------- */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.2; transform: scaleY(1); }
  50% { opacity: 0.5; transform: scaleY(1.2); }
}

/* Scroll reveal animation class */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .maisons-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .sf-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 80px 0;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(247, 243, 235, 0.98);
    backdrop-filter: blur(10px);
    flex-direction: column;
    padding: 24px;
    gap: 0;
    border-bottom: 1px solid rgba(200, 164, 109, 0.2);
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(200, 164, 109, 0.1);
  }

  .nav-links a {
    color: var(--brown) !important;
  }

  .nav-toggle {
    display: flex;
  }

  .manifeste-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .maisons-grid {
    grid-template-columns: 1fr;
  }

  .sf-grid {
    grid-template-columns: 1fr;
  }

  .products-grid {
    grid-template-columns: 1fr;
  }

  .newsletter-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .age-gate-buttons {
    flex-direction: column;
  }

  .hero-title-line:first-child {
    letter-spacing: 0.08em;
  }
}

@media (max-width: 480px) {
  .hero-cta {
    padding: 14px 28px;
    font-size: 0.7rem;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .age-gate-inner {
    padding: 40px 24px;
  }

  .age-gate-inner h2 {
    font-size: 1.8rem;
    letter-spacing: 0.2em;
  }
}

/* ============================================
   WHISKY EXPERIENCE — Three.js Section
   ============================================ */

.whisky-experience {
  position: relative;
  height: 400vh;
}

.whisky-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #000000;
  z-index: 3;
}

.whisky-layout {
  display: flex;
  align-items: center;
  gap: 4rem;
  max-width: 1200px;
  width: 100%;
  padding: 0 2rem;
}

/* ---- Text Side ---- */
.whisky-text-side {
  flex: 1;
  position: relative;
  min-height: 320px;
}

.whisky-header {
  margin-bottom: 2rem;
}

.whisky-badge {
  display: inline-block;
  font-family: var(--font-sans);
  text-transform: uppercase;
  font-size: 0.7rem;
  letter-spacing: 4px;
  color: var(--gold);
  border: 1px solid rgba(200, 164, 109, 0.3);
  padding: 6px 18px;
  margin-bottom: 1rem;
}

.whisky-title {
  font-family: var(--font-title);
  color: #F7F3EB;
  font-size: 2.6rem;
  font-weight: 400;
  line-height: 1.2;
}

.whisky-title em {
  color: var(--gold);
  font-style: italic;
}

.whisky-steps-wrap {
  position: relative;
  min-height: 160px;
  margin-top: 1.5rem;
}

.whisky-step {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  transform: translateY(25px);
  opacity: 0;
  transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}

.whisky-step.active {
  opacity: 1;
  transform: translateY(0);
}

.whisky-step-num {
  display: block;
  font-family: var(--font-cinzel);
  color: var(--gold);
  font-size: 0.8rem;
  letter-spacing: 4px;
  margin-bottom: 0.6rem;
  opacity: 0.7;
}

.whisky-step h3 {
  font-family: var(--font-title);
  color: #F7F3EB;
  font-size: 2rem;
  font-weight: 400;
  margin-bottom: 0.6rem;
}

.whisky-step h3 em {
  color: var(--gold);
  font-style: italic;
}

.whisky-step p {
  color: rgba(247, 243, 235, 0.65);
  font-family: var(--font-body);
  font-size: 1.15rem;
  line-height: 1.7;
  max-width: 380px;
}

/* ---- Glass Side ---- */
.whisky-canvas-side {
  flex: 1;
  position: relative;
  height: 70vh;
  max-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.whisky-glass-wrap {
  position: relative;
  width: 100%;
  height: 100%;
}

.whisky-glass-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  user-select: none;
  pointer-events: none;
  /* no blend mode needed — section bg matches image bg */
}

.whisky-glass-empty {
  z-index: 1;
}

.whisky-glass-filled {
  z-index: 2;
  clip-path: inset(75% 0 0 0);
  will-change: clip-path;
}

.whisky-glass-glow {
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0;
  background: radial-gradient(ellipse at 50% 65%, rgba(212, 150, 58, 0.25) 0%, transparent 60%);
  filter: blur(40px);
  transition: opacity 0.3s ease;
}

.whisky-fill-label {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-cinzel);
  color: var(--gold);
  font-size: 2rem;
  letter-spacing: 3px;
  opacity: 0.7;
  z-index: 5;
}

.fill-symbol {
  font-size: 1rem;
  margin-left: 2px;
  opacity: 0.6;
}

/* ---- Scroll Hint ---- */
.whisky-scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: rgba(247, 243, 235, 0.4);
  font-family: var(--font-sans);
  font-size: 0.7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.whisky-scroll-arrow {
  margin-top: 0.5rem;
  font-size: 1rem;
  animation: whiskyBounce 2s ease-in-out infinite;
}

@keyframes whiskyBounce {
  0%, 100% { transform: translateY(0); opacity: 0.4; }
  50% { transform: translateY(6px); opacity: 0.8; }
}

/* ---- Responsive ---- */
@media (max-width: 900px) {
  .whisky-layout {
    flex-direction: column;
    gap: 1.5rem;
    padding: 0 1.5rem;
  }

  .whisky-text-side {
    min-height: 200px;
    text-align: center;
  }

  .whisky-steps-wrap {
    min-height: 200px;
  }

  .whisky-step p {
    max-width: 100%;
    margin: 0 auto;
    font-size: 1.05rem;
    padding: 0 0.5rem;
  }

  .whisky-canvas-side {
    flex: none;
    height: 40vh;
    max-height: 350px;
    width: 100%;
  }

  .whisky-title {
    font-size: 2rem;
  }

  .whisky-step h3 {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .whisky-experience {
    height: 350vh;
  }

  .whisky-canvas-side {
    height: 38vh;
  }

  .whisky-title {
    font-size: 1.7rem;
  }

  .whisky-fill-label {
    font-size: 1.4rem;
  }

  .whisky-steps-wrap {
    min-height: 220px;
  }

  .whisky-step p {
    font-size: 0.95rem;
    line-height: 1.6;
    padding: 0 0.25rem;
  }

  .whisky-step h3 {
    font-size: 1.3rem;
  }
}
