/* ============================================================
   NutraHealth Score — cinematic landing
   Editorial system from nutrahealthscore.com:
   Cormorant Garamond (display ≥20px) + Hanken Grotesk (body/UI)
   Cream carries the page · forest = dark chapters · lime = ring + CTA only
   ============================================================ */

:root {
  --cream: #f1ecdf;
  --cream-2: #ebe5d4;
  --paper: #f7f4ec;
  --line: #ddd6c4;
  --ink: #20201b;
  --ink-2: #3c3d34;
  --muted: #6a6c5d;
  --forest: #1c4a2b;
  --forest-deep: #143620;
  --night: #0c2015;
  --lime: #a7ce3f;
  --lime-ink: #2a3d10;
  --gold: #d9c694;
  --ivory: #f3efe2;
  --ivory-dim: rgba(243, 239, 226, .68);
  --r-md: 14px;
  --r-lg: 22px;
  --r-pill: 999px;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Hanken Grotesk', system-ui, -apple-system, sans-serif;
  --maxw: 1240px;
  --pad: clamp(20px, 5vw, 64px);
}

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

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

body {
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.01em;
}

h2 { font-size: clamp(2.1rem, 4.5vw, 3.6rem); }

a { color: inherit; }

.container { max-width: var(--maxw); margin: 0 auto; padding-left: var(--pad); padding-right: var(--pad); }
.container--narrow { max-width: 880px; }

/* ---------- shared bits ---------- */

.eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 18px;
}
.eyebrow::before {
  content: "";
  display: inline-block;
  width: 26px;
  height: 1px;
  background: var(--gold);
  vertical-align: middle;
  margin-right: 12px;
}
.eyebrow--dark { color: var(--ivory-dim); }

.btn {
  display: inline-block;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-decoration: none;
  border-radius: var(--r-pill);
  padding: 15px 30px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease, background-color .25s ease, color .25s ease;
}
.btn--lime {
  background: var(--lime);
  color: var(--lime-ink);
}
.btn--lime:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(167, 206, 63, .35); }
.btn--ghost {
  color: var(--ivory);
  border-color: rgba(243, 239, 226, .35);
}
.btn--ghost:hover { border-color: var(--ivory); }

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

/* motion-gated initial states (JS animates these back in) */
html.motion [data-reveal] { opacity: 0; transform: translateY(26px); }
html.motion .hero__title { visibility: hidden; }
html.motion .ring--hero .ring__arc,
html.motion .ring--hero .ring__glow { stroke-dasharray: 0 100; }

/* ---------- nav ---------- */

.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px var(--pad);
  transition: background-color .35s ease, box-shadow .35s ease;
}
.nav__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ivory);
  transition: color .35s ease;
}
.nav__brand img { border-radius: 8px; }
.nav__cta { padding: 11px 22px; font-size: 13px; }
.nav.is-solid {
  background: rgba(241, 236, 223, .92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--line);
}
.nav.is-solid .nav__brand { color: var(--ink); }

/* ---------- grain on dark chapters ---------- */

.hero::after, .evidence::after, .finale::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .06;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='0.55'/%3E%3C/svg%3E");
  z-index: 2;
}

/* ============================================================
   1 · HERO
   ============================================================ */

