/* ===================================================================
   WILD DESIRES · Édition I
   A cinematic one-page beauty campaign
   =================================================================== */

/* ---------- Tokens ---------- */
:root {
  --white:  #ffffff;
  --blush:  #fff0f5;
  --pink:   #fda9c3;
  --powder: #badbfb;
  --berry:  #9d1951;
  --ink:    #1a0710;

  --pink-soft:   color-mix(in oklab, var(--pink) 70%, white);
  --pink-deep:   color-mix(in oklab, var(--pink), var(--berry) 35%);
  --berry-deep:  color-mix(in oklab, var(--berry) 75%, black);
  --berry-night: color-mix(in oklab, var(--berry) 55%, #2a0612 60%);
  --cream:       #fff7fa;

  --font-display: "Bodoni Moda", "Times New Roman", serif;
  --font-italic:  "Cormorant Garamond", serif;
  --font-body:    "Outfit", system-ui, sans-serif;

  --ease:        cubic-bezier(0.16, 1, 0.3, 1);
  --ease-soft:   cubic-bezier(0.4, 0, 0.2, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);

  --max:   1480px;
  --pad:   clamp(20px, 4.4vw, 72px);
  --pad-y: clamp(80px, 12vh, 160px);

  --shadow-luxe: 0 40px 80px -30px rgba(157,25,81,.35), 0 18px 36px -20px rgba(157,25,81,.22);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  -webkit-text-size-adjust: 100%;
}
body {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: clamp(15px, 1.05vw, 17px);
  line-height: 1.5;
  color: var(--ink);
  background: var(--blush);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  font-feature-settings: "ss01", "kern";
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; padding: 0; margin: 0; }
button { font: inherit; cursor: pointer; border: 0; background: 0; color: inherit; }

body.is-loading { overflow: hidden; }
body.is-loading main, body.is-loading .nav { opacity: 0; }
body.is-revealed main, body.is-revealed .nav { opacity: 1; transition: opacity 1.2s var(--ease); }

::selection { background: var(--berry); color: var(--blush); }

/* ---------- Type Primitives ---------- */
.eyebrow {
  font-family: var(--font-body);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--berry);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow--cream  { color: var(--berry); }
.eyebrow--center { display: block; text-align: center; }

.display {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.6rem, 6vw, 5.4rem);
  line-height: 0.96;
  letter-spacing: -0.025em;
  margin: 0;
  color: var(--berry);
  font-variation-settings: "opsz" 96;
}
.display em {
  font-family: var(--font-italic);
  font-style: italic;
  font-weight: 300;
  letter-spacing: 0;
}

/* ---------- Buttons ---------- */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 18px 28px 18px 30px;
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  border-radius: 999px;
  isolation: isolate;
  overflow: hidden;
  transition: transform .7s var(--ease), color .4s var(--ease-soft), background .4s var(--ease-soft);
  will-change: transform;
}
.btn:hover { transform: translateY(-2px); }
.btn__arrow {
  display: inline-block;
  font-style: normal;
  font-size: 14px;
  transition: transform .55s var(--ease);
}
.btn:hover .btn__arrow { transform: translateX(8px); }
.btn--primary {
  background: var(--berry);
  color: var(--blush);
  box-shadow: 0 14px 30px -14px rgba(157,25,81,.55), inset 0 1px 0 rgba(255,255,255,.18);
}
.btn--primary::before {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: -1;
  background: linear-gradient(110deg, transparent 30%, rgba(255,255,255,.45) 50%, transparent 70%);
  transform: translateX(-130%);
  transition: transform 1s var(--ease);
  border-radius: inherit;
}
.btn--primary:hover::before { transform: translateX(130%); }
.btn--cream {
  background: var(--cream);
  color: var(--berry);
  border: 1px solid color-mix(in oklab, var(--berry) 8%, transparent);
  box-shadow: 0 16px 40px -16px rgba(157,25,81,.4), inset 0 1px 0 rgba(255,255,255,.6);
}
.btn--cream::before {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: -1;
  background: linear-gradient(110deg, transparent 35%, rgba(255,255,255,.7) 50%, transparent 65%);
  transform: translateX(-130%);
  transition: transform 1s var(--ease);
  border-radius: inherit;
}
.btn--cream:hover::before { transform: translateX(130%); }
.btn--ghost {
  background: transparent;
  color: var(--berry);
  border: 1px solid color-mix(in oklab, var(--berry) 35%, transparent);
}
.btn--ghost::before {
  content: ""; position: absolute; inset: 0;
  background: var(--berry); border-radius: inherit;
  transform: scaleX(0); transform-origin: left;
  transition: transform .8s var(--ease); z-index: -1;
}
.btn--ghost:hover { color: var(--blush); border-color: var(--berry); }
.btn--ghost:hover::before { transform: scaleX(1); }

/* =======================================================
   LOADER
   ======================================================= */
.loader {
  position: fixed; inset: 0; z-index: 1000;
  display: grid; grid-template-rows: auto 1fr auto;
  padding: clamp(28px, 4vw, 56px);
  background: radial-gradient(120% 90% at 50% 80%,
    var(--pink-soft) 0%,
    var(--blush) 35%,
    #ffffff 75%);
  overflow: hidden;
  transition: opacity 1.1s var(--ease), transform 1.1s var(--ease), clip-path 1.4s var(--ease);
  clip-path: inset(0 0 0 0);
}
.loader.is-exit {
  opacity: 0; transform: scale(1.04);
  clip-path: inset(0 0 100% 0); pointer-events: none;
}
.loader__sheen {
  position: absolute; inset: -20%;
  background:
    radial-gradient(40% 30% at 30% 25%, rgba(186,219,251,.45), transparent 65%),
    radial-gradient(45% 35% at 75% 70%, rgba(253,169,195,.55), transparent 70%),
    radial-gradient(60% 50% at 50% 110%, rgba(157,25,81,.18), transparent 70%);
  filter: blur(40px);
  animation: drift 18s var(--ease-soft) infinite alternate;
}
.loader__bubbles { position: absolute; inset: 0; pointer-events: none; }
.loader__bubbles span {
  position: absolute;
  width: 28px; height: 28px; border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,.95), rgba(253,169,195,.7) 45%, rgba(157,25,81,.3) 100%);
  box-shadow: inset -4px -6px 10px rgba(157,25,81,.15), 0 4px 16px rgba(253,169,195,.4);
  animation: bubbleRise 8s linear infinite;
  opacity: 0;
}
.loader__bubbles span:nth-child(1){ left: 10%; width: 18px; height: 18px; animation-delay: 0s; animation-duration: 7s; }
.loader__bubbles span:nth-child(2){ left: 30%; width: 32px; height: 32px; animation-delay: -1.5s; animation-duration: 9s; }
.loader__bubbles span:nth-child(3){ left: 48%; width: 22px; height: 22px; animation-delay: -3.2s; animation-duration: 8s; }
.loader__bubbles span:nth-child(4){ left: 65%; width: 26px; height: 26px; animation-delay: -4.6s; animation-duration: 10s; }
.loader__bubbles span:nth-child(5){ left: 82%; width: 16px; height: 16px; animation-delay: -2.2s; animation-duration: 7.5s; }
.loader__bubbles span:nth-child(6){ left: 92%; width: 22px; height: 22px; animation-delay: -5.5s; animation-duration: 8.5s; }
@keyframes bubbleRise {
  0%   { bottom: -10%; opacity: 0; transform: translateX(0); }
  10%  { opacity: 0.9; }
  90%  { opacity: 0.9; }
  100% { bottom: 110%; opacity: 0; transform: translateX(40px); }
}
.loader__beam {
  position: absolute; inset: 0;
  background: linear-gradient(110deg, transparent 38%, rgba(255,255,255,.85) 50%, transparent 62%);
  transform: translateX(-100%); pointer-events: none; opacity: 0; mix-blend-mode: screen;
}
.loader.is-beam .loader__beam { animation: sweep 1.1s var(--ease) forwards; }
@keyframes sweep {
  0%{ transform: translateX(-100%); opacity: 0; }
  20%{ opacity: 1; }
  100%{ transform: translateX(100%); opacity: 0; }
}
@keyframes drift {
  0%{ transform: translate3d(-2%, -1%, 0) rotate(0deg); }
  100%{ transform: translate3d(2%, 1%, 0) rotate(8deg); }
}

