:root {
  --paper: #f7f5f2;
  --white: #fffefe;
  --mist: #ebe8e4;
  --ink: #101010;
  --muted: #6d6863;
  --lilac: #9f82d8;
  --lilac-soft: #d8caef;
  --amber: #8d451f;
  --brown: #59331f;
  --active-accent: #c95a2d;
  --hero-progress: 0;
  --film-progress: 0;
  --ease: cubic-bezier(.2, .8, .16, 1);
  color-scheme: light;
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--paper);
  color: var(--ink);
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background:
    linear-gradient(90deg, rgba(16, 16, 16, .035) 1px, transparent 1px) 0 0 / 25vw 100%,
    var(--paper);
  color: var(--ink);
}

body.menu-open {
  overflow: hidden;
}

body.modal-open {
  overflow: hidden;
}

a {
  color: inherit;
}

img,
video {
  display: block;
  max-width: 100%;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 2px solid var(--lilac);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 30;
  transform: translateY(-160%);
  background: var(--ink);
  color: var(--white);
  padding: .75rem 1rem;
  text-decoration: none;
  font-size: .85rem;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: clamp(1rem, 2vw, 1.7rem) clamp(1rem, 3vw, 3rem);
  color: var(--white);
  transition: padding .45s var(--ease), color .45s var(--ease), background .45s var(--ease), backdrop-filter .45s var(--ease);
}

.site-header.is-scrolled,
.site-header.menu-open {
  padding-block: .75rem;
  color: var(--ink);
  background: rgba(247, 245, 242, .82);
  backdrop-filter: blur(18px) saturate(130%);
  border-bottom: 1px solid rgba(16, 16, 16, .08);
}

.wordmark {
  position: relative;
  z-index: 22;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: .03em;
  font-size: clamp(1.05rem, 1.3vw, 1.45rem);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2vw, 2rem);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.site-nav a {
  position: relative;
  text-decoration: none;
}

.site-nav__cta {
  min-height: 2.35rem;
  display: inline-flex;
  align-items: center;
  padding: 0 .95rem;
  border: 1px solid currentColor;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -.42rem;
  height: 1px;
  transform: scaleX(0);
  transform-origin: right;
  background: currentColor;
  transition: transform .35s var(--ease);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-toggle {
  display: none;
  position: relative;
  z-index: 22;
  width: 44px;
  height: 44px;
  border: 0;
  padding: 0;
  background: transparent;
  color: currentColor;
  cursor: pointer;
}

.menu-toggle span {
  position: absolute;
  left: 10px;
  right: 10px;
  top: 17px;
  height: 2px;
  background: currentColor;
  transition: transform .35s var(--ease), top .35s var(--ease);
}

.menu-toggle span + span {
  top: 26px;
}

.menu-open .menu-toggle span:first-child {
  top: 21px;
  transform: rotate(45deg);
}

.menu-open .menu-toggle span:last-child {
  top: 21px;
  transform: rotate(-45deg);
}

.eyebrow {
  margin: 0 0 1rem;
  font-size: .72rem;
  line-height: 1;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-weight: 800;
}

.scroll-scene {
  position: relative;
}

.hero {
  height: 94vh;
  min-height: 650px;
  background: var(--ink);
}

.hero__stage,
.gallery__stage,
.film-return__stage {
  position: sticky;
  top: 0;
  height: 100vh;
  min-height: 620px;
  overflow: hidden;
}

.hero__stage {
  position: relative;
  height: 94vh;
  min-height: 650px;
}

.hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
  transform: scale(calc(1 + var(--hero-progress) * .12)) translateY(calc(var(--hero-progress) * -2vh));
  filter: saturate(calc(1 - var(--hero-progress) * .08)) contrast(1.02);
}

.hero__shadow {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, .52) 0%, rgba(0, 0, 0, .16) 39%, rgba(0, 0, 0, .04) 72%),
    linear-gradient(0deg, rgba(0, 0, 0, .28), transparent 42%);
  pointer-events: none;
}

.hero__copy {
  position: absolute;
  left: clamp(1.25rem, 5vw, 5rem);
  bottom: clamp(4.5rem, 10vh, 7rem);
  width: min(45rem, 52vw);
  color: var(--white);
  transform: translateY(calc(var(--hero-progress) * -5vh));
}

.hero__copy h1,
.gallery__intro h2,
.film-return__copy h2,
.ritual__headline h2,
.ritual__act--desire h2,
.brand__copy h2,
.choice h2 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-weight: 600;
  line-height: .88;
  letter-spacing: 0;
}

.hero__copy h1 {
  white-space: pre-line;
  font-size: clamp(3rem, 5.2vw, 6.8rem);
  line-height: .92;
}

.hero__copy > p:not(.eyebrow) {
  width: min(24rem, 100%);
  margin: 1.1rem 0 0;
  font-size: clamp(.95rem, 1.05vw, 1.1rem);
  line-height: 1.55;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-top: 1.4rem;
}

.hero__actions a,
.ritual__cta,
.choice-panel__actions a,
.product-modal__actions a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .75rem 1rem;
  border: 1px solid currentColor;
  color: inherit;
  text-decoration: none;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.hero__actions a + a,
.choice-panel__actions a + a {
  background: rgba(255, 255, 255, .1);
}

.hero__actions a:first-child {
  color: var(--ink);
  background: var(--white);
  border-color: var(--white);
}

.hero__proof {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem 1rem;
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
  font-size: .72rem;
  line-height: 1.35;
  font-weight: 700;
}

.hero__proof li {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
}

.hero__proof li::before {
  content: "";
  width: .35rem;
  height: .35rem;
  flex: 0 0 auto;
  border-radius: 50%;
  background: currentColor;
  opacity: .8;
}

.scroll-cue {
  position: absolute;
  right: clamp(1.25rem, 3vw, 3rem);
  bottom: clamp(1.4rem, 3vw, 2.6rem);
  display: grid;
  justify-items: center;
  gap: .65rem;
  color: var(--white);
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.scroll-cue span {
  width: 1px;
  height: 5rem;
  background: linear-gradient(var(--white), transparent);
  transform-origin: top;
  animation: cue 1.8s var(--ease) infinite;
}

@keyframes cue {
  0%, 100% { transform: scaleY(.45); opacity: .45; }
  50% { transform: scaleY(1); opacity: 1; }
}

.hero__lilac-pass {
  position: absolute;
  inset: auto -10vw -20vh -10vw;
  height: 24vh;
  background: var(--lilac);
  transform: translateY(calc(112% - var(--hero-progress) * 132%)) rotate(-2deg);
  transform-origin: center;
}

.state-guide {
  --state-accent: #3b93b8;
  position: relative;
  padding: clamp(4rem, 8vw, 8rem) clamp(1.25rem, 5vw, 5rem);
  background: var(--paper);
  border-bottom: 1px solid rgba(16, 16, 16, .12);
}

.state-guide__inner {
  width: min(86rem, 100%);
  margin: 0 auto;
}

.state-guide__intro {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(16rem, .65fr);
  align-items: end;
  gap: clamp(1.5rem, 5vw, 6rem);
  margin-bottom: clamp(2.5rem, 5vw, 5rem);
}

.state-guide__intro .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -.5rem;
}

.state-guide__intro h2 {
  margin: 0;
  max-width: 17ch;
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: clamp(2.8rem, 5.4vw, 6.4rem);
  font-weight: 600;
  line-height: .92;
  letter-spacing: 0;
}

.state-guide__intro > p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: clamp(.95rem, 1.15vw, 1.12rem);
  line-height: 1.65;
}

.state-guide__layout {
  display: grid;
  grid-template-columns: minmax(17rem, .8fr) minmax(0, 1.2fr);
  border-top: 1px solid rgba(16, 16, 16, .18);
  border-bottom: 1px solid rgba(16, 16, 16, .18);
}

.state-guide__choices {
  border-right: 1px solid rgba(16, 16, 16, .18);
}

.state-guide__choice {
  width: 100%;
  min-height: 4.7rem;
  display: grid;
  grid-template-columns: 2.6rem minmax(0, 1fr);
  align-items: center;
  gap: 1rem;
  border: 0;
  border-bottom: 1px solid rgba(16, 16, 16, .12);
  padding: .8rem 1rem .8rem 0;
  background: transparent;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
  transition: background .25s var(--ease), color .25s var(--ease), padding .25s var(--ease);
}

.state-guide__choice:last-child {
  border-bottom: 0;
}

.state-guide__choice span {
  color: var(--muted);
  font-size: .7rem;
  font-weight: 800;
}

.state-guide__choice strong {
  font-size: clamp(.92rem, 1.2vw, 1.1rem);
  font-weight: 650;
}

.state-guide__choice:hover,
.state-guide__choice:focus-visible {
  padding-left: .75rem;
  background: rgba(255, 255, 255, .7);
}

.state-guide__choice[aria-pressed="true"] {
  padding-left: 1rem;
  background: var(--ink);
  color: var(--white);
}

.state-guide__choice[aria-pressed="true"] span {
  color: var(--state-accent);
}

.state-guide__result {
  min-height: 34rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2rem, 6vw, 6rem);
  background:
    linear-gradient(120deg, color-mix(in srgb, var(--state-accent) 13%, transparent), transparent 52%),
    var(--white);
  box-shadow: inset .35rem 0 0 var(--state-accent);
  transition: background .35s var(--ease), box-shadow .35s var(--ease);
}

.state-guide__result-label,
.state-guide__result-number {
  margin: 0;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.state-guide__result-number {
  margin-top: 1.5rem;
  color: var(--state-accent);
}

.state-guide__result h3 {
  margin: .45rem 0 1.2rem;
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: clamp(2.7rem, 5vw, 5.5rem);
  font-weight: 600;
  line-height: .95;
  letter-spacing: 0;
}

.state-guide__summary,
.state-guide__ritual {
  max-width: 39rem;
  margin: 0;
  font-size: clamp(.95rem, 1.15vw, 1.08rem);
  line-height: 1.65;
}

.state-guide__ritual {
  margin-top: .85rem;
  color: var(--muted);
}

.state-guide__cta {
  width: fit-content;
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 2rem;
  padding: .8rem 1rem;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--white);
  text-decoration: none;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.state-guide__result small {
  max-width: 34rem;
  margin-top: .9rem;
  color: var(--muted);
  font-size: .72rem;
  line-height: 1.5;
}

.gallery {
  --gallery-progress: 0;
  height: 700vh;
  background: var(--white);
}

.gallery__stage {
  isolation: isolate;
  background: linear-gradient(180deg, rgba(255, 255, 255, .96), rgba(247, 245, 242, .9));
  transition: background .7s var(--ease);
}

.gallery__stage::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(16, 16, 16, .08) 1px, transparent 1px) 0 0 / 25vw 100%,
    linear-gradient(180deg, rgba(247, 245, 242, .96) 0%, transparent 18%, transparent 73%, rgba(247, 245, 242, .9) 100%);
}

.gallery__stage::after {
  content: "";
  position: absolute;
  z-index: 4;
  left: clamp(1rem, 3vw, 3rem);
  right: clamp(1rem, 3vw, 3rem);
  top: 50%;
  height: 1px;
  background: rgba(16, 16, 16, .13);
  pointer-events: none;
}

.gallery__intro {
  position: absolute;
  z-index: 6;
  left: clamp(1rem, 5vw, 5rem);
  top: clamp(5.2rem, 10vh, 7rem);
  width: min(32rem, 34vw);
  opacity: var(--gallery-intro-presence, 1);
  transform: translateY(calc((1 - var(--gallery-intro-presence, 1)) * -1rem));
  transition: opacity .35s var(--ease), transform .35s var(--ease);
  pointer-events: none;
}

