:root {
  --paper: #e8e6de;
  --paper-bright: #f2f0e9;
  --ink: #161815;
  --mist: #aebcb6;
  --acid: #d9ff57;
  --line: rgba(22, 24, 21, 0.22);
  --font-min: 13px;
  --serif: "Noto Sans TC", "Microsoft JhengHei", sans-serif;
  --sans: "Noto Sans TC", "Microsoft JhengHei", sans-serif;
  --ease-out: cubic-bezier(0.2, 0.75, 0.25, 1);
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 200;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

/* Global typography contract: Noto Sans TC / 200 + 500 / 1.5 */
body,
body * {
  font-family: var(--sans) !important;
  font-weight: 200 !important;
  line-height: 1.5 !important;
}

body :is(
  strong,
  b,
  button,
  .brand,
  .eyebrow,
  .quiz-question__context p,
  .quiz-option__letter,
  .quiz-question__status,
  .quiz-complete__body > p:first-child,
  .depth-instruction span,
  .quiz-result__link,
  .quiz-result__spectrum strong,
  .result-header a,
  .result-detail__eyebrow,
  .result-detail__recommendations h3,
  .result-detail__action a,
  .result-detail__types strong,
  .healing-course__eyebrow,
  .healing-course__jump,
  .healing-course__reason-index,
  .healing-course__growth h3,
  .healing-course__plan-heading > span,
  .healing-course__formats strong,
  .healing-course__plan-cta,
  .healing-course__closing a
) {
  font-weight: 500 !important;
}

body::before {
  position: fixed;
  z-index: 100;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.23'/%3E%3C/svg%3E");
  content: "";
  opacity: 0.055;
  pointer-events: none;
}

body.intro-lock {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
  font: inherit;
}

img {
  display: block;
  max-width: 100%;
}

.site-header {
  position: absolute;
  z-index: 30;
  top: 0;
  left: 0;
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: flex-end;
  padding: 22px 28px;
  font-size: var(--font-min);
  letter-spacing: 0.08em;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-16px);
  transition:
    opacity 650ms ease 760ms,
    transform 850ms var(--ease-out) 700ms;
}

.intro-complete .site-header {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.brand {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 9px;
  font-weight: 600;
}

.brand__mark {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 13px;
}

.site-nav {
  display: flex;
  gap: 30px;
}

.site-nav a,
.replay-button {
  position: relative;
}

.site-nav a::after,
.replay-button::after {
  position: absolute;
  right: 0;
  bottom: -5px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 350ms var(--ease-out);
}

.site-nav a:hover::after,
.replay-button:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.replay-button {
  display: flex;
  width: max-content;
  align-items: center;
  justify-self: end;
  border: 0;
  background: transparent;
  cursor: pointer;
  gap: 7px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 500ms ease;
}

.intro-complete .replay-button {
  opacity: 1;
  pointer-events: auto;
}

.replay-button__icon {
  font-size: 17px;
  line-height: 1;
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background: var(--paper);
  isolation: isolate;
}

.hero::after {
  position: absolute;
  z-index: -3;
  right: -15vw;
  bottom: -35vh;
  width: 70vw;
  height: 70vw;
  border-radius: 50%;
  background: rgba(184, 202, 192, 0.5);
  content: "";
  filter: blur(90px);
}

.hero__wash {
  position: absolute;
  z-index: -2;
  top: 13%;
  left: 50%;
  width: min(78vw, 1120px);
  height: 74%;
  border: 1px solid rgba(22, 24, 21, 0.11);
  border-radius: 50%;
  opacity: 0;
  transform: translateX(-50%) scale(0.86);
  transition: opacity 1.5s ease, transform 1.8s var(--ease-out);
}

.hero__wash::before,
.hero__wash::after {
  position: absolute;
  inset: 8%;
  border: inherit;
  border-radius: inherit;
  content: "";
}

.hero__wash::after {
  inset: 16%;
}

.intro-complete .hero__wash {
  opacity: 1;
  transform: translateX(-50%) scale(1);
}

.intro-copy {
  position: absolute;
  z-index: 22;
  pointer-events: none;
  top: 50%;
  left: 50%;
  display: flex;
  width: min(880px, 86vw);
  justify-content: space-between;
  overflow: hidden;
  transform: translate(-50%, -50%);
  transition: opacity 600ms ease;
}

.intro-copy p {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(15px, 1.3vw, 20px);
  letter-spacing: 0.08em;
  opacity: 0;
  transform: translateY(130%);
  transition: opacity 750ms ease, transform 950ms var(--ease-out);
}

.intro-copy p:last-child {
  transition-delay: 120ms;
}

.intro-copy.is-visible p {
  opacity: 1;
  transform: translateY(0);
}

.intro-copy.is-leaving {
  opacity: 0;
}

.intro-copy.is-leaving p {
  transform: translateY(-130%);
}

.memory-field {
  position: absolute;
  z-index: 8;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.memory-card {
  --mx: 0px;
  --my: 0px;
  position: absolute;
  top: 50%;
  left: 50%;
  width: clamp(220px, 23vw, 340px);
  aspect-ratio: 3 / 4;
  margin: 0;
  overflow: hidden;
  background: #c8c9c3;
  box-shadow: none;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.02);
  transition:
    transform 800ms var(--ease-out),
    opacity 350ms ease;
  transition-delay: calc(var(--i) * 70ms);
}

.intro-running .memory-card {
  will-change: transform, opacity;
}

.memory-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: filter 550ms ease, transform 900ms var(--ease-out);
}

.intro-reset .memory-card,
.intro-reset .site-header,
.intro-reset .hero__content,
.intro-reset .hero__wash,
.intro-reset .entry-portal,
.intro-reset .entry-portal::before,
.intro-reset .entry-portal__label,
.intro-reset .intro-copy,
.intro-reset .intro-copy p {
  transition: none !important;
}

.cards-stacked .memory-card {
  z-index: calc(8 + var(--i));
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.cards-scattered .memory-card {
  z-index: 8;
  opacity: 0.88;
  transform:
    translate(calc(-50% + var(--x) + var(--mx)), calc(-50% + var(--y) + var(--my)))
    rotate(var(--r)) scale(var(--s));
  transition-duration: 1150ms, 500ms;
  transition-delay: calc(var(--i) * 34ms);
}

.intro-complete .memory-field {
  pointer-events: auto;
}

.intro-complete .memory-card {
  transition-delay: 0ms;
}

.intro-complete .memory-card:hover {
  z-index: 18;
  opacity: 1;
  filter: saturate(1.15);
}

.intro-complete .memory-card:hover img {
  transform: scale(1.06);
}

.entry-portal {
  position: absolute;
  z-index: 10;
  inset: 0;
  overflow: hidden;
  background: rgba(242, 240, 233, 0.97);
  clip-path: circle(0% at 50% 52%);
  opacity: 0;
  pointer-events: none;
}

.entry-portal::before,
.entry-portal__ring {
  position: absolute;
  top: 52%;
  left: 50%;
  width: min(34vw, 460px);
  aspect-ratio: 1;
  border: 1px solid rgba(22, 24, 21, 0.34);
  border-radius: 50%;
  content: "";
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.2);
}

.entry-portal__ring {
  width: min(24vw, 320px);
}

.entry-portal__label {
  position: absolute;
  top: 52%;
  left: 50%;
  font-size: var(--font-min);
  letter-spacing: 0.2em;
  opacity: 0;
  text-transform: uppercase;
  transform: translate(-50%, -50%);
}

.home-entering .entry-portal {
  clip-path: circle(21% at 50% 52%);
  opacity: 1;
  transition: clip-path 720ms var(--ease-out), opacity 120ms ease;
}

.home-entering .entry-portal::before,
.home-entering .entry-portal__ring {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
  transition: opacity 450ms ease 120ms, transform 720ms var(--ease-out);
}

.home-entering .entry-portal__ring {
  transition-delay: 190ms;
}

.home-entering .entry-portal__label {
  opacity: 1;
  transition: opacity 350ms ease 260ms;
}

.home-entering.intro-complete .entry-portal {
  clip-path: circle(100% at 50% 52%);
  opacity: 0;
  transition: clip-path 1150ms var(--ease-out), opacity 440ms ease 760ms;
}

.home-entering.intro-complete .entry-portal::before,
.home-entering.intro-complete .entry-portal__ring {
  opacity: 0;
  transform: translate(-50%, -50%) scale(4.2);
  transition: transform 1050ms var(--ease-out), opacity 380ms ease 620ms;
}

.home-entering.intro-complete .entry-portal__label {
  opacity: 0;
  transform: translate(-50%, -50%) scale(1.08);
  transition: opacity 260ms ease, transform 500ms var(--ease-out);
}

.hero__content {
  position: relative;
  z-index: 12;
  display: flex;
  width: min(920px, calc(100% - 48px));
  min-height: 100svh;
  margin: 0 auto;
  flex-direction: column;
  justify-content: center;
  padding: 120px 0 88px;
  opacity: 0;
  pointer-events: none;
  clip-path: inset(48% 0 48% 0);
  filter: blur(10px);
  transform: translateY(30px) scale(0.965);
  transition:
    opacity 820ms ease 180ms,
    transform 1150ms var(--ease-out) 120ms,
    clip-path 1150ms var(--ease-out) 120ms,
    filter 900ms ease 120ms;
}

.intro-complete .hero__content {
  opacity: 1;
  pointer-events: auto;
  clip-path: inset(0 0 0 0);
  filter: blur(0);
  transform: translateY(0) scale(1);
}

.eyebrow {
  display: flex;
  width: 100%;
  justify-content: space-between;
  margin: 0 0 30px;
  font-size: var(--font-min);
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hero h1 {
  display: flex;
  margin: 0;
  flex-direction: column;
  font-family: var(--serif);
  font-size: clamp(66px, 9.1vw, 136px);
  font-weight: 400;
  letter-spacing: -0.075em;
  line-height: 0.9;
}

.hero-title__offset {
  align-self: flex-end;
}

.hero h1 i {
  font-size: 0.42em;
  font-weight: 400;
  letter-spacing: 0;
}

.hero__footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-top: 42px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.hero__footer > p {
  margin: 0;
  font-family: var(--serif);
  font-size: 14px;
  line-height: 1.8;
}

.round-link {
  display: flex;
  width: 108px;
  height: 108px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--ink);
  border-radius: 50%;
  font-size: var(--font-min);
  gap: 5px;
  transition: background 350ms ease, color 350ms ease, transform 350ms var(--ease-out);
}

.round-link:hover {
  background: var(--ink);
  color: var(--paper-bright);
  transform: rotate(-6deg);
}

.round-link__arrow {
  font-size: 17px;
}

.skip-button {
  position: absolute;
  z-index: 32;
  right: 28px;
  bottom: 24px;
  border: 0;
  background: transparent;
  cursor: pointer;
  font-size: var(--font-min);
  letter-spacing: 0.12em;
  transition: opacity 350ms ease;
}

