@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=Cormorant+Garamond:ital,wght@0,400;0,600;1,400;1,600&family=Montserrat:wght@300;400;500;600;700;800;900&display=swap');

:root {
  --cream: #F5F0E8;
  --green: #1C3A2A;
  --green-light: #2a4f3a;
  --red: #C9402A;
  --red-dark: #B33520;
  --lime: #D4E04A;
  --border: rgba(28,58,42,0.12);
  --nav-h: 64px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--cream);
  color: var(--green);
  font-family: 'Montserrat', sans-serif;
  overflow-x: hidden;
}

/* noise grain overlay */
body::after {
  content: '';
  position: fixed; inset: 0; z-index: 9990;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  opacity: 0.4;
}

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

/* =========================================
   WATERMARK — Kumar Subodh
   ========================================= */
.watermark {
  position: fixed;
  bottom: 20px; left: 20px; z-index: 9000;
  background: var(--green);
  color: var(--lime);
  padding: 8px 16px 8px 12px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  display: flex; align-items: center; gap: 8px;
  pointer-events: none;
  box-shadow: 0 4px 20px rgba(28,58,42,0.3);
}
.watermark-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--lime);
  animation: wmpulse 2s ease-in-out infinite;
}
.watermark-text { color: var(--cream); font-weight: 400; }
.watermark-name { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 13px; color: var(--lime); }
@keyframes wmpulse { 0%,100%{opacity:1;transform:scale(1);} 50%{opacity:0.5;transform:scale(1.5);} }

/* =========================================
   NAVBAR
   ========================================= */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  height: var(--nav-h);
  background: var(--cream);
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 48px;
  transition: box-shadow 0.3s, background 0.3s;
}
nav.scrolled {
  background: rgba(245,240,232,0.94);
  backdrop-filter: blur(16px);
  box-shadow: 0 2px 24px rgba(28,58,42,0.07);
}

.nav-logo {
  display: flex; align-items: baseline; gap: 7px;
  letter-spacing: 0.12em;
}
.nav-logo-main { font-size: 17px; font-weight: 800; letter-spacing: 0.18em; text-transform: uppercase; }
.nav-logo-sub { font-size: 10px; font-weight: 400; letter-spacing: 0.24em; text-transform: uppercase; opacity: 0.6; }

.nav-links { display: flex; align-items: center; gap: 44px; list-style: none; }
.nav-links a { font-size: 10.5px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; transition: opacity 0.2s; }
.nav-links a:hover { opacity: 0.5; }

.nav-cta {
  background: var(--green); color: var(--cream);
  padding: 11px 26px; border-radius: 100px;
  font-size: 10.5px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  display: flex; align-items: center; gap: 8px;
  transition: transform 0.2s, background 0.2s;
}
.nav-cta:hover { background: var(--green-light); transform: translateY(-1px); }
.nav-cta svg { width: 12px; height: 12px; stroke: var(--cream); fill: none; stroke-width: 2; stroke-linecap: round; }

/* =========================================
   HERO
   ========================================= */
#hero {
  min-height: 100vh; padding-top: var(--nav-h);
  display: grid; grid-template-columns: 1fr 1fr;
  position: relative; overflow: hidden;
}

.hero-left {
  display: flex; flex-direction: column; justify-content: center;
  padding: 80px 60px 80px 80px;
  position: relative;
}

.side-text {
  position: absolute; left: 28px; top: 50%;
  transform: translateY(-50%) rotate(-90deg);
  font-size: 9px; letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--green); opacity: 0.4; white-space: nowrap; font-weight: 500;
}

.hero-tagline {
  display: flex; align-items: center; gap: 9px;
  font-size: 10px; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--green); margin-bottom: 28px; font-weight: 500;
}
.hero-tagline-circle {
  width: 8px; height: 8px; border-radius: 50%;
  border: 1.5px solid var(--green); opacity: 0.5;
}

.hero-headline {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(68px, 7.5vw, 108px);
  line-height: 0.98; color: var(--green); letter-spacing: -0.02em;
}
.hero-headline em {
  font-style: italic; color: var(--red);
  font-family: 'Cormorant Garamond', serif; font-weight: 600;
}

