/* ============================================================
   Vermut Barrachapa Team — Landing
   Editorial bodega aesthetic, GSAP-driven scroll animation.
   ============================================================ */

:root {
  /* Surface */
  --bg: #0b0a08;
  --bg-2: #12100c;
  --bg-3: #181410;

  /* Ink */
  --ink: #e9e2d0;
  --ink-soft: #b8ad91;
  --ink-mute: #6b6249;

  /* Brand */
  --gold: #c9a24b;
  --gold-hi: #e8c877;
  --gold-deep: #8a6a2a;
  --red: #9b2a2a;
  --red-hi: #c23a3a;

  /* Lines */
  --hairline: rgba(201, 162, 75, 0.22);
  --hairline-soft: rgba(201, 162, 75, 0.10);

  /* Typography */
  --display: "Italiana", "Cormorant Garamond", Georgia, serif;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;

  /* Layout */
  --max: 1400px;
  --gutter: clamp(1.5rem, 4vw, 5rem);

  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; overflow-x: clip; }

body {
  margin: 0; padding: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--serif);
  font-weight: 300;
  font-size: 18px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }

/* ------------------------------------------------------------
   Atmosphere — film grain + warm gradients (fixed layers)
   ------------------------------------------------------------ */
body::before {
  content: "";
  position: fixed; inset: 0;
  pointer-events: none; z-index: 2;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='220' height='220'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.78 0 0 0 0 0.63 0 0 0 0 0.29 0 0 0 0.35 0'/></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='0.5'/></svg>");
  opacity: 0.08;
  mix-blend-mode: overlay;
}
body::after {
  content: "";
  position: fixed; inset: 0;
  pointer-events: none; z-index: 1;
  background:
    radial-gradient(1200px 800px at 15% 10%, rgba(201, 162, 75, 0.07), transparent 60%),
    radial-gradient(900px 700px at 90% 85%, rgba(155, 42, 42, 0.06), transparent 60%),
    linear-gradient(180deg, #0b0a08 0%, #0a0907 50%, #0b0a08 100%);
}

main, .nav, .footer { position: relative; z-index: 3; }

/* ------------------------------------------------------------
   Type scale
   ------------------------------------------------------------ */
.eyebrow {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
}

.chapter__head {
  display: flex;
  align-items: center;
  gap: 28px;
  margin: 0 0 64px;
}
.chapter__num {
  font-family: var(--display);
  font-size: 13px;
  letter-spacing: 0.36em;
  color: var(--gold);
  white-space: nowrap;
  text-transform: uppercase;
}
.chapter__rule {
  flex: 1; height: 1px;
  background: var(--hairline);
}
.chapter__year {
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  color: var(--ink-mute);
  letter-spacing: 0.12em;
  white-space: nowrap;
  min-width: 0;
  text-align: right;
}
.chapter__num { min-width: 0; }
.chapter__head--inline {
  margin-bottom: 32px;
}

/* ------------------------------------------------------------
   Navigation
   ------------------------------------------------------------ */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 50;
  padding: 28px var(--gutter);
  display: flex; justify-content: center;
  transition: background 0.5s var(--ease), padding 0.5s var(--ease), border-color 0.5s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav__inner {
  width: 100%; max-width: var(--max);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nav.is-scrolled {
  background: rgba(11, 10, 8, 0.78);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 18px var(--gutter);
  border-bottom-color: var(--hairline-soft);
}
.nav__brand {
  font-family: var(--display);
  font-size: 15px;
  letter-spacing: 0.42em;
  color: var(--gold);
}
.nav__dot { color: var(--ink-soft); margin: 0 8px; }
.nav__cta {
  font-family: var(--sans);
  font-size: 10.5px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ink);
  padding: 10px 22px;
  border: 1px solid var(--hairline);
  transition: background 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease);
}
.nav__cta:hover {
  background: var(--gold);
  color: var(--bg);
  border-color: var(--gold);
}

/* ------------------------------------------------------------
   Hero
   ------------------------------------------------------------ */
.hero {
  position: relative;
  min-height: 100vh;
  max-width: var(--max);
  margin: 0 auto;
  padding: 140px var(--gutter) 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
  overflow: hidden;
}

