/* ============================================================
   NexTerra Wine Co. — Deep Wine Luxury Design System
   Tool recommended: Playfair Display + Lato (correct — kept)
   Palette override: Rose Beauty → Deep Burgundy & Gold
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,900;1,400;1,600&family=Lato:wght@300;400;700&family=Cormorant+Garant:wght@300;400;600&display=swap');

:root {
  /* Core Wine Palette */
  --wine-dark:    #0D0508;
  --wine:         #3D0C1C;
  --wine-mid:     #5C1530;
  --claret:       #8B1F3F;
  --gold:         #C4903A;
  --gold-light:   #E2B55A;
  --gold-bright:  #F5D080;
  --cream:        #FAF2E8;
  --parchment:    #F0E6D3;
  --text:         #F0E8DC;
  --text-muted:   #B8A090;
  --text-dim:     #7A6455;

  /* Surface Scale */
  --surface:       #160A0E;
  --surface-mid:   #200E14;
  --surface-light: #2E1520;
  --surface-card:  #241019;

  /* Gradients */
  --grad-wine:    linear-gradient(135deg, #3D0C1C 0%, #5C1530 100%);
  --grad-gold:    linear-gradient(135deg, #9A6820 0%, #C4903A 40%, #E2B55A 70%, #9A6820 100%);
  --grad-dark:    linear-gradient(180deg, #0D0508 0%, #200E14 100%);
  --grad-hero:    linear-gradient(135deg, rgba(13,5,8,0.88) 0%, rgba(61,12,28,0.70) 100%);
  --grad-overlay: linear-gradient(to top, rgba(13,5,8,0.95) 0%, rgba(13,5,8,0.2) 60%);

  /* Metallic Gold */
  --metallic-gold: linear-gradient(135deg, #8B6010 0%, #E2B55A 40%, #C4903A 60%, #8B6010 100%);

  /* Spacing */
  --space-xs:  0.5rem;
  --space-sm:  1rem;
  --space-md:  1.5rem;
  --space-lg:  2.5rem;
  --space-xl:  4rem;
  --space-2xl: 6rem;
  --space-3xl: 9rem;

  /* Typography */
  --font-display: 'Playfair Display', 'Georgia', serif;
  --font-accent:  'Cormorant Garant', serif;
  --font-body:    'Lato', sans-serif;

  /* Borders */
  --border:       1px solid rgba(196,144,58,0.15);
  --border-gold:  1px solid rgba(196,144,58,0.4);
  --border-glow:  1px solid rgba(196,144,58,0.8);

  /* Shadows */
  --shadow-sm:    0 2px 8px rgba(0,0,0,0.4);
  --shadow-md:    0 8px 32px rgba(0,0,0,0.5);
  --shadow-lg:    0 24px 64px rgba(0,0,0,0.6);
  --shadow-gold:  0 0 40px rgba(196,144,58,0.2);
  --glow-gold:    0 0 60px rgba(196,144,58,0.15);

  /* Transitions */
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out: cubic-bezier(0.25, 0.46, 0.45, 0.94);

  /* Z-index */
  --z-topbar: 100;
  --z-nav:    90;
  --z-sticky: 80;
  --z-modal:  200;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--surface);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* ── Typography ── */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.15;
  font-weight: 700;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.section-label::before, .section-label::after {
  content: '';
  display: block;
  width: 30px;
  height: 1px;
  background: var(--gold);
  opacity: 0.6;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  color: var(--cream);
  margin-bottom: 1rem;
  font-weight: 700;
}
.section-title em {
  font-style: italic;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-title span {
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-sub {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 580px;
  line-height: 1.8;
  font-weight: 300;
}

/* ── Container ── */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ── Gold Divider ── */
.gold-divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 1.5rem 0;
}
.gold-divider::before, .gold-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(196,144,58,0.5), transparent);
}
.gold-divider-icon {
  color: var(--gold);
  opacity: 0.7;
}
.gold-divider-icon svg { width: 16px; height: 16px; }

/* ── Top Bar ── */
.topbar {
  background: var(--wine-dark);
  border-bottom: 1px solid rgba(196,144,58,0.15);
  padding: 0.5rem 0;
  position: relative;
  z-index: var(--z-topbar);
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.topbar-contact {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.topbar-contact a {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  transition: color 0.2s;
}
.topbar-contact a:hover { color: var(--gold-light); }
.topbar-contact svg { width: 13px; height: 13px; flex-shrink: 0; }
.topbar-social {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.topbar-social a {
  width: 26px; height: 26px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(196,144,58,0.2);
  color: var(--text-muted);
  transition: all 0.2s;
}
.topbar-social a:hover { border-color: var(--gold); color: var(--gold); }
.topbar-social svg { width: 12px; height: 12px; }

/* ── Navbar ── */
.navbar {
  position: sticky;
  top: 0;
  z-index: var(--z-nav);
  background: rgba(22,10,14,0.96);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: var(--border);
  transition: all 0.4s var(--ease);
}
.navbar.scrolled {
  background: rgba(13,5,8,0.99);
  border-bottom-color: rgba(196,144,58,0.35);
  box-shadow: 0 4px 40px rgba(0,0,0,0.6);
}
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 2rem;
  max-width: 1280px;
  margin: 0 auto;
}
.nav-logo, .nav-logo img {
  height: 46px;
  width: auto;
  object-fit: contain;
  filter: brightness(1.05);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.nav-links a {
  padding: 0.5rem 1.1rem;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  border-radius: 2px;
  transition: all 0.25s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 1.1rem; right: 1.1rem;
  height: 1px;
  background: var(--grad-gold);
  transform: scaleX(0);
  transition: transform 0.3s var(--ease);
}
.nav-links a:hover, .nav-links a.active { color: var(--cream); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-cta {
  padding: 0.6rem 1.5rem !important;
  background: transparent;
  border: 1px solid rgba(196,144,58,0.6) !important;
  color: var(--gold) !important;
  letter-spacing: 0.12em !important;
  border-radius: 2px !important;
  transition: all 0.3s !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover {
  background: rgba(196,144,58,0.1) !important;
  border-color: var(--gold) !important;
  color: var(--gold-light) !important;
  box-shadow: var(--shadow-gold) !important;
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  height: 1px;
  background: var(--text-muted);
  border-radius: 1px;
  transition: all 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--wine-dark);
  border-top: var(--border-gold);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease);
}
.mobile-menu.open { max-height: 400px; }
.mobile-menu a {
  display: block;
  padding: 0.9rem 2rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  border-bottom: var(--border);
  transition: all 0.2s;
}
.mobile-menu a:hover { color: var(--gold-light); padding-left: 2.5rem; }

/* ── Hero ── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 680px;
  overflow: hidden;
}
.hero-slider {
  position: absolute;
  inset: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.5s ease;
}
.hero-slide.active { opacity: 1; }
.hero-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--grad-hero);
}
.hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 2rem;
  max-width: 1280px;
  margin: 0 auto;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.hero-eyebrow::before { content: ''; display: block; width: 50px; height: 1px; background: var(--gold); opacity: 0.6; }
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 8vw, 7rem);
  font-weight: 700;
  color: var(--cream);
  line-height: 1.0;
  margin-bottom: 0.5rem;
  max-width: 820px;
}
.hero-title em {
  font-style: italic;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 400;
}
.hero-sub {
  font-family: var(--font-accent);
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-weight: 300;
  font-style: italic;
  color: rgba(240,232,220,0.75);
  margin-bottom: 2.5rem;
  letter-spacing: 0.05em;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.hero-stats {
  position: absolute;
  bottom: 3rem;
  right: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: flex-end;
}
.hero-stat-item {
  text-align: right;
}
.hero-stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.hero-stat-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.hero-dots {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
}
.hero-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: rgba(240,232,220,0.3);
  cursor: pointer;
  transition: all 0.3s;
  border: 1px solid transparent;
}
.hero-dot.active { background: var(--gold); border-color: var(--gold); width: 22px; border-radius: 3px; }

/* ── Buttons ── */
.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.95rem 2.2rem;
  background: var(--grad-gold);
  color: var(--wine-dark);
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: all 0.3s var(--ease);
  box-shadow: var(--shadow-gold);
  cursor: pointer;
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(196,144,58,0.4); }
.btn-gold svg { width: 16px; height: 16px; }

.btn-outline-gold {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.95rem 2.2rem;
  background: transparent;
  color: var(--gold);
  border: 1px solid rgba(196,144,58,0.5);
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: all 0.3s var(--ease);
  cursor: pointer;
}
.btn-outline-gold:hover { border-color: var(--gold); background: rgba(196,144,58,0.08); color: var(--gold-light); }

/* ── Stats Strip ── */
.stats-strip {
  background: var(--wine-dark);
  border-top: var(--border-gold);
  border-bottom: var(--border-gold);
  padding: 2rem 0;
}
.stats-inner {
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 2rem;
}
.stat-item { text-align: center; }
.stat-num {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 700;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.stat-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 0.35rem;
}
.stat-divider { width: 1px; height: 50px; background: rgba(196,144,58,0.2); }

/* ── Marquee ── */
.marquee-strip {
  background: var(--surface-mid);
  border-bottom: var(--border);
  padding: 0.9rem 0;
  overflow: hidden;
}
.marquee-track {
  display: flex;
  gap: 4rem;
  animation: wineScroll 35s linear infinite;
  white-space: nowrap;
}
.marquee-track:hover { animation-play-state: paused; }
.marquee-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-dim);
  white-space: nowrap;
}
.marquee-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--gold); opacity: 0.6; }
@keyframes wineScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ── About/Story Split ── */
.story-split { background: var(--surface); }
.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.split-media { position: relative; }
.split-img-wrap {
  position: relative;
  overflow: hidden;
}
.split-img-wrap img {
  width: 100%; height: 540px;
  object-fit: cover;
  transition: transform 0.9s var(--ease);
}
.split-img-wrap:hover img { transform: scale(1.04); }
.split-img-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 60%, rgba(13,5,8,0.7));
  z-index: 1;
}
.split-img-overlay {
  position: absolute;
  bottom: 0;
  right: -2rem;
  width: 200px; height: 180px;
  overflow: hidden;
  border: 3px solid var(--surface);
  z-index: 2;
  box-shadow: var(--shadow-lg);
}
.split-img-overlay img { width: 100%; height: 100%; object-fit: cover; }
.split-badge {
  position: absolute;
  top: 2rem;
  left: 2rem;
  z-index: 3;
  background: rgba(13,5,8,0.85);
  border: var(--border-gold);
  padding: 1rem 1.25rem;
  backdrop-filter: blur(8px);
  text-align: center;
}
.split-badge-year {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.split-badge-text {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 0.2rem;
}
.split-body { padding: 1rem 0; }
.split-body .section-sub { margin-bottom: 1.5rem; }

.check-list { display: flex; flex-direction: column; gap: 0.75rem; margin: 1.5rem 0 2rem; }
.check-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}
.check-item svg { width: 18px; height: 18px; color: var(--gold); flex-shrink: 0; margin-top: 0.1rem; }

