@import url('https://fonts.googleapis.com/css2?family=Newsreader:ital,opsz,wght@0,6..72,400..700;1,6..72,400..600&family=Inter:wght@400;500;600&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }

:root {
  --paper:      #F4EEDD;
  --paper-2:    #EEE6D1;
  --paper-3:    #E3D9BE;
  --sage:       #3B4E3B;
  --sage-2:     #2E3E2E;
  --sage-deep:  #1F2A1F;
  --ink:        #1B2018;
  --ink-soft:   rgba(27,32,24,0.68);
  --ink-muted:  rgba(27,32,24,0.42);
  --terra:      #C77250;
  --terra-deep: #A0563A;
  --line:       rgba(27,32,24,0.14);
  --line-strong: rgba(27,32,24,0.26);

  --s1: 4px; --s2: 8px; --s3: 16px; --s4: 24px;
  --s5: 32px; --s6: 48px; --s7: 64px; --s8: 80px;
  --s10: 96px; --s12: 120px; --s14: 160px; --s16: 200px;

  --max:      1240px;
  --max-wide: 1400px;
  --pad-x:    clamp(24px, 5vw, 56px);

  --dur-fast: 220ms;
  --dur-base: 360ms;
  --dur-slow: 1000ms;
  --ease-drift: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out:   cubic-bezier(0.4, 0, 0.2, 1);

  --font-display: 'Newsreader', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;
}

body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
:focus-visible { outline: 2px solid var(--terra); outline-offset: 3px; }

em {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--terra);
  font-weight: 500;
  font-variation-settings: "opsz" 72;
}

.lab {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sage);
  display: inline-flex;
  align-items: center;
  gap: var(--s2);
}
.dot {
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--terra);
  transform: translateY(-1px);
}

/* ── Nav ─────────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  inset-inline: 0;
  z-index: 50;
  height: 72px;
  display: flex;
  align-items: center;
  transition: background-color var(--dur-base) var(--ease-out), backdrop-filter var(--dur-base), box-shadow var(--dur-base);
}
.nav.scrolled {
  background: rgba(244, 238, 221, 0.94);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 var(--line);
}
.nav-inner {
  max-width: var(--max-wide);
  width: 100%;
  margin-inline: auto;
  padding-inline: var(--pad-x);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: var(--s5);
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 500;
  letter-spacing: -0.005em;
  color: var(--sage-deep);
  font-variation-settings: "opsz" 24;
}
.nav-logo em {
  font-style: italic;
  color: var(--terra);
  font-weight: 400;
  margin-right: 4px;
}
.nav-links { display: flex; align-items: center; gap: var(--s6); justify-content: center; }
.nav-links a {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--ink-soft);
  transition: color var(--dur-fast);
}
.nav-links a:hover { color: var(--terra); }
.nav-cta {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  height: 42px;
  padding-inline: 22px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--paper);
  background: var(--sage-deep);
  border-radius: 4px;
  transition: background-color var(--dur-fast) var(--ease-out);
}
.nav-cta:hover { background: var(--terra); }

/* ── Editorial split Hero ────────────────────────────────────── */
.hero {
  min-height: 100svh;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: stretch;
}
.hero-photo {
  position: relative;
  overflow: hidden;
  background: var(--sage-deep);
}
.hero-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  will-change: transform;
  transition: transform 1200ms var(--ease-drift);
}
.hero-breathe {
  animation: heroBreathe 22s ease-in-out infinite alternate;
}
@keyframes heroBreathe {
  from { transform: scale(1.00); }
  to   { transform: scale(1.08); }
}

.hero-copy {
  padding: 128px var(--pad-x) 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 720px;
}
.hero-mark {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: var(--s5);
  display: inline-flex;
  align-items: center;
  gap: var(--s2);
}
.hero-heading {
  font-family: var(--font-display);
  font-size: clamp(44px, 5.6vw, 84px);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.025em;
  color: var(--sage-deep);
  margin-bottom: var(--s5);
  font-variation-settings: "opsz" 96;
}
.hero-heading em {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--terra);
  font-weight: 400;
}
.hero-lede {
  font-family: var(--font-display);
  font-size: 20px;
  font-style: italic;
  font-weight: 400;
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 46ch;
  margin-bottom: var(--s6);
  font-variation-settings: "opsz" 24;
}
.hero-actions {
  display: flex;
  gap: var(--s3);
  flex-wrap: wrap;
  margin-bottom: var(--s8);
}
.hero-meta-list {
  display: flex;
  flex-direction: column;
  gap: var(--s3);
  padding-top: var(--s5);
  border-top: 1px solid var(--line);
  max-width: 380px;
}
.hero-meta-list li {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: var(--s3);
  align-items: baseline;
}
.ml-lab {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--sage);
}
.ml-val {
  font-family: var(--font-display);
  font-size: 18px;
  font-style: italic;
  color: var(--ink);
  font-variation-settings: "opsz" 24;
}