.hero__text {
  position: relative;
  z-index: 5;
  max-width: 560px;
}
.hero__eyebrow {
  display: flex; align-items: center; gap: 16px;
  margin-bottom: 36px;
}
.hero__eyebrow-line {
  width: 56px; height: 1px;
  background: var(--gold);
}
.hero__title {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(52px, 7.2vw, 112px);
  line-height: 0.95;
  letter-spacing: 0.005em;
  color: var(--ink);
  margin: 0 0 32px;
}
.hero__title em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  color: var(--gold);
  display: block;
  font-size: 0.42em;
  letter-spacing: 0.08em;
  margin-top: 24px;
}
.hero__lede {
  font-size: 20px;
  color: var(--ink-soft);
  line-height: 1.6;
  max-width: 460px;
  margin: 0 0 48px;
}
.hero__meta {
  display: flex;
  gap: 48px;
  padding-top: 28px;
  border-top: 1px solid var(--hairline-soft);
  flex-wrap: wrap;
}
.hero__meta-label {
  display: block;
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 8px;
}
.hero__meta-item strong {
  font-family: var(--display);
  font-weight: 400;
  font-size: 22px;
  color: var(--gold);
  letter-spacing: 0.04em;
}

.hero__visual {
  position: relative;
  height: 88vh;
  max-height: 800px;
}

.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}
.scroll-indicator span {
  display: block;
  font-family: var(--sans);
  font-size: 9.5px;
  letter-spacing: 0.4em;
  color: var(--ink-mute);
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 14px;
}
.scroll-indicator__line {
  width: 1px; height: 48px;
  background: linear-gradient(180deg, var(--gold) 0%, transparent 100%);
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}
.scroll-indicator__line::after {
  content: "";
  position: absolute;
  top: -48px; left: 0;
  width: 100%; height: 48px;
  background: linear-gradient(180deg, transparent 0%, var(--gold-hi) 100%);
  animation: scrollDot 2.4s ease-in-out infinite;
}
@keyframes scrollDot {
  0% { top: -48px; } 100% { top: 48px; }
}

/* ------------------------------------------------------------
   Bottle 3D stage (shared by hero + story)
   ------------------------------------------------------------ */
.bottle-stage {
  position: relative;
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  perspective: 1800px;
  perspective-origin: 50% 45%;
  will-change: transform, opacity;
}
.bottle-stage__glow {
  position: absolute;
  inset: -10%;
  background: radial-gradient(
    ellipse at 50% 55%,
    rgba(201, 162, 75, 0.22) 0%,
    rgba(201, 162, 75, 0.08) 28%,
    transparent 60%
  );
  filter: blur(30px);
  pointer-events: none;
  z-index: 0;
  animation: breathe 6s ease-in-out infinite;
}
@keyframes breathe {
  0%, 100% { opacity: 0.8; transform: scale(1); }
  50%      { opacity: 1;   transform: scale(1.05); }
}
.bottle-stage__3d {
  position: relative;
  width: auto;
  height: 100%;
  max-height: 88vh;
  aspect-ratio: 467 / 1184;
  transform-style: preserve-3d;
  transform: rotateY(0deg);
  z-index: 2;
  will-change: transform;
}
.bottle-face {
  position: absolute;
  inset: 0;
  display: flex; align-items: center; justify-content: center;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}
.bottle-face img {
  width: 100%; height: 100%;
  object-fit: contain;
  filter:
    drop-shadow(0 30px 60px rgba(0, 0, 0, 0.6))
    drop-shadow(0 0 40px rgba(201, 162, 75, 0.08));
}
.bottle-face--back { transform: rotateY(180deg); }

/* Three.js canvas — fills the 3D cage; hides the static img fallback */
.bottle-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}
.three-ready .bottle-stage__3d .bottle-face { display: none; }
.three-ready .bottle-stage__3d {
  transform: none !important;
  aspect-ratio: auto;
  width: 100%;
  max-height: none;
  height: 100%;
}

/* ------------------------------------------------------------
   Chapter shell
   ------------------------------------------------------------ */
.chapter {
  position: relative;
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(120px, 16vw, 220px) var(--gutter);
}
/* More air between sections — hairline separators reinforce the "chapter" feel */
.chapter + .chapter,
.story + .chapter,
.chapter + .story,
.chapter + .chapter--manifesto { border-top: 1px solid var(--hairline-soft); }
.chapter--question { padding-bottom: clamp(160px, 20vw, 280px); }

/* ------------------------------------------------------------
   I — La pregunta
   ------------------------------------------------------------ */