.hero-desc {
  margin-top: 28px; font-size: 14.5px; line-height: 1.75;
  color: var(--green); opacity: 0.72; max-width: 400px;
}

.hero-btns { display: flex; align-items: center; gap: 14px; margin-top: 36px; }

.btn-primary {
  background: var(--red); color: #fff;
  padding: 15px 30px; border-radius: 100px;
  font-size: 10.5px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
  display: flex; align-items: center; gap: 9px;
  border: none; cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.btn-primary:hover { background: var(--red-dark); transform: translateY(-2px); }

.btn-secondary {
  background: transparent; color: var(--green);
  padding: 14px 30px; border-radius: 100px;
  font-size: 10.5px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase;
  border: 1.5px solid rgba(28,58,42,0.4); cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.btn-secondary:hover { background: var(--green); color: var(--cream); border-color: var(--green); }

.hero-drag { margin-top: 28px; font-size: 9.5px; letter-spacing: 0.22em; text-transform: uppercase; opacity: 0.4; font-weight: 500; }

/* ── BOTTLE VIEWER ── */
.hero-right {
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}

.bottle-viewer {
  position: relative; width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  cursor: grab; user-select: none;
}
.bottle-viewer:active { cursor: grabbing; }

/* glow blob behind bottle */
.bottle-glow {
  position: absolute; width: 320px; height: 420px;
  background: radial-gradient(ellipse at center, rgba(212,224,74,0.28) 0%, transparent 72%);
  border-radius: 50%; pointer-events: none;
}

/* ── EXACT BOTTLE SHAPE from video (slim, elongated, classic botanical bottle) ── */
.bottle-3d {
  position: relative; width: 160px; height: 540px;
  filter: drop-shadow(0 24px 48px rgba(28,58,42,0.22));
  transform-style: preserve-3d;
}

.b-cap {
  position: absolute; left: 50%; transform: translateX(-50%);
  bottom: 484px; width: 42px; height: 22px;
  background: var(--green); border-radius: 6px 6px 0 0;
}
.b-neck {
  position: absolute; left: 50%; transform: translateX(-50%);
  bottom: 390px; width: 38px; height: 100px;
  border-radius: 19px 19px 0 0;
}
.b-shoulder {
  position: absolute; left: 50%; transform: translateX(-50%);
  bottom: 290px; width: 130px; height: 106px;
  border-radius: 50% 50% 0 0 / 80% 80% 0 0;
}
.b-body {
  position: absolute; left: 50%; transform: translateX(-50%);
  bottom: 0; width: 130px; height: 296px;
  border-radius: 4px 4px 18px 18px;
  overflow: hidden;
}
/* shine */
.b-body::after {
  content: '';
  position: absolute; left: 10px; top: 0; bottom: 0; width: 16px;
  background: rgba(255,255,255,0.13); border-radius: 50%;
}

.b-label {
  position: absolute; left: 50%; transform: translateX(-50%);
  width: 86px; height: 158px; top: 68px;
  background: #fff; border-radius: 3px;
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; padding: 10px 7px; text-align: center;
  z-index: 2;
}
.b-label-brand { font-size: 11px; font-weight: 800; letter-spacing: 0.14em; color: var(--green); }
.b-label-name { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 10px; color: var(--red); margin-top: 3px; line-height: 1.3; }
.b-label-sep { width: 60px; height: 1px; background: #eee; margin: 7px 0; }
.b-label-nutri span { display: block; font-size: 7.5px; text-transform: uppercase; letter-spacing: 0.1em; color: #888; }
.b-label-nutri strong { font-size: 28px; font-weight: 900; color: var(--green); line-height: 1; display: block; margin: 1px 0; }
.b-label-nutri small { font-size: 7px; text-transform: uppercase; letter-spacing: 0.08em; color: #aaa; display: block; }
.b-label-shake { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 8.5px; color: var(--red); margin-top: 7px; line-height: 1.5; }

.b-volume {
  position: absolute; bottom: -32px; left: 50%; transform: translateX(-50%);
  font-size: 9px; letter-spacing: 0.2em; text-transform: uppercase;
  opacity: 0.45; white-space: nowrap;
}

.btn-360 {
  position: absolute; top: 80px; right: 40px;
  background: var(--green); color: var(--cream);
  padding: 9px 18px; border-radius: 100px;
  font-size: 9.5px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase;
  display: flex; align-items: center; gap: 7px;
  pointer-events: none;
}
.btn-360-dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--lime);
  animation: wmpulse 2s infinite;
}

/* =========================================
   TICKER
   ========================================= */
.ticker-wrap {
  overflow: hidden; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 13px 0;
}
.ticker-track { display: flex; animation: ticker 22s linear infinite; width: max-content; }
.ticker-item {
  display: inline-flex; align-items: center; gap: 14px;
  font-size: 9.5px; font-weight: 700; letter-spacing: 0.28em; text-transform: uppercase;
  padding: 0 36px; white-space: nowrap;
}
.ticker-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--red); flex-shrink: 0; }
@keyframes ticker { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }

/* =========================================
   DARK MARQUEE BANNER
   ========================================= */
.banner {
  background: var(--green); padding: 44px 0; overflow: hidden;
}
.banner-track {
  display: flex; animation: bannerScroll 28s linear infinite; width: max-content; align-items: center;
}
.bw {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(48px, 5.5vw, 76px);
  font-weight: 900; letter-spacing: 0.05em; text-transform: uppercase;
  padding: 0 28px; white-space: nowrap;
}
.bw-cream { color: var(--cream); }
.bw-lime { color: var(--lime); }
.bw-outline { color: transparent; -webkit-text-stroke: 1.5px rgba(245,240,232,0.3); }
.bw-red-outline { color: transparent; -webkit-text-stroke: 1.5px rgba(201,64,42,0.55); }
.banner-sun { padding: 0 20px; }
@keyframes bannerScroll { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }

/* =========================================
   CHAPTER LABEL
   ========================================= */
.ch-label {
  font-size: 9.5px; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--red); font-weight: 700;
  display: flex; align-items: center; gap: 9px;
}
.ch-label::before { content: '—'; }