.intro-complete .skip-button {
  opacity: 0;
  pointer-events: none;
}

.scroll-cue {
  position: absolute;
  z-index: 16;
  bottom: 22px;
  left: 28px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: var(--font-min);
  letter-spacing: 0.16em;
  opacity: 0;
  text-transform: uppercase;
  transform: translateY(8px);
  transition: opacity 700ms ease 900ms, transform 700ms var(--ease-out) 900ms;
}

.scroll-cue i {
  position: relative;
  width: 46px;
  height: 1px;
  overflow: hidden;
  background: var(--line);
}

.scroll-cue i::after {
  position: absolute;
  inset: 0;
  background: var(--ink);
  content: "";
  animation: scroll-line 1.8s ease-in-out infinite;
  transform: translateX(-100%);
}

.intro-complete .scroll-cue {
  opacity: 1;
  transform: translateY(0);
}

@keyframes scroll-line {
  55%, 100% { transform: translateX(105%); }
}

.section-shell {
  padding-right: clamp(24px, 4vw, 64px);
  padding-left: clamp(24px, 4vw, 64px);
}

.section-index {
  display: flex;
  justify-content: space-between;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
  font-size: var(--font-min);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

/* Twelve-step gated happiness-atmosphere journey. */
.quiz-flow {
  position: relative;
  z-index: 1;
}

.quiz-flow > section,
.quiz-complete {
  position: relative;
  z-index: 1;
}

.quiz-flow > section > *,
.quiz-complete > * {
  position: relative;
  z-index: 3;
}

.quiz-question {
  position: relative;
  display: flex;
  min-height: 100svh;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  padding-top: clamp(84px, 9vw, 138px);
  padding-bottom: clamp(54px, 6vw, 94px);
  background:
    radial-gradient(circle at 86% 18%, rgba(217, 255, 87, 0.26), transparent 24%),
    radial-gradient(circle at 12% 76%, rgba(174, 188, 182, 0.48), transparent 28%),
    var(--paper-bright);
}

.quiz-question[data-tone="sage"] {
  background:
    radial-gradient(circle at 86% 18%, rgba(217, 255, 87, 0.26), transparent 24%),
    radial-gradient(circle at 12% 76%, rgba(174, 188, 182, 0.48), transparent 28%),
    #f2f0e9;
}

.quiz-question[data-tone="mist"] {
  background:
    radial-gradient(circle at 14% 16%, rgba(174, 188, 182, 0.55), transparent 26%),
    radial-gradient(circle at 82% 82%, rgba(226, 232, 218, 0.78), transparent 32%),
    #ebece5;
}

.quiz-question[data-tone="sun"] {
  background:
    radial-gradient(circle at 78% 22%, rgba(230, 201, 144, 0.58), transparent 27%),
    radial-gradient(circle at 10% 84%, rgba(217, 255, 87, 0.22), transparent 30%),
    #f1ede2;
}

.quiz-question[data-tone="paper"] {
  background:
    radial-gradient(circle at 20% 82%, rgba(196, 199, 181, 0.46), transparent 29%),
    radial-gradient(circle at 90% 10%, rgba(255, 255, 255, 0.72), transparent 25%),
    var(--paper-bright);
}

.quiz-question:nth-child(even) .quiz-question__atmosphere span:first-child {
  right: auto;
  left: 4%;
}

.quiz-question:nth-child(even) .quiz-question__atmosphere span:last-child {
  right: -7%;
  left: auto;
}

.quiz-question.is-locked {
  user-select: none;
}

.quiz-question__atmosphere {
  position: absolute !important;
  z-index: 0 !important;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.quiz-question__atmosphere span {
  position: absolute;
  border: 1px solid rgba(22, 24, 21, 0.12);
  border-radius: 50%;
}

.quiz-question__atmosphere span:first-child {
  top: 8%;
  right: 5%;
  width: clamp(180px, 27vw, 430px);
  aspect-ratio: 1;
}

.quiz-question__atmosphere span:last-child {
  bottom: -18%;
  left: -7%;
  width: clamp(260px, 38vw, 620px);
  aspect-ratio: 1;
}

.quiz-question > .quiz-question__window {
  --window-tint: rgba(217, 255, 87, 0.2);
  --window-turn: -3deg;
  position: absolute;
  z-index: 1;
  top: clamp(108px, 14vh, 150px);
  right: clamp(8px, 2vw, 32px);
  width: clamp(230px, 25vw, 390px);
  aspect-ratio: 0.77;
  margin: 0;
  overflow: hidden;
  border-radius: 50% 50% 5% 5% / 29% 29% 4% 4%;
  background: #b7b6ae;
  box-shadow: 0 34px 90px rgba(22, 24, 21, 0.12);
  opacity: 0.88;
  pointer-events: none;
  transform: rotate(var(--window-turn));
  transform-origin: 50% 80%;
  transition:
    opacity 800ms ease,
    filter 900ms ease,
    transform 1100ms var(--ease-out);
}

.quiz-question > .quiz-question__window::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.13), transparent 46%),
    linear-gradient(0deg, var(--window-tint), transparent 48%);
  content: "";
  mix-blend-mode: soft-light;
}

.quiz-question__window img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--window-focus, 50% 50%);
  filter: saturate(0.82) contrast(0.96) brightness(0.94);
  transform: scale(1.045);
  transition: filter 900ms ease, transform 1200ms var(--ease-out);
}

.quiz-question:nth-child(even) > .quiz-question__window {
  --window-turn: 3deg;
  right: auto;
  left: clamp(8px, 2vw, 32px);
}

.quiz-question:nth-child(3n) > .quiz-question__window {
  --window-turn: -1deg;
  top: clamp(92px, 12vh, 126px);
}

.quiz-question[data-tone="mist"] > .quiz-question__window {
  --window-tint: rgba(174, 188, 182, 0.28);
}

.quiz-question[data-tone="sun"] > .quiz-question__window {
  --window-tint: rgba(230, 201, 144, 0.28);
}

.quiz-question[data-tone="paper"] > .quiz-question__window {
  --window-tint: rgba(196, 199, 181, 0.24);
}

.quiz-question.is-locked > .quiz-question__window {
  opacity: 0.28;
  filter: blur(2px);
  transform: rotate(var(--window-turn)) scale(0.94);
}

.quiz-question.is-answered > .quiz-question__window {
  opacity: 1;
  transform: rotate(var(--window-turn)) scale(1.025);
}

.quiz-question.is-answered > .quiz-question__window img {
  filter: saturate(0.96) contrast(1) brightness(0.98);
  transform: scale(1.08);
}

.quiz-question__index {
  position: relative;
}

.quiz-question__layout {
  display: grid;
  width: 100%;
  align-items: end;
  margin-top: clamp(72px, 9vw, 138px);
  grid-template-columns: minmax(180px, 0.62fr) minmax(0, 2.38fr);
  gap: clamp(42px, 7vw, 112px);
}

.quiz-question__context {
  max-width: 260px;
  padding-bottom: 58px;
}