/* ── Services/Capabilities Grid ── */
.capabilities { background: var(--surface-mid); }
.caps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(196,144,58,0.1);
  border: var(--border-gold);
}
.cap-card {
  background: var(--surface-card);
  padding: 2.5rem 2rem;
  position: relative;
  overflow: hidden;
  transition: all 0.4s var(--ease);
  cursor: pointer;
}
.cap-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--grad-gold);
  transform: scaleX(0);
  transition: transform 0.4s var(--ease);
}
.cap-card:hover { background: var(--surface-light); }
.cap-card:hover::before { transform: scaleX(1); }
.cap-icon {
  width: 52px; height: 52px;
  margin-bottom: 1.5rem;
}
.cap-icon img { width: 100%; height: 100%; object-fit: contain; filter: sepia(1) saturate(2) hue-rotate(10deg) brightness(1.2); }
.cap-num {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 700;
  color: rgba(196,144,58,0.08);
  line-height: 1;
  position: absolute;
  top: 1rem;
  right: 1.5rem;
}
.cap-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 0.75rem;
}
.cap-desc {
  font-size: 0.87rem;
  color: var(--text-muted);
  line-height: 1.75;
  font-weight: 300;
}

/* ── Wine Portfolio Grid ── */
.wine-portfolio { background: var(--surface); }
.wines-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.wine-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/5;
  cursor: pointer;
}
.wine-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
  filter: brightness(0.7) saturate(0.9);
}
.wine-card:hover img { transform: scale(1.08); filter: brightness(0.85) saturate(1.1); }
.wine-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,5,8,0.97) 0%, rgba(13,5,8,0.2) 55%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
  transition: all 0.4s;
}
.wine-card:hover .wine-overlay {
  background: linear-gradient(to top, rgba(61,12,28,0.97) 0%, rgba(61,12,28,0.3) 50%);
}
.wine-region {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.4rem;
}
.wine-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  font-style: italic;
  color: var(--cream);
  margin-bottom: 0.3rem;
  line-height: 1.2;
}
.wine-type {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
  font-weight: 300;
}
.wine-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.3s;
}
.wine-link svg { width: 14px; height: 14px; }
.wine-card:hover .wine-link { opacity: 1; transform: translateY(0); }