/* =========================================
   STORY SECTION
   ========================================= */
#story {
  display: grid; grid-template-columns: 1fr 1.2fr;
  gap: 0; align-items: center;
  padding: 120px 0 120px 0;
  position: relative; overflow: hidden;
}

/* WINE GLASS — exact match to video: tall, narrow bowl, curved, transparent */
.story-left {
  display: flex; align-items: center; justify-content: center;
  padding: 0 40px;
  position: relative;
}

.wine-glass-wrap {
  position: relative; display: flex; align-items: flex-end;
  justify-content: center;
}

/* The actual wine glass SVG is rendered inline in HTML */

.story-right { padding: 60px 80px 60px 40px; }

.story-headline {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(38px, 4vw, 58px); line-height: 1.1;
  color: var(--green); margin: 18px 0 28px; letter-spacing: -0.01em;
}
.story-headline em { font-style: italic; font-family: 'Cormorant Garamond', serif; }

.story-text { font-size: 15px; line-height: 1.8; opacity: 0.72; max-width: 500px; }

.story-stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  margin-top: 44px; padding-top: 32px; border-top: 1px solid var(--border);
}
.stat { padding-right: 24px; border-right: 1px solid var(--border); }
.stat:last-child { border-right: none; padding: 0 0 0 24px; }
.stat:nth-child(2) { padding: 0 24px; }
.stat-num {
  font-family: 'DM Serif Display', serif;
  font-size: 46px; color: var(--red); line-height: 1; letter-spacing: -0.02em;
}
.stat-lbl { font-size: 9px; font-weight: 700; letter-spacing: 0.24em; text-transform: uppercase; opacity: 0.55; margin-top: 5px; }

/* =========================================
   BOTTLES SECTION
   ========================================= */
#bottles { padding: 80px 80px 120px; }

.bottles-header { margin-bottom: 52px; }
.bottles-title-row { display: flex; align-items: flex-end; justify-content: space-between; margin-top: 14px; }
.bottles-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(44px, 5vw, 68px); line-height: 1.06;
  color: var(--green); letter-spacing: -0.01em;
}
.bottles-title em { font-style: italic; font-family: 'Cormorant Garamond', serif; }
.cult-link { font-size: 10.5px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; opacity: 0.55; transition: opacity 0.2s; margin-bottom: 6px; }
.cult-link:hover { opacity: 1; }

