/* ==========================================================================
   VERGER — Orchard-Grown Skincare
   Token system: cream/peach/gold palette · Fraunces display + Sora body
   ========================================================================== */

:root {
  /* --- Color tokens --- */
  --cream:        #FBF4EC;
  --cream-deep:   #F2E6D6;
  --cream-line:   #E7D9C6;
  --peach:        #E8A87C;
  --peach-soft:   #F0C6A4;
  --peach-deep:   #C97B52;
  --plum:         #2B1620;
  --plum-soft:    #3B2230;
  --gold:         #C6A15B;
  --gold-light:   #EAD9A8;
  --gold-deep:    #8E6B34;
  --green:        #7C8A5C;
  --ink:          #2A2420;
  --ink-soft:     #6B5F55;
  --ink-faint:    #9B8F82;
  --white:        #FFFDF9;

  /* --- Type tokens --- */
  --f-display: "Fraunces", "Iowan Old Style", Georgia, serif;
  --f-body: "Sora", -apple-system, BlinkMacSystemFont, sans-serif;

  /* --- Layout tokens --- */
  --maxw: 1220px;
  --pad: clamp(20px, 5vw, 64px);
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 32px;

  /* --- Motion tokens --- */
  --ease-out: cubic-bezier(.16,.84,.44,1);
  --ease-soft: cubic-bezier(.4,0,.2,1);
  --t-fast: .3s;
  --t-med: .6s;
  --t-slow: 1.1s;
}

/* ==========================================================================
   RESET
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--f-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul, ol { margin: 0; padding: 0; }
h1, h2, h3, h4, p, blockquote, figure { margin: 0; }
input { font-family: inherit; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  [data-reveal], [data-reveal="mask"], .hero__jar-wrap, .hero__bg-type, .orbit-badge,
  .hero__copy > .eyebrow, .hero__copy > .hero__headline, .hero__copy > .hero__sub,
  .hero__copy > .hero__cta, .hero__copy > .hero__proof {
    opacity: 1 !important; transform: none !important; filter: none !important; clip-path: none !important;
  }
}

/* ==========================================================================
   GRAIN + CURSOR GLOW
   ========================================================================== */
.grain {
  position: fixed; inset: 0; z-index: 999; pointer-events: none;
  opacity: .035; mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.cursor-glow {
  position: fixed; top: 0; left: 0; width: 460px; height: 460px;
  border-radius: 50%; pointer-events: none; z-index: 1;
  background: radial-gradient(circle, rgba(232,168,124,.16), transparent 70%);
  transform: translate(-50%, -50%);
  transition: opacity .4s ease;
  opacity: 0;
}
@media (hover: hover) and (pointer: fine) {
  .cursor-glow.is-active { opacity: 1; }
}

/* ==========================================================================
   SHARED
   ========================================================================== */
.section-inner { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--pad); }

.eyebrow {
  font-family: var(--f-body);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--peach-deep);
  margin: 0 0 18px;
}

.h-display {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: clamp(2.1rem, 4.2vw, 3.4rem);
  line-height: 1.08;
  letter-spacing: -.01em;
  color: var(--ink);
}

.section-head { max-width: 640px; margin: 0 auto 64px; text-align: center; }
.section-head__body { margin-top: 20px; color: var(--ink-soft); font-size: 1.03rem; max-width: 480px; margin-inline: auto; }
.section-head--split { max-width: none; text-align: left; display: flex; justify-content: space-between; align-items: flex-end; gap: 40px; flex-wrap: wrap; }
.section-head--split .section-head__body { margin: 0; max-width: 340px; text-align: left; }

/* --- Scroll reveal: directional variants ---
   Each element flies in from the direction its attribute names,
   so a section arrives as a composed moment, not a uniform fade-up. */
[data-reveal] {
  opacity: 0;
  transition: opacity .9s var(--ease-out), transform .9s var(--ease-out), filter .9s var(--ease-out);
  transform: translateY(34px);
  filter: blur(5px);
}
[data-reveal="left"]  { transform: translateX(-70px) rotate(-3deg); }
[data-reveal="right"] { transform: translateX(70px) rotate(3deg); }
[data-reveal="scale"] { transform: scale(.82) translateY(20px); }
[data-reveal="scale-rotate"] { transform: scale(.8) rotate(-5deg); }
[data-reveal="up"] { transform: translateY(34px); }