/* ── Global Sourcing ── */
.sourcing { background: var(--surface-mid); }
.sourcing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.regions-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin: 1.5rem 0 2rem;
}
.region-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  background: rgba(196,144,58,0.04);
  border: var(--border);
  border-radius: 2px;
  font-size: 0.82rem;
  color: var(--text-muted);
  transition: all 0.2s;
}
.region-item:hover { border-color: rgba(196,144,58,0.4); color: var(--cream); }
.region-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }
.sourcing-img {
  position: relative;
}
.sourcing-img img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}
.sourcing-img-sub {
  position: absolute;
  bottom: -2rem;
  left: -2rem;
  width: 200px; height: 160px;
  object-fit: cover;
  border: 3px solid var(--surface-mid);
  box-shadow: var(--shadow-lg);
}

/* ── Parallax ── */
.parallax-banner {
  position: relative;
  height: 440px;
  overflow: hidden;
}
.parallax-bg {
  position: absolute;
  inset: -80px 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.parallax-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13,5,8,0.92) 0%, rgba(61,12,28,0.80) 100%);
}
.parallax-content {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}
.parallax-content .section-title { font-size: clamp(2.5rem, 5vw, 4.5rem); }
.parallax-content .section-sub { text-align: center; margin: 0 auto 2.5rem; color: rgba(240,232,220,0.65); }