.chapter--question {
  text-align: center;
  padding-top: clamp(120px, 18vw, 220px);
  padding-bottom: clamp(120px, 18vw, 220px);
}
.chapter--question .chapter__head { justify-content: center; }
.chapter-question__title {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(44px, 6vw, 88px);
  line-height: 1.05;
  max-width: 900px;
  margin: 0 auto 40px;
  letter-spacing: 0.01em;
}
.chapter-question__title em {
  font-family: var(--serif);
  font-style: italic;
  color: var(--gold);
  font-weight: 300;
}
.chapter-question__lede {
  font-size: 22px;
  color: var(--ink-soft);
  font-style: italic;
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.5;
}

/* ------------------------------------------------------------
   II — Story / sticky bottle (Herencia)
   ------------------------------------------------------------ */
.story {
  position: relative;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.story__sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.story__sticky .bottle-stage__3d { max-height: 80vh; }

.story__panels {
  display: flex;
  flex-direction: column;
}
.panel {
  min-height: 100vh;
  padding: 6rem 0 6rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  /* GSAP handles enter; start hidden to avoid pre-JS flash */
  opacity: 0;
}
.panel__overline {
  font-family: var(--sans);
  font-size: 10.5px;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.panel__title {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(34px, 4.5vw, 56px);
  line-height: 1.1;
  letter-spacing: 0.005em;
  margin: 0 0 28px;
}
.panel__title em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  color: var(--gold);
}
.panel__text {
  font-size: 18px;
  color: var(--ink-soft);
  line-height: 1.7;
  max-width: 38ch;
  margin: 0;
}
.panel__text--drop::first-letter {
  font-family: var(--display);
  font-size: 68px;
  float: left;
  line-height: 0.9;
  padding: 4px 14px 0 0;
  color: var(--gold);
}

/* ------------------------------------------------------------
   III — Botánicos
   ------------------------------------------------------------ */
.chapter--botanicals { text-align: center; }
.chapter-botanicals__title {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(38px, 4.5vw, 64px);
  line-height: 1.1;
  margin: 0 0 24px;
  letter-spacing: 0.005em;
}
.chapter-botanicals__title em {
  font-family: var(--serif);
  font-style: italic;
  color: var(--gold);
  font-weight: 300;
}
.chapter-botanicals__lede {
  max-width: 600px;
  margin: 0 auto 60px;
  color: var(--ink-soft);
  font-size: 18px;
}

.botanicals-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--hairline-soft);
  border: 1px solid var(--hairline-soft);
  margin-top: 60px;
}
.botanical {
  background: var(--bg-2);
  padding: 70px 30px;
  position: relative;
  transition: background 0.5s var(--ease);
}
.botanical:hover { background: var(--bg-3); }
.botanical__icon {
  width: 64px; height: 64px;
  margin: 0 auto 28px;
  color: var(--gold);
}
.botanical__icon svg { width: 100%; height: 100%; }
.botanical h4 {
  font-family: var(--display);
  font-weight: 400;
  font-size: 24px;
  letter-spacing: 0.16em;
  margin: 0 0 14px;
  color: var(--ink);
  text-transform: uppercase;
}
.botanical p {
  font-family: var(--serif);
  font-style: italic;
  font-size: 15px;
  color: var(--ink-mute);
  line-height: 1.55;
  margin: 0;
}

/* ------------------------------------------------------------
   IV — La cata
   ------------------------------------------------------------ */
