/* ─── TOKENS ─────────────────────────────────────────────── */
:root {
  --black-cherry:   #640D14;
  --brown-red:      #AD2831;
  --golden-apricot: #D8973C;
  --pearl-beige:    #F3E6BD;
  --near-black:     #0A0005;
}

/* ─── RESET & BASE ───────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--near-black);
  color: var(--pearl-beige);
  font-family: 'Raleway', sans-serif;
  font-weight: 300;
  line-height: 1.75;
  overflow-x: hidden;
}

/* ─── NAV ────────────────────────────────────────────────── */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 4rem;
  background: linear-gradient(to bottom, rgba(10,0,5,0.85) 0%, transparent 100%);
  transition: background 0.4s ease;
}

.nav.scrolled {
  background: rgba(10,0,5,0.96);
}

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.4em;
  color: var(--golden-apricot);
  text-decoration: none;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 2.5rem;
}

.nav-links a {
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--pearl-beige);
  text-decoration: none;
  opacity: 0.6;
  transition: opacity 0.3s, color 0.3s;
}

.nav-links a:hover { opacity: 1; color: var(--golden-apricot); }

/* ─── HERO ───────────────────────────────────────────────── */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--near-black);
  overflow: hidden;
}

#particles-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 25%, rgba(10,0,5,0.65) 100%);
  pointer-events: none;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}

.hero-eyebrow {
  font-size: 0.65rem;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--golden-apricot);
  opacity: 0.85;
  animation: fade-up 1.1s ease 0.2s both;
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 11vw, 9rem);
  font-weight: 300;
  letter-spacing: 0.22em;
  color: var(--pearl-beige);
  line-height: 1;
  animation: fade-up 1.1s ease 0.45s both;
}

.hero-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1rem, 2.2vw, 1.5rem);
  font-weight: 300;
  color: var(--golden-apricot);
  letter-spacing: 0.08em;
  animation: fade-up 1.1s ease 0.65s both;
}

.hero-cta {
  display: inline-block;
  margin-top: 0.75rem;
  padding: 0.85rem 2.5rem;
  border: 1px solid var(--golden-apricot);
  color: var(--golden-apricot);
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.35s, color 0.35s;
  animation: fade-up 1.1s ease 0.85s both;
}

.hero-cta:hover {
  background: var(--golden-apricot);
  color: var(--near-black);
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  animation: fade-up 1.1s ease 1.2s both;
}

.hero-scroll span {
  font-size: 0.55rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--pearl-beige);
  opacity: 0.35;
}

.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(243,230,189,0.5), transparent);
  animation: scroll-pulse 2s ease-in-out infinite;
}

@keyframes scroll-pulse {
  0%, 100% { transform: scaleY(1);   opacity: 0.5; }
  50%       { transform: scaleY(0.4); opacity: 0.1; }
}

@keyframes fade-up {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0);    }
}

/* ─── SHARED ─────────────────────────────────────────────── */
.section-inner {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 2rem;
}

.sparkle {
  display: block;
  font-size: 1.1rem;
  color: var(--golden-apricot);
  margin-bottom: 1.5rem;
}

/* ─── BRAND STORY ────────────────────────────────────────── */
.story {
  padding: 9rem 2rem;
  text-align: center;
  background: linear-gradient(to bottom, var(--near-black), var(--black-cherry));
}

.story h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.4rem, 3vw, 2.4rem);
  font-weight: 300;
  line-height: 1.45;
  color: var(--pearl-beige);
  margin-bottom: 2rem;
}

.story p {
  font-size: 0.9rem;
  color: var(--pearl-beige);
  opacity: 0.7;
  max-width: 540px;
  margin: 0 auto 1rem;
  letter-spacing: 0.02em;
}

/* ─── LUMEN NOIR ─────────────────────────────────────────── */
.lumen-noir {
  padding: 9rem 2rem;
  background: var(--black-cherry);
}

.lumen-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 5rem;
  align-items: center;
}

.product-label {
  font-size: 0.6rem;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--golden-apricot);
  margin-bottom: 0.75rem;
}

.lumen-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 300;
  letter-spacing: 0.22em;
  color: var(--pearl-beige);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.lumen-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  color: var(--golden-apricot);
  margin-bottom: 1.5rem;
}

.lumen-desc {
  font-size: 0.88rem;
  color: var(--pearl-beige);
  opacity: 0.75;
  margin-bottom: 2rem;
  max-width: 380px;
  line-height: 1.8;
}

.lumen-notes {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-bottom: 2.5rem;
  padding: 1.5rem 1.5rem 1.5rem 1.25rem;
  border-left: 1px solid rgba(216,151,60,0.35);
}

.note { display: flex; gap: 1rem; font-size: 0.78rem; }

.note-label {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  color: var(--golden-apricot);
  width: 3.5rem;
  flex-shrink: 0;
  letter-spacing: 0.08em;
}

.note-value {
  color: var(--pearl-beige);
  opacity: 0.72;
  letter-spacing: 0.04em;
}

.cta-link {
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--golden-apricot);
  text-decoration: none;
  border-bottom: 1px solid rgba(216,151,60,0.35);
  padding-bottom: 3px;
  transition: border-color 0.3s;
}

.cta-link:hover { border-color: var(--golden-apricot); }

/* ─── BOTTLE ─────────────────────────────────────────────── */
.lumen-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.bottle {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  filter: drop-shadow(0 24px 48px rgba(100,13,20,0.5));
}