[data-reveal].in-view {
  opacity: 1;
  transform: none;
  filter: blur(0);
}

/* Mask-wipe heading reveal: the heading is clipped and slides up
   through its own frame rather than simply fading in. */
[data-reveal="mask"] {
  opacity: 1;
  filter: none;
  clip-path: inset(0 0 100% 0);
  transform: none;
  transition: clip-path 1s var(--ease-out);
}
[data-reveal="mask"].in-view { clip-path: inset(0 0 0% 0); }
[data-reveal="mask"] { display: inline-block; }

/* --- Buttons --- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 30px;
  font-size: .92rem;
  font-weight: 600;
  letter-spacing: .01em;
  border-radius: 999px;
  transition: transform var(--t-fast) var(--ease-soft), box-shadow var(--t-fast) var(--ease-soft), background var(--t-fast), color var(--t-fast), border-color var(--t-fast);
  white-space: nowrap;
}
.btn span { display: inline-block; }
.btn-primary {
  background: var(--ink);
  color: var(--cream);
  box-shadow: 0 6px 20px -8px rgba(43,22,16,.5);
}
.btn-primary:hover { background: var(--plum); box-shadow: 0 10px 26px -8px rgba(43,22,16,.55); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
}
.btn-ghost:hover { background: var(--ink); color: var(--cream); }
.btn-line {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--cream-line);
  padding: 13px 24px;
  font-size: .85rem;
}
.btn-line:hover { border-color: var(--ink); background: var(--ink); color: var(--cream); }

/* ==========================================================================
   NAVIGATION
   ========================================================================== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  transition: background var(--t-fast) var(--ease-soft), box-shadow var(--t-fast), padding var(--t-fast);
  padding: 22px 0;
}
.nav__inner {
  max-width: var(--maxw); margin: 0 auto; padding: 0 var(--pad);
  display: flex; align-items: center; justify-content: space-between;
}
.nav.is-scrolled {
  background: rgba(251, 244, 236, .86);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(42,36,32,.07);
  padding: 14px 0;
}

.nav__mark {
  display: flex; align-items: center; gap: 9px;
  font-family: var(--f-display);
  font-size: 1.25rem;
  letter-spacing: .02em;
  color: var(--ink);
}
.nav__mark-glyph {
  display: flex; align-items: center; justify-content: center;
  width: 30px; height: 30px; border-radius: 50%;
  background: linear-gradient(150deg, var(--gold-light), var(--gold-deep));
  color: var(--plum);
  font-size: .95rem; font-weight: 600;
}
.nav__mark-word { font-style: italic; }

.nav__links { display: flex; gap: 34px; }
.nav__links a {
  font-size: .88rem; font-weight: 500; color: var(--ink-soft);
  position: relative; transition: color var(--t-fast);
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: -6px; width: 0; height: 1px;
  background: var(--peach-deep); transition: width var(--t-fast) var(--ease-soft);
}
.nav__links a:hover { color: var(--ink); }
.nav__links a:hover::after { width: 100%; }

.nav__actions { display: flex; align-items: center; gap: 6px; }
.icon-btn {
  width: 38px; height: 38px; display: flex; align-items: center; justify-content: center;
  border-radius: 50%; color: var(--ink); transition: background var(--t-fast);
}
.icon-btn svg { width: 19px; height: 19px; }
.icon-btn:hover { background: rgba(42,36,32,.06); }

.nav__burger {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 38px; height: 38px;
}
.nav__burger span { display: block; width: 20px; height: 1.4px; background: var(--ink); margin: 0 auto; transition: transform var(--t-fast), opacity var(--t-fast); }
.nav__burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-menu {
  position: fixed; inset: 0; top: 0; z-index: 400;
  background: var(--cream);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 30px;
  transform: translateY(-100%);
  transition: transform .5s var(--ease-out);
  pointer-events: none;
}
.mobile-menu.is-open { transform: translateY(0); pointer-events: auto; }
.mobile-menu nav { display: flex; flex-direction: column; align-items: center; gap: 26px; }
.mobile-menu nav a { font-family: var(--f-display); font-size: 1.9rem; color: var(--ink); }
.mobile-menu__note { color: var(--ink-faint); font-size: .85rem; letter-spacing: .05em; text-transform: uppercase; }

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; flex-direction: column; justify-content: center;
  padding: 140px 0 60px;
  overflow: hidden;
  background: radial-gradient(120% 90% at 50% -10%, var(--cream-deep) 0%, var(--cream) 55%);
}

.hero__bg-type {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -46%) scale(1.15);
  font-family: var(--f-display);
  font-weight: 500;
  font-size: clamp(5rem, 19vw, 15.5rem);
  color: var(--ink);
  opacity: 0;
  white-space: nowrap;
  letter-spacing: -.02em;
  pointer-events: none;
  z-index: 0;
  user-select: none;
  filter: blur(8px);
  transition: opacity 1.4s var(--ease-out), transform 1.4s var(--ease-out), filter 1.4s var(--ease-out);
}
.hero.is-loaded .hero__bg-type { opacity: .05; filter: blur(0); transform: translate(-50%, -46%) scale(1); }

.hero__inner {
  position: relative; z-index: 2;
  max-width: var(--maxw); margin: 0 auto; padding: 0 var(--pad);
  display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: 20px;
}

.hero__headline {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: clamp(3.2rem, 7vw, 5.6rem);
  line-height: .98;
  letter-spacing: -.01em;
  color: var(--ink);
  margin-bottom: 26px;
}
.hero__headline em { font-style: italic; color: var(--peach-deep); font-weight: 400; }

.hero__sub {
  max-width: 430px;
  color: var(--ink-soft);
  font-size: 1.05rem;
  margin-bottom: 34px;
}

.hero__cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 22px; }

.hero__proof { font-size: .78rem; letter-spacing: .03em; color: var(--ink-faint); }

/* --- Hero load-in choreography ---
   Runs once on page load (JS adds .is-loaded to .hero), independent
   of scroll — headline, copy, CTAs and the jar arrive as one staggered
   sequence rather than appearing all at once. */