/* ── Reviews ── */
.reviews { background: var(--wine-dark); }
.reviews-track {
  display: flex;
  gap: 1.5rem;
  transition: transform 0.6s var(--ease);
  cursor: grab;
}
.reviews-track.dragging { cursor: grabbing; transition: none; }
.review-card {
  flex: 0 0 calc(33.333% - 1rem);
  background: var(--surface-card);
  border: var(--border);
  padding: 2.5rem;
  position: relative;
  transition: border-color 0.3s;
}
.review-card::before {
  content: '\201C';
  font-family: var(--font-display);
  font-size: 5rem;
  color: rgba(196,144,58,0.12);
  position: absolute;
  top: 1rem;
  left: 1.5rem;
  line-height: 1;
}
.review-card:hover { border-color: rgba(196,144,58,0.4); }
.review-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 1.25rem;
}
.review-stars svg { width: 14px; height: 14px; color: var(--gold); fill: currentColor; }
.review-text {
  font-family: var(--font-accent);
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1.75rem;
  font-style: italic;
  font-weight: 300;
}
.review-author { display: flex; align-items: center; gap: 0.75rem; }
.review-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--grad-wine);
  border: 1px solid rgba(196,144,58,0.3);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--gold);
  flex-shrink: 0;
}
.review-name {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream);
}
.review-role { font-size: 0.72rem; color: var(--text-dim); }

.carousel-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 2.5rem;
}
.carousel-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: transparent;
  border: var(--border-gold);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  transition: all 0.2s;
}
.carousel-btn:hover { background: rgba(196,144,58,0.1); }
.carousel-btn svg { width: 18px; height: 18px; }
.carousel-dots { display: flex; gap: 6px; }
.carousel-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--surface-light);
  border: 1px solid rgba(196,144,58,0.3);
  cursor: pointer;
  transition: all 0.3s;
}
.carousel-dot.active { width: 18px; border-radius: 3px; background: var(--gold); border-color: var(--gold); }

/* ── Inquiry Form ── */
.inquiry { background: var(--surface); position: relative; overflow: hidden; }
.inquiry::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196,144,58,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.inquiry-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 5rem;
  align-items: start;
}
.inquiry-info .section-sub { margin-bottom: 2rem; }
.contact-cards { display: flex; flex-direction: column; gap: 1rem; }
.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  background: var(--surface-card);
  border: var(--border);
  transition: border-color 0.2s;
}
.contact-card:hover { border-color: rgba(196,144,58,0.4); }
.contact-card-icon {
  width: 40px; height: 40px;
  background: rgba(196,144,58,0.08);
  border: var(--border-gold);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}