.loader__top, .loader__bottom {
  position: relative; z-index: 2;
  display: flex; justify-content: space-between; align-items: flex-end;
  font-size: 10.5px; letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--berry-deep);
  opacity: 0; animation: fadeUp .9s var(--ease) .2s forwards;
}
.loader__top { align-items: flex-start; }
.loader__house { font-style: italic; font-family: var(--font-italic); font-size: 16px; letter-spacing: 0.04em; text-transform: none; color: var(--berry); }
.loader__edition { color: color-mix(in oklab, var(--berry), white 25%); }

.loader__center {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: clamp(18px, 2.5vh, 30px); position: relative; z-index: 2;
}
.loader__ring {
  position: absolute;
  width: clamp(220px, 28vw, 360px); height: clamp(220px, 28vw, 360px);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) rotate(-90deg);
  pointer-events: none; opacity: 0.85;
}
.loader__ring circle {
  stroke-dasharray: 100; stroke-dashoffset: 100;
  animation: drawRing 2.4s var(--ease) .15s forwards;
}
@keyframes drawRing { to { stroke-dashoffset: 0; } }
.loader__mono {
  display: inline-flex; align-items: baseline;
  gap: clamp(10px, 1.6vw, 22px);
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(72px, 14vw, 168px);
  line-height: 0.85; letter-spacing: -0.04em;
  color: transparent;
  background-image: linear-gradient(180deg, var(--berry) 0%, var(--berry-deep) 45%, var(--berry) 60%, var(--pink-deep) 100%);
  -webkit-background-clip: text; background-clip: text;
  filter: drop-shadow(0 18px 24px rgba(157,25,81,.18));
}
.loader__letter {
  display: inline-block; transform: translateY(40px); opacity: 0;
  animation: letterIn 1s var(--ease) forwards;
}
.loader__letter--w { animation-delay: .35s; }
.loader__letter--d { animation-delay: .55s; }
.loader__dot {
  font-family: var(--font-italic); font-style: italic; font-weight: 300;
  font-size: 0.45em; transform: translateY(-0.4em);
  opacity: 0; animation: dotIn 1s var(--ease) .8s forwards;
}
@keyframes letterIn {
  0%   { transform: translateY(48px) scale(0.96); opacity: 0; filter: blur(8px); }
  60%  { opacity: 1; filter: blur(0); }
  100% { transform: translateY(0) scale(1); opacity: 1; }
}
@keyframes dotIn { to { opacity: 1; transform: translateY(-0.4em) scale(1.1); } }

.loader__name {
  font-family: var(--font-italic); font-style: italic; font-weight: 300;
  font-size: clamp(18px, 1.5vw, 22px); letter-spacing: 0.04em;
  color: var(--berry); opacity: 0;
  animation: fadeUp .9s var(--ease) 1.1s forwards;
}
.loader__name em { font-style: italic; }

.loader__bottom { animation-delay: 1.3s; align-items: center; }
.loader__bar {
  position: relative; flex: 1; height: 1px;
  margin-right: clamp(20px, 4vw, 48px);
  background: color-mix(in oklab, var(--berry) 18%, transparent); overflow: hidden;
}
.loader__bar i {
  position: absolute; inset: 0 auto 0 0; width: var(--p, 0%);
  background: linear-gradient(90deg, var(--berry-deep), var(--berry), var(--pink));
  transition: width .35s var(--ease);
}
.loader__meta { display: flex; align-items: center; gap: 18px; white-space: nowrap; }
.loader__counter {
  font-family: var(--font-display); font-weight: 500; font-size: 28px;
  letter-spacing: -0.02em; color: var(--berry);
}
.loader__counter i {
  font-family: var(--font-body); font-style: normal; font-size: 11px;
  margin-left: 4px; vertical-align: top; color: color-mix(in oklab, var(--berry), white 30%);
}
.loader__phase {
  font-family: var(--font-italic); font-style: italic; font-weight: 300;
  font-size: 14px; letter-spacing: 0.04em; text-transform: none; color: var(--berry);
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* =======================================================
   NAV
   ======================================================= */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px var(--pad);
  font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--cream); pointer-events: none;
  transition: opacity 1s var(--ease), background .6s var(--ease-soft), backdrop-filter .6s var(--ease-soft), color .6s var(--ease-soft);
}
.nav > * { pointer-events: auto; }
.nav.is-stuck {
  background: color-mix(in oklab, var(--blush) 75%, transparent);
  backdrop-filter: blur(18px) saturate(1.2);
  -webkit-backdrop-filter: blur(18px) saturate(1.2);
  border-bottom: 1px solid color-mix(in oklab, var(--berry) 8%, transparent);
  color: var(--berry);
}
.nav__brand { display: inline-flex; align-items: baseline; gap: 14px; }
.nav__mono {
  font-family: var(--font-display); font-weight: 600;
  font-size: 22px; letter-spacing: -0.04em; color: currentColor;
}
.nav__mono i {
  font-style: italic; font-family: var(--font-italic); font-weight: 300;
  margin: 0 4px; color: var(--pink);
}
.nav.is-stuck .nav__mono i { color: var(--pink-deep); }
.nav__brand-name {
  font-family: var(--font-italic); font-style: italic;
  font-size: 14px; letter-spacing: 0.04em; text-transform: none; color: currentColor;
}
.nav__links {
  display: flex; align-items: center;
  gap: clamp(18px, 2.4vw, 36px); font-weight: 500;
}
.nav__links a {
  position: relative;
  transition: color .3s var(--ease-soft);
}
.nav__links a::after {
  content: ""; position: absolute;
  left: 0; right: 100%; bottom: -6px;
  height: 1px; background: currentColor;
  transition: right .55s var(--ease);
}
.nav__links a:hover::after { right: 0; }

.nav__cta {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 10px 18px;
  border: 1px solid color-mix(in srgb, currentColor 40%, transparent);
  border-radius: 999px;
  font-size: 10.5px; font-weight: 500;
  letter-spacing: 0.28em;
  transition: background .4s var(--ease-soft), color .4s var(--ease-soft), border-color .4s var(--ease-soft);
}
.nav__cta i { font-style: normal; transition: transform .5s var(--ease); }
.nav__cta:hover { background: currentColor; }
.nav__cta:hover span,
.nav__cta:hover i { color: var(--berry); mix-blend-mode: difference; }
.nav.is-stuck .nav__cta:hover { background: var(--berry); color: var(--blush); }
.nav__cta:hover i { transform: translateX(5px); }

@media (max-width: 820px) {
  .nav__links { display: none; }
  .nav__brand-name { display: none; }
}

/* =======================================================
   HERO (Page 1)
   ======================================================= */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  overflow: hidden;
  isolation: isolate;
  /* no z-index here so children below don't sit in their own root context */
}
.hero__bg {
  position: absolute; inset: 0; z-index: 0;
  background-image: url('WildDesireImage/Hero section.png');
  background-size: cover;
  background-position: center;
  transform: scale(1.06);
  animation: heroZoom 24s var(--ease-soft) infinite alternate;
}
@keyframes heroZoom {
  0%   { transform: scale(1.06) translate(0,0); }
  100% { transform: scale(1.1) translate(-1%, -1.5%); }
}

