/* ==========================================================================
   Premier Academy — styles
   Warm paper, oxblood from the logo, near-black ink. Condensed display type,
   serif italics for voice, mono for index labels. Mobile-first.
   Motion uses transform/opacity only (the FAQ height transition is the one exception).
   ========================================================================== */

/* ---------- Tokens ---------- */
:root {
  --paper: #f3eee6;
  --paper-2: #e9e2d6;
  --ink: #15110e;
  --ink-2: #3b332d;
  --ink-3: #62584f;
  --line: rgba(21, 17, 14, 0.18);
  --ox: #700b13;            /* sampled from the logo */
  --ox-deep: #4c060c;
  --rose: #f0cfc7;
  --on-dark: rgba(243, 238, 230, 0.74);
  --line-dark: rgba(243, 238, 230, 0.22);

  --font-display: "Archivo", "Helvetica Neue", Helvetica, sans-serif;
  --font-serif: "Instrument Serif", "Iowan Old Style", Georgia, serif;
  --font-mono: "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;

  --gutter: clamp(16px, 4vw, 56px);
  --max: 1440px;
  --nav-h: 76px;
  --ease: cubic-bezier(0.2, 0.7, 0.2, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-h);
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 1rem;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
h1, h2, h3, p, ol, ul, figure, blockquote { margin: 0; }
ol, ul { padding: 0; list-style: none; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; background: none; border: 0; padding: 0; }
em { font-style: normal; }

::selection { background: var(--ox); color: var(--paper); }

:focus-visible {
  outline: 2px solid var(--ox);
  outline-offset: 3px;
  border-radius: 2px;
}
[data-nav-theme="dark"] :focus-visible,
.site-header.on-dark :focus-visible { outline-color: var(--rose); }
/* Paper surfaces that sit inside dark blocks go back to the oxblood ring */
.form :focus-visible,
.site-header .mobile-menu :focus-visible { outline-color: var(--ox); }
main:focus { outline: none; }

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

.skip-link {
  position: fixed;
  top: 12px; left: 12px;
  z-index: 100;
  padding: 10px 16px;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--font-mono);
  font-size: 13px;
  transform: translateY(-160%);
  transition: transform 0.2s var(--ease);
}
.skip-link:focus { transform: none; }

.wrap {
  width: 100%;
  max-width: var(--max);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.nav-sentinel {
  position: absolute;
  top: 0; left: 0;
  width: 1px; height: 24px;
}

/* ---------- Shared type ---------- */
.kicker {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ox);
}
.kicker--light { color: var(--rose); }

.section-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-stretch: 72%;
  font-variation-settings: "wdth" 72;
  font-size: clamp(2.75rem, 7.4vw, 7rem);
  line-height: 0.88;
  letter-spacing: -0.015em;
  text-transform: uppercase;
  text-wrap: balance;
}
.section-title em,
.hero__line--serif,
.page-hero__line--serif,
.consult__title em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-stretch: 100%;
  font-variation-settings: normal;
  text-transform: none;
  letter-spacing: -0.02em;
}
.section-title em { color: var(--ox); }
.section-title--xl { font-size: clamp(3.25rem, 11vw, 11rem); }

.section-intro {
  max-width: 34ch;
  font-size: clamp(1.05rem, 1.3vw, 1.2rem);
  line-height: 1.5;
  color: var(--ink-2);
}

.caption {
  display: flex;
  gap: 14px;
  margin-top: 12px;
  font-family: var(--font-mono);
  font-size: 12px;
  line-height: 1.4;
  color: var(--ink-3);
}
.caption span { flex-shrink: 0; color: var(--ox); text-transform: uppercase; letter-spacing: 0.06em; }
.caption--light { color: var(--on-dark); }
.caption--light span { color: var(--rose); }

