:root {
  color-scheme: light;
  --paper: #fbfaf6;
  --paper-deep: #f3f1e8;
  --ink: #1f2521;
  --muted: #74776f;
  --green: #174d34;
  --green-dark: #103a27;
  --gold: #a47f34;
  --gold-soft: #d8c79b;
  --link: #3f6d88;
  --rule: #d8d3c6;
  --rule-strong: #c5bcaa;
  --display: "Yu Mincho", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "Noto Serif JP", serif;
  --sans: "Yu Gothic", "Hiragino Kaku Gothic ProN", "Noto Sans JP", system-ui, sans-serif;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--paper);
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--paper); }
body {
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
  background: var(--paper);
  color: var(--ink);
  font-size: 15px;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}
button, input { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: var(--link); text-underline-offset: .22em; text-decoration-thickness: 1px; }
a:hover { color: var(--green-dark); }
button:focus-visible, a:focus-visible, input:focus-visible, [tabindex="-1"]:focus-visible {
  outline: 3px solid #6e9d84;
  outline-offset: 3px;
}
.sr-only {
  position: absolute;
  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;
  z-index: 30;
  top: 12px;
  left: 12px;
  transform: translateY(-160%);
  padding: 8px 14px;
  background: var(--green-dark);
  color: #fff;
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  min-height: 80px;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  border-bottom: 1px solid var(--gold-soft);
  background: rgba(251, 250, 246, .97);
}
.brand {
  flex: 0 0 auto;
  color: #191c19;
  font-family: var(--display);
  font-size: clamp(27px, 3vw, 39px);
  font-weight: 700;
  letter-spacing: .05em;
  line-height: 1.2;
  text-decoration: none;
}
.global-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(24px, 3.6vw, 54px);
}
.global-nav a {
  color: var(--ink);
  font-size: 14px;
  font-weight: 650;
  text-decoration: none;
  white-space: nowrap;
}
.global-nav a:hover { color: var(--green); }
.menu-button {
  display: none;
  min-width: 74px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--rule-strong);
  border-radius: 2px;
  background: var(--paper);
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 700;
}
.preview-banner {
  margin: 0;
  padding: 7px 20px;
  border-bottom: 1px solid #c8a559;
  background: #f5edd6;
  color: #5d4b25;
  font-size: 12px;
  text-align: center;
}

.dictionary-grid {
  display: grid;
  grid-template-columns: minmax(310px, 30%) minmax(480px, 44%) minmax(280px, 26%);
  width: min(100%, 1510px);
  margin: 0 auto;
  border-left: 1px solid var(--rule);
  border-right: 1px solid var(--rule);
}
.lookup-panel, .term-article, .recent-panel {
  min-width: 0;
  padding: 30px clamp(26px, 3vw, 64px) 37px;
}
.lookup-panel, .term-article { border-right: 1px solid var(--rule); }
.lookup-panel { padding-right: 30px; padding-left: 38px; }
.term-article { padding-right: 64px; padding-left: 64px; }
.recent-panel { padding-right: 25px; padding-left: 25px; }

