@font-face { font-family: 'General Sans'; src: url('fonts/GeneralSans-400.woff2') format('woff2'); font-weight: 400; font-style: normal; font-display: swap; }
@font-face { font-family: 'General Sans'; src: url('fonts/GeneralSans-500.woff2') format('woff2'); font-weight: 500; font-style: normal; font-display: swap; }
@font-face { font-family: 'General Sans'; src: url('fonts/GeneralSans-600.woff2') format('woff2'); font-weight: 600; font-style: normal; font-display: swap; }
@font-face { font-family: 'Erode'; src: url('fonts/Erode-400.woff2') format('woff2'); font-weight: 400; font-style: normal; font-display: swap; }
@font-face { font-family: 'Erode'; src: url('fonts/Erode-400i.woff2') format('woff2'); font-weight: 400; font-style: italic; font-display: swap; }
@font-face { font-family: 'Erode'; src: url('fonts/Erode-500.woff2') format('woff2'); font-weight: 500; font-style: normal; font-display: swap; }
@font-face { font-family: 'Erode'; src: url('fonts/Erode-500i.woff2') format('woff2'); font-weight: 500; font-style: italic; font-display: swap; }
@font-face { font-family: 'Erode'; src: url('fonts/Erode-600.woff2') format('woff2'); font-weight: 600; font-style: normal; font-display: swap; }

/* ─────────────────────────────────────────────
   SYMPATHYA — Rainforest Hair Elixir
   Paper, ink, gold. Bodoni Moda + Satoshi.
   ───────────────────────────────────────────── */

:root {
  --paper: #f6efdc;
  --paper-deep: #efe6cd;
  --ink: #1d1712;
  --night: #1c1611;
  --bone: #f2ead6;
  --gold: #7d6d14;
  --sand: #c9b393;
  --line: rgba(29, 23, 18, 0.18);
  --serif: "Erode", Georgia, serif;
  --display: var(--serif);
  --sans: "General Sans", -apple-system, "Helvetica Neue", sans-serif;
  --ease-out: cubic-bezier(0.19, 1, 0.22, 1);
  --sp: clamp(5.5rem, 10vh, 8.5rem);
  --gut: 2rem;
  --maxw: 1280px;
  --bg: var(--paper);
  --fg: var(--ink);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: auto; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }

body {
  background: var(--bg);
  -webkit-tap-highlight-color: transparent;
  color: var(--fg);
  font-family: var(--sans);
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.65;
  letter-spacing: 0.005em;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
p, li, blockquote, figcaption { text-wrap: pretty; }
h1, h2, h3 { text-wrap: balance; }
h1, h2, h3 { font-family: var(--serif); font-weight: 500; line-height: 1.06; letter-spacing: -0.01em; }
em { font-style: italic; }
strong { font-weight: 500; }

.mono {
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.8;
}

.u-link { border-bottom: 1px solid var(--line); padding-bottom: 0.1em; transition: border-color 0.4s; }
.u-link:hover { border-color: var(--gold); }

::selection { background: rgba(163, 146, 46, 0.28); }

.skip-link {
  position: fixed; top: 0.8rem; left: 50%; transform: translate(-50%, -300%);
  z-index: 400;
  background: var(--ink); color: var(--paper);
  font-size: 0.8125rem; letter-spacing: 0.1em;
  padding: 0.7em 1.4em; border-radius: 99px;
  transition: transform 0.3s var(--ease-out);
}
.skip-link:focus-visible { transform: translate(-50%, 0); }

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

/* gold droplet micro-glyph, used across labels */
.section-index::before {
  content: ""; display: inline-block;
  width: 7px; height: 10px; margin-right: 0.9em;
  background: linear-gradient(160deg, #cdb954, #8f7d1e);
  border-radius: 50% 50% 50% 50% / 38% 38% 62% 62%;
}
.gold-dot { color: var(--gold); }
.sentence { display: block; }

/* ── Grain ── */
.grain {
  position: fixed; inset: 0;
  pointer-events: none; z-index: 200;
  transform: translateZ(0);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
  opacity: 0.045;
}
@keyframes grain {
  0%, 100% { transform: translate(0, 0); }
  20% { transform: translate(-3%, 2%); }
  40% { transform: translate(2%, -3%); }
  60% { transform: translate(-2%, -2%); }
  80% { transform: translate(3%, 3%); }
}

/* ── Preloader ── */
.preloader {
  position: fixed; inset: 0; z-index: 300;
  background: var(--paper);
  display: flex; align-items: center; justify-content: center;
  transition: clip-path 1.1s var(--ease-out);
  clip-path: inset(0 0 0 0);
}
.preloader.done { clip-path: inset(0 0 100% 0); pointer-events: none; }
.preloader-inner { text-align: center; }
.preloader-mark {
  width: 120px; margin: 0 auto 1rem;
  opacity: 0; transform: translateY(12px);
  animation: fadeUp 1s var(--ease-out) 0.15s forwards;
}
.preloader-line { overflow: hidden; }
.preloader-line span {
  display: inline-block;
  font-size: 0.75rem; font-weight: 500; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--ink); opacity: 0.8;
  transform: translateY(120%);
  animation: riseIn 0.9s var(--ease-out) 0.5s forwards;
}
@keyframes fadeUp { to { opacity: 1; transform: none; } }
@keyframes riseIn { to { transform: none; } }

/* ── Header ── */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: grid; grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 1.4rem 2.5rem;
  transition: transform 0.6s var(--ease-out);
}
.site-header .header-brand { justify-self: start; }
.site-header .header-right { justify-self: end; display: flex; align-items: center; gap: 1.4rem; }
.lang-toggle {
  font-family: var(--sans); font-size: 0.8125rem; font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase;
  background: none; border: none; cursor: pointer;
  color: inherit; opacity: 0.65; padding: 0.2em;
  transition: opacity 0.4s;
}
.lang-toggle:hover { opacity: 1; }
.site-header.hidden { transform: translateY(-110%); }
.site-header.scrolled {
  background: color-mix(in srgb, var(--bg) 80%, transparent);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}
