:root {
  /* FENTÉ palette — exact hex only */
  --lav-white: #EAE6EF;
  --slate: #3A3845;
  --frost: #C4BDD4;
  --blush: #E8A882;
  --mauve: #B8A8C4;
  --ivory: #E6E2D9;
  --serif: "Cormorant Garamond", serif;
  --sans: "Jost", system-ui, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scrollbar-width: none; }
html::-webkit-scrollbar { display: none; }

body {
  background: linear-gradient(180deg, var(--lav-white) 0%, var(--lav-white) 70%, var(--slate) 100%);
  color: var(--slate);
  font-family: var(--sans);
  font-weight: 300;
  overflow-x: hidden;
}

.grain {
  position: fixed; inset: -50%;
  z-index: 99; pointer-events: none;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grain 9s steps(10) infinite;
}
@keyframes grain {
  0%,100% { transform: translate(0,0); } 20% { transform: translate(-3%,2%); }
  40% { transform: translate(2%,-3%); } 60% { transform: translate(-2%,-2%); }
  80% { transform: translate(3%,3%); }
}

.serif { font-family: var(--serif); font-weight: 500; }
.serif em { font-style: italic; font-weight: 400; }

/* ---------- nav ---------- */
.hud {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  display: flex; justify-content: space-between; align-items: center;
  padding: 22px 34px;
  font-size: 12px; letter-spacing: 0.34em; font-weight: 400;
  color: var(--slate);
  mix-blend-mode: multiply;
}
.hud-brand { font-family: var(--serif); font-size: 20px; letter-spacing: 0.42em; font-weight: 600; }
.hud-right a {
  color: var(--slate); text-decoration: none;
  border: 1px solid var(--mauve); padding: 9px 22px; border-radius: 999px;
  transition: background 0.35s, color 0.35s;
}
.hud-right a:hover { background: var(--blush); border-color: var(--blush); color: var(--ivory); }

/* ---------- ingredient ticker ---------- */
.ticker {
  position: fixed; right: 26px; top: 50%; transform: translateY(-50%);
  z-index: 40; text-align: right;
  display: flex; flex-direction: column; gap: 12px; align-items: flex-end;
}
.ticker-label {
  font-size: 10px; letter-spacing: 0.4em; color: var(--mauve); font-weight: 500;
}
.ticker ul { list-style: none; }
.ticker li {
  font-family: var(--serif);
  font-size: 15px; line-height: 2;
  color: var(--mauve);
  opacity: 0.35;
  transition: opacity 0.5s, color 0.5s, transform 0.5s;
}
.ticker li.active {
  opacity: 1; color: var(--blush);
  transform: translateX(-6px) scale(1.12);
}

/* ---------- hero still ---------- */
.hero-still { position: relative; height: 100vh; overflow: hidden; }
.hero-still img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-copy {
  position: absolute; inset: 0;
  display: grid; place-content: center; text-align: center;
  background: linear-gradient(180deg, rgba(234,230,239,0.18) 0%, transparent 40%, rgba(58,56,69,0.30) 100%);
}
.hero-copy h1 {
  font-family: var(--serif);
  font-size: clamp(3rem, 8.5vw, 7.5rem);
  line-height: 1.02; font-weight: 500;
  color: var(--slate);
  text-shadow: 0 1px 30px rgba(234,230,239,0.8);
}
.hero-copy h1 em { font-style: italic; font-weight: 400; color: var(--blush); }
.hero-sub {
  margin-top: 22px;
  font-size: clamp(0.95rem, 1.6vw, 1.2rem);
  letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--slate);
}
.scroll-hint {
  margin-top: 60px;
  font-size: 11px; letter-spacing: 0.42em; color: var(--slate);
  animation: bob 2s ease-in-out infinite;
  display: inline-block;
}
@keyframes bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(7px); } }

/* ---------- cinematic scrub ---------- */
.cinematic { position: relative; height: 460vh; }
.sticky {
  position: sticky; top: 0; height: 100vh; width: 100%;
  overflow: hidden; display: grid; place-items: center;
  background: var(--lav-white);
}
.cinematic canvas { position: absolute; inset: 0; width: 100%; height: 100%; }
.veil {
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(120% 90% at 50% 45%, transparent 55%, rgba(58,56,69,0.22) 100%);
}
.veil.dark-bottom {
  background:
    radial-gradient(120% 90% at 50% 45%, transparent 55%, rgba(58,56,69,0.25) 100%),
    linear-gradient(180deg, transparent 60%, rgba(58,56,69,0.5) 100%);
}

.overlay { position: relative; z-index: 10; text-align: center; padding: 0 26px; width: 100%; }
.overlay.left { text-align: left; padding-left: clamp(26px, 9vw, 140px); }
.reveal-line { opacity: 0; will-change: opacity, transform; }