/* ---------- Buttons & links ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 44px;
  padding: 12px 22px;
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.1;
  white-space: nowrap;
  transition: background-color 0.25s var(--ease), color 0.25s var(--ease), transform 0.25s var(--ease);
}
.btn svg {
  width: 16px; height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.3s var(--ease-out);
}
.btn:hover svg { transform: translateX(4px); }
.btn:active { transform: scale(0.97); }

.btn--ink { background: var(--ink); color: var(--paper); }
.btn--ink:hover { background: var(--ox); }
.btn--ox { background: var(--ox); color: var(--paper); }
.btn--ox:hover { background: var(--ink); }
.btn--paper { background: var(--paper); color: var(--ink); }
.btn--paper:hover { background: var(--rose); }
.btn--large { min-height: 56px; padding: 16px 28px; font-size: 16px; }
.btn--block { width: 100%; }

.link-line {
  display: inline-block;
  padding-block: 10px;
  font-weight: 600;
  text-decoration: underline;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 6px;
  transition: color 0.2s var(--ease), text-underline-offset 0.2s var(--ease);
}
.link-line:hover { color: var(--ox); text-underline-offset: 9px; }
.text-link {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: color 0.2s var(--ease);
}
.text-link:hover { color: var(--ox); }

/* ---------- Navigation ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  color: var(--ink);
}
.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(243, 238, 230, 0.9);
  -webkit-backdrop-filter: blur(14px) saturate(1.2);
  backdrop-filter: blur(14px) saturate(1.2);
  border-bottom: 1px solid transparent;
  opacity: 0;
  transition: opacity 0.35s var(--ease), background-color 0.35s var(--ease), border-color 0.35s var(--ease);
}
.site-header.is-scrolled::before,
.site-header.menu-open::before { opacity: 1; border-bottom-color: var(--line); }
.site-header.on-dark { color: var(--paper); }
.site-header.on-dark::before { background: rgba(21, 17, 14, 0.86); border-bottom-color: var(--line-dark); }

.site-header__bar {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: var(--max);
  height: var(--nav-h);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 44px;
}
.brand__logo {
  width: 48px;
  height: auto;
  transition: transform 0.4s var(--ease-out), filter 0.35s var(--ease);
}
.brand:hover .brand__logo { transform: rotate(-6deg); }
/* Transparent logo: red on paper, knocked out to white over dark blocks */
.site-header.on-dark .brand__logo { filter: brightness(0) invert(1); }
.brand__name {
  font-weight: 800;
  font-stretch: 85%;
  font-variation-settings: "wdth" 85;
  font-size: 14px;
  line-height: 1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.primary-nav { display: none; }
.primary-nav ol { display: flex; gap: clamp(16px, 2.2vw, 36px); }
.primary-nav a {
  display: inline-flex;
  align-items: baseline;
  justify-content: center;
  min-width: 44px;
  gap: 6px;
  padding-block: 14px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background-image: linear-gradient(currentColor, currentColor);
  background-repeat: no-repeat;
  background-position: 0 calc(100% - 10px);
  background-size: 0 1px;
  transition: background-size 0.3s var(--ease);
}
.primary-nav a:hover { background-size: 100% 1px; }
.primary-nav__num { font-size: 10px; color: var(--ox); }
.site-header.on-dark .primary-nav__num { color: var(--rose); }

.nav-cta { display: none; }
.site-header.on-dark .nav-cta { background: var(--paper); color: var(--ink); }
.site-header.on-dark .nav-cta:hover { background: var(--rose); }

.menu-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 18px;
  border: 1.5px solid currentColor;
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mobile-menu {
  position: absolute;
  top: var(--nav-h);
  left: 0; right: 0;
  padding: 8px var(--gutter) 28px;
  background: var(--paper);
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  visibility: hidden;
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity 0.25s var(--ease), transform 0.3s var(--ease), visibility 0s linear 0.3s;
}
.site-header.menu-open .mobile-menu {
  visibility: visible;
  opacity: 1;
  transform: none;
  transition: opacity 0.25s var(--ease), transform 0.3s var(--ease);
}
.mobile-menu ol { margin-bottom: 24px; }
.mobile-menu li { border-bottom: 1px solid var(--line); }
.mobile-menu a:not(.btn) {
  display: flex;
  align-items: baseline;
  gap: 14px;
  padding: 14px 0;
  font-weight: 800;
  font-stretch: 72%;
  font-variation-settings: "wdth" 72;
  font-size: 2.25rem;
  line-height: 1;
  text-transform: uppercase;
}
.mobile-menu a span { font-family: var(--font-mono); font-size: 12px; font-weight: 500; color: var(--ox); }

@media (min-width: 960px) {
  .primary-nav, .nav-cta { display: flex; }
  .menu-toggle, .mobile-menu { display: none; }
}

/* ---------- Hero ---------- */
.hero {
  padding-top: calc(var(--nav-h) + clamp(20px, 3.5vw, 48px));
  /* --hero-pin (set by JS) reserves the scroll distance the headline shrinks over */
  padding-bottom: calc(clamp(56px, 8vw, 112px) + var(--hero-pin, 0px));
}
.hero__title,
.hero__below {
  transform-origin: 0 0;
  will-change: transform;
  transition: opacity 0.35s var(--ease);
}
/* Hidden for the moment it takes to measure, so the headline never jumps */
.hero.is-sizing .hero__title,
.hero.is-sizing .hero__below { opacity: 0; }

.hero__title {
  font-weight: 800;
  font-stretch: 72%;
  font-variation-settings: "wdth" 72;
  font-size: clamp(3.4rem, 10.6vw, 11rem);
  line-height: 0.86;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}
.hero__line { display: block; }
.hero__line--serif {
  color: var(--ox);
  font-size: 0.9em;
  line-height: 0.96;   /* same line pitch as the caps lines at 0.9em */
  padding-left: 0.04em;
}

.hero__grid {
  display: grid;
  gap: 40px;
  margin-top: clamp(28px, 3.5vw, 48px);
}
.hero__lede {
  max-width: 30ch;
  font-size: clamp(1.15rem, 1.6vw, 1.4rem);
  line-height: 1.45;
  color: var(--ink-2);
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 28px;
  margin-top: 28px;
}
.hero__note {
  margin-top: 20px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--ink-3);
}

