/* Missouri Depression Help - civic public-health resource
   Type: Fraunces (display serif) + Public Sans (civic body/labels)
   Signature: Missouri civic seal + brass "measure" rule */

:root {
  --navy: #12233f;
  --navy-soft: #23405f;
  --ink: #28394f;
  --ink-soft: #4d6178;
  --blue: #1a4f8a;
  --blue-dark: #123c6c;
  --azure: #2e73c4;
  --wash: #e8f0fa;
  --canvas: #f4f7fb;
  --paper: #ffffff;
  --line: #dbe4f0;
  --line-soft: #e8eef7;
  --brass: #a8742a;
  --brass-soft: #f3ece0;
  --crisis: #8e2c2c;
  --crisis-wash: #f7ece9;
  --crisis-line: #e9d3cd;

  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Public Sans", system-ui, -apple-system, "Segoe UI", sans-serif;

  --shell: 1120px;
  --read: 700px;
  --radius: 4px;
  --ease: cubic-bezier(0.4, 0.1, 0.2, 1);
}

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--canvas);
  line-height: 1.66;
  font-size: 18px;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a { color: var(--blue); text-decoration-thickness: 1px; text-underline-offset: 2px; }
a:hover { color: var(--blue-dark); }

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

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

/* ---------- Crisis strip ---------- */
.crisis-bar {
  background: var(--crisis-wash);
  color: var(--crisis);
  border-bottom: 1px solid var(--crisis-line);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.01em;
}
.crisis-bar .shell {
  padding-top: 9px; padding-bottom: 9px;
  display: flex; align-items: flex-start; gap: 11px;
}
.crisis-bar .shell::before {
  content: "";
  flex: 0 0 auto;
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--crisis);
  box-shadow: 0 0 0 3px rgba(142, 44, 44, 0.16);
  margin-top: 7px;
}
.crisis-bar .shell > span { display: block; }
.crisis-bar a { color: var(--crisis); font-weight: 700; }

