:root {
  --night: #050505;
  --graphite: #111214;
  --ivory: #f5f2e9;
  --muted: #a7a49c;
  --gold: #d5a64f;
  --gold-deep: #8f6a2d;
  --soypro-red: #8f1118;
  --header-height: 88px;
  --page-gutter: clamp(1.25rem, 4vw, 5rem);
  --display: Impact, Haettenschweiler, "Arial Narrow Bold", "Arial Narrow", Arial, sans-serif;
  --body: Arial, Helvetica, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  color-scheme: dark;
  scroll-behavior: smooth;
  background: var(--night);
  overflow-x: clip;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: clip;
  background: var(--night);
  color: var(--ivory);
  font-family: var(--body);
  line-height: 1.5;
  text-rendering: optimizeLegibility;
}

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

button,
a {
  color: inherit;
  font: inherit;
}

a {
  text-decoration-thickness: 1px;
  text-underline-offset: 0.3em;
}

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

::selection {
  color: var(--night);
  background: var(--gold);
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 1rem;
  left: 1rem;
  padding: 0.85rem 1.15rem;
  color: var(--night);
  background: var(--gold);
  font-weight: 800;
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

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

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: 100%;
  height: var(--header-height);
  padding: 0 var(--page-gutter);
  border-bottom: 1px solid rgba(213, 166, 79, 0.16);
  background: linear-gradient(180deg, rgba(5, 5, 5, 0.86), rgba(5, 5, 5, 0.46));
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  transition: height 200ms ease, background 200ms ease, border-color 200ms ease;
}

.site-header::after {
  content: "";
  position: absolute;
  right: var(--page-gutter);
  bottom: -1px;
  width: clamp(2.5rem, 8vw, 8rem);
  height: 2px;
  background: linear-gradient(90deg, var(--soypro-red), var(--gold));
}

.site-header.is-scrolled {
  height: 72px;
  border-color: rgba(213, 166, 79, 0.3);
  background: rgba(5, 5, 5, 0.92);
}

.brand-link,
.site-footer > a {
  justify-self: start;
  color: var(--ivory);
  font-family: var(--display);
  font-size: clamp(1.35rem, 2vw, 1.85rem);
  letter-spacing: 0.07em;
  text-decoration: none;
  text-shadow: 0 0 22px rgba(213, 166, 79, 0.2);
}

.brand-link::after {
  content: "";
  display: inline-block;
  width: 0.28em;
  height: 0.28em;
  margin-left: 0.26em;
  border-radius: 50%;
  background: var(--soypro-red);
  box-shadow: 0 0 0 1px var(--gold-deep);
}

.site-header nav {
  display: flex;
  gap: clamp(1.25rem, 3vw, 3rem);
}

.site-header nav a {
  color: var(--muted);
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.19em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 160ms ease;
}

.site-header nav a:hover {
  color: var(--gold);
}

.button {
  min-height: 46px;
  padding: 0.7rem 1rem;
  border: 1px solid rgba(213, 166, 79, 0.56);
  color: var(--gold);
  background: linear-gradient(135deg, rgba(213, 166, 79, 0.08), rgba(143, 17, 24, 0.06));
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.button:disabled {
  cursor: not-allowed;
  opacity: 0.72;
}

.button--header {
  justify-self: end;
}

.header-commerce {
  display: grid;
  justify-self: end;
  justify-items: end;
  gap: 0.2rem;
}

.header-commerce .button--header {
  justify-self: auto;
}

.commerce-note {
  color: var(--muted);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.hero-track {
  position: relative;
  min-height: 650svh;
  background: var(--night);
}

.hero-stage {
  position: sticky;
  top: 0;
  height: 100svh;
  min-height: 38rem;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 64% 42%, rgba(213, 166, 79, 0.15), transparent 32%),
    linear-gradient(118deg, #020202 12%, #0c0905 58%, #020202 100%);
}

.hero-stage::before,
.hero-stage::after {
  content: "";
  position: absolute;
  z-index: 3;
  inset: 0;
  pointer-events: none;
}

.hero-stage::before {
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.82) 0%, transparent 32%, transparent 70%, rgba(5, 5, 5, 0.7) 100%),
    linear-gradient(180deg, rgba(5, 5, 5, 0.76) 0%, transparent 25%, transparent 68%, rgba(5, 5, 5, 0.9) 100%);
}

.hero-stage::after {
  opacity: 0.28;
  background-image: linear-gradient(rgba(255, 255, 255, 0.012) 50%, transparent 50%);
  background-size: 100% 4px;
}