.hero {
  position: relative;
  min-height: 100svh;
  background: var(--night);
  color: var(--ivory);
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  padding: 110px var(--pad) 64px;
}
.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .55;
  z-index: 0;
}
.hero__scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse 90% 70% at 72% 42%, rgba(12, 32, 21, 0) 0%, rgba(12, 32, 21, .55) 68%, rgba(12, 32, 21, .9) 100%),
    linear-gradient(to bottom, rgba(12, 32, 21, .45), rgba(12, 32, 21, .1) 30%, rgba(12, 32, 21, .55) 100%);
}
.hero__inner {
  position: relative;
  z-index: 3;
  max-width: var(--maxw);
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
  align-items: center;
  gap: clamp(32px, 6vw, 80px);
}
.hero__title {
  font-size: clamp(3rem, 7.5vw, 6.8rem);
  font-weight: 400;
  line-height: 1.02;
  margin: 18px 0 26px;
}
.hero__lede {
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  line-height: 1.6;
  color: var(--ivory-dim);
  max-width: 46ch;
  margin-bottom: 34px;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.hero__trust {
  margin-top: 22px;
  font-size: 13.5px;
  color: rgba(243, 239, 226, .55);
}
.hero__caption {
  position: relative;
  z-index: 3;
  text-align: center;
  font-size: 11.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(243, 239, 226, .4);
  margin-top: 42px;
}
.hero__cue {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  font-size: 10.5px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(243, 239, 226, .5);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.hero__cue span {
  width: 1px;
  height: 34px;
  background: linear-gradient(to bottom, transparent, var(--gold));
}
html.motion .hero__cue span { animation: cue 2.4s ease-in-out infinite; }
@keyframes cue {
  0%, 100% { transform: scaleY(.4); opacity: .4; transform-origin: top; }
  50% { transform: scaleY(1); opacity: 1; transform-origin: top; }
}

/* ---------- rings ---------- */

.hero__ringwrap, .living__ringwrap, .bioage__ringwrap {
  position: relative;
  width: min(100%, 460px);
  margin-inline: auto;
}
.ring { width: 100%; height: auto; }
.ring circle { fill: none; }

.ring__ticks {
  stroke: var(--ivory);
  stroke-width: 1.8;
  stroke-dasharray: 0.55 4.45; /* 20 calendar ticks */
  opacity: .55;
  transform-origin: 50% 50%;
}
/* ticks rotation is GSAP-driven (reacts to scroll velocity) */

.ring__track { stroke: rgba(243, 239, 226, .13); stroke-width: 1.5; }
.ring__track--light { stroke: rgba(32, 32, 27, .1); }

.ring__arc, .ring__glow {
  stroke: var(--lime);
  stroke-linecap: round;
  stroke-dasharray: 84 16; /* sample score 84 — JS animates the draw */
  stroke-dashoffset: 0;
  transform: rotate(-90deg);
  transform-origin: 50% 50%;
}
.ring__arc { stroke-width: 2.6; }
.ring__glow { stroke-width: 8; opacity: .28; filter: blur(6px); }

.ring__center {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 2px;
}
.ring__num {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(4.6rem, 9vw, 7.4rem);
  line-height: 1;
  color: var(--ivory);
  font-variant-numeric: tabular-nums;
}
.ring__num--ink { color: var(--ink); }
.ring__num--md { font-size: clamp(3.2rem, 6vw, 4.6rem); }
.ring__label {
  font-size: 11px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(243, 239, 226, .55);
}
.ring__label--ink { color: var(--muted); }

.ring__legend {
  display: flex;
  justify-content: center;
  gap: 26px;
  margin-top: 20px;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(243, 239, 226, .55);
}
.ring__key::before {
  content: "";
  display: inline-block;
  width: 22px;
  height: 2px;
  border-radius: 2px;
  vertical-align: middle;
  margin-right: 8px;
}
.ring__key--ivory::before { background: var(--ivory); opacity: .6; }
.ring__key--lime::before { background: var(--lime); box-shadow: 0 0 8px rgba(167, 206, 63, .8); }

/* ============================================================
   2 · STATS BAND
   ============================================================ */

.stats {
  background: var(--forest-deep);
  color: var(--ivory);
  padding: clamp(56px, 8vw, 96px) var(--pad);
}
.stats__grid {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(24px, 4vw, 56px);
}
.stats__tile { border-top: 1px solid rgba(217, 198, 148, .35); padding-top: 22px; }
.stats__num {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2.6rem, 4.5vw, 4rem);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.stats__tile dd {
  margin-top: 10px;
  font-size: 14.5px;
  color: var(--ivory-dim);
  max-width: 22ch;
}
.stats__note {
  max-width: var(--maxw);
  margin: 40px auto 0;
  font-size: 12.5px;
  color: rgba(243, 239, 226, .45);
}

/* ============================================================
   3 · CATEGORY REJECTION
   ============================================================ */

.reject { padding: clamp(90px, 13vw, 170px) 0; background: var(--cream); }
.reject__title { font-size: clamp(2.6rem, 6vw, 4.8rem); margin-bottom: 34px; }
.reject__body { display: grid; gap: 18px; max-width: 62ch; font-size: clamp(1.02rem, 1.25vw, 1.15rem); color: var(--ink-2); }
.pullquote {
  margin-top: clamp(48px, 6vw, 80px);
  padding-top: 34px;
  border-top: 1px solid var(--gold);
  max-width: 30ch;
}
.pullquote p {
  font-family: var(--serif);
  font-size: clamp(1.7rem, 3.4vw, 2.7rem);
  line-height: 1.2;
  color: var(--forest);
}

/* ============================================================
   4 · THE LIVING NUMBER
   ============================================================ */

.living { background: var(--paper); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.living__stage {
  max-width: var(--maxw);
  margin: 0 auto;
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: clamp(32px, 6vw, 90px);
  padding: clamp(70px, 9vw, 110px) var(--pad);
}
.living__arc {
  fill: none;
  stroke: var(--lime);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-dasharray: 0 100; /* each quarter draws to "22 100" */
}
.living__lede { color: var(--muted); margin: 18px 0 8px; max-width: 46ch; }
.living__pillars { list-style: none; margin-top: 26px; }
.living__pillar {
  display: grid;
  gap: 3px;
  padding: 18px 0 18px 22px;
  border-left: 2px solid var(--line);
  transition: border-color .3s ease, opacity .3s ease;
}
html.motion .living__pillar { opacity: .38; }
.living__pillar.is-active { opacity: 1; border-left-color: var(--lime); }
.living__pillar strong { font-size: 1.05rem; font-weight: 700; letter-spacing: 0.01em; }
.living__pillar span { color: var(--muted); font-size: 15.5px; }
.living__close {
  margin-top: 30px;
  font-family: var(--serif);
  font-size: clamp(1.3rem, 2vw, 1.7rem);
  color: var(--forest);
}

/* ============================================================
   5 · SPREADS
   ============================================================ */

.spreads { background: var(--cream); padding: clamp(40px, 6vw, 90px) 0; }
.spread {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(48px, 7vw, 100px) var(--pad);
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  gap: clamp(30px, 6vw, 90px);
  align-items: center;
}
.spread--flip .spread__media { order: 2; }
.spread__media {
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 3 / 4;
  max-height: 620px;
}
.spread__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform-origin: center;
}
.spread__media--labs img { object-position: center 78%; } /* crop out the red glass top corner */
.spread__title { font-size: clamp(2.4rem, 5vw, 4.2rem); margin-bottom: 22px; }
.spread__body { color: var(--ink-2); max-width: 52ch; font-size: clamp(1.02rem, 1.25vw, 1.15rem); }
.spread__source {
  margin-top: 26px;
  padding-top: 16px;
  border-top: 1px solid var(--gold);
  max-width: 52ch;
  font-size: 12.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ============================================================
   6 · PACE OF AGING
   ============================================================ */

.bioage { background: var(--cream-2); border-top: 1px solid var(--line); }
.bioage__grid {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(90px, 12vw, 150px) var(--pad);
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: clamp(36px, 6vw, 90px);
  align-items: center;
}
.bio-seg {
  fill: none;
  stroke: var(--forest);
  stroke-width: 3.4;
  stroke-linecap: butt;
}
.bio-seg--opt { stroke: var(--gold); opacity: .8; }
.bioage__copy h2 { margin-bottom: 22px; }
.bioage__copy > p { max-width: 56ch; color: var(--ink-2); }
.bioage__copy em { font-style: italic; font-weight: 600; }
.bioage__modules {
  margin-top: 28px;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--forest);
  font-weight: 600;
}
.bioage__modules span { color: var(--muted); font-weight: 400; text-transform: none; letter-spacing: 0; }
.bioage__note {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--gold);
  font-size: 14px;
  color: var(--muted);
  max-width: 52ch;
}

/* ============================================================
   7 · EVIDENCE + FATCORE
   ============================================================ */

.evidence {
  position: relative;
  background: var(--forest-deep);
  color: var(--ivory);
  padding: clamp(100px, 13vw, 180px) 0;
  overflow: hidden;
}
.evidence__halo {
  position: absolute;
  top: -10%;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 700px;
  background: radial-gradient(ellipse at center, rgba(217, 198, 148, .14) 0%, rgba(217, 198, 148, 0) 62%);
  pointer-events: none;
}
.evidence__inner { position: relative; z-index: 3; text-align: center; }
.evidence__inner .eyebrow::before { background: var(--gold); }
.evidence__title { font-size: clamp(2.6rem, 5.5vw, 4.6rem); margin-bottom: 26px; }
.evidence__body { max-width: 58ch; margin: 0 auto; color: var(--ivory-dim); }
.evidence__chips {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 40px auto 0;
  max-width: 700px;
}
.evidence__chips li {
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(243, 239, 226, .85);
  border: 1px solid rgba(217, 198, 148, .4);
  border-radius: var(--r-pill);
  padding: 9px 18px;
}
.evidence__honesty {
  margin: 36px auto 0;
  max-width: 44ch;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.25rem, 2vw, 1.6rem);
  line-height: 1.4;
  color: var(--gold);
}
.fatcore {
  margin: clamp(60px, 8vw, 90px) auto 0;
  max-width: 560px;
  border: 1px solid rgba(217, 198, 148, .45);
  border-radius: var(--r-lg);
  padding: 34px 38px;
  text-align: left;
  background: rgba(12, 32, 21, .35);
}
.fatcore__name {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.fatcore__teaser { color: var(--ivory-dim); font-size: 15.5px; }

/* ============================================================
   8 · VOICES
   ============================================================ */

.voices { background: var(--cream); padding: clamp(90px, 12vw, 150px) 0; }
.voices h2 { margin-bottom: 40px; }
.voices__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(18px, 2.5vw, 28px);
}
.voices__card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 30px 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.voices__card p {
  font-family: var(--serif);
  font-size: 1.3rem;
  line-height: 1.4;
  color: var(--ink-2);
}
.voices__card footer {
  margin-top: auto;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
.voices__caption { margin-top: 26px; font-size: 12.5px; color: var(--muted); }

/* ============================================================
   9 · FINALE + FOOTER
   ============================================================ */

.finale {
  position: relative;
  background: var(--night);
  color: var(--ivory);
  overflow: hidden;
  padding: clamp(110px, 14vw, 190px) var(--pad) 0;
}
.finale__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .4;
}
.finale__scrim {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 30%, rgba(12, 32, 21, .1), rgba(12, 32, 21, .88) 75%);
}
.finale__inner {
  position: relative;
  z-index: 3;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.finale__ringwrap { width: min(46vw, 300px); margin: 0 auto 40px; }
.finale__arc, .finale__arcglow { stroke-dasharray: 0 100; } /* closes to full on scroll */
.finale__title { font-size: clamp(2.6rem, 6vw, 4.8rem); line-height: 1.08; }
.finale__sub {
  margin: 24px auto 44px;
  color: var(--ivory-dim);
  font-size: clamp(1.02rem, 1.3vw, 1.2rem);
  max-width: 44ch;
}
.finale__label {
  display: block;
  font-family: var(--serif);
  font-size: 1.5rem;
  margin-bottom: 18px;
}
.finale__row {
  display: flex;
  gap: 12px;
  max-width: 520px;
  margin: 0 auto;
}
.finale__row input {
  flex: 1;
  min-width: 0;
  font-family: var(--sans);
  font-size: 15.5px;
  color: var(--ivory);
  background: rgba(243, 239, 226, .07);
  border: 1px solid rgba(243, 239, 226, .3);
  border-radius: var(--r-pill);
  padding: 15px 24px;
}
.finale__row input::placeholder { color: rgba(243, 239, 226, .4); }
.finale__row input:focus { outline: 2px solid var(--lime); outline-offset: 2px; }
.finale__reassure { margin-top: 18px; font-size: 13px; color: rgba(243, 239, 226, .5); max-width: 52ch; margin-inline: auto; }
.finale__success {
  margin-top: 26px;
  font-family: var(--serif);
  font-size: 1.4rem;
  color: var(--lime);
}
.finale__form.is-done .finale__row,
.finale__form.is-done .finale__reassure,
.finale__form.is-done .finale__label { display: none; }

.footer {
  position: relative;
  z-index: 3;
  max-width: var(--maxw);
  margin: clamp(80px, 10vw, 130px) auto 0;
  padding: 40px 0 46px;
  border-top: 1px solid rgba(217, 198, 148, .25);
  display: grid;
  gap: 18px;
}
.footer__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--ivory-dim);
}
.footer__brand img { border-radius: 7px; }
.footer__links { display: flex; flex-wrap: wrap; gap: 22px; font-size: 13.5px; }
.footer__links a { color: rgba(243, 239, 226, .6); text-decoration: none; }
.footer__links a:hover { color: var(--ivory); }
.footer__disclaimer { font-size: 12px; line-height: 1.6; color: rgba(243, 239, 226, .42); max-width: 78ch; }
.footer__copy { font-size: 12px; color: rgba(243, 239, 226, .35); }

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 960px) {
  .hero__inner { grid-template-columns: 1fr; text-align: center; }
  .hero__copy { order: 2; display: flex; flex-direction: column; align-items: center; }
  .hero__ringwrap { order: 1; width: min(72vw, 360px); }
  .hero__lede { margin-inline: auto; }
  .hero { padding-top: 96px; }
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .living__stage { grid-template-columns: 1fr; min-height: 0; gap: 28px; }
  .living__ringcol {
    position: sticky;
    top: 56px;
    z-index: 2;
    background: var(--paper);
    padding: 10px 0 16px;
    box-shadow: 0 14px 18px -14px rgba(30, 32, 20, .18);
  }
  .living__ringwrap { width: min(48vw, 240px); }
  .living__ringwrap .ring__num { font-size: 3.1rem; }
  .spread, .spread--flip { grid-template-columns: 1fr; gap: 28px; }
  .spread--flip .spread__media { order: 0; }
  .spread__media { max-height: none; aspect-ratio: 4 / 5; }
  .bioage__grid { grid-template-columns: 1fr; }
  .bioage__ringwrap { width: min(64vw, 320px); }
  .voices__grid { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .stats__grid { grid-template-columns: 1fr 1fr; gap: 20px; }
  .hero__actions { flex-direction: column; width: 100%; }
  .hero__actions .btn { width: 100%; text-align: center; }
  .finale__row { flex-direction: column; }
  .finale__row .btn { width: 100%; }
  .nav__brand span { display: none; }
}

/* living pillars fully visible when motion is off */
html:not(.motion) .living__pillar { opacity: 1; border-left-color: var(--lime); }
html:not(.motion) .living__arc { stroke-dasharray: 22 100; }
html:not(.motion) .finale__arc, html:not(.motion) .finale__arcglow { stroke-dasharray: 100 0; }