.hero__bubbles {
  position: absolute; inset: 0; z-index: 3; pointer-events: none;
}
.bubble {
  position: absolute; border-radius: 50%;
  background:
    radial-gradient(circle at 30% 25%, rgba(255,255,255,.95) 0%, rgba(255,255,255,0.4) 20%, transparent 35%),
    radial-gradient(circle at 70% 75%, rgba(186,219,251,.55) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(253,169,195,.6) 0%, rgba(157,25,81,.25) 80%, transparent 100%);
  box-shadow:
    inset -6px -8px 14px rgba(157,25,81,.18),
    inset 4px 6px 12px rgba(255,255,255,.6),
    0 8px 24px rgba(253,169,195,.35);
  animation: bubbleFloat 14s ease-in-out infinite;
  opacity: 0.85;
  mix-blend-mode: screen;
  filter: blur(0.2px);
}
.bubble--a { width: 70px; height: 70px; left: 8%;  top: 12%; animation-delay: -1s; }
.bubble--b { width: 38px; height: 38px; left: 22%; top: 36%; animation-delay: -3s; }
.bubble--c { width: 90px; height: 90px; right: 12%; top: 18%; animation-delay: -5s; }
.bubble--d { width: 54px; height: 54px; right: 30%; top: 55%; animation-delay: -7s; }
.bubble--e { width: 28px; height: 28px; left: 40%; top: 18%; animation-delay: -2s; }
.bubble--f { width: 46px; height: 46px; right: 8%; top: 58%; animation-delay: -8s; }
.bubble--g { width: 32px; height: 32px; left: 55%; top: 70%; animation-delay: -4s; }
@keyframes bubbleFloat {
  0%, 100% { transform: translate(0,0) scale(1); }
  25%      { transform: translate(8px, -12px) scale(1.04); }
  50%      { transform: translate(-4px, -22px) scale(0.98); }
  75%      { transform: translate(6px, -10px) scale(1.02); }
}

.hero__streak {
  position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background: linear-gradient(115deg, transparent 40%, rgba(255,255,255,.22) 50%, transparent 60%);
  transform: translateX(-30%);
  animation: streak 11s var(--ease-soft) 3s infinite;
  mix-blend-mode: overlay;
}
@keyframes streak {
  0%, 80% { transform: translateX(-30%); opacity: 0; }
  82%     { opacity: 0.7; }
  100%    { transform: translateX(60%); opacity: 0; }
}

.hero__vignette {
  position: absolute; inset: 0; z-index: 3; pointer-events: none;
  background:
    radial-gradient(120% 90% at 50% 50%, transparent 55%, rgba(157,25,81,.15) 90%, rgba(157,25,81,.35) 100%);
}

/* Overlay layout: top-left meta + bottom-right tagline + center pulse */
.hero__overlay {
  position: absolute; inset: 0; z-index: 5;
  display: grid;
  grid-template-rows: 1fr auto;
  grid-template-columns: 1fr 1fr;
  padding: clamp(110px, 14vh, 160px) var(--pad) clamp(40px, 6vh, 70px);
  pointer-events: none;
}
.hero__overlay > * { pointer-events: auto; }

.hero__corner-tl {
  grid-column: 1 / 2; grid-row: 1 / 2;
  display: flex; flex-direction: column; gap: 10px;
  align-self: start;
}
.hero__corner-tl .eyebrow { opacity: 0; animation: fadeUp 1s var(--ease) 1.2s forwards; }
.hero__filename {
  font-family: var(--font-italic); font-style: italic; font-weight: 300;
  font-size: 14px; letter-spacing: 0.04em;
  color: var(--berry);
  opacity: 0; animation: fadeUp 1s var(--ease) 1.35s forwards;
}

.hero__corner-br {
  grid-column: 2 / 3; grid-row: 2 / 3;
  display: flex; flex-direction: column; gap: 22px;
  align-self: end; justify-self: end; text-align: right;
  max-width: 460px;
}
.hero__tagline {
  margin: 0;
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.05; letter-spacing: -0.02em;
  color: var(--berry);
  opacity: 0; transform: translateY(20px);
  animation: fadeUp 1.2s var(--ease) 1.5s forwards;
}
.hero__tagline em {
  font-family: var(--font-italic); font-style: italic; font-weight: 300;
  background: linear-gradient(180deg, var(--berry), var(--pink-deep) 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero__actions {
  display: flex; align-items: center; justify-content: flex-end; gap: 22px;
  flex-wrap: wrap;
  opacity: 0; animation: fadeUp 1.2s var(--ease) 1.7s forwards;
}
.hero__shade {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 10.5px; font-weight: 500;
  letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--berry);
}
.hero__shade em {
  font-family: var(--font-italic); font-style: italic; font-weight: 300;
  text-transform: none; font-size: 14px; letter-spacing: 0.04em;
}
.dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, white, var(--pink) 40%, var(--berry) 100%);
  box-shadow: 0 0 0 1px rgba(255,255,255,.5), 0 0 16px var(--pink);
}

.hero__pulse {
  grid-column: 1 / 2; grid-row: 2 / 3;
  align-self: end;
  display: inline-flex; align-items: center; gap: 14px;
  font-size: 10px; letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--berry);
  opacity: 0; animation: fadeUp 1s var(--ease) 1.9s forwards;
}
.hero__pulse i {
  display: inline-block; width: 4px; height: 4px; border-radius: 50%;
  background: var(--berry);
  animation: pulseDot 1.8s var(--ease-soft) infinite;
}
.hero__pulse i:nth-child(2) { animation-delay: .2s; }
.hero__pulse i:nth-child(3) { animation-delay: .4s; }
@keyframes pulseDot {
  0%, 100% { opacity: 0.3; transform: scale(0.9); }
  50%      { opacity: 1; transform: scale(1.4); }
}

@media (max-width: 720px) {
  .hero__overlay {
    grid-template-columns: 1fr; grid-template-rows: auto 1fr auto;
    padding-top: 110px;
  }
  .hero__corner-tl { grid-column: 1; grid-row: 1; }
  .hero__corner-br { grid-column: 1; grid-row: 3; justify-self: start; text-align: left; align-items: flex-start; }
  .hero__actions { justify-content: flex-start; }
  .hero__pulse { grid-row: 4; }
}

/* =======================================================
   FLOATING BOTTLE
   z-index map (root stacking contexts):
     - bottle-stage : 30
     - drip__veil   : 50  (paints OVER bottle — bottle goes "behind" only this)
     - drip text    : default flow (paints UNDER positioned bottle)
     - nav          : 50
   ======================================================= */
.bottle-stage {
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 30;
}
.bottle {
  position: absolute;
  top: 0; left: 0;
  /* Bottle PNG is landscape (1.45 aspect) — actual bottle ~1/3 of width.
     Sizing by viewport so the bottle dominates like Page 1 (~30% larger). */
  width: clamp(546px, 73vw, 1144px);
  aspect-ratio: 1510 / 1041;
  --tx: 50vw; --ty: 50vh;
  --rot: 0deg;
  --sx: 1; --sy: 1; --opa: 0;
  transform:
    translate(-50%, -50%)
    translate3d(var(--tx), var(--ty), 0)
    rotate(var(--rot))
    scale(var(--sx), var(--sy));
  opacity: var(--opa);
  will-change: transform, opacity;
}
.bottle img {
  width: 100%; height: 100%;
  object-fit: contain;
  filter:
    drop-shadow(0 60px 80px rgba(157,25,81,.45))
    drop-shadow(0 22px 40px rgba(253,169,195,.55));
  user-select: none;
  -webkit-user-drag: none;
  pointer-events: none;
}
.bottle__halo {
  position: absolute;
  left: 50%; top: 50%;
  width: 60%; height: 80%;
  transform: translate(-50%, -50%);
  background: radial-gradient(ellipse, rgba(253,169,195,.65) 0%, transparent 60%);
  filter: blur(48px);
  z-index: -1;
  animation: bottleHalo 5s ease-in-out infinite alternate;
}
@keyframes bottleHalo {
  0% { opacity: 0.7; transform: translate(-50%, -50%) scale(1); }
  100% { opacity: 1;  transform: translate(-50%, -50%) scale(1.08); }
}
.bottle__shadow {
  position: absolute;
  left: 50%; bottom: 6%;
  width: 22%; height: 24px;
  transform: translateX(-50%);
  background: radial-gradient(ellipse, rgba(157,25,81,.45) 0%, transparent 70%);
  filter: blur(18px);
  z-index: -2;
  opacity: 0.65;
}