.gallery__intro h2 {
  white-space: pre-line;
  font-size: clamp(2.2rem, 4vw, 5.8rem);
}

.gallery__intro p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.65;
  max-width: 24rem;
}

.gallery__scenes {
  position: absolute;
  z-index: 1;
  inset: clamp(5.3rem, 10vh, 7rem) clamp(1rem, 3vw, 3rem) clamp(5.1rem, 9vh, 6.5rem);
}

.product-scene {
  position: absolute;
  inset: 0;
  opacity: 0;
  clip-path: inset(0 var(--scene-mask, 45%) 0 var(--scene-mask, 45%));
  transform: translateY(calc(var(--scene-offset, 0) * 2.2vh)) scale(calc(.985 + var(--scene-presence, 0) * .015));
  transform-origin: center;
  transition: opacity .45s var(--ease), clip-path .55s var(--ease);
  will-change: opacity, clip-path, transform;
}

.product-scene.is-active {
  pointer-events: auto;
}

.product-scene__media {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: var(--white);
}

.product-scene__video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: var(--scene-crop, 50% 50%);
  transform: scale(1.006);
  transition: transform .8s var(--ease), filter .8s var(--ease);
}

.product-scene--tension.is-active .product-scene__video {
  transform: translateX(calc(var(--scene-offset, 0) * -1.5vw)) scale(1.012);
}

.product-scene--hatch.is-active .product-scene__video {
  transform: translateY(calc(var(--scene-offset, 0) * .8vh)) scale(1.018);
}

.product-scene--ribbon.is-active .product-scene__video {
  transform: translateX(calc(var(--scene-offset, 0) * 1.7vw)) scale(1.014);
}

.product-scene--embrace.is-active .product-scene__video {
  transform: scale(1.025);
}

.product-scene--soft.is-active .product-scene__video {
  transform: translateY(calc(var(--scene-offset, 0) * -1vh)) scale(1.02);
}

.product-scene--still.is-active .product-scene__video {
  transform: scale(1.01);
}

.product-scene__veil {
  display: none;
}

.gallery__caption {
  position: absolute;
  z-index: 7;
  right: clamp(1rem, 5vw, 5rem);
  bottom: clamp(3.4rem, 8vh, 5.4rem);
  width: min(33rem, 32vw);
}

.gallery__caption.is-left {
  left: clamp(1rem, 5vw, 5rem);
  right: auto;
}

.gallery__counter,
.gallery__type {
  margin: 0 0 .75rem;
  color: color-mix(in srgb, var(--active-accent) 70%, var(--muted));
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.gallery__counter {
  color: var(--ink);
}

.gallery__caption h3 {
  margin: 0;
  font-size: clamp(2.7rem, 6vw, 8rem);
  line-height: .84;
  overflow-wrap: anywhere;
}

.gallery__caption p:not(.gallery__type):not(.gallery__counter) {
  max-width: 27rem;
  margin: 1rem 0 1.25rem;
  line-height: 1.65;
  color: var(--muted);
}

.gallery__detail-button {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0;
  border: 0;
  border-bottom: 1px solid currentColor;
  background: transparent;
  color: currentColor;
  text-decoration: none;
  font-size: .75rem;
  font-family: inherit;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  cursor: pointer;
}

.gallery__timeline {
  position: absolute;
  z-index: 8;
  left: 50%;
  bottom: clamp(1.5rem, 3vh, 2.2rem);
  display: flex;
  gap: .45rem;
  transform: translateX(-50%);
}

.gallery__timeline span {
  min-width: 2rem;
  padding-top: .45rem;
  border-top: 2px solid rgba(16, 16, 16, .22);
  color: rgba(16, 16, 16, .45);
  font-size: .58rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-align: center;
}

.gallery__timeline span.is-active {
  border-color: var(--dot-accent);
  color: var(--ink);
}

.gallery__skip {
  position: absolute;
  z-index: 9;
  inset: 0;
  pointer-events: none;
}

.gallery__skip-button {
  position: absolute;
  left: 50%;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(16, 16, 16, .2);
  border-radius: 50%;
  background: rgba(255, 255, 255, .22);
  color: rgba(16, 16, 16, .62);
  backdrop-filter: blur(12px);
  cursor: pointer;
  opacity: .52;
  pointer-events: auto;
  transform: translateX(-50%);
  transition: opacity .25s var(--ease), transform .25s var(--ease), background .25s var(--ease), color .25s var(--ease);
}

.gallery__skip-button--prev {
  top: clamp(5.5rem, 14vh, 9rem);
}

.gallery__skip-button--next {
  bottom: clamp(4.8rem, 12vh, 8rem);
}

.gallery__skip-button:hover,
.gallery__skip-button:focus-visible {
  opacity: .92;
  color: var(--ink);
  background: rgba(255, 255, 255, .48);
  transform: translateX(-50%) translateY(-1px);
}

.gallery__skip-button span {
  width: .72rem;
  height: .72rem;
  border-top: 2px solid currentColor;
  border-left: 2px solid currentColor;
}

.gallery__skip-button--prev span {
  transform: translateY(.16rem) rotate(45deg);
}

.gallery__skip-button--next span {
  transform: translateY(-.16rem) rotate(225deg);
}

.gallery__mobile-controls {
  display: none;
}

.gallery__mobile-button {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(16, 16, 16, .2);
  border-radius: 50%;
  background: rgba(255, 255, 255, .56);
  color: var(--ink);
  box-shadow: 0 .8rem 2.6rem rgba(16, 16, 16, .08);
  backdrop-filter: blur(14px);
  cursor: pointer;
  transition: transform .28s var(--ease), background .28s var(--ease), border-color .28s var(--ease);
}

.gallery__mobile-button span {
  width: .72rem;
  height: .72rem;
  border-top: 2px solid currentColor;
  border-left: 2px solid currentColor;
}

.gallery__mobile-button--prev span {
  transform: translateX(.12rem) rotate(-45deg);
}

.gallery__mobile-button--next span {
  transform: translateX(-.12rem) rotate(135deg);
}

.gallery__mobile-button:hover,
.gallery__mobile-button:focus-visible {
  background: rgba(255, 255, 255, .82);
  border-color: rgba(16, 16, 16, .34);
  transform: translateY(-1px);
}

.noscript-products {
  padding: 3rem 1.25rem;
}

.film-return {
  height: 250vh;
  background: #090806;
}

.film-return__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
  transform: scale(1.05);
  filter: contrast(1.08) saturate(.98);
}

.film-return__frame {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 7, 5, .42), transparent 34%, rgba(8, 7, 5, .68)),
    linear-gradient(0deg, rgba(8, 7, 5, .48), transparent 52%);
  pointer-events: none;
}

.film-return__copy {
  position: absolute;
  left: auto;
  right: clamp(1.25rem, 6vw, 6.5rem);
  bottom: clamp(3rem, 9vh, 6rem);
  width: min(40rem, 42vw);
  color: var(--white);
  text-align: left;
}

.film-return__copy h2 {
  white-space: pre-line;
  font-size: clamp(2.6rem, 5.2vw, 6.5rem);
  line-height: .92;
}

.film-return__copy p:not(.eyebrow) {
  max-width: 31rem;
  margin: 1rem 0 0;
  color: rgba(255, 255, 255, .78);
  line-height: 1.65;
}

.selection-bridge {
  position: relative;
  overflow: hidden;
  padding: clamp(5.2rem, 10vw, 9rem) clamp(1rem, 5vw, 5.5rem);
  background: linear-gradient(180deg, #0b0a09 0%, #1b1713 1px, var(--paper) 34%, var(--white) 100%);
}

.selection-bridge::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(16, 16, 16, .045) 1px, transparent 1px) 0 0 / 25vw 100%,
    radial-gradient(circle at 78% 36%, rgba(159, 130, 216, .16), transparent 31%),
    radial-gradient(circle at 19% 64%, rgba(199, 98, 42, .1), transparent 32%);
}

.selection-bridge__inner {
  position: relative;
  z-index: 1;
  width: min(82rem, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(16rem, .44fr);
  gap: clamp(2rem, 5vw, 6rem);
  align-items: end;
}

.selection-bridge .eyebrow {
  grid-column: 1 / -1;
  margin: 0;
}

.selection-bridge h2 {
  grid-column: 1;
  margin: 0;
  white-space: pre-line;
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 6.2vw, 7.8rem);
  line-height: .88;
  font-weight: 600;
}

.selection-bridge p:not(.eyebrow) {
  grid-column: 2;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.18vw, 1.18rem);
  line-height: 1.65;
}

.selection-bridge__cta {
  grid-column: 2;
  width: min(22rem, 100%);
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: .9rem;
  padding: .9rem 1.2rem;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--white);
  text-decoration: none;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
  transition: transform .28s var(--ease), box-shadow .28s var(--ease);
}

.selection-bridge__cta:hover,
.selection-bridge__cta:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 1.2rem 3.4rem rgba(16, 16, 16, .16);
}

.ritual {
  position: relative;
  height: 250vh;
  min-height: 1680px;
  background: var(--white);
  --ritual-progress: 0;
  --ritual-desire: 1;
  --ritual-benefit: 0;
  --ritual-action: 0;
  --ritual-card-1: 0;
  --ritual-card-2: 0;
  --ritual-card-3: 0;
  --ritual-card-4: 0;
  --ritual-benefit-label: 0;
  --ritual-benefit-title: 0;
  --ritual-benefit-body: 0;
  --ritual-benefit-cta: 0;
}

.ritual__stage {
  position: sticky;
  top: 0;
  min-height: 680px;
  height: 100vh;
  height: 100svh;
  overflow: hidden;
  isolation: isolate;
  padding: clamp(5.4rem, 8vh, 7rem) clamp(1rem, 4.5vw, 5rem) clamp(3rem, 5vh, 5rem);
  background:
    linear-gradient(90deg, rgba(16, 16, 16, .045) 1px, transparent 1px) 0 0 / 25vw 100%,
    linear-gradient(180deg, var(--white), #faf8f5);
}

.ritual__stage::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 62% 48%, rgba(159, 130, 216, calc(.12 * var(--ritual-benefit))), transparent 34%),
    radial-gradient(circle at 82% 70%, rgba(141, 69, 31, calc(.12 * var(--ritual-action))), transparent 28%);
  pointer-events: none;
}

.ritual__visual {
  position: absolute;
  z-index: -1;
  top: clamp(3rem, 7vh, 5.5rem);
  right: clamp(-9rem, -9vw, -4rem);
  bottom: clamp(1.2rem, 4vh, 3rem);
  width: min(66rem, 58vw);
  margin: 0;
  overflow: hidden;
  opacity: calc(.64 + var(--ritual-benefit) * .22 + var(--ritual-action) * .14);
  transform:
    translateX(calc(var(--ritual-progress) * -2.5vw))
    scale(calc(1.02 + var(--ritual-progress) * .045));
  transform-origin: 68% 58%;
}

.ritual__visual-caption {
  position: absolute;
  z-index: 3;
  right: clamp(1rem, 3vw, 3rem);
  bottom: clamp(1.2rem, 4vh, 3.6rem);
  width: min(21rem, 46%);
  margin: 0;
  padding-top: .75rem;
  border-top: 1px solid rgba(16, 16, 16, .18);
  color: rgba(16, 16, 16, .58);
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .04em;
  line-height: 1.45;
  opacity: calc(var(--ritual-benefit) * .9);
  transform: translateY(calc((1 - var(--ritual-benefit)) * .8rem));
  transition: opacity .4s var(--ease), transform .4s var(--ease);
}