/* ---------- Header ---------- */
.site-head {
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: saturate(1.4) blur(8px);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 30;
}
.site-head .shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 15px;
  padding-bottom: 15px;
  flex-wrap: wrap;
}
.brand { display: flex; align-items: center; gap: 13px; text-decoration: none; color: var(--navy); }
.brand .seal { width: 42px; height: 42px; flex: 0 0 auto; }
.brand-name {
  font-family: var(--font-display);
  font-optical-sizing: auto;
  font-weight: 600;
  font-size: 20px;
  letter-spacing: -0.01em;
  line-height: 1.05;
  color: var(--navy);
}
.brand-name span {
  display: block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 10.5px;
  color: var(--brass);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-top: 3px;
}
.nav { display: flex; gap: 26px; flex-wrap: wrap; align-items: center; }
.nav a {
  position: relative;
  text-decoration: none;
  font-weight: 600;
  font-size: 14.5px;
  color: var(--ink-soft);
  letter-spacing: 0.005em;
  padding: 2px 0;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -3px;
  width: 100%; height: 1.5px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.28s var(--ease);
}
.nav a:hover { color: var(--navy); }
.nav a:hover::after { transform: scaleX(1); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: linear-gradient(180deg, #2360a1 0%, var(--blue) 55%, var(--blue-dark) 100%);
  color: #fff;
  text-decoration: none;
  font-family: var(--font-body);
  font-weight: 600;
  padding: 13px 24px;
  border-radius: var(--radius);
  font-size: 15.5px;
  letter-spacing: 0.005em;
  border: 1px solid var(--blue);
  box-shadow: 0 1px 2px rgba(18, 35, 63, 0.14), 0 6px 18px -8px rgba(18, 35, 63, 0.28);
  transition: background 0.2s var(--ease), transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.btn:hover {
  background: linear-gradient(180deg, var(--blue) 0%, var(--blue-dark) 100%);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 2px 4px rgba(18, 35, 63, 0.18), 0 12px 26px -10px rgba(18, 35, 63, 0.36);
}
.btn .arw { transition: transform 0.2s var(--ease); }
.btn:hover .arw { transform: translateX(3px); }
.btn.ghost {
  background: transparent;
  color: var(--blue-dark);
  border-color: var(--line);
  box-shadow: none;
}
.btn.ghost:hover { background: var(--wash); border-color: var(--blue); color: var(--blue-dark); transform: translateY(-1px); }

/* ---------- Measure rule (signature divider) ---------- */
.rule {
  display: flex; align-items: center; gap: 0;
  margin: 0;
}
.rule::before, .rule::after {
  content: ""; height: 1px; background: var(--line); flex: 1;
}
.rule i {
  width: 7px; height: 7px;
  transform: rotate(45deg);
  background: var(--brass);
  margin: 0 12px;
  flex: 0 0 auto;
}

/* ---------- Eyebrow / labels ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  color: var(--brass);
  margin: 0 0 22px;
}
.eyebrow::before {
  content: "";
  width: 22px; height: 1.5px; background: var(--brass);
}

.section-title {
  font-family: var(--font-body);
  font-size: 12px; font-weight: 700; letter-spacing: 0.17em; text-transform: uppercase;
  color: var(--brass);
  margin: 0 0 26px;
  display: flex; align-items: center; gap: 10px;
}
.section-title::before {
  content: ""; width: 22px; height: 1.5px; background: var(--brass);
}

/* ---------- Hero ---------- */
.hero {
  background:
    radial-gradient(135% 120% at 12% -25%, var(--wash) 0%, rgba(232,240,250,0) 46%),
    radial-gradient(90% 110% at 108% 128%, rgba(46,115,196,0.07) 0%, rgba(46,115,196,0) 58%),
    var(--paper);
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(18,35,63,0.045) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(18,35,63,0.045) 1px, transparent 1px);
  background-size: 46px 46px;
  -webkit-mask-image: radial-gradient(120% 110% at 92% 42%, #000 0%, transparent 62%);
  mask-image: radial-gradient(120% 110% at 92% 42%, #000 0%, transparent 62%);
  opacity: 0.65;
  pointer-events: none;
  z-index: 0;
}
.hero .shell {
  padding-top: 78px; padding-bottom: 82px;
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero-copy { max-width: 34ch; }
.hero h1 {
  font-family: var(--font-display);
  font-optical-sizing: auto;
  font-weight: 500;
  font-size: clamp(36px, 5.4vw, 62px);
  line-height: 1.04;
  letter-spacing: -0.018em;
  color: var(--navy);
  margin: 0 0 22px;
}
.hero h1 em {
  font-style: italic;
  font-weight: 500;
  color: var(--blue);
}
.hero p {
  font-size: 19.5px;
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 46ch;
  margin: 0 0 32px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-art {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 340px;
}
.hero-art::before {
  content: "";
  position: absolute;
  left: 50%; top: 50%;
  width: 400px; height: 400px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle at 50% 38%, #ffffff 0%, #f5f9fd 52%, #e7f0fb 100%);
  border: 1px solid var(--line);
  box-shadow:
    0 40px 70px -40px rgba(18, 35, 63, 0.5),
    inset 0 0 0 1.5px rgba(168, 116, 42, 0.20),
    inset 0 3px 6px rgba(255, 255, 255, 0.9);
  z-index: 0;
}
.hero-art .seal-big {
  position: relative;
  z-index: 1;
  width: 300px;
  max-width: 100%;
  height: auto;
  color: var(--blue);
}

/* ---------- Sections ---------- */
section { padding: 66px 0; }
.section-head { max-width: 640px; margin-bottom: 40px; }
.section-head h2 {
  font-family: var(--font-display);
  font-optical-sizing: auto;
  font-weight: 500;
  font-size: clamp(26px, 3.4vw, 36px);
  line-height: 1.12;
  letter-spacing: -0.015em;
  color: var(--navy);
  margin: 0;
}

/* ---------- Guide index (editorial contents) ---------- */
.index { border-top: 1px solid var(--line); }
.entry {
  display: grid;
  grid-template-columns: 172px 1fr auto;
  gap: 32px;
  align-items: baseline;
  padding: 26px 8px 26px 8px;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  color: var(--navy);
  transition: background 0.25s var(--ease), padding 0.25s var(--ease);
  position: relative;
}
.entry::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 2px;
  background: var(--brass);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.28s var(--ease);
}
.entry:hover {
  background: linear-gradient(90deg, var(--canvas), rgba(244,247,251,0));
  padding-left: 22px;
}
.entry:hover::before { transform: scaleY(1); }
.entry .e-tag {
  font-size: 11.5px; font-weight: 700; letter-spacing: 0.13em; text-transform: uppercase;
  color: var(--brass);
  line-height: 1.5;
  padding-top: 6px;
}
.entry .e-body h3 {
  font-family: var(--font-display);
  font-optical-sizing: auto;
  font-weight: 500;
  font-size: 24px;
  line-height: 1.18;
  letter-spacing: -0.012em;
  color: var(--navy);
  margin: 0 0 7px;
}
.entry:hover .e-body h3 { color: var(--blue-dark); }
.entry .e-body p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 15.5px;
  line-height: 1.55;
  max-width: 52ch;
}
.entry .e-go {
  align-self: center;
  font-size: 22px;
  color: var(--line);
  transition: color 0.25s var(--ease), transform 0.25s var(--ease);
  font-family: var(--font-body);
}
.entry:hover .e-go { color: var(--blue); transform: translateX(4px); }

/* Featured lead entry */
.entry.lead {
  grid-template-columns: 172px 1fr auto;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 34px 30px;
  margin-bottom: 26px;
  box-shadow: 0 1px 2px rgba(18,35,63,0.04), 0 22px 40px -30px rgba(18,35,63,0.4);
}
.entry.lead::before { border-radius: 8px 0 0 8px; }
.entry.lead:hover { padding-left: 42px; }
.entry.lead .e-body h3 { font-size: 30px; margin-bottom: 10px; }
.entry.lead .e-body p { font-size: 17px; max-width: 56ch; }
.entry.lead .e-tag { color: var(--blue); }

/* ---------- Principles band ---------- */
.principles-wrap {
  background: var(--navy);
  color: #dbe6f5;
  position: relative;
}
.principles-wrap::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(120% 90% at 88% 0%, rgba(46,115,196,0.22), transparent 60%);
  pointer-events: none;
}
.principles-wrap .shell { position: relative; z-index: 1; }
.principles-wrap .section-title { color: #8fb3e0; }
.principles-wrap .section-title::before { background: var(--brass); }
.principles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.principle {
  padding: 0 34px;
  border-left: 1px solid rgba(255,255,255,0.13);
}
.principle:first-child { padding-left: 0; border-left: none; }
.principle .p-ico {
  display: block;
  width: 44px; height: 44px;
  color: var(--brass);
  margin-bottom: 20px;
}
.principle .p-ico svg { width: 44px; height: 44px; display: block; }
.principle strong {
  display: block;
  font-family: var(--font-display);
  font-optical-sizing: auto;
  font-weight: 500;
  font-size: 21px;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: #fff;
  margin-bottom: 9px;
}
.principle span { color: #b6c6de; font-size: 15.5px; line-height: 1.58; }

/* ---------- Provider plate ---------- */
.provider {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 36px 38px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 1px 2px rgba(18,35,63,0.04), 0 24px 44px -32px rgba(18,35,63,0.42);
}
.provider::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--azure));
}
.provider .prov-seal {
  position: absolute;
  right: -30px; bottom: -30px;
  width: 220px; height: 220px;
  color: var(--wash);
  opacity: 0.7;
  pointer-events: none;
}
.provider .prov-inner { position: relative; z-index: 1; max-width: 640px; }
.provider .badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-body);
  font-size: 11.5px; font-weight: 700; letter-spacing: 0.13em; text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 16px;
}
.provider .badge::before {
  content: ""; width: 7px; height: 7px; transform: rotate(45deg); background: var(--brass);
}
.provider h3 {
  font-family: var(--font-display);
  font-optical-sizing: auto;
  font-weight: 500;
  margin: 0 0 6px;
  font-size: 27px;
  letter-spacing: -0.015em;
  color: var(--navy);
}
.provider .loc { color: var(--brass); font-weight: 600; font-size: 14px; letter-spacing: 0.02em; margin: 0 0 16px; text-transform: uppercase; }
.provider p { margin: 0 0 20px; color: var(--ink-soft); font-size: 16.5px; }
.provider .disclosure {
  font-size: 13px; color: var(--ink-soft); font-style: italic;
  margin-top: 18px; padding-top: 16px; border-top: 1px solid var(--line-soft);
  max-width: 640px;
}