/* Bubble-formation rings — expand outward at landing (soap-bubble effect) */
.bottle__ring {
  position: absolute;
  left: 50%; top: 50%;
  width: 22vmin; height: 22vmin;
  transform: translate(-50%, -50%) scale(0);
  border-radius: 50%;
  border: 1.4px solid rgba(255,255,255,.7);
  background:
    radial-gradient(circle at 30% 25%, rgba(255,255,255,.18) 0%, transparent 35%),
    radial-gradient(circle at 70% 75%, rgba(186,219,251,.12) 0%, transparent 50%);
  opacity: 0;
  pointer-events: none;
  z-index: 0;
  box-shadow:
    inset 0 0 32px rgba(255,255,255,.25),
    0 0 30px rgba(253,169,195,.4);
}
.bottle__ring--2 {
  border-color: rgba(253,169,195,.6);
  border-width: 1px;
  width: 28vmin; height: 28vmin;
}
.bottle.is-bubbling .bottle__ring {
  animation: bubbleRing 1.7s var(--ease) forwards;
}
.bottle.is-bubbling .bottle__ring--2 {
  animation: bubbleRing 2.0s var(--ease) .25s forwards;
}
@keyframes bubbleRing {
  0%   { transform: translate(-50%, -50%) scale(0); opacity: 0; }
  18%  { opacity: 1; }
  100% { transform: translate(-50%, -50%) scale(2.6); opacity: 0; }
}

/* Hide the bottle entirely once we're past page 2 — JS sets --opa to 0 */
@media (max-width: 720px) {
  .bottle { width: clamp(320px, 92vw, 560px); }
}

/* =======================================================
   DRIP CONTINUATION (Page 2)
   ======================================================= */
.drip {
  position: relative;
  margin-top: -2px;  /* seamless with hero */
  padding: 0 var(--pad) clamp(120px, 18vh, 200px);
  background:
    radial-gradient(80% 60% at 50% 10%, color-mix(in oklab, var(--pink) 35%, white) 0%, transparent 70%),
    linear-gradient(180deg, color-mix(in oklab, var(--pink), white 30%) 0%, var(--blush) 60%, var(--cream) 100%);
  overflow: hidden;
  /* NO isolation here — otherwise .drip becomes its own stacking context and
     .drip__veil's z-index:50 won't beat the root-level bottle (z 30). */
  min-height: 160vh;
}
/* Drip veil: top 90vh of section, FULL viewport width (= hero width), STATIC
   (no animation), paints OVER the bottle. */
.drip__veil {
  position: absolute;
  top: 0; left: 0; right: 0;
  width: 100%;
  height: 90vh;
  min-height: 540px;
  background-image: url('WildDesireImage/page direclty below hero section.png');
  background-size: 100% 100%;
  background-position: top center;
  background-repeat: no-repeat;
  filter: drop-shadow(0 32px 40px rgba(157,25,81,.26));
  z-index: 50;
  pointer-events: none;
}

.drip__inner {
  position: relative;
  /* Sit ABOVE the bottle (30) so text never gets covered, but BELOW the
     drip veil (50) so drips still paint over both bottle and any overlap. */
  z-index: 40;
  max-width: var(--max);
  margin: 0 auto;
  padding-top: calc(90vh + clamp(30px, 5vh, 70px));
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: start;
  min-height: 60vh;
}
.drip__bottle-anchor {
  /* invisible spacer where the bottle "lives" visually */
  min-height: clamp(420px, 58vh, 700px);
}
.drip__copy { max-width: 580px; }
.drip__copy .eyebrow { margin-bottom: 26px; }
.drip__title {
  font-size: clamp(2.6rem, 7vw, 6rem);
  line-height: 0.94;
  letter-spacing: -0.03em;
  margin: 0 0 30px;
}
.drip__lede {
  font-family: var(--font-italic); font-style: italic; font-weight: 300;
  font-size: clamp(18px, 1.55vw, 23px); line-height: 1.5;
  color: color-mix(in oklab, var(--berry), black 5%);
  margin: 0 0 40px;
  max-width: 38ch;
}
.drip__lede em { color: var(--berry); }

.drip__notes { display: flex; flex-direction: column; gap: 0; max-width: 540px; }
.drip__notes li {
  display: grid; grid-template-columns: 44px 1fr;
  align-items: baseline; gap: 16px;
  padding: 20px 0;
  border-top: 1px solid color-mix(in oklab, var(--berry) 18%, transparent);
  font-family: var(--font-italic); font-style: italic; font-weight: 400;
  font-size: clamp(16px, 1.2vw, 19px);
  color: color-mix(in oklab, var(--ink), var(--berry) 8%);
}
.drip__notes li:last-child { border-bottom: 1px solid color-mix(in oklab, var(--berry) 18%, transparent); }
.drip__notes li span {
  font-family: var(--font-display); font-weight: 500;
  font-size: 24px; letter-spacing: -0.02em;
  color: var(--berry); font-style: normal;
}

@media (max-width: 900px) {
  .drip__veil { height: 70vh; min-height: 420px; }
  .drip__inner {
    grid-template-columns: 1fr;
    padding-top: calc(70vh + clamp(60px, 8vh, 110px));
  }
  .drip__bottle-anchor { display: none; }
  .drip__copy { max-width: none; }
}

/* =======================================================
   FEELING (Manifesto)
   ======================================================= */
.feel {
  position: relative;
  padding: var(--pad-y) var(--pad);
  background: linear-gradient(180deg, var(--cream) 0%, var(--blush) 50%, color-mix(in oklab, var(--pink), white 50%) 100%);
  overflow: hidden;
}
.feel__bg {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    radial-gradient(40% 30% at 80% 20%, rgba(186,219,251,.4), transparent 70%),
    radial-gradient(40% 30% at 10% 70%, rgba(253,169,195,.4), transparent 70%);
  filter: blur(50px);
}
.feel__inner { position: relative; z-index: 2; max-width: var(--max); margin: 0 auto; }
.feel__head { text-align: center; max-width: 760px; margin: 0 auto clamp(60px, 9vh, 100px); }
.feel__head .eyebrow { margin-bottom: 24px; }
.feel__title { margin: 0 0 24px; }
.feel__lede {
  margin: 0;
  font-family: var(--font-italic); font-style: italic; font-weight: 300;
  font-size: clamp(17px, 1.4vw, 21px); line-height: 1.5;
  color: color-mix(in oklab, var(--berry), black 5%);
}
.feel__lede em { color: var(--berry); }

.feel__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  gap: clamp(20px, 2.4vw, 36px);
}
@media (max-width: 980px) {
  .feel__grid { grid-template-columns: 1fr; }
}