.bottles-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }

/* ── bottle card ── */
.bc {
  background: rgba(255,255,255,0.5);
  border-radius: 10px; overflow: hidden; position: relative;
  cursor: pointer; transition: transform 0.35s cubic-bezier(0.16,1,0.3,1), box-shadow 0.35s;
}
.bc:hover {
  transform: translateY(-10px);
  box-shadow: 0 28px 56px rgba(28,58,42,0.13);
}

/* color tint on hover — uses CSS custom property set per card */
.bc::before {
  content: ''; position: absolute; inset: 0; z-index: 0;
  background: var(--card-tint, transparent);
  opacity: 0; transition: opacity 0.4s;
  border-radius: 10px; pointer-events: none;
}
.bc:hover::before { opacity: 1; }

.bc-badge {
  position: absolute; top: 14px; right: 14px; z-index: 2;
  font-size: 8.5px; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase;
  color: #fff; padding: 4px 10px; border-radius: 4px;
}

.bc-img {
  position: relative; z-index: 1;
  height: 300px; display: flex; align-items: center; justify-content: center;
  padding: 32px 20px 12px;
}

/* CSS bottle for cards — slim elongated matching video */
.cb { position: relative; width: 74px; height: 236px; animation: float 4s ease-in-out infinite; }
.bc:nth-child(2) .cb { animation-delay: 0.7s; }
.bc:nth-child(3) .cb { animation-delay: 1.4s; }
.bc:nth-child(4) .cb { animation-delay: 2.1s; }
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-9px)} }

.cb-cap {
  position: absolute; left: 50%; transform: translateX(-50%);
  bottom: 220px; width: 22px; height: 16px; border-radius: 4px 4px 0 0;
}
.cb-neck {
  position: absolute; left: 50%; transform: translateX(-50%);
  bottom: 180px; width: 22px; height: 44px; border-radius: 11px 11px 0 0;
}
.cb-shoulder {
  position: absolute; left: 50%; transform: translateX(-50%);
  bottom: 118px; width: 68px; height: 66px; border-radius: 50% 50% 0 0 / 80% 80% 0 0;
}
.cb-body {
  position: absolute; left: 50%; transform: translateX(-50%);
  bottom: 0; width: 68px; height: 122px; border-radius: 3px 3px 10px 10px; overflow: hidden;
}
.cb-body::after {
  content: ''; position: absolute; left: 6px; top: 0; bottom: 0; width: 9px;
  background: rgba(255,255,255,0.14); border-radius: 50%;
}
.cb-label {
  position: absolute; left: 50%; transform: translateX(-50%);
  width: 44px; height: 70px; top: 28px;
  background: #fff; border-radius: 2px;
  display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 5px;
  text-align: center; z-index: 2;
}
.cb-brand { font-size: 6px; font-weight: 800; letter-spacing: 0.1em; color: var(--green); text-transform: uppercase; }
.cb-name { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 6.5px; color: var(--red); margin-top: 2px; line-height: 1.3; }

.bc-info { position: relative; z-index: 1; padding: 14px 18px 22px; }
.bc-name { font-family: 'DM Serif Display', serif; font-size: 20px; color: var(--green); margin-bottom: 5px; }
.bc-notes { font-size: 8.5px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; opacity: 0.5; margin-bottom: 7px; }
.bc-tagline { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 13px; opacity: 0.65; margin-bottom: 18px; }
.bc-footer { display: flex; align-items: center; justify-content: space-between; }
.bc-price { font-family: 'DM Serif Display', serif; font-size: 22px; }
.btn-add {
  background: var(--green); color: var(--cream);
  padding: 10px 18px; border-radius: 100px;
  font-size: 9.5px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase;
  border: none; cursor: pointer; display: flex; align-items: center; gap: 7px;
  transition: background 0.2s, transform 0.2s;
}
.btn-add:hover { background: var(--green-light); transform: scale(1.05); }

/* =========================================
   INGREDIENTS
   ========================================= */
#ingredients { padding: 120px 80px; }

.ing-header { margin-bottom: 44px; }
.ing-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(48px, 5.5vw, 76px); line-height: 1.04;
  color: var(--green); margin-top: 14px; letter-spacing: -0.01em;
}
.ing-subrow { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: end; margin-top: 14px; }
.ing-sub { font-size: 14.5px; line-height: 1.75; opacity: 0.7; }