/* ---------- Article ---------- */
.article { background: var(--paper); }
.article-head {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  padding: 60px 0 40px;
}
.article-head .shell { max-width: var(--read); }
.article-head .kicker {
  font-family: var(--font-body);
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 12px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 18px;
}
.article-head .kicker::before { content: ""; width: 22px; height: 1.5px; background: var(--brass); }
.article-head h1 {
  font-family: var(--font-display);
  font-optical-sizing: auto;
  font-weight: 500;
  font-size: clamp(30px, 4.6vw, 46px);
  line-height: 1.09;
  letter-spacing: -0.02em;
  color: var(--navy);
  margin: 0 0 18px;
}
.article-head .lede {
  font-size: 20.5px;
  line-height: 1.5;
  color: var(--ink-soft);
  margin: 0;
  max-width: 60ch;
}
.byline {
  font-size: 13px; color: var(--ink-soft); margin-top: 24px;
  padding-top: 18px; border-top: 1px solid var(--line-soft);
  letter-spacing: 0.02em;
}

.article .shell { max-width: var(--read); }
.prose { padding: 30px 0 20px; }
.prose > .keytakeaways + p { font-size: 19.5px; line-height: 1.62; color: var(--ink); }
.prose > .keytakeaways + p::first-letter {
  font-family: var(--font-display);
  font-weight: 600;
  float: left;
  font-size: 66px;
  line-height: 0.82;
  padding: 8px 12px 0 0;
  color: var(--blue);
}
.prose h2 {
  font-family: var(--font-display);
  font-optical-sizing: auto;
  font-weight: 500;
  font-size: 28px;
  line-height: 1.18;
  letter-spacing: -0.015em;
  color: var(--navy);
  margin: 44px 0 12px;
}
.prose h3 { font-family: var(--font-display); font-weight: 600; font-size: 21px; margin: 30px 0 8px; color: var(--navy); }
.prose p { margin: 0 0 18px; }
.prose ul, .prose ol { margin: 0 0 20px; padding: 0; list-style: none; }
.prose ul li, .prose ol li {
  position: relative;
  margin-bottom: 12px;
  padding-left: 30px;
  line-height: 1.6;
}
.prose ul li::before {
  content: "";
  position: absolute; left: 4px; top: 12px;
  width: 6px; height: 6px; transform: rotate(45deg);
  background: var(--brass);
}
.prose ol { counter-reset: pro; }
.prose ol li { counter-increment: pro; }
.prose ol li::before {
  content: counter(pro);
  position: absolute; left: 0; top: 1px;
  font-family: var(--font-display);
  font-weight: 600; font-size: 15px;
  color: var(--blue);
  width: 20px; text-align: center;
}
.prose strong { color: var(--navy); font-weight: 700; }