.chapter--tasting {
  padding-top: clamp(120px, 18vw, 200px);
  padding-bottom: clamp(120px, 18vw, 200px);
}
.tasting-quote {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.tasting-quote__mark {
  font-family: var(--display);
  font-size: 120px;
  line-height: 0.5;
  color: var(--gold);
  opacity: 0.4;
  display: block;
  margin-bottom: 40px;
}
.tasting-quote blockquote {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(32px, 3.6vw, 48px);
  line-height: 1.25;
  color: var(--ink);
  margin: 0 0 40px;
}
.tasting-quote blockquote em {
  font-family: var(--serif);
  font-style: italic;
  color: var(--gold);
  font-weight: 300;
}
.tasting-notes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  max-width: 1000px;
  margin: 100px auto 0;
  padding-top: 60px;
  border-top: 1px solid var(--hairline-soft);
}
.tasting-note { text-align: center; }
.tasting-note__label {
  display: block;
  font-family: var(--sans);
  font-size: 10.5px;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.tasting-note__value {
  display: block;
  font-family: var(--display);
  font-weight: 400;
  font-size: 26px;
  color: var(--ink);
  margin-bottom: 12px;
  letter-spacing: 0.02em;
}
.tasting-note__desc {
  font-family: var(--serif);
  font-style: italic;
  font-size: 15px;
  color: var(--ink-mute);
  line-height: 1.6;
  margin: 0;
}

/* ------------------------------------------------------------
   V — Manifesto
   ------------------------------------------------------------ */
.chapter--manifesto {
  position: relative;
  padding: clamp(140px, 18vw, 220px) var(--gutter);
  text-align: center;
  background:
    radial-gradient(ellipse at center, rgba(155, 42, 42, 0.08) 0%, transparent 60%),
    linear-gradient(180deg, transparent 0%, rgba(10, 9, 6, 0.6) 50%, transparent 100%);
  max-width: var(--max);
  margin: 0 auto;
}
.manifesto { max-width: 880px; margin: 0 auto; }
.manifesto .eyebrow { display: inline-block; margin-bottom: 36px; }
.manifesto__title {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(48px, 6.5vw, 96px);
  line-height: 1.02;
  margin: 0 0 48px;
  letter-spacing: 0.005em;
}
.manifesto__title-script {
  font-family: var(--serif);
  font-style: italic;
  color: var(--gold);
  font-weight: 300;
  display: block;
}
.manifesto__text {
  font-size: 21px;
  color: var(--ink-soft);
  line-height: 1.7;
  max-width: 680px;
  margin: 0 auto;
}
.manifesto__signature {
  margin-top: 72px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 16px;
  color: var(--ink-mute);
  letter-spacing: 0.1em;
}
.manifesto__signature::before {
  content: "";
  display: block;
  width: 40px; height: 1px;
  background: var(--gold);
  margin: 0 auto 20px;
}

/* ------------------------------------------------------------
   CTA
   ------------------------------------------------------------ */
.cta {
  position: relative;
  padding: clamp(120px, 16vw, 180px) var(--gutter);
  background:
    radial-gradient(1000px 600px at 50% 0%, rgba(201, 162, 75, 0.10), transparent 60%),
    linear-gradient(180deg, var(--bg) 0%, #080705 100%);
  border-top: 1px solid var(--hairline-soft);
  text-align: center;
}
.cta__inner {
  max-width: 720px;
  margin: 0 auto;
}
.cta .eyebrow { display: inline-block; margin-bottom: 32px; }
.cta__title {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(52px, 6vw, 86px);
  line-height: 1;
  margin: 0 0 24px;
  letter-spacing: 0.005em;
}
.cta__title em {
  font-family: var(--serif);
  font-style: italic;
  color: var(--gold);
  font-weight: 300;
}

.edition-card {
  margin: 48px auto 56px;
  padding: 40px 32px;
  border: 1px solid var(--hairline);
  max-width: 480px;
  position: relative;
  background: rgba(201, 162, 75, 0.03);
}
.edition-card::before,
.edition-card::after {
  content: "";
  position: absolute;
  width: 14px; height: 14px;
  border: 1px solid var(--gold);
}
.edition-card::before {
  top: -1px; left: -1px;
  border-right: none; border-bottom: none;
}
.edition-card::after {
  bottom: -1px; right: -1px;
  border-left: none; border-top: none;
}
.edition-card__format {
  display: block;
  font-family: var(--sans);
  font-size: 10.5px;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 14px;
}
.edition-card__name {
  display: block;
  font-family: var(--display);
  font-weight: 400;
  font-size: 22px;
  color: var(--gold);
  letter-spacing: 0.02em;
  line-height: 1.2;
  margin-bottom: 10px;
}
.edition-card__meta {
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  color: var(--ink-mute);
  margin: 0;
}

.cta-button {
  display: inline-block;
  position: relative;
  padding: 22px 60px;
  background: var(--gold);
  color: var(--bg);
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  font-weight: 500;
  border: none;
  cursor: pointer;
  overflow: hidden;
  transition: background 0.4s var(--ease), transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
  box-shadow: 0 20px 60px -20px rgba(201, 162, 75, 0.5);
}
.cta-button::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.4) 50%, transparent 100%);
  transform: translateX(-100%);
  transition: transform 0.8s ease;
}
.cta-button:hover {
  background: var(--gold-hi);
  transform: translateY(-2px);
  box-shadow: 0 30px 80px -20px rgba(232, 200, 119, 0.6);
}
.cta-button:hover::before { transform: translateX(100%); }