.feel-card {
  position: relative;
  padding: 36px 30px 40px;
  border-radius: 6px;
  background: rgba(255,255,255,.6);
  border: 1px solid rgba(157,25,81,.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  isolation: isolate;
  overflow: hidden;
  transition: transform .9s var(--ease), box-shadow .6s var(--ease-soft);
  min-height: 380px;
}
.feel-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px -30px rgba(157,25,81,.4);
}
.feel-card__num {
  font-family: var(--font-display); font-weight: 500;
  font-size: 14px; letter-spacing: -0.01em;
  color: var(--pink-deep);
}
.feel-card__word {
  margin: 16px 0 8px;
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(40px, 4.6vw, 64px);
  letter-spacing: -0.03em; line-height: 0.95;
  color: var(--berry);
}
.feel-card__line {
  margin: 0 0 28px;
  font-size: 13px;
}
.feel-card__line em {
  font-family: var(--font-italic); font-style: italic;
  font-size: 18px; color: var(--berry);
}
.feel-card__body {
  margin: 0;
  font-size: 15px; line-height: 1.6;
  color: color-mix(in oklab, var(--ink), var(--berry) 6%);
  max-width: 36ch;
}
.feel-card__glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 100%, rgba(253,169,195,.35), transparent 60%);
  opacity: 0; transition: opacity .8s var(--ease-soft);
  z-index: -1;
}
.feel-card:hover .feel-card__glow { opacity: 1; }

.feel-card--featured {
  background: linear-gradient(165deg, color-mix(in oklab, var(--pink), white 65%) 0%, rgba(255,255,255,.5) 100%);
  border-color: rgba(157,25,81,.18);
  min-height: 460px;
}
.feel-card__model {
  position: absolute;
  right: -20px; bottom: -20px;
  width: 60%;
  aspect-ratio: 3/4;
  overflow: hidden;
  border-radius: 4px;
  z-index: -1;
  opacity: 0.55;
  filter: saturate(1.05);
  mask-image: radial-gradient(ellipse at 50% 50%, black 30%, transparent 80%);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}
.feel-card__model img {
  width: 100%; height: 100%; object-fit: cover; object-position: 50% 30%;
}
.feel-card--featured:hover .feel-card__model {
  opacity: 0.8;
  transform: translate(-4px, -8px) scale(1.04);
}

/* =======================================================
   THE THREE (Variants)
   ======================================================= */
.three {
  position: relative;
  padding: var(--pad-y) var(--pad);
  background:
    linear-gradient(180deg, color-mix(in oklab, var(--pink), white 50%) 0%, var(--blush) 30%, var(--cream) 100%);
  overflow: hidden;
  isolation: isolate;
}
.three__atmos { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.three__orb {
  position: absolute; border-radius: 50%;
  filter: blur(70px); mix-blend-mode: multiply; opacity: 0.45;
}
.three__orb--blush { top: -10%; right: -8%; width: 50vmax; height: 50vmax; background: radial-gradient(circle, var(--pink) 0%, transparent 65%); }
.three__orb--berry { bottom: -20%; left: -10%; width: 40vmax; height: 40vmax; background: radial-gradient(circle, color-mix(in oklab, var(--berry), white 40%) 0%, transparent 65%); opacity: 0.3; }

.three__head { position: relative; z-index: 2; text-align: center; max-width: 760px; margin: 0 auto clamp(60px, 9vh, 100px); }
.three__head .eyebrow { margin-bottom: 24px; }
.three__title { margin: 0; }

.three__rail {
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: clamp(20px, 2.4vw, 40px);
  max-width: var(--max);
  margin: 0 auto;
}
@media (max-width: 900px) {
  .three__rail { grid-template-columns: 1fr; }
}

.gloss {
  position: relative;
  display: block;
  isolation: isolate;
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255,255,255,.55);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(157,25,81,.08);
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  transition: transform .9s var(--ease), box-shadow .6s var(--ease-soft);
}
.gloss:hover, .gloss:focus-visible {
  transform: translateY(-10px);
  box-shadow: 0 50px 80px -40px rgba(157,25,81,.5);
  outline: none;
}
.gloss:focus-visible { box-shadow: 0 50px 80px -40px rgba(157,25,81,.5), 0 0 0 2px var(--berry); }
.gloss__inner {
  position: relative;
  padding: 30px 28px 38px;
  z-index: 2;
}
.gloss__media {
  position: relative;
  aspect-ratio: 3/4;
  margin-bottom: 24px;
  border-radius: 4px;
  overflow: hidden;
  isolation: isolate;
}
.gloss__media img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  transition: transform 1.6s var(--ease);
  filter: saturate(1.05) contrast(1.02);
}
.gloss:hover .gloss__media img { transform: scale(1.08); }
.gloss__shine {
  position: absolute; inset: 0;
  background: linear-gradient(125deg, transparent 30%, rgba(255,255,255,.5) 50%, transparent 70%);
  transform: translateX(-130%);
  transition: transform 1.4s var(--ease);
  pointer-events: none;
  mix-blend-mode: screen;
}
.gloss:hover .gloss__shine { transform: translateX(130%); }

.gloss__num {
  font-family: var(--font-display); font-weight: 500;
  font-size: 12px; letter-spacing: 0.04em;
  color: var(--pink-deep);
}
.gloss__name {
  margin: 8px 0 14px;
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(34px, 4vw, 50px);
  line-height: 0.95; letter-spacing: -0.03em;
  color: var(--berry);
}
.gloss__name em { font-family: var(--font-italic); font-style: italic; font-weight: 300; }
.gloss__tag {
  margin: 0 0 22px;
  font-family: var(--font-italic); font-style: italic; font-weight: 400;
  font-size: 17px; color: var(--berry);
}
.gloss__tag em { background: linear-gradient(180deg, var(--berry), var(--pink)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.gloss__body {
  margin: 0 0 22px;
  font-size: 14.5px; line-height: 1.65;
  color: color-mix(in oklab, var(--ink), var(--berry) 8%);
}
.gloss__notes {
  display: flex; flex-direction: column; gap: 10px;
  font-family: var(--font-body);
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: color-mix(in oklab, var(--berry), white 25%);
}
.gloss__notes li {
  padding-left: 18px; position: relative;
}
.gloss__notes li::before {
  content: ""; position: absolute;
  left: 0; top: 0.5em; width: 10px; height: 1px;
  background: var(--berry);
}

.gloss__cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 22px;
  padding: 14px 20px 14px 22px;
  border-radius: 999px;
  background: var(--berry);
  color: var(--blush);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  box-shadow: 0 12px 26px -12px rgba(157,25,81,.5), inset 0 1px 0 rgba(255,255,255,.18);
  transition: transform .55s var(--ease), gap .4s var(--ease-soft);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.gloss__cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 30%, rgba(255,255,255,.45) 50%, transparent 70%);
  transform: translateX(-130%);
  transition: transform 1s var(--ease);
  border-radius: inherit;
  z-index: -1;
}
.gloss:hover .gloss__cta { gap: 18px; }
.gloss:hover .gloss__cta::before { transform: translateX(130%); }
.gloss__cta i { font-style: normal; font-size: 14px; transition: transform .55s var(--ease); }
.gloss:hover .gloss__cta i { transform: translateX(4px); }