/* Frame matches the photo's own 16:9 shape, so nothing (heads included) is cropped */
.hero__frame {
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: var(--paper-2);
  border-radius: 4px;
}
.hero__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (min-width: 960px) {
  /* One clean left edge; only the serif line steps in */
  .hero__line--serif { padding-left: 1.1em; }
  .hero__grid {
    grid-template-columns: repeat(12, minmax(0, 1fr));
    column-gap: 24px;
    align-items: start;
  }
  .hero__copy { grid-column: 1 / 6; padding-right: 24px; }
  .hero__media { grid-column: 6 / 13; }
}

/* Stats — spec-sheet strip */
.stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: clamp(56px, 8vw, 104px);
  border-top: 1.5px solid var(--ink);
}
.stat {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 28px;
  padding: 16px 16px 4px;
  border-bottom: 1px solid var(--line);
}
.stat:nth-child(odd) { padding-left: 0; }
.stat:nth-child(even) { border-left: 1px solid var(--line); }
.stat__label {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.stat__value {
  font-weight: 800;
  font-stretch: 75%;
  font-variation-settings: "wdth" 75;
  font-size: clamp(2.75rem, 6vw, 5.5rem);
  line-height: 0.9;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}
@media (min-width: 760px) {
  .stats { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .stat { padding-left: 20px; border-bottom: 0; }
  .stat:nth-child(odd) { padding-left: 20px; }
  .stat:first-child { padding-left: 0; }
  .stat + .stat { border-left: 1px solid var(--line); }
}

/* ---------- Subject band (marquee) ---------- */
.band {
  overflow: hidden;
  background: var(--ox);
  color: var(--paper);
  padding-block: clamp(14px, 2vw, 22px);
}
.band__track {
  display: flex;
  width: max-content;
  animation: marquee 48s linear infinite;
}
.band__track span {
  display: inline-flex;
  align-items: center;
  font-weight: 800;
  font-stretch: 72%;
  font-variation-settings: "wdth" 72;
  font-size: clamp(1.75rem, 3.6vw, 3.25rem);
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}
.band__track span::after {
  content: "";
  width: 0.32em;
  height: 0.32em;
  margin-inline: 0.6em;
  border: 2px solid var(--rose);
  border-radius: 50%;
}

@keyframes marquee {
  to { transform: translate3d(-50%, 0, 0); }
}

/* Pause control shared by both marquees (WCAG 2.2.2) */
.marquee { position: relative; }
.motion-toggle {
  position: absolute;
  top: 50%;
  right: var(--gutter);
  z-index: 1;
  display: grid;
  place-items: center;
  width: 44px; height: 44px;
  margin-top: -22px;
  border-radius: 50%;
  background: var(--paper);
  color: var(--ink);
  box-shadow: 0 0 0 1.5px var(--ink);
  transition: background-color 0.2s var(--ease), color 0.2s var(--ease);
}
.band .motion-toggle { box-shadow: 0 0 0 1.5px var(--ox); }
.motion-toggle:hover { background: var(--ink); color: var(--paper); }
.band .motion-toggle:focus-visible { outline-color: var(--paper); }
.motion-toggle svg {
  width: 16px; height: 16px;
  fill: none; stroke: currentColor; stroke-width: 1.8;
  stroke-linecap: round; stroke-linejoin: round;
}
.motion-toggle__play { display: none; fill: currentColor !important; }
.motion-toggle[aria-pressed="true"] .motion-toggle__pause { display: none; }
.motion-toggle[aria-pressed="true"] .motion-toggle__play { display: block; }
.motion-paused .band__track,
.motion-paused .ticker__track { animation-play-state: paused; }

/* ---------- Sections ---------- */
.section { padding-block: clamp(88px, 11vw, 176px); }
.section--ink { background: var(--ink); color: var(--paper); }
.section--ink .section-title em { color: var(--rose); }
.section--ox { background: var(--ox); color: var(--paper); }
.section--soft { background: var(--paper-2); }

.section-head {
  display: grid;
  gap: 20px;
  margin-bottom: clamp(48px, 6vw, 88px);
}
@media (min-width: 960px) {
  .section-head {
    grid-template-columns: repeat(12, minmax(0, 1fr));
    column-gap: 24px;
    align-items: end;
  }
  .section-head .kicker { grid-column: 1 / -1; }
  .section-head .section-title { grid-column: 1 / 9; }
  .section-head .section-intro { grid-column: 9 / 13; padding-bottom: 6px; }
}

/* Program pages: sections under the hero get a label, not a second headline.
   The label and intro sit on the same columns as the rows/cards below them,
   and the list's own top rule is the only line between them. */
.section-head--slim {
  display: grid;
  gap: 12px;
  justify-items: start;
  margin-bottom: 28px;
}
.section-head--slim .section-intro {
  max-width: 52ch;
  font-size: 1.05rem;
  color: var(--ink-2);
}
@media (min-width: 960px) {
  .section-head--slim { grid-template-columns: none; }
  .section-head--slim .kicker,
  .section-head--slim .section-intro { grid-column: auto; padding: 0; }
}

/* Program pages breathe less than the long homepage */
.page-hero ~ .section { padding-block: clamp(56px, 7vw, 104px); }
.page-hero + .section { padding-top: clamp(32px, 4vw, 56px); }

/* ---------- Programs — collection index ---------- */
.program-list { border-top: 1.5px solid var(--ink); }
.program { border-bottom: 1.5px solid var(--ink); }

.program__link {
  position: relative;
  display: grid;
  grid-template-columns: 3rem minmax(0, 1fr) 48px;
  grid-template-areas:
    "num title arrow"
    ".   text  text"
    ".   tags  tags";
  gap: 14px 12px;
  padding: 28px 0 32px;
  isolation: isolate;
  transition: color 0.35s var(--ease);
}
.program__link::before {
  content: "";
  position: absolute;
  inset: 0 calc(-1 * var(--gutter));
  z-index: -1;
  background: var(--ox);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.5s var(--ease-out);
}
.program__num {
  grid-area: num;
  padding-top: 0.5em;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 500;
  color: var(--ox);
  transition: color 0.35s var(--ease);
}
.program__title {
  grid-area: title;
  margin: 0;
  font-weight: 800;
  font-stretch: 72%;
  font-variation-settings: "wdth" 72;
  font-size: clamp(2.5rem, 6.4vw, 6rem);
  line-height: 0.9;
  letter-spacing: -0.015em;
  text-transform: uppercase;
}
.program__text {
  grid-area: text;
  max-width: 46ch;
  font-size: 1.05rem;
  line-height: 1.5;
  color: var(--ink-2);
  transition: color 0.35s var(--ease);
}
.program__tags {
  grid-area: tags;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.program__tags span {
  padding: 5px 11px;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.program__arrow {
  grid-area: arrow;
  display: grid;
  place-items: center;
  width: 48px; height: 48px;
  border: 1.5px solid currentColor;
  border-radius: 50%;
  transition: transform 0.45s var(--ease-out), background-color 0.3s var(--ease);
}
.program__arrow svg {
  width: 18px; height: 18px;
  fill: none; stroke: currentColor; stroke-width: 1.6;
  stroke-linecap: round; stroke-linejoin: round;
}

.program__link:hover,
.program__link:focus-visible { color: var(--paper); }
.program__link:hover::before,
.program__link:focus-visible::before { transform: scaleY(1); }
.program__link:hover .program__num,
.program__link:hover .program__text,
.program__link:focus-visible .program__num,
.program__link:focus-visible .program__text { color: var(--rose); }
.program__link:hover .program__arrow,
.program__link:focus-visible .program__arrow { transform: rotate(-45deg); }
.program__link:focus-visible { outline-color: var(--rose); outline-offset: -3px; }

@media (min-width: 960px) {
  .program__link {
    grid-template-columns: 5rem minmax(0, 1.25fr) minmax(0, 1fr) 64px;
    grid-template-areas:
      "num title text arrow"
      "num title tags arrow";
    column-gap: 32px;
    align-items: start;
    padding: 40px 0 44px;
  }
  .program__arrow { width: 64px; height: 64px; align-self: center; }
  .program__tags { align-self: end; }
}

/* ---------- Approach ---------- */
.approach__head { margin-bottom: clamp(48px, 7vw, 104px); }
.approach__head .kicker { margin-bottom: 20px; }
.approach__intro {
  max-width: 52ch;
  margin-top: clamp(24px, 3vw, 40px);
  font-size: clamp(1.1rem, 1.5vw, 1.35rem);
  line-height: 1.5;
  color: var(--on-dark);
}

.approach__grid { display: grid; gap: 56px; }
.approach__frame {
  overflow: hidden;
  aspect-ratio: 4 / 5;
  border-radius: 4px;
  background: #2a231e;
}
.approach__frame img { width: 100%; height: 100%; object-fit: cover; }

.tenets { display: grid; gap: 48px 32px; }
.tenet {
  padding-top: 20px;
  border-top: 1px solid var(--line-dark);
}
.tenet__num {
  display: block;
  margin-bottom: 20px;
  font-weight: 800;
  font-stretch: 72%;
  font-variation-settings: "wdth" 72;
  font-size: clamp(3.5rem, 6vw, 5.5rem);
  line-height: 0.85;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--rose);
}
.tenet__label {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--rose);
}
.tenet__title {
  margin-top: 10px;
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(1.9rem, 2.8vw, 2.6rem);
  line-height: 1.02;
  letter-spacing: -0.01em;
}
.tenet__text {
  max-width: 40ch;
  margin-top: 14px;
  color: var(--on-dark);
}

@media (min-width: 760px) {
  .tenets { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (min-width: 1024px) {
  .approach__grid {
    grid-template-columns: repeat(12, minmax(0, 1fr));
    column-gap: 24px;
    align-items: start;
  }
  .approach__photo { grid-column: 1 / 5; position: sticky; top: calc(var(--nav-h) + 24px); }
  .tenets { grid-column: 6 / 13; row-gap: 72px; }
}

/* ---------- Process ---------- */
.steps {
  position: relative;
  display: grid;
  gap: 40px;
}
.step__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 18px;
  margin-bottom: 22px;
  border-bottom: 1.5px solid var(--ink);
}
.step__num {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ox);
}
.step__dot {
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--ox);
  transform: scale(0);
  transition: transform 0.5s var(--ease-out) 0.3s;
}
.step.is-visible .step__dot { transform: scale(1); }
.step__title {
  font-weight: 800;
  font-stretch: 80%;
  font-variation-settings: "wdth" 80;
  font-size: clamp(1.75rem, 2.4vw, 2.25rem);
  line-height: 0.95;
  text-transform: uppercase;
}
.step__text {
  max-width: 34ch;
  margin-top: 14px;
  color: var(--ink-2);
}

@media (min-width: 760px) {
  .steps { grid-template-columns: repeat(2, minmax(0, 1fr)); column-gap: 32px; row-gap: 56px; }
}
@media (min-width: 1100px) {
  .steps { grid-template-columns: repeat(4, minmax(0, 1fr)); column-gap: 24px; }
}

/* ---------- University ticker ---------- */
.schools {
  padding-block: clamp(56px, 7vw, 96px);
  background: var(--paper-2);
  border-top: 1px solid var(--line);
}
.schools__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
}
.schools__head .motion-toggle { position: static; margin: 0; flex-shrink: 0; }
.schools__title {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.ticker {
  display: flex;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.ticker__track {
  display: flex;
  flex-shrink: 0;
  animation: ticker 60s linear infinite;
}
.ticker__track li {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-serif);
  font-size: clamp(2.25rem, 5vw, 4.5rem);
  line-height: 1.1;
  white-space: nowrap;
}
.ticker__track li::after {
  content: "";
  width: 10px; height: 10px;
  margin-inline: clamp(24px, 3vw, 48px);
  background: var(--ox);
  transform: rotate(45deg);
}
.ticker:hover .ticker__track { animation-play-state: paused; }
@keyframes ticker {
  to { transform: translate3d(-100%, 0, 0); }
}
.schools__note {
  margin-top: 28px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-3);
}