.hero-fallback,
[data-hero-canvas] {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-fallback {
  z-index: 0;
  object-fit: cover;
  filter: saturate(0.76) contrast(1.08) brightness(0.72);
}

[data-hero-canvas] {
  z-index: 1;
  max-width: none;
  opacity: 0;
  transition: opacity 500ms ease;
}

.hero-ready [data-hero-canvas] {
  opacity: 1;
}

.hero-loading {
  position: absolute;
  z-index: 8;
  right: var(--page-gutter);
  bottom: clamp(5rem, 12vh, 9rem);
  width: min(19rem, calc(100vw - 2.5rem));
  color: var(--muted);
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-loading[hidden] {
  display: none;
}

.hero-loading.is-error {
  padding: 0.9rem 1rem;
  border-left: 2px solid var(--gold);
  background: rgba(5, 5, 5, 0.78);
  letter-spacing: 0.04em;
  text-transform: none;
}

.hero-loading progress {
  width: 100%;
  height: 3px;
  border: 0;
  background: rgba(245, 242, 233, 0.15);
}

.hero-loading progress::-webkit-progress-value {
  background: var(--gold);
}

.hero-loading progress::-moz-progress-bar {
  background: var(--gold);
}

.hero-overlays {
  position: absolute;
  z-index: 5;
  inset: 0;
  display: grid;
  align-content: center;
  gap: 1.25rem;
  padding: calc(var(--header-height) + 2rem) var(--page-gutter) 5rem;
  pointer-events: none;
}

.hero-overlays article {
  max-width: min(72rem, 90vw);
  padding: 0;
  opacity: 1;
}

.hero-overlays h1,
.hero-overlays h2 {
  max-width: 9.2ch;
  margin: 0;
  color: var(--ivory);
  font-family: var(--display);
  font-size: clamp(3.5rem, 9.8vw, 9.5rem);
  font-weight: 900;
  line-height: 0.82;
  letter-spacing: -0.025em;
  text-transform: uppercase;
  text-shadow: 0 3px 42px rgba(0, 0, 0, 0.88);
}

.hero-overlays h1::after,
.hero-overlays h2::after {
  content: "";
  display: block;
  width: clamp(4rem, 11vw, 10rem);
  height: 3px;
  margin-top: clamp(1rem, 2vw, 1.8rem);
  background: linear-gradient(90deg, var(--gold), transparent);
}

.js-ready .hero-overlays article {
  position: absolute;
  top: calc(var(--header-height) + clamp(2rem, 6vh, 4.75rem));
  left: 50%;
  width: min(82vw, 72rem);
  max-width: none;
  text-align: center;
  opacity: 0;
  transform: translateX(-50%);
  will-change: opacity;
}

.js-ready .hero-overlays h1,
.js-ready .hero-overlays h2 {
  max-width: 13ch;
  margin-inline: auto;
  font-size: clamp(3.25rem, 7vw, 7rem);
}

.js-ready .hero-overlays h1::after,
.js-ready .hero-overlays h2::after {
  margin-inline: auto;
  background: var(--gold);
}

.js-ready .hero-overlays [data-chapter="4"] {
  top: 38vh;
}

.progress-rail {
  position: absolute;
  z-index: 7;
  top: 50%;
  right: clamp(1rem, 2.4vw, 2.75rem);
  width: 2px;
  height: min(42vh, 23rem);
  background: rgba(245, 242, 233, 0.17);
  transform: translateY(-50%);
}

.progress-rail__fill {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, var(--gold), var(--gold-deep));
  box-shadow: 0 0 20px rgba(213, 166, 79, 0.42);
  transform: scaleY(0);
  transform-origin: top;
}

.progress-rail ol {
  position: absolute;
  inset: -3px auto -3px 50%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 0;
  margin: 0;
  list-style: none;
  transform: translateX(-50%);
}

.progress-rail li {
  width: 7px;
  height: 7px;
  border: 1px solid var(--gold-deep);
  border-radius: 50%;
  background: var(--night);
  transition: background 150ms ease, transform 150ms ease;
}

.progress-rail li.is-active {
  background: var(--gold);
  transform: scale(1.45);
}

.scroll-cue {
  position: absolute;
  z-index: 7;
  bottom: clamp(1.4rem, 4vh, 3rem);
  left: var(--page-gutter);
  margin: 0;
  color: var(--muted);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.scroll-cue::before {
  content: "";
  display: inline-block;
  width: 2.8rem;
  height: 1px;
  margin-right: 0.8rem;
  background: var(--gold);
  vertical-align: middle;
}

.section-heading > p,
.performance-kicker,
.product-content > p:first-child {
  margin: 0 0 1rem;
  color: var(--gold);
  font-size: 0.69rem;
  font-weight: 800;
  letter-spacing: 0.24em;
}

.section-heading h2,
.performance-content h2,
.product-content h2 {
  margin: 0;
  font-family: var(--display);
  font-weight: 900;
  line-height: 0.88;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.formula-section {
  --formula-shift: 0px;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(28rem, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(2rem, 4vw, 5rem);
  min-height: 210svh;
  padding: clamp(7rem, 13vw, 12rem) var(--page-gutter);
  overflow: clip;
  background:
    linear-gradient(145deg, transparent 45%, rgba(213, 166, 79, 0.05) 45.1%, transparent 46%),
    var(--graphite);
}

.formula-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: var(--page-gutter);
  width: calc(100% - (2 * var(--page-gutter)));
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent 72%);
}

.formula-section .section-heading {
  position: sticky;
  top: clamp(7rem, 18vh, 11rem);
  align-self: start;
  padding-top: 1rem;
  padding-right: clamp(1rem, 3vw, 3rem);
  transform: translate3d(0, var(--formula-shift), 0);
}

.formula-section .section-heading h2 {
  max-width: 10ch;
  font-size: clamp(3rem, 5vw, 6rem);
}

.ingredient-grid {
  display: grid;
  gap: clamp(2.5rem, 8vh, 6rem);
}

.ingredient-card {
  position: relative;
  display: grid;
  align-content: end;
  min-height: 82svh;
  padding: clamp(1.5rem, 4vw, 4rem);
  overflow: hidden;
  isolation: isolate;
  border: 1px solid rgba(213, 166, 79, 0.24);
  background: #090a0b;
}

.ingredient-card:nth-child(even) {
  margin-left: clamp(-5rem, -5vw, -2rem);
  margin-right: clamp(0rem, 5vw, 5rem);
}

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

.ingredient-card::before {
  background: linear-gradient(180deg, transparent 20%, rgba(5, 5, 5, 0.18) 48%, rgba(5, 5, 5, 0.96) 92%);
}

.ingredient-card::after {
  inset: 1.1rem;
  border-top: 1px solid rgba(213, 166, 79, 0.42);
  border-right: 1px solid rgba(213, 166, 79, 0.12);
}

.ingredient-card img {
  position: absolute;
  z-index: 0;
  inset: -7%;
  width: 114%;
  height: 114%;
  max-width: none;
  object-fit: cover;
  filter: saturate(0.8) contrast(1.08);
  transform: translate3d(0, var(--ingredient-shift, 0px), 0) scale(1.02);
}

.ingredient-card h3,
.ingredient-card p {
  position: relative;
  z-index: 2;
}

.ingredient-card h3 {
  margin: 0;
  color: var(--ivory);
  font-family: var(--display);
  font-size: clamp(3.2rem, 7vw, 7rem);
  line-height: 0.9;
  text-transform: uppercase;
}

.ingredient-card p {
  max-width: 28rem;
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: clamp(0.9rem, 1.3vw, 1.05rem);
}

.ritual-track {
  position: relative;
  min-height: 400svh;
  overflow: clip;
  background: var(--night);
}

.ritual-track > .section-heading {
  position: absolute;
  z-index: 12;
  top: clamp(7rem, 15vh, 10rem);
  left: var(--page-gutter);
  pointer-events: none;
}

.ritual-track > .section-heading h2 {
  max-width: 10ch;
  font-size: clamp(2.6rem, 5vw, 5.5rem);
}

.ritual-rail {
  position: sticky;
  z-index: 3;
  top: 0;
  display: flex;
  width: max-content;
  height: 100svh;
  min-height: 38rem;
  background: var(--night);
  will-change: transform;
}

[data-ritual-panel] {
  position: relative;
  display: grid;
  flex: 0 0 100vw;
  grid-template-columns: minmax(0, 1.15fr) minmax(18rem, 0.85fr);
  grid-template-rows: 1fr auto auto;
  align-items: end;
  width: 100vw;
  height: 100%;
  padding: clamp(11rem, 20vh, 14rem) var(--page-gutter) clamp(3rem, 7vh, 6rem);
  overflow: hidden;
  isolation: isolate;
  background:
    linear-gradient(118deg, rgba(5, 5, 5, 0.98) 5%, rgba(17, 18, 20, 0.88) 62%, rgba(8, 7, 4, 0.98)),
    var(--graphite);
}

[data-ritual-panel]:nth-child(even) {
  background:
    linear-gradient(242deg, rgba(5, 5, 5, 0.98) 5%, rgba(17, 18, 20, 0.9) 62%, rgba(8, 7, 4, 0.98)),
    var(--graphite);
}

[data-ritual-panel]::before {
  content: "0" counter(ritual-step);
  position: absolute;
  z-index: -1;
  right: var(--page-gutter);
  bottom: -0.12em;
  color: rgba(213, 166, 79, 0.08);
  font-family: var(--display);
  font-size: clamp(15rem, 42vw, 40rem);
  line-height: 0.78;
}

.ritual-rail {
  counter-reset: ritual-step;
}

[data-ritual-panel] {
  counter-increment: ritual-step;
}

[data-ritual-panel]::after {
  content: "";
  position: absolute;
  top: 50%;
  left: var(--page-gutter);
  width: clamp(4rem, 14vw, 14rem);
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

[data-ritual-panel] img {
  position: relative;
  z-index: 1;
  grid-row: 1 / -1;
  align-self: center;
  justify-self: center;
  width: min(42vw, 42rem);
  max-height: 66vh;
  object-fit: contain;
  filter: drop-shadow(0 28px 48px rgba(0, 0, 0, 0.65));
}

[data-ritual-panel] h3 {
  position: relative;
  z-index: 2;
  grid-column: 2;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(5rem, 12vw, 13rem);
  line-height: 0.75;
  letter-spacing: -0.03em;
}

[data-ritual-panel] p {
  position: relative;
  z-index: 2;
  grid-column: 2;
  margin: 1.5rem 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.7vw, 1.35rem);
}

.ritual-story {
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  width: 48vw;
  height: 100svh;
  object-fit: cover;
  opacity: calc(0.04 + (var(--ritual-story-progress, 0) * 0.08));
  filter: grayscale(0.6) contrast(1.2);
  pointer-events: none;
}

html:not(.js-ready) .hero-track {
  min-height: auto !important;
}

html:not(.js-ready) .hero-stage {
  position: relative;
  top: auto;
  height: auto;
  min-height: auto;
  overflow: visible;
}

html:not(.js-ready) [data-hero-canvas],
html:not(.js-ready) .hero-loading,
html:not(.js-ready) .progress-rail,
html:not(.js-ready) .scroll-cue {
  display: none;
}

html:not(.js-ready) .hero-fallback {
  position: absolute;
  opacity: 1;
}

html:not(.js-ready) .hero-overlays {
  position: relative;
  inset: auto;
  min-height: 100svh;
  align-content: end;
  background: linear-gradient(180deg, transparent 25%, rgba(5, 5, 5, 0.92) 76%);
}

html:not(.js-ready) .hero-overlays article {
  position: relative;
  top: auto;
  right: auto;
  bottom: auto;
  left: auto;
  width: auto;
  max-width: none;
  opacity: 1;
  text-align: left;
  transform: none;
}

html:not(.js-ready) .ritual-track {
  min-height: auto;
  overflow: visible;
}

html:not(.js-ready) .ritual-track > .section-heading {
  position: relative;
  top: auto;
  left: auto;
  padding: 7rem var(--page-gutter) 3rem;
}

html:not(.js-ready) .ritual-rail {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: auto;
  height: auto;
  min-height: 0;
  transform: none;
}

html:not(.js-ready) [data-ritual-panel] {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: minmax(16rem, 45vh) auto auto;
  width: auto;
  min-height: 38rem;
  padding: 2rem;
}

html:not(.js-ready) [data-ritual-panel] img {
  grid-row: 1;
  width: min(72%, 24rem);
  max-height: 42vh;
}

html:not(.js-ready) [data-ritual-panel] h3,
html:not(.js-ready) [data-ritual-panel] p {
  grid-column: 1;
}

html:not(.js-ready) .ritual-story {
  display: none;
}

.performance-section {
  --performance-focus-x: 50%;
  position: relative;
  min-height: 115svh;
  overflow: hidden;
  isolation: isolate;
  background: var(--night);
}

.performance-image {
  --performance-shift: 0px;
  position: absolute;
  z-index: -3;
  inset: -6%;
  transform: translate3d(0, var(--performance-shift), 0) scale(1.04);
}

.performance-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--performance-focus-x) center;
  filter: saturate(0.82) contrast(1.08) brightness(0.7);
}