.site-header { will-change: transform; backface-visibility: hidden; }
.header-brand {
  font-family: var(--serif); font-weight: 600;
  font-size: 1.3rem; letter-spacing: 0.01em;
  position: relative;
}
.header-brand::after {
  content: ""; position: absolute; right: 1px; bottom: -6px;
  width: 6px; height: 9px; opacity: 0;
  background: linear-gradient(160deg, #cdb954, #8f7d1e);
  border-radius: 50% 50% 50% 50% / 38% 38% 62% 62%;
}
.header-brand:hover::after { animation: brandDrip 1.1s var(--ease-out); }
@keyframes brandDrip {
  0% { opacity: 0; transform: translateY(0) scale(0.5); }
  30% { opacity: 1; transform: translateY(2px) scale(1); }
  100% { opacity: 0; transform: translateY(20px) scale(1); }
}
.header-nav { display: flex; gap: 2.2rem; }
.header-nav a {
  font-size: 0.8125rem; font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase;
  position: relative; padding-bottom: 0.2em;
}
.header-nav a::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 100%; height: 1px; background: var(--gold);
  transform: scaleX(0); transform-origin: right;
  transition: transform 0.5s var(--ease-out);
}
.header-nav a:hover::after { transform: scaleX(1); transform-origin: left; }
.header-cta {
  font-size: 0.8125rem; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  border: 1px solid var(--fg);
  border-radius: 99px;
  padding: 0.7em 1.6em;
  transition: background 0.45s var(--ease-out), color 0.45s var(--ease-out), border-color 0.9s;
}
.header-cta:hover { background: var(--fg); color: var(--bg); }

/* ── Hero ── */
.hero {
  position: relative; height: 100svh; min-height: 620px;
  display: flex; align-items: center; justify-content: center;
  overflow: clip;
}
.hero-media { position: absolute; inset: -6% 0; }
.hero-media img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 30%;
  transform: scale(1.12);
  animation: heroSettle 2.6s var(--ease-out) 0.9s forwards;
}
@keyframes heroSettle { to { transform: scale(1.02); } }
.hero-veil {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(20,16,13,0.3), rgba(20,16,13,0.06) 32%, rgba(20,16,13,0.12) 62%, rgba(20,16,13,0.52));
}
.hero-content { position: relative; text-align: center; color: var(--bone); padding: 0 1.5rem; }
.hero-kicker { margin-bottom: 1.5rem; }
.hero-kicker span {
  font-family: var(--serif); font-style: italic; font-weight: 400;
  font-size: clamp(1.05rem, 1.6vw, 1.35rem);
  letter-spacing: 0.02em; text-transform: none;
  opacity: 0.92;
}
.hero-kicker .m-drop { width: 0.5em; height: 0.75em; margin: 0 0.5em; vertical-align: -0.06em; }
.hero-title {
  font-family: var(--serif);
  font-size: clamp(3.4rem, 10.5vw, 9.5rem);
  font-weight: 500; color: var(--bone);
  line-height: 0.98; letter-spacing: -0.02em;
  text-shadow: 0 2px 48px rgba(20,16,13,0.4);
}
.hero-title em { font-style: italic; font-weight: 400; }
.hero-title .line { display: block; overflow: clip; padding-bottom: 0.06em; }
.hero-title .line span { display: block; transform: translateY(112%); }
body.loaded .hero-title .line span { animation: riseIn 1.3s var(--ease-out) forwards; }
body.loaded .hero-title .line:nth-child(2) span { animation-delay: 0.12s; }
body.loaded .reveal-line span { animation: riseIn 1.1s var(--ease-out) 0.55s forwards; }
.reveal-line { overflow: clip; }
.reveal-line span { display: inline-block; transform: translateY(120%); }
.hero-foot {
  position: absolute; bottom: 2rem; left: 2.5rem; right: 2.5rem;
  display: grid; grid-template-columns: 1fr auto 1fr;
  align-items: end;
  color: var(--bone);
  font-size: 0.75rem; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase;
}
.hero-foot > p:first-child { justify-self: start; }
.hero-foot > p:last-child { justify-self: end; }

/* The first drop — hangs from a thread, falls as you begin to scroll */
.hero-cue { position: relative; display: flex; flex-direction: column; align-items: center; height: 76px; }
.cue-line { width: 1px; flex: 1; background: rgba(242, 234, 214, 0.35); }
.hero-drop { position: absolute; left: 50%; bottom: -9px; will-change: transform, opacity; }
.hero-drop span {
  display: block; width: 13px; height: 19px; margin-left: -6.5px;
  background: linear-gradient(160deg, #cdb954, #8f7d1e);
  border-radius: 50% 50% 50% 50% / 38% 38% 62% 62%;
  transform-origin: 50% 0;
  animation: dropHang 3.4s ease-in-out infinite;
}
@keyframes dropHang {
  0%, 100% { transform: scale(1, 1); }
  50% { transform: scale(0.94, 1.1); }
}

/* ── Sections shared ── */
section { position: relative; }
.section-index { margin-bottom: 2.5rem; }

/* ── Manifesto ── */
.manifesto {
  max-width: 1120px; margin: 0 auto;
  padding: var(--sp) 2.5rem calc(var(--sp) * 0.8);
  text-align: center;
}
.manifesto-text {
  font-size: clamp(2rem, 4.4vw, 3.6rem);
  font-weight: 500; line-height: 1.18;
}

.manifesto-sub {
  max-width: 30rem; margin: 2.25rem auto 0;
  font-size: 0.8125rem; line-height: 1.55; opacity: 0.88;
}

/* ── Reveal primitives ── */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity 1s var(--ease-out), transform 1.1s var(--ease-out); }
.reveal.in { opacity: 1; transform: none; }
.mask-reveal { opacity: 0; transform: translateY(16px) scale(1.015); transition: opacity 1.2s var(--ease-out), transform 1.4s var(--ease-out); }
.mask-reveal.in { opacity: 1; transform: none; }