.gloss__swatch {
  position: absolute;
  top: 18px; right: 18px;
  width: 38px; height: 38px; border-radius: 50%;
  box-shadow: 0 6px 12px rgba(0,0,0,.18), inset 0 1px 0 rgba(255,255,255,.5);
  z-index: 3;
}
.gloss__swatch i {
  position: absolute; inset: 4px; border-radius: 50%;
  background: radial-gradient(circle at 30% 25%, rgba(255,255,255,.7), transparent 35%);
}
.swatch--shy  { background: linear-gradient(150deg, var(--pink-soft), var(--pink)); }
.swatch--ray  { background: linear-gradient(150deg, #fff7e6, var(--pink-soft) 70%, var(--pink)); }
.swatch--deep { background: linear-gradient(150deg, var(--pink-deep), var(--berry) 60%, var(--berry-deep)); }

.three__credit {
  margin: clamp(60px, 9vh, 100px) auto 0;
  text-align: center;
  font-family: var(--font-italic); font-style: italic;
  font-size: 13px; letter-spacing: 0.04em;
  color: color-mix(in oklab, var(--berry), white 25%);
}

/* Variant-specific accents */
.gloss--shy  { background: linear-gradient(170deg, rgba(253,169,195,.18), rgba(255,255,255,.55)); }
.gloss--ray  { background: linear-gradient(170deg, rgba(255,224,234,.25), rgba(255,255,255,.6)); }
.gloss--deep { background: linear-gradient(170deg, rgba(157,25,81,.12), rgba(255,255,255,.5)); }
.gloss--deep .gloss__name { color: var(--berry-deep); }

/* =======================================================
   CAMPAIGN (Editorial · Glassmorphism · Typewriter)
   ======================================================= */
.campaign {
  position: relative;
  padding: var(--pad-y) var(--pad);
  background:
    linear-gradient(180deg, var(--cream) 0%, var(--blush) 100%);
  overflow: hidden;
  isolation: isolate;
}

/* Atmospheric backdrop orbs */
.campaign__atmos { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.campaign__orb {
  position: absolute; border-radius: 50%;
  filter: blur(80px); mix-blend-mode: multiply;
}
.campaign__orb--a { top: 18%;  left: -8%;  width: 38vmax; height: 38vmax; background: radial-gradient(circle, var(--pink), transparent 65%); opacity: 0.45; }
.campaign__orb--b { top: 40%;  right: -10%; width: 42vmax; height: 42vmax; background: radial-gradient(circle, color-mix(in oklab, var(--berry), white 35%), transparent 65%); opacity: 0.3; }
.campaign__orb--c { bottom: -10%; left: 30%; width: 30vmax; height: 30vmax; background: radial-gradient(circle, var(--powder), transparent 65%); opacity: 0.35; }

/* Typewriter title block */
.campaign__title-wrap {
  position: relative; z-index: 2;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto clamp(50px, 8vh, 90px);
}
.campaign__title-wrap .eyebrow { margin-bottom: 24px; display: inline-block; }
.cmp__typewriter {
  display: block;
  margin: 0 0 24px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(54px, 11vw, 168px);
  line-height: 0.92;
  letter-spacing: -0.045em;
  color: var(--berry);
  font-variation-settings: "opsz" 96;
  white-space: nowrap;
}
.cmp__typewriter .tw {
  display: inline-block;
  vertical-align: baseline;
}
.cmp__typewriter .tw--italic {
  font-family: var(--font-italic);
  font-style: italic;
  font-weight: 300;
  background: linear-gradient(180deg, var(--berry) 0%, var(--pink-deep) 80%, var(--pink) 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
/* Cursor as pseudo-element on the actively-typing span */
.cmp__typewriter .tw[data-typing]::after {
  content: '';
  display: inline-block;
  width: 0.05em; height: 0.78em;
  background: var(--berry);
  margin-left: 0.04em;
  vertical-align: -0.06em;
  animation: blink 1.05s steps(2, end) infinite;
}
/* Trailing cursor on the last span until typing finishes */
.cmp__typewriter:not(.is-typed) .tw[data-tw="1"]:empty::after,
.cmp__typewriter:not(.is-typed) .tw[data-tw="1"]:not([data-typing])::after { content: none; }
@keyframes blink { to { opacity: 0; } }

.cmp__title-sub {
  margin: 0;
  font-family: var(--font-italic); font-style: italic; font-weight: 300;
  font-size: clamp(13px, 1.1vw, 16px); letter-spacing: 0.06em;
  color: color-mix(in oklab, var(--berry), white 25%);
}

/* Editorial grid layout */
.campaign__editorial {
  position: relative; z-index: 2;
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.45fr 1fr 1fr;
  grid-template-rows: minmax(440px, 56vh) minmax(280px, 38vh);
  gap: clamp(16px, 2.2vw, 32px);
}

.cmp { margin: 0; position: relative; }

.cmp__media {
  position: relative;
  width: 100%; height: 100%;
  overflow: hidden;
  border-radius: 4px;
  isolation: isolate;
  box-shadow:
    0 50px 90px -42px rgba(157,25,81,.55),
    0 20px 40px -22px rgba(157,25,81,.32),
    inset 0 0 0 1px rgba(255,255,255,.4);
}
.cmp__media img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  transition: transform 16s var(--ease-soft), filter .8s var(--ease-soft);
  filter: saturate(1.04) contrast(1.02);
}
.cmp:hover .cmp__media img { transform: scale(1.06); filter: saturate(1.1) contrast(1.05); }
.cmp__grain {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 0.92  0 0 0 0 0.96  0 0 0 0.14 0'/></filter><rect width='200' height='200' filter='url(%23n)'/></svg>");
  mix-blend-mode: overlay; opacity: 0.55; pointer-events: none;
}
.cmp figcaption {
  margin-top: 14px;
  display: flex; align-items: baseline; gap: 12px;
  font-family: var(--font-italic); font-style: italic;
  font-size: 14px; color: var(--berry);
}
.cmp__num {
  font-family: var(--font-display); font-weight: 500;
  font-size: 18px; letter-spacing: -0.02em;
  color: var(--pink-deep);
  font-style: normal;
}

/* Glassmorphic tag on each frame */
.cmp__glass-tag {
  position: absolute;
  top: 16px; left: 16px;
  display: inline-flex; align-items: center; gap: 10px;
  padding: 9px 16px;
  border-radius: 999px;
  background: rgba(255,247,250,.32);
  backdrop-filter: blur(14px) saturate(1.2);
  -webkit-backdrop-filter: blur(14px) saturate(1.2);
  border: 1px solid rgba(255,255,255,.45);
  box-shadow: 0 6px 18px rgba(157,25,81,.18);
  font-size: 10px; font-weight: 500;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--cream);
  z-index: 4;
}
.cmp__dot {
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--pink);
  box-shadow: 0 0 12px var(--pink);
  animation: tagPulse 2.2s ease-in-out infinite;
}
@keyframes tagPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(253,169,195,.65); }
  50%      { box-shadow: 0 0 0 7px rgba(253,169,195,0); }
}

/* Grid placement */
.cmp--hero     { grid-column: 1 / 2; grid-row: 1 / 3; transform: translateY(0); }
.cmp--portrait { grid-column: 2 / 3; grid-row: 1 / 2; transform: translateY(-30px); }
.cmp--drip     { grid-column: 3 / 4; grid-row: 1 / 2; transform: translateY(40px); }
.cmp--sunset   { grid-column: 2 / 4; grid-row: 2 / 3; transform: translateY(10px); }