/* ── Buttons ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 52px;
  padding-inline: 28px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border-radius: 4px;
  transition: background-color var(--dur-fast) var(--ease-out), color var(--dur-fast), border-color var(--dur-fast);
}
.btn--fill { background: var(--sage-deep); color: var(--paper); }
.btn--fill:hover { background: var(--terra); }
.btn--line {
  background: transparent;
  color: var(--sage-deep);
  border: 1px solid var(--sage-deep);
}
.btn--line:hover { background: var(--sage-deep); color: var(--paper); }
.btn--big { height: 62px; padding-inline: 40px; font-size: 12px; }

/* ── Marquee ─────────────────────────────────────────────────── */
.strip {
  background: var(--sage-deep);
  padding-block: var(--s3);
  overflow: hidden;
}
.strip-track {
  display: flex;
  width: max-content;
  animation: strip-scroll 60s linear infinite;
}
@keyframes strip-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.strip-row {
  display: flex;
  align-items: center;
  gap: var(--s5);
  padding-inline: var(--s4);
  white-space: nowrap;
}
.strip-item {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  color: var(--paper);
  letter-spacing: -0.005em;
  font-variation-settings: "opsz" 24;
}
.strip-item em {
  color: var(--terra);
  font-style: italic;
}
.leaf {
  color: var(--terra);
  font-size: 14px;
  transform: translateY(-1px);
}

/* ── The studio ──────────────────────────────────────────────── */
.studio {
  padding: var(--s14) var(--pad-x);
  max-width: var(--max);
  margin-inline: auto;
}
.studio-head { max-width: 780px; margin-bottom: var(--s10); }
.studio-head .lab { margin-bottom: var(--s5); }
.studio-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.6vw, 68px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--sage-deep);
  font-variation-settings: "opsz" 96;
  max-width: 22ch;
}
.studio-title em {
  font-style: italic;
  color: var(--terra);
  font-weight: 400;
}
.studio-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  grid-template-rows: auto auto;
  gap: var(--s5) var(--s7);
}
.studio-a { grid-column: 1; grid-row: 1 / span 2; aspect-ratio: 3/4; }
.studio-copy {
  grid-column: 2;
  grid-row: 1;
  padding-top: var(--s5);
}
.studio-copy p {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.75;
  color: var(--ink-soft);
  margin-bottom: var(--s4);
  max-width: 46ch;
}
.studio-b { grid-column: 2; grid-row: 2; aspect-ratio: 4/3; }
.studio-grid figure {
  position: relative;
  overflow: hidden;
  background: var(--paper-2);
  border-radius: 4px;
}
.studio-grid figure img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1200ms var(--ease-drift);
}
.studio-grid figure:hover img { transform: scale(1.04); }

/* ── Schedule ────────────────────────────────────────────────── */
.schedule {
  background: var(--paper-2);
  padding: var(--s14) var(--pad-x);
  border-block: 1px solid var(--line);
}
.sched-head { max-width: 780px; margin-inline: auto; margin-bottom: var(--s10); text-align: center; }
.sched-head .lab { margin-bottom: var(--s5); justify-content: center; display: flex; }
.sched-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.6vw, 68px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--sage-deep);
  font-variation-settings: "opsz" 96;
  margin-bottom: var(--s4);
}
.sched-title em { font-style: italic; color: var(--terra); font-weight: 400; }
.sched-note {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 18px;
  color: var(--ink-soft);
  max-width: 56ch;
  margin-inline: auto;
}
.sched-grid {
  max-width: var(--max);
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
}
.day {
  background: var(--paper);
  padding: var(--s5) var(--s3);
  display: flex;
  flex-direction: column;
  gap: var(--s4);
  min-height: 320px;
}
.day-name {
  font-family: var(--font-display);
  font-size: 22px;
  font-style: italic;
  font-weight: 500;
  color: var(--terra);
  padding-bottom: var(--s2);
  border-bottom: 1px dashed var(--line-strong);
  font-variation-settings: "opsz" 24;
}
.day-list { display: flex; flex-direction: column; gap: var(--s3); }
.day-list li {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.cl-time {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sage);
}
.cl-name {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.15;
  font-variation-settings: "opsz" 24;
}
.cl-teach {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 13px;
  color: var(--ink-muted);
}