/* ── The Drop ── */
.drop-stage {
  position: relative; height: 26vh; min-height: 190px;
  display: flex; justify-content: center;
}
.drop-line {
  width: 1px; height: 100%;
  background: var(--gold);
  transform: scaleY(0); transform-origin: top;
}
.drop-dot {
  position: absolute; top: 0; left: 50%;
  width: 11px; height: 16px; margin-left: -5.5px;
  background: linear-gradient(160deg, #cdb954, #8f7d1e);
  border-radius: 50% 50% 50% 50% / 38% 38% 62% 62%;
  transform: translateY(-20px);
}

/* the landing — oil is viscous: it flattens and spreads, it never splashes */
.landing-line {
  position: absolute; bottom: 0; left: 50%;
  width: 140px; height: 1px; margin-left: -70px;
  background: linear-gradient(90deg, transparent, var(--gold) 22%, var(--gold) 78%, transparent);
  transform: scaleX(0);
  opacity: 0;
}
.drop-stage.landed .drop-dot {
  transform: translateY(calc(var(--land-y, 0px))) scale(1.9, 0.22) !important;
  opacity: 0 !important;
  transition: transform 0.55s var(--ease-out), opacity 0.8s ease 0.3s;
}
.drop-stage.landed .landing-line {
  animation: oilSpread 2.4s var(--ease-out) forwards;
}
@keyframes oilSpread {
  0% { transform: scaleX(0); opacity: 0; }
  12% { opacity: 0.9; }
  55% { transform: scaleX(1); opacity: 0.65; }
  100% { transform: scaleX(1); opacity: 0; }
}

/* ── Progress hairline ── */
.progress-line {
  position: fixed; top: 0; left: 0; right: 0; height: 2px; z-index: 150;
  background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  pointer-events: none;
}

/* ── Orbit badge ── */
.orbit-badge {
  position: fixed; right: 2.2rem; bottom: 2.2rem; z-index: 90;
  width: 104px; height: 104px;
  opacity: 0; transform: scale(0.6); pointer-events: none;
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.orbit-badge.show { opacity: 1; transform: scale(1); pointer-events: auto; }
.orbit-badge svg { width: 100%; height: 100%; overflow: visible; }
.orbit-badge text {
  font-family: var(--sans); font-size: 10.5px; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase;
  fill: var(--fg); transition: fill 1.6s ease;
}
.orbit-mark {
  position: absolute; inset: 50% auto auto 50%;
  width: 34px; transform: translate(-50%, -50%);
  clip-path: inset(0 0 52% 0);
}
@media (max-width: 900px) { .orbit-badge { width: 68px; height: 68px; right: 1rem; bottom: 1rem; } .orbit-badge text { font-size: 11.5px; } .orbit-mark { width: 26px; } }

/* ── What it does: four cards that fit the screen, on shared rows ──
   Subgrid puts every card's photo, number, title, promise and How block on the
   same four lines, so nothing steps out of alignment when a line wraps. */
.benefits { max-width: var(--maxw); margin: 0 auto; padding: 4rem 2.5rem 5rem; }
.benefits-head { padding-bottom: 2.5rem; }
.benefits-sub {
  max-width: 34rem; margin-top: 1.25rem;
  font-size: 0.8125rem; line-height: 1.6; opacity: 0.85;
}
.benefits-title {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(1.8rem, 3.4vw, 2.8rem); line-height: 1.15;
  margin-top: 0.75rem;
}
.benefits-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0 var(--gut);
  grid-template-rows: auto auto auto auto auto;
}
.benefit { display: grid; grid-row: span 5; grid-template-rows: subgrid; row-gap: 0; }
.benefit-img { overflow: clip; margin-bottom: 1.25rem; align-self: start; }
/* the photo drifts right inside its frame as the section passes, which is the parallax */
.benefit-img img {
  width: 100%; aspect-ratio: 1 / 1; object-fit: cover;
  transform: scale(1.16); will-change: transform;
}
.benefit-index { color: var(--gold); opacity: 1; margin-bottom: 0.6rem; }
.benefit h3 { font-size: clamp(1.15rem, 1.6vw, 1.5rem); margin-bottom: 0.6rem; }
.benefit-does {
  font-family: var(--serif); font-size: 0.9375rem; line-height: 1.45;
  padding-bottom: 1.25rem;
}
.benefit-how { border-top: 1px solid var(--line); padding-top: 1rem; align-self: start; }
.benefit-how .ing-k { margin-bottom: 0.5rem; }
.benefit-how p:not(.ing-k):not(.ing-src) { font-size: 0.75rem; line-height: 1.6; opacity: 0.85; }
.benefit-how .ing-src { display: block; margin-top: 0.7rem; opacity: 0.6; }

/* ── The composition: four rows, no accordion to open ── */
.comp {
  max-width: var(--maxw); margin: 0 auto;
  /* the carrier oils are the elixir; the essential oils are drops, so they sit smaller */
  display: grid; grid-template-columns: 1.2fr 0.8fr; gap: var(--gut) clamp(2rem, 5vw, 5rem);
  padding-top: 1rem; align-items: start;
}
.comp-label {
  color: var(--gold); opacity: 1;
  padding-bottom: 1rem; margin-bottom: 1.75rem; border-bottom: 1px solid var(--line);
}
.comp-label span { color: var(--fg); opacity: 0.45; letter-spacing: 0.12em; }
.comp-label span::before { content: "\00b7"; margin: 0 0.7em; }
.comp-row + .comp-row { margin-top: 2rem; }
.comp-name { font-family: var(--serif); font-size: clamp(1.3rem, 2vw, 1.7rem); line-height: 1.1; }
.comp-latin { font-style: italic; text-transform: none; letter-spacing: 0.02em; opacity: 0.55; margin-top: 0.2rem; }
.comp-fact { font-size: 0.8125rem; line-height: 1.6; opacity: 0.85; margin-top: 0.7rem; max-width: 26rem; }
.comp-row .ing-src { display: block; margin-top: 0.5rem; opacity: 0.55; }
/* each group names where its own contents come from */
.comp-origin {
  margin-top: 1.75rem; padding-top: 1rem; border-top: 1px solid var(--line);
  font-family: var(--serif); font-size: 0.9375rem; line-height: 1.45; opacity: 0.9;
}

/* the essential-oil column is a footnote to the oil column, not its equal */
.comp-group--minor .comp-name { font-size: clamp(1rem, 1.35vw, 1.2rem); }
.comp-group--minor .comp-latin { font-size: 0.6875rem; }
.comp-group--minor .comp-fact { font-size: 0.75rem; }
.comp-group--minor .comp-origin { font-size: 0.8125rem; }
.comp-group--minor .comp-row + .comp-row { margin-top: 1.5rem; }

/* ── Science / ingredient index ── */
.science { max-width: var(--maxw); margin: 0 auto; padding: var(--sp) 2.5rem; }
.science-head {
  display: grid; grid-template-columns: repeat(12, 1fr);
  gap: var(--gut); align-items: end;
  margin-bottom: 3rem;
}
.science-title { font-size: clamp(2rem, 4.4vw, 3.6rem); grid-column: 1 / 8; }
.science-vial { grid-column: 8 / 13; align-self: end; }
.science-vial img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; }
.science-vial figcaption { margin-top: 0.75rem; font-size: 0.6875rem; }
.ing-src {
  display: block; margin-top: 0.5rem;
  font-family: var(--sans); font-size: 0.6875rem; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase;
  opacity: 0.5;
}
.ing-study .ing-src { display: block; margin: 0.4rem 0 0; }
.ing-study { font-size: 0.75rem; opacity: 0.7; margin-top: 1.5rem; }
.science-note { margin-top: 2.5rem; opacity: 0.8; font-size: 0.75rem; max-width: 31rem; }