/* ---------- Testimonials ---------- */
.families__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: clamp(40px, 6vw, 72px);
}
.carousel__controls { display: flex; align-items: center; gap: 12px; }
.carousel__count {
  margin-right: 8px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--rose);
  font-variant-numeric: tabular-nums;
}
.round-btn {
  display: grid;
  place-items: center;
  width: 52px; height: 52px;
  border: 1.5px solid currentColor;
  border-radius: 50%;
  transition: background-color 0.25s var(--ease), color 0.25s var(--ease), transform 0.2s var(--ease);
}
.round-btn svg {
  width: 18px; height: 18px;
  fill: none; stroke: currentColor; stroke-width: 1.6;
  stroke-linecap: round; stroke-linejoin: round;
}
.round-btn:hover { background: var(--paper); color: var(--ox); }
.round-btn:active { transform: scale(0.94); }

.carousel {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 100%;
  gap: var(--gutter);
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  cursor: grab;
}
.carousel::-webkit-scrollbar { display: none; }
.carousel.is-dragging { cursor: grabbing; scroll-snap-type: none; user-select: none; }
.carousel:focus-visible { outline-offset: 8px; }

.quote { scroll-snap-align: start; }
.quote__text {
  max-width: 24ch;
  font-family: var(--font-serif);
  font-size: clamp(2.1rem, 5.4vw, 5.25rem);
  line-height: 1.02;
  letter-spacing: -0.015em;
  text-wrap: balance;
}
.quote__by {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  margin-top: clamp(28px, 4vw, 48px);
  padding-top: 18px;
  border-top: 1px solid var(--line-dark);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.quote__meta { color: var(--rose); }

/* ---------- FAQ ---------- */
.faq__layout { display: grid; gap: 48px; }
.faq__head .section-title { margin-block: 20px; }
@media (min-width: 1024px) {
  .faq__layout {
    grid-template-columns: repeat(12, minmax(0, 1fr));
    column-gap: 24px;
    align-items: start;
  }
  .faq__head { grid-column: 1 / 6; position: sticky; top: calc(var(--nav-h) + 32px); }
  .accordion { grid-column: 6 / 13; }
}

.accordion { border-top: 1.5px solid var(--ink); }
.accordion__item { border-bottom: 1px solid var(--line); }
.accordion__trigger {
  display: grid;
  grid-template-columns: 2.5rem minmax(0, 1fr) 32px;
  align-items: center;
  gap: 12px;
  width: 100%;
  min-height: 44px;
  padding: 24px 0;
  text-align: left;
}
.accordion__num {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--ox);
}
.accordion__q {
  font-size: clamp(1.15rem, 1.6vw, 1.4rem);
  font-weight: 600;
  line-height: 1.25;
  transition: color 0.2s var(--ease);
}
.accordion__trigger:hover .accordion__q { color: var(--ox); }
.accordion__icon {
  position: relative;
  justify-self: end;
  width: 32px; height: 32px;
  border: 1.5px solid var(--ink);
  border-radius: 50%;
  transition: transform 0.4s var(--ease-out), background-color 0.3s var(--ease), border-color 0.3s var(--ease);
}
.accordion__icon::before,
.accordion__icon::after {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  width: 12px; height: 1.5px;
  margin: -0.75px 0 0 -6px;
  background: var(--ink);
  transition: background-color 0.3s var(--ease);
}
.accordion__icon::after { transform: rotate(90deg); }
.accordion__trigger[aria-expanded="true"] .accordion__icon {
  transform: rotate(135deg);
  background: var(--ox);
  border-color: var(--ox);
}
.accordion__trigger[aria-expanded="true"] .accordion__icon::before,
.accordion__trigger[aria-expanded="true"] .accordion__icon::after { background: var(--paper); }