.quiz-question__context p {
  margin: 0 0 18px;
  font-size: var(--font-min);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.quiz-question__context strong {
  display: block;
  margin: 0 0 14px;
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 400;
  letter-spacing: -0.02em;
}

.quiz-question__context span {
  display: block;
  font-family: var(--serif);
  font-size: 14px;
  line-height: 1.8;
  opacity: 0.66;
}

.quiz-question__form fieldset {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.quiz-question__form legend {
  display: block;
  width: min(100%, 1000px);
  padding: 0;
  font-family: var(--serif);
  font-size: clamp(34px, 4.45vw, 68px);
  letter-spacing: -0.045em;
  text-wrap: balance;
  line-height: 1.18;
}

.quiz-question__title-copy,
.quiz-question__title-copy > span {
  display: block;
}

.quiz-question__title-copy--mobile {
  display: none;
}

.quiz-question__form legend.quiz-question__title--compact {
  font-size: clamp(32px, 3.9vw, 60px);
}

.quiz-question__hint {
  margin: 28px 0 0;
  font-size: var(--font-min);
  letter-spacing: 0.08em;
  opacity: 0.58;
}

.quiz-options {
  display: grid;
  margin-top: clamp(42px, 5vw, 76px);
  border-top: 1px solid rgba(22, 24, 21, 0.35);
  border-bottom: 1px solid rgba(22, 24, 21, 0.35);
  grid-template-columns: repeat(5, 1fr);
}

.quiz-option {
  position: relative;
  display: grid;
  min-height: 116px;
  align-content: space-between;
  padding: 19px 18px 17px;
  border-right: 1px solid rgba(22, 24, 21, 0.18);
  cursor: pointer;
  transition: color 320ms ease, background-color 320ms ease;
}

.quiz-option:last-child {
  border-right: 0;
}

.quiz-option:hover,
.quiz-option:has(input:focus-visible) {
  background: rgba(255, 255, 255, 0.42);
}

.quiz-option:has(input:checked) {
  background: var(--ink);
  color: var(--paper-bright);
}

.quiz-option input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.quiz-option__letter {
  font-size: var(--font-min);
  font-weight: 700;
  letter-spacing: 0.18em;
}

.quiz-option__text {
  align-self: end;
  font-family: var(--serif);
  font-size: clamp(15px, 1.35vw, 20px);
}

.quiz-option__mark {
  position: absolute;
  top: 18px;
  right: 17px;
  width: 9px;
  height: 9px;
  border: 1px solid currentColor;
  border-radius: 50%;
  transition: background-color 300ms ease, border-color 300ms ease, transform 300ms var(--ease-out);
}

.quiz-option:has(input:checked) .quiz-option__mark {
  border-color: var(--acid);
  background: var(--acid);
  transform: scale(1.35);
}

.quiz-question__status {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  margin: 18px 0 0;
  font-size: var(--font-min);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: color 350ms ease;
}

.quiz-question__status span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(22, 24, 21, 0.28);
  transition: background-color 350ms ease, box-shadow 350ms ease;
}

.quiz-question.is-answered .quiz-question__status {
  color: #445219;
}

.quiz-question.is-answered .quiz-question__status span {
  background: #789313;
  box-shadow: 0 0 0 6px rgba(217, 255, 87, 0.35);
}

.quiz-complete {
  display: flex;
  min-height: 100svh;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  padding-top: clamp(84px, 9vw, 138px);
  padding-bottom: clamp(72px, 8vw, 118px);
  background:
    radial-gradient(circle at 50% 52%, rgba(217, 255, 87, 0.42), transparent 25%),
    radial-gradient(circle at 12% 18%, rgba(174, 188, 182, 0.42), transparent 25%),
    #e8e6de;
  opacity: 0.22;
  filter: blur(9px);
  transition: opacity 900ms ease, filter 1100ms var(--ease-out);
}

body.quiz-finished .quiz-complete {
  opacity: 1;
  filter: blur(0);
}

.quiz-complete__body {
  display: grid;
  max-width: 1080px;
  align-self: center;
  justify-items: center;
  margin-top: clamp(90px, 12vw, 170px);
  text-align: center;
}

.quiz-complete__body > p:first-child {
  margin: 0 0 28px;
  font-size: var(--font-min);
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.quiz-complete__body h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(42px, 6vw, 88px);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 1.12;
}

.quiz-complete__body > p:nth-of-type(2) {
  max-width: 520px;
  margin: 36px 0 0;
  font-family: var(--serif);
  font-size: 15px;
  line-height: 1.85;
  opacity: 0.68;
}

.quiz-complete__seeds {
  display: flex;
  align-items: center;
  gap: clamp(13px, 2.2vw, 28px);
  margin-top: 56px;
}

.quiz-complete__seeds span {
  width: clamp(12px, 1.5vw, 22px);
  aspect-ratio: 1;
  border: 1px solid rgba(22, 24, 21, 0.52);
  border-radius: 50%;
  background: rgba(242, 240, 233, 0.7);
  transform: scale(calc(0.72 + var(--seed-index, 0) * 0.08));
}

.quiz-complete__seeds span:nth-child(2) { --seed-index: 1; }
.quiz-complete__seeds span:nth-child(3) { --seed-index: 2; background: var(--acid); }
.quiz-complete__seeds span:nth-child(4) { --seed-index: 1; }
.quiz-complete__seeds span:nth-child(5) { --seed-index: 0; }

.quiz-complete {
  --result-accent: #a66f62;
  min-height: 118svh;
  justify-content: flex-start;
  background:
    radial-gradient(circle at 26% 33%, color-mix(in srgb, var(--result-accent) 24%, transparent), transparent 26%),
    radial-gradient(circle at 86% 14%, rgba(217, 255, 87, 0.3), transparent 22%),
    #e8e6de;
}

.quiz-complete__body {
  width: min(100%, 1240px);
  max-width: 1240px;
  justify-items: stretch;
  margin-top: clamp(68px, 8vw, 110px);
  text-align: left;
}

.quiz-complete__body > p:first-child {
  margin-bottom: clamp(34px, 5vw, 68px);
  text-align: center;
}

.quiz-result__layout {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(320px, 0.88fr) minmax(420px, 1.12fr);
  gap: clamp(54px, 8vw, 124px);
}

.quiz-result__flower {
  position: relative;
  display: grid;
  width: min(100%, 440px);
  aspect-ratio: 1 / 1.08;
  place-items: center;
  overflow: hidden;
  margin: 0;
  border: 1px solid color-mix(in srgb, var(--result-accent) 65%, transparent);
  border-radius: 52% 52% 10px 10px;
  background:
    linear-gradient(155deg, rgba(242, 240, 233, 0.82), rgba(242, 240, 233, 0.25)),
    color-mix(in srgb, var(--result-accent) 15%, transparent);
}

.quiz-result__flower img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.quiz-result__flower::before {
  position: absolute;
  width: 72%;
  aspect-ratio: 1;
  border: 1px solid rgba(22, 24, 21, 0.13);
  border-radius: 50%;
  content: "";
  transform: translate(27%, -34%);
}

.quiz-result__flower svg {
  position: relative;
  z-index: 1;
  width: 74%;
  height: 84%;
  overflow: visible;
  fill: none;
  stroke: var(--ink);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.35;
}

.quiz-result__flower .flower-detail {
  fill: color-mix(in srgb, var(--result-accent) 24%, transparent);
  stroke: var(--ink);
}

.quiz-result__copy {
  display: grid;
  align-content: center;
  justify-items: start;
}

.quiz-result__flower-name {
  margin: 0 0 18px;
  font-size: var(--font-min);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.quiz-result__copy h2 {
  margin: 0;
  font-size: clamp(56px, 7vw, 104px);
  letter-spacing: -0.07em;
}

.quiz-result__copy h2 span:last-child {
  color: color-mix(in srgb, var(--result-accent) 84%, var(--ink));
}

.quiz-result__summary {
  max-width: 580px;
  margin: 28px 0 0;
  font-size: clamp(15px, 1.35vw, 18px);
  opacity: 0.75;
}

.quiz-result__link {
  display: inline-flex;
  min-width: 230px;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  margin-top: 34px;
  padding: 18px 22px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: var(--ink);
  color: var(--paper-bright);
  font-size: var(--font-min);
  letter-spacing: 0.08em;
  transition: background 300ms ease, color 300ms ease, transform 300ms var(--ease-out);
}

.quiz-result__link:hover {
  background: var(--result-accent);
  color: var(--ink);
  transform: translateY(-3px);
}

.quiz-result__spectrum-wrap {
  margin-top: clamp(72px, 9vw, 124px);
  padding-top: 24px;
  border-top: 1px solid rgba(22, 24, 21, 0.28);
}

.quiz-result__spectrum-wrap > p {
  margin: 0 0 22px;
  font-size: var(--font-min);
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.quiz-result__spectrum {
  display: grid;
  margin: 0;
  padding: 0;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  list-style: none;
}

.quiz-result__spectrum li {
  position: relative;
  display: grid;
  min-height: 166px;
  grid-template-columns: 70px 1fr;
  align-items: center;
  gap: 12px;
  padding: 18px 16px;
  border-right: 1px solid rgba(22, 24, 21, 0.18);
  opacity: 0.42;
  transition: opacity 350ms ease, background 350ms ease;
}

.quiz-result__spectrum li:first-child {
  border-left: 1px solid rgba(22, 24, 21, 0.18);
}

.quiz-result__spectrum li.is-active {
  background: color-mix(in srgb, var(--type-accent) 20%, transparent);
  opacity: 1;
}

.quiz-result__spectrum-flower {
  display: grid;
  width: 66px;
  height: 106px;
  place-items: center;
}

.quiz-result__spectrum-flower svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: var(--ink);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.6;
}

.quiz-result__spectrum-flower .flower-detail {
  fill: color-mix(in srgb, var(--type-accent) 24%, transparent);
}

.quiz-result__spectrum-copy {
  display: grid;
  gap: 2px;
}

.quiz-result__spectrum-copy strong {
  font-size: 15px;
}

.quiz-result__spectrum-copy span,
.quiz-result__spectrum-copy small {
  font-size: var(--font-min);
}

.quiz-result__spectrum-copy small {
  margin-top: 6px;
  opacity: 0.58;
}

@media (max-width: 767px) {
  .quiz-question {
    min-height: 100svh;
    padding-top: 72px;
    padding-bottom: 38px;
  }

  .quiz-question__layout {
    display: block;
    margin-top: 54px;
  }

  .quiz-question > .quiz-question__window {
    top: 88px;
    right: -18px;
    width: clamp(136px, 43vw, 168px);
    opacity: 0.7;
  }

  .quiz-question:nth-child(even) > .quiz-question__window {
    right: -18px;
    left: auto;
  }

  .quiz-question:nth-child(3n) > .quiz-question__window {
    top: 76px;
  }

  .quiz-question__context {
    max-width: 190px;
    padding-bottom: 34px;
  }

  .quiz-question__context strong {
    font-size: 16px;
  }

  .quiz-question__form legend {
    font-size: clamp(28px, 7.8vw, 32px);
    line-height: 1.25;
  }

  .quiz-question__form legend.quiz-question__title--compact {
    font-size: clamp(28px, 7.8vw, 32px);
  }

  .quiz-question__title-copy--desktop {
    display: none;
  }

  .quiz-question__title-copy--mobile {
    display: block;
  }

  .quiz-question__hint {
    margin-top: 20px;
    line-height: 1.65;
  }

  .quiz-options {
    display: block;
    margin-top: 34px;
  }

  .quiz-option {
    min-height: 58px;
    grid-template-columns: 38px 1fr 18px;
    align-items: center;
    align-content: center;
    padding: 13px 4px;
    border-right: 0;
    border-bottom: 1px solid rgba(22, 24, 21, 0.14);
  }

  .quiz-option:last-child {
    border-bottom: 0;
  }

  .quiz-option__text {
    align-self: center;
    font-size: 16px;
  }

  .quiz-option__mark {
    position: static;
    justify-self: end;
  }

  .quiz-question__status {
    justify-content: flex-start;
    margin-top: 16px;
    line-height: 1.5;
  }

  .quiz-complete {
    padding-top: 72px;
    padding-bottom: 54px;
  }

  .quiz-complete__body {
    width: 100%;
    margin-top: 66px;
  }

  .quiz-result__layout {
    display: block;
  }

  .quiz-result__flower {
    width: min(78vw, 292px);
    margin: 0 auto 42px;
  }

  .quiz-result__copy {
    justify-items: start;
  }

  .quiz-result__copy h2 {
    font-size: clamp(48px, 16vw, 66px);
  }

  .quiz-result__summary {
    margin-top: 24px;
    font-size: 15px;
  }

  .quiz-result__link {
    width: 100%;
    margin-top: 28px;
  }

  .quiz-result__spectrum-wrap {
    margin-top: 74px;
  }

  .quiz-result__spectrum {
    width: calc(100vw - 24px);
    margin-left: -12px;
    padding: 0 12px 14px;
    grid-template-columns: repeat(5, 168px);
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: x proximity;
  }

  .quiz-result__spectrum li {
    min-height: 154px;
    grid-template-columns: 58px 1fr;
    padding: 14px 12px;
    scroll-snap-align: center;
  }

  .quiz-result__spectrum-flower {
    width: 55px;
    height: 92px;
  }
}

/* Detailed flower result page */
.result-page {
  --result-accent: #a66f62;
  min-height: 100%;
  background:
    radial-gradient(circle at 78% 10%, color-mix(in srgb, var(--result-accent) 20%, transparent), transparent 24%),
    var(--paper-bright);
}

.result-header {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  padding: 26px 30px;
  font-size: var(--font-min);
  letter-spacing: 0.11em;
}

.result-header__back {
  display: inline-flex;
  gap: 12px;
}

.result-detail {
  overflow: clip;
}

.result-detail__hero,
.result-detail__reading,
.result-detail__recommendations,
.result-detail__action,
.result-detail__types {
  padding-right: clamp(24px, 6vw, 92px);
  padding-left: clamp(24px, 6vw, 92px);
}

.result-detail__hero {
  position: relative;
  display: grid;
  min-height: 100svh;
  grid-template-columns: minmax(340px, 0.9fr) minmax(420px, 1.1fr);
  align-items: center;
  gap: clamp(50px, 8vw, 130px);
  padding-top: 120px;
  padding-bottom: 90px;
}

.result-detail__index {
  position: absolute;
  top: 94px;
  left: clamp(24px, 6vw, 92px);
  display: flex;
  width: calc(100% - clamp(48px, 12vw, 184px));
  justify-content: space-between;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(22, 24, 21, 0.24);
  font-size: var(--font-min);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.result-detail__flower {
  display: grid;
  width: min(100%, 520px);
  aspect-ratio: 0.88;
  place-items: center;
  overflow: hidden;
  margin: 28px 0 0;
  border: 1px solid color-mix(in srgb, var(--result-accent) 62%, transparent);
  border-radius: 52% 52% 12px 12px;
  background: color-mix(in srgb, var(--result-accent) 13%, transparent);
}

.result-detail__flower img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.result-detail__flower svg {
  width: 74%;
  height: 84%;
  fill: none;
  stroke: var(--ink);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.25;
}

.result-detail__flower .flower-detail,
.result-detail__type-flower .flower-detail {
  fill: color-mix(in srgb, var(--result-accent) 28%, transparent);
}

.result-detail__intro > p:first-child,
.result-detail__eyebrow {
  margin: 0 0 20px;
  font-size: var(--font-min);
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.result-detail__intro h1 {
  margin: 0;
  font-size: clamp(64px, 8.6vw, 126px);
  letter-spacing: -0.08em;
}

.result-detail__intro h1 span:last-child {
  color: color-mix(in srgb, var(--result-accent) 86%, var(--ink));
}

.result-detail__intro > p:last-child {
  max-width: 620px;
  margin: 32px 0 0;
  font-size: clamp(16px, 1.4vw, 20px);
  opacity: 0.72;
}

.result-detail__reading {
  display: grid;
  grid-template-columns: minmax(320px, 0.8fr) minmax(420px, 1.2fr);
  gap: clamp(54px, 9vw, 148px);
  padding-top: clamp(110px, 14vw, 210px);
  padding-bottom: clamp(110px, 14vw, 210px);
  border-top: 1px solid rgba(22, 24, 21, 0.18);
}

.result-detail__reading h2,
.result-detail__section-heading h2 {
  margin: 0;
  font-size: clamp(42px, 5.4vw, 78px);
  letter-spacing: -0.06em;
}

.result-detail__reading > p {
  max-width: 680px;
  align-self: center;
  margin: 0;
  font-size: clamp(20px, 2.1vw, 31px);
}

.result-detail__recommendations {
  padding-top: clamp(100px, 12vw, 180px);
  padding-bottom: clamp(110px, 14vw, 210px);
  background: #dfe2da;
}

.result-detail__recommendations ol {
  margin: clamp(62px, 8vw, 110px) 0 0;
  padding: 0;
  border-top: 1px solid var(--ink);
  list-style: none;
}

.result-detail__recommendations li {
  display: grid;
  grid-template-columns: 80px minmax(0, 1fr);
  gap: 28px;
  padding: 32px 0;
  border-bottom: 1px solid rgba(22, 24, 21, 0.28);
}

.result-detail__recommendations li > span {
  font-size: var(--font-min);
  letter-spacing: 0.14em;
}

.result-detail__recommendations h3 {
  margin: 0;
  font-size: clamp(24px, 2.6vw, 38px);
}

.result-detail__recommendations li p {
  max-width: 720px;
  margin: 12px 0 0;
  font-size: 16px;
  opacity: 0.72;
}

.result-detail__action {
  display: grid;
  min-height: 78svh;
  align-content: center;
  justify-items: center;
  padding-top: 120px;
  padding-bottom: 120px;
  background: var(--ink);
  color: var(--paper-bright);
  text-align: center;
}

.result-detail__action h2 {
  max-width: 980px;
  margin: 0;
  color: color-mix(in srgb, var(--result-accent) 75%, var(--paper-bright));
  font-size: clamp(44px, 6.5vw, 92px);
  letter-spacing: -0.06em;
}

.result-detail__action > p:nth-of-type(2) {
  max-width: 720px;
  margin: 34px 0 0;
  font-size: clamp(16px, 1.5vw, 20px);
  opacity: 0.7;
}

.result-detail__action a {
  display: inline-flex;
  min-width: 220px;
  justify-content: space-between;
  gap: 34px;
  margin-top: 40px;
  padding: 18px 22px;
  border: 1px solid rgba(242, 240, 233, 0.72);
  border-radius: 999px;
  font-size: var(--font-min);
}

.result-detail__types {
  padding-top: 90px;
  padding-bottom: 90px;
}

.result-detail__types ol {
  display: grid;
  margin: 34px 0 0;
  padding: 0;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid rgba(22, 24, 21, 0.24);
  list-style: none;
}

.result-detail__types li {
  border-right: 1px solid rgba(22, 24, 21, 0.18);
  opacity: 0.42;
}

.result-detail__types li:first-child {
  border-left: 1px solid rgba(22, 24, 21, 0.18);
}

.result-detail__types li.is-active {
  background: color-mix(in srgb, var(--type-accent) 18%, transparent);
  opacity: 1;
}

.result-detail__types a {
  display: grid;
  min-height: 210px;
  grid-template-columns: 86px 1fr;
  align-items: center;
  gap: 14px;
  padding: 20px 16px;
}

.result-detail__type-flower {
  display: grid;
  width: 82px;
  height: 130px;
  place-items: center;
}

.result-detail__type-flower svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: var(--ink);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.2;
}

.result-detail__types a > span:last-child {
  display: grid;
  gap: 4px;
}

.result-detail__types small {
  font-size: var(--font-min);
}

@media (max-width: 767px) {
  .result-header {
    padding: 20px 18px;
  }

  .result-detail__hero,
  .result-detail__reading,
  .result-detail__recommendations,
  .result-detail__action,
  .result-detail__types {
    padding-right: 24px;
    padding-left: 24px;
  }

  .result-detail__hero {
    display: block;
    padding-top: 142px;
    padding-bottom: 82px;
  }

  .result-detail__index {
    top: 92px;
    left: 24px;
    width: calc(100% - 48px);
  }

  .result-detail__flower {
    width: min(78vw, 310px);
    margin: 0 auto 52px;
  }

  .result-detail__intro h1 {
    font-size: clamp(58px, 18vw, 76px);
  }

  .result-detail__intro > p:last-child {
    margin-top: 24px;
    font-size: 16px;
  }

  .result-detail__reading {
    display: block;
    padding-top: 92px;
    padding-bottom: 96px;
  }

  .result-detail__reading h2,
  .result-detail__section-heading h2 {
    font-size: 44px;
  }

  .result-detail__reading > p {
    margin-top: 48px;
    font-size: 22px;
  }

  .result-detail__recommendations {
    padding-top: 88px;
    padding-bottom: 98px;
  }

  .result-detail__recommendations li {
    grid-template-columns: 38px 1fr;
    gap: 12px;
    padding: 26px 0;
  }

  .result-detail__action {
    min-height: 86svh;
    padding-top: 96px;
    padding-bottom: 96px;
  }

  .result-detail__action h2 {
    font-size: 46px;
  }

  .result-detail__action a {
    width: 100%;
  }

  .result-detail__types {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .result-detail__types ol {
    width: calc(100vw - 24px);
    margin-left: -12px;
    padding: 0 12px 12px;
    grid-template-columns: repeat(5, 172px);
    overflow-x: auto;
    scroll-snap-type: x proximity;
  }

  .result-detail__types li {
    scroll-snap-align: center;
  }

  .result-detail__types a {
    min-height: 176px;
    grid-template-columns: 66px 1fr;
    padding: 14px 12px;
  }

  .result-detail__type-flower {
    width: 62px;
    height: 104px;
  }
}

.manifesto {
  padding-top: clamp(110px, 14vw, 210px);
  padding-bottom: clamp(120px, 16vw, 240px);
  background: var(--paper-bright);
}

.manifesto__body {
  display: grid;
  margin-top: 8vw;
  grid-template-columns: minmax(140px, 0.7fr) 2.4fr;
  column-gap: 6vw;
}

.kicker {
  margin: 10px 0 0;
  font-size: var(--font-min);
}

.manifesto h2 {
  max-width: 1100px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(34px, 5.1vw, 76px);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 1.22;
}

.manifesto__aside {
  display: grid;
  margin-top: 9vw;
  grid-column: 2;
  grid-template-columns: 1fr 1fr;
  gap: 6vw;
}

.manifesto__aside p {
  max-width: 470px;
  margin: 0;
  font-family: var(--serif);
  font-size: 16px;
  line-height: 1.9;
}

.manifesto__aside a {
  align-self: end;
  justify-self: end;
  padding-bottom: 5px;
  border-bottom: 1px solid currentColor;
  font-size: var(--font-min);
}

.programs {
  padding-top: 32px;
  padding-bottom: clamp(110px, 12vw, 180px);
  background: #202520;
  color: #eff0e8;
}

.section-index--light {
  border-color: rgba(239, 240, 232, 0.25);
}

.programs__heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  padding: 9vw 0 6vw;
}

.programs__heading h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(45px, 7vw, 98px);
  font-weight: 400;
  letter-spacing: -0.06em;
  line-height: 0.98;
}

.programs__heading p {
  margin: 0 0 8px;
  font-size: var(--font-min);
  opacity: 0.62;
}

.program-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr;
  gap: 10px;
}

.program-card {
  position: relative;
  display: flex;
  min-height: min(590px, 64vw);
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  padding: 26px;
  background: #333a34;
}

.program-card > *:not(img, .program-card__shade, .program-card__orb) {
  position: relative;
  z-index: 2;
}

.program-card > p {
  margin: 0 auto auto 0;
  font-size: var(--font-min);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.program-card h3 {
  margin: 0 0 12px;
  font-family: var(--serif);
  font-size: clamp(28px, 3.4vw, 52px);
  font-weight: 400;
}

.program-card > span {
  max-width: 330px;
  font-family: var(--serif);
  font-size: 13px;
  line-height: 1.7;
  opacity: 0.72;
}

.program-card--image > img,
.program-card__shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.1s var(--ease-out);
}

.program-card__shade {
  z-index: 1;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.03), rgba(11, 19, 14, 0.82));
}