/* ── Teachers ────────────────────────────────────────────────── */
.teachers {
  padding: var(--s14) var(--pad-x);
  max-width: var(--max);
  margin-inline: auto;
}
.teach-head { max-width: 900px; margin-bottom: var(--s10); }
.teach-head .lab { margin-bottom: var(--s5); }
.teach-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.6vw, 68px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--sage-deep);
  font-variation-settings: "opsz" 96;
  max-width: 22ch;
}
.teach-title em { font-style: italic; color: var(--terra); font-weight: 400; }
.teach-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s7);
}
.teacher {
  display: flex;
  flex-direction: column;
  gap: var(--s4);
}
.teach-photo {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--paper-2);
  border-radius: 4px;
}
.teach-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1200ms var(--ease-drift);
}
.teacher:hover .teach-photo img { transform: scale(1.04); }
.teach-role {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terra);
}
.teach-name {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 500;
  color: var(--sage-deep);
  letter-spacing: -0.015em;
  font-variation-settings: "opsz" 48;
  line-height: 1.05;
}
.teach-desc {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.65;
  color: var(--ink-soft);
  max-width: 42ch;
}

/* ── Botanical break ─────────────────────────────────────────── */
.botanical {
  position: relative;
  width: 100%;
  height: clamp(280px, 34vw, 480px);
  overflow: hidden;
  background: var(--sage-deep);
}
.botanical img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.86;
  will-change: transform;
  transition: transform 1200ms var(--ease-drift);
}

/* ── Membership ──────────────────────────────────────────────── */
.membership {
  background: var(--sage-deep);
  color: var(--paper);
  padding: var(--s14) var(--pad-x);
}
.mem-inner { max-width: var(--max-wide); margin-inline: auto; }
.mem-head { max-width: 780px; margin-inline: auto; margin-bottom: var(--s10); text-align: center; }
.mem-head .lab { color: var(--terra); justify-content: center; display: flex; margin-bottom: var(--s5); }
.mem-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: var(--paper);
  font-variation-settings: "opsz" 96;
  margin-bottom: var(--s4);
}
.mem-title em { font-style: italic; color: var(--terra); font-weight: 400; }
.mem-note {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 18px;
  color: rgba(244,238,221,0.72);
  max-width: 52ch;
  margin-inline: auto;
}
.mem-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s4);
}
.tier {
  background: rgba(244,238,221,0.05);
  border: 1px solid rgba(244,238,221,0.15);
  border-radius: 6px;
  padding: var(--s6) var(--s5);
  display: flex;
  flex-direction: column;
  gap: var(--s3);
  position: relative;
  transition: border-color var(--dur-fast);
}
.tier:hover { border-color: rgba(199,114,80,0.6); }
.tier--feat {
  background: rgba(199,114,80,0.10);
  border-color: var(--terra);
}
.tier-tag {
  position: absolute;
  top: -12px;
  left: 24px;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  background: var(--terra);
  color: var(--paper);
  padding: 4px 10px;
  border-radius: 999px;
}
.tier-lab {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(244,238,221,0.7);
}
.tier-price {
  font-family: var(--font-display);
  font-size: 62px;
  font-weight: 400;
  color: var(--paper);
  line-height: 1;
  letter-spacing: -0.03em;
  font-variation-settings: "opsz" 96;
}
.tier-price .cur { font-size: 28px; vertical-align: 24px; color: var(--terra); font-style: italic; }
.tier-sub {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 15px;
  color: rgba(244,238,221,0.75);
  margin-bottom: var(--s3);
}
.tier-list {
  display: flex;
  flex-direction: column;
  gap: var(--s2);
  padding-top: var(--s3);
  border-top: 1px solid rgba(244,238,221,0.14);
  margin-bottom: auto;
}
.tier-list li {
  font-family: var(--font-body);
  font-size: 13px;
  color: rgba(244,238,221,0.86);
  padding-left: 16px;
  position: relative;
  line-height: 1.5;
}
.tier-list li::before {
  content: "❋";
  position: absolute;
  left: 0;
  color: var(--terra);
  font-size: 10px;
  top: 3px;
}
.tier-cta {
  margin-top: var(--s5);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--paper);
  background: transparent;
  border: 1px solid rgba(244,238,221,0.35);
  border-radius: 4px;
  transition: background var(--dur-fast) var(--ease-out), color var(--dur-fast);
}
.tier-cta:hover { background: var(--paper); color: var(--sage-deep); }
.tier-cta--fill { background: var(--terra); border-color: var(--terra); }
.tier-cta--fill:hover { background: var(--paper); color: var(--terra); }