/* ── Origin (dark chapter) ── */
.origin { max-width: var(--maxw); margin: 0 auto; padding: var(--sp) 2.5rem; position: relative; overflow: clip; }

/* spores — slow gold specks rising through the dark chapter */
.spores { display: none; }
.spores i {
  position: absolute; bottom: -2%;
  width: 3px; height: 3px; border-radius: 50%;
  background: var(--gold); opacity: 0;
  animation: spore 17s linear infinite;
}
.spores i:nth-child(1) { left: 12%; animation-delay: 0s; }
.spores i:nth-child(2) { left: 31%; animation-delay: 4.6s; animation-duration: 21s; width: 2px; height: 2px; }
.spores i:nth-child(3) { left: 55%; animation-delay: 9s; }
.spores i:nth-child(4) { left: 74%; animation-delay: 2.4s; animation-duration: 23s; width: 2px; height: 2px; }
.spores i:nth-child(5) { left: 90%; animation-delay: 12.5s; animation-duration: 19s; }
@keyframes spore {
  0% { transform: translate(0, 0); opacity: 0; }
  10% { opacity: 0.38; }
  50% { transform: translate(12px, -46vh); opacity: 0.25; }
  92% { opacity: 0.08; }
  100% { transform: translate(-5px, -88vh); opacity: 0; }
}
.origin-title {
  font-size: clamp(2rem, 4.4vw, 3.6rem);
  font-weight: 400; max-width: 18em; line-height: 1.14;
  margin-bottom: 5rem;
}

.origin-grid {
  display: grid; grid-template-columns: repeat(12, 1fr);
  gap: var(--gut); align-items: start;
}
.origin-grid > .origin-photo:first-child { grid-column: 1 / 5; }
.origin-grid > .origin-copy { grid-column: 6 / 10; }
.origin-grid > .origin-photo.tall { grid-column: 10 / 13; }
.origin-copy { padding-top: 1.5rem; display: flex; flex-direction: column; gap: 1.5rem; }
.origin-copy p { opacity: 0.9; max-width: 28rem; font-size: 0.8125rem; line-height: 1.55; }
.origin-photo img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; }
.origin-photo.tall { margin-top: 5rem; }
.origin-photo.tall img { aspect-ratio: 2 / 3; }
.origin-photo figcaption { margin-top: 0.75rem; font-size: 0.6875rem; position: relative; padding-left: 16px; }
.origin-photo figcaption::before,
.origin-photo figcaption::after {
  content: ""; position: absolute; left: 0; top: 50%;
  width: 6px; height: 6px; margin-top: -3px;
  border-radius: 50%;
}
.origin-photo figcaption::before { background: var(--gold); }
.origin-photo figcaption::after { display: none; }
@keyframes ping {
  0% { transform: scale(1); opacity: 0.8; }
  70%, 100% { transform: scale(3.4); opacity: 0; }
}

/* tellings — retold oral tradition, dark chapter */
.tellings {
  margin-top: calc(var(--sp) * 0.7);
  display: grid; grid-template-columns: repeat(12, 1fr);
  column-gap: var(--gut); row-gap: 3.5rem;
}
.tellings-kicker { grid-column: 1 / -1; margin-bottom: -1rem; }
.telling { max-width: 34rem; margin: 0; }
.telling:nth-of-type(1) { grid-column: 1 / 7; }
.tellings-note { grid-column: 1 / -1; }
.telling p {
  font-family: var(--serif); font-style: italic; font-weight: 400;
  font-size: clamp(1.2rem, 1.7vw, 1.55rem); line-height: 1.55;
}
.telling cite {
  display: block; margin-top: 1rem;
  font-style: normal; opacity: 0.7;
}
.telling cite::before {
  content: ""; display: inline-block;
  width: 6px; height: 9px; margin-right: 0.8em;
  background: linear-gradient(160deg, #cdb954, #8f7d1e);
  border-radius: 50% 50% 50% 50% / 38% 38% 62% 62%;
}
.telling:nth-of-type(2) { grid-column: 6 / 12; }
.telling:nth-of-type(3) { grid-column: 3 / 9; }
.tellings-note { opacity: 0.6; font-size: 0.6875rem; margin-top: 0.5rem; }

/* documentary band inside the dark chapter */
.doc-band {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: var(--gut); margin-top: 4rem;
}
.doc-band img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; }
.doc-band img.focus-high { object-position: center 22%; }
.doc-band figcaption { margin-top: 0.75rem; font-size: 0.6875rem; }