.hero__copy > .eyebrow,
.hero__copy > .hero__headline,
.hero__copy > .hero__sub,
.hero__copy > .hero__cta,
.hero__copy > .hero__proof {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .9s var(--ease-out), transform .9s var(--ease-out);
}
.hero.is-loaded .hero__copy > .eyebrow      { transition-delay: .05s; opacity: 1; transform: translateY(0); }
.hero.is-loaded .hero__copy > .hero__headline { transition-delay: .18s; opacity: 1; transform: translateY(0); }
.hero.is-loaded .hero__copy > .hero__sub    { transition-delay: .34s; opacity: 1; transform: translateY(0); }
.hero.is-loaded .hero__copy > .hero__cta    { transition-delay: .48s; opacity: 1; transform: translateY(0); }
.hero.is-loaded .hero__copy > .hero__proof  { transition-delay: .6s;  opacity: 1; transform: translateY(0); }

/* --- Hero product stage --- */
.hero__stage { position: relative; display: flex; align-items: center; justify-content: center; min-height: 460px; }
.hero__jar-wrap {
  position: relative; width: 100%; max-width: 420px; perspective: 1200px;
  opacity: 0; transform: scale(.55) rotate(-14deg) translateY(30px);
  transition: opacity 1.1s var(--ease-out), transform 1.1s cubic-bezier(.2,.85,.25,1.15);
  transition-delay: .3s;
}
.hero.is-loaded .hero__jar-wrap { opacity: 1; transform: scale(1) rotate(0) translateY(0); }

.orbit-lines {
  position: absolute; inset: -90px; width: calc(100% + 180px); height: calc(100% + 180px);
  z-index: 1; pointer-events: none;
}
.orbit-lines line {
  stroke: var(--peach-deep); stroke-width: 1; stroke-dasharray: 2 6; opacity: 0;
  stroke-dashoffset: 40;
  transition: opacity .8s var(--ease-out) 1.1s, stroke-dashoffset 1.2s var(--ease-out) 1.1s;
}
.hero.is-loaded .orbit-lines line { opacity: .3; stroke-dashoffset: 0; }