.callout {
  background: var(--wash);
  border: 1px solid #d3e2f5;
  border-left: 3px solid var(--blue);
  border-radius: 6px;
  padding: 20px 24px;
  margin: 28px 0;
  font-size: 16.5px;
  line-height: 1.6;
  color: var(--ink);
}
.callout strong {
  display: block; margin-bottom: 5px;
  font-family: var(--font-display); font-weight: 600; font-size: 17px;
  color: var(--blue-dark);
}

.keytakeaways {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 26px 30px 24px;
  margin: 8px 0 34px;
  box-shadow: 0 18px 34px -30px rgba(18,35,63,0.4);
}
.keytakeaways h2 {
  margin: 0 0 16px; font-size: 12px; text-transform: uppercase; letter-spacing: 0.16em;
  font-family: var(--font-body); font-weight: 700; color: var(--brass);
  display: flex; align-items: center; gap: 9px;
}
.keytakeaways h2::before { content: ""; width: 22px; height: 1.5px; background: var(--brass); }
.keytakeaways ul { margin: 0; padding: 0; list-style: none; }
.keytakeaways li {
  position: relative;
  margin-bottom: 12px;
  padding-left: 28px;
  font-size: 16.5px;
  line-height: 1.55;
  color: var(--ink);
}
.keytakeaways li:last-child { margin-bottom: 0; }
.keytakeaways li::before {
  content: "";
  position: absolute; left: 2px; top: 10px;
  width: 6px; height: 6px; transform: rotate(45deg);
  background: var(--brass);
}