/* ── Ritual ── */
.ritual { max-width: var(--maxw); margin: 0 auto; padding: var(--sp) 2.5rem; }
.ritual-grid {
  display: grid; grid-template-columns: repeat(12, 1fr);
  gap: var(--gut); align-items: center;
}
.ritual-media { grid-column: 1 / 6; }
.ritual-steps { grid-column: 7 / 13; }
.ritual-media img { width: 100%; aspect-ratio: 3 / 4; object-fit: cover; }
.ritual-steps { list-style: none; display: flex; flex-direction: column; }
.ritual-steps li {
  border-top: 1px solid var(--line);
  padding: 2.5rem 0;
  display: grid; grid-template-columns: 4rem 1fr; gap: 1rem;
  position: relative;
}
.ritual-steps li::before {
  content: ""; position: absolute; top: -1px; left: 0;
  width: 100%; height: 1px; background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.8s var(--ease-out);
}
.ritual-steps li:hover::before { transform: scaleX(1); }
.ritual-steps li:last-child { border-bottom: 1px solid var(--line); }
.ritual-steps h3 { font-size: clamp(1.4rem, 2.2vw, 1.9rem); margin-bottom: 0.6rem; grid-column: 2; }
.ritual-steps p { grid-column: 2; opacity: 0.85; max-width: 21rem; font-size: 0.8125rem; line-height: 1.55; }
.ritual-steps .mono {
  grid-row: 1 / span 2; padding-top: 0.4rem; font-size: 0.8125rem;
  color: var(--fg); opacity: 0.35;
  transition: color 0.8s ease, opacity 0.8s ease;
}
.ritual-steps li.lit .mono { color: var(--gold); opacity: 1; }

/* ── Founders ── */
.founders {
  max-width: 1120px; margin: 0 auto;
  padding: calc(var(--sp) * 0.7) 2.5rem var(--sp);
  display: grid; grid-template-columns: repeat(12, 1fr);
  gap: var(--gut); align-items: center;
}
.founders-media { grid-column: 1 / 7; }
.founders-copy { grid-column: 8 / 13; }
.founders-photo img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; }
.founders-photo.inset { width: calc((100% - 2 * var(--gut)) / 3 * 2 + var(--gut)); margin: 1.5rem 0 0 auto; }
.founders-photo.inset figcaption { margin-top: 0.7rem; font-size: 0.65rem; }
.founders-copy p:not(.section-index) {
  font-family: var(--serif);
  font-size: clamp(1.2rem, 1.7vw, 1.5rem);
  line-height: 1.55; font-weight: 500;
}
.founders-copy p + p { margin-top: 1.4rem; }

/* ── Acquire ── */
.acquire { padding: calc(var(--sp) * 0.7) 2.5rem var(--sp); }
.acquire-card {
  max-width: 1120px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  background: var(--paper-deep);
  outline: 1px solid var(--line); outline-offset: -1px;
}
.acquire-media { overflow: clip; }
.acquire-media img { width: 100%; height: 100%; object-fit: cover; }
.acquire-info { padding: 4rem 3.5rem; display: flex; flex-direction: column; justify-content: center; }
.acquire-info h2 { font-size: clamp(1.9rem, 3.2vw, 2.8rem); margin: 0.75rem 0 0.9rem; }
.acquire-desc { opacity: 0.85; max-width: 19rem; font-size: 0.8125rem; line-height: 1.55; }
.acquire-row { display: flex; align-items: center; gap: 2rem; margin-top: 2.5rem; }
.acquire-price { font-family: var(--serif); font-size: 1.75rem; display: flex; align-items: center; gap: 0.55em; }
.acquire-price::before {
  content: ""; width: 10px; height: 15px;
  background: linear-gradient(160deg, #cdb954, #8f7d1e);
  border-radius: 50% 50% 50% 50% / 38% 38% 62% 62%;
}
.acquire-btn {
  font-family: var(--sans); font-size: 0.8rem; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase;
  background: var(--fg); color: var(--bg);
  border: none; border-radius: 99px;
  padding: 1.15em 3em; cursor: pointer;
  transition: transform 0.4s var(--ease-out), background 0.9s, color 0.9s;
}
.acquire-btn:hover { transform: scale(1.04); }
.acquire-btn[disabled] { opacity: 0.85; cursor: default; }
.acquire-btn[disabled]:hover { transform: none; }
.acquire-fine { margin-top: 2rem; }
.acquire-inci { margin-top: 1.5rem; border-top: 1px solid var(--line); padding-top: 1rem; }
.acquire-inci summary {
  cursor: pointer; list-style: none; display: inline-flex; align-items: center; gap: 0.6em;
}
.acquire-inci summary::-webkit-details-marker { display: none; }
.acquire-inci summary::after {
  content: "+"; font-family: var(--serif); font-size: 1.1rem; line-height: 1;
  transition: transform 0.4s var(--ease-out);
}
.acquire-inci[open] summary::after { transform: rotate(45deg); }
.acquire-inci p { font-size: 0.8125rem; line-height: 1.7; opacity: 0.75; margin-top: 0.8rem; max-width: 26rem; }

/* ── Leaf frames: small pictures are cut like leaves, large ones stay rectangular ── */
.frame-leaf {
  border-radius: 96px 6px 96px 6px;
  transition: border-radius 1.2s var(--ease-out);
}
.frame-leaf.mirror { border-radius: 6px 96px 6px 96px; }
@media (hover: hover) {
  .frame-leaf:hover, .frame-leaf.mirror:hover { border-radius: 52px 52px 52px 52px; }
}
@media (max-width: 900px) {
  .frame-leaf, .frame-leaf.mirror { border-radius: 64px 6px 64px 6px; }
}

/* ── Picture details: the image breathes when you approach it ── */
.pic { position: relative; overflow: clip; }
.pic img { transition: transform 1.4s var(--ease-out), opacity 1s var(--ease-out); will-change: transform; }
.pic .pic-alt {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  opacity: 0;
}
.pic::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(200deg, rgba(29,23,18,0.16), rgba(29,23,18,0));
  opacity: 1; transition: opacity 1.2s var(--ease-out);
  pointer-events: none;
}
@media (hover: hover) {
  .pic:hover img { transform: scale(1.025); }
  .pic:hover::after { opacity: 0; }
  .acquire-media:hover .pic-alt { opacity: 1; }
}