/* Glass quote overlapping the layout */
.cmp__quote {
  position: absolute;
  bottom: -40px;
  left: clamp(20px, 28%, 36%);
  max-width: 320px;
  margin: 0;
  padding: 30px 32px 28px;
  background: rgba(255,247,250,.55);
  backdrop-filter: blur(22px) saturate(1.3);
  -webkit-backdrop-filter: blur(22px) saturate(1.3);
  border: 1px solid rgba(255,255,255,.55);
  border-radius: 8px;
  box-shadow:
    0 36px 64px -28px rgba(157,25,81,.4),
    0 10px 24px -12px rgba(157,25,81,.25),
    inset 0 1px 0 rgba(255,255,255,.7);
  z-index: 10;
}
.cmp__quote-mark {
  display: block;
  font-family: var(--font-display); font-weight: 500;
  font-size: 74px; line-height: 0.35;
  color: var(--pink-deep);
  margin-bottom: 10px;
}
.cmp__quote p {
  margin: 0 0 16px;
  font-family: var(--font-italic); font-style: italic; font-weight: 400;
  font-size: 21px; line-height: 1.3;
  color: var(--berry);
}
.cmp__quote p em {
  background: linear-gradient(180deg, var(--berry), var(--pink));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cmp__quote cite {
  font-style: normal; font-family: var(--font-body);
  font-size: 10.5px; letter-spacing: 0.32em; text-transform: uppercase;
  color: color-mix(in oklab, var(--berry), white 25%);
  display: inline-flex; align-items: center; gap: 12px;
}
.cmp__cite-rule {
  display: inline-block;
  width: 26px; height: 1px;
  background: color-mix(in oklab, var(--berry), white 25%);
}

/* Glass credit card on the right */
.cmp__credit-card {
  position: absolute;
  bottom: -50px; right: clamp(20px, 4vw, 60px);
  max-width: 280px;
  padding: 26px 28px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 8px 18px;
  background: rgba(255,247,250,.4);
  backdrop-filter: blur(20px) saturate(1.3);
  -webkit-backdrop-filter: blur(20px) saturate(1.3);
  border: 1px solid rgba(255,255,255,.55);
  border-radius: 8px;
  box-shadow:
    0 36px 64px -28px rgba(157,25,81,.4),
    inset 0 1px 0 rgba(255,255,255,.7);
  z-index: 10;
}
.cmp__credit-label {
  font-family: var(--font-body); font-weight: 500;
  font-size: 9.5px; letter-spacing: 0.3em; text-transform: uppercase;
  color: color-mix(in oklab, var(--berry), white 30%);
  align-self: center;
}
.cmp__credit-val {
  font-family: var(--font-italic); font-style: italic; font-weight: 400;
  font-size: 15px; color: var(--berry);
}

@media (max-width: 1000px) {
  .campaign__editorial {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto auto;
  }
  .cmp--hero     { grid-column: 1 / 3; grid-row: 1 / 2; transform: none; }
  .cmp--hero .cmp__media { aspect-ratio: 4/3.6; }
  .cmp--portrait { grid-column: 1 / 2; grid-row: 2 / 3; transform: none; }
  .cmp--portrait .cmp__media { aspect-ratio: 3/4; }
  .cmp--drip     { grid-column: 2 / 3; grid-row: 2 / 3; transform: none; }
  .cmp--drip .cmp__media { aspect-ratio: 3/4; }
  .cmp--sunset   { grid-column: 1 / 3; grid-row: 3 / 4; transform: none; }
  .cmp--sunset .cmp__media { aspect-ratio: 16/9; }
  .cmp__quote, .cmp__credit-card {
    position: static; max-width: none; margin-top: 24px;
  }
}

/* =======================================================
   VOICES (Testimonial bubbles)
   ======================================================= */
.voices {
  position: relative;
  padding: var(--pad-y) var(--pad);
  background: linear-gradient(180deg, var(--blush) 0%, color-mix(in oklab, var(--pink), white 50%) 100%);
  overflow: hidden;
  isolation: isolate;
}
.voices__bg { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.voices__orb {
  position: absolute; border-radius: 50%;
  filter: blur(80px); mix-blend-mode: multiply; opacity: 0.4;
}
.voices__orb--a { top: -20%; left: -10%; width: 50vmax; height: 50vmax; background: radial-gradient(circle, var(--pink), transparent 65%); }
.voices__orb--b { bottom: -20%; right: -10%; width: 50vmax; height: 50vmax; background: radial-gradient(circle, var(--powder), transparent 65%); }

.voices__head {
  position: relative; z-index: 2;
  text-align: center;
  max-width: 760px;
  margin: 0 auto clamp(60px, 9vh, 100px);
}
.voices__head .eyebrow { margin-bottom: 24px; }
.voices__title { margin: 0 0 18px; }
.voices__sub {
  margin: 0;
  font-family: var(--font-italic); font-style: italic; font-weight: 300;
  font-size: clamp(15px, 1.2vw, 18px);
  color: color-mix(in oklab, var(--berry), white 18%);
}

.voices__field {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--max);
  height: clamp(540px, 70vh, 760px);
  margin: 0 auto;
}

.vbubble {
  position: absolute;
  left: var(--x); top: var(--y);
  width: var(--size); height: var(--size);
  padding: 0;
  border-radius: 50%;
  background: transparent;
  transform-origin: center;
  cursor: pointer;
  outline: none;
  isolation: isolate;
  animation: bubbleDrift 12s ease-in-out infinite;
  animation-delay: var(--delay, 0s);
  transition: z-index 0s linear .4s;
  z-index: 1;
}
.vbubble:hover, .vbubble:focus-visible {
  z-index: 20;
  animation-play-state: paused;
  transition: z-index 0s;
}
@keyframes bubbleDrift {
  0%, 100% { transform: translate(0,0) rotate(0deg); }
  25%      { transform: translate(8px, -14px) rotate(2deg); }
  50%      { transform: translate(-6px, -22px) rotate(-1deg); }
  75%      { transform: translate(10px, -10px) rotate(1deg); }
}

.vbubble__inner {
  position: relative;
  display: block;
  width: 100%; height: 100%;
  border-radius: 50%;
  overflow: hidden;
  transition: transform .7s var(--ease-spring), box-shadow .6s var(--ease-soft);
  box-shadow:
    inset -8px -10px 18px rgba(157,25,81,.18),
    inset 6px 8px 18px rgba(255,255,255,.7),
    0 14px 32px rgba(253,169,195,.45),
    0 4px 14px rgba(157,25,81,.25);
}
.vbubble__inner::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background:
    radial-gradient(circle at 28% 22%, rgba(255,255,255,.9) 0%, rgba(255,255,255,0) 22%),
    radial-gradient(circle at 78% 80%, rgba(186,219,251,.3) 0%, transparent 50%);
  pointer-events: none;
  z-index: 2;
}
.vbubble:hover .vbubble__inner,
.vbubble:focus-visible .vbubble__inner {
  transform: scale(1.4);
  box-shadow:
    inset -10px -14px 22px rgba(157,25,81,.22),
    inset 8px 10px 22px rgba(255,255,255,.85),
    0 30px 60px rgba(253,169,195,.55),
    0 10px 24px rgba(157,25,81,.35),
    0 0 0 8px rgba(255,255,255,.5);
}