.performance-section::before {
  content: "";
  position: absolute;
  z-index: -2;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.96) 0%, rgba(5, 5, 5, 0.72) 24%, rgba(5, 5, 5, 0.18) 56%, rgba(5, 5, 5, 0.34) 100%),
    linear-gradient(180deg, rgba(5, 5, 5, 0.88), transparent 22%, transparent 67%, var(--night) 100%);
}

.performance-product {
  position: absolute;
  z-index: 0;
  bottom: clamp(2.5rem, 7vh, 6rem);
  left: 43%;
  width: min(36vw, 36.5rem);
  pointer-events: none;
  transform: translateX(-50%) rotate(-1.5deg);
  filter: drop-shadow(0 1.8rem 2.4rem rgba(0, 0, 0, 0.72));
}

.performance-product img {
  display: block;
  width: 100%;
  height: auto;
}

.performance-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(18rem, 0.85fr);
  align-items: end;
  gap: clamp(2rem, 6vw, 7rem);
  min-height: 115svh;
  padding: clamp(9rem, 17vh, 13rem) var(--page-gutter) clamp(4rem, 9vh, 8rem);
}

.performance-copy {
  align-self: center;
  max-width: 43rem;
}

.performance-content h2 {
  max-width: 5.6ch;
  font-size: clamp(4.2rem, 7.8vw, 8.8rem);
}