/* the link answers with its arrow */
.card-link {
  display: inline-flex; align-items: center; gap: 0.7em;
  margin-top: 1rem; font-size: 0.8125rem;
  border-bottom: 1px solid var(--line); padding-bottom: 0.15em;
  transition: border-color 0.5s var(--ease-out);
}
.card-link .arrow {
  width: 1.1em; height: 1px; background: currentColor;
  position: relative; opacity: 0.6;
  transition: transform 0.6s var(--ease-out), opacity 0.5s;
}
.card-link .arrow::after {
  content: ""; position: absolute; right: 0; top: -2px;
  width: 5px; height: 5px;
  border-top: 1px solid currentColor; border-right: 1px solid currentColor;
  transform: rotate(45deg);
}
.card-link:hover { border-color: var(--gold); }
.card-link:hover .arrow { transform: translateX(5px); opacity: 1; }

.rituals-close {
  max-width: 30rem; margin: calc(var(--sp) * 0.7) auto 0;
  text-align: center; opacity: 0.9;
}
.rituals-close .card-link { display: inline-flex; margin-top: 1.5rem; }

/* ── House landing: principles + ritual cards ── */
.principles {
  max-width: var(--maxw); margin: 0 auto;
  padding: 0 2.5rem var(--sp);
  display: grid; grid-template-columns: repeat(12, 1fr);
  gap: var(--gut);
}
.principle:nth-child(1) { grid-column: 1 / 5; }
.principle:nth-child(2) { grid-column: 5 / 9; }
.principle:nth-child(3) { grid-column: 9 / 13; }
.principle { border-top: 1px solid var(--line); padding-top: 1.5rem; }
.principle .ing-k { margin-bottom: 0.75rem; }
.principle p:last-child { opacity: 0.85; font-size: 0.75rem; line-height: 1.55; max-width: 19rem; }

/* the landing ends here: the drop lands on the only way out */
.enter {
  display: flex; flex-direction: column; align-items: center;
  text-align: center; gap: 0.9rem;
  max-width: 32rem; margin: 0 auto calc(var(--sp) * 0.9);
  padding: clamp(2.25rem, 4vw, 3.25rem) 2rem;
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  transition: border-color 0.7s var(--ease-out);
}
.enter-word {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(2.2rem, 5vw, 3.4rem); line-height: 1;
}
.enter-note { opacity: 0.65; }
.enter .arrow {
  width: 2.6em; height: 1px; background: currentColor;
  position: relative; opacity: 0.5; margin-top: 0.3rem;
  transition: transform 0.7s var(--ease-out), opacity 0.5s;
}
.enter .arrow::after {
  content: ""; position: absolute; right: 0; top: -3px;
  width: 7px; height: 7px;
  border-top: 1px solid currentColor; border-right: 1px solid currentColor;
  transform: rotate(45deg);
}
.enter:hover { border-color: var(--gold); }
.enter:hover .arrow { transform: translateX(8px); opacity: 1; }
.card-num { color: var(--gold); opacity: 1; }

/* what comes next: what it does for you first, the study underneath */
.next { max-width: var(--maxw); margin: 0 auto; padding: 0 2.5rem var(--sp); }
.next-frame { border: 1px solid var(--line); padding: clamp(1.75rem, 3.5vw, 3.25rem); }
.next-frame .section-index { margin-bottom: 1.5rem; }
.next-title {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(1.5rem, 2.8vw, 2.2rem); line-height: 1.2;
  margin-bottom: 2.75rem;
}
.next-intro {
  max-width: 34rem; margin-bottom: 3rem;
  font-size: 0.8125rem; line-height: 1.55; opacity: 0.85;
}
.next-item {
  display: grid; grid-template-columns: minmax(0, 17rem) minmax(0, 34rem);
  gap: clamp(1.5rem, 3.5vw, 3.5rem); align-items: start;
  padding-top: 2.75rem; border-top: 1px solid var(--line);
}
.next-item + .next-item { margin-top: 2.75rem; }
/* the photo holds while the three blocks run past it */
.next-media { position: sticky; top: 6rem; }
.next-media img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; }
.next-body .ing-k { margin-bottom: 0.75rem; }
.next-lead {
  font-family: var(--serif);
  font-size: clamp(1.2rem, 1.9vw, 1.6rem); line-height: 1.35;
  margin-bottom: 2rem; max-width: 26rem;
}
.next-block + .next-block { margin-top: 1.75rem; }
.next-label {
  color: var(--gold); opacity: 1;
  margin-bottom: 0.5rem;
}
.next-block p:not(.next-label):not(.ing-src) {
  font-size: 0.8125rem; line-height: 1.65; opacity: 0.85;
}
.next-body .ing-src { margin-top: 0.7rem; opacity: 0.6; }
.next-more {
  margin-top: 2.25rem; padding-top: 1.75rem; border-top: 1px solid var(--line);
  font-family: var(--serif); font-style: italic; color: var(--gold);
  font-size: clamp(1.05rem, 1.5vw, 1.3rem);
}
.card-claim {
  font-family: var(--serif);
  font-size: clamp(0.95rem, 1.2vw, 1.125rem);
  line-height: 1.45;
  margin-bottom: 0.75rem;
  max-width: 20rem;
}
.card-desc { opacity: 0.85; max-width: 20rem; font-size: 0.8125rem; line-height: 1.55; }
.card-effect { margin-top: 1.25rem; }
.card-effect .ing-k { margin-bottom: 0.3rem; }
.card-effect p:last-child { font-size: 0.8125rem; line-height: 1.55; opacity: 0.85; max-width: 20rem; }
.card-status { margin-top: 1.25rem; color: var(--gold); opacity: 1; }