.ritual__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(255, 254, 254, .92) 0 12%, rgba(255, 254, 254, .34) 38%, transparent 68%),
    linear-gradient(0deg, rgba(255, 254, 254, .34), transparent 30%);
  pointer-events: none;
}

.ritual__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 60% center;
  filter: contrast(1.03) saturate(1.04);
}

.ritual__act {
  position: absolute;
  z-index: 2;
}

.ritual__act--desire {
  left: clamp(1rem, 4.5vw, 5rem);
  top: clamp(6.2rem, 15vh, 9rem);
  width: min(58rem, 56vw);
  opacity: var(--ritual-desire);
  transform: translateY(calc((1 - var(--ritual-desire)) * -2rem));
  pointer-events: auto;
}

.ritual__act--desire h2 {
  margin: 0;
  max-width: 57rem;
  white-space: pre-line;
  font-size: clamp(3rem, 5.6vw, 7.4rem);
  line-height: .88;
}

.ritual__act--desire p:not(.eyebrow):not(.ritual__microcopy) {
  max-width: 35rem;
  margin: clamp(1rem, 1.6vw, 1.55rem) 0 0;
  color: var(--muted);
  font-size: clamp(1.02rem, 1.22vw, 1.2rem);
  line-height: 1.62;
}

.ritual__act--desire p:not(.eyebrow):not(.ritual__microcopy) + p:not(.ritual__microcopy) {
  margin-top: .55rem;
}

.ritual__scene-label {
  margin: 0;
  color: var(--lilac);
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  opacity: var(--ritual-benefit-label);
  clip-path: inset(0 calc((1 - var(--ritual-benefit-label)) * 100%) 0 0);
  transform: translateX(calc((1 - var(--ritual-benefit-label)) * -1.2rem));
}

.ritual__act--benefit {
  left: clamp(1rem, 4.5vw, 5rem);
  right: auto;
  top: clamp(5.5rem, 10vh, 7.4rem);
  bottom: auto;
  width: min(75rem, 68vw);
  display: block;
  padding: clamp(1.55rem, 2.4vw, 2.6rem);
  background: rgba(255, 254, 254, .82);
  border: 1px solid rgba(16, 16, 16, .12);
  box-shadow: 0 2rem 7rem rgba(16, 16, 16, .08);
  backdrop-filter: blur(10px);
  opacity: var(--ritual-benefit);
  transform:
    translateX(calc((1 - var(--ritual-benefit)) * -4.5rem))
    translateY(calc((1 - var(--ritual-benefit)) * 1rem));
  pointer-events: auto;
}

.ritual__act--benefit h3 {
  max-width: 48rem;
  margin: .55rem 0 0;
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: clamp(2.25rem, 3.7vw, 5rem);
  line-height: .9;
  font-weight: 600;
  opacity: var(--ritual-benefit-title);
  clip-path: inset(0 calc((1 - var(--ritual-benefit-title)) * 100%) 0 0);
  transform: translateX(calc((1 - var(--ritual-benefit-title)) * -1.55rem));
}

.ritual__act--benefit > p:last-of-type {
  max-width: 34rem;
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.18vw, 1.18rem);
  line-height: 1.6;
  opacity: var(--ritual-benefit-body);
  transform: translateY(calc((1 - var(--ritual-benefit-body)) * .8rem));
}

.ritual__cards {
  margin-top: clamp(1.3rem, 2vw, 2rem);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(.7rem, 1.1vw, 1rem);
  background: transparent;
  border: 0;
  pointer-events: auto;
}

.ritual-card {
  position: relative;
  min-height: clamp(10.2rem, 20vh, 13rem);
  display: grid;
  align-content: start;
  gap: clamp(.62rem, .9vw, .95rem);
  overflow: hidden;
  padding: clamp(1.05rem, 1.55vw, 1.55rem);
  border: 1px solid rgba(16, 16, 16, .12);
  background: rgba(255, 254, 254, .82);
  transform-origin: center;
  transition: transform .34s var(--ease), background .34s var(--ease), box-shadow .34s var(--ease), color .34s var(--ease), border-color .34s var(--ease);
}

.ritual-card::before,
.ritual-card::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.ritual-card::before {
  inset: 0;
  opacity: 0;
  background:
    radial-gradient(circle at 12% 18%, rgba(159, 130, 216, .22), transparent 38%),
    linear-gradient(120deg, rgba(255, 254, 254, .92), rgba(159, 130, 216, .1));
  transform: translateX(-14%);
  transition: opacity .34s var(--ease), transform .4s var(--ease);
}

.ritual-card::after {
  left: clamp(1.05rem, 1.55vw, 1.55rem);
  right: clamp(1.05rem, 1.55vw, 1.55rem);
  top: clamp(.82rem, 1.2vw, 1.2rem);
  height: 1px;
  opacity: .8;
  background: linear-gradient(90deg, rgba(159, 130, 216, .78), transparent);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .42s var(--ease);
}

.ritual-card > * {
  position: relative;
  z-index: 1;
}

.ritual-card:nth-child(1) {
  opacity: var(--ritual-card-1);
  transform: translateY(calc((1 - var(--ritual-card-1)) * 1.2rem));
}

.ritual-card:nth-child(2) {
  opacity: var(--ritual-card-2);
  transform: translateY(calc((1 - var(--ritual-card-2)) * 1.2rem));
}

.ritual-card:nth-child(3) {
  opacity: var(--ritual-card-3);
  transform: translateY(calc((1 - var(--ritual-card-3)) * 1.2rem));
}

.ritual-card:nth-child(4) {
  opacity: var(--ritual-card-4);
  transform: translateY(calc((1 - var(--ritual-card-4)) * 1.2rem));
}

.ritual-card--active {
  background: rgba(159, 130, 216, .18);
  border-color: rgba(159, 130, 216, .34);
}

.ritual-card__index {
  margin: 0;
  color: var(--lilac);
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.ritual-card h4 {
  margin: 0;
  font-size: clamp(1.35rem, 1.9vw, 2.15rem);
  line-height: 1;
}

.ritual-card p:last-child {
  max-width: 25rem;
  margin: 0;
  color: var(--muted);
  font-size: clamp(.86rem, .95vw, 1rem);
  line-height: 1.48;
}

.ritual__act--action {
  display: none !important;
  left: 50%;
  bottom: clamp(3.2rem, 8vh, 6rem);
  width: min(42rem, calc(100vw - 2rem));
  display: grid;
  justify-items: center;
  gap: .85rem;
  text-align: center;
  opacity: var(--ritual-action);
  transform:
    translateX(-50%)
    translateY(calc((1 - var(--ritual-action)) * 2rem))
    scale(calc(.92 + var(--ritual-action) * .08));
  pointer-events: none;
}

.ritual__cta {
  width: min(36rem, 100%);
  min-height: clamp(64px, 8.2vh, 86px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 1rem clamp(1.4rem, 3vw, 2.4rem);
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--white);
  text-decoration: none;
  font-size: clamp(.9rem, 1.08vw, 1.12rem);
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
  box-shadow: 0 1.8rem 5rem rgba(16, 16, 16, .18);
  pointer-events: none;
  transition: transform .28s var(--ease), box-shadow .28s var(--ease);
}

.ritual__cta--inline,
.ritual__cta--benefit {
  pointer-events: auto;
}

.ritual__cta--inline {
  width: min(31rem, 100%);
  min-height: 64px;
  margin-top: clamp(1.4rem, 2.3vw, 2.2rem);
}

.ritual__cta--benefit {
  width: min(28rem, 100%);
  min-height: 58px;
  margin-top: clamp(1rem, 1.7vw, 1.5rem);
  box-shadow: none;
  opacity: var(--ritual-benefit-cta);
  transform: translateY(calc((1 - var(--ritual-benefit-cta)) * .8rem));
}

.ritual.is-action-active .ritual__cta {
  pointer-events: auto;
}

.ritual__cta:hover,
.ritual__cta:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 2rem 5.6rem rgba(16, 16, 16, .24);
}

.ritual__cta-arrow {
  display: inline-block;
  transition: transform .28s var(--ease);
}

.ritual__cta:hover .ritual__cta-arrow,
.ritual__cta:focus-visible .ritual__cta-arrow {
  transform: translateX(.55rem);
}

.ritual__microcopy {
  max-width: 31rem;
  margin: 0;
  color: rgba(16, 16, 16, .54);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .07em;
  text-transform: uppercase;
}

@media (hover: hover) {
  .ritual-card:hover {
    z-index: 1;
    background: rgba(159, 130, 216, .22);
    border-color: rgba(159, 130, 216, .44);
    transform: translateY(-.45rem) scale(1.018);
    box-shadow: 0 1.6rem 4rem rgba(16, 16, 16, .1);
  }

  .ritual-card:hover::before {
    opacity: 1;
    transform: translateX(0);
  }

  .ritual-card:hover::after {
    transform: scaleX(1);
  }

  .ritual-card:hover .ritual-card__index {
    color: #7d55d3;
  }
}

.brand {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  display: grid;
  align-items: center;
  justify-items: center;
  padding: clamp(2.4rem, 4vw, 4.6rem) clamp(1.25rem, 5vw, 5.25rem);
  background: var(--paper);
}

.brand__inner {
  position: relative;
  z-index: 1;
  width: min(96rem, 100%);
  display: grid;
  grid-template-columns: minmax(26rem, .95fr) minmax(24rem, .64fr);
  gap: clamp(2rem, 5vw, 6rem);
  align-items: center;
}

.brand__certificate {
  position: absolute;
  z-index: 1;
  right: clamp(-8rem, -5vw, -3rem);
  top: clamp(7.5rem, 14vh, 10.5rem);
  width: clamp(34rem, 39vw, 46rem);
  aspect-ratio: 738 / 759;
  overflow: visible;
  margin: 0;
  padding: 0;
  opacity: .44;
  background: transparent;
  border: 0;
  box-shadow: none;
  mix-blend-mode: multiply;
  transform: rotate(-10deg);
  transform-origin: 54% 48%;
  pointer-events: none;
}

.brand__certificate::before {
  display: none;
}

.brand__certificate img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  filter: grayscale(.04) saturate(.82) contrast(1.03) brightness(1.04);
}

.brand__certificate figcaption {
  position: absolute;
  left: 9%;
  right: 13%;
  bottom: 11%;
  z-index: 2;
  display: grid;
  gap: .2rem;
  padding-top: .7rem;
  border-top: 1px solid rgba(16, 16, 16, .18);
  color: rgba(16, 16, 16, .44);
  text-shadow: none;
}

.brand__certificate strong {
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: clamp(2.1rem, 3.6vw, 4.5rem);
  line-height: .78;
  font-weight: 600;
}

.brand__certificate sup {
  font-size: .32em;
}