.overlay h2.serif {
  font-size: clamp(2.2rem, 5.5vw, 4.8rem);
  line-height: 1.08; color: var(--slate);
  text-shadow: 0 1px 26px rgba(234,230,239,0.75);
}
.overlay h2.serif.big { font-size: clamp(2.5rem, 6.5vw, 5.8rem); color: var(--ivory); text-shadow: 0 2px 40px rgba(58,56,69,0.6); }
.overlay h2 em { color: var(--blush); }
.eyebrow {
  font-size: 12px; letter-spacing: 0.44em; font-weight: 500;
  color: var(--blush); margin-bottom: 18px;
}
.body-line {
  margin-top: 24px;
  font-size: clamp(1rem, 1.8vw, 1.35rem);
  color: var(--slate); max-width: 460px; line-height: 1.7;
}

/* callouts */
.callouts { position: relative; height: 40vh; }
.callout {
  position: absolute; left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  max-width: 520px;
}
.callout h3 {
  font-family: var(--serif); font-weight: 600;
  font-size: clamp(1.7rem, 3.6vw, 2.9rem);
  color: var(--slate); margin-bottom: 12px;
  text-shadow: 0 1px 20px rgba(234,230,239,0.8);
}
.callout p { font-size: clamp(0.95rem, 1.5vw, 1.15rem); color: var(--slate); line-height: 1.6; }

/* ---------- marquee ---------- */
.marquee { overflow: hidden; white-space: nowrap; background: var(--slate); padding: 16px 0; }
.marquee-track { display: inline-flex; animation: marquee 30s linear infinite; }
.marquee-track span {
  font-size: 13px; letter-spacing: 0.4em; font-weight: 400;
  color: var(--ivory); padding-right: 8px;
}
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- limited edition ---------- */
.edition { padding: 130px clamp(24px, 6vw, 90px); background: var(--lav-white); }
.edition-grid {
  display: grid; grid-template-columns: 1fr 0.9fr 1fr;
  gap: 34px; align-items: center; max-width: 1400px; margin: 0 auto;
}
.edition-grid figure { overflow: hidden; border-radius: 6px; }
.edition-grid img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 1.2s cubic-bezier(0.22,1,0.36,1); }
.edition-grid figure:hover img { transform: scale(1.05); }
.edition-copy { text-align: center; }
.edition-copy h2 { font-size: clamp(1.9rem, 3.6vw, 3.2rem); line-height: 1.12; color: var(--slate); margin-bottom: 20px; }
.edition-copy p { color: var(--slate); opacity: 0.75; line-height: 1.7; max-width: 320px; margin: 0 auto; }

/* ---------- CTA / footer ---------- */
.btn {
  display: inline-block; margin-top: 44px;
  background: var(--blush); color: var(--ivory);
  text-decoration: none;
  font-size: 14px; letter-spacing: 0.3em; text-transform: uppercase; font-weight: 500;
  padding: 20px 54px; border-radius: 999px;
  box-shadow: 0 16px 50px rgba(232,168,130,0.45);
  transition: transform 0.35s, box-shadow 0.35s;
}
.btn:hover { transform: translateY(-4px); box-shadow: 0 26px 70px rgba(232,168,130,0.6); }

.footer {
  background: var(--slate); color: var(--ivory);
  display: flex; flex-direction: column; align-items: center; gap: 18px;
  padding: 80px 24px 56px; text-align: center;
}
.foot-brand { font-size: 34px; letter-spacing: 0.42em; color: var(--frost); }
.footer nav { display: flex; gap: 30px; flex-wrap: wrap; justify-content: center; }
.footer a {
  color: var(--ivory); text-decoration: none;
  font-size: 12px; letter-spacing: 0.26em; text-transform: uppercase;
  border-bottom: 1px solid transparent; transition: color 0.3s, border-color 0.3s;
}
.footer a:hover { color: var(--blush); border-color: var(--blush); }
.foot-copy { font-size: 11.5px; letter-spacing: 0.12em; color: var(--mauve); }

/* ---------- reveals ---------- */
.reveal { opacity: 0; transform: translateY(36px); transition: opacity 0.9s ease, transform 0.9s cubic-bezier(0.22,1,0.36,1); }
.reveal.in { opacity: 1; transform: none; }

/* ---------- mobile ---------- */
@media (max-width: 760px) {
  .hud { padding: 16px 18px; letter-spacing: 0.2em; }
  .hud-mid { display: none; }
  .ticker { display: none; }
  .cinematic { height: 380vh; }
  .edition-grid { grid-template-columns: 1fr; }
  .overlay.left { padding-left: 22px; padding-right: 22px; }
}