/* ── Footer ── */
.site-footer { padding-top: 4rem; }
.m-drop {
  display: inline-block; width: 0.14em; height: 0.21em;
  margin: 0 0.4em; vertical-align: 0.12em;
  background: linear-gradient(160deg, #cdb954, #8f7d1e);
  border-radius: 50% 50% 50% 50% / 38% 38% 62% 62%;
}
/* the marquee used to draw this line, the footer draws its own now */
.footer-grid {
  border-top: 1px solid var(--line);
  max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 3rem; align-items: start;
  padding: 4.5rem 2.5rem 3rem;
}
.footer-mark { width: 84px; filter: none; }
.footer-nav, .footer-contact, .footer-legal { display: flex; flex-direction: column; gap: 0.7rem; align-items: flex-start; }
.footer-nav a { font-size: 0.8125rem; opacity: 0.85; }
.footer-nav a:hover { opacity: 1; }
.footer-legal { gap: 0.5rem; }
.footer-legal a { opacity: 0.8; }

/* ═══════════ TOUCH ═══════════
   The phone is not a narrow desktop. Targets reach 44px, the veil rests
   lighter because it has no hover to lift it, and nothing hides behind a
   pointer the device does not have. */

.nav-toggle { display: none; }

.nav-panel {
  position: fixed; inset: 0; z-index: 90;
  background: var(--bg);
  padding: calc(6rem + env(safe-area-inset-top)) 1.3rem calc(2rem + env(safe-area-inset-bottom));
  display: flex; flex-direction: column; justify-content: center;
  opacity: 0; visibility: hidden;
  transition: opacity 0.55s var(--ease-out), visibility 0.55s;
}
.nav-panel.open { opacity: 1; visibility: visible; }
/* the header carries the close button, so it cannot stay hidden behind the panel */
body.nav-open .site-header { transform: none; }
.nav-panel-links { display: flex; flex-direction: column; }
.nav-panel-links a {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(1.75rem, 8vw, 2.5rem); line-height: 1;
  padding: 0.5em 0; border-top: 1px solid var(--line);
  opacity: 0; transform: translateY(10px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.nav-panel-links a:last-child { border-bottom: 1px solid var(--line); }
.nav-panel.open .nav-panel-links a { opacity: 1; transform: none; }
.nav-panel.open .nav-panel-links a:nth-child(1) { transition-delay: 0.05s; }
.nav-panel.open .nav-panel-links a:nth-child(2) { transition-delay: 0.10s; }
.nav-panel.open .nav-panel-links a:nth-child(3) { transition-delay: 0.15s; }
.nav-panel.open .nav-panel-links a:nth-child(4) { transition-delay: 0.20s; }
.nav-panel.open .nav-panel-links a:nth-child(5) { transition-delay: 0.25s; }
.nav-panel.open .nav-panel-links a:nth-child(6) { transition-delay: 0.30s; }
.nav-panel-foot {
  display: flex; flex-wrap: wrap; gap: 0 1.5rem;
  margin-top: 2.5rem; opacity: 0;
  transition: opacity 0.7s var(--ease-out) 0.34s;
}
.nav-panel.open .nav-panel-foot { opacity: 0.7; }
.nav-panel-foot a { display: flex; align-items: center; min-height: 44px; }

/* Responsive */
@media (max-width: 900px) {
  .site-header {
    padding: calc(1.1rem + env(safe-area-inset-top)) 1.3rem 1.1rem;
    grid-template-columns: 1fr auto;
  }
  .header-nav { display: none; }
  .nav-toggle {
    display: grid; align-content: center; justify-items: center; gap: 6px;
    width: 44px; height: 44px; margin-right: -0.7rem;
    background: none; border: 0; padding: 0; cursor: pointer; color: inherit;
  }
  .nav-toggle span {
    display: block; width: 21px; height: 1px; background: currentColor;
    transition: transform 0.5s var(--ease-out);
  }
  .nav-toggle[aria-expanded="true"] span:first-child { transform: translateY(3.5px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:last-child { transform: translateY(-3.5px) rotate(-45deg); }
  /* every target the thumb has to find is at least 44px tall */
  .lang-toggle { min-width: 44px; min-height: 44px; margin-right: -0.3rem; }
  /* standalone links get a thumb-sized box; links inside sentences keep their line rhythm */
  .footer-nav a, .footer-legal a, .footer-contact a {
    display: inline-flex; align-items: center; min-height: 44px;
  }
  .footer-nav, .footer-legal, .footer-contact { gap: 0; }
  .header-brand { display: inline-flex; align-items: center; min-height: 44px; }
  .acquire-inci summary { display: flex; align-items: center; min-height: 44px; }
  .skip-link { min-height: 44px; display: flex; align-items: center; }
  .orbit-badge { right: calc(1rem + env(safe-area-inset-right)); bottom: calc(1rem + env(safe-area-inset-bottom)); }
  .footer-grid { padding-bottom: calc(3rem + env(safe-area-inset-bottom)); }
  .header-cta { padding: 0.85em 1.5em; }
  .hero-foot { left: 1.3rem; right: 1.3rem; }
  .manifesto { padding: 7rem 1.3rem 5rem; }
  .benefits { padding: 2rem 1.3rem 4rem; }
  .benefits-head { padding-bottom: 2rem; }
  .benefits-grid { grid-template-columns: 1fr; gap: 2.5rem; grid-template-rows: none; }
  /* one column: the photo shrinks and sits beside the heading so the card stays short */
  .benefit {
    grid-row: auto; grid-template-rows: none;
    grid-template-columns: 5.5rem 1fr; column-gap: 1.25rem;
  }
  .benefit-img { grid-column: 1; grid-row: 1 / 4; margin-bottom: 0; }
  .benefit-index, .benefit h3, .benefit-does { grid-column: 2; }
  .benefit-does { padding-bottom: 1rem; }
  .benefit-how { grid-column: 1 / -1; }
  .comp { grid-template-columns: 1fr; gap: 2.5rem; padding: 0 1.3rem; }
  .science, .origin, .ritual { padding: 5.5rem 1.3rem; }
  .science-head { grid-template-columns: 1fr; gap: 2.5rem; align-items: start; }
  .science-title, .science-vial { grid-column: 1 / -1; }
  .science-vial { max-width: 420px; }
  .origin-grid { grid-template-columns: 1fr; }
  .origin-copy { padding-top: 0; }
  .origin-photo.tall { margin-top: 0; }
  .origin-grid > .origin-photo:first-child, .origin-grid > .origin-copy, .origin-grid > .origin-photo.tall { grid-column: 1 / -1; }
  .origin-photo.tall { margin-top: 0; }
  .doc-band { grid-template-columns: repeat(2, 1fr); gap: 2rem; margin-top: 4rem; }
  .tellings { grid-template-columns: 1fr; row-gap: 3rem; }
  .telling, .telling:nth-of-type(1), .telling:nth-of-type(2), .telling:nth-of-type(3) { grid-column: 1 / -1; }
  .ritual-grid { grid-template-columns: 1fr; gap: 3rem; }
  .ritual-media, .ritual-steps { grid-column: 1 / -1; }
  .ritual-steps li { grid-template-columns: 2.2rem 1fr; }
  .principles { grid-template-columns: 1fr; gap: 2rem; padding: 0 1.3rem 4rem; }
  .principle:nth-child(1), .principle:nth-child(2), .principle:nth-child(3) { grid-column: 1 / -1; }
  .enter { max-width: none; margin-left: 1.3rem; margin-right: 1.3rem; padding: 2.25rem 1rem; }
  .next { padding: 0 1.3rem 4rem; }
  .next-item { grid-template-columns: 1fr; gap: 1.5rem; }
  .next-media { position: static; }
  .next-media img { aspect-ratio: 3 / 2; }
  .founders { grid-template-columns: 1fr; padding: 4rem 1.3rem 6rem; gap: 3rem; }
  .founders-media, .founders-copy { grid-column: 1 / -1; }
  .acquire { padding: 3rem 1.3rem 6rem; }
  .acquire-card { grid-template-columns: 1fr; }
  .acquire-info { padding: 2.5rem 1.6rem 3rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; padding: 3rem 1.3rem 2.5rem; }
}

@media (max-width: 640px) {
  .footer-grid { grid-template-columns: 1fr; gap: 2.4rem; padding: 2.6rem 1.3rem 2.2rem; }
  .footer-mark { width: 64px; }
  .doc-band { grid-template-columns: 1fr; gap: 2.5rem; }
  .founders-photo.inset { width: 72%; }
}

/* ── Static QA mode ── */
html.static .grain, html.static .scroll-cue span { animation: none !important; }
html.static .hero-media img { animation: none !important; transform: scale(1.02); }
html.static .hero-title .line span, html.static .reveal-line span { transform: none !important; animation: none !important; }
html.static .reveal, html.static .mask-reveal { transition: none !important; }
html.static .ritual-steps .mono { color: var(--gold); opacity: 1; }
html.static .manifesto-text .w { filter: none !important; }
html.static .drop-line { transform: scaleY(1); }
html.static .drop-dot { opacity: 0; }
html.static .hero-drop span { animation: none; }
html.static .spores i { animation: none; opacity: 0.35; transform: translateY(-45vh); }
html.static .origin-photo figcaption::after { animation: none; opacity: 0; }
html.static .landing-line { display: none; }
html.static .orbit-badge { opacity: 1; transform: none; pointer-events: auto; transition: none; }

@media (max-width: 640px) {
  .hero-foot { grid-template-columns: 1fr auto; }
  .hero-foot > p:last-child { display: none; }
  .hero-title { font-size: clamp(2.6rem, 12vw, 4rem); }
  .hero-kicker span { font-size: 0.6875rem; letter-spacing: 0.2em; }
  .acquire-fine { font-size: 0.6875rem; letter-spacing: 0.14em; }
}

/* ── No pointer: nothing may hide behind a hover the device cannot perform ── */
@media (hover: none) {
  /* the veil has no hover to lift it, so it rests light instead of dimming every photo */
  .pic::after { opacity: 0.4; }
  /* the second photo cross-fades on hover, so on touch it simply gets its own row */
  .acquire-media { display: grid; grid-template-rows: auto auto; }
  .acquire-media .pic-alt { position: static; opacity: 1; aspect-ratio: 3 / 2; }
  .acquire-media img { height: auto; }
  a:active, button:active { opacity: 0.55; transition: opacity 0.1s; }
}

/* ── Reduced motion ── */
@media (prefers-reduced-motion: reduce) {
  .grain, .scroll-cue span { animation: none !important; }
  .hero-media img { animation: none !important; transform: scale(1.02); }
  .reveal, .mask-reveal, .mask-reveal img,
  .hero-title .line span, .reveal-line span { transition: none !important; transform: none !important; opacity: 1 !important; clip-path: none !important; animation: none !important; }
  .manifesto-text .w, .origin-title .w { opacity: 1; filter: none !important; }
  .spores i, .origin-photo figcaption::after, .header-brand::after { animation: none !important; }
  .ritual-steps li::before { transition: none; }
  .benefit-img img { transform: none !important; }
}