.orbit-badge {
  position: absolute;
  display: flex; align-items: center; gap: 8px;
  background: rgba(255,253,249,.85);
  backdrop-filter: blur(6px);
  border: 1px solid var(--cream-line);
  padding: 9px 16px 9px 10px;
  border-radius: 999px;
  font-size: .78rem; font-weight: 500;
  color: var(--ink);
  box-shadow: 0 10px 24px -12px rgba(42,36,32,.25);
  z-index: 3;
  opacity: 0;
  transition: opacity .7s var(--ease-out), transform .8s cubic-bezier(.2,.85,.25,1.2);
}
.hero.is-loaded .orbit-badge {
  opacity: 1;
  transform: translate(0,0) scale(1);
  animation: floatBadge 6s ease-in-out infinite;
}
.orbit-badge__dot { width: 20px; height: 20px; border-radius: 50%; flex-shrink: 0; }
.orbit-badge__dot--peach { background: radial-gradient(circle at 32% 30%, #FCDFC4, var(--peach-deep)); }
.orbit-badge__dot--gold  { background: radial-gradient(circle at 32% 30%, var(--gold-light), var(--gold-deep)); }
.orbit-badge__dot--green { background: radial-gradient(circle at 32% 30%, #C9D3AE, var(--green)); }
.orbit-badge__dot--milk  { background: radial-gradient(circle at 32% 30%, #FFFDF9, #D8CCBC); }

/* Each badge starts off-position in the direction it lands from,
   and floats gently in place once it arrives. */
.orbit-badge--1 { top: 2%;  left: -12%; transform: translate(-70px,-50px) scale(.6); transition-delay: .75s; animation-delay: 1.7s; }
.orbit-badge--2 { top: -4%; right: -18%; transform: translate(70px,-60px) scale(.6); transition-delay: .92s; animation-delay: 1.9s; }
.orbit-badge--3 { bottom: 6%; left: -20%; transform: translate(-70px,60px) scale(.6); transition-delay: 1.08s; animation-delay: 2.1s; }
.orbit-badge--4 { bottom: -2%; right: -10%; transform: translate(70px,60px) scale(.6); transition-delay: 1.24s; animation-delay: 2.3s; }

@keyframes floatBadge {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* --- Jar illustration (signature product render) --- */
.jar { position: relative; width: 100%; max-width: 300px; margin: 0 auto; transform-style: preserve-3d; }
.jar__lid {
  position: relative; width: 100%; height: 78px;
  background: linear-gradient(100deg, var(--gold-light) 0%, var(--gold) 35%, var(--gold-deep) 60%, var(--gold) 80%, var(--gold-light) 100%);
  border-radius: 20px 20px 8px 8px;
  box-shadow: inset 0 -6px 14px rgba(0,0,0,.15), 0 10px 18px -10px rgba(140,100,40,.5);
  z-index: 2;
}
.jar__lid-sheen {
  position: absolute; top: 8%; left: 10%; width: 30%; height: 40%;
  background: linear-gradient(160deg, rgba(255,255,255,.7), transparent 70%);
  border-radius: 50%; filter: blur(2px);
}
.jar__cream {
  position: relative; height: 16px; margin: -8px auto 0; width: 88%;
  background: linear-gradient(180deg, #FFFDF9, #F4E9DB);
  border-radius: 0 0 6px 6px;
  z-index: 1;
}
.jar__body {
  position: relative; height: 190px;
  background: linear-gradient(160deg, #FDF9F3 0%, #F1E6D6 55%, #E9DAC4 100%);
  border-radius: 10px 10px 26px 26px;
  box-shadow:
    inset 0 10px 20px rgba(255,255,255,.6),
    inset 0 -14px 30px rgba(140,100,40,.08),
    0 30px 40px -20px rgba(60,40,20,.35);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.jar__body-sheen {
  position: absolute; top: 0; left: 8%; width: 22%; height: 100%;
  background: linear-gradient(180deg, rgba(255,255,255,.55), transparent 60%);
}
.jar__label { text-align: center; display: flex; flex-direction: column; gap: 3px; position: relative; z-index: 2; }
.jar__label-eyebrow { font-size: .62rem; letter-spacing: .18em; text-transform: uppercase; color: var(--peach-deep); font-weight: 600; }
.jar__label-name { font-family: var(--f-display); font-size: 1.28rem; font-style: italic; color: var(--ink); }
.jar__label-sub { font-size: .62rem; letter-spacing: .04em; color: var(--ink-faint); text-transform: uppercase; }

.jar__shadow {
  width: 68%; height: 30px; margin: -8px auto 0;
  background: radial-gradient(ellipse at center, rgba(43,22,16,.28), transparent 72%);
  filter: blur(4px);
}

.jar--small { max-width: 220px; }
.jar--small .jar__body { height: 140px; }
.jar--product { max-width: 190px; }
.jar--product .jar__body { height: 130px; }
.jar--product .jar__lid { height: 58px; }
.jar--product .jar__label-name { font-size: 1rem; }

/* --- Scroll cue --- */
.scroll-cue {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  z-index: 3;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  color: var(--ink-faint);
  font-size: .7rem; letter-spacing: .14em; text-transform: uppercase;
}
.scroll-cue i {
  width: 1px; height: 34px; background: var(--ink-faint); position: relative; overflow: hidden;
}
.scroll-cue i::after {
  content: ""; position: absolute; top: -100%; left: 0; width: 100%; height: 100%;
  background: var(--peach-deep);
  animation: cueDrip 2.2s ease-in-out infinite;
}
@keyframes cueDrip { 0% { top: -100%; } 60% { top: 100%; } 100% { top: 100%; } }

/* --- Organic dividers --- */
.divider { position: relative; width: 100%; overflow: hidden; margin-top: -2px; }
.divider svg { width: 100%; height: 100%; display: block; }
.divider--1 { height: 90px; }
.divider--1 path { fill: var(--cream-deep); }
.divider--2 { height: 70px; }
.divider--2 path { fill: var(--plum); }

/* ==========================================================================
   MARQUEE
   ========================================================================== */
.marquee-section { background: var(--cream-deep); border-top: 1px solid var(--cream-line); border-bottom: 1px solid var(--cream-line); }
.marquee { overflow: hidden; padding: 22px 0; }
.marquee__track {
  display: flex; gap: 24px; white-space: nowrap; width: max-content;
  animation: scrollMarquee 32s linear infinite;
}
.marquee__track span {
  font-family: var(--f-display); font-style: italic; font-size: 1.05rem;
  color: var(--ink-soft); letter-spacing: .01em;
}
@keyframes scrollMarquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ==========================================================================
   INGREDIENTS
   ========================================================================== */
.ingredients { padding: 130px 0 110px; background: var(--cream-deep); }
.ingredient-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px;
}
.ingredient-card {
  background: var(--cream);
  border: 1px solid var(--cream-line);
  border-radius: var(--radius-md);
  padding: 34px 26px;
  transition: transform var(--t-med) var(--ease-out), box-shadow var(--t-med) var(--ease-out), border-color var(--t-med);
}
.ingredient-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 50px -30px rgba(60,40,20,.28);
  border-color: transparent;
}
.ingredient-card__swatch {
  width: 58px; height: 58px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px; color: var(--white);
  transition: transform var(--t-med) var(--ease-out);
}
.ingredient-card:hover .ingredient-card__swatch { transform: rotate(-10deg) scale(1.08); }
.ingredient-card__swatch svg { width: 26px; height: 26px; }
.swatch--peach { background: radial-gradient(circle at 32% 28%, #FCDFC4, var(--peach-deep)); }
.swatch--milk  { background: radial-gradient(circle at 32% 28%, #FFFDF9, #C9BBA6); color: var(--ink-soft); }
.swatch--gold  { background: radial-gradient(circle at 32% 28%, var(--gold-light), var(--gold-deep)); }
.swatch--green { background: radial-gradient(circle at 32% 28%, #D7DEC0, var(--green)); }

.ingredient-card h3 { font-family: var(--f-display); font-size: 1.15rem; font-weight: 500; margin-bottom: 10px; }
.ingredient-card p { font-size: .92rem; color: var(--ink-soft); }

/* ==========================================================================
   RITUAL
   ========================================================================== */
.ritual { padding: 60px 0 130px; background: var(--plum); color: var(--cream); overflow: hidden; }
.ritual__inner { display: grid; grid-template-columns: .85fr 1.15fr; gap: 70px; align-items: center; }

.ritual__art { position: relative; }
.ritual__art-frame {
  position: relative;
  background: linear-gradient(160deg, var(--plum-soft), var(--plum));
  border-radius: var(--radius-lg);
  padding: 70px 30px;
  display: flex; align-items: center; justify-content: center;
  min-height: 420px;
  border: 1px solid rgba(230,215,190,.1);
}
.texture-blob { position: absolute; border-radius: 50%; filter: blur(40px); opacity: .5; animation: driftBlob 14s ease-in-out infinite; }
.texture-blob--1 { width: 220px; height: 220px; background: var(--peach-deep); top: -40px; left: -40px; }
.texture-blob--2 { width: 180px; height: 180px; background: var(--gold-deep); bottom: -30px; right: -20px; animation-duration: 18s; animation-delay: -4s; }

@keyframes driftBlob {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%      { transform: translate(24px, -18px) scale(1.12); }
  66%      { transform: translate(-18px, 14px) scale(.95); }
}
.jar__cream--swipe { border-radius: 4px 30px 6px 6px; }

.ritual .eyebrow { color: var(--peach-soft); }
.ritual .h-display { color: var(--cream); margin-bottom: 44px; }

.ritual__steps { display: flex; flex-direction: column; gap: 30px; margin-bottom: 46px; }
.ritual__steps li { display: flex; gap: 22px; align-items: flex-start; }
.ritual__num {
  font-family: var(--f-display); font-style: italic; font-size: 1.4rem;
  color: var(--peach-soft); flex-shrink: 0; width: 40px;
}
.ritual__steps h3 { font-family: var(--f-display); font-size: 1.15rem; font-weight: 500; margin-bottom: 6px; }
.ritual__steps p { color: rgba(251,244,236,.68); font-size: .95rem; max-width: 420px; }

.ritual__buy { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.ritual .btn-primary { background: var(--cream); color: var(--plum); }
.ritual .btn-primary:hover { background: var(--peach-soft); }
.ritual__buy-note { font-size: .8rem; color: rgba(251,244,236,.55); }

/* ==========================================================================
   EDITORIAL BREAK
   ========================================================================== */
.editorial-break {
  position: relative;
  background: linear-gradient(160deg, var(--peach-soft), var(--peach) 55%, var(--peach-deep));
  padding: 130px var(--pad);
  display: flex; justify-content: center;
  overflow: hidden;
}
.editorial-break__texture {
  position: absolute; inset: -10%;
  background: radial-gradient(circle at 15% 20%, rgba(255,255,255,.25), transparent 40%),
              radial-gradient(circle at 85% 80%, rgba(43,22,16,.12), transparent 45%);
  animation: driftWide 20s ease-in-out infinite;
}
@keyframes driftWide {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-3%, 2%); }
}
.editorial-break blockquote {
  position: relative; z-index: 1;
  max-width: 760px; text-align: center;
}
.editorial-break p {
  font-family: var(--f-display); font-style: italic; font-weight: 400;
  font-size: clamp(1.5rem, 3vw, 2.3rem); line-height: 1.35; color: var(--ink);
  margin-bottom: 26px;
}
.editorial-break cite { font-size: .85rem; letter-spacing: .04em; color: var(--plum); font-style: normal; font-weight: 600; }

/* ==========================================================================
   BESTSELLERS
   ========================================================================== */
.bestsellers { padding: 130px 0; background: var(--cream); }
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.product-card {
  background: var(--cream-deep);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--cream-line);
  transition: box-shadow var(--t-med) var(--ease-out), transform var(--t-med) var(--ease-out);
}
.product-card:hover { transform: translateY(-6px); box-shadow: 0 40px 60px -35px rgba(60,40,20,.3); }
.product-card__stage {
  display: flex; align-items: center; justify-content: center;
  padding: 46px 20px 30px;
  min-height: 260px;
  position: relative;
}
.product-card__stage > * { transition: transform .6s var(--ease-out); }
.product-card:hover .product-card__stage > * { transform: rotate(-4deg) scale(1.05) translateY(-4px); }
.product-card__stage::after {
  content: ""; position: absolute; bottom: 18px; left: 50%; transform: translateX(-50%);
  width: 60%; height: 18px; background: radial-gradient(ellipse at center, rgba(43,22,16,.18), transparent 75%);
  filter: blur(3px);
}
.product-card__info { padding: 26px 28px 30px; }
.product-card__info h3 { font-family: var(--f-display); font-size: 1.08rem; font-weight: 500; margin-bottom: 4px; }
.product-card__info p { font-size: .85rem; color: var(--ink-soft); margin-bottom: 20px; }
.product-card__row { display: flex; align-items: center; justify-content: space-between; }
.price { font-family: var(--f-display); font-style: italic; font-size: 1.1rem; color: var(--peach-deep); }

/* --- Bottle illustrations (serum + oil) --- */
.bottle { position: relative; width: 100%; max-width: 130px; margin: 0 auto; display: flex; flex-direction: column; align-items: center; }
.bottle__body {
  width: 92px; height: 140px;
  border-radius: 14px 14px 20px 20px;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
  box-shadow: inset 0 8px 16px rgba(255,255,255,.5), inset 0 -10px 20px rgba(0,0,0,.06), 0 22px 30px -16px rgba(60,40,20,.35);
}
.bottle--serum { background: linear-gradient(160deg, #E9EDE0, #C9D3AE 60%, #A9B587); }
.bottle--oil { background: linear-gradient(160deg, #FBE3C8, #E8A87C 60%, #C97B52); }
.bottle__sheen { position: absolute; top: 0; left: 10%; width: 22%; height: 100%; background: linear-gradient(180deg, rgba(255,255,255,.6), transparent 60%); }
.bottle__label { text-align: center; z-index: 2; }
.bottle__label .jar__label-eyebrow { color: rgba(43,22,16,.55); }
.bottle__label .jar__label-name { font-size: .92rem; }

.bottle__dropper-cap {
  width: 34px; height: 46px;
  background: linear-gradient(160deg, #3B2230, #2B1620);
  border-radius: 8px 8px 3px 3px;
  margin-bottom: -6px; z-index: 1;
  box-shadow: 0 6px 12px -6px rgba(0,0,0,.4);
}
.bottle__pump-cap {
  width: 40px; height: 30px;
  background: linear-gradient(120deg, var(--gold-light), var(--gold-deep));
  border-radius: 6px 6px 2px 2px;
  margin-bottom: -4px; z-index: 1;
  box-shadow: 0 6px 12px -6px rgba(140,100,40,.5);
}

/* ==========================================================================
   TESTIMONIALS
   ========================================================================== */
.testimonials { padding: 130px 0; background: var(--cream-deep); }
.testimonial-slider { max-width: 720px; margin: 0 auto; text-align: center; }
.testimonial-track { position: relative; overflow: hidden; }
.testimonial {
  display: none;
  animation: fadeIn .6s var(--ease-out);
}
.testimonial.is-active { display: block; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
.testimonial blockquote {
  font-family: var(--f-display); font-style: italic; font-weight: 400;
  font-size: clamp(1.25rem, 2.4vw, 1.7rem); line-height: 1.4; color: var(--ink);
  margin-bottom: 26px;
}
.testimonial figcaption { display: flex; align-items: center; justify-content: center; gap: 12px; font-size: .88rem; color: var(--ink-soft); }
.avatar {
  width: 34px; height: 34px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(150deg, var(--peach-soft), var(--peach-deep));
  color: var(--white); font-size: .72rem; font-weight: 600;
}
.testimonial-controls { display: flex; align-items: center; justify-content: center; gap: 22px; margin-top: 36px; }
.testimonial-controls button {
  width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--cream-line);
  display: flex; align-items: center; justify-content: center; color: var(--ink);
  transition: background var(--t-fast), border-color var(--t-fast);
}
.testimonial-controls button:hover { background: var(--ink); color: var(--cream); border-color: var(--ink); }
.testimonial-dots { display: flex; gap: 9px; }
.testimonial-dots button {
  width: 8px; height: 8px; border-radius: 50%; background: var(--cream-line); border: none; padding: 0;
}
.testimonial-dots button.is-active { background: var(--peach-deep); width: 22px; border-radius: 5px; transition: width var(--t-fast) var(--ease-soft), background var(--t-fast); }

/* ==========================================================================
   NEWSLETTER
   ========================================================================== */
.newsletter {
  position: relative;
  padding: 130px var(--pad);
  background: var(--plum);
  color: var(--cream);
  text-align: center;
  overflow: hidden;
}
.newsletter__texture {
  position: absolute; inset: -10%;
  background: radial-gradient(circle at 20% 30%, rgba(232,168,124,.14), transparent 45%),
              radial-gradient(circle at 80% 70%, rgba(198,161,91,.12), transparent 45%);
  animation: driftWide 22s ease-in-out infinite reverse;
}
.newsletter__inner { position: relative; z-index: 1; max-width: 560px; }
.newsletter .h-display { color: var(--cream); margin-bottom: 20px; }
.newsletter p { color: rgba(251,244,236,.7); margin-bottom: 40px; }
.newsletter__form { display: flex; gap: 10px; max-width: 420px; margin: 0 auto; }
.newsletter__form input {
  flex: 1; padding: 15px 20px; border-radius: 999px; border: 1px solid rgba(251,244,236,.25);
  background: rgba(251,244,236,.06); color: var(--cream); font-size: .92rem;
  outline: none; transition: border-color var(--t-fast), background var(--t-fast);
}
.newsletter__form input::placeholder { color: rgba(251,244,236,.45); }
.newsletter__form input:focus { border-color: var(--peach-soft); background: rgba(251,244,236,.1); }
.newsletter .btn-primary { background: var(--cream); color: var(--plum); flex-shrink: 0; }
.newsletter .btn-primary:hover { background: var(--peach-soft); }
.newsletter__fine { margin-top: 20px; font-size: .78rem; color: rgba(251,244,236,.5); }
.newsletter__fine.is-success { color: var(--peach-soft); }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer { background: var(--ink); color: var(--cream); padding: 90px 0 0; }
.footer__grid {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px;
  padding-bottom: 70px; border-bottom: 1px solid rgba(251,244,236,.12);
}
.footer .nav__mark { color: var(--cream); margin-bottom: 16px; }
.footer__brand p { color: rgba(251,244,236,.55); font-size: .9rem; max-width: 260px; }
.footer__col h4 { font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; color: rgba(251,244,236,.5); margin-bottom: 18px; }
.footer__col { display: flex; flex-direction: column; gap: 12px; }
.footer__col a { font-size: .92rem; color: rgba(251,244,236,.82); transition: color var(--t-fast); }
.footer__col a:hover { color: var(--peach-soft); }
.footer__bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding: 26px 0; font-size: .8rem; color: rgba(251,244,236,.45);
}
.footer__legal { display: flex; gap: 22px; }
.footer__legal a:hover { color: var(--peach-soft); }

/* ==========================================================================
   REAL IMAGE OVERLAYS
   Drop matching files into an /images folder next to index.html — see
   images/README.txt for exact filenames. Until a file exists, onerror
   hides the <img> and the CSS-drawn illustration underneath shows
   instead, so nothing ever breaks.
   ========================================================================== */
.media-photo {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: contain;
  z-index: 6;
  pointer-events: none;
}
.dot-photo {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
.swatch-photo {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: 50%;
  z-index: 2;
}
.ingredient-card__swatch { position: relative; overflow: hidden; }
.ingredient-card__swatch svg { position: relative; z-index: 1; }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1080px) {
  .ingredient-grid { grid-template-columns: repeat(2, 1fr); }
  .product-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .ritual__inner { grid-template-columns: 1fr; gap: 50px; }
  .ritual__art-frame { min-height: 320px; }
}

@media (max-width: 900px) {
  .nav__links { display: none; }
  .nav__burger { display: flex; }
  .hero__inner { grid-template-columns: 1fr; text-align: left; }
  .hero { padding-top: 120px; }
  .hero__stage { margin-top: 50px; min-height: 380px; }
  .hero__bg-type { top: 44%; }
  .footer__grid { grid-template-columns: 1fr 1fr; row-gap: 40px; }
  .footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
  :root { --pad: 22px; }
  .hero__cta { flex-direction: column; align-items: stretch; }
  .hero__cta .btn { justify-content: center; }
  .section-head--split { flex-direction: column; align-items: flex-start; }
  .ingredient-grid { grid-template-columns: 1fr; }
  .editorial-break { padding: 90px var(--pad); }
  .newsletter__form { flex-direction: column; }
  .newsletter { padding: 90px var(--pad); }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; gap: 12px; text-align: center; }
  .orbit-badge { font-size: .68rem; padding: 7px 12px 7px 8px; }
  .orbit-badge--1 { left: -4%; }
  .orbit-badge--2 { right: -6%; }
  .orbit-badge--3 { left: -6%; }
  .orbit-badge--4 { right: -4%; }
}