/* ── Visit ───────────────────────────────────────────────────── */
.visit {
  background: var(--paper);
  padding-bottom: var(--s14);
}
.visit-photo {
  position: relative;
  aspect-ratio: 21/9;
  max-height: 620px;
  overflow: hidden;
  margin-bottom: var(--s10);
}
.visit-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.visit-inner {
  max-width: 960px;
  margin-inline: auto;
  padding-inline: var(--pad-x);
  text-align: center;
}
.visit-inner .lab { justify-content: center; display: flex; margin-bottom: var(--s5); }
.visit-heading {
  font-family: var(--font-display);
  font-size: clamp(56px, 7vw, 108px);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 0.98;
  color: var(--sage-deep);
  margin-bottom: var(--s5);
  font-variation-settings: "opsz" 144;
}
.visit-heading em { font-style: italic; color: var(--terra); font-weight: 400; }
.visit-body {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 20px;
  color: var(--ink-soft);
  max-width: 52ch;
  margin-inline: auto;
  margin-bottom: var(--s10);
}
.visit-info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s6);
  padding: var(--s6) 0;
  border-block: 1px solid var(--line);
  margin-bottom: var(--s7);
  text-align: left;
}
.info-lab {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: var(--s3);
}
.info-val {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--sage-deep);
  line-height: 1.55;
  font-variation-settings: "opsz" 24;
}
.visit-cta { display: flex; justify-content: center; }

/* ── Footer ──────────────────────────────────────────────────── */
.footer {
  background: var(--sage-deep);
  color: rgba(244,238,221,0.55);
  padding: var(--s10) var(--pad-x) var(--s5);
}
.footer-inner { max-width: var(--max-wide); margin-inline: auto; }
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: var(--s4);
  padding-bottom: var(--s5);
  border-bottom: 1px solid rgba(244,238,221,0.12);
  margin-bottom: var(--s4);
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 26px;
  color: var(--paper);
  font-weight: 500;
  font-variation-settings: "opsz" 24;
}
.footer-logo em {
  font-style: italic;
  color: var(--terra);
  font-weight: 400;
  margin-right: 4px;
}
.footer-tag {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--terra);
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: var(--s4);
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.10em;
  color: rgba(244,238,221,0.40);
}
.footer-bottom a { color: var(--terra); transition: color var(--dur-fast); }
.footer-bottom a:hover { color: var(--paper); }

/* ── Reveals (slow atmospheric drift) ────────────────────────── */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity var(--dur-slow) var(--ease-drift), transform var(--dur-slow) var(--ease-drift);
}
[data-reveal].revealed { opacity: 1; transform: translateY(0); }
[data-delay="1"] { transition-delay: 140ms; }
[data-delay="2"] { transition-delay: 280ms; }
[data-delay="3"] { transition-delay: 420ms; }
[data-delay="4"] { transition-delay: 560ms; }

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; }
  .hero-photo { aspect-ratio: 3/2; }
  .hero-copy { padding: 96px var(--pad-x) 72px; }
  .studio-grid { grid-template-columns: 1fr; }
  .studio-a { grid-column: 1; grid-row: auto; aspect-ratio: 3/2; }
  .studio-b { grid-column: 1; grid-row: auto; }
  .studio-copy { grid-column: 1; grid-row: auto; }
  .teach-grid { grid-template-columns: 1fr 1fr; }
  .mem-grid { grid-template-columns: 1fr 1fr; }
  .sched-grid { grid-template-columns: 1fr; }
  .day { min-height: auto; }
}
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-inner { grid-template-columns: 1fr auto; }
  .teach-grid { grid-template-columns: 1fr; }
  .mem-grid { grid-template-columns: 1fr; }
  .visit-info { grid-template-columns: 1fr; gap: var(--s5); }
  .footer-top { flex-direction: column; align-items: flex-start; gap: var(--s3); }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: var(--s2); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .hero-breathe, .strip-track { animation: none !important; }
  [data-reveal] { opacity: 1; transform: none; }
}