.accordion__panel {
  display: grid;
  grid-template-rows: 1fr;
}
.js .accordion__panel {
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.45s var(--ease-out);
}
.js .accordion__panel.is-open { grid-template-rows: 1fr; }
.accordion__inner { overflow: hidden; }
.accordion__inner p {
  max-width: 56ch;
  padding: 0 44px 28px calc(2.5rem + 12px);
  color: var(--ink-2);
}
.js .accordion__panel:not(.is-open) .accordion__inner { visibility: hidden; transition: visibility 0s 0.45s; }

/* ---------- Consultation ---------- */
.consult {
  padding-block: clamp(88px, 11vw, 160px);
  background: var(--ink);
  color: var(--paper);
}
.consult__layout { display: grid; gap: 48px; }
.consult__title {
  font-weight: 800;
  font-stretch: 72%;
  font-variation-settings: "wdth" 72;
  font-size: clamp(3.5rem, 10vw, 9.5rem);
  line-height: 0.86;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}
.consult__title em { color: var(--rose); font-size: 0.92em; }
.consult__lede {
  max-width: 34ch;
  margin-top: 28px;
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  color: var(--on-dark);
}
@media (min-width: 1024px) {
  .consult__layout {
    grid-template-columns: repeat(12, minmax(0, 1fr));
    column-gap: 24px;
    align-items: start;
  }
  .consult__copy { grid-column: 1 / 7; position: sticky; top: calc(var(--nav-h) + 32px); }
  .form { grid-column: 7 / 13; }
}