.program-card--image:hover > img {
  transform: scale(1.045);
}

.program-card--ink {
  background: #b9c7bf;
  color: #172019;
}

.program-card__orb {
  position: absolute;
  z-index: 0;
  top: 16%;
  left: 50%;
  width: 74%;
  aspect-ratio: 1;
  border: 1px solid rgba(23, 32, 25, 0.45);
  border-radius: 50%;
  opacity: 1 !important;
  transform: translateX(-50%);
}

.program-card__orb::before,
.program-card__orb::after {
  position: absolute;
  inset: 12%;
  border: inherit;
  border-radius: inherit;
  content: "";
}

.program-card__orb::after {
  inset: 24%;
}

.program-card--mist {
  background: #d8d2c2;
  color: #1c211d;
}

.program-card--mist img {
  width: calc(100% + 52px);
  max-width: none;
  height: 45%;
  margin: 28px -26px -26px;
  object-fit: cover;
  filter: saturate(0.55);
}

.invitation {
  display: flex;
  min-height: 84vh;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  background: var(--acid);
  text-align: center;
}

.invitation > p {
  margin: 0 0 38px;
  font-size: var(--font-min);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.invitation blockquote {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(42px, 7vw, 104px);
  letter-spacing: -0.06em;
  line-height: 1.03;
}

.invitation a {
  margin-top: 55px;
  padding-bottom: 6px;
  border-bottom: 1px solid currentColor;
  font-size: var(--font-min);
}

.site-footer {
  display: grid;
  padding-top: 7vw;
  padding-bottom: 34px;
  background: #161815;
  color: #eeeee7;
  grid-template-columns: 1fr auto;
}

.site-footer p {
  margin: 0 0 20px;
  font-size: var(--font-min);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.site-footer h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(36px, 5vw, 72px);
  font-weight: 400;
}

.footer-mail {
  align-self: end;
  padding-bottom: 5px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.6);
  font-size: 14px;
}