.ing-layout { display: grid; grid-template-columns: 2fr 1.15fr; gap: 20px; }

/* pantry panel */
.pantry {
  border-radius: 10px; overflow: hidden; position: relative;
  min-height: 460px; background: var(--green);
  display: flex; align-items: flex-end;
}
.pantry-svg-bg {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}
.pantry-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(28,58,42,0.05), rgba(28,58,42,0.72));
}
.pantry-label { position: relative; z-index: 2; padding: 32px; }
.pantry-title { font-family: 'DM Serif Display', serif; font-size: 34px; color: var(--cream); margin-bottom: 5px; }
.pantry-sub { font-size: 9px; letter-spacing: 0.26em; text-transform: uppercase; color: rgba(245,240,232,0.55); font-weight: 700; }

/* ingredient cards */
.ing-list { display: flex; flex-direction: column; gap: 10px; }

.ic {
  background: var(--cream);
  border: 1px solid var(--border); border-radius: 8px;
  padding: 22px 22px 18px; position: relative; overflow: hidden;
  cursor: default;
  transition: transform 0.25s, box-shadow 0.25s, background 0.4s;
}

/* Color tint on hover using CSS custom property */
.ic:hover {
  transform: translateX(5px);
  box-shadow: 4px 4px 24px rgba(28,58,42,0.08);
}
.ic::after {
  content: ''; position: absolute; inset: 0; z-index: 0;
  background: var(--ic-tint, transparent);
  opacity: 0; transition: opacity 0.4s; border-radius: 8px;
  pointer-events: none;
}
.ic:hover::after { opacity: 1; }

.ic-num { font-size: 10.5px; font-weight: 500; opacity: 0.38; margin-bottom: 8px; position: relative; z-index: 1; }
.ic-name { font-family: 'DM Serif Display', serif; font-size: 26px; color: var(--green); margin-bottom: 3px; position: relative; z-index: 1; }
.ic-desc { font-size: 12.5px; opacity: 0.62; margin-bottom: 9px; position: relative; z-index: 1; }
.ic-origin { font-size: 9px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--red); font-weight: 700; position: relative; z-index: 1; }
.ic-origin::before { content: '+ '; }
.ic-blob {
  position: absolute; right: -10px; bottom: -10px;
  width: 54px; height: 54px; border-radius: 50% 50% 50% 30%;
  opacity: 0.75; z-index: 0;
}

/* small grid */
.ing-small-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 20px; }
.ic-sm {
  background: var(--cream); border: 1px solid var(--border); border-radius: 8px;
  padding: 18px 18px 14px; position: relative; overflow: hidden;
  cursor: default;
  transition: transform 0.25s, box-shadow 0.25s;
}
.ic-sm:hover { transform: translateY(-4px); box-shadow: 0 10px 28px rgba(28,58,42,0.09); }
.ic-sm::after {
  content: ''; position: absolute; inset: 0; z-index: 0;
  background: var(--ic-tint, transparent);
  opacity: 0; transition: opacity 0.4s; border-radius: 8px; pointer-events: none;
}
.ic-sm:hover::after { opacity: 1; }
.ic-sm .ic-num { font-size: 9.5px; margin-bottom: 6px; }
.ic-sm .ic-name { font-size: 21px; }
.ic-sm .ic-desc { font-size: 11.5px; }
.ic-sm .ic-blob { width: 42px; height: 42px; right: -8px; bottom: -8px; }
.ic-sm .ic-num, .ic-sm .ic-name, .ic-sm .ic-desc, .ic-sm .ic-origin { position: relative; z-index: 1; }

/* =========================================
   VOICES
   ========================================= */