.performance-goals {
  max-width: 34rem;
  margin: clamp(1.4rem, 3vh, 2.5rem) 0 0;
  color: var(--gold);
  font-size: clamp(0.78rem, 1.2vw, 1rem);
  font-weight: 800;
  letter-spacing: 0.18em;
  line-height: 1.5;
}

.performance-summary {
  max-width: 31rem;
  margin: 0.9rem 0 0;
  color: rgba(245, 242, 233, 0.7);
  font-size: clamp(0.92rem, 1.25vw, 1.08rem);
  line-height: 1.65;
}

.performance-summary-line {
  display: block;
}

.performance-spectrum {
  align-self: end;
  padding: 0;
  margin: 0;
  counter-reset: spectrum;
  list-style: none;
}

.performance-spectrum li {
  counter-increment: spectrum;
  display: grid;
  grid-template-columns: 2rem minmax(0, 1fr);
  gap: 0.35rem 0.9rem;
  padding: 1rem 0 1.05rem;
  border-top: 1px solid rgba(213, 166, 79, 0.28);
  color: rgba(245, 242, 233, 0.52);
  transform: translateX(0);
  transition: color 260ms ease, transform 260ms ease;
}

.performance-spectrum li::before {
  content: "0" counter(spectrum);
  grid-row: 1 / 3;
  padding-top: 0.2rem;
  color: var(--gold);
  font-family: var(--body);
  font-size: 0.64rem;
  letter-spacing: 0.12em;
}