/* Gold rectangular cap — LORE inspired */
.bottle-cap {
  width: 108px;
  height: 58px;
  background: linear-gradient(160deg, #ead068 0%, #c49828 35%, #9e7515 60%, #d4aa40 100%);
  border-radius: 6px 6px 2px 2px;
  position: relative;
  z-index: 2;
}

.bottle-cap::after {
  content: '';
  position: absolute;
  bottom: 10px;
  left: 14px;
  right: 14px;
  height: 1px;
  background: rgba(255,255,255,0.18);
}

/* Organic rounded body — no neck, flows from cap */
.bottle-body {
  position: relative;
  width: 164px;
  height: 218px;
  background: linear-gradient(
    165deg,
    #3e0c10 0%,
    #190304 22%,
    #2e0709 48%,
    #4b0e15 74%,
    #190304 100%
  );
  border-radius: 46% 46% 50% 50% / 18% 18% 52% 52%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Left-side glass shine */
.bottle-shine {
  position: absolute;
  top: 6%;
  left: 8%;
  width: 25%;
  height: 54%;
  background: linear-gradient(
    148deg,
    rgba(255,255,255,0.14) 0%,
    rgba(255,255,255,0.05) 45%,
    transparent 70%
  );
  border-radius: 50%;
  pointer-events: none;
}

/* Right-edge highlight */
.bottle-body::before {
  content: '';
  position: absolute;
  top: 22%;
  right: 7%;
  width: 5%;
  height: 32%;
  background: linear-gradient(to bottom, rgba(255,255,255,0.09), transparent);
  border-radius: 50%;
}

.bottle-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 105px;
  height: 105px;
  background: radial-gradient(circle, rgba(216,151,60,0.16) 0%, transparent 70%);
  border-radius: 50%;
  animation: bottle-glow 3.5s ease-in-out infinite;
}

@keyframes bottle-glow {
  0%, 100% { opacity: 0.4; transform: translate(-50%, -50%) scale(1);   }
  50%       { opacity: 1;   transform: translate(-50%, -50%) scale(1.45); }
}

.bottle-labels {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}

.bottle-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.58rem;
  letter-spacing: 0.4em;
  text-indent: 0.4em;
  color: rgba(243,230,189,0.65);
  text-shadow: 0 0 14px rgba(216,151,60,0.25);
  line-height: 1;
}

.bottle-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.38rem;
  letter-spacing: 0.32em;
  text-indent: 0.32em;
  color: rgba(243,230,189,0.3);
  line-height: 1;
}

/* Subtle floor reflection like LORE photo */
.bottle-reflection {
  width: 110px;
  height: 22px;
  background: radial-gradient(ellipse, rgba(100,13,20,0.5) 0%, transparent 72%);
  margin-top: 4px;
  filter: blur(5px);
}

/* ─── WAITLIST ───────────────────────────────────────────── */
.waitlist {
  padding: 9rem 2rem;
  text-align: center;
  background: linear-gradient(to bottom, var(--black-cherry), var(--near-black));
}

.waitlist h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 300;
  color: var(--pearl-beige);
  margin-bottom: 1rem;
}

.waitlist p {
  font-size: 0.88rem;
  color: var(--pearl-beige);
  opacity: 0.65;
  max-width: 460px;
  margin: 0 auto 2.5rem;
}

.waitlist-form {
  display: flex;
  max-width: 440px;
  margin: 0 auto 1rem;
}

.waitlist-form input {
  flex: 1;
  padding: 0.9rem 1.2rem;
  background: rgba(243,230,189,0.06);
  border: 1px solid rgba(243,230,189,0.2);
  border-right: none;
  color: var(--pearl-beige);
  font-family: 'Raleway', sans-serif;
  font-size: 0.85rem;
  font-weight: 300;
  outline: none;
  transition: border-color 0.3s, background 0.3s;
}

.waitlist-form input::placeholder { color: rgba(243,230,189,0.3); }
.waitlist-form input:focus {
  border-color: rgba(216,151,60,0.5);
  background: rgba(243,230,189,0.1);
}

.waitlist-form button {
  padding: 0.9rem 1.4rem;
  background: var(--golden-apricot);
  color: var(--near-black);
  border: none;
  font-family: 'Raleway', sans-serif;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.3s;
}

.waitlist-form button:hover   { background: var(--pearl-beige); }
.waitlist-form button:disabled { opacity: 0.8; cursor: default; }

.waitlist-note {
  font-size: 0.65rem;
  opacity: 0.35;
  letter-spacing: 0.05em;
}

/* ─── FOOTER ─────────────────────────────────────────────── */
.footer {
  padding: 4rem 2rem;
  background: var(--near-black);
  border-top: 1px solid rgba(216,151,60,0.12);
}

.footer-inner {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.9rem;
  letter-spacing: 0.4em;
  color: var(--golden-apricot);
}

.footer-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.88rem;
  color: var(--pearl-beige);
  opacity: 0.45;
}

.footer-links {
  display: flex;
  gap: 2rem;
  margin: 0.5rem 0;
}

.footer-links a {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--pearl-beige);
  text-decoration: none;
  opacity: 0.45;
  transition: opacity 0.3s, color 0.3s;
}

.footer-links a:hover { opacity: 1; color: var(--golden-apricot); }

.footer-copy {
  font-size: 0.6rem;
  opacity: 0.2;
  letter-spacing: 0.1em;
}

/* ─── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 768px) {
  .nav { padding: 1.25rem 1.5rem; }
  .nav-links { gap: 1.5rem; }

  .lumen-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .lumen-visual { order: -1; }

  .waitlist-form {
    flex-direction: column;
  }

  .waitlist-form input {
    border-right: 1px solid rgba(243,230,189,0.2);
    border-bottom: none;
  }
}

@media (max-width: 480px) {
  .nav-links { display: none; }
  .hero-title { letter-spacing: 0.12em; }
}