#voices {
  background: var(--green); padding: 100px 80px;
  position: relative; overflow: hidden;
}
.voices-header { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 60px; }
.voices-ch { font-size: 9.5px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--lime); font-weight: 700; display: flex; align-items: center; gap: 9px; }
.voices-ch::before { content: '—'; }
.voices-nav-btns { display: flex; gap: 10px; }
.vnb {
  width: 42px; height: 42px; border-radius: 50%;
  border: 1.5px solid rgba(245,240,232,0.28);
  background: transparent; color: var(--cream);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; font-size: 15px;
  transition: border-color 0.2s, background 0.2s;
}
.vnb:hover { border-color: var(--cream); background: rgba(245,240,232,0.1); }
.voices-quote {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(26px, 3.8vw, 50px); line-height: 1.16; color: var(--cream);
  max-width: 880px;
}
.vqm { font-family: 'Cormorant Garamond', serif; font-size: 3.5em; color: var(--red); line-height: 0.45; vertical-align: top; margin-right: 2px; }
.voices-attr { display: flex; align-items: center; gap: 16px; margin-top: 36px; }
.vline { width: 38px; height: 1px; background: rgba(245,240,232,0.3); }
.vname { font-family: 'DM Serif Display', serif; font-size: 15px; color: var(--cream); }
.vtitle { font-size: 9.5px; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(245,240,232,0.48); font-weight: 600; }
.voices-dots { display: flex; gap: 8px; margin-top: 44px; }
.vdot { height: 3px; width: 20px; border-radius: 2px; background: rgba(245,240,232,0.25); cursor: pointer; transition: width 0.4s, background 0.25s; }
.vdot.active { background: var(--red); width: 40px; }

/* =========================================
   NEWSLETTER
   ========================================= */
#newsletter {
  padding: 120px 80px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.nl-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(44px, 4.8vw, 64px); line-height: 1.06;
  color: var(--green); margin-top: 14px; letter-spacing: -0.01em;
}
.nl-title em { font-style: italic; font-family: 'Cormorant Garamond', serif; }
.nl-desc { font-size: 14.5px; line-height: 1.75; opacity: 0.68; margin-top: 18px; }

.nl-form { display: flex; align-items: center; border-bottom: 1.5px solid var(--green); padding-bottom: 1px; gap: 12px; }
.nl-input {
  flex: 1; background: transparent; border: none; outline: none;
  font-family: 'Montserrat', sans-serif; font-size: 13.5px; color: var(--green); padding: 12px 0;
}
.nl-input::placeholder { color: var(--green); opacity: 0.38; }
.nl-btn {
  background: var(--red); color: #fff;
  padding: 12px 26px; border-radius: 100px;
  font-size: 9.5px; font-weight: 800; letter-spacing: 0.18em; text-transform: uppercase;
  border: none; cursor: pointer; white-space: nowrap;
  transition: background 0.2s;
}
.nl-btn:hover { background: var(--red-dark); }
.nl-note { margin-top: 11px; font-size: 9px; letter-spacing: 0.22em; text-transform: uppercase; opacity: 0.42; font-weight: 700; }
.nl-success { display: none; margin-top: 12px; font-size: 13px; font-weight: 600; color: var(--green); }

/* =========================================
   FOOTER
   ========================================= */
footer { background: var(--green); padding: 80px 80px 0; overflow: hidden; }

.ft-label { font-size: 9.5px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--lime); font-weight: 700; display: flex; align-items: center; gap: 9px; margin-bottom: 30px; }
.ft-label::before { content: '—'; }

.ft-grid { display: grid; grid-template-columns: 1.2fr 0.75fr 0.75fr; gap: 72px; }

.ft-input {
  flex: 1; background: transparent; border: none;
  border-bottom: 1px solid rgba(245,240,232,0.18); outline: none;
  font-family: 'Montserrat', sans-serif; font-size: 12.5px;
  color: var(--cream); padding: 10px 0; width: 100%;
  transition: border-color 0.2s;
}
.ft-input:focus { border-bottom-color: rgba(245,240,232,0.45); }
.ft-input::placeholder { color: rgba(245,240,232,0.38); }

.ft-row { display: flex; gap: 20px; margin-bottom: 20px; }
.ft-textarea {
  display: block; width: 100%; background: transparent; border: none;
  border-bottom: 1px solid rgba(245,240,232,0.18); outline: none;
  font-family: 'Montserrat', sans-serif; font-size: 12.5px;
  color: var(--cream); padding: 10px 0; resize: none; min-height: 55px; margin-bottom: 28px;
}
.ft-textarea::placeholder { color: rgba(245,240,232,0.38); }