.vbubble__avatar {
  display: block;
  width: 100%; height: 100%;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  color: var(--cream);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: calc(var(--size) * 0.34);
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .7s var(--ease-spring);
}
.vbubble__avatar--berry  { background: linear-gradient(150deg, var(--berry) 0%, var(--berry-deep) 100%); }
.vbubble__avatar--blush  { background: linear-gradient(150deg, var(--pink) 0%, var(--pink-deep) 100%); }
.vbubble__avatar--ray    { background: linear-gradient(150deg, #fff5db 0%, var(--pink) 100%); color: var(--berry); }
.vbubble__avatar--mirror { background: linear-gradient(150deg, var(--powder) 0%, var(--pink) 100%); color: var(--berry); }
.vbubble__avatar--petal  { background: linear-gradient(150deg, var(--pink-soft) 0%, var(--pink) 100%); color: var(--berry); }
.vbubble__avatar--deep   { background: linear-gradient(150deg, var(--berry-deep) 0%, #5a0a2a 100%); }

.vbubble__thought {
  position: absolute;
  left: 50%;
  top: calc(100% + 14px);
  transform: translate(-50%, 6px) scale(0.92);
  width: max-content;
  max-width: 280px;
  padding: 18px 22px;
  background: var(--cream);
  border: 1px solid rgba(157,25,81,.08);
  border-radius: 18px;
  box-shadow: 0 20px 40px -20px rgba(157,25,81,.4);
  opacity: 0;
  pointer-events: none;
  text-align: center;
  transition: opacity .5s var(--ease), transform .6s var(--ease-spring);
}
.vbubble__thought::before {
  content: "";
  position: absolute;
  left: 50%; top: -7px;
  transform: translateX(-50%) rotate(45deg);
  width: 14px; height: 14px;
  background: var(--cream);
  border-top: 1px solid rgba(157,25,81,.08);
  border-left: 1px solid rgba(157,25,81,.08);
}
.vbubble__thought em {
  display: block;
  font-family: var(--font-italic); font-style: italic; font-weight: 400;
  font-size: 16px; line-height: 1.35;
  color: var(--berry);
  margin-bottom: 10px;
}
.vbubble__name {
  display: block;
  font-family: var(--font-body); font-weight: 500;
  font-size: 10px; letter-spacing: 0.28em;
  text-transform: uppercase;
  color: color-mix(in oklab, var(--berry), white 25%);
}
.vbubble:hover .vbubble__thought,
.vbubble:focus-visible .vbubble__thought {
  opacity: 1;
  transform: translate(-50%, 14px) scale(1);
}

/* Adjust thought positioning for edge bubbles */
.vbubble--p1 .vbubble__thought,
.vbubble--p2 .vbubble__thought { max-width: 320px; }
.vbubble[style*="--y: 8"] .vbubble__thought,
.vbubble[style*="--y: 80%"] .vbubble__thought,
.vbubble[style*="--y: 84%"] .vbubble__thought {
  top: auto; bottom: calc(100% + 14px);
  transform: translate(-50%, -6px) scale(0.92);
}
.vbubble[style*="--y: 80%"]:hover .vbubble__thought,
.vbubble[style*="--y: 80%"]:focus-visible .vbubble__thought,
.vbubble[style*="--y: 84%"]:hover .vbubble__thought,
.vbubble[style*="--y: 84%"]:focus-visible .vbubble__thought {
  transform: translate(-50%, -14px) scale(1);
}
.vbubble[style*="--y: 80%"] .vbubble__thought::before,
.vbubble[style*="--y: 84%"] .vbubble__thought::before {
  top: auto; bottom: -7px;
  border-top: 0; border-left: 0;
  border-bottom: 1px solid rgba(157,25,81,.08);
  border-right: 1px solid rgba(157,25,81,.08);
}

.voices__credit {
  position: relative; z-index: 2;
  margin: clamp(40px, 6vh, 80px) auto 0;
  text-align: center;
  font-family: var(--font-italic); font-style: italic;
  font-size: 13px; letter-spacing: 0.04em;
  color: color-mix(in oklab, var(--berry), white 25%);
}

@media (max-width: 760px) {
  .voices__field { height: clamp(800px, 110vh, 1000px); }
  .vbubble {
    /* Scale down on small screens */
    width: calc(var(--size) * 0.7);
    height: calc(var(--size) * 0.7);
  }
  .vbubble__thought { max-width: 220px; font-size: 14px; }
}

/* =======================================================
   FINAL DESIRE (Coda)
   ======================================================= */
.desire {
  position: relative;
  padding: clamp(120px, 18vh, 200px) var(--pad) clamp(60px, 10vh, 120px);
  background:
    radial-gradient(70% 70% at 50% 100%, color-mix(in oklab, var(--pink) 35%, var(--berry) 8%) 0%, transparent 70%),
    linear-gradient(180deg, color-mix(in oklab, var(--pink), white 50%) 0%, var(--blush) 60%, color-mix(in oklab, var(--pink), white 30%) 100%);
  overflow: hidden;
  isolation: isolate;
  text-align: center;
}
.desire__atmos { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.desire__orb {
  position: absolute; border-radius: 50%;
  filter: blur(80px); mix-blend-mode: multiply;
}
.desire__orb--a {
  top: 10%; right: -10%;
  width: 50vmax; height: 50vmax;
  background: radial-gradient(circle, var(--pink) 0%, transparent 60%);
  opacity: 0.45;
}
.desire__orb--b {
  bottom: -20%; left: -10%;
  width: 50vmax; height: 50vmax;
  background: radial-gradient(circle, var(--powder) 0%, transparent 60%);
  opacity: 0.4;
}
.desire__grain {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.95' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.62  0 0 0 0 0.10  0 0 0 0 0.32  0 0 0 0.12 0'/></filter><rect width='160' height='160' filter='url(%23n)'/></svg>");
  mix-blend-mode: multiply;
  opacity: 0.3;
}
.desire__inner { position: relative; z-index: 2; max-width: 1100px; margin: 0 auto; }
.desire__inner .eyebrow { margin-bottom: 40px; }
.desire__hero {
  margin: 0 0 36px;
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(3rem, 8vw, 7rem);
  line-height: 1.0; letter-spacing: -0.04em;
  color: var(--berry);
  font-variation-settings: "opsz" 96;
}
.desire__hero em {
  font-family: var(--font-italic); font-style: italic; font-weight: 300;
  letter-spacing: 0;
  background: linear-gradient(180deg, var(--berry) 0%, var(--pink-deep) 70%, var(--pink) 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.desire__line {
  display: block; position: relative; overflow: hidden;
}
.desire__line > span,
.desire__line > em {
  display: inline-block;
  transform: translateY(110%);
  transition: transform 1.3s var(--ease);
}
.desire__line.is-in > span,
.desire__line.is-in > em { transform: translateY(0); }
.desire__line:nth-child(2) > span,
.desire__line:nth-child(2) > em { transition-delay: 0.15s; }
.desire__line:nth-child(3) > span,
.desire__line:nth-child(3) > em { transition-delay: 0.3s; }
.desire__line:nth-child(4) > span,
.desire__line:nth-child(4) > em { transition-delay: 0.45s; }
.desire__line:nth-child(5) > span,
.desire__line:nth-child(5) > em { transition-delay: 0.6s; }

.desire__sub {
  margin: 0 auto 46px;
  max-width: 60ch;
  font-family: var(--font-italic); font-style: italic; font-weight: 300;
  font-size: clamp(17px, 1.4vw, 21px);
  color: color-mix(in oklab, var(--berry), black 5%);
}
.desire__cta {
  display: flex; align-items: center; justify-content: center; gap: 16px;
  flex-wrap: wrap;
  margin-bottom: clamp(60px, 9vh, 100px);
}
.desire__signoff {
  display: flex; align-items: center; justify-content: center;
  gap: clamp(14px, 2vw, 26px); flex-wrap: wrap;
  padding-top: 36px;
  border-top: 1px solid color-mix(in oklab, var(--berry) 18%, transparent);
  font-size: 10.5px; letter-spacing: 0.3em; text-transform: uppercase;
  color: color-mix(in oklab, var(--berry), white 12%);
}
.desire__crest {
  font-family: var(--font-display); font-weight: 600;
  font-size: 18px; color: var(--berry);
  letter-spacing: -0.02em; text-transform: none;
}
.desire__crest i {
  font-style: italic; font-family: var(--font-italic); font-weight: 300;
  color: var(--pink-deep); margin: 0 4px;
}
.desire__rule { flex: 0 1 80px; height: 1px; background: color-mix(in oklab, var(--berry) 25%, transparent); }
.desire__house {
  font-family: var(--font-italic); font-style: italic;
  font-size: 14px; letter-spacing: 0.04em; text-transform: none; color: var(--berry);
}

/* =======================================================
   REVEALS
   ======================================================= */
[data-reveal] {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 1.1s var(--ease), transform 1.1s var(--ease);
  transition-delay: var(--rd, 0s);
  will-change: transform, opacity;
}
[data-reveal].is-in { opacity: 1; transform: translateY(0); }
body.is-loading [data-reveal] { transition: none; }

/* =======================================================
   ACCESSIBILITY
   ======================================================= */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .desire__line > span,
  .desire__line > em { transform: none !important; }
  [data-reveal] { opacity: 1 !important; transform: none !important; }
}

/* =======================================================
   RESPONSIVE FINE-TUNES
   ======================================================= */
@media (max-width: 640px) {
  :root { --pad-y: 90px; }
  .hero__tagline { font-size: clamp(26px, 7vw, 36px); }
  .desire__hero { font-size: clamp(2.8rem, 14vw, 5rem); }
  .nav__brand-name, .desire__signoff .desire__rule { display: none; }
  .feel__grid { grid-template-columns: 1fr; }
  .feel-card { min-height: auto; }
}