.section-title {
  margin: 0 0 18px;
  padding-left: 16px;
  border-left: 6px solid var(--green);
  font-family: var(--display);
  font-size: 23px;
  line-height: 1.35;
  letter-spacing: .06em;
}
.section-title-small { font-size: 19px; }
.search-block { margin-bottom: 20px; }
.search-form { display: grid; grid-template-columns: minmax(0, 1fr) 86px; gap: 10px; }
.search-form input {
  width: 100%;
  min-height: 45px;
  padding: 8px 14px;
  border: 1px solid #8c8c83;
  border-radius: 2px;
  background: #fff;
  color: var(--ink);
  font-size: 16px;
}
.search-form input::placeholder { color: #888b85; }
.search-form button {
  min-height: 45px;
  border: 1px solid var(--green-dark);
  border-radius: 2px;
  background: var(--green-dark);
  color: #fff;
  font-family: var(--display);
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
}
.search-form button:hover { background: #0c2e20; }
.search-example { margin: 5px 0 0; color: #8a8271; font-size: 12px; }
.mobile-browse-toggle { display: none; }
.index-section { margin-top: 20px; }
.index-section h3, .keyword-section h3 {
  margin: 0 0 10px;
  font-family: var(--display);
  font-size: 17px;
  letter-spacing: .03em;
}
.kana-grid { display: grid; grid-template-columns: repeat(10, minmax(26px, 1fr)); gap: 4px; }
.alphabet-grid { display: grid; grid-template-columns: repeat(13, minmax(22px, 1fr)); gap: 4px; }
.index-link, .symbol-link {
  min-width: 0;
  min-height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3px;
  border: 1px solid var(--rule);
  background: rgba(255, 255, 255, .64);
  color: var(--ink);
  line-height: 1;
  text-decoration: none;
}
.index-link:hover, .symbol-link:hover { border-color: var(--green); background: var(--green); color: #fff; }
.symbol-link { width: fit-content; margin-top: 7px; padding: 7px 12px; font-size: 13px; }
.category-section { margin-top: 18px; }
.category-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.category-list a { display: block; padding: 2px 0; color: var(--ink); text-decoration: none; }
.category-list a:hover { color: var(--green); }
.all-terms-link {
  display: block;
  margin-top: 18px;
  padding: 16px 0 0;
  border-top: 1px solid var(--rule);
  text-decoration: none;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: -4px 0 25px;
  color: var(--muted);
  font-size: 12px;
}
.breadcrumb a { color: var(--muted); text-decoration: none; }
.breadcrumb span + span::before, .breadcrumb a + span::before { content: "/"; margin-right: 7px; color: var(--rule-strong); }
.term-article:focus { outline: none; }
.term-header {
  margin-bottom: 22px;
  padding: 2px 0 20px 20px;
  border-left: 6px solid var(--green);
  border-bottom: 1px solid var(--gold-soft);
}
.term-header h1 {
  margin: 0 0 4px;
  font-family: var(--display);
  font-size: clamp(32px, 3vw, 42px);
  line-height: 1.3;
  letter-spacing: .06em;
}
.term-reading, .term-english { margin: 0; }
.term-reading { font-size: 17px; font-weight: 600; }
.term-english { color: var(--gold); font-family: Georgia, "Times New Roman", serif; font-size: 18px; font-weight: 700; }
.term-summary, .term-details { margin: 0; }
.term-summary { padding: 4px 0 18px; border-bottom: 1px solid var(--gold-soft); }
.term-summary > div, .term-details > div {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 10px;
  padding: 5px 0;
}
.term-summary dt, .term-details dt { color: var(--green); font-weight: 750; }
.term-summary dd, .term-details dd { margin: 0; }
.term-summary code { font-family: ui-monospace, "SFMono-Regular", Consolas, monospace; font-size: .92em; }
.status-badge {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 2px 10px;
  border: 1px solid var(--gold-soft);
  border-radius: 999px;
  background: #fffdf7;
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 750;
}
.definition-section { padding: 23px 0 25px; border-bottom: 1px solid var(--gold-soft); }
.definition-section h2 {
  margin: 0 0 10px;
  color: var(--green);
  font-family: var(--display);
  font-size: 18px;
  letter-spacing: .03em;
}
.definition-section p { max-width: 65ch; margin: 0; line-height: 2; }
.definition-section p + p { margin-top: 1em; }
.definition-lead p { font-family: var(--display); font-size: 18px; font-weight: 650; line-height: 2; }
.detailed-definition { padding-top: 20px; }
.term-details { padding-top: 17px; }
.term-details > div { grid-template-columns: 100px minmax(0, 1fr); padding: 7px 0; }
.term-details ul { margin: 0; padding-left: 1.2em; }
.relation-note { display: block; color: var(--muted); font-size: 11px; line-height: 1.5; }
.editorial-draft {
  margin: 20px 0;
  padding: 16px 18px;
  border: 1px solid #c9a96b;
  border-radius: 4px;
  background: #fffaf0;
}
.editorial-draft h2 { margin: 0 0 8px; color: var(--green); font-family: var(--display); font-size: 18px; }
.editorial-draft p { margin: 0; }
.source-list { margin: 0; padding-left: 20px; }
.source-list li + li { margin-top: 6px; }
.term-details code, .review-state code { overflow-wrap: anywhere; }
.related-articles {
  margin-top: 26px;
  padding: 22px 24px;
  border: 1px solid var(--gold-soft);
  border-left: 5px solid var(--gold);
  background: linear-gradient(135deg, rgba(255, 255, 255, .76), rgba(243, 241, 232, .66));
}
.related-articles h2 { margin: 0 0 5px; color: var(--green-dark); font-family: var(--display); font-size: 20px; letter-spacing: .04em; }
.related-articles > p { margin: 0 0 13px; color: var(--muted); font-size: 13px; }
.related-articles ul { display: grid; gap: 10px; margin: 0; padding: 0; list-style: none; }
.related-articles li { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 2px 12px; padding-top: 10px; border-top: 1px solid var(--rule); }
.related-articles li:first-child { padding-top: 0; border-top: 0; }
.related-articles a { font-family: var(--display); font-size: 16px; font-weight: 700; line-height: 1.55; }
.article-source { grid-column: 1; color: var(--muted); font-size: 12px; }
.article-review-badge { grid-column: 2; grid-row: 1 / span 2; align-self: center; padding: 2px 7px; border: 1px solid #c8a559; background: #f5edd6; color: #5d4b25; font-size: 10px; font-weight: 700; white-space: nowrap; }
.review-state {
  margin-top: 22px;
  padding: 14px 16px;
  border-left: 4px solid var(--gold);
  background: var(--paper-deep);
  font-size: 13px;
}
.review-state h2 { margin: 0 0 4px; font-family: var(--display); font-size: 16px; }
.review-state p { margin: 0; }
.update-history { margin-top: 22px; padding-top: 18px; border-top: 1px solid var(--rule); }
.update-history h2 { margin: 0 0 7px; color: var(--green); font-family: var(--display); font-size: 16px; }
.update-history ul { margin: 0; padding-left: 1.2em; color: var(--muted); font-size: 12px; }

.recent-section { margin-bottom: 28px; }
.recent-list { margin: 0; padding: 0; list-style: none; }
.recent-list li { border-bottom: 1px solid var(--rule); }
.recent-list a { display: block; padding: 10px 0; color: var(--ink); text-decoration: none; }
.recent-list a:hover { color: var(--green); }
.recent-list time, .recent-list small { display: block; color: var(--muted); font-size: 11px; line-height: 1.3; }
.text-link { display: block; margin-top: 12px; font-size: 13px; text-align: right; text-decoration: none; }
.guide-stack { border: 1px solid #e1ddcf; background: var(--paper-deep); }
.guide-item { padding: 19px 18px; }
.guide-item + .guide-item { border-top: 1px solid var(--rule-strong); }
.guide-item h3 { margin: 0 0 5px; font-family: var(--display); font-size: 16px; }
.guide-item p { margin: 0; font-size: 12px; line-height: 1.9; }
.guide-item a { display: block; margin-top: 4px; font-size: 12px; text-align: right; text-decoration: none; }
.keyword-section { margin-top: 20px; }
.keyword-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 7px; }
.keyword-grid a {
  min-height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px 5px;
  border: 1px solid var(--rule);
  background: rgba(255, 255, 255, .68);
  color: var(--ink);
  font-size: 12px;
  text-decoration: none;
}
.keyword-grid a:hover { border-color: var(--green); color: var(--green); }

.content-page {
  width: min(calc(100% - 40px), 1180px);
  min-height: 56vh;
  margin: 0 auto;
  padding: 46px 0 64px;
}
.content-page > header, .content-page > h1 {
  margin: 0 0 28px;
  padding: 4px 0 20px 20px;
  border-left: 6px solid var(--green);
  border-bottom: 1px solid var(--gold-soft);
  font-family: var(--display);
}
.content-page > header h1 { margin: 0; font-size: clamp(30px, 4vw, 42px); letter-spacing: .05em; }
.content-page > header p { margin: 6px 0 0; color: var(--muted); font-family: var(--sans); }
.term-list, .plain-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0 30px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.term-list li, .plain-list li { border-bottom: 1px solid var(--rule); }
.term-list a, .plain-list a { display: block; padding: 10px 2px; text-decoration: none; }
.annotated-term-list a { display: flex; align-items: baseline; justify-content: space-between; gap: 14px; }
.annotated-term-list small { flex: 0 0 auto; color: var(--muted); font-size: 11px; }
.category-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.category-cards a {
  min-height: 76px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 12px 14px;
  border: 1px solid var(--rule);
  background: rgba(255, 255, 255, .58);
  color: var(--ink);
  text-decoration: none;
}
.category-cards a:hover { border-color: var(--gold); color: var(--green); }
.category-cards strong { font-family: var(--display); font-size: 15px; }
.category-cards small { color: var(--muted); font-size: 11px; }
.category-directory { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.dictionary-shortcuts { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 22px; }
.dictionary-shortcuts a, .button-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 8px 14px;
  border: 1px solid var(--green);
  color: var(--green-dark);
  font-weight: 700;
  text-decoration: none;
}
.dictionary-shortcuts a:hover, .button-link:hover { background: var(--green); color: #fff; }
.index-groups { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 26px; }
.index-group { scroll-margin-top: 20px; }
.index-group h2 { margin: 0; padding-bottom: 7px; border-bottom: 2px solid var(--green); font-family: var(--display); }
.index-group ul { margin: 0; padding: 0; list-style: none; }
.index-group li { border-bottom: 1px solid var(--rule); }
.index-group a { display: block; padding: 8px 1px; text-decoration: none; }
.empty-state { padding: 24px; border: 1px solid var(--rule); background: var(--paper-deep); }
.search-page .search-form { max-width: 720px; }
.search-filters { display: flex; flex-wrap: wrap; gap: 12px; margin: 15px 0; }
.search-filters label { display: grid; grid-template-columns: auto minmax(140px, 220px); align-items: center; gap: 8px; color: var(--green-dark); font-weight: 700; }
.search-filters select { min-height: 42px; padding: 7px 30px 7px 10px; border: 1px solid var(--rule-strong); border-radius: 2px; background: #fff; color: var(--ink); }
.search-count { min-height: 1.8em; color: var(--muted); }
.search-results { margin: 24px 0 0; padding: 0; list-style: none; }
.search-results li { padding: 17px 0; border-top: 1px solid var(--rule); }
.search-results h2 { margin: 0 0 3px; font-family: var(--display); font-size: 20px; }
.search-results p { margin: 0; }
.search-result-meta { color: var(--muted); font-size: 12px; }
.information-section { max-width: 76ch; padding: 20px 0; border-bottom: 1px solid var(--rule); }
.information-section h2 { margin: 0 0 10px; color: var(--green); font-family: var(--display); font-size: 22px; }
.information-section p, .information-section ul { margin-top: 0; }
.eyebrow { margin: 0 0 4px !important; color: var(--gold) !important; font-size: 12px; font-weight: 750; letter-spacing: .12em; }
.compatibility-page .review-state { max-width: 76ch; }

.contact-page { max-width: 820px; }
.contact-form { display: grid; gap: 22px; max-width: 720px; margin: 30px 0 60px; padding: 28px; border: 1px solid var(--rule-strong); background: #fffef9; }
.contact-field { display: grid; gap: 8px; }
.contact-field label, .contact-consent { color: var(--green-dark); font-weight: 750; }
.contact-field input, .contact-field select, .contact-field textarea {
  width: 100%;
  min-height: 46px;
  padding: 10px 12px;
  border: 1px solid #aeb5ad;
  border-radius: 2px;
  background: #fff;
  color: var(--ink);
  font: inherit;
}
.contact-field textarea { min-height: 190px; resize: vertical; line-height: 1.75; }
.contact-field input:focus-visible, .contact-field select:focus-visible, .contact-field textarea:focus-visible { outline: 3px solid rgba(166, 124, 45, .28); border-color: var(--gold); }
.contact-field .optional { margin-left: 8px; color: var(--muted); font-size: 12px; font-weight: 500; }
.field-help { margin: 0; color: var(--muted); font-size: 13px; }
.contact-consent { display: grid; grid-template-columns: 22px minmax(0, 1fr); align-items: start; gap: 10px; line-height: 1.65; }
.contact-consent input { width: 20px; height: 20px; margin-top: 3px; }
.contact-form-status { min-height: 1.5em; margin: 0; color: var(--muted); }
.contact-submit { width: fit-content; min-width: 150px; min-height: 48px; padding: 10px 24px; border: 1px solid var(--green); border-radius: 2px; background: var(--green); color: #fff; font: inherit; font-weight: 750; cursor: pointer; }
.contact-submit:hover:not(:disabled) { background: var(--green-dark); }
.contact-submit:disabled { border-color: #aeb5ad; background: #d9dcd7; color: #696d68; cursor: not-allowed; }
.contact-error { color: #8a2d24; font-weight: 700; }
.contact-honeypot { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 56px;
  padding: 13px 32px;
  border-top: 1px solid var(--rule-strong);
  background: var(--paper);
  font-family: var(--display);
  font-size: 12px;
}
.site-footer p { margin: 0; }
.site-footer nav { display: flex; align-items: center; gap: 0; }
.site-footer nav a { padding: 0 22px; color: var(--ink); border-left: 1px solid var(--rule-strong); text-decoration: none; }

@media (max-width: 1120px) {
  .site-header { min-height: 72px; }
  .global-nav { gap: 20px; }
  .global-nav a { font-size: 13px; }
  .dictionary-grid { grid-template-columns: minmax(290px, 34%) minmax(450px, 1fr); }
  .search-form { grid-template-columns: minmax(0, 1fr) 76px; }
  .alphabet-grid { grid-template-columns: repeat(9, minmax(22px, 1fr)); }
  .category-list { grid-template-columns: 1fr; }
  .recent-panel {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 28px;
    border-top: 1px solid var(--rule);
  }
  .keyword-section { margin-top: 0; }
}

@media (max-width: 900px) {
  .site-header { position: relative; padding: 14px 18px; }
  .brand { font-size: clamp(23px, 6vw, 31px); }
  .menu-button { display: inline-flex; flex: 0 0 auto; }
  .global-nav {
    position: absolute;
    z-index: 20;
    top: 100%;
    right: 0;
    left: 0;
    display: none;
    align-items: stretch;
    gap: 0;
    padding: 7px 18px 15px;
    border-bottom: 1px solid var(--gold-soft);
    background: var(--paper);
  }
  .global-nav.is-open { display: grid; }
  .global-nav a { min-height: 45px; display: flex; align-items: center; border-bottom: 1px solid var(--rule); }
  .dictionary-grid { display: flex; flex-direction: column; border-right: 0; border-left: 0; }
  .lookup-panel, .term-article, .recent-panel { width: 100%; padding: 25px 20px 32px; border-right: 0; }
  .lookup-panel { border-bottom: 1px solid var(--rule); }
  .mobile-browse-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    width: 100%;
    min-height: 48px;
    padding: 10px 0;
    border: 0;
    border-top: 1px solid var(--rule);
    border-bottom: 1px solid var(--rule);
    background: transparent;
    color: var(--green-dark);
    font-weight: 700;
    text-align: left;
    cursor: pointer;
  }
  .browse-panels { display: none; }
  .browse-panels.is-open { display: block; }
  .term-article { order: 2; border-bottom: 1px solid var(--rule); }
  .recent-panel { order: 3; display: block; border-top: 0; }
  .kana-grid { grid-template-columns: repeat(10, 1fr); }
  .alphabet-grid { grid-template-columns: repeat(9, 1fr); }
  .index-link { min-height: 40px; }
  .term-header h1 { font-size: clamp(29px, 9vw, 39px); }
  .term-summary > div, .term-details > div { grid-template-columns: 82px minmax(0, 1fr); }
  .recent-panel > section + section { margin-top: 26px; }
  .content-page { width: min(calc(100% - 36px), 760px); padding-top: 32px; }
  .term-list, .plain-list, .index-groups { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .category-cards, .category-directory { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .site-footer { display: block; padding: 22px 20px; }
  .site-footer nav { margin-top: 14px; flex-wrap: wrap; gap: 8px 18px; }
  .site-footer nav a { padding: 0; border-left: 0; }
}

@media (max-width: 560px) {
  .site-header { min-height: 70px; }
  .brand { max-width: calc(100% - 88px); font-size: 24px; letter-spacing: .025em; }
  .preview-banner { padding-right: 14px; padding-left: 14px; text-align: left; }
  .lookup-panel, .term-article, .recent-panel { padding-right: 16px; padding-left: 16px; }
  .section-title { font-size: 21px; }
  .search-form { grid-template-columns: minmax(0, 1fr) 74px; gap: 7px; }
  .alphabet-grid { grid-template-columns: repeat(7, 1fr); }
  .term-header { padding-left: 14px; }
  .term-summary > div, .term-details > div { grid-template-columns: 76px minmax(0, 1fr); gap: 7px; }
  .term-details dd { overflow-wrap: anywhere; }
  .related-articles { padding: 18px; }
  .related-articles li { grid-template-columns: 1fr; }
  .article-review-badge { grid-column: 1; grid-row: auto; width: fit-content; margin-top: 4px; }
  .content-page { width: calc(100% - 32px); padding-top: 26px; }
  .content-page > header, .content-page > h1 { padding-left: 14px; }
  .term-list, .plain-list, .index-groups { grid-template-columns: 1fr; }
  .category-cards, .category-directory { grid-template-columns: 1fr; }
  .search-filters { display: grid; }
  .search-filters label { grid-template-columns: 56px minmax(0, 1fr); }
  .contact-form { gap: 19px; margin-top: 24px; padding: 20px 16px; }
  .contact-submit { width: 100%; }
}

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