/* ─── 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;
  overflow-x: hidden;
}

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

/* ─── 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%;
  pointer-events: none;
}

.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: 0;
  right: 0;
  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;
  text-align: center;
}

.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;
}

/* ─── MARQUEE ────────────────────────────────────────────── */
.marquee {
  background: var(--near-black);
  padding: 1.1rem 0;
  overflow: hidden;
  border-top: 1px solid rgba(216,151,60,0.1);
  border-bottom: 1px solid rgba(216,151,60,0.1);
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee-scroll 36s linear infinite;
}

.marquee-content {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  padding-right: 2.5rem;
  white-space: nowrap;
}

.marquee-content span {
  font-family: 'Raleway', sans-serif;
  font-size: 0.55rem;
  font-weight: 400;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--golden-apricot);
  opacity: 0.55;
}

.marquee-dot {
  font-size: 0.65rem !important;
  opacity: 0.3 !important;
  letter-spacing: 0 !important;
}

@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.marquee--reverse .marquee-track {
  animation-direction: reverse;
}

/* ─── CHAPTER (Mission & Vision) ─────────────────────────── */
.chapter {
  position: relative;
  padding: 10rem 2rem;
  text-align: center;
  background:
    radial-gradient(ellipse at 25% 0%, #1c0608 0%, var(--near-black) 70%);
  overflow: hidden;
}

.chapter--alt {
  background:
    radial-gradient(ellipse at 75% 100%, #160505 0%, var(--near-black) 65%);
}

.chapter::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(216,151,60,0.022) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
  z-index: 0;
}

.chapter-inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
}

.chapter-label {
  display: block;
  font-size: 0.58rem;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--golden-apricot);
  opacity: 0.72;
  margin-bottom: 2.5rem;
}

.chapter-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 300;
  color: var(--pearl-beige);
  line-height: 1.25;
  margin-bottom: 2.5rem;
  letter-spacing: 0.02em;
}

.chapter-heading em {
  color: var(--golden-apricot);
  font-style: italic;
}

.chapter-body {
  font-size: 0.88rem;
  color: var(--pearl-beige);
  opacity: 0.62;
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.95;
  letter-spacing: 0.02em;
}

/* ─── FOUNDER ────────────────────────────────────────────── */
.founder {
  background:
    radial-gradient(ellipse at 50% 0%, #1f0609 0%, var(--near-black) 55%);
  position: relative;
}

.founder-photo-frame {
  width: 100%;
  max-width: 340px;
  aspect-ratio: 3 / 4;
  margin: 0 auto 5rem;
  border: 1px solid rgba(216,151,60,0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.founder-photo-frame::before,
.founder-photo-frame::after {
  content: '';
  position: absolute;
  width: 14px;
  height: 14px;
  border-color: rgba(216,151,60,0.25);
  border-style: solid;
}

.founder-photo-frame::before {
  top: -1px;
  left: -1px;
  border-width: 1px 0 0 1px;
}

.founder-photo-frame::after {
  bottom: -1px;
  right: -1px;
  border-width: 0 1px 1px 0;
}

.founder-photo-frame p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  color: var(--pearl-beige);
  opacity: 0.12;
  font-style: italic;
}

.founder-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
  display: block;
  filter: brightness(0.88) contrast(1.05);
}

.founder-opening {
  padding: 10rem 2rem 6rem;
  text-align: center;
}

.founder-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.7rem, 3.8vw, 3rem);
  font-weight: 300;
  font-style: italic;
  color: var(--pearl-beige);
  line-height: 1.5;
  max-width: 700px;
  margin: 0 auto;
  border: none;
  padding: 0;
}

.founder-editorial {
  max-width: 580px;
  margin: 0 auto;
  padding: 0 2rem 5rem;
}

.founder-editorial p {
  font-family: 'Raleway', sans-serif;
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--pearl-beige);
  opacity: 0.68;
  line-height: 2;
  margin-bottom: 1.4rem;
}

.founder-pull {
  font-family: 'Cormorant Garamond', serif !important;
  font-size: clamp(1.2rem, 2.5vw, 1.75rem) !important;
  font-style: italic;
  font-weight: 300 !important;
  color: var(--golden-apricot) !important;
  opacity: 1 !important;
  text-align: center;
  padding: 2.5rem 0 !important;
  border-top: 1px solid rgba(216,151,60,0.15);
  border-bottom: 1px solid rgba(216,151,60,0.15);
  margin: 0.5rem 0 2rem !important;
  line-height: 1.5 !important;
  letter-spacing: 0.02em;
}

.founder-em {
  color: var(--golden-apricot);
  font-style: italic;
}

.founder-close {
  padding: 2rem 2rem 8rem;
  text-align: center;
}

.founder-sign {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-style: italic;
  font-weight: 300;
  color: var(--pearl-beige);
  opacity: 0.78;
  margin-bottom: 0.6rem;
}

.founder-sig {
  font-family: 'Raleway', sans-serif;
  font-size: 0.65rem;
  font-weight: 300;
  color: var(--pearl-beige);
  opacity: 0.28;
  letter-spacing: 0.18em;
  margin-bottom: 4rem;
}

.founder-values {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.1rem;
  flex-wrap: wrap;
  padding-top: 3rem;
  border-top: 1px solid rgba(216,151,60,0.1);
  max-width: 560px;
  margin: 0 auto;
}

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

.founder-values .dot {
  color: var(--golden-apricot);
  opacity: 0.4;
  letter-spacing: 0;
  font-size: 0.75rem;
}

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

.lumen-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  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-pronounce {
  font-family: 'Raleway', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  color: var(--golden-apricot);
  opacity: 0.7;
  margin-bottom: 1rem;
  text-transform: lowercase;
}

.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.5rem;
  margin-bottom: 2.5rem;
  padding: 1.25rem 1.25rem 1.25rem 1rem;
  border-left: 1px solid rgba(216,151,60,0.3);
}

.note { display: flex; gap: 1rem; font-size: 0.75rem; align-items: baseline; }

.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.65;
  letter-spacing: 0.06em;
}

.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));
}

/* Bottle cap — slim, architectural */
.bottle-cap {
  width: 64px;
  height: 40px;
  background: linear-gradient(160deg, #f2dc78 0%, #c8980e 40%, #a07810 65%, #d8b440 100%);
  border-radius: 3px 3px 0 0;
  position: relative;
  z-index: 2;
  box-shadow: 0 -2px 12px rgba(216,151,60,0.2);
}

.bottle-cap::before {
  content: '';
  position: absolute;
  top: 8px;
  left: 10px;
  right: 10px;
  height: 1px;
  background: rgba(255,255,255,0.2);
}

.bottle-cap::after {
  content: '';
  position: absolute;
  top: 0;
  left: 8px;
  width: 30%;
  height: 100%;
  background: linear-gradient(to right, rgba(255,255,255,0.12), transparent);
  border-radius: 3px 0 0 0;
}

/* Elegant rectangular body */
.bottle-body {
  position: relative;
  width: 148px;
  height: 240px;
  background: linear-gradient(
    160deg,
    #3a0b0f 0%,
    #150203 20%,
    #260608 45%,
    #3e0c11 72%,
    #150203 100%
  );
  border-radius: 6px 6px 14px 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow:
    inset 0 0 40px rgba(0,0,0,0.5),
    0 20px 60px rgba(10,0,5,0.7),
    0 0 0 1px rgba(216,151,60,0.08);
}

/* Left glass shine */
.bottle-shine {
  position: absolute;
  top: 5%;
  left: 6%;
  width: 18%;
  height: 62%;
  background: linear-gradient(
    155deg,
    rgba(255,255,255,0.12) 0%,
    rgba(255,255,255,0.04) 50%,
    transparent 75%
  );
  border-radius: 50%;
  pointer-events: none;
}

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

/* Engraving line on body */
.bottle-body::after {
  content: '';
  position: absolute;
  bottom: 28%;
  left: 18%;
  right: 18%;
  height: 1px;
  background: rgba(216,151,60,0.12);
}

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

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

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

.bottle-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.55rem;
  letter-spacing: 0.45em;
  color: rgba(243,230,189,0.55);
  text-shadow: 0 0 12px rgba(216,151,60,0.2);
  line-height: 1;
}

.bottle-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.34rem;
  letter-spacing: 0.35em;
  color: rgba(243,230,189,0.25);
  line-height: 1;
}

/* Floor reflection */
.bottle-reflection {
  width: 90px;
  height: 18px;
  background: radial-gradient(ellipse, rgba(100,13,20,0.45) 0%, transparent 72%);
  margin-top: 6px;
  filter: blur(6px);
}

/* ─── 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: 5rem 4rem 3rem;
  background: var(--near-black);
  border-top: 1px solid rgba(216,151,60,0.1);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 4rem;
  max-width: 860px;
  margin: 0 auto;
  padding-bottom: 3.5rem;
}

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

.footer-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.85rem;
  color: var(--pearl-beige);
  opacity: 0.4;
  margin-bottom: 1.25rem;
}

.footer-meaning {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.7rem;
  font-style: italic;
  color: var(--pearl-beige);
  opacity: 0.2;
  letter-spacing: 0.04em;
  line-height: 1.7;
  max-width: 220px;
}

.footer-col-label {
  font-size: 0.52rem;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--golden-apricot);
  opacity: 0.45;
  margin-bottom: 1.25rem;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.footer-nav a {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  color: var(--pearl-beige);
  text-decoration: none;
  opacity: 0.35;
  transition: opacity 0.3s, color 0.3s;
  width: fit-content;
}

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

.footer-bottom {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.footer-divider {
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(216,151,60,0.12), transparent);
  margin-bottom: 1.75rem;
}

.footer-copy {
  font-size: 0.58rem;
  opacity: 0.18;
  letter-spacing: 0.12em;
}

/* ─── SCROLL REVEAL ──────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(35px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.psych-card--delay { transition-delay: 0.18s; }

/* ─── CURSOR ─────────────────────────────────────────────── */
.cursor-active, .cursor-active a, .cursor-active button { cursor: none; }

.cursor-glow {
  position: fixed;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(216,151,60,0.07) 0%, transparent 70%);
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: left 0.1s ease, top 0.1s ease;
  z-index: 9997;
  mix-blend-mode: screen;
}

.cursor-sparkle {
  position: fixed;
  pointer-events: none;
  z-index: 10000;
  transform: translate(-50%, -50%);
  font-size: 1rem;
  color: var(--golden-apricot);
  text-shadow: 0 0 10px rgba(216,151,60,0.9), 0 0 20px rgba(216,151,60,0.4);
  user-select: none;
  transition: transform 0.15s ease, color 0.15s ease;
  line-height: 1;
}

.cursor-sparkle.hovered {
  transform: translate(-50%, -50%) scale(1.6);
  color: var(--pearl-beige);
}

.sparkle-particle {
  position: fixed;
  pointer-events: none;
  z-index: 9998;
  color: var(--golden-apricot);
  user-select: none;
  animation: sparkle-float 0.9s ease forwards;
  line-height: 1;
}

@keyframes sparkle-float {
  0%   { opacity: 0.9; transform: translate(-50%, -50%) scale(1) rotate(0deg); }
  100% { opacity: 0;   transform: translate(-50%, -180%) scale(0.2) rotate(45deg); }
}

/* ─── STORY FOLDER LINE ──────────────────────────────────── */
.folder-line {
  font-family: 'Cormorant Garamond', serif !important;
  font-size: clamp(1.2rem, 2.5vw, 1.8rem) !important;
  font-style: italic;
  color: var(--golden-apricot) !important;
  opacity: 1 !important;
  letter-spacing: 0.05em;
  padding: 2rem 0;
  max-width: 100% !important;
}

/* ─── PSYCHOLOGY ─────────────────────────────────────────── */
.psych {
  padding: 10rem 2rem;
  background: var(--near-black);
  text-align: center;
  position: relative;
  border-top: 1px solid rgba(216,151,60,0.06);
}

.psych-inner {
  max-width: 860px;
  margin: 0 auto;
}

.psych-intro {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1rem, 2vw, 1.3rem);
  font-style: italic;
  color: var(--pearl-beige);
  opacity: 0.45;
  letter-spacing: 0.08em;
  margin-bottom: 5rem;
}

.psych-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 5rem;
  text-align: left;
}

.psych-card {
  padding: 3rem 2.5rem;
  border: 1px solid rgba(216,151,60,0.1);
  position: relative;
  background: rgba(216,151,60,0.02);
}

.psych-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(216,151,60,0.35), transparent);
}

.psych-term {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 300;
  color: var(--golden-apricot);
  letter-spacing: 0.04em;
  margin-bottom: 0.4rem;
}

.psych-phonetic {
  font-family: 'Raleway', sans-serif;
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  color: var(--golden-apricot);
  opacity: 0.4;
  margin-bottom: 1.5rem;
  text-transform: lowercase;
}

.psych-def {
  font-family: 'Raleway', sans-serif;
  font-size: 0.88rem;
  color: var(--pearl-beige);
  opacity: 0.6;
  line-height: 1.95;
  letter-spacing: 0.02em;
}

.psych-close {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.1rem, 2.5vw, 1.6rem);
  font-weight: 300;
  color: var(--pearl-beige);
  line-height: 1.8;
  opacity: 0.7;
}

.psych-close em {
  color: var(--golden-apricot);
  font-style: italic;
}

/* ─── RESPONSIVE ─────────────────────────────────────────── */
/* ─── TABLET ─────────────────────────────────────────────── */
@media (max-width: 768px) {
  .nav { padding: 1.25rem 1.5rem; }
  .nav-links { gap: 1rem; flex-wrap: nowrap; overflow: hidden; }
  .nav-links a { font-size: 0.58rem; letter-spacing: 0.14em; }

  .story { padding: 6rem 1.5rem; }

  .chapter { padding: 6rem 1.5rem; }
  .founder-opening { padding: 6rem 1.5rem 3rem; }
  .founder-editorial { padding: 0 1.5rem 4rem; }
  .founder-close { padding: 2rem 1.5rem 5rem; }
  .founder-photo-frame { max-width: 280px; }

  .psych { padding: 6rem 1.5rem; }
  .psych-grid { grid-template-columns: 1fr; gap: 2rem; }

  .lumen-noir { padding: 6rem 1.5rem; }
  .lumen-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .lumen-visual { order: -1; }
  .lumen-desc { max-width: 100%; }

  .waitlist { padding: 6rem 1.5rem; }
  .waitlist-form { flex-direction: column; }
  .waitlist-form input {
    border-right: 1px solid rgba(243,230,189,0.2);
    border-bottom: none;
  }
  .waitlist-form button { border-top: none; }

  .footer { padding: 3rem 1.5rem; }
  .footer-links { gap: 1.5rem; }
}

/* ─── MOBILE ─────────────────────────────────────────────── */
@media (max-width: 480px) {
  /* Nav */
  .nav { padding: 1.1rem 1.25rem; }
  .nav-links { display: none; }
  .nav-logo { font-size: 0.8rem; letter-spacing: 0.28em; }

  /* Hero */
  .hero-title { letter-spacing: 0.08em; }
  .hero-eyebrow { letter-spacing: 0.3em; }
  .hero-cta { padding: 0.75rem 1.75rem; font-size: 0.6rem; }

  /* Story */
  .story { padding: 5rem 1.25rem; }
  .story h2 { font-size: clamp(1.15rem, 5.5vw, 1.8rem); }
  .story p { font-size: 0.85rem; }

  /* Marquee */
  .marquee { padding: 0.9rem 0; }
  .marquee-content span { font-size: 0.5rem; letter-spacing: 0.35em; }

  /* Chapters */
  .chapter { padding: 5rem 1.25rem; }
  .chapter-heading { letter-spacing: 0.01em; }
  .chapter-body { font-size: 0.85rem; }

  /* Founder */
  .founder-opening { padding: 5rem 1.25rem 2.5rem; }
  .founder-quote { font-size: clamp(1.4rem, 5.5vw, 2rem); }
  .founder-photo-frame {
    max-width: 100%;
    aspect-ratio: 4 / 5;
    margin-bottom: 3.5rem;
  }
  .founder-editorial { padding: 0 1.25rem 3rem; }
  .founder-editorial p { font-size: 0.85rem; line-height: 1.85; }
  .founder-pull { font-size: 1.1rem !important; }
  .founder-close { padding: 1.5rem 1.25rem 5rem; }
  .founder-sign { font-size: 1.3rem; }
  .founder-values { gap: 0.65rem; }
  .founder-values span { font-size: 0.55rem; letter-spacing: 0.25em; }

  /* Psychology */
  .psych { padding: 5rem 1.25rem; }
  .psych-card { padding: 2rem 1.5rem; }
  .psych-intro { margin-bottom: 3rem; }
  .psych-grid { margin-bottom: 3rem; }

  /* Lumen Noir */
  .lumen-noir { padding: 5rem 1.25rem; }
  .lumen-title { font-size: clamp(1.8rem, 8vw, 2.8rem); letter-spacing: 0.14em; }
  .lumen-desc { font-size: 0.85rem; }
  .bottle-body { width: 118px; height: 192px; }
  .bottle-cap { width: 50px; height: 32px; }
  .bottle-reflection { width: 72px; }

  /* Waitlist */
  .waitlist { padding: 5rem 1.25rem; }
  .waitlist h2 { font-size: clamp(1.5rem, 6vw, 2.2rem); }
  .waitlist p { font-size: 0.85rem; }
  .waitlist-form { max-width: 100%; }
  .waitlist-form button { padding: 0.9rem 1.2rem; font-size: 0.6rem; }

  /* Footer */
  .footer { padding: 2.5rem 1.25rem; }
  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem 1.5rem;
  }
}