.footer-meta {
  display: flex;
  justify-content: space-between;
  margin-top: 8vw;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  grid-column: 1 / -1;
  font-size: var(--font-min);
  letter-spacing: 0.08em;
}

:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 5px;
}

@media (max-width: 760px) {
  .site-header {
    padding: 18px;
  }

  .site-nav {
    display: none;
  }

  .hero__content {
    width: calc(100% - 36px);
    justify-content: flex-end;
    padding-bottom: 92px;
  }

  .hero h1 {
    font-size: clamp(53px, 16.2vw, 78px);
    line-height: 0.96;
  }

  .hero-title__offset {
    align-self: flex-start;
  }

  .hero h1 i {
    display: block;
    margin: 12px 0 5px;
    font-size: 0.35em;
  }

  .eyebrow {
    margin-bottom: 22px;
  }

  .hero__footer {
    margin-top: 26px;
  }

  .hero__footer > p {
    max-width: 220px;
    font-size: var(--font-min);
  }

  .round-link {
    width: 82px;
    height: 82px;
    flex-shrink: 0;
    font-size: var(--font-min);
  }

  .skip-button {
    right: 18px;
    bottom: 18px;
  }

  .scroll-cue {
    display: none;
  }

  .intro-copy {
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100svh;
    overflow: visible;
    transform: none;
  }

  .intro-copy p {
    position: absolute;
    left: 0;
    width: 100%;
    padding: 0 24px;
    text-align: center;
  }

  .intro-copy p:first-child {
    top: max(72px, calc(env(safe-area-inset-top) + 64px));
  }

  .intro-copy p:last-child {
    bottom: max(74px, calc(env(safe-area-inset-bottom) + 64px));
  }

  .memory-card {
    width: min(58vw, 250px);
  }

  .entry-portal::before {
    width: 64vw;
  }

  .entry-portal__ring {
    width: 43vw;
  }

  .cards-scattered .memory-card {
    opacity: 0.72;
  }

  .memory-card:nth-child(1) { --x: -43vw !important; --y: -37vh !important; --s: .29 !important; }
  .memory-card:nth-child(2) { --x: -13vw !important; --y: -42vh !important; --s: .24 !important; }
  .memory-card:nth-child(3) { --x: 37vw !important; --y: -34vh !important; --s: .29 !important; }
  .memory-card:nth-child(4) { --x: -38vw !important; --y: -15vh !important; --s: .27 !important; }
  .memory-card:nth-child(5) { --x: 42vw !important; --y: -12vh !important; --s: .23 !important; }
  .memory-card:nth-child(6) { --x: 47vw !important; --y: 10vh !important; --s: .25 !important; }
  .memory-card:nth-child(7) { --x: -44vw !important; --y: 11vh !important; --s: .24 !important; }
  .memory-card:nth-child(8) { --x: 40vw !important; --y: 32vh !important; --s: .28 !important; }
  .memory-card:nth-child(9) { --x: -43vw !important; --y: 34vh !important; --s: .27 !important; }
  .memory-card:nth-child(10) { --x: -18vw !important; --y: 42vh !important; --s: .22 !important; }
  .memory-card:nth-child(11) { --x: 15vw !important; --y: 43vh !important; --s: .23 !important; }
  .memory-card:nth-child(12) { --x: 46vw !important; --y: 46vh !important; --s: .22 !important; }
  .memory-card:nth-child(13) { --x: 15vw !important; --y: -45vh !important; --s: .21 !important; }
  .memory-card:nth-child(14) { --x: 44vw !important; --y: 23vh !important; --s: .22 !important; }

  .manifesto__body {
    display: block;
    margin-top: 70px;
  }

  .manifesto h2 {
    margin-top: 34px;
  }

  .manifesto__aside {
    display: block;
    margin-top: 75px;
  }

  .manifesto__aside a {
    display: inline-block;
    margin-top: 38px;
  }

  .programs__heading {
    display: block;
    padding: 90px 0 50px;
  }

  .programs__heading p {
    margin-top: 25px;
  }

  .program-grid {
    grid-template-columns: 1fr;
  }

  .program-card {
    min-height: 118vw;
  }

  .invitation {
    min-height: 72vh;
  }

  .site-footer {
    display: block;
    padding-top: 90px;
  }

  .footer-mail {
    display: inline-block;
    margin-top: 65px;
  }
}

@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;
    transition-delay: 0ms !important;
  }
}

.quiz-journey {
  position: relative;
  overflow: clip;
  isolation: isolate;
}

.quiz-journey > section {
  position: relative;
  z-index: 1;
}

.quiz-journey > section > * {
  position: relative;
  z-index: 3;
}

/* Depth gallery homepage — adapted from the interaction model of Codrops Depth Gallery. */
.depth-gallery {
  --depth-bg: #e5e6df;
  --depth-blob-1: #b9d1d4;
  --depth-blob-2: #f2d8a4;
  --depth-velocity: 0;
  --depth-progress: 0%;
  position: absolute;
  z-index: 11;
  inset: 0;
  overflow: hidden;
  background: var(--depth-bg);
  clip-path: circle(0% at 50% 52%);
  opacity: 0;
  outline: none;
  pointer-events: none;
  transition:
    clip-path 1250ms var(--ease-out) 90ms,
    opacity 520ms ease 90ms;
}

.intro-complete .depth-gallery {
  clip-path: circle(100% at 50% 52%);
  opacity: 1;
  pointer-events: auto;
}

.intro-complete .memory-field {
  opacity: 0;
  pointer-events: none;
  transition: opacity 500ms ease 120ms;
}

.intro-reset .depth-gallery,
.intro-reset .memory-field {
  transition: none !important;
}

.depth-gallery__atmosphere {
  position: absolute;
  inset: -12%;
  background:
    radial-gradient(circle at 26% 54%, color-mix(in srgb, var(--depth-blob-1) 78%, transparent) 0, transparent 38%),
    radial-gradient(circle at 76% 38%, color-mix(in srgb, var(--depth-blob-2) 70%, transparent) 0, transparent 42%),
    var(--depth-bg);
  filter: brightness(calc(1 + var(--depth-velocity) * 0.08));
  transform: scale(calc(1 + var(--depth-velocity) * 0.025));
  transition: filter 120ms linear;
}

.depth-gallery__atmosphere::after {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.82' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.34'/%3E%3C/svg%3E");
  content: "";
  mix-blend-mode: soft-light;
  opacity: 0.2;
}

.depth-stage {
  position: absolute;
  z-index: 2;
  inset: 0;
  perspective: 1100px;
  perspective-origin: 50% 50%;
  transform-style: preserve-3d;
}

.depth-plane {
  position: absolute;
  top: 50%;
  left: 50%;
  width: clamp(280px, 31vw, 470px);
  aspect-ratio: 3 / 4;
  margin: 0;
  overflow: hidden;
  border-radius: clamp(18px, 2vw, 32px);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: none;
  transform-style: preserve-3d;
  will-change: transform, opacity;
}

.depth-plane--landscape {
  width: clamp(350px, 42vw, 640px);
  aspect-ratio: 1.28 / 1;
}

.depth-plane img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(calc(1.015 + var(--depth-velocity) * 0.025));
  transition: transform 160ms linear;
}

.depth-plane.is-current img {
  filter: saturate(1.04) contrast(1.01);
}

@media (min-width: 761px) {
  .depth-plane {
    left: calc(50% + clamp(36px, 4.5vw, 72px));
  }
}

.depth-trail {
  position: absolute;
  z-index: 3;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
  pointer-events: none;
}

.depth-trail path {
  fill: none;
  stroke: color-mix(in srgb, var(--depth-blob-1) 68%, var(--ink));
  stroke-dasharray: 0.18 0.82;
  stroke-dashoffset: var(--trail-offset, 0);
  stroke-linecap: round;
  stroke-width: 0.26;
  vector-effect: non-scaling-stroke;
  opacity: calc(0.16 + var(--depth-velocity) * 0.5);
  transition: stroke 300ms ease, opacity 200ms linear;
}

.depth-label {
  position: absolute;
  z-index: 6;
  color: var(--ink);
  font-size: var(--font-min);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.depth-label--left {
  top: 45%;
  left: 7vw;
  width: min(310px, 24vw);
  transform: translateY(-50%);
}

.depth-label__index {
  display: block;
  margin-bottom: 16px;
  font-size: var(--font-min);
}

.depth-label--left h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(28px, 2.25vw, 34px);
  font-weight: 400;
  letter-spacing: -0.06em;
  line-height: 1.08;
  white-space: pre-line;
  text-transform: none;
}

.depth-label--left h1.depth-title--compact {
  font-size: inherit;
}

.depth-label--left p {
  margin: 16px 0 18px;
  font-family: var(--serif);
  font-size: clamp(16px, 1.25vw, 18px);
  letter-spacing: 0.03em;
  line-height: 1.7;
  text-transform: none;
}

.depth-label__chip {
  display: block;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: var(--depth-blob-1);
  transition: background 280ms ease;
}

.depth-label--right {
  top: 44%;
  right: 7vw;
  display: grid;
  width: min(250px, 19vw);
  margin: 0;
  gap: 6px;
  transform: translateY(-50%);
}

.depth-label--right > div {
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 14px;
}

.depth-label--right dt,
.depth-label--right dd {
  margin: 0;
}

.depth-label--right dt {
  opacity: 0.56;
}

.depth-progress {
  position: absolute;
  z-index: 7;
  right: 28px;
  bottom: 28px;
  left: 28px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  font-size: var(--font-min);
  letter-spacing: 0.12em;
}

.depth-progress i {
  position: relative;
  height: 1px;
  overflow: hidden;
  background: rgba(22, 24, 21, 0.22);
}

.depth-progress b {
  position: absolute;
  inset: 0;
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: left;
}

