:root {
  --cream: #F5EFE3;
  --cream-light: #FAF6EC;
  --cream-dark: #EDE4D3;
  --sage: #7A9A82;
  --sage-deep: #5A7A6A;
  --gold: #B8924A;
  --gold-soft: #D4B585;
  --ink: #1C1710;
  --tan: #7A6448;
  --tan-soft: #A08C6E;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--cream);
  color: var(--ink);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 300;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

a { color: inherit; }

/* ── Header / nav ───────────────────────────────────────── */

header {
  position: absolute;
  top: 0; left: 0; right: 0;
  padding: 2.25rem 3.5rem;
  z-index: 10;
}
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}
.wordmark {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 400;
  letter-spacing: 0.32em;
  font-size: 0.95rem;
  text-transform: uppercase;
  color: var(--ink);
}
.nav-link {
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--tan);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  padding-bottom: 0.25rem;
  transition: color .35s, border-color .35s;
}
.nav-link:hover { color: var(--ink); border-color: var(--gold); }

/* ── Hero ───────────────────────────────────────────────── */

.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 4rem;
  padding: 8rem 5rem 4rem;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  inset: -10% -30% auto auto;
  width: 60vw;
  height: 60vw;
  background: radial-gradient(circle, rgba(184,146,74,0.07) 0%, transparent 60%);
  z-index: -1;
  pointer-events: none;
}

.hero-text {
  max-width: 34rem;
  padding-left: 1.5rem;
  border-left: 1px solid rgba(184, 146, 74, 0.35);
}

.eyebrow {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.32em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 2.25rem;
  font-weight: 400;
}

h1 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 300;
  font-size: clamp(3.25rem, 7.5vw, 6.25rem);
  line-height: 0.96;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 2.25rem;
}
h1 em {
  font-style: italic;
  font-weight: 300;
  color: var(--sage-deep);
}

.lede {
  font-size: 1.1rem;
  color: rgba(28, 23, 16, 0.72);
  max-width: 30rem;
  margin-bottom: 2.75rem;
  line-height: 1.65;
}

.cta {
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--gold);
  padding: 0.1rem 0 0.55rem;
  transition: color .35s, padding .35s, border-color .35s;
}
.cta span { display: inline-block; transition: transform .35s; margin-left: 0.4rem; }
.cta:hover { color: var(--sage-deep); border-color: var(--sage); }
.cta:hover span { transform: translateX(0.35rem); }

.cta-large {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.4rem;
  letter-spacing: 0.06em;
  text-transform: none;
  font-weight: 400;
  padding-bottom: 0.6rem;
  border-bottom-width: 1px;
}

.hero-bottle {
  display: flex;
  justify-content: center;
  align-items: center;
  height: min(85vh, 800px);
  position: relative;
}
.hero-bottle::after {
  content: "";
  position: absolute;
  bottom: 4%;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 30px;
  background: radial-gradient(ellipse, rgba(28, 23, 16, 0.2) 0%, transparent 70%);
  filter: blur(6px);
  z-index: -1;
}
.hero-bottle svg {
  height: 100%;
  width: auto;
  max-width: 100%;
  filter: drop-shadow(0 22px 40px rgba(28,23,16,0.10)) drop-shadow(0 4px 12px rgba(28,23,16,0.05));
}

/* ── Story ──────────────────────────────────────────────── */

.story {
  padding: 11rem 3rem;
  text-align: center;
  background: var(--cream-light);
  position: relative;
}
.story::before, .story::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 1px;
  height: 3.5rem;
  background: linear-gradient(to bottom, transparent, var(--gold) 50%, transparent);
}
.story::before { top: 4rem; }
.story::after { bottom: 4rem; }
.story p {
  max-width: 42rem;
  margin: 0 auto;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.5rem, 3.2vw, 2.4rem);
  font-weight: 300;
  line-height: 1.4;
  color: var(--ink);
  font-style: italic;
}
.story-end {
  display: block;
  margin-top: 0.5rem;
  color: var(--sage-deep);
}

/* ── Ingredients ────────────────────────────────────────── */

.ingredients {
  padding: 9rem 3rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3.5rem;
  max-width: 80rem;
  margin: 0 auto;
}
.ingredient {
  text-align: left;
  border-top: 1px solid var(--gold);
  padding-top: 2.25rem;
  position: relative;
}
.ingredient .num {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 0.95rem;
  letter-spacing: 0.15em;
  color: var(--gold);
  display: block;
  margin-bottom: 1.5rem;
}
.ingredient h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.35rem, 2.2vw, 1.65rem);
  font-weight: 400;
  margin-bottom: 1.1rem;
  color: var(--ink);
  letter-spacing: -0.005em;
}
.ingredient p {
  font-size: 0.95rem;
  color: var(--tan);
  line-height: 1.65;
}

/* ── Waitlist ───────────────────────────────────────────── */

.waitlist {
  padding: 11rem 3rem;
  text-align: center;
  background: var(--cream-dark);
  position: relative;
}
.waitlist .eyebrow {
  margin-bottom: 1.75rem;
}
.waitlist h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 300;
  font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 1.5rem;
}
.waitlist .lede {
  margin: 0 auto 2.5rem;
  text-align: center;
}

/* ── Footer ─────────────────────────────────────────────── */

footer {
  padding: 4.5rem 3rem 3rem;
  text-align: center;
  background: var(--cream);
}
footer .wordmark {
  display: block;
  margin-bottom: 1.25rem;
}
footer .meta {
  font-size: 0.85rem;
  color: var(--tan-soft);
  letter-spacing: 0.04em;
  margin: 0.35rem 0;
}
footer .tiny {
  font-size: 0.72rem;
  margin-top: 1.25rem;
  letter-spacing: 0.06em;
}

/* ── Reveal animations ──────────────────────────────────── */

.hero-text > * {
  opacity: 0;
  transform: translateY(18px);
  animation: fadeUp .9s cubic-bezier(.2,.7,.2,1) forwards;
}
.hero-text > .eyebrow { animation-delay: .15s; }
.hero-text > h1       { animation-delay: .35s; }
.hero-text > .lede    { animation-delay: .65s; }
.hero-text > .cta     { animation-delay: .85s; }

.hero-bottle {
  opacity: 0;
  animation: fadeIn 1.4s ease forwards .25s;
}

@keyframes fadeUp { to { opacity: 1; transform: none; } }
@keyframes fadeIn { to { opacity: 1; } }

@media (prefers-reduced-motion: reduce) {
  .hero-text > *, .hero-bottle { animation: none !important; opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}

/* ── Responsive ─────────────────────────────────────────── */

@media (max-width: 1000px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 7rem 2rem 3rem;
    gap: 2rem;
    text-align: left;
  }
  .hero-text { order: 2; padding-left: 1.25rem; }
  .hero-bottle { order: 1; height: 60vh; max-height: 500px; }
  .ingredients { grid-template-columns: 1fr; gap: 3rem; padding: 6rem 2rem; }
  header { padding: 1.5rem 2rem; }
  .story { padding: 7rem 2rem; }
  .waitlist { padding: 7rem 2rem; }
}

@media (max-width: 600px) {
  body { font-size: 16px; }
  header { padding: 1.25rem 1.5rem; }
  .wordmark { font-size: 0.85rem; letter-spacing: 0.28em; }
  .nav-link { font-size: 0.72rem; }
  .hero { padding-top: 6rem; }
  .hero-text { padding-left: 1rem; }
  .lede { font-size: 1.02rem; }
  .ingredient { padding-top: 1.75rem; }
}