.cta__sub {
  margin-top: 32px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 15px;
  color: var(--ink-mute);
}

/* ------------------------------------------------------------
   Footer
   ------------------------------------------------------------ */
.footer {
  border-top: 1px solid var(--hairline-soft);
  background: #070604;
  padding: 60px var(--gutter) 48px;
}
.footer__row {
  max-width: var(--max);
  margin: 0 auto 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.footer__brand {
  font-family: var(--display);
  font-size: 13px;
  letter-spacing: 0.42em;
  color: var(--gold);
  text-transform: none;
}
.footer__age {
  padding: 6px 14px;
  border: 1px solid var(--hairline);
  color: var(--ink-soft);
}
.footer__legal {
  max-width: var(--max);
  margin: 24px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}
.footer__legal p {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.04em;
  text-transform: none;
  color: var(--ink-mute);
  line-height: 1.7;
  margin: 0 0 8px;
}
.footer__legal strong {
  color: var(--red);
  font-weight: 500;
}

/* ------------------------------------------------------------
   Responsive
   ------------------------------------------------------------ */
@media (max-width: 980px) {
  /* Global: kill any horizontal overflow safety net */
  html, body { max-width: 100%; overflow-x: clip; }

  /* Chapter heading stacks: rule line hides, year wraps, no nowrap busts */
  .chapter__head {
    flex-wrap: wrap;
    gap: 10px 16px;
    margin-bottom: 40px;
  }
  .chapter__rule { display: none; }
  .chapter__year { white-space: normal; font-size: 12px; flex-basis: 100%; text-align: left; }
  .chapter__num { font-size: 11px; }

  /* Bottle glow can't exceed its stage */
  .bottle-stage__glow { width: min(100%, 320px); height: min(100%, 320px); max-width: 100%; }

  .nav { padding: 20px var(--gutter); }
  .nav.is-scrolled { padding: 14px var(--gutter); }
  .nav__brand { font-size: 12px; letter-spacing: 0.32em; }
  .nav__cta { padding: 8px 16px; font-size: 9.5px; }

  .hero {
    grid-template-columns: 1fr;
    padding: 120px var(--gutter) 60px;
    gap: 40px;
    text-align: center;
  }
  .hero__visual { order: -1; height: 55vh; }
  .hero__text { margin: 0 auto; }
  .hero__lede { margin-left: auto; margin-right: auto; }
  .hero__meta { justify-content: center; gap: 24px; }
  .scroll-indicator { display: none; }

  .story { grid-template-columns: 1fr; }
  .story__sticky {
    top: 4rem;
    height: 50vh;
  }
  .story__sticky .bottle-stage__3d { max-height: 45vh; }
  .panel {
    min-height: 70vh;
    padding: 4rem 0;
    text-align: center;
  }
  .panel__text { margin: 0 auto; }

  .botanicals-grid { grid-template-columns: 1fr; }
  .tasting-notes { grid-template-columns: 1fr; gap: 40px; }

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

@media (max-width: 520px) {
  .nav__cta { display: none; }
  .hero__title { font-size: clamp(40px, 12vw, 56px); }

  /* Narrow mobile: smaller hero padding, tighter hero, hide chapter year */
  .hero { padding: 88px var(--gutter) 48px; gap: 24px; }
  .hero__visual { height: 42vh; }
  .hero__lede { font-size: 17px; }
  .hero__meta { gap: 1.5rem; padding-top: 1.25rem; }
  .hero__meta-item strong { font-size: 18px; }

  .chapter__year { display: none; }
  .chapter { padding: 6rem var(--gutter); }
  .chapter--question, .chapter--tasting { padding-top: 5rem; padding-bottom: 5rem; }
  .chapter--manifesto { padding: 6rem var(--gutter); }

  /* Story bottle slightly smaller on narrow mobile */
  .story__sticky .bottle-stage__3d { max-height: 42vh; }
  .panel { min-height: 60vh; padding: 2.5rem 0; }
  .panel__title { font-size: clamp(1.7rem, 7vw, 2.4rem); }
  .panel__text { font-size: 17px; }

  /* Manifesto / botanicals / tasting headings shrink */
  .chapter-question__title { font-size: clamp(34px, 9vw, 48px); }
  .chapter-question__lede { font-size: 18px; }
  .chapter-botanicals__title { font-size: clamp(30px, 8vw, 42px); }
  .tasting-quote blockquote { font-size: clamp(26px, 7vw, 36px); }
  .tasting-quote__mark { font-size: 80px; margin-bottom: 1.5rem; }
  .manifesto__title { font-size: clamp(38px, 10vw, 56px); }
  .cta__title { font-size: clamp(38px, 9vw, 56px); }
  .cta-button { padding: 1.1rem 2.25rem; font-size: 11px; letter-spacing: 0.32em; }
  .edition-card { padding: 2rem 1.5rem; }
}

/* ------------------------------------------------------------
   Reduced motion
   ------------------------------------------------------------ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

/* ---------- Age gate modal ---------- */
/* Hidden by default; revealed only when <html> carries the age-locked
   class (set synchronously by the pre-paint script in <head>), so
   returning visitors never see a flash of the modal. */
.age-gate { display: none; }
.age-gate[hidden] { display: none; }

html.age-locked .age-gate {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  isolation: isolate;
}

.age-gate__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(11, 10, 8, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.age-gate__frame {
  position: relative;
  width: 100%;
  max-width: 440px;
  padding: clamp(36px, 6vw, 56px) clamp(28px, 5vw, 56px);
  background: var(--bg-2);
  border: 1px solid var(--hairline);
  text-align: center;
  box-shadow: 0 40px 120px -30px rgba(0, 0, 0, 0.85),
              0 0 0 1px rgba(201, 162, 75, 0.04);
  animation: ageGateIn 0.6s var(--ease) both;
}
@keyframes ageGateIn {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

.age-gate__frame::before,
.age-gate__frame::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  border: 1px solid var(--gold);
  pointer-events: none;
}
.age-gate__frame::before {
  top: -1px; left: -1px;
  border-right: none;
  border-bottom: none;
}
.age-gate__frame::after {
  bottom: -1px; right: -1px;
  border-left: none;
  border-top: none;
}

.age-gate__content { position: relative; }
.age-gate__content[hidden] { display: none; }

.age-gate__eyebrow {
  display: inline-block;
  font-family: var(--sans);
  font-size: 10.5px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
}

.age-gate__title {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(34px, 5vw, 48px);
  line-height: 1.06;
  letter-spacing: 0.005em;
  color: var(--ink);
  margin: 0 0 20px;
}
.age-gate__title em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  color: var(--gold);
}
.age-gate__title--small {
  font-size: clamp(26px, 3.6vw, 36px);
}

.age-gate__subtitle {
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin: 0 auto 36px;
  max-width: 38ch;
}

.age-gate__actions {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: stretch;
  margin-bottom: 28px;
}

.age-gate__btn {
  display: inline-block;
  width: 100%;
  min-height: 52px;
  padding: 18px 32px;
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-weight: 500;
  cursor: pointer;
  border: 1px solid transparent;
  transition: background 0.35s var(--ease), color 0.35s var(--ease),
              border-color 0.35s var(--ease), transform 0.35s var(--ease);
}
.age-gate__btn:focus-visible {
  outline: 2px solid var(--gold-hi);
  outline-offset: 3px;
}

.age-gate__btn--yes {
  box-shadow: 0 16px 40px -18px rgba(201, 162, 75, 0.55);
}

.age-gate__btn--no {
  background: transparent;
  color: var(--ink-soft);
  border-color: var(--hairline);
}
.age-gate__btn--no:hover {
  color: var(--gold);
  border-color: var(--gold);
  background: rgba(201, 162, 75, 0.04);
}

.age-gate__rule {
  display: block;
  width: 40px;
  height: 1px;
  background: var(--gold);
  margin: 28px auto;
}

.age-gate__legal {
  font-family: var(--serif);
  font-style: italic;
  font-size: 13px;
  color: var(--ink-mute);
  letter-spacing: 0.04em;
  margin: 0;
}

html.age-gate-locked,
html.age-gate-locked body,
html.age-locked,
html.age-locked body {
  overflow: hidden;
}

@media (max-width: 520px) {
  .age-gate { padding: 16px; }
  .age-gate__frame { padding: 40px 24px; }
  .age-gate__subtitle { font-size: 16px; }
  .age-gate__btn {
    min-height: 48px;
    font-size: 11px;
    letter-spacing: 0.28em;
  }
}