.related { border-top: 1px solid var(--line); margin-top: 40px; padding-top: 28px; }
.related h2 {
  font-family: var(--font-body);
  font-size: 12px; text-transform: uppercase; letter-spacing: 0.16em; color: var(--brass);
  margin: 0 0 18px;
  display: flex; align-items: center; gap: 9px;
}
.related h2::before { content: ""; width: 22px; height: 1.5px; background: var(--brass); }
.related a {
  display: block;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 18px;
  letter-spacing: -0.01em;
  text-decoration: none;
  color: var(--navy);
  padding: 12px 0;
  border-bottom: 1px solid var(--line-soft);
  transition: color 0.2s var(--ease), padding-left 0.2s var(--ease);
}
.related a:last-child { border-bottom: none; }
.related a:hover { color: var(--blue); padding-left: 8px; }

/* ---------- Footer ---------- */
.site-foot {
  background: var(--navy);
  color: #b9c8de;
  margin-top: 0;
  font-size: 14.5px;
  border-top: 3px solid var(--brass);
}
.site-foot .shell { padding-top: 56px; padding-bottom: 44px; }
.foot-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 44px; }
.site-foot a { color: #cdd9ea; text-decoration: none; transition: color 0.18s var(--ease); }
.site-foot a:hover { color: #fff; }
.foot-brand-row { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.foot-brand-row .seal { width: 40px; height: 40px; flex: 0 0 auto; }
.foot-brand {
  font-family: var(--font-display);
  font-weight: 600;
  color: #fff; font-size: 19px;
  letter-spacing: -0.01em;
  line-height: 1.05;
}
.foot-brand span {
  display: block;
  font-family: var(--font-body);
  font-weight: 600; font-size: 10px; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--brass); margin-top: 3px;
}
.site-foot .foot-lead { color: #9fb2cd; max-width: 34ch; font-size: 14.5px; line-height: 1.6; }
.foot-col h4 {
  font-family: var(--font-body);
  font-size: 11.5px; text-transform: uppercase; letter-spacing: 0.15em; color: #7f97ba;
  margin: 0 0 16px; font-weight: 700;
}
.foot-col a { display: block; margin-bottom: 11px; font-size: 14.5px; }
.disclaimer {
  border-top: 1px solid rgba(255,255,255,0.12);
  margin-top: 38px; padding-top: 24px;
  font-size: 12.5px; color: #7f93b2; line-height: 1.65;
  max-width: 900px;
}

/* ---------- Responsive ---------- */
@media (max-width: 940px) {
  .hero .shell { grid-template-columns: 1fr; gap: 8px; padding-top: 54px; padding-bottom: 58px; }
  .hero-copy { max-width: 100%; }
  .hero-art { min-height: 300px; order: -1; margin-bottom: 4px; }
  .hero-art::before { width: 264px; height: 264px; }
  .hero-art .seal-big { width: 190px; }
  .principles { grid-template-columns: 1fr; gap: 30px; }
  .principle { padding: 0 0 0 22px; border-left: 1px solid rgba(255,255,255,0.13); }
  .principle:first-child { padding-left: 22px; border-left: 1px solid rgba(255,255,255,0.13); }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .foot-col.wide { grid-column: 1 / -1; }
}
@media (max-width: 680px) {
  body { font-size: 17px; }
  .shell { padding: 0 20px; }
  section { padding: 48px 0; }
  .entry, .entry.lead { grid-template-columns: 1fr; gap: 6px; padding: 22px 6px; }
  .entry .e-tag { padding-top: 0; }
  .entry .e-go { display: none; }
  .entry.lead { padding: 26px 22px; }
  .entry.lead:hover, .entry:hover { padding-left: 22px; }
  .entry.lead .e-body h3 { font-size: 25px; }
  .nav { gap: 16px 18px; width: 100%; }
  .nav a { font-size: 14px; }
  .provider { padding: 28px 22px; }
  .provider .prov-seal { width: 150px; right: -24px; bottom: -24px; }
  .foot-grid { grid-template-columns: 1fr; gap: 28px; }
  .prose > p:first-of-type::first-letter { font-size: 54px; }
}

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