/* ---------- tokens ---------- */
:root {
  --bg: #fbfaf6;
  --bg-alt: #f3f1ea;
  --ink: #15201b;
  --ink-soft: #4a554f;
  --ink-mute: #7a857f;
  --line: #e3ddce;
  --accent: #1f4d3a;
  --accent-strong: #143527;
  --warm: #c2632a;
  --max: 1140px;
  --radius: 14px;
  --shadow-sm: 0 1px 2px rgba(20,30,25,.04), 0 4px 14px rgba(20,30,25,.04);
  --shadow-md: 0 6px 24px rgba(20,30,25,.08);
  --serif: "Fraunces", Georgia, "Times New Roman", serif;
  --sans: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

/* ---------- base ---------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-strong); text-decoration: underline; text-underline-offset: 3px; }

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0;
}
h1 { font-size: clamp(2.4rem, 5vw, 4rem); line-height: 1.05; }
h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); line-height: 1.15; }
h3 { font-size: 1.25rem; line-height: 1.3; }
h4 { font-size: 1.05rem; line-height: 1.3; font-family: var(--sans); font-weight: 600; letter-spacing: 0; }

p { margin: 0 0 .9em; }

.wrap { max-width: var(--max); margin: 0 auto; padding: 0 24px; }

/* ---------- header / nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(251,250,246,.85);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  text-decoration: none;
}
.brand:hover { color: var(--accent); text-decoration: none; }
.brand-mark { color: var(--accent); display: inline-flex; }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-text strong { font-family: var(--serif); font-size: 1.05rem; font-weight: 600; }
.brand-text em { font-style: normal; font-size: .78rem; color: var(--ink-mute); letter-spacing: .02em; }

.primary-nav { display: flex; gap: 28px; }
.primary-nav a {
  color: var(--ink-soft);
  font-size: .92rem;
  font-weight: 500;
  text-decoration: none;
  position: relative;
}
.primary-nav a:hover { color: var(--accent); }
.primary-nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}
.primary-nav a:hover::after { transform: scaleX(1); }
.primary-nav a[aria-current="page"] { color: var(--accent); }
.primary-nav a[aria-current="page"]::after { transform: scaleX(1); }

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 8px 10px;
  cursor: pointer;
  flex-direction: column;
  gap: 4px;
}
.nav-toggle span { display: block; width: 18px; height: 2px; background: var(--ink); border-radius: 2px; }

@media (max-width: 760px) {
  .nav-toggle { display: inline-flex; }
  .primary-nav {
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    gap: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--line);
    padding: 8px 24px 16px;
    transform-origin: top;
    transform: scaleY(0);
    opacity: 0;
    transition: transform .2s ease, opacity .2s ease;
  }
  .primary-nav a {
    padding: 12px 0;
    border-bottom: 1px solid var(--line);
  }
  .primary-nav a:last-child { border-bottom: 0; }
  .site-header.is-open .primary-nav {
    transform: scaleY(1);
    opacity: 1;
  }
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 600;
  font-size: .95rem;
  text-decoration: none;
  transition: transform .15s ease, background .15s ease, color .15s ease, box-shadow .15s ease;
  border: 1px solid transparent;
  white-space: nowrap;
}
.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover {
  background: var(--accent-strong);
  color: #fff;
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}
.btn-ghost:hover {
  background: var(--bg-alt);
  color: var(--ink);
  text-decoration: none;
  transform: translateY(-1px);
}

/* ---------- hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(1200px 480px at 80% -10%, rgba(31,77,58,.10), transparent 60%),
    radial-gradient(800px 360px at 0% 110%, rgba(194,99,42,.08), transparent 60%),
    var(--bg);
}
.hero-inner {
  padding: 96px 24px 88px;
  position: relative;
  z-index: 1;
  max-width: var(--max);
}
.eyebrow {
  display: inline-block;
  font-size: .78rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin: 0 0 18px;
  font-weight: 600;
}
.hero h1 em {
  font-style: italic;
  color: var(--accent);
}
.lede {
  max-width: 640px;
  font-size: 1.12rem;
  color: var(--ink-soft);
  margin-top: 24px;
}
.hero-cta {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.hero-decor {
  position: absolute;
  inset: 0;
  pointer-events: none;
  color: var(--accent);
  opacity: .4;
  mask-image: linear-gradient(to right, transparent 40%, black 80%);
  -webkit-mask-image: linear-gradient(to right, transparent 40%, black 80%);
}
.hero-decor svg { width: 100%; height: 100%; }

/* ---------- sections ---------- */
.section { padding: 88px 0; border-bottom: 1px solid var(--line); }
.section:last-of-type { border-bottom: 0; }
.section-alt { background: var(--bg-alt); }
.section-head {
  max-width: 760px;
  margin: 0 auto 56px;
  text-align: center;
}
.section-head h2 { margin-bottom: 14px; }
.section-sub { color: var(--ink-soft); font-size: 1.05rem; }

/* ---------- grid utility ---------- */
.grid {
  display: grid;
  gap: 20px;
}

/* ---------- research ---------- */
.research-grid {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: #d3cbb6;
}
.card-icon {
  font-size: 1.6rem;
  margin-bottom: 14px;
  filter: saturate(.85);
}
.card h3 { margin-bottom: 8px; }
.card p { color: var(--ink-soft); margin: 0; font-size: .96rem; }

/* ---------- people ---------- */
.lead-card {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 28px;
  align-items: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  margin-bottom: 48px;
  box-shadow: var(--shadow-sm);
}
.lead-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), #2f6a51 70%, var(--warm));
  color: #fff;
  display: grid;
  place-items: center;
  font-family: var(--serif);
  font-size: 2.2rem;
  font-weight: 600;
  letter-spacing: .02em;
  overflow: hidden;
  flex-shrink: 0;
}
.lead-avatar.has-photo { background: var(--bg-alt); }
.lead-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.lead-body .role-tag {
  display: inline-block;
  font-size: .7rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(31,77,58,.08);
  padding: 4px 10px;
  border-radius: 999px;
  margin: 0 0 10px;
  font-weight: 600;
}
.lead-body h3 { font-size: 1.6rem; margin-bottom: 8px; }
.lead-bio { color: var(--ink-soft); max-width: 60ch; margin-bottom: 12px; }
.lead-links a { margin-right: 16px; font-weight: 500; font-size: .95rem; }

@media (max-width: 600px) {
  .lead-card { grid-template-columns: 1fr; text-align: center; }
  .lead-avatar { margin: 0 auto; }
  .lead-links a { margin: 0 8px; }
}

.subheading {
  font-family: var(--serif);
  font-size: 1.1rem;
  color: var(--ink-mute);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-weight: 600;
  text-align: center;
  margin: 0 0 32px;
}
.people-grid + .subheading { margin-top: 72px; }

.people-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}
.person {
  flex: 1 1 200px;
  max-width: 240px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px 16px 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}
.person:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: #d3cbb6;
}
.avatar {
  flex: 0 0 auto;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2f6a51, var(--accent) 70%);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: .03em;
}
.person:nth-child(odd) .avatar { background: linear-gradient(135deg, #c2632a, #8a4318); }
.avatar.has-photo { background: var(--bg-alt); overflow: hidden; position: relative; }
.avatar.has-photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.person-body { width: 100%; min-width: 0; }
.person-body h4 { margin: 0; font-size: .95rem; line-height: 1.3; }
.person-body h4 a { color: var(--ink); }
.person-body h4 a:hover { color: var(--accent); }

/* ---------- publications ---------- */
.pubs {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
}
.pub {
  padding: 24px 4px;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 24px;
  align-items: baseline;
}
.pub-venue {
  font-size: .8rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-weight: 600;
  margin: 0;
}
.pub h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0 0 6px;
  line-height: 1.35;
}
.pub-authors { font-size: .92rem; color: var(--ink-soft); margin: 0; }

@media (max-width: 720px) {
  .pub { grid-template-columns: 1fr; gap: 6px; }
}

/* ---------- videos ---------- */
.video-cta { text-align: center; margin-bottom: 32px; }
.video-embed {
  position: relative;
  width: 100%;
  max-width: 920px;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  overflow: hidden;
  background: #000;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--line);
}
.video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* ---------- contact ---------- */
.contact-wrap { max-width: 980px; }
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 32px;
  margin-top: 16px;
}
.contact-label {
  font-size: .76rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-weight: 600;
  margin: 0 0 8px;
}

/* ---------- footer ---------- */
.site-footer {
  background: var(--ink);
  color: #d2d8d4;
  padding: 28px 0;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: .9rem;
}
.site-footer p { margin: 0; }
.footer-links a {
  color: #d2d8d4;
  margin-left: 18px;
}
.footer-links a:first-child { margin-left: 0; }
.footer-links a:hover { color: #fff; }

/* ---------- page header (subpages) ---------- */
.page-header {
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(900px 360px at 90% -20%, rgba(31,77,58,.10), transparent 60%),
    var(--bg);
  padding: 56px 0 48px;
}
.page-header .eyebrow { margin-bottom: 14px; }
.page-header h1 { font-size: clamp(2rem, 4vw, 3.2rem); line-height: 1.1; margin-bottom: 18px; }
.page-header .lede { max-width: 640px; color: var(--ink-soft); font-size: 1.08rem; margin: 0; }

/* ---------- teaser sections (home) ---------- */
.teaser-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 32px;
}
.teaser-head .eyebrow { margin: 0; }
.teaser-head h2 { flex: 1 1 auto; margin: 0; }
.teaser-link {
  font-weight: 500;
  font-size: .95rem;
  white-space: nowrap;
}

.teaser-grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}
.teaser-card {
  display: block;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  color: var(--ink);
  text-decoration: none;
  transition: transform .15s ease, box-shadow .2s ease, border-color .2s ease;
}
.teaser-card:hover {
  text-decoration: none;
  color: var(--ink);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: #d3cbb6;
}
.teaser-card h3 { margin: 0 0 6px; font-size: 1.1rem; }
.teaser-card p { margin: 0; color: var(--ink-soft); font-size: .92rem; }
.teaser-card .card-icon { font-size: 1.4rem; margin-bottom: 12px; }

.split-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.split-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
}
.split-card h2 { font-size: 1.6rem; margin-bottom: 12px; }
.split-card p { color: var(--ink-soft); }
.split-card .btn-ghost { background: transparent; border-color: var(--line); }
@media (max-width: 720px) {
  .split-row { grid-template-columns: 1fr; }
}

.muted-line { color: var(--ink-soft); }

/* ---------- research detail layout ---------- */
.research-detail { padding: 64px 0; }
.research-row {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 40px;
  align-items: start;
}
.research-aside {
  position: sticky;
  top: 96px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}
.research-icon {
  font-size: 2.4rem;
  line-height: 1;
}
.research-tag {
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin: 0;
  font-weight: 600;
}
.research-body h2 { font-size: clamp(1.6rem, 2.5vw, 2.1rem); margin-bottom: 14px; }
.research-body p { color: var(--ink-soft); max-width: 60ch; }
.bullets {
  margin: 16px 0 0;
  padding-left: 18px;
  color: var(--ink-soft);
}
.bullets li { margin-bottom: 6px; }

@media (max-width: 720px) {
  .research-row { grid-template-columns: 1fr; gap: 16px; }
  .research-aside { position: static; flex-direction: row; align-items: center; }
}

/* ---------- year heading + cta card ---------- */
.year-heading {
  font-family: var(--serif);
  font-size: 1.4rem;
  margin: 36px 0 16px;
  color: var(--ink);
  letter-spacing: -.005em;
}
.year-heading:first-child { margin-top: 0; }

.cta-section { padding: 56px 0; }
.cta-card {
  text-align: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 48px 24px;
  max-width: 720px;
  margin: 0 auto;
  box-shadow: var(--shadow-sm);
}
.cta-card h2 { margin-bottom: 12px; }
.cta-card p { color: var(--ink-soft); }

/* ---------- pubs detail tweaks ---------- */
.pub > div h3 { font-size: 1.1rem; font-weight: 600; margin: 0 0 6px; line-height: 1.35; font-family: var(--serif); }
.pub > div .pub-authors { font-size: .92rem; color: var(--ink-soft); margin: 0; }

/* ---------- project teasers (home) ---------- */
.project-teaser-grid {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.project-teaser {
  display: block;
  text-decoration: none;
  color: var(--ink);
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.project-teaser:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: #d3cbb6;
  color: var(--ink);
  text-decoration: none;
}
.project-teaser-thumb {
  aspect-ratio: 16 / 9;
  background: var(--bg-alt);
  overflow: hidden;
}
.project-teaser-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.project-teaser-meta {
  margin: 16px 20px 4px;
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-weight: 600;
}
.project-teaser h3 {
  margin: 0 20px 18px;
  font-size: 1.1rem;
  line-height: 1.3;
}

/* ---------- projects ---------- */
.projects {
  display: grid;
  gap: 56px;
}
.project {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 40px;
  align-items: center;
}
.project:nth-child(even) .project-thumb { order: 2; }
.project-thumb {
  display: block;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-alt);
  aspect-ratio: 16 / 9;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
  transition: transform .2s ease, box-shadow .2s ease;
}
.project-thumb:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  text-decoration: none;
}
.project-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.project-body h2 {
  font-size: clamp(1.4rem, 2.2vw, 1.85rem);
  margin: 8px 0 12px;
  line-height: 1.2;
}
.project-body h2 a {
  color: var(--ink);
  text-decoration: none;
  background-image: linear-gradient(var(--accent), var(--accent));
  background-size: 0% 1px;
  background-repeat: no-repeat;
  background-position: 0 100%;
  transition: background-size .25s ease;
}
.project-body h2 a:hover {
  color: var(--ink);
  background-size: 100% 1px;
  text-decoration: none;
}
.project-meta {
  font-size: .8rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-weight: 600;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.venue-pill {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(31,77,58,.08);
  color: var(--accent);
  letter-spacing: .08em;
}
.project-authors {
  color: var(--ink-soft);
  font-size: .92rem;
  margin: 0 0 10px;
}
.project-authors strong {
  color: var(--ink);
  font-weight: 600;
  background: linear-gradient(transparent 65%, rgba(31,77,58,.14) 65%);
}
.project-desc {
  color: var(--ink-soft);
  margin: 0 0 14px;
}
.project-link a {
  font-weight: 600;
  font-size: .95rem;
}

@media (max-width: 820px) {
  .project { grid-template-columns: 1fr; gap: 20px; }
  .project:nth-child(even) .project-thumb { order: 0; }
}

/* ---------- featured card (videos page) ---------- */
.featured-card {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 0;
  background: linear-gradient(135deg, #1f4d3a 0%, #143527 60%, #0d2a1f 100%);
  color: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  text-decoration: none;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(255,255,255,.06);
  transition: transform .2s ease, box-shadow .2s ease;
  max-width: 920px;
  margin: 0 auto;
}
.featured-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(20,30,25,.16);
  text-decoration: none;
  color: #fff;
}
.featured-thumb {
  display: grid;
  place-items: center;
  background:
    radial-gradient(120px 120px at 50% 50%, rgba(255,255,255,.12), transparent 70%),
    repeating-linear-gradient(45deg, rgba(255,255,255,.04) 0 2px, transparent 2px 14px);
  min-height: 200px;
}
.featured-body { padding: 32px; }
.featured-eyebrow {
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.7);
  margin: 0 0 10px;
  font-weight: 600;
}
.featured-card h3 {
  color: #fff;
  font-family: var(--serif);
  font-size: 1.6rem;
  margin: 0 0 8px;
}
.featured-card p { color: rgba(255,255,255,.85); margin: 0 0 14px; max-width: 48ch; }
.featured-link {
  display: inline-block;
  color: #fff;
  font-weight: 600;
  border-bottom: 1px solid rgba(255,255,255,.4);
  padding-bottom: 2px;
}
@media (max-width: 720px) {
  .featured-card { grid-template-columns: 1fr; }
  .featured-thumb { min-height: 160px; }
}

/* ---------- topic grid (videos page) ---------- */
.center-heading { text-align: center; margin: 56px 0 24px; }
.topic-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
.topic {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  text-align: left;
}
.topic-icon { font-size: 1.5rem; margin-bottom: 10px; }
.topic h3 { font-size: 1.05rem; margin: 0 0 6px; }
.topic p { color: var(--ink-soft); font-size: .92rem; margin: 0; }

/* ---------- contact page tweaks ---------- */
main > section .contact-grid { margin-top: 0; }

/* ---------- motion ---------- */
@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; animation: none !important; }
  html { scroll-behavior: auto; }
}