.btn-send {
  background: var(--red); color: #fff;
  padding: 13px 28px; border-radius: 100px;
  font-size: 9.5px; font-weight: 800; letter-spacing: 0.18em; text-transform: uppercase;
  border: none; cursor: pointer; display: flex; align-items: center; gap: 8px;
  transition: background 0.2s;
}
.btn-send:hover { background: var(--red-dark); }

.ft-nav-title { font-size: 9px; letter-spacing: 0.3em; text-transform: uppercase; color: rgba(245,240,232,0.4); font-weight: 700; margin-bottom: 22px; }
.ft-nav-list { list-style: none; display: flex; flex-direction: column; gap: 15px; }
.ft-nav-list a { font-family: 'DM Serif Display', serif; font-size: 18px; color: var(--cream); transition: color 0.2s; }
.ft-nav-list a:hover { color: var(--lime); }
.ft-social-list { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.ft-social-list a { font-family: 'DM Serif Display', serif; font-size: 18px; color: var(--cream); display: flex; align-items: center; gap: 4px; transition: color 0.2s; }
.ft-social-list a:hover { color: var(--lime); }
.ft-social-list a span { font-family: 'Montserrat', sans-serif; font-size: 10px; }
.ft-locations { margin-top: 28px; font-size: 9px; letter-spacing: 0.24em; text-transform: uppercase; color: rgba(245,240,232,0.3); font-weight: 700; }

/* big footer brand */
.ft-brand {
  margin-top: 72px; padding-top: 20px;
  border-top: 1px solid rgba(245,240,232,0.1);
  display: flex; align-items: baseline; overflow: hidden; gap: 32px;
}
.ft-brand-main {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(72px, 11vw, 148px);
  font-weight: 900; letter-spacing: -0.02em;
  color: var(--cream); text-transform: uppercase; line-height: 1;
}
.ft-brand-italic {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(72px, 11vw, 148px);
  font-weight: 600; color: var(--red); line-height: 1;
}

.ft-bottom {
  text-align: center; padding: 20px 0 24px;
  font-size: 9.5px; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(245,240,232,0.28); font-weight: 600;
}
.ft-bottom span { margin: 0 8px; }

/* =========================================
   TOAST / REVEAL
   ========================================= */
.toast {
  position: fixed; bottom: 28px; left: 50%; z-index: 8000;
  transform: translateX(-50%) translateY(80px);
  background: var(--green); color: var(--cream);
  padding: 13px 26px; border-radius: 100px;
  font-size: 12px; font-weight: 600; letter-spacing: 0.08em;
  transition: transform 0.4s cubic-bezier(0.16,1,0.3,1);
  white-space: nowrap; pointer-events: none;
}
.toast.show { transform: translateX(-50%) translateY(0); }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.75s cubic-bezier(0.16,1,0.3,1), transform 0.75s cubic-bezier(0.16,1,0.3,1); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.d1 { transition-delay: 0.1s; } .d2 { transition-delay: 0.22s; } .d3 { transition-delay: 0.36s; } .d4 { transition-delay: 0.5s; }

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 1100px) {
  #hero { grid-template-columns: 1fr; }
  .hero-right { display: none; }
  #story { grid-template-columns: 1fr; }
  .story-left { display: none; }
  .bottles-grid { grid-template-columns: repeat(2, 1fr); }
  .ing-layout { grid-template-columns: 1fr; }
  #newsletter { grid-template-columns: 1fr; gap: 40px; }
  .ft-grid { grid-template-columns: 1fr; gap: 40px; }
  nav, #story .story-right, #bottles, #ingredients, #voices, #newsletter, footer { padding-left: 24px; padding-right: 24px; }
  .hero-left { padding: 80px 24px; }
}
@media (max-width: 640px) {
  .nav-links { display: none; }
  .bottles-grid { grid-template-columns: 1fr; }
  .story-stats { grid-template-columns: 1fr; gap: 20px; }
  .stat { border-right: none !important; border-bottom: 1px solid var(--border); padding: 0 0 20px !important; }
  .stat:last-child { border-bottom: none; }
  .ing-subrow { grid-template-columns: 1fr; }
  .ing-small-grid { grid-template-columns: repeat(2, 1fr); }
  .ft-row { flex-direction: column; gap: 0; }
}