.contact-card-icon svg { width: 18px; height: 18px; }
.contact-card-label { font-size: 0.6rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--text-dim); margin-bottom: 0.2rem; }
.contact-card-value { font-size: 0.9rem; color: var(--cream); }
.contact-card-value a:hover { color: var(--gold-light); }

.form-card {
  background: var(--surface-card);
  border: var(--border);
  padding: 2.5rem;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1rem; }
.form-group label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  background: var(--surface-mid);
  border: var(--border);
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 300;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: rgba(196,144,58,0.6); box-shadow: 0 0 0 3px rgba(196,144,58,0.08); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select { cursor: pointer; }
.form-error { font-size: 0.72rem; color: #EF4444; display: none; }
.form-error.show { display: block; }
.form-group input.error, .form-group select.error, .form-group textarea.error { border-color: #EF4444; }
.form-submit { display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.form-note { font-size: 0.72rem; color: var(--text-dim); font-style: italic; }
.form-success { display: none; padding: 1rem; background: rgba(34,197,94,0.08); border: 1px solid rgba(34,197,94,0.25); color: #4ade80; font-size: 0.88rem; margin-top: 1rem; }
.form-success.show { display: block; }

/* ── CTA ── */
.cta-section {
  background: var(--surface-card);
  border-top: var(--border-gold);
  border-bottom: var(--border-gold);
  padding: var(--space-xl) 0;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(196,144,58,0.06) 0%, transparent 70%);
}
.cta-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.cta-inner .section-title { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
.cta-btns { display: flex; gap: 1rem; flex-wrap: wrap; flex-shrink: 0; }

/* ── Footer ── */
footer {
  background: var(--wine-dark);
  border-top: var(--border-gold);
}
.footer-main {
  padding: var(--space-2xl) 0 var(--space-xl);
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 3rem;
}
.footer-logo {
  height: 52px;
  width: auto;
  object-fit: contain;
  margin-bottom: 1.25rem;
  filter: brightness(1.1);
}
.footer-tagline {
  font-size: 0.87rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  max-width: 260px;
  font-weight: 300;
}
.footer-social { display: flex; gap: 0.5rem; }
.footer-social a {
  width: 34px; height: 34px;
  border: var(--border-gold);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-dim);
  transition: all 0.2s;
}
.footer-social a:hover { border-color: var(--gold); color: var(--gold); }
.footer-social svg { width: 15px; height: 15px; }
.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(196,144,58,0.2);
}
.footer-links { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links a {
  font-size: 0.83rem;
  color: var(--text-muted);
  font-weight: 300;
  transition: all 0.2s;
}
.footer-links a:hover { color: var(--gold-light); padding-left: 0.3rem; }
.footer-contact-list { display: flex; flex-direction: column; gap: 0.9rem; }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.83rem;
  color: var(--text-muted);
  line-height: 1.6;
  font-weight: 300;
}
.footer-contact-item svg { width: 14px; height: 14px; color: var(--gold); flex-shrink: 0; margin-top: 0.2rem; opacity: 0.7; }
.footer-contact-item a:hover { color: var(--gold-light); }
.footer-bottom {
  border-top: var(--border);
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-copy { font-size: 0.75rem; color: var(--text-dim); }
.footer-copy span { color: var(--gold); }
.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom-links a { font-size: 0.72rem; color: var(--text-dim); transition: color 0.2s; }
.footer-bottom-links a:hover { color: var(--text-muted); }

/* ── Mobile Sticky ── */
.mobile-sticky {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: var(--z-sticky);
  background: var(--wine-dark);
  border-top: var(--border-gold);
  padding: 0.75rem 1rem;
  gap: 0.75rem;
  box-shadow: 0 -8px 24px rgba(0,0,0,0.5);
}
.mobile-sticky a {
  flex: 1;
  display: flex; align-items: center; justify-content: center; gap: 0.4rem;
  padding: 0.65rem;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  transition: all 0.2s;
}
.mobile-sticky a svg { width: 18px; height: 18px; }
.sticky-call { background: var(--wine-mid); border: 1px solid rgba(196,144,58,0.3); }
.sticky-call:hover { background: var(--claret); }
.sticky-whatsapp { background: #25D366; }
.sticky-whatsapp:hover { background: #1ebd5a; }
.sticky-email { background: transparent; border: var(--border-gold); color: var(--gold) !important; }
.sticky-email:hover { background: rgba(196,144,58,0.1); }

/* ── Scroll Top ── */
.scroll-top {
  position: fixed;
  bottom: 2rem; right: 2rem;
  width: 44px; height: 44px;
  background: var(--grad-gold);
  display: flex; align-items: center; justify-content: center;
  color: var(--wine-dark);
  box-shadow: var(--shadow-gold);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: all 0.3s var(--ease);
  z-index: 60;
}
.scroll-top.show { opacity: 1; pointer-events: all; transform: translateY(0); }
.scroll-top:hover { transform: translateY(-2px); }
.scroll-top svg { width: 20px; height: 20px; }

/* ── Page Hero ── */
.page-hero {
  position: relative;
  height: 52vh;
  min-height: 420px;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.page-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13,5,8,0.92) 0%, rgba(61,12,28,0.78) 100%);
}
.page-hero-content {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 3.5rem;
}
.page-hero-content h1 { font-size: clamp(2.8rem, 6vw, 5.5rem); color: var(--cream); }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  color: var(--text-dim);
  margin-top: 0.75rem;
}
.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb svg { width: 12px; height: 12px; }

/* ── Reveal Animations ── */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal.visible { opacity: 1; transform: none; }
.reveal-left { opacity: 0; transform: translateX(-40px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal-left.visible { opacity: 1; transform: none; }
.reveal-right { opacity: 0; transform: translateX(40px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal-right.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ── About Page ── */
.timeline { position: relative; padding-left: 3rem; }
.timeline::before { content: ''; position: absolute; left: 0.6rem; top: 0; bottom: 0; width: 1px; background: linear-gradient(to bottom, var(--gold), transparent); opacity: 0.4; }
.timeline-item { position: relative; margin-bottom: 3rem; }
.timeline-dot { position: absolute; left: -2.3rem; top: 0.3rem; width: 12px; height: 12px; border-radius: 50%; background: var(--gold); border: 2px solid var(--surface-mid); box-shadow: 0 0 0 3px rgba(196,144,58,0.2); }
.timeline-year { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.3rem; }
.timeline-title { font-family: var(--font-display); font-size: 1.15rem; font-weight: 700; color: var(--cream); margin-bottom: 0.4rem; }
.timeline-text { font-size: 0.88rem; color: var(--text-muted); line-height: 1.75; font-weight: 300; }

.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.value-card {
  padding: 2rem;
  background: var(--surface-card);
  border: var(--border);
  border-bottom: 2px solid var(--gold);
  transition: all 0.3s;
}
.value-card:hover { background: var(--surface-light); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.value-num { font-family: var(--font-display); font-size: 3rem; font-weight: 700; color: rgba(196,144,58,0.12); line-height: 1; margin-bottom: 0.4rem; }
.value-title { font-family: var(--font-display); font-size: 1rem; font-weight: 700; color: var(--cream); margin-bottom: 0.4rem; }
.value-text { font-size: 0.84rem; color: var(--text-muted); line-height: 1.7; font-weight: 300; }

/* ── Products Page ── */
.product-detail { background: var(--surface); }
.product-block { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; padding: var(--space-xl) 0; border-bottom: var(--border); }
.product-block:last-child { border-bottom: none; }
.product-block.reverse { direction: rtl; }
.product-block.reverse > * { direction: ltr; }
.product-block-img { width: 100%; height: 400px; object-fit: cover; }
.variety-tag { display: inline-block; padding: 0.25rem 0.75rem; background: rgba(196,144,58,0.1); border: var(--border-gold); font-size: 0.6rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.75rem; }
.product-grapes { display: flex; flex-wrap: wrap; gap: 0.4rem; margin: 1rem 0; }
.grape-tag { padding: 0.2rem 0.6rem; background: var(--surface-card); border: var(--border); font-size: 0.68rem; color: var(--text-muted); }

/* ── Contact ── */
.contact-page-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 5rem; align-items: start; }
.hours-table { width: 100%; border-collapse: collapse; font-size: 0.85rem; margin-top: 0.75rem; }
.hours-table td { padding: 0.4rem 0; color: var(--text-muted); font-weight: 300; }
.hours-table td:last-child { text-align: right; color: var(--cream); }

/* ── FAQ ── */
.faq-list { display: flex; flex-direction: column; gap: 1px; background: var(--border); }
.faq-item { background: var(--surface-card); transition: background 0.2s; }
.faq-item.open { background: var(--surface-light); }
.faq-q { display: flex; align-items: center; justify-content: space-between; padding: 1.4rem 1.75rem; cursor: pointer; gap: 1rem; width: 100%; }
.faq-q-text { font-family: var(--font-display); font-size: 0.95rem; font-weight: 600; color: var(--cream); text-align: left; }
.faq-icon { width: 22px; height: 22px; border-radius: 50%; border: var(--border-gold); display: flex; align-items: center; justify-content: center; color: var(--gold); flex-shrink: 0; transition: all 0.3s; }
.faq-item.open .faq-icon { background: rgba(196,144,58,0.15); transform: rotate(45deg); }
.faq-icon svg { width: 12px; height: 12px; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease); }
.faq-a-inner { padding: 0 1.75rem 1.4rem; font-size: 0.88rem; color: var(--text-muted); line-height: 1.8; font-weight: 300; border-top: var(--border); padding-top: 1rem; }

/* ── Utility ── */
.text-center { text-align: center; }
.text-center .section-sub { margin-left: auto; margin-right: auto; }
.text-center .section-label::before, .text-center .section-label::after { display: none; }

/* ── Page Hero (with inline bg-image) ── */
.page-hero {
  background-size: cover;
  background-position: center;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13,5,8,0.93) 0%, rgba(61,12,28,0.78) 100%);
}
.page-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  color: var(--cream);
  margin-bottom: 0.75rem;
  line-height: 1.05;
}
.page-hero-title em {
  font-style: italic;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.page-hero-sub {
  font-family: var(--font-accent);
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  color: rgba(240,232,220,0.65);
  font-style: italic;
  font-weight: 300;
  max-width: 560px;
  line-height: 1.7;
}

/* ── About Split ── */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-split-img {
  position: relative;
  overflow: hidden;
}
.about-split-img > img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
  transition: transform 0.9s var(--ease);
}
.about-split-img:hover > img { transform: scale(1.04); }
.about-split-badge {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  background: rgba(13,5,8,0.88);
  border: var(--border-gold);
  padding: 1.1rem 1.5rem;
  backdrop-filter: blur(8px);
  text-align: center;
}
.badge-num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.badge-label {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 0.2rem;
}

/* ── About Pillars ── */
.about-pillars { display: flex; flex-direction: column; gap: 1rem; }
.about-pillar {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.1rem 1.25rem;
  background: rgba(196,144,58,0.04);
  border: var(--border);
  transition: border-color 0.2s;
}
.about-pillar:hover { border-color: rgba(196,144,58,0.4); }
.about-pillar-icon {
  width: 40px; height: 40px;
  background: rgba(196,144,58,0.08);
  border: var(--border-gold);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}
.about-pillar-icon svg { width: 18px; height: 18px; }
.about-pillar-title {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 0.1rem;
}
.about-pillar-text { font-size: 0.8rem; color: var(--text-muted); font-weight: 300; }

/* ── Facility Specs ── */
.facility-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-top: 1.5rem;
}
.facility-spec-item {
  padding: 1rem 1.25rem;
  background: var(--surface-card);
  border: var(--border);
  border-left: 2px solid rgba(196,144,58,0.4);
}
.facility-spec-label {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 0.25rem;
}
.facility-spec-val {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--cream);
}

/* ── Sourcing Regions ── */
.sourcing-regions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}
.sourcing-region-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.7rem 1rem;
  background: rgba(196,144,58,0.04);
  border: var(--border);
  border-radius: 2px;
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 300;
  transition: all 0.2s;
}
.sourcing-region-item:hover { border-color: rgba(196,144,58,0.4); color: var(--cream); }
.sourcing-flag { font-size: 1rem; flex-shrink: 0; }

/* ── Trade Show Grid ── */
.tradeshow-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.tradeshow-card {
  position: relative;
  overflow: hidden;
  background: var(--surface-card);
  border: var(--border);
  transition: border-color 0.3s;
  cursor: pointer;
}
.tradeshow-card:hover { border-color: rgba(196,144,58,0.5); }
.tradeshow-card img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
  transition: transform 0.7s var(--ease);
  filter: brightness(0.75) saturate(0.85);
}
.tradeshow-card:hover img { transform: scale(1.06); filter: brightness(0.9) saturate(1.0); }
.tradeshow-info {
  padding: 1.1rem 1.25rem;
}
.tradeshow-name {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 0.2rem;
}
.tradeshow-detail {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.8;
}

/* ── Value Icon ── */
.value-icon {
  width: 48px; height: 48px;
  background: rgba(196,144,58,0.08);
  border: var(--border-gold);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  margin-bottom: 1.25rem;
  transition: all 0.3s;
}
.value-card:hover .value-icon { background: rgba(196,144,58,0.15); }
.value-icon svg { width: 22px; height: 22px; }