.performance-spectrum strong {
  font-family: var(--display);
  font-size: clamp(1.65rem, 2.7vw, 3rem);
  line-height: 0.95;
  letter-spacing: 0.035em;
  text-transform: uppercase;
}

.performance-spectrum span {
  color: rgba(245, 242, 233, 0.58);
  font-size: clamp(0.76rem, 1vw, 0.88rem);
  font-weight: 700;
  letter-spacing: 0.09em;
  line-height: 1.45;
  text-transform: uppercase;
}

.performance-spectrum li[aria-current="step"] {
  color: var(--ivory);
  transform: translateX(-0.35rem);
}

.performance-spectrum li[aria-current="step"] span {
  color: rgba(245, 242, 233, 0.84);
}

.product-finale {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(20rem, 0.95fr);
  align-items: center;
  gap: clamp(2rem, 6vw, 8rem);
  min-height: 112svh;
  padding: clamp(8rem, 15vh, 12rem) var(--page-gutter);
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 29% 46%, rgba(213, 166, 79, 0.19), rgba(143, 106, 45, 0.06) 25%, transparent 53%),
    linear-gradient(145deg, #080704, var(--night) 68%);
}

.product-finale::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 13%;
  left: 6%;
  width: 42vw;
  height: 42vw;
  border: 1px solid rgba(213, 166, 79, 0.14);
  border-radius: 50%;
  box-shadow: 0 0 110px rgba(213, 166, 79, 0.09) inset;
}

.product-lockup {
  --product-shift: 0px;
  position: relative;
  min-height: min(72vh, 48rem);
  transform: translate3d(0, var(--product-shift), 0);
}

.product-lockup::after {
  content: "";
  position: absolute;
  right: 8%;
  bottom: 5%;
  left: 8%;
  height: 10%;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.72);
  filter: blur(20px);
}

.product-lockup img {
  position: absolute;
  z-index: 1;
  object-fit: contain;
  filter: drop-shadow(0 32px 46px rgba(0, 0, 0, 0.68));
}

.product-box {
  inset: 2% 17% 4% 4%;
  width: 72%;
  height: 94%;
}

.product-sachet {
  right: 0;
  bottom: 4%;
  width: 44%;
  height: 62%;
  transform: rotate(6deg);
}

.product-content {
  position: relative;
  z-index: 2;
}

.product-content h2 {
  font-size: clamp(3.6rem, 7vw, 7.5rem);
}

.product-content h2 span {
  display: block;
}

.product-content h2 span:nth-child(2) {
  color: var(--gold);
}

.product-content > p:not(:first-child) {
  max-width: 34rem;
  margin: 2rem 0;
  color: var(--muted);
}

.button--product {
  min-width: 12rem;
  border-color: var(--gold);
}

#product-commerce-note {
  margin: 0.7rem 0 0;
  font-size: 0.75rem;
}

.product-offer {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 1.25rem;
  align-items: center;
  width: min(100%, 34rem);
  margin: 0 0 2rem;
  padding: 1.15rem 1.3rem;
  border: 1px solid rgba(213, 166, 79, 0.34);
  background: rgba(213, 166, 79, 0.06);
}

.product-offer .product-price {
  margin: 0;
  color: var(--ivory);
  font-family: var(--display);
  font-size: clamp(2.7rem, 4vw, 4.35rem);
  line-height: 0.86;
  letter-spacing: -0.025em;
}

.product-price span {
  margin-right: 0.16em;
  color: var(--gold);
  font-size: 0.42em;
  letter-spacing: 0.03em;
  vertical-align: top;
}

.product-offer > div {
  display: grid;
  gap: 0.25rem;
}