.brand__certificate span {
  font-size: .58rem;
  line-height: 1;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.brand__copy h2 {
  position: relative;
  z-index: 2;
  white-space: pre-line;
  max-width: 35rem;
  font-size: clamp(3.35rem, 5vw, 5.95rem);
  line-height: .83;
}

.brand__copy p:not(.eyebrow) {
  position: relative;
  z-index: 2;
  max-width: 42rem;
  margin: 1.05rem 0 0;
  color: var(--muted);
  font-size: clamp(.98rem, 1.16vw, 1.12rem);
  line-height: 1.65;
}

.brand__copy p.brand__trust {
  max-width: 34rem;
  margin-top: clamp(1.1rem, 1.8vw, 1.7rem);
  color: var(--ink);
  font-size: clamp(1.18rem, 1.45vw, 1.45rem);
  line-height: 1.35;
  font-weight: 700;
}

.brand__facts {
  position: relative;
  z-index: 2;
  align-self: end;
  margin: clamp(11rem, 20vh, 15rem) 0 0;
  display: grid;
  gap: 1px;
  background: rgba(16, 16, 16, .14);
  border-top: 1px solid rgba(16, 16, 16, .16);
  border-bottom: 1px solid rgba(16, 16, 16, .16);
}

.brand__fact {
  position: relative;
  display: grid;
  grid-template-columns: minmax(8.5rem, .36fr) minmax(0, 1fr);
  gap: clamp(1.2rem, 2.2vw, 2.4rem);
  align-items: start;
  overflow: hidden;
  padding: clamp(1rem, 1.55vw, 1.55rem) clamp(.65rem, 1.2vw, 1rem);
  background: rgba(247, 245, 242, .78);
  transition: transform .32s var(--ease), background .32s var(--ease), box-shadow .32s var(--ease);
}

.brand__fact::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  background:
    linear-gradient(90deg, rgba(159, 130, 216, .2), rgba(255, 254, 254, .82) 42%, transparent 78%),
    radial-gradient(circle at 12% 50%, rgba(159, 130, 216, .14), transparent 38%);
  transform: scaleX(.24);
  transform-origin: left center;
  transition: opacity .38s var(--ease), transform .42s var(--ease);
  pointer-events: none;
}

.brand__fact dt {
  position: relative;
  z-index: 1;
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: clamp(2.25rem, 3.8vw, 4.8rem);
  line-height: .8;
  white-space: nowrap;
  transition: color .32s var(--ease), transform .32s var(--ease);
}

.brand__fact dt sup {
  margin-left: .03em;
  font-size: .42em;
  line-height: 0;
  vertical-align: super;
}

.brand__fact dd {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--muted);
  font-size: clamp(.9rem, 1vw, 1rem);
  line-height: 1.48;
}

.brand__fact:nth-child(3) dt {
  font-size: clamp(1.85rem, 3.1vw, 4rem);
}

@media (hover: hover) {
  .brand__fact:hover {
    z-index: 1;
    background: rgba(255, 254, 254, .9);
    transform: translateX(.45rem);
    box-shadow: 0 1.2rem 3rem rgba(16, 16, 16, .06);
  }

  .brand__fact:hover::before {
    opacity: 1;
    transform: scaleX(1);
  }

  .brand__fact:hover dt {
    color: var(--lilac);
    transform: translateX(.15rem);
  }
}

.js-ready .brand:not(.is-visible) .brand__certificate,
.js-ready .brand:not(.is-visible) .brand__copy > * {
  opacity: 0;
  transform: translateY(1.2rem);
}

.js-ready .brand:not(.is-visible) .brand__fact {
  opacity: 0;
  clip-path: inset(0 100% 0 0);
  transform: translateX(-1.75rem);
}

.js-ready .brand:not(.is-visible) .brand__copy h2 {
  clip-path: inset(100% 0 0);
}

.brand.is-visible .brand__certificate {
  animation: brandCertificate 900ms .08s both var(--ease);
}

.brand.is-visible .brand__copy > * {
  animation: revealUp 760ms both var(--ease);
}

.brand.is-visible .brand__copy > *:nth-child(2) {
  animation-delay: .1s;
}

.brand.is-visible .brand__copy > *:nth-child(3) {
  animation-delay: .22s;
}

.brand.is-visible .brand__copy > *:nth-child(4) {
  animation-delay: .34s;
}

.brand.is-visible .brand__fact {
  animation: brandFactIn 760ms both var(--ease);
}

.brand.is-visible .brand__fact:nth-child(1) {
  animation-delay: .22s;
}

.brand.is-visible .brand__fact:nth-child(2) {
  animation-delay: .34s;
}

.brand.is-visible .brand__fact:nth-child(3) {
  animation-delay: .46s;
}

.choice {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 100svh;
  padding: clamp(7rem, 10vw, 10rem) clamp(1rem, 3vw, 3rem) clamp(2.4rem, 4vw, 4rem);
  background: #0b0a09;
  color: var(--white);
  --choice-divider: 48%;
}

.choice::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -3;
  background:
    radial-gradient(circle at 13% 57%, rgba(203, 105, 40, .34), transparent 32%),
    radial-gradient(circle at 86% 42%, rgba(136, 116, 192, .28), transparent 36%),
    linear-gradient(180deg, rgba(255, 255, 255, .035), transparent 30%, rgba(0, 0, 0, .48)),
    #0b0a09;
}

.choice::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: .09;
  pointer-events: none;
  background:
    repeating-radial-gradient(circle at 18% 24%, rgba(255, 255, 255, .42) 0 1px, transparent 1px 3px),
    repeating-linear-gradient(115deg, rgba(255, 255, 255, .08) 0 1px, transparent 1px 5px);
  mix-blend-mode: screen;
}

.choice.is-buy-active {
  --choice-divider: 54%;
}

.choice.is-team-active {
  --choice-divider: 46%;
}

.choice h2 {
  max-width: 70rem;
  margin: 0 0 clamp(4rem, 7vw, 6.5rem);
  font-size: clamp(3.2rem, 7vw, 9rem);
}

.choice__grid {
  position: relative;
  display: grid;
  grid-template-columns: var(--choice-divider) calc(100% - var(--choice-divider));
  min-height: min(72svh, 52rem);
  transition: grid-template-columns 900ms var(--ease);
}

.choice__grid::before {
  content: "";
  position: absolute;
  left: -3rem;
  right: -3rem;
  bottom: -3.5rem;
  height: 42%;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 25% 8%, rgba(210, 103, 39, .24), transparent 42%),
    radial-gradient(ellipse at 75% 5%, rgba(150, 130, 216, .22), transparent 46%),
    linear-gradient(180deg, transparent, rgba(255, 255, 255, .075) 30%, rgba(255, 255, 255, .02) 74%, transparent);
  transform: perspective(36rem) rotateX(58deg);
  transform-origin: bottom;
  filter: blur(.2px);
}

.choice__grid::after {
  content: "";
  position: absolute;
  top: 2%;
  bottom: 2%;
  left: var(--choice-divider);
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, .42) 20% 78%, transparent);
  transform: translateX(-.5px);
  transition: left 900ms var(--ease);
}

.choice-panel {
  position: relative;
  min-width: 0;
  overflow: hidden;
  display: grid;
  align-items: end;
  padding: clamp(2rem, 3.2vw, 3.8rem);
  color: var(--white);
  background: transparent;
  transition: transform 900ms var(--ease), opacity 900ms var(--ease);
}

.choice-panel::before,
.choice-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.choice-panel::before {
  z-index: 0;
  opacity: .72;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(255, 255, 255, .16), transparent 34%);
  transition: opacity 520ms var(--ease), filter 520ms var(--ease);
}

.choice-panel::after {
  z-index: 1;
  background: linear-gradient(180deg, transparent 18%, rgba(11, 10, 9, .14) 52%, rgba(11, 10, 9, .78));
  transition: background 520ms var(--ease);
}

.choice-panel--buy::before {
  background:
    radial-gradient(circle at var(--mx, 34%) var(--my, 58%), rgba(219, 110, 42, .34), transparent 34%),
    radial-gradient(circle at 13% 72%, rgba(219, 100, 45, .22), transparent 28%);
}

.choice-panel--team::before {
  background:
    radial-gradient(circle at var(--mx, 74%) var(--my, 42%), rgba(159, 130, 216, .34), transparent 36%),
    radial-gradient(circle at 86% 18%, rgba(255, 255, 255, .1), transparent 30%);
}

.choice-panel__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.choice-panel__media--bottle::before {
  content: "";
  position: absolute;
  width: clamp(24rem, 36vw, 44rem);
  aspect-ratio: 560 / 760;
  left: clamp(-8rem, -7vw, -4rem);
  bottom: -35%;
  opacity: .22;
  background: url("assets/choice-bottle.webp") center / contain no-repeat;
  filter: blur(1.5px) saturate(.9);
  transform: scaleY(-1) rotate(-2deg);
  transform-origin: center top;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, .58), transparent 70%);
}

.choice-panel__media--bottle::after {
  content: "";
  position: absolute;
  width: 18%;
  height: 62%;
  left: clamp(6rem, 15vw, 18rem);
  top: 15%;
  opacity: 0;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, .58), transparent);
  mix-blend-mode: screen;
  transform: translateX(-180%) skewX(-12deg);
  transition: opacity 260ms ease, transform 950ms var(--ease);
}

.choice.is-buy-active .choice-panel__media--bottle::after {
  opacity: .8;
  transform: translateX(180%) skewX(-12deg);
}

.choice-panel__media--hero {
  overflow: hidden;
}

.choice-panel__media--hero::before {
  content: "";
  position: absolute;
  left: 4%;
  right: 4%;
  bottom: -24%;
  height: 40%;
  opacity: .18;
  background: url("assets/posters/hero-poster.jpg") 47% 70% / 112% auto no-repeat;
  filter: blur(7px) saturate(.75);
  transform: scaleY(-1);
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, .56), transparent 68%);
}

.choice-panel__image {
  position: absolute;
  display: block;
  max-width: none;
  user-select: none;
}

.choice-panel__image--bottle {
  width: clamp(24rem, 36vw, 44rem);
  left: clamp(-8rem, -7vw, -4rem);
  bottom: clamp(-5rem, -7vw, -2.5rem);
  filter: drop-shadow(0 2.6rem 4.5rem rgba(0, 0, 0, .62)) saturate(1.05) contrast(1.04);
  transform: rotate(-2deg) translate3d(0, 0, 0);
  transform-origin: 52% 70%;
  transition: transform 1100ms var(--ease), filter 1100ms var(--ease);
}

.choice.is-buy-active .choice-panel__image--bottle {
  filter: drop-shadow(0 3rem 5.4rem rgba(0, 0, 0, .68)) saturate(1.1) contrast(1.06);
  transform: rotate(1deg) translate3d(.4rem, -.35rem, 0) scale(1.025);
}

.choice.is-team-active .choice-panel--buy {
  transform: translateX(-1.2vw);
}

.choice.is-team-active .choice-panel--buy .choice-panel__copy {
  transform: translateX(-.85vw);
}

.choice.is-team-active .choice-panel--buy .choice-panel__image--bottle,
.choice.is-team-active .choice-panel--buy .choice-panel__media--bottle::before {
  transform: translateX(-1vw) rotate(-3deg) scale(.985);
}

.choice-panel__image--hero {
  inset: -8% -10%;
  width: 120%;
  height: 120%;
  object-fit: cover;
  object-position: 46% 48%;
  opacity: .74;
  filter: brightness(.62) saturate(.9) contrast(1.03);
  transform: scale(1);
  transition: transform 1700ms var(--ease), filter 1700ms var(--ease), opacity 1700ms var(--ease);
}

.choice-panel__video {
  background: #0b0a09;
}

.choice.is-team-active .choice-panel__image--hero {
  opacity: .84;
  filter: brightness(.72) saturate(.98) contrast(1.06);
  transform: scale(1.035);
}

.choice.is-team-active .choice-panel--team::before,
.choice-panel--team:hover::before,
.choice-panel--team:focus-within::before,
.choice-panel--team:active::before {
  opacity: .96;
  filter: saturate(1.12);
  background:
    radial-gradient(circle at var(--mx, 70%) var(--my, 42%), rgba(191, 164, 255, .5), transparent 39%),
    radial-gradient(circle at 86% 18%, rgba(255, 255, 255, .18), transparent 31%),
    radial-gradient(circle at 62% 86%, rgba(118, 88, 190, .24), transparent 42%);
}

.choice.is-team-active .choice-panel--team::after,
.choice-panel--team:hover::after,
.choice-panel--team:focus-within::after,
.choice-panel--team:active::after {
  background: linear-gradient(180deg, rgba(11, 10, 9, .03) 8%, rgba(11, 10, 9, .18) 48%, rgba(11, 10, 9, .66));
}

.choice.is-team-active .choice-panel--team .choice-panel__copy,
.choice-panel--team:hover .choice-panel__copy,
.choice-panel--team:focus-within .choice-panel__copy {
  transform: translateX(.45vw);
}

.choice.is-team-active .choice-panel--team .choice-panel__label,
.choice-panel--team:hover .choice-panel__label,
.choice-panel--team:focus-within .choice-panel__label {
  color: rgba(224, 209, 255, .92);
}

.choice.is-team-active .choice-panel--team .choice-panel__button,
.choice-panel--team:hover .choice-panel__button,
.choice-panel--team:focus-within .choice-panel__button {
  border-color: rgba(224, 209, 255, .86);
  background: rgba(224, 209, 255, .12);
  box-shadow: 0 0 2.2rem rgba(159, 130, 216, .28);
}

.choice-panel__copy {
  position: relative;
  z-index: 2;
  display: grid;
  gap: .95rem;
  max-width: 31rem;
  transition: transform 900ms var(--ease);
}

.choice-panel--buy .choice-panel__copy {
  justify-self: end;
  max-width: 26rem;
  margin-left: clamp(10rem, 20vw, 24rem);
}

.choice-panel__label {
  font-size: .74rem;
  line-height: 1;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .68);
}

.choice-panel__title {
  font-size: clamp(1.55rem, 3.35vw, 4.45rem);
  line-height: .9;
  font-weight: 800;
  letter-spacing: .01em;
  text-wrap: balance;
}

.choice-panel__body {
  max-width: 26rem;
  color: rgba(255, 255, 255, .74);
  font-size: clamp(.95rem, 1.2vw, 1.1rem);
  line-height: 1.55;
}

.choice-panel__actions {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-top: .45rem;
}

.choice-panel__actions a {
  min-height: 46px;
  border-color: rgba(255, 255, 255, .55);
  color: var(--white);
  transition: transform 260ms var(--ease), background 260ms var(--ease), border-color 260ms var(--ease), box-shadow 260ms var(--ease);
}

.choice-panel__button--primary {
  background: var(--paper);
  color: var(--ink) !important;
  border-color: var(--paper) !important;
}

.choice-panel__link {
  min-height: auto !important;
  padding: .45rem 0 !important;
  border: 0 !important;
  border-bottom: 1px solid rgba(255, 255, 255, .5) !important;
  background: transparent !important;
  color: rgba(255, 255, 255, .76) !important;
}

.choice-panel__disclaimer {
  margin-top: .45rem;
  font-size: .82rem !important;
  color: rgba(255, 255, 255, .62) !important;
}

.js-ready .choice:not(.is-visible)::before,
.js-ready .choice:not(.is-visible) .choice__grid::before,
.js-ready .choice:not(.is-visible) .choice-panel::before,
.js-ready .choice:not(.is-visible) .choice-panel__image,
.js-ready .choice:not(.is-visible) .choice-panel__media::before {
  opacity: 0;
}

.js-ready .choice:not(.is-visible) h2,
.js-ready .choice:not(.is-visible) .choice__grid {
  opacity: 0;
}

.js-ready .choice:not(.is-visible) h2 {
  transform: translateX(-7vw);
  clip-path: inset(0 100% 0 0);
}

.js-ready .choice:not(.is-visible) .choice__grid {
  transform: translateY(1.4rem);
}

.js-ready .choice:not(.is-visible) .choice-panel__image--bottle {
  transform: rotate(-2deg) translate3d(-1rem, 1rem, 0) scale(.985);
}

.js-ready .choice:not(.is-visible) .choice-panel__image--hero {
  transform: scale(1.08);
}

.js-ready .choice:not(.is-visible) .choice-panel__copy > * {
  opacity: 0;
  clip-path: inset(100% 0 0);
  transform: translateY(1.2rem);
}

.choice.is-visible .choice-panel--buy::before {
  animation: choiceLight .9s .12s both;
}

.choice.is-visible h2 {
  animation: choiceTitleIn .95s .02s both var(--ease);
}

.choice.is-visible .choice__grid {
  animation: choiceGrid .82s .14s both var(--ease);
}

.choice.is-visible .choice-panel--team::before {
  animation: choiceLight .9s .24s both;
}

.choice.is-visible .choice-panel__image {
  animation: choiceObject 900ms .34s both;
}

.choice.is-visible .choice-panel__copy > * {
  animation: choiceText .68s .5s both;
}

.choice.is-visible .choice-panel__copy > *:nth-child(2) {
  animation-delay: .58s;
}

.choice.is-visible .choice-panel__copy > *:nth-child(3) {
  animation-delay: .66s;
}

.choice.is-visible .choice-panel__copy > *:nth-child(4) {
  animation-delay: .74s;
}

.choice.is-visible .choice-panel__copy > *:nth-child(5) {
  animation-delay: .82s;
}

@keyframes choiceLight {
  from {
    opacity: 0;
  }
  to {
    opacity: .72;
  }
}

@keyframes choiceObject {
  from {
    opacity: 0;
  }
}

@keyframes choiceText {
  from {
    opacity: 0;
    clip-path: inset(100% 0 0);
    transform: translateY(1.2rem);
  }
  to {
    opacity: 1;
    clip-path: inset(0 0 0);
    transform: translateY(0);
  }
}

@keyframes choiceGrid {
  from {
    opacity: 0;
    transform: translateY(1.4rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes choiceTitleIn {
  from {
    opacity: 0;
    clip-path: inset(0 100% 0 0);
    transform: translateX(-7vw);
  }
  to {
    opacity: 1;
    clip-path: inset(0 0 0 0);
    transform: translateX(0);
  }
}

@keyframes choiceMobilePanelIn {
  from {
    opacity: 0;
    filter: brightness(.78) saturate(.86);
    transform: translateY(2.1rem);
  }
  to {
    opacity: 1;
    filter: brightness(1) saturate(1);
    transform: translateY(0);
  }
}

@keyframes choiceMobileBottleIn {
  from {
    opacity: 0;
    transform: translateX(-50%) rotate(-4deg) translateY(1.2rem) scale(.97);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) rotate(-2deg) translateY(0) scale(1);
  }
}

@keyframes choiceMobileHeroIn {
  from {
    opacity: 0;
    transform: scale(1.08);
  }
  to {
    opacity: .72;
    transform: scale(1);
  }
}

@keyframes brandFactIn {
  from {
    opacity: 0;
    clip-path: inset(0 100% 0 0);
    transform: translateX(-1.75rem);
  }
  to {
    opacity: 1;
    clip-path: inset(0 0 0 0);
    transform: translateX(0);
  }
}

@keyframes revealUp {
  from {
    opacity: 0;
    transform: translateY(1.2rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes ritualTitleIn {
  from {
    opacity: 0;
    clip-path: inset(100% 0 0);
    transform: translateY(1.2rem);
  }
  to {
    opacity: 1;
    clip-path: inset(0 0 0);
    transform: translateY(0);
  }
}

@keyframes ritualVisualIn {
  from {
    opacity: 0;
    transform: scale(.97);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes brandCertificate {
  from {
    opacity: 0;
    transform: translateY(1rem) rotate(-14deg) scale(.96);
  }
  to {
    opacity: .44;
    transform: translateY(0) rotate(-10deg) scale(1);
  }
}

@keyframes brandCertificateMobile {
  from {
    opacity: 0;
    transform: translateY(1rem) rotate(-14deg) scale(.96);
  }
  to {
    opacity: .22;
    transform: translateY(0) rotate(-10deg) scale(1);
  }
}

.end-video {
  position: relative;
  overflow: hidden;
  min-height: 100svh;
  background: #0b0a09;
}

.end-video__media {
  width: 100%;
  height: 100svh;
  min-height: 620px;
  object-fit: cover;
  object-position: center center;
  filter: contrast(1.03) saturate(1.02);
}

.site-footer {
  position: relative;
  display: grid;
  grid-template-columns: minmax(16rem, 1fr) auto auto;
  gap: 2rem clamp(2rem, 5vw, 5.5rem);
  align-items: start;
  padding: clamp(3rem, 5vw, 5rem) clamp(1rem, 3vw, 3rem);
  background: #0b0a09;
  color: rgba(255, 255, 255, .72);
  border-top: 1px solid rgba(255, 255, 255, .16);
}

.site-footer__top {
  position: absolute;
  right: clamp(1rem, 3vw, 3rem);
  top: 1.2rem;
  width: 2.6rem;
  height: 2.6rem;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .32);
  border-radius: 50%;
  color: var(--white);
  text-decoration: none;
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: 1.6rem;
  line-height: 1;
}

.site-footer__brand {
  display: grid;
  gap: .8rem;
  max-width: 38rem;
}

.site-footer__logo {
  width: fit-content;
  color: var(--white);
  text-decoration: none;
  font-weight: 800;
  letter-spacing: .02em;
}

.site-footer__nav,
.site-footer__legal {
  display: grid;
  gap: .75rem;
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.site-footer__nav a,
.site-footer__legal a {
  color: rgba(255, 255, 255, .72);
  text-decoration: none;
}

.site-footer__nav a:hover,
.site-footer__legal a:hover,
.site-footer__top:hover {
  color: var(--white);
}

.site-footer p {
  margin: 0;
  font-size: .82rem;
  line-height: 1.65;
}

.site-footer__disclaimer {
  grid-column: 1 / -1;
  max-width: 78rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255, 255, 255, .12);
}

.cookie-consent {
  position: fixed;
  z-index: 70;
  left: clamp(1rem, 3vw, 2.4rem);
  right: clamp(1rem, 3vw, 2.4rem);
  bottom: clamp(1rem, 3vw, 2.4rem);
  display: none;
  justify-content: flex-end;
  pointer-events: none;
}

.cookie-consent.is-visible {
  display: flex;
}

.cookie-consent__card {
  width: min(42rem, 100%);
  padding: clamp(1rem, 1.8vw, 1.45rem);
  border: 1px solid rgba(255, 255, 255, .18);
  background:
    radial-gradient(circle at 12% 20%, rgba(203, 105, 40, .18), transparent 34%),
    radial-gradient(circle at 92% 18%, rgba(159, 130, 216, .18), transparent 34%),
    rgba(11, 10, 9, .92);
  color: rgba(255, 255, 255, .78);
  box-shadow: 0 2rem 7rem rgba(0, 0, 0, .42);
  backdrop-filter: blur(18px);
  pointer-events: auto;
}

.cookie-consent__copy {
  display: grid;
  gap: .55rem;
}

.cookie-consent__eyebrow {
  margin: 0;
  color: rgba(255, 255, 255, .58);
  font-size: .64rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.cookie-consent h2 {
  margin: 0;
  color: var(--white);
  font-size: clamp(1.45rem, 2.2vw, 2.3rem);
  line-height: .98;
}

.cookie-consent p {
  margin: 0;
  font-size: .9rem;
  line-height: 1.55;
}

.cookie-consent__settings {
  display: none;
  margin-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, .14);
}

.cookie-consent.is-settings-open .cookie-consent__settings {
  display: grid;
}

.cookie-consent__option {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
  padding: .9rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.cookie-consent__option b {
  display: block;
  color: var(--white);
  font-size: .82rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.cookie-consent__option small {
  display: block;
  margin-top: .22rem;
  color: rgba(255, 255, 255, .58);
  font-size: .78rem;
  line-height: 1.4;
}

.cookie-consent__option input {
  width: 2.8rem;
  height: 1.45rem;
  accent-color: var(--lilac);
  cursor: pointer;
}

.cookie-consent__option input:disabled {
  cursor: not-allowed;
  opacity: .8;
}

.cookie-consent__actions {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
  margin-top: 1rem;
}

.cookie-consent__actions button {
  min-height: 44px;
  padding: .72rem .9rem;
  border: 1px solid rgba(255, 255, 255, .28);
  background: rgba(255, 255, 255, .08);
  color: var(--white);
  font: inherit;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .11em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease), transform .25s var(--ease);
}

.cookie-consent__actions button:first-child,
.cookie-consent.is-settings-open [data-cookie-action="save"] {
  background: var(--paper);
  color: var(--ink);
  border-color: var(--paper);
}

.cookie-consent:not(.is-settings-open) [data-cookie-action="save"] {
  display: none;
}

.cookie-consent.is-settings-open [data-cookie-action="settings"] {
  display: none;
}

.cookie-consent__actions button:hover,
.cookie-consent__actions button:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, .58);
}

.cookie-consent__links {
  display: flex;
  flex-wrap: wrap;
  gap: .85rem;
  margin-top: .85rem !important;
  font-size: .75rem !important;
}

.cookie-consent__links a {
  color: rgba(255, 255, 255, .68);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, .28);
}

.legal-page {
  min-height: 100svh;
  background: var(--paper);
  color: var(--ink);
}

.legal-header,
.legal-footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem clamp(1rem, 4vw, 3rem);
  border-bottom: 1px solid rgba(16, 16, 16, .12);
}

.legal-header a,
.legal-footer a {
  color: inherit;
  text-decoration: none;
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.legal-shell {
  width: min(72rem, 100%);
  margin: 0 auto;
  padding: clamp(4.6rem, 8vw, 7rem) clamp(1rem, 4vw, 3rem);
}

.legal-shell h1 {
  margin: 0 0 1.4rem;
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 7vw, 7rem);
  line-height: .88;
  font-weight: 600;
}

.legal-shell h2 {
  margin: clamp(2rem, 4vw, 3.2rem) 0 .8rem;
  font-size: clamp(1.25rem, 2vw, 1.85rem);
  line-height: 1.1;
}

.legal-shell p,
.legal-shell li {
  color: var(--muted);
  font-size: clamp(.98rem, 1.16vw, 1.12rem);
  line-height: 1.72;
}

.legal-shell ul {
  margin: .85rem 0 0;
  padding-left: 1.2rem;
}

.legal-note {
  max-width: 46rem;
  margin: 0 0 clamp(2rem, 4vw, 3rem);
  color: var(--muted);
  font-size: clamp(1rem, 1.3vw, 1.25rem);
  line-height: 1.6;
}

.legal-footer {
  align-items: center;
  border-top: 1px solid rgba(16, 16, 16, .12);
  border-bottom: 0;
}

@media (max-width: 760px) {
  .cookie-consent {
    left: .75rem;
    right: .75rem;
    bottom: .75rem;
  }

  .cookie-consent__card {
    max-height: calc(100svh - 1.5rem);
    overflow: auto;
    padding: .95rem;
  }

  .cookie-consent__actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .cookie-consent__actions button {
    width: 100%;
    min-height: 48px;
  }

  .cookie-consent__option {
    grid-template-columns: minmax(0, 1fr) 3rem;
  }

  .legal-header,
  .legal-footer {
    flex-direction: column;
    padding: 1rem;
  }

  .legal-shell {
    padding: 4.5rem 1rem;
  }
}

.product-modal[hidden] {
  display: none;
}

.product-modal {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: grid;
  place-items: center;
  padding: 1rem;
}

.product-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(13, 12, 11, .62);
  backdrop-filter: blur(14px);
}

.product-modal__panel {
  position: relative;
  width: min(48rem, 100%);
  max-height: min(46rem, calc(100vh - 2rem));
  overflow: auto;
  padding: clamp(1.5rem, 4vw, 3rem);
  background: rgba(247, 245, 242, .96);
  color: var(--ink);
  box-shadow: 0 2rem 8rem rgba(0, 0, 0, .28);
}

.product-modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(16, 16, 16, .2);
  background: transparent;
  color: var(--ink);
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
}

.product-modal__panel h2 {
  margin: 0;
  font-size: clamp(3rem, 8vw, 7rem);
  line-height: .86;
}

.product-modal__panel > p:not(.eyebrow) {
  max-width: 34rem;
  color: var(--muted);
  line-height: 1.65;
}

.product-modal__details {
  display: grid;
  gap: 1px;
  margin: 1.6rem 0;
  background: rgba(16, 16, 16, .14);
}

.product-modal__row {
  display: grid;
  grid-template-columns: minmax(10rem, .42fr) 1fr;
  gap: 1rem;
  padding: 1rem 0;
  background: rgba(247, 245, 242, .96);
}

.product-modal__row dt {
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.product-modal__row dd {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.product-modal__actions {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
}

.mentor-handoff[hidden] {
  display: none;
}

.mentor-handoff {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  padding: clamp(.85rem, 2.4vw, 2rem);
  color: #fffaf3;
}

.mentor-handoff__backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 28% 36%, rgba(195, 105, 43, .24), transparent 34rem),
    radial-gradient(circle at 82% 24%, rgba(157, 126, 215, .18), transparent 30rem),
    rgba(11, 10, 9, .72);
  backdrop-filter: blur(18px);
  opacity: 0;
  transition: opacity .28s var(--ease);
}

.mentor-handoff.is-visible .mentor-handoff__backdrop {
  opacity: 1;
}

.mentor-handoff__panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(16rem, .82fr) minmax(20rem, 1fr);
  width: min(62rem, 100%);
  min-height: min(38rem, calc(100svh - 2rem));
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 249, 240, .08), rgba(255, 255, 255, .02)),
    #0b0a09;
  box-shadow: 0 2.4rem 8rem rgba(0, 0, 0, .46);
  border: 1px solid rgba(255, 255, 255, .12);
  opacity: 0;
  transform: translateY(1.2rem) scale(.985);
  transition:
    opacity .34s var(--ease),
    transform .34s var(--ease);
}

.mentor-handoff.is-visible .mentor-handoff__panel {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.mentor-handoff__panel::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 45%;
  background: linear-gradient(to top, rgba(255, 255, 255, .1), transparent);
  opacity: .42;
  pointer-events: none;
}

.mentor-handoff__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 3;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, .24);
  background: rgba(11, 10, 9, .22);
  color: #fffaf3;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  backdrop-filter: blur(10px);
}

.mentor-handoff__portrait {
  position: relative;
  min-height: 100%;
  overflow: hidden;
  background: #17120f;
}

.mentor-handoff__portrait::before,
.mentor-handoff__portrait::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.mentor-handoff__portrait::before {
  background:
    linear-gradient(90deg, transparent 55%, rgba(11, 10, 9, .48)),
    linear-gradient(to top, rgba(11, 10, 9, .18), transparent 44%);
}

.mentor-handoff__portrait::after {
  width: 38%;
  background: linear-gradient(100deg, transparent, rgba(255, 236, 204, .22), transparent);
  transform: translateX(-130%) skewX(-12deg);
  animation: mentorLight 1.4s .34s both var(--ease);
}

.mentor-handoff__portrait img,
.mentor-handoff__portrait video {
  display: block;
  width: 100%;
  height: 100%;
  min-height: min(38rem, calc(100svh - 2rem));
  object-fit: cover;
  object-position: 48% 33%;
  transform: scale(1.025);
  filter: saturate(.92) contrast(1.04);
  animation: mentorPortraitIn 1.6s .08s both var(--ease);
}

.mentor-handoff__copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: clamp(1rem, 2vw, 1.45rem);
  padding: clamp(2rem, 4.6vw, 4.4rem);
}

.mentor-handoff__eyebrow {
  margin: 0;
  color: rgba(255, 250, 243, .72);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.mentor-handoff h2 {
  max-width: 9ch;
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(3.2rem, 7vw, 7.4rem);
  font-weight: 600;
  line-height: .82;
}

.mentor-handoff__copy > p:not(.mentor-handoff__eyebrow):not(.mentor-handoff__person):not(.mentor-handoff__contact-label) {
  max-width: 34rem;
  margin: 0;
  color: rgba(255, 250, 243, .72);
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  line-height: 1.72;
}

.mentor-handoff__person {
  display: grid;
  gap: .28rem;
  margin: .25rem 0 0;
  padding-top: 1.15rem;
  border-top: 1px solid rgba(255, 255, 255, .16);
}

.mentor-handoff__person span {
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.mentor-handoff__person small {
  color: rgba(255, 250, 243, .58);
  font-size: .85rem;
}

.mentor-handoff__contact-label {
  margin: .35rem 0 -.15rem;
  color: rgba(255, 250, 243, .64);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.mentor-handoff__actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .65rem;
  margin-top: .35rem;
}

.mentor-handoff__actions a,
.mentor-handoff__actions button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .65rem;
  min-height: 52px;
  padding: 1rem 1.25rem;
  border: 1px solid rgba(255, 255, 255, .22);
  color: #fffaf3;
  font: inherit;
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
}

.mentor-handoff__actions a {
  background: #fffaf3;
  color: #0b0a09;
}

.mentor-handoff__contact img {
  width: 1.15rem;
  height: 1.15rem;
  object-fit: contain;
  flex: 0 0 auto;
}

.mentor-handoff__contact--email {
  background: rgba(255, 255, 255, .06) !important;
  color: #fffaf3 !important;
}

.mentor-handoff__contact--email img {
  filter: invert(1);
  opacity: .88;
}

.mentor-handoff__actions button {
  grid-column: 1 / -1;
  justify-self: start;
  background: transparent;
}

.mentor-handoff__actions a:hover,
.mentor-handoff__actions a:focus-visible,
.mentor-handoff__actions button:hover,
.mentor-handoff__actions button:focus-visible,
.mentor-handoff__close:hover,
.mentor-handoff__close:focus-visible {
  outline: none;
  border-color: rgba(255, 250, 243, .72);
}

@media (max-width: 760px) {
  .mentor-handoff {
    align-items: center;
    padding: .65rem;
  }

  .mentor-handoff__panel {
    grid-template-columns: 1fr;
    width: 100%;
    max-height: calc(100svh - 1.8rem);
    min-height: 0;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .mentor-handoff__portrait {
    min-height: clamp(14rem, 36svh, 21rem);
  }

  .mentor-handoff__portrait img,
  .mentor-handoff__portrait video {
    height: clamp(14rem, 36svh, 21rem);
    min-height: 0;
    object-position: 50% 24%;
  }

  .mentor-handoff__portrait::before {
    background:
      linear-gradient(to top, rgba(11, 10, 9, .78), transparent 56%),
      linear-gradient(90deg, rgba(11, 10, 9, .16), transparent 48%);
  }

  .mentor-handoff__copy {
    gap: .82rem;
    padding: 1.05rem 1rem 1rem;
  }

  .mentor-handoff h2 {
    max-width: 10ch;
    font-size: clamp(2.75rem, 13vw, 4.25rem);
    line-height: .88;
  }

  .mentor-handoff__copy > p:not(.mentor-handoff__eyebrow):not(.mentor-handoff__person):not(.mentor-handoff__contact-label) {
    font-size: .96rem;
    line-height: 1.58;
  }

  .mentor-handoff__actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .mentor-handoff__actions a,
  .mentor-handoff__actions button {
    width: 100%;
    min-height: 52px;
    text-align: center;
  }
}

@keyframes mentorPortraitIn {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.025);
  }
}

@keyframes mentorLight {
  from {
    transform: translateX(-130%) skewX(-12deg);
    opacity: 0;
  }
  35% {
    opacity: 1;
  }
  to {
    transform: translateX(260%) skewX(-12deg);
    opacity: 0;
  }
}

@media (max-width: 1024px) {
  .site-nav {
    gap: 1rem;
    font-size: .68rem;
  }

  .gallery__stage {
    grid-template-columns: 1.25rem minmax(0, 1fr) 1.25rem;
  }

  .gallery__intro {
    width: min(29rem, 42vw);
  }

  .gallery__scenes {
    inset-inline: 1.25rem;
  }

  .gallery__caption {
    width: min(29rem, 38vw);
  }

  .ritual__act--benefit {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .ritual__act--desire {
    width: min(48rem, 62vw);
  }

  .ritual__cards {
    max-width: 54rem;
  }

  .brand__inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  [id] {
    scroll-margin-top: 4.6rem;
  }

  body {
    background: var(--paper);
  }

  .site-header {
    color: var(--white);
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: 0;
    z-index: 21;
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    display: grid;
    align-content: center;
    gap: 1.5rem;
    padding: 5rem 1.25rem 2rem;
    background: rgba(247, 245, 242, .96);
    color: var(--ink);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-1rem);
    transition: opacity .35s var(--ease), transform .35s var(--ease);
    font-size: clamp(1.8rem, 9vw, 3.4rem);
    font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
    font-weight: 600;
    letter-spacing: 0;
    text-transform: none;
  }

  .site-nav a {
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: .15rem 0;
  }

  .site-header.menu-open .site-nav,
  body.menu-open .site-nav {
    opacity: 1 !important;
    pointer-events: auto;
    transform: translateY(0) !important;
  }

  .hero {
    height: auto;
    min-height: 0;
  }

  .hero__stage,
  .gallery__stage,
  .film-return__stage {
    position: relative;
    top: auto;
    min-height: 0;
  }

  .hero__stage {
    height: 92svh;
    min-height: 620px;
  }

  .state-guide {
    padding: 4rem 1.25rem;
  }

  .state-guide__intro {
    grid-template-columns: 1fr;
    gap: 1.15rem;
    margin-bottom: 2.5rem;
  }

  .state-guide__intro .eyebrow {
    grid-column: auto;
    margin-bottom: 0;
  }

  .state-guide__intro h2 {
    font-size: clamp(2.65rem, 13vw, 4.4rem);
  }

  .state-guide__layout {
    grid-template-columns: 1fr;
  }

  .state-guide__choices {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-right: 0;
    border-bottom: 1px solid rgba(16, 16, 16, .18);
  }

  .state-guide__choice {
    min-height: 4.9rem;
    grid-template-columns: 1.8rem minmax(0, 1fr);
    gap: .5rem;
    padding: .75rem .7rem;
    border-right: 1px solid rgba(16, 16, 16, .12);
  }

  .state-guide__choice:nth-child(2n) {
    border-right: 0;
  }

  .state-guide__choice:last-child {
    grid-column: 1 / -1;
    border-top: 1px solid rgba(16, 16, 16, .12);
  }

  .state-guide__choice:hover,
  .state-guide__choice:focus-visible,
  .state-guide__choice[aria-pressed="true"] {
    padding-left: .7rem;
  }

  .state-guide__choice strong {
    font-size: .84rem;
  }

  .state-guide__result {
    min-height: 31rem;
    padding: 2rem 1.35rem 2.25rem;
    box-shadow: inset 0 .35rem 0 var(--state-accent);
  }

  .state-guide__result h3 {
    font-size: clamp(2.65rem, 13vw, 4.5rem);
  }

  .state-guide__cta {
    width: 100%;
    text-align: center;
  }

  .hero__video {
    object-position: 43% center;
  }

  .hero__shadow {
    background:
      linear-gradient(0deg, rgba(0, 0, 0, .68), transparent 58%),
      linear-gradient(90deg, rgba(0, 0, 0, .14), rgba(0, 0, 0, .04));
  }

  .hero__copy {
    left: 1rem;
    right: 1rem;
    bottom: 5.7rem;
    width: auto;
  }

  .hero__copy h1 {
    font-size: clamp(2.7rem, 12vw, 4.6rem);
  }

  .hero__actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero__actions a {
    width: 100%;
    min-height: 48px;
    padding-inline: .8rem;
    text-align: center;
  }

  .hero__proof {
    gap: .4rem .75rem;
    font-size: .68rem;
  }

  .scroll-cue {
    right: 1rem;
    bottom: 1rem;
  }

  .gallery {
    height: auto !important;
    min-height: 0;
    background: var(--paper);
  }

  .gallery__stage {
    height: auto;
    min-height: 0;
    display: block;
    padding: 4.35rem 0 1rem;
    overflow: hidden;
  }

  .gallery__stage::before {
    background:
      linear-gradient(90deg, rgba(16, 16, 16, .06) 1px, transparent 1px) 0 0 / 50vw 100%,
      linear-gradient(180deg, rgba(247, 245, 242, .96) 0%, transparent 18%, transparent 82%, rgba(247, 245, 242, .95) 100%);
  }

  .gallery__stage::after {
    left: 1rem;
    right: 1rem;
    top: clamp(23rem, 58svh, 34rem);
    width: auto;
    height: 1px;
    opacity: .55;
  }

  .gallery__intro {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    width: auto;
    padding: 0 1rem .65rem;
    opacity: 1 !important;
    transform: none !important;
    pointer-events: auto;
  }

  .gallery__intro h2 {
    max-width: 22rem;
    font-size: clamp(2rem, 8.5vw, 3.25rem);
  }

  .gallery__intro p:not(.eyebrow) {
    display: block;
    max-width: 22rem;
    margin-top: .65rem;
    font-size: .94rem;
    line-height: 1.42;
  }

  .gallery__scenes {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    height: clamp(13.5rem, 30svh, 18rem);
    min-height: 13.5rem;
    margin: .35rem 0 0;
    overflow: hidden;
  }

  .product-scene {
    clip-path: none !important;
    opacity: 0;
    transform: translateX(calc(var(--mobile-slide-offset, 0) * 1.2rem)) scale(.985);
    transition: opacity .52s var(--ease), transform .52s var(--ease);
  }

  .product-scene.is-active {
    opacity: 1 !important;
    transform: translateX(0) scale(1) !important;
  }

  .product-scene__video {
    object-fit: contain;
    object-position: var(--scene-mobile-crop, 50% 50%);
    transform: none !important;
  }

  .gallery__caption {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    width: auto;
    max-width: none;
    padding: .7rem 1rem .45rem;
  }

  .gallery__caption.is-left {
    left: auto;
  }

  .gallery__counter,
  .gallery__type {
    margin-bottom: .48rem;
    font-size: .66rem;
  }

  .gallery__caption h3 {
    font-size: clamp(2.25rem, 11.5vw, 3.8rem);
    line-height: .86;
  }

  .gallery__caption p:not(.gallery__type):not(.gallery__counter) {
    max-width: 23rem;
    margin: .55rem 0 .55rem;
    font-size: .94rem;
    line-height: 1.48;
  }

  .gallery__detail-button {
    min-height: 46px;
    font-size: .68rem;
  }

  .gallery__timeline {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    justify-content: center;
    gap: .32rem;
    padding: 0 4.5rem;
    transform: none;
  }

  .gallery__timeline span {
    min-width: 1.28rem;
    padding-top: .32rem;
    font-size: 0;
  }

  .gallery__timeline span::after {
    content: "";
    display: block;
    height: 2px;
    background: currentColor;
  }

  .gallery__mobile-controls {
    position: absolute;
    z-index: 80;
    left: 0;
    right: 0;
    top: 50%;
    display: flex;
    justify-content: space-between;
    padding: 0 .8rem;
    pointer-events: none;
    transform: translateY(-50%);
  }

  .gallery__mobile-button {
    pointer-events: auto;
  }

  .gallery__skip {
    display: none;
  }

  .film-return {
    height: auto;
    min-height: 0;
  }

  .film-return__stage {
    height: 86svh;
    min-height: 540px;
  }

  .film-return__video {
    object-position: 54% 50%;
  }

  .film-return__copy {
    left: 1rem;
    right: 1rem;
    bottom: 4rem;
    width: auto;
  }

  .film-return__copy h2 {
    font-size: clamp(2.7rem, 13vw, 5.5rem);
  }

  .selection-bridge {
    padding: 4rem 1rem 4.8rem;
  }

  .selection-bridge__inner {
    grid-template-columns: 1fr;
    gap: 1.1rem;
  }

  .selection-bridge h2,
  .selection-bridge p:not(.eyebrow),
  .selection-bridge__cta {
    grid-column: 1;
  }

  .selection-bridge h2 {
    font-size: clamp(2.6rem, 12vw, 4.8rem);
  }

  .selection-bridge__cta {
    width: 100%;
    min-height: 52px;
  }

  .ritual {
    height: auto;
    min-height: 0;
    --ritual-desire: 1;
    --ritual-benefit: 1;
    --ritual-action: 1;
    --ritual-card-1: 1;
    --ritual-card-2: 1;
    --ritual-card-3: 1;
    --ritual-card-4: 1;
  }

  .ritual__stage {
    position: relative;
    top: auto;
    min-height: 0;
    height: auto;
    display: grid;
    gap: 1.25rem;
    padding: 5.2rem 1rem 3.2rem;
    overflow: hidden;
  }

  .ritual__visual,
  .ritual__act {
    position: relative;
    inset: auto;
    width: auto;
    transform: none;
    opacity: 1;
  }

  .ritual__act--desire {
    order: 1;
  }

  .ritual__visual {
    order: 2;
    z-index: 0;
    height: clamp(22rem, 56svh, 32rem);
    margin: .3rem -1rem 0;
    overflow: hidden;
  }

  .ritual__visual-caption {
    display: none;
  }

  .ritual__visual::after {
    background:
      linear-gradient(180deg, rgba(255, 254, 254, .2) 0 40%, rgba(255, 254, 254, .88) 100%),
      linear-gradient(90deg, rgba(255, 254, 254, .86) 0 18%, rgba(255, 254, 254, .18) 58%, transparent);
  }

  .ritual__image {
    object-position: 62% center;
  }

  .ritual__act--desire h2 {
    max-width: 23rem;
    font-size: clamp(2rem, 8.25vw, 3.05rem);
    line-height: .9;
  }

  .ritual__act--desire p:not(.eyebrow):not(.ritual__microcopy) {
    max-width: 21.5rem;
    font-size: 1rem;
  }

  .ritual__act--benefit {
    order: 3;
    display: grid;
    padding: 1rem;
    border-color: rgba(16, 16, 16, .1);
    background: rgba(255, 254, 254, .88);
    box-shadow: 0 1.6rem 4rem rgba(16, 16, 16, .07);
  }

  .ritual__act--benefit h3 {
    max-width: 22rem;
    font-size: clamp(1.8rem, 7.2vw, 2.75rem);
  }

  .ritual__act--benefit > p:last-of-type {
    max-width: 22rem;
    font-size: .94rem;
    line-height: 1.46;
  }

  .ritual__cards {
    grid-template-columns: 1fr;
    margin-top: 1rem;
  }

  .ritual-card {
    min-height: 0;
    padding: .88rem .9rem;
    gap: .5rem;
    opacity: 1;
    transform: none;
  }

  .ritual-card h4 {
    font-size: 1.2rem;
  }

  .ritual-card p:last-child {
    font-size: .84rem;
    line-height: 1.4;
  }

  .ritual__act--action {
    display: none !important;
  }

  .ritual__cta {
    width: 100%;
    min-height: 52px;
    padding: .9rem 1rem;
    font-size: .78rem;
  }

  .ritual__cta--benefit {
    margin-top: .9rem;
  }

  .ritual__microcopy {
    max-width: 21rem;
    margin-top: .55rem;
    font-size: .64rem;
    line-height: 1.45;
  }

  .js-ready .ritual:not(.is-visible) .ritual__act--desire > *,
  .js-ready .ritual:not(.is-visible) .ritual__visual,
  .js-ready .ritual:not(.is-visible) .ritual__act--benefit,
  .js-ready .ritual:not(.is-visible) .ritual-card {
    opacity: 0;
    transform: translateY(1.25rem);
  }

  .ritual.is-visible .ritual__act--desire > * {
    animation: choiceText .68s both var(--ease);
  }

  .ritual.is-visible .ritual__act--desire > *:nth-child(2) {
    animation-delay: .08s;
  }

  .ritual.is-visible .ritual__act--desire > *:nth-child(3) {
    animation-delay: .16s;
  }

  .ritual.is-visible .ritual__act--desire > *:nth-child(4) {
    animation-delay: .23s;
  }

  .ritual.is-visible .ritual__act--desire > *:nth-child(5) {
    animation-delay: .3s;
  }

  .ritual.is-visible .ritual__visual {
    animation: ritualVisualIn .86s .22s both var(--ease);
  }

  .ritual.is-visible .ritual__act--benefit {
    animation: choiceMobilePanelIn .74s .36s both var(--ease);
  }

  .ritual.is-visible .ritual-card {
    animation: choiceMobilePanelIn .68s both var(--ease);
  }

  .ritual.is-visible .ritual-card:nth-child(1) {
    animation-delay: .46s;
  }

  .ritual.is-visible .ritual-card:nth-child(2) {
    animation-delay: .54s;
  }

  .ritual.is-visible .ritual-card:nth-child(3) {
    animation-delay: .62s;
  }

  .ritual.is-visible .ritual-card:nth-child(4) {
    animation-delay: .7s;
  }

  .brand {
    min-height: 0;
    padding: 6rem 1rem 5rem;
  }

  .brand__certificate {
    right: -14rem;
    top: 8rem;
    width: min(34rem, 126vw);
    opacity: .22;
  }

  .brand.is-visible .brand__certificate {
    animation-name: brandCertificateMobile;
  }

  .brand__copy h2 {
    font-size: clamp(3rem, 13vw, 5.8rem);
  }

  .brand__fact {
    grid-template-columns: 1fr;
    gap: .55rem;
  }

  .end-video__media {
    height: 100svh;
    min-height: 560px;
  }

  .choice {
    min-height: 0;
    padding: clamp(4.25rem, 11vw, 5rem) 0 0;
  }

  .choice h2 {
    margin-bottom: 1.25rem;
    padding-inline: 1rem;
    font-size: clamp(2.45rem, 11.5vw, 4.35rem);
  }

  .choice__grid {
    display: grid;
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .choice__grid::after {
    display: none;
  }

  .choice__grid::before {
    left: -1rem;
    right: -1rem;
    bottom: -2rem;
    height: 24%;
  }

  .choice-panel {
    min-height: 70svh;
    padding: clamp(.95rem, 3.8vw, 1.35rem);
    align-items: end;
  }

  .choice-panel + .choice-panel {
    border-top: 1px solid rgba(255, 255, 255, .28);
  }

  .choice-panel--buy .choice-panel__copy {
    justify-self: stretch;
    max-width: 21rem;
    margin-left: 0;
    margin-bottom: 0;
    transform: translateY(clamp(-8.2rem, -16vh, -6rem));
  }

  .choice-panel__copy {
    max-width: 22rem;
    gap: .62rem;
  }

  .choice-panel__title {
    font-size: clamp(1.45rem, 6.7vw, 2.35rem);
    line-height: .94;
  }

  .choice-panel__body {
    font-size: .84rem;
    line-height: 1.42;
  }

  .choice-panel__actions {
    gap: .65rem;
  }

  .choice-panel__actions a {
    max-width: 100%;
    min-height: 44px;
    padding: .68rem .78rem;
    font-size: .64rem;
  }

  .choice-panel__actions {
    opacity: 1 !important;
    clip-path: none !important;
    transform: none !important;
  }

  .choice-panel__disclaimer {
    font-size: .76rem !important;
    line-height: 1.45;
  }

  .choice-panel__image--bottle {
    width: min(58vw, 18rem);
    left: 58%;
    bottom: 43%;
    transform: translateX(-50%) rotate(-2deg);
  }

  .choice.is-buy-active .choice-panel__image--bottle {
    transform: translateX(-50%) rotate(1deg) translate3d(.25rem, -.25rem, 0) scale(1.02);
  }

  .choice.is-team-active .choice-panel--buy,
  .choice.is-team-active .choice-panel--buy .choice-panel__copy {
    transform: none;
  }

  .choice.is-team-active .choice-panel--buy .choice-panel__image--bottle {
    transform: translateX(-50%) rotate(-2deg);
  }

  .choice.is-team-active .choice-panel--buy .choice-panel__media--bottle::before {
    transform: translateX(-50%) scaleY(-1) rotate(-2deg);
  }

  .choice-panel__media--bottle::before {
    width: min(58vw, 18rem);
    left: 58%;
    bottom: -28%;
    transform: translateX(-50%) scaleY(-1) rotate(-2deg);
  }

  .choice-panel__media--bottle::after {
    left: 42%;
    top: 17%;
    height: 48%;
  }

  .choice-panel__image--hero {
    inset: -8% -22%;
    width: 148%;
    height: 124%;
    object-position: 50% 46%;
    opacity: .72;
  }

  .choice-panel--team .choice-panel__copy {
    max-width: 22rem;
    margin-bottom: max(.25rem, env(safe-area-inset-bottom));
  }

  .choice.is-team-active .choice-panel--team .choice-panel__copy,
  .choice-panel--team:hover .choice-panel__copy,
  .choice-panel--team:focus-within .choice-panel__copy {
    transform: none;
  }

  .js-ready .choice:not(.is-visible) .choice-panel {
    opacity: 0;
    transform: translateY(2rem);
  }

  .choice.is-visible .choice-panel {
    animation: choiceMobilePanelIn .76s both var(--ease);
  }

  .choice.is-visible .choice-panel--buy {
    animation-delay: .14s;
  }

  .choice.is-visible .choice-panel--team {
    animation-delay: .3s;
  }

  .choice.is-visible .choice-panel__image--bottle {
    animation: choiceMobileBottleIn .9s .34s both var(--ease);
  }

  .choice.is-visible .choice-panel__image--hero {
    animation: choiceMobileHeroIn 1s .46s both var(--ease);
  }

  .site-footer {
    grid-template-columns: 1fr;
    padding: 4rem 1rem 3rem;
  }

  .site-footer__nav,
  .site-footer__legal {
    gap: .9rem;
  }

  .site-footer__nav a,
  .site-footer__legal a {
    min-height: 44px;
    display: flex;
    align-items: center;
  }

  .product-modal__row {
    grid-template-columns: 1fr;
    gap: .45rem;
  }
}

@media (max-width: 760px) and (max-height: 760px) {
  .gallery__stage {
    padding-top: 3.75rem;
  }

  .gallery__intro {
    padding-bottom: .35rem;
  }

  .gallery__intro p:not(.eyebrow) {
    display: none;
  }

  .gallery__scenes {
    height: clamp(12rem, 28svh, 14rem);
    min-height: 12rem;
    margin-top: .2rem;
  }

  .gallery__caption {
    padding-top: .55rem;
  }

  .gallery__caption h3 {
    font-size: clamp(2.05rem, 11vw, 3.25rem);
  }

  .gallery__caption p:not(.gallery__type):not(.gallery__counter) {
    margin: .45rem 0;
    font-size: .88rem;
    line-height: 1.36;
  }

  .gallery__detail-button {
    min-height: 44px;
  }
}

@media (max-width: 390px) {
  .hero__copy h1,
  .choice h2,
  .brand__copy h2,
  .ritual__headline h2,
  .ritual__act--desire h2 {
    font-size: clamp(2.6rem, 12vw, 4.2rem);
  }

  .site-header {
    padding-inline: .85rem;
  }

  .gallery__intro,
  .gallery__caption {
    left: .85rem;
    right: .85rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }

  .hero,
  .gallery,
  .film-return,
  .ritual {
    height: auto;
    min-height: 0;
  }

  .ritual {
    --ritual-desire: 1;
    --ritual-benefit: 1;
    --ritual-action: 1;
    --ritual-card-1: 1;
    --ritual-card-2: 1;
    --ritual-card-3: 1;
    --ritual-card-4: 1;
  }

  .hero__stage,
  .gallery__stage,
  .film-return__stage {
    position: relative;
    min-height: 100vh;
  }

  .ritual__stage {
    position: relative;
    min-height: 100vh;
    height: auto;
  }

  .ritual__act,
  .ritual__visual {
    position: relative;
    inset: auto;
    width: auto;
    transform: none;
  }

  .hero__video,
  .film-return__video,
  .mentor-handoff__portrait img,
  .mentor-handoff__portrait video {
    transform: none;
  }

  .mentor-handoff__portrait::after {
    display: none;
  }

  .product-scene,
  .hero__lilac-pass {
    transform: none !important;
  }

  .gallery__stage {
    height: auto;
  }

  .gallery__intro,
  .gallery__caption,
  .gallery__scenes,
  .product-scene {
    position: relative;
    inset: auto;
  }

  .gallery__stage::before,
  .gallery__stage::after,
  .gallery__timeline {
    display: none;
  }

  .gallery__stage {
    display: grid;
    gap: 2rem;
    padding: 6rem 1rem 3rem;
  }

  .gallery__intro,
  .gallery__caption {
    width: min(44rem, 100%);
  }

  .gallery__scenes {
    display: grid;
    gap: 1rem;
  }

  .product-scene {
    min-height: 44vh;
    opacity: 1 !important;
    clip-path: none !important;
  }

  .product-scene__media {
    position: relative;
    min-height: 44vh;
  }

  .product-scene__video {
    object-fit: contain;
  }
}