.depth-instruction,
.depth-continue {
  position: absolute;
  z-index: 7;
  bottom: 48px;
  margin: 0;
  font-size: var(--font-min);
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.depth-instruction {
  left: 28px;
}

.depth-instruction span {
  font-weight: 700;
}

.depth-continue {
  right: 28px;
  padding-bottom: 5px;
  border-bottom: 1px solid currentColor;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 450ms ease, transform 550ms var(--ease-out);
}

.depth-gallery.is-at-end .depth-continue {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.depth-gallery.is-at-end .depth-instruction {
  opacity: 0.35;
}

@media (max-width: 760px) {
  .depth-stage {
    perspective: 780px;
  }

  .depth-plane {
    width: min(68vw, 300px);
  }

  .depth-plane--landscape {
    width: min(82vw, 360px);
  }

  .depth-label--left {
    top: auto;
    right: 18px;
    bottom: 86px;
    left: 18px;
    width: auto;
    transform: none;
  }

  .depth-label__index {
    margin-bottom: 8px;
  }

  .depth-label--left h1 {
    max-width: 330px;
    font-size: clamp(27px, 8vw, 32px);
    line-height: 1.1;
  }

  .depth-label--left h1.depth-title--compact {
    font-size: inherit;
  }

  .depth-label--left p {
    max-width: 290px;
    margin: 8px 0 12px;
    font-size: var(--font-min);
  }

  .depth-label--right {
    display: none;
  }

  .depth-instruction,
  .depth-continue {
    bottom: 55px;
    font-size: var(--font-min);
  }

  .depth-instruction {
    left: 18px;
  }

  .depth-continue {
    right: auto;
    bottom: 50px;
    left: 50%;
    width: max-content;
    max-width: calc(100% - 36px);
    text-align: center;
    white-space: nowrap;
    transform: translate(-50%, 8px);
  }

  .depth-gallery.is-at-end .depth-continue {
    transform: translate(-50%, 0);
  }

  .depth-gallery.is-at-end .depth-instruction {
    visibility: hidden;
    opacity: 0;
  }

  .depth-progress {
    right: 18px;
    bottom: 22px;
    left: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .depth-trail {
    display: none;
  }

  .depth-plane {
    will-change: auto;
  }
}

/* Fen Share Healing Studies — course story after the individual result. */
.healing-course {
  --course-ink: #15372d;
  --course-cream: #eee9df;
  --course-sage: #c7d2c5;
  background: var(--course-cream);
  color: var(--course-ink);
}

.healing-course [data-course-reveal] {
  opacity: 0;
  transform: translateY(42px);
  transition:
    opacity 900ms ease,
    transform 1100ms var(--ease-out);
}

.healing-course [data-course-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.healing-course__eyebrow {
  margin: 0 0 24px;
  font-size: var(--font-min);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.healing-course__opening,
.healing-course__aroma,
.healing-course__growth,
.healing-course__reasons,
.healing-course__impact,
.healing-course__social-oil,
.healing-course__plans,
.healing-course__closing {
  padding-right: clamp(24px, 6vw, 92px);
  padding-left: clamp(24px, 6vw, 92px);
}

.healing-course__opening {
  display: grid;
  min-height: 100svh;
  grid-template-columns: minmax(72px, 0.25fr) minmax(0, 1.75fr);
  gap: clamp(28px, 6vw, 100px);
  padding-top: clamp(110px, 13vw, 190px);
  padding-bottom: clamp(110px, 13vw, 190px);
  border-bottom: 1px solid rgba(21, 55, 45, 0.22);
  background:
    radial-gradient(circle at 84% 18%, color-mix(in srgb, var(--result-accent) 24%, transparent), transparent 27%),
    var(--course-cream);
}

.healing-course__number {
  padding-top: 12px;
  border-top: 1px solid currentColor;
  font-size: var(--font-min);
  letter-spacing: 0.14em;
}

.healing-course__opening-copy h2 {
  max-width: 1280px;
  margin: 0;
  font-size: clamp(50px, 4.25vw, 66px);
  letter-spacing: -0.065em;
}

.healing-course__mobile-title {
  display: none;
}

.healing-course__lead {
  display: grid;
  max-width: 1120px;
  margin-top: clamp(60px, 8vw, 118px);
  margin-left: auto;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid currentColor;
}

.healing-course__lead p {
  margin: 0;
  padding: 24px clamp(18px, 2.4vw, 38px) 0 0;
  font-size: clamp(14px, 1.15vw, 17px);
}

.healing-course__lead p + p {
  padding-left: clamp(18px, 2.4vw, 38px);
  border-left: 1px solid rgba(21, 55, 45, 0.22);
}

.healing-course__jump {
  display: inline-flex;
  min-width: min(100%, 300px);
  justify-content: space-between;
  margin-top: 58px;
  margin-left: auto;
  padding: 16px 0;
  border-bottom: 1px solid currentColor;
  font-size: var(--font-min);
  letter-spacing: 0.06em;
}

.healing-course__aroma {
  display: grid;
  grid-template-columns: minmax(340px, 0.86fr) minmax(430px, 1.14fr);
  align-items: start;
  gap: clamp(60px, 10vw, 160px);
  padding-top: clamp(120px, 16vw, 240px);
  padding-bottom: clamp(120px, 16vw, 240px);
}

.healing-course__window {
  position: sticky;
  top: 72px;
  overflow: hidden;
  margin: 0;
  border-radius: 48% 48% 18px 18px;
  background: var(--course-sage);
}

.healing-course__window img {
  display: block;
  width: 100%;
  aspect-ratio: 0.78;
  object-fit: cover;
  filter: saturate(0.82) contrast(0.96);
  transition: transform 1200ms var(--ease-out);
}

.healing-course__window:hover img {
  transform: scale(1.035);
}

.healing-course__window figcaption {
  position: absolute;
  right: 22px;
  bottom: 20px;
  left: 22px;
  padding-top: 12px;
  border-top: 1px solid rgba(238, 233, 223, 0.62);
  color: #f5f2ea;
  font-size: var(--font-min);
}

.healing-course__aroma-copy {
  padding-top: clamp(0px, 4vw, 60px);
}

.healing-course__aroma-copy h2,
.healing-course__reasons > header h2,
.healing-course__plans > header h2,
.healing-course__closing h2 {
  margin: 0;
  font-size: clamp(44px, 5.4vw, 78px);
  letter-spacing: -0.055em;
}

.healing-course__aroma-copy h2 {
  font-size: clamp(40px, 3.2vw, 48px);
}

.healing-course__reasons > header h2 {
  font-size: clamp(36px, 2.7vw, 42px);
}

.healing-course__aroma-copy h3 {
  margin: clamp(58px, 7vw, 96px) 0 18px;
  font-size: clamp(22px, 2vw, 30px);
}

.healing-course__aroma-copy > p:not(.healing-course__eyebrow) {
  max-width: 680px;
  margin: 0 0 16px;
  font-size: clamp(16px, 1.4vw, 20px);
}

.healing-course__outcomes {
  margin: clamp(50px, 6vw, 82px) 0 0;
  padding: 0;
  border-top: 1px solid currentColor;
  list-style: none;
}

.healing-course__outcomes li {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 16px;
  padding: 19px 0;
  border-bottom: 1px solid rgba(21, 55, 45, 0.23);
  font-size: clamp(15px, 1.25vw, 18px);
}

.healing-course__outcomes span {
  font-size: var(--font-min);
  letter-spacing: 0.12em;
  opacity: 0.58;
}

.healing-course__growth {
  padding-top: clamp(120px, 15vw, 220px);
  padding-bottom: clamp(120px, 15vw, 220px);
  background: #ece9df;
}

.healing-course__growth > header {
  display: grid;
  grid-template-columns: minmax(220px, 0.55fr) minmax(520px, 1.45fr);
  align-items: end;
  column-gap: clamp(50px, 9vw, 150px);
}

.healing-course__growth > header .healing-course__eyebrow {
  align-self: start;
}

.healing-course__growth > header h2 {
  margin: 0;
  font-size: clamp(44px, 5.3vw, 76px);
  letter-spacing: -0.055em;
}

.healing-course__growth > header > p:last-child {
  max-width: 720px;
  margin: 42px 0 0;
  grid-column: 2;
  font-size: clamp(16px, 1.35vw, 19px);
}

.healing-course__growth-grid {
  display: grid;
  margin-top: clamp(72px, 9vw, 132px);
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
}

.healing-course__growth-grid article {
  min-height: 390px;
  padding: 30px clamp(22px, 3vw, 44px) 38px 0;
}

.healing-course__growth-grid article + article {
  padding-left: clamp(22px, 3vw, 44px);
  border-left: 1px solid rgba(21, 55, 45, 0.22);
}

.healing-course__growth-grid article > span,
.healing-course__growth-grid article > p:nth-of-type(1) {
  font-size: var(--font-min);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.healing-course__growth-grid article > p:nth-of-type(1) {
  margin: 66px 0 10px;
  opacity: 0.52;
}

.healing-course__growth-grid h3 {
  margin: 0 0 24px;
  font-size: clamp(28px, 3vw, 44px);
  letter-spacing: -0.04em;
}

.healing-course__growth-grid article > p:last-child {
  max-width: 390px;
  margin: 0;
  font-size: 15px;
  opacity: 0.72;
}

.healing-course__growth-image {
  position: relative;
  overflow: hidden;
  height: min(68vw, 760px);
  margin: clamp(70px, 9vw, 130px) 0 0;
  border-radius: 46% 46% 18px 18px;
}

.healing-course__growth-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 46%;
  filter: saturate(0.78) contrast(0.96);
}

.healing-course__growth-image::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(11, 37, 30, 0.7));
  content: "";
}

.healing-course__growth-image figcaption {
  position: absolute;
  z-index: 1;
  right: clamp(20px, 4vw, 60px);
  bottom: clamp(22px, 4vw, 58px);
  left: clamp(20px, 4vw, 60px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #f1eee5;
  font-size: clamp(17px, 2vw, 28px);
}

.healing-course__growth-image figcaption i {
  font-style: normal;
  opacity: 0.58;
}

.healing-course__quote {
  display: grid;
  min-height: 82svh;
  place-items: center;
  margin: 0;
  padding: 90px clamp(24px, 6vw, 92px);
  background:
    linear-gradient(rgba(12, 38, 31, 0.78), rgba(12, 38, 31, 0.78)),
    url("assets/intro-scenes/03-healing-growth.webp") center / cover;
  color: #f1eee5;
  text-align: center;
}

.healing-course__quote p {
  max-width: 1100px;
  margin: 0;
  font-size: clamp(38px, 6.2vw, 90px);
  letter-spacing: -0.055em;
}

.healing-course__reasons {
  display: grid;
  grid-template-columns: minmax(300px, 0.82fr) minmax(460px, 1.18fr);
  gap: clamp(60px, 10vw, 170px);
  padding-top: clamp(120px, 16vw, 230px);
  padding-bottom: clamp(120px, 16vw, 230px);
  background: #d7dfd4;
}

.healing-course__reasons > header {
  position: sticky;
  top: 80px;
  align-self: start;
}

.healing-course__reasons > header > p:last-child {
  max-width: 460px;
  margin: 34px 0 0;
  font-size: 16px;
}

.healing-course__reason-list {
  margin: 0;
  padding: 0;
  border-top: 1px solid currentColor;
  list-style: none;
}

.healing-course__reason-list li {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 24px;
  padding: clamp(34px, 4vw, 62px) 0;
  border-bottom: 1px solid rgba(21, 55, 45, 0.24);
}

.healing-course__reason-index {
  padding-top: 7px;
  font-size: var(--font-min);
  letter-spacing: 0.14em;
}

.healing-course__reason-list h3 {
  margin: 0 0 22px;
  font-size: clamp(25px, 2.5vw, 38px);
  letter-spacing: -0.035em;
}

.healing-course__reason-list p {
  max-width: 720px;
  margin: 0 0 12px;
  font-size: clamp(15px, 1.25vw, 18px);
}

.healing-course__impact {
  position: relative;
  display: grid;
  min-height: 100svh;
  grid-template-columns: 1fr 1fr;
  align-content: center;
  gap: clamp(70px, 10vw, 170px);
  overflow: hidden;
  padding-top: clamp(120px, 14vw, 200px);
  padding-bottom: clamp(120px, 14vw, 200px);
  background:
    radial-gradient(circle at 84% 24%, color-mix(in srgb, var(--result-accent) 38%, transparent), transparent 26%),
    #132c25;
  color: #f0eee7;
}

.healing-course__impact::after {
  position: absolute;
  right: -10vw;
  bottom: -20vw;
  width: 46vw;
  aspect-ratio: 1;
  border: 1px solid rgba(240, 238, 231, 0.18);
  border-radius: 50%;
  box-shadow:
    0 0 0 7vw rgba(240, 238, 231, 0.035),
    0 0 0 14vw rgba(240, 238, 231, 0.025);
  content: "";
}

.healing-course__impact-copy,
.healing-course__impact-flow,
.healing-course__impact-note {
  position: relative;
  z-index: 1;
}

.healing-course__impact h2 {
  margin: 0;
  color: color-mix(in srgb, var(--result-accent) 70%, #f0eee7);
  font-size: clamp(52px, 4.6vw, 74px);
  letter-spacing: -0.065em;
}

.healing-course__impact-question {
  margin: 42px 0 18px;
  font-size: clamp(20px, 2vw, 30px);
}

.healing-course__impact-copy > p:last-child {
  max-width: 660px;
  margin: 0;
  font-size: 16px;
  opacity: 0.74;
}

.healing-course__impact-flow {
  display: flex;
  align-self: center;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 30px 0;
  border-top: 1px solid rgba(240, 238, 231, 0.42);
  border-bottom: 1px solid rgba(240, 238, 231, 0.42);
}

.healing-course__impact-flow span {
  font-size: clamp(18px, 2vw, 28px);
}

.healing-course__impact-flow i {
  font-style: normal;
  opacity: 0.44;
}

.healing-course__impact-note {
  grid-column: 2;
  max-width: 660px;
  margin-top: -30px;
}

.healing-course__impact-note p {
  margin: 0 0 18px;
  opacity: 0.72;
}

.healing-course__impact-note strong {
  font-size: clamp(24px, 3vw, 42px);
}

.healing-course__social-oil {
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) minmax(520px, 1.3fr);
  column-gap: clamp(60px, 10vw, 170px);
  padding-top: clamp(120px, 16vw, 230px);
  padding-bottom: clamp(120px, 16vw, 230px);
  background:
    radial-gradient(circle at 15% 20%, rgba(255, 249, 220, 0.62), transparent 24%),
    #d8d1b8;
}

.healing-course__social-oil-number {
  position: relative;
  display: grid;
  align-self: start;
  aspect-ratio: 1;
  place-content: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  text-align: center;
}

.healing-course__social-oil-number::before,
.healing-course__social-oil-number::after {
  position: absolute;
  border: 1px solid rgba(21, 55, 45, 0.22);
  border-radius: 50%;
  content: "";
}

.healing-course__social-oil-number::before {
  inset: 9%;
}

.healing-course__social-oil-number::after {
  inset: 18%;
}

.healing-course__social-oil-number strong,
.healing-course__social-oil-number span {
  position: relative;
  z-index: 1;
}

.healing-course__social-oil-number strong {
  font-size: clamp(92px, 12vw, 176px);
  letter-spacing: -0.08em;
}

.healing-course__social-oil-number span {
  font-size: var(--font-min);
  letter-spacing: 0.15em;
}

.healing-course__social-oil-copy h2 {
  margin: 0;
  font-size: clamp(44px, 5.2vw, 74px);
  letter-spacing: -0.055em;
}

.healing-course__social-oil-copy > p:not(.healing-course__eyebrow) {
  max-width: 760px;
  margin: 20px 0 0;
  font-size: 16px;
}

.healing-course__social-oil-copy .healing-course__social-oil-lead {
  margin-top: clamp(48px, 6vw, 82px);
  font-size: clamp(19px, 1.9vw, 27px);
}

.healing-course__social-oil-flow {
  display: grid;
  margin: clamp(80px, 10vw, 140px) 0 0;
  padding: 0;
  grid-column: 1 / -1;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  list-style: none;
}

.healing-course__social-oil-flow li {
  min-height: 240px;
  padding: 24px clamp(18px, 2.4vw, 34px) 30px 0;
}

.healing-course__social-oil-flow li + li {
  padding-left: clamp(18px, 2.4vw, 34px);
  border-left: 1px solid rgba(21, 55, 45, 0.22);
}

.healing-course__social-oil-flow span,
.healing-course__social-oil-flow small {
  display: block;
  font-size: var(--font-min);
}

.healing-course__social-oil-flow span {
  margin-bottom: 64px;
  letter-spacing: 0.14em;
}

.healing-course__social-oil-flow strong {
  display: block;
  margin-bottom: 10px;
  font-size: clamp(20px, 2vw, 29px);
}

.healing-course__social-oil-flow small {
  opacity: 0.64;
}

.healing-course__social-oil-statement {
  max-width: 900px;
  margin: clamp(80px, 10vw, 140px) 0 0 auto;
  grid-column: 1 / -1;
  font-size: clamp(36px, 5.2vw, 74px);
  letter-spacing: -0.055em;
}

.healing-course__plans {
  padding-top: clamp(120px, 15vw, 220px);
  padding-bottom: clamp(120px, 15vw, 220px);
  background: #d9d2c5;
}

.healing-course__plans > header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-bottom: clamp(68px, 9vw, 130px);
}

.healing-course__plan-grid {
  display: grid;
  grid-template-columns: 1.18fr 0.82fr;
  gap: 14px;
}

.healing-course__plan {
  min-height: 700px;
  padding: clamp(24px, 3vw, 46px);
}

.healing-course__plan--course {
  background: var(--course-ink);
  color: #f0eee7;
}

.healing-course__plan--day {
  display: flex;
  flex-direction: column;
  background: #efebe2;
}

.healing-course__plan-heading {
  display: grid;
  grid-template-columns: 68px 1fr;
  gap: 20px;
  padding-bottom: 28px;
  border-bottom: 1px solid currentColor;
}

.healing-course__plan-heading > span {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 16px;
}

.healing-course__plan-heading p {
  margin: 0 0 4px;
  font-size: var(--font-min);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.64;
}

.healing-course__plan-heading h3 {
  margin: 0;
  font-size: clamp(32px, 4vw, 58px);
  letter-spacing: -0.045em;
}

.healing-course__plan-audience {
  max-width: 700px;
  margin: 34px 0 56px;
  font-size: clamp(16px, 1.5vw, 20px);
  opacity: 0.72;
}

.healing-course__formats {
  margin: 0;
  padding: 0;
  list-style: none;
}

.healing-course__formats li {
  display: grid;
  grid-template-columns: minmax(130px, 0.45fr) minmax(0, 1.55fr);
  gap: 24px;
  padding: 21px 0;
  border-top: 1px solid rgba(240, 238, 231, 0.24);
}

.healing-course__formats strong,
.healing-course__formats span {
  font-size: 14px;
}

.healing-course__formats span {
  opacity: 0.68;
}

.healing-course__plan-cta {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 36px;
  padding: 16px 0;
  border-top: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  font-size: var(--font-min);
  letter-spacing: 0.05em;
  transition: opacity 250ms ease, transform 350ms var(--ease-out);
}

.healing-course__plan-cta:hover,
.healing-course__plan-cta:focus-visible {
  opacity: 0.72;
  transform: translate3d(0, -2px, 0);
}

.healing-course__plan--day .healing-course__plan-cta {
  margin-top: auto;
}

.healing-course__plan--day figure {
  overflow: hidden;
  height: 320px;
  margin: calc(clamp(24px, 3vw, 46px) * -1) calc(clamp(24px, 3vw, 46px) * -1) 38px;
  border-radius: 48% 48% 0 0;
}

.healing-course__plan--day img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.healing-course__plan--day dl {
  margin: auto 0 0;
}

.healing-course__plan--day dl > div {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 18px;
  padding: 18px 0;
  border-top: 1px solid rgba(21, 55, 45, 0.24);
}

.healing-course__plan--day dt,
.healing-course__plan--day dd {
  margin: 0;
  font-size: 14px;
}

.healing-course__plan--day dt {
  opacity: 0.58;
}

.healing-course__closing {
  display: grid;
  min-height: 92svh;
  align-content: center;
  justify-items: center;
  padding-top: 110px;
  padding-bottom: 110px;
  background:
    radial-gradient(circle at 50% 48%, color-mix(in srgb, var(--result-accent) 18%, transparent), transparent 32%),
    #ebe8df;
  text-align: center;
}

.healing-course__closing h2 {
  max-width: 940px;
}

.healing-course__closing > p:nth-of-type(2) {
  max-width: 680px;
  margin: 34px 0 0;
  font-size: clamp(16px, 1.4vw, 20px);
}

.healing-course__closing a {
  display: inline-flex;
  min-width: min(100%, 350px);
  justify-content: space-between;
  margin-top: 48px;
  padding: 18px 22px;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-size: var(--font-min);
}

@media (max-width: 1100px) {
  .healing-course__opening,
  .healing-course__aroma,
  .healing-course__growth,
  .healing-course__reasons,
  .healing-course__impact,
  .healing-course__social-oil,
  .healing-course__plans,
  .healing-course__closing {
    padding-right: 24px;
    padding-left: 24px;
  }

  .healing-course__opening {
    display: block;
    min-height: auto;
    margin-right: -6px;
    margin-left: -6px;
    padding-top: 100px;
    padding-bottom: 104px;
  }

  .healing-course__number {
    width: 100%;
    margin-bottom: 54px;
  }

  .healing-course__opening-copy h2 {
    font-size: clamp(30px, 8.2vw, 33px);
    letter-spacing: -0.07em;
  }

  .healing-course__desktop-title {
    display: none;
  }

  .healing-course__mobile-title {
    display: inline;
  }

  .healing-course__lead {
    display: block;
    margin-top: 68px;
  }

  .healing-course__lead p,
  .healing-course__lead p + p {
    padding: 22px 0;
    border-bottom: 1px solid rgba(21, 55, 45, 0.18);
    border-left: 0;
    font-size: 15px;
  }

  .healing-course__jump {
    width: 100%;
    margin-top: 38px;
  }

  .healing-course__aroma {
    display: flex;
    flex-direction: column;
    gap: 72px;
    padding-top: 100px;
    padding-bottom: 106px;
  }

  .healing-course__window {
    position: relative;
    top: auto;
    width: 100%;
  }

  .healing-course__aroma-copy h2,
  .healing-course__reasons > header h2,
  .healing-course__plans > header h2,
  .healing-course__closing h2 {
    font-size: clamp(38px, 11vw, 48px);
  }

  .healing-course__aroma-copy h2,
  .healing-course__reasons > header h2 {
    font-size: clamp(31px, 8.5vw, 34px);
  }

  .healing-course__aroma-copy h3 {
    margin-top: 52px;
    font-size: 23px;
  }

  .healing-course__aroma-copy > p:not(.healing-course__eyebrow) {
    font-size: 16px;
  }

  .healing-course__outcomes {
    margin-top: 46px;
  }

  .healing-course__outcomes li {
    grid-template-columns: 42px 1fr;
    font-size: 15px;
  }

  .healing-course__growth {
    padding-top: 104px;
    padding-bottom: 112px;
  }

  .healing-course__growth > header {
    display: block;
  }

  .healing-course__growth > header h2 {
    font-size: clamp(35px, 9.5vw, 40px);
  }

  .healing-course__growth > header > p:last-child {
    margin-top: 38px;
    font-size: 16px;
  }

  .healing-course__growth-grid {
    display: block;
    margin-top: 68px;
  }

  .healing-course__growth-grid article,
  .healing-course__growth-grid article + article {
    min-height: auto;
    padding: 26px 0 32px;
    border-bottom: 1px solid rgba(21, 55, 45, 0.22);
    border-left: 0;
  }

  .healing-course__growth-grid article:last-child {
    border-bottom: 0;
  }

  .healing-course__growth-grid article > p:nth-of-type(1) {
    margin-top: 34px;
  }

  .healing-course__growth-grid h3 {
    font-size: 30px;
  }

  .healing-course__growth-image {
    height: 118vw;
    margin-top: 72px;
  }

  .healing-course__growth-image figcaption {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    gap: 6px;
    font-size: 14px;
    text-align: center;
  }

  .healing-course__quote {
    min-height: 72svh;
    padding: 72px 24px;
  }

  .healing-course__quote p {
    font-size: clamp(33px, 10vw, 44px);
  }

  .healing-course__reasons {
    display: block;
    padding-top: 104px;
    padding-bottom: 112px;
  }

  .healing-course__reasons > header {
    position: relative;
    top: auto;
    margin-bottom: 76px;
  }

  .healing-course__reason-list li {
    grid-template-columns: 38px 1fr;
    gap: 12px;
    padding: 34px 0;
  }

  .healing-course__reason-list h3 {
    margin-bottom: 18px;
    font-size: 25px;
  }

  .healing-course__reason-list p {
    font-size: 15px;
  }

  .healing-course__impact {
    display: block;
    min-height: auto;
    padding-top: 108px;
    padding-bottom: 116px;
  }

  .healing-course__impact h2 {
    font-size: clamp(38px, 10.4vw, 44px);
  }

  .healing-course__impact-flow {
    margin-top: 76px;
    gap: 7px;
  }

  .healing-course__impact-flow span {
    font-size: 17px;
  }

  .healing-course__impact-note {
    margin-top: 58px;
  }

  .healing-course__social-oil {
    display: block;
    padding-top: 104px;
    padding-bottom: 112px;
  }

  .healing-course__social-oil-number {
    width: min(78vw, 310px);
    margin: 0 auto 76px;
  }

  .healing-course__social-oil-number strong {
    font-size: 106px;
  }

  .healing-course__social-oil-copy h2 {
    font-size: clamp(36px, 10vw, 42px);
  }

  .healing-course__social-oil-copy .healing-course__social-oil-lead {
    margin-top: 48px;
    font-size: 20px;
  }

  .healing-course__social-oil-flow {
    display: block;
    margin-top: 74px;
  }

  .healing-course__social-oil-flow li,
  .healing-course__social-oil-flow li + li {
    min-height: auto;
    padding: 24px 0 28px;
    border-bottom: 1px solid rgba(21, 55, 45, 0.22);
    border-left: 0;
  }

  .healing-course__social-oil-flow li:last-child {
    border-bottom: 0;
  }

  .healing-course__social-oil-flow span {
    margin-bottom: 28px;
  }

  .healing-course__social-oil-statement {
    margin-top: 76px;
    font-size: clamp(34px, 9.5vw, 40px);
  }

  .healing-course__plans {
    padding-top: 106px;
    padding-bottom: 112px;
  }

  .healing-course__plans > header {
    display: block;
    margin-bottom: 64px;
  }

  .healing-course__plan-grid {
    grid-template-columns: 1fr;
  }

  .healing-course__plan {
    min-height: auto;
    padding: 24px;
  }

  .healing-course__plan-heading {
    grid-template-columns: 50px 1fr;
    gap: 14px;
  }

  .healing-course__plan-heading > span {
    width: 44px;
    height: 44px;
  }

  .healing-course__plan-heading h3 {
    font-size: 32px;
  }

  .healing-course__plan-audience {
    margin-bottom: 42px;
    font-size: 16px;
  }

  .healing-course__formats li {
    display: block;
    padding: 22px 0;
  }

  .healing-course__formats strong,
  .healing-course__formats span {
    display: block;
  }

  .healing-course__formats span {
    margin-top: 7px;
  }

  .healing-course__plan--day {
    min-height: 620px;
  }

  .healing-course__plan--day figure {
    height: 290px;
    margin: -24px -24px 32px;
  }

  .healing-course__closing {
    min-height: 84svh;
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .healing-course__closing a {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .healing-course [data-course-reveal] {
    opacity: 1;
    transform: none;
  }
}

/* Mobile journey: keep imagery above the copy and each question inside one stable viewport. */
@media (max-width: 767px) {
  html {
    scroll-behavior: auto;
  }

  body.quiz-flow-active {
    overscroll-behavior-y: none;
  }

  .depth-gallery__atmosphere {
    filter: none;
    transition: none;
  }

  .depth-stage {
    perspective-origin: 50% 36%;
  }

  .depth-plane {
    width: min(58vw, 246px);
  }

  .depth-plane--landscape {
    width: min(72vw, 304px);
  }

  .depth-trail {
    display: none;
  }

  .depth-label--left {
    bottom: 82px;
    padding-top: 18px;
    background: linear-gradient(180deg, transparent, color-mix(in srgb, var(--depth-bg) 84%, transparent) 28%);
  }

  .depth-label--left h1 {
    max-width: 340px;
    font-size: clamp(26px, 7.4vw, 30px);
  }

  .depth-label--left p {
    max-width: 330px;
    margin-top: 7px;
  }

  .quiz-question {
    height: 100svh;
    min-height: 100svh;
    padding: max(44px, calc(env(safe-area-inset-top) + 24px)) 18px max(16px, env(safe-area-inset-bottom));
    contain: layout paint;
  }

  .quiz-question__index {
    flex: 0 0 auto;
    padding-bottom: 9px;
  }

  .quiz-question__layout {
    display: grid;
    min-height: 0;
    flex: 1;
    align-items: stretch;
    grid-template-columns: 1fr;
    grid-template-rows: auto minmax(0, 1fr);
    gap: clamp(10px, 1.8svh, 15px);
    margin-top: clamp(148px, 26svh, 210px);
  }

  .quiz-question > .quiz-question__window,
  .quiz-question:nth-child(even) > .quiz-question__window,
  .quiz-question:nth-child(3n) > .quiz-question__window {
    top: max(62px, calc(env(safe-area-inset-top) + 48px));
    right: 12px;
    left: auto;
    width: clamp(120px, 38vw, 150px);
    opacity: 0.72;
    transform: rotate(var(--window-turn)) translate3d(0, 0, 0);
  }

  .quiz-question.is-locked > .quiz-question__window {
    transform: rotate(var(--window-turn)) translate3d(0, 0, 0) scale(0.94);
  }

  .quiz-question.is-answered > .quiz-question__window {
    transform: rotate(var(--window-turn)) translate3d(0, 0, 0) scale(1.02);
  }

  .quiz-question__context {
    min-height: 42px;
    max-width: calc(100% - clamp(132px, 40vw, 160px));
    padding: 0;
  }

  .quiz-question__context p,
  .quiz-question__context span {
    display: none;
  }

  .quiz-question__context strong {
    margin: 0;
    font-size: var(--font-min);
    letter-spacing: 0.03em;
  }

  .quiz-question__form,
  .quiz-question__form fieldset {
    min-height: 0;
  }

  .quiz-question__form fieldset {
    display: flex;
    height: 100%;
    flex-direction: column;
  }

  .quiz-question__form legend,
  .quiz-question__form legend.quiz-question__title--compact {
    font-size: clamp(24px, 6.6vw, 27px);
    letter-spacing: -0.045em;
  }

  .quiz-question__hint {
    margin-top: 8px;
    font-size: var(--font-min);
  }

  .quiz-options {
    display: grid;
    margin-top: clamp(10px, 2svh, 16px);
    grid-template-columns: 1fr;
    grid-template-rows: repeat(5, 44px);
  }

  .quiz-option {
    min-height: 42px;
    padding: 7px 4px;
  }

  .quiz-option__text {
    font-size: 15px;
  }

  .quiz-question__status {
    flex: 0 0 auto;
    margin-top: 7px;
  }
}

@media (max-width: 767px) and (max-height: 720px) {
  .quiz-question {
    padding-top: max(28px, calc(env(safe-area-inset-top) + 14px));
    padding-bottom: max(10px, env(safe-area-inset-bottom));
  }

  .quiz-question__index {
    padding-bottom: 6px;
  }

  .quiz-question__layout {
    margin-top: clamp(148px, 26svh, 174px);
  }

  .quiz-question__context {
    min-height: 31px;
  }

  .quiz-question__form legend,
  .quiz-question__form legend.quiz-question__title--compact {
    font-size: clamp(21px, 5.8vw, 24px);
  }

  .quiz-question__hint {
    display: none;
  }

  .quiz-options {
    margin-top: 7px;
    grid-template-rows: repeat(5, 38px);
  }

  .quiz-option {
    min-height: 38px;
    padding-top: 5px;
    padding-bottom: 5px;
  }

  .quiz-question__status {
    margin-top: 4px;
  }
}