.product-offer strong {
  color: var(--ivory);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.product-offer > div span {
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.45;
}

.faq-section {
  display: grid;
  grid-template-columns: minmax(18rem, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(3rem, 8vw, 9rem);
  padding: clamp(7rem, 12vw, 11rem) var(--page-gutter);
  border-top: 1px solid rgba(213, 166, 79, 0.18);
  background:
    radial-gradient(circle at 10% 20%, rgba(213, 166, 79, 0.1), transparent 32%),
    var(--graphite);
}

.faq-heading {
  align-self: start;
  position: sticky;
  top: calc(var(--header-height) + 3rem);
}

.faq-heading h2 {
  max-width: 8ch;
  font-size: clamp(3.5rem, 6vw, 7rem);
}

.faq-list {
  border-top: 1px solid rgba(213, 166, 79, 0.4);
}

.faq-item {
  border-bottom: 1px solid rgba(245, 242, 233, 0.13);
}

.faq-item summary {
  position: relative;
  padding: 1.75rem 3.5rem 1.75rem 0;
  color: var(--ivory);
  cursor: pointer;
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  font-weight: 800;
  letter-spacing: 0.02em;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 0.4rem;
  color: var(--gold);
  font-family: var(--display);
  font-size: 2rem;
  transform: translateY(-50%);
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  max-width: 46rem;
  margin: -0.35rem 3.5rem 1.8rem 0;
  color: var(--muted);
  font-size: 1rem;
}

.faq-item a,
.footer-links a,
.legal-back,
.legal-section a {
  color: var(--gold);
}

.site-footer {
  display: grid;
  grid-template-columns: 0.65fr 1fr 1fr;
  gap: clamp(1.5rem, 5vw, 6rem);
  align-items: start;
  padding: clamp(3rem, 7vw, 6rem) var(--page-gutter);
  border-top: 1px solid rgba(213, 166, 79, 0.2);
  color: var(--muted);
  background: #030303;
  font-size: 0.74rem;
}

.site-footer p {
  max-width: 34rem;
  margin: 0;
}

.footer-copy {
  display: grid;
  gap: 0.8rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.2rem;
  align-content: start;
}

.footer-links a {
  font-weight: 700;
  letter-spacing: 0.06em;
  text-decoration: none;
  text-transform: uppercase;
}

.footer-links a:hover,
.legal-back:hover,
.legal-section a:hover {
  color: var(--ivory);
}

.legal-page {
  min-height: 100svh;
  padding: clamp(7rem, 13vw, 10rem) var(--page-gutter) clamp(4rem, 8vw, 7rem);
  background:
    radial-gradient(circle at 82% 8%, rgba(213, 166, 79, 0.13), transparent 28rem),
    var(--night);
}

.legal-shell {
  width: min(100%, 70rem);
  margin: 0 auto;
}

.legal-back {
  display: inline-block;
  margin-bottom: clamp(3rem, 7vw, 6rem);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-decoration: none;
  text-transform: uppercase;
}

.legal-intro {
  max-width: 55rem;
  margin-bottom: clamp(4rem, 8vw, 7rem);
}

.legal-kicker {
  margin: 0 0 1rem;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.legal-intro h1 {
  max-width: 10ch;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(3.3rem, 8vw, 7.5rem);
  line-height: 0.86;
  text-transform: uppercase;
}

.legal-intro > p:last-child {
  max-width: 46rem;
  margin: 2rem 0 0;
  color: var(--muted);
  font-size: 1rem;
}

.legal-sections {
  display: grid;
  gap: 1px;
  background: rgba(213, 166, 79, 0.2);
}

.legal-section {
  scroll-margin-top: 2rem;
  padding: clamp(2rem, 5vw, 4rem);
  background: var(--graphite);
}

.legal-section h2 {
  margin: 0 0 1.25rem;
  color: var(--ivory);
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 0.9;
  text-transform: uppercase;
}

.legal-section p,
.legal-section li {
  max-width: 54rem;
  color: var(--muted);
  font-size: 1rem;
}

.legal-section ul {
  padding-left: 1.25rem;
}

.confirmation-card {
  padding: clamp(2rem, 6vw, 5rem);
  border: 1px solid rgba(213, 166, 79, 0.3);
  background: var(--graphite);
}

.confirmation-card h1 {
  margin: 0 0 1.5rem;
  font-family: var(--display);
  font-size: clamp(3rem, 8vw, 6.5rem);
  line-height: 0.86;
  text-transform: uppercase;
}

.confirmation-card p {
  max-width: 46rem;
  color: var(--muted);
  font-size: 1rem;
}

.confirmation-card strong {
  color: var(--ivory);
}

.reveal-target {
  opacity: 1;
  transform: none;
}

.js-ready .reveal-target {
  opacity: 0;
  transform: translateY(1.75rem);
  transition: opacity 600ms ease, transform 700ms cubic-bezier(0.2, 0.75, 0.2, 1);
}

.js-ready .reveal-target.is-visible,
.reduced-motion .reveal-target,
.hero-failed .reveal-target {
  opacity: 1;
  transform: none;
}

.hero-failed .hero-track,
.reduced-motion .hero-track {
  min-height: auto !important;
}

.hero-failed .hero-stage,
.reduced-motion .hero-stage {
  position: relative;
  top: auto;
  height: auto;
  min-height: 100svh;
  overflow: visible;
}

.hero-failed .hero-loading {
  top: calc(var(--header-height) + 1rem);
  bottom: auto;
}

.hero-failed [data-hero-canvas],
.reduced-motion [data-hero-canvas] {
  display: none;
}

.hero-failed .hero-fallback,
.reduced-motion .hero-fallback {
  position: absolute;
  opacity: 1;
}

.hero-failed .hero-overlays,
.reduced-motion .hero-overlays {
  position: relative;
  z-index: 5;
  display: grid;
  min-height: 100svh;
  align-content: end;
  gap: 0.8rem;
  background: linear-gradient(180deg, transparent 25%, rgba(5, 5, 5, 0.92) 76%);
}

html.hero-failed.js-ready .hero-overlays article,
html.reduced-motion.js-ready .hero-overlays article {
  position: relative;
  top: auto;
  right: auto;
  bottom: auto;
  left: auto;
  width: auto;
  max-width: none;
  opacity: 1 !important;
  text-align: left;
  transform: none;
}

.hero-failed .hero-overlays h1,
.hero-failed .hero-overlays h2,
.reduced-motion .hero-overlays h1,
.reduced-motion .hero-overlays h2 {
  max-width: none;
  margin: 0;
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 0.95;
}

.hero-failed .hero-overlays h1::after,
.hero-failed .hero-overlays h2::after,
.reduced-motion .hero-overlays h1::after,
.reduced-motion .hero-overlays h2::after,
.hero-failed .progress-rail,
.reduced-motion .progress-rail,
.hero-failed .scroll-cue,
.reduced-motion .scroll-cue {
  display: none;
}

.hero-failed .ritual-track,
.reduced-motion .ritual-track {
  min-height: auto;
  overflow: visible;
}

.hero-failed .ritual-track > .section-heading,
.reduced-motion .ritual-track > .section-heading {
  position: relative;
  top: auto;
  left: auto;
  padding: 6rem var(--page-gutter) 2rem;
}

.hero-failed .ritual-rail,
.reduced-motion .ritual-rail {
  position: relative;
  top: auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: auto;
  height: auto;
  min-height: 0;
  transform: none !important;
}

.hero-failed [data-ritual-panel],
.reduced-motion [data-ritual-panel] {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: minmax(16rem, 45vh) auto auto;
  width: auto;
  min-height: 38rem;
  padding: 2rem;
}

.hero-failed [data-ritual-panel] img,
.reduced-motion [data-ritual-panel] img {
  grid-row: 1;
  width: min(72%, 24rem);
  max-height: 42vh;
}

.hero-failed [data-ritual-panel] h3,
.hero-failed [data-ritual-panel] p,
.reduced-motion [data-ritual-panel] h3,
.reduced-motion [data-ritual-panel] p {
  grid-column: 1;
}

.hero-failed .ritual-story,
.reduced-motion .ritual-story {
  display: none;
}

.hero-failed .formula-section *,
.hero-failed .performance-section *,
.hero-failed .product-finale *,
.reduced-motion .formula-section *,
.reduced-motion .performance-section *,
.reduced-motion .product-finale * {
  transform: none !important;
}

.hero-failed [data-performance-step] {
  color: var(--ivory);
  transform: none;
}

.reduced-motion [data-performance-step] {
  color: var(--ivory);
  transform: none;
}

html:not(.js-ready) [data-performance-step] {
  color: var(--ivory);
  transform: none;
}

@media (max-width: 900px) {
  :root {
    --header-height: 70px;
  }

  .site-header {
    grid-template-columns: 1fr auto;
    height: var(--header-height);
  }

  .site-header nav {
    display: none;
  }

  .button--header {
    min-height: 40px;
  }

  .hero-stage {
    min-height: 34rem;
  }

  .hero-overlays h1,
  .hero-overlays h2 {
    font-size: clamp(3.2rem, 12vw, 7rem);
  }

  .progress-rail {
    right: 1rem;
  }

  .formula-section {
    display: block;
    min-height: auto;
    padding-top: 7rem;
  }

  .formula-section .section-heading {
    position: relative;
    top: auto;
    padding-bottom: 4rem;
  }

  .formula-section .section-heading h2 {
    max-width: 10ch;
  }

  .ingredient-card,
  .ingredient-card:nth-child(even) {
    min-height: 72svh;
    margin: 0;
  }

  .ritual-track {
    min-height: auto;
    overflow: visible;
  }

  .ritual-track > .section-heading {
    position: relative;
    top: auto;
    left: auto;
    padding: 7rem var(--page-gutter) 3rem;
  }

  .ritual-rail {
    position: relative;
    top: auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: auto;
    height: auto;
    min-height: 0;
    transform: none !important;
  }

  [data-ritual-panel] {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: minmax(16rem, 42vh) auto auto;
    width: auto;
    min-height: 38rem;
    padding: 2rem;
  }

  [data-ritual-panel] img {
    grid-row: 1;
    width: min(76%, 24rem);
    max-height: 40vh;
  }

  [data-ritual-panel] h3,
  [data-ritual-panel] p {
    grid-column: 1;
  }

  [data-ritual-panel] h3 {
    font-size: clamp(4rem, 13vw, 7rem);
  }

  .ritual-story {
    display: none;
  }

  .performance-content {
    grid-template-columns: 1fr;
    align-content: space-between;
    gap: 3rem;
  }

  .performance-copy {
    align-self: start;
    max-width: 34rem;
  }

  .performance-content h2 {
    max-width: 6ch;
  }

  .performance-spectrum {
    width: min(100%, 32rem);
    margin-left: auto;
  }

  .performance-product {
    top: 46%;
    bottom: auto;
    left: 50%;
    width: min(62vw, 30rem);
  }

  .product-finale {
    grid-template-columns: 1fr;
    padding-top: 7rem;
  }

  .product-lockup {
    min-height: min(60vh, 38rem);
  }

  .product-content {
    max-width: 42rem;
  }

  .faq-section {
    grid-template-columns: 1fr;
  }

  .faq-heading {
    position: relative;
    top: auto;
  }

  .site-footer {
    grid-template-columns: 1fr 1fr;
  }

  .site-footer > a {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  :root {
    --page-gutter: 1.25rem;
  }

  .site-header {
    padding-inline: var(--page-gutter);
  }

  .button--header {
    min-width: 0;
    padding-inline: 0.7rem;
    font-size: 0.59rem;
  }

  .hero-stage {
    min-height: 100svh;
  }

  .hero-fallback {
    object-fit: contain;
  }

  .hero-overlays {
    padding-right: 2.6rem;
  }

  .hero-overlays h1,
  .hero-overlays h2 {
    max-width: 8ch;
    font-size: clamp(3.15rem, 18vw, 5.6rem);
  }

  .js-ready .hero-overlays article {
    top: calc(var(--header-height) + 1.25rem);
    width: calc(100% - 4rem);
    transform: translateX(-50%);
  }

  .js-ready .hero-overlays h1,
  .js-ready .hero-overlays h2 {
    max-width: 10ch;
    font-size: clamp(2.4rem, 12vw, 3.6rem);
  }

  .js-ready .hero-overlays [data-chapter="4"] {
    top: 34vh;
  }

  .hero-loading {
    right: 2.6rem;
    left: var(--page-gutter);
    width: auto;
  }

  .formula-section {
    padding-inline: var(--page-gutter);
  }

  .formula-section .section-heading h2 {
    font-size: clamp(3rem, 14vw, 4.6rem);
  }

  .ingredient-card {
    min-height: 68svh;
  }

  .ritual-rail,
  .hero-failed .ritual-rail,
  .reduced-motion .ritual-rail {
    grid-template-columns: 1fr;
  }

  [data-ritual-panel],
  .hero-failed [data-ritual-panel],
  .reduced-motion [data-ritual-panel] {
    min-height: 34rem;
  }

  .performance-content {
    min-height: 118svh;
    padding-top: 8rem;
    padding-bottom: 3rem;
  }

  .performance-content h2 {
    font-size: clamp(3.7rem, 15vw, 6.2rem);
  }

  .performance-summary {
    max-width: 27rem;
  }

  .performance-spectrum strong {
    font-size: clamp(1.6rem, 8vw, 2.35rem);
  }

  .performance-product {
    top: 47%;
    width: min(70vw, 25rem);
  }

  .product-finale {
    gap: 2rem;
  }

  .product-lockup {
    min-height: 52vh;
  }

  .product-content h2 {
    font-size: clamp(3.2rem, 15.5vw, 5.2rem);
  }

  .product-offer {
    grid-template-columns: 1fr;
  }

  .faq-heading h2 {
    font-size: clamp(3.2rem, 15vw, 5rem);
  }

  .site-footer {
    grid-template-columns: 1fr;
  }

  .site-footer > a {
    grid-column: auto;
  }
}

html.hero-failed.js-ready .hero-overlays h1,
html.hero-failed.js-ready .hero-overlays h2,
html.reduced-motion.js-ready .hero-overlays h1,
html.reduced-motion.js-ready .hero-overlays h2 {
  max-width: none;
  font-size: clamp(2rem, 5vw, 4rem);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .hero-track {
    min-height: auto !important;
  }

  .hero-stage {
    position: relative;
    top: auto;
  }

  .ritual-track {
    min-height: auto;
    overflow: visible;
  }

  .ritual-track > .section-heading {
    position: relative;
    top: auto;
    left: auto;
    padding: 6rem var(--page-gutter) 2rem;
  }

  .ritual-rail {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: auto;
    height: auto;
    min-height: 0;
    transform: none !important;
  }

  [data-ritual-panel] {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: minmax(16rem, 45vh) auto auto;
    width: auto;
    min-height: 38rem;
    padding: 2rem;
  }

  [data-ritual-panel] img {
    grid-row: 1;
    width: min(72%, 24rem);
    max-height: 42vh;
  }

  [data-ritual-panel] h3,
  [data-ritual-panel] p {
    grid-column: 1;
  }

  .ritual-story {
    display: none;
  }

  .ingredient-card img,
  .performance-image,
  .product-lockup {
    transform: none !important;
  }
}