/* ── Section Intro ── */
.section-intro { }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .wines-grid { grid-template-columns: repeat(2, 1fr); }
  .caps-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
}
@media (max-width: 900px) {
  .split-grid, .sourcing-grid, .inquiry-grid, .contact-page-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-split { grid-template-columns: 1fr; gap: 3rem; }
  .product-block { grid-template-columns: 1fr; gap: 2rem; }
  .product-block.reverse { direction: ltr; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .mobile-menu { display: flex; }
  .review-card { flex: 0 0 100%; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .tradeshow-grid { grid-template-columns: repeat(2, 1fr); }
  .split-img-overlay { display: none; }
  .sourcing-img-sub { display: none; }
}
@media (max-width: 768px) {
  section { padding: 3.5rem 0; }
  .container { padding: 0 1.25rem; }
  .caps-grid { grid-template-columns: 1fr; }
  .wines-grid { grid-template-columns: 1fr; }
  .tradeshow-grid { grid-template-columns: 1fr; }
  .about-split-img > img { height: 320px; }
  .product-block-img { height: 260px !important; }
  .footer-main { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .cta-inner { flex-direction: column; text-align: center; }
  .topbar-contact { display: none; }
  .mobile-sticky { display: flex; }
  .scroll-top { bottom: 5.5rem; right: 1rem; }
  .stat-divider { display: none; }
  .hero-stats { display: none; }
  .hero-title { font-size: clamp(2.8rem, 10vw, 4rem); }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .values-grid { grid-template-columns: 1fr; }
  .regions-list { grid-template-columns: 1fr; }
  .sourcing-regions { grid-template-columns: 1fr; }
  .facility-specs { grid-template-columns: 1fr; }
  .tradeshow-grid { grid-template-columns: 1fr; }
  .split-badge { display: none; }
  .about-split-badge { display: none; }
  .hero-title { font-size: 2.5rem; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
  .parallax-bg { background-attachment: scroll; }
}

/* ── Disclaimer Popup ── */
.disclaimer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.82);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.disclaimer-overlay.show {
  opacity: 1;
  pointer-events: all;
}
.disclaimer-box {
  background: #0E1822;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-top: 3px solid #C4903A;
  max-width: 540px;
  width: 100%;
  padding: 2.5rem;
  position: relative;
  transform: translateY(28px) scale(0.97);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.disclaimer-overlay.show .disclaimer-box {
  transform: translateY(0) scale(1);
}
.disclaimer-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 32px;
  height: 32px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  transition: all 0.2s;
  border-radius: 2px;
}
.disclaimer-close:hover {
  border-color: rgba(255, 255, 255, 0.4);
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
}
.disclaimer-close svg { width: 14px; height: 14px; }
.disclaimer-icon {
  width: 48px;
  height: 48px;
  background: rgba(196, 144, 58, 0.1);
  border: 1px solid rgba(196, 144, 58, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #C4903A;
  margin-bottom: 1.25rem;
  border-radius: 2px;
}
.disclaimer-icon svg { width: 24px; height: 24px; }
.disclaimer-title {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #C4903A;
  margin-bottom: 0.75rem;
}
.disclaimer-text {
  font-size: 0.88rem;
  color: rgba(220, 230, 240, 0.7);
  line-height: 1.85;
  margin-bottom: 1.75rem;
}
.disclaimer-text strong {
  color: #fff;
  font-weight: 600;
}
.disclaimer-btn {
  display: block;
  width: 100%;
  padding: 0.85rem 2rem;
  background: #C4903A;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
  border-radius: 1px;
}
.disclaimer-btn:hover { background: #D4A050; }
@media (max-width: 480px) {
  .disclaimer-box { padding: 1.75rem 1.25rem; }
}