.form {
  display: grid;
  gap: 24px;
  padding: clamp(24px, 4vw, 48px);
  background: var(--paper);
  color: var(--ink);
  border-radius: 6px;
}
.form__row { display: grid; gap: 24px; }
@media (min-width: 640px) {
  .form__row { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
.field { display: grid; gap: 6px; min-width: 0; }
.field--choices { margin: 0; padding: 0; border: 0; }
.field__label {
  padding: 0;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-2);
}
.field__opt { text-transform: none; letter-spacing: 0; color: var(--ink-3); }
.field__input {
  width: 100%;
  min-height: 44px;
  padding: 10px 0;
  background: transparent;
  border: 0;
  border-bottom: 1.5px solid var(--ink);
  border-radius: 0;
  font-size: 1.1rem;
  transition: border-color 0.2s var(--ease);
}
.field__input:focus { outline: none; border-bottom-color: var(--ox); box-shadow: 0 1.5px 0 var(--ox); }
select.field__input {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='m4 6 4 4 4-4' fill='none' stroke='%2315110e' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 2px center;
  background-size: 16px;
  padding-right: 24px;
}
textarea.field__input { resize: vertical; min-height: 88px; }

.choices { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 6px; }
.choice { position: relative; }
.choice input { position: absolute; opacity: 0; width: 100%; height: 100%; margin: 0; cursor: pointer; }
.choice span {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 8px 18px;
  border: 1.5px solid var(--ink);
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  transition: background-color 0.2s var(--ease), color 0.2s var(--ease);
}
.choice input:checked + span { background: var(--ink); color: var(--paper); }
.choice input:focus-visible + span { outline: 2px solid var(--ox); outline-offset: 3px; }
.choice:hover span { border-color: var(--ox); }

.form__trap { position: absolute; left: -9999px; }
.form__foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 20px;
  padding-top: 8px;
}
.form__status { font-family: var(--font-mono); font-size: 12px; color: var(--ink-2); }
.form__status.is-error { color: var(--ox); }

/* ---------- Footer ---------- */
.footer {
  padding-top: clamp(64px, 8vw, 112px);
  padding-bottom: 28px;
  background: var(--paper);
  color: var(--ink);
  overflow: hidden;
}
.footer__top { display: grid; gap: 40px; }
.footer__brand { max-width: 30ch; }
.footer__logo { display: block; width: 88px; margin-bottom: 18px; }
.footer__logo img { width: 100%; }
.footer__brand p { color: var(--ink-2); }
.footer__heading {
  margin-bottom: 14px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ox);
}
.footer__col li { min-height: 36px; }
.footer__col a { display: inline-block; padding-block: 10px; transition: color 0.2s var(--ease); }
.footer__col li:not(:has(a)) { padding-block: 10px; }
.footer__heading + ul { margin-top: -10px; }
.footer__col a:hover { color: var(--ox); }
@media (min-width: 760px) {
  .footer__top { grid-template-columns: 2fr 1fr 1.3fr; gap: 32px; }
}

.footer__word {
  margin-top: clamp(56px, 8vw, 104px);
  font-weight: 900;
  font-stretch: 62%;
  font-variation-settings: "wdth" 62;
  font-size: 13.6vw;
  line-height: 0.8;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  white-space: nowrap;
  color: var(--ox);
}
@media (min-width: 1440px) { .footer__word { font-size: 196px; } }

.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  margin-top: 28px;
  padding-top: 6px;
  border-top: 1px solid var(--line);
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-3);
}
.footer__bottom { align-items: center; }
.footer__bottom a { display: inline-block; padding: 14px 0; }
.footer__bottom a:hover { color: var(--ox); }

/* ==========================================================================
   Program detail pages
   ========================================================================== */

/* ---------- Program hero ----------
   Left: title, intro, tags, actions. Right: a programs index panel that
   marks where you are and links to the other three. */
.page-hero {
  padding-top: calc(var(--nav-h) + clamp(24px, 4vw, 56px));
  padding-bottom: clamp(48px, 6vw, 88px);
}
.page-hero__layout { display: grid; gap: 40px; }
.page-hero__main {
  display: grid;
  gap: 24px;
  justify-items: start;
  align-content: start;
}
.page-hero__title {
  margin-bottom: clamp(4px, 1vw, 16px);
  font-weight: 800;
  font-stretch: 72%;
  font-variation-settings: "wdth" 72;
  font-size: clamp(3.4rem, 9.6vw, 10rem);   /* fallback; main.js fits each title to its column */
  line-height: 0.86;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}
.page-hero__line { display: block; }
.js .page-hero__line { white-space: nowrap; }   /* JS sizes the title to fit, so lines never need to wrap */
.page-hero__line--serif {
  color: var(--ox);
  font-size: 0.9em;
  line-height: 0.96;
  padding-left: 0.04em;
}
.page-hero__lede {
  max-width: 44ch;
  font-size: clamp(1.1rem, 1.5vw, 1.3rem);
  line-height: 1.5;
  color: var(--ink-2);
}
/* At-a-glance tags: same pill style as the homepage program list */
.page-hero__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.page-hero__tags li {
  padding: 6px 12px;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.page-hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 28px;
  margin-top: 4px;
}

/* Big outlined program number: the hero's visual anchor on the right */
.page-hero__index {
  display: none;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  gap: 16px;
  user-select: none;
}
.page-hero__num {
  display: block;
  font-weight: 900;
  font-stretch: 62%;
  font-variation-settings: "wdth" 62;
  font-size: clamp(12rem, 36vw, 36rem);
  line-height: 0.78;
  letter-spacing: -0.02em;
  color: transparent;
  -webkit-text-stroke: 2px var(--ox);
}
.page-hero__of {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ox);
}

@media (min-width: 1024px) {
  .page-hero__layout {
    grid-template-columns: repeat(12, minmax(0, 1fr));
    column-gap: 24px;
    align-items: start;
  }
  .page-hero__main { grid-column: 1 / 8; }
  .page-hero__index {
    display: flex;
    grid-column: 8 / 13;
    align-self: center;
  }
}

/* ---------- Card grids (subjects, exams) ----------
   A 1px gap over a line-coloured ground draws the hairlines between cells. */
.spec-grid,
.exam-grid {
  display: grid;
  gap: 1px;
  background: var(--line);
  border-top: 1.5px solid var(--ink);
  border-bottom: 1.5px solid var(--ink);
}
@media (min-width: 640px) {
  .spec-grid, .exam-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (min-width: 1024px) {
  .spec-grid, .exam-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

.spec-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 28px 24px 40px 0;
  background: var(--paper);
}
@media (min-width: 640px) {
  .spec-card { padding: 28px 28px 44px; }
}
.spec-card__num,
.feature__num {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  color: var(--ox);
}
.spec-card__name {
  font-weight: 800;
  font-stretch: 72%;
  font-variation-settings: "wdth" 72;
  font-size: clamp(2rem, 3.2vw, 2.9rem);
  line-height: 0.92;
  text-transform: uppercase;
}
.spec-card__text { max-width: 34ch; color: var(--ink-2); }

.exam-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px 0 32px;
  background: var(--paper);
}
@media (min-width: 640px) {
  .exam-card { padding: 24px 28px 32px; }
}
.exam-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ox);
}
.exam-card__dot { width: 10px; height: 10px; border-radius: 50%; background: var(--ox); }
.exam-card__name {
  font-weight: 900;
  font-stretch: 68%;
  font-variation-settings: "wdth" 68;
  font-size: clamp(3.5rem, 5.6vw, 5.5rem);
  line-height: 0.86;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  text-wrap: balance;
}
.exam-card__text { max-width: 38ch; color: var(--ink-2); }
.exam-card__meta { margin: auto 0 0; padding-top: 8px; }
.exam-card__meta div {
  display: grid;
  grid-template-columns: 6.5rem minmax(0, 1fr);
  gap: 12px;
  padding: 10px 0;
  border-top: 1px solid var(--line);
}
.exam-card__meta dt {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-3);
  padding-top: 2px;
}
.exam-card__meta dd { margin: 0; font-size: 15px; line-height: 1.4; }

.exam-card--cta {
  justify-content: flex-end;
  padding: 28px 24px 32px;
  background: var(--ox);
  color: var(--paper);
}
@media (min-width: 640px) { .exam-card--cta { padding: 28px; } }
.exam-card--cta .exam-card__name {
  font-weight: 800;
  font-stretch: 72%;
  font-variation-settings: "wdth" 72;
  font-size: clamp(2.25rem, 3.4vw, 3rem);
  line-height: 0.92;
}
.exam-card--cta .exam-card__text { color: var(--rose); }
.exam-card--cta .btn { align-self: flex-start; margin-top: 8px; }
.exam-card--cta :focus-visible { outline-color: var(--paper); }

/* ---------- Feature list (college planning) ---------- */
.feature-list { border-top: 1.5px solid var(--ink); }
.feature {
  display: grid;
  grid-template-columns: 3rem minmax(0, 1fr);
  grid-template-areas:
    "num title"
    ".   text";
  gap: 10px 12px;
  padding: 24px 0 26px;
  border-bottom: 1px solid var(--line);
}
.feature:last-child { border-bottom: 1.5px solid var(--ink); }
.feature__num { grid-area: num; padding-top: 0.45em; }
.feature__title {
  grid-area: title;
  font-weight: 800;
  font-stretch: 75%;
  font-variation-settings: "wdth" 75;
  font-size: clamp(1.6rem, 2.6vw, 2.4rem);
  line-height: 0.95;
  letter-spacing: -0.005em;
  text-transform: uppercase;
}
.feature__text { grid-area: text; max-width: 44ch; font-size: 1.05rem; color: var(--ink-2); }
@media (min-width: 960px) {
  .feature {
    grid-template-columns: 5rem minmax(0, 1.25fr) minmax(0, 1fr);
    grid-template-areas: "num title text";
    column-gap: 32px;
    align-items: baseline;
    padding: 28px 0 30px;
  }
}

/* ---------- Back to programs ---------- */
/* Pinned button: appears once the program hero has scrolled away */
.back-pill {
  position: fixed;
  left: var(--gutter);
  bottom: max(20px, env(safe-area-inset-bottom));
  z-index: 40;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 10px 18px 10px 14px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--paper);
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 6px 20px rgba(21, 17, 14, 0.18);
  opacity: 0;
  visibility: hidden;
  transform: translate3d(0, 12px, 0);
  transition: opacity 0.3s var(--ease), transform 0.35s var(--ease-out), visibility 0s linear 0.35s, background-color 0.2s var(--ease);
}
.back-pill.is-shown {
  opacity: 1;
  visibility: visible;
  transform: none;
  transition: opacity 0.3s var(--ease), transform 0.35s var(--ease-out), background-color 0.2s var(--ease);
}
.back-pill:hover { background: var(--ox); }
.back-pill svg {
  width: 16px; height: 16px;
  fill: none; stroke: currentColor; stroke-width: 1.7;
  stroke-linecap: round; stroke-linejoin: round;
  transition: transform 0.3s var(--ease-out);
}
.back-pill:hover svg { transform: translateX(-3px); }

/* Swipe-back indicator: slides in from the left edge as the gesture builds */
.swipe-back {
  position: fixed;
  top: 50%;
  left: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  width: 56px; height: 56px;
  margin-top: -28px;
  border-radius: 50%;
  background: var(--paper);
  color: var(--ink);
  box-shadow: 0 0 0 1.5px var(--ink), 0 8px 24px rgba(21, 17, 14, 0.18);
  opacity: 0;
  transform: translate3d(-72px, 0, 0);
  pointer-events: none;
  transition: background-color 0.15s var(--ease), color 0.15s var(--ease);
}
.swipe-back.is-releasing { transition: transform 0.3s var(--ease-out), opacity 0.3s var(--ease); }
.swipe-back.is-ready { background: var(--ox); color: var(--paper); box-shadow: 0 0 0 1.5px var(--ox), 0 8px 24px rgba(112, 11, 19, 0.3); }
.swipe-back svg {
  width: 20px; height: 20px;
  fill: none; stroke: currentColor; stroke-width: 1.8;
  stroke-linecap: round; stroke-linejoin: round;
}

/* ---------- Closing call to action ---------- */
.cta-band__inner { display: grid; gap: 32px; }
.cta-band .consult__lede { margin-top: 0; margin-bottom: 28px; }
@media (min-width: 1024px) {
  .cta-band__inner {
    grid-template-columns: repeat(12, minmax(0, 1fr));
    column-gap: 24px;
    align-items: end;
  }
  .cta-band .consult__title { grid-column: 1 / 8; }
  .cta-band__side { grid-column: 8 / 13; padding-bottom: 12px; }
}

/* ---------- Reveal on scroll ---------- */
.js [data-reveal] {
  opacity: 0;
  transform: translate3d(0, 28px, 0);
  transition: opacity 0.9s var(--ease), transform 1.1s var(--ease-out);
}
.js .hero__line[data-reveal],
.js .page-hero__line[data-reveal] { transform: translate3d(0, 0.35em, 0); }
.js [data-reveal].is-visible { opacity: 1; transform: none; }
.js [data-delay="1"] { transition-delay: 0.08s; }
.js [data-delay="2"] { transition-delay: 0.16s; }
.js [data-delay="3"] { transition-delay: 0.24s; }
.js [data-delay="4"] { transition-delay: 0.32s; }

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    transition-delay: 0s !important;
  }
  .js [data-reveal] { opacity: 1; transform: none; }
  .band__track, .ticker__track { animation: none; }
  .motion-toggle { display: none; }
  .ticker { overflow-x: auto; }
}
