/* ============================================================================
   Hudson Row Advisors -- site stylesheet
   Load order: fonts.css -> brand-tokens.css -> site.css
   Every colour, size and font comes from a token. No literal hex below.
   ========================================================================== */

/* ---------------------------------------------------------------- 1. base */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--hr-bone);
  color: var(--hr-text);
  font-family: var(--hr-font-text);
  font-size: var(--hr-body);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img, svg, video { max-width: 100%; display: block; }
img { height: auto; }
a { color: var(--hr-forest); text-decoration-thickness: 1px; text-underline-offset: 2px; }
a:hover { color: var(--hr-hunter); }
:focus-visible { outline: 2px solid var(--hr-forest); outline-offset: 3px; border-radius: 2px; }
.skip { position: absolute; left: -9999px; top: 0; z-index: 90;
        background: var(--hr-hunter); color: var(--hr-bone); padding: .8rem 1.2rem; }
.skip:focus { left: 0; }

/* z-index scale, named rather than arbitrary */
:root { --z-sticky: 40; --z-drawer: 50; --z-skip: 90; }

/* ------------------------------------------------------------------ 2. type
   Cinzel is inscriptional capitals with no true lowercase, so it is restricted to h1 and h2
   where lines are short. Everything below is Archivo in sentence case: the contrast axis is
   serif caps against grotesque sentence case, not one flat uppercase voice. */
h1, h2 {
  font-family: var(--hr-font-display);
  font-weight: var(--hr-weight-semi);
  letter-spacing: var(--hr-display-track);
  text-transform: uppercase;
  margin: 0;
  text-wrap: balance;
  line-height: 1.14;
}
h1 { font-size: var(--hr-h1); }
h2 { font-size: var(--hr-h2); }
h3, h4 {
  font-family: var(--hr-font-text);
  font-weight: var(--hr-weight-semi);
  letter-spacing: -.005em;
  text-transform: none;
  color: var(--hr-hunter);
  margin: 0;
  text-wrap: balance;
  line-height: 1.3;
}
h3 { font-size: var(--hr-h3); }
h4 { font-size: 1rem; }
p { margin: 0 0 1.1em; text-wrap: pretty; }
p:last-child { margin-bottom: 0; }
.lede { font-size: 1.14rem; color: var(--hr-text-muted); max-width: 64ch; }
.prose { max-width: 70ch; }
.prose h2 { margin: 2.8rem 0 1rem; }
.prose h3 { margin: 2.1rem 0 .7rem; }
.prose ul, .prose ol { margin: 0 0 1.1em; padding-left: 1.15rem; }
.prose li { margin-bottom: .5em; }
.prose li::marker { color: var(--hr-gold); }
.small { font-size: .87rem; }
.muted { color: var(--hr-text-muted); }
.num { font-variant-numeric: tabular-nums; }

/* ---------------------------------------------------------------- 3. layout */
:root { --gutter: clamp(1.25rem, 4vw, 3rem); --section-y: clamp(3.75rem, 8vw, 7rem); }
.wrap { max-width: 1140px; margin: 0 auto; padding: 0 var(--gutter); }
.wrap-narrow { max-width: 760px; margin: 0 auto; padding: 0 var(--gutter); }
section { padding: var(--section-y) 0; }
.band-dark { background: var(--hr-hunter); color: var(--hr-bone); }
.band-dark h1, .band-dark h2 { color: var(--hr-bone); }
.band-dark h3, .band-dark h4 { color: var(--hr-bone); }
.band-dark p, .band-dark .lede { color: var(--hr-mist); }
.band-dark a:not(.btn) { color: var(--hr-gold); }   /* 5.68 on hunter, passes AA */
.band-tint { background: var(--hr-white); }
.rule-gold { border: 0; height: 2px; width: 52px; background: var(--hr-gold); margin: 1.3rem 0 1.6rem; }
.center { text-align: center; }
.center .rule-gold { margin-left: auto; margin-right: auto; }
.stack > * + * { margin-top: 1.1rem; }

/* ------------------------------------------------------------------- 4. nav */
.nav { position: sticky; top: 0; z-index: var(--z-sticky);
       background: var(--hr-hunter); border-bottom: 1px solid rgba(201, 162, 39, .26); }
.nav-inner { display: flex; align-items: center; gap: 1.6rem; padding: .8rem 0; }
.nav-logo { flex: none; }
.nav-logo img { height: 44px; width: auto; }
.nav-links { display: flex; gap: 1.5rem; margin-left: auto; align-items: center; }
.nav-links a { position: relative; color: var(--hr-bone); text-decoration: none;
               font-size: .89rem; font-weight: 500; padding: .3rem 0; }
.nav-links a:not(.nav-cta)::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 1px;
  background: var(--hr-gold); transform: scaleX(0); transform-origin: left;
  transition: transform .25s cubic-bezier(.2, .7, .2, 1);
}
.nav-links a:not(.nav-cta):hover::after,
.nav-links a[aria-current="page"]::after { transform: scaleX(1); }
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--hr-gold); }
.nav-cta { background: var(--hr-gold); color: var(--hr-hunter) !important;
           padding: .55rem 1.1rem !important; border-radius: var(--hr-radius-sm); font-weight: 600; }
.nav-cta:hover { background: var(--hr-bone); }
.burger { display: none; margin-left: auto; background: none; border: 0; cursor: pointer;
          padding: .5rem; width: 42px; height: 42px; }
.burger span { display: block; height: 2px; background: var(--hr-bone); margin: 5px 0;
               transition: transform .22s, opacity .22s; }
.nav.open .burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav.open .burger span:nth-child(2) { opacity: 0; }
.nav.open .burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
@media (max-width: 940px) {
  .nav-links { display: none; }
  .burger { display: block; }
  .nav.open .nav-links {
    display: flex; flex-direction: column; align-items: flex-start; gap: .2rem;
    position: absolute; top: 100%; left: 0; right: 0; z-index: var(--z-drawer);
    background: var(--hr-hunter); padding: 1rem var(--gutter) 1.6rem;
    border-bottom: 1px solid rgba(201, 162, 39, .26);
  }
  .nav.open .nav-links a { padding: .6rem 0; width: 100%; }
  .nav.open .nav-cta { margin-top: .6rem; }
}

/* ------------------------------------------------------------------ 5. hero */
.hero { background: var(--hr-hunter); color: var(--hr-bone);
        padding: clamp(3.25rem, 7vw, 5.5rem) 0 clamp(3rem, 6vw, 5rem); }
.hero h1 { color: var(--hr-bone); margin-bottom: 1.2rem; }
.hero-lede { color: var(--hr-mist); font-size: 1.16rem; max-width: 52ch; }
.hero-actions { display: flex; gap: .9rem; flex-wrap: wrap; margin-top: 2.1rem; }
.hero-note { margin-top: 1.5rem; font-size: .85rem; color: var(--hr-mist); }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
             gap: clamp(2rem, 5vw, 4rem); align-items: center; }
@media (max-width: 980px) { .hero-grid { grid-template-columns: 1fr; } }

/* --------------------------------------------------------- 6. decision map
   The signature. Colours come from custom properties so the same SVG reads correctly on the
   dark hero and on a light section. */
.map-figure { margin: 0; }
.map {
  --map-axis: var(--hr-sage-2);
  --map-grid: rgba(122, 110, 102, .16);
  --map-dot: var(--hr-forest);
  --map-label: var(--hr-hunter);
  --map-tick: var(--hr-sage);
  width: 100%; height: auto; overflow: visible;
}
.hero .map, .band-dark .map {
  --map-axis: rgba(201, 162, 39, .55);
  --map-grid: rgba(247, 245, 239, .1);
  --map-dot: var(--hr-gold);
  --map-label: var(--hr-bone);
  --map-tick: var(--hr-mist);
}
.map-grid line { stroke: var(--map-grid); stroke-width: 1; }
.map-axis { stroke: var(--map-axis); stroke-width: 1.5; }
.map-tick text { fill: var(--map-tick); font-family: var(--hr-font-text);
                 font-size: 11px; letter-spacing: .1em; text-transform: uppercase; }
.map-tick .map-axis-name { font-size: 11.5px; letter-spacing: .16em; fill: var(--map-tick); }
.map-hit { fill: transparent; }
.map-dot { fill: var(--map-dot); transform-box: fill-box; transform-origin: center;
           transition: transform .22s cubic-bezier(.2,.7,.2,1); }
.map-label { fill: var(--map-label); font-family: var(--hr-font-text);
             font-size: 12.5px; font-weight: 500; transition: fill .2s; }
.map-pt { cursor: pointer; }
.map-pt:hover .map-dot, .map-pt:focus-visible .map-dot { transform: scale(1.55); }
.map-pt:hover .map-label, .map-pt:focus-visible .map-label { fill: var(--hr-gold); font-weight: 700; }
.hero .map-pt:hover .map-label, .hero .map-pt:focus-visible .map-label { fill: var(--hr-white); }
.map-pt:focus { outline: none; }
.map-pt:focus-visible .map-hit { fill: rgba(201, 162, 39, .18); }
.map-figure figcaption { margin-top: .9rem; font-size: .78rem; color: var(--hr-sage); }
.hero .map-figure figcaption, .band-dark .map-figure figcaption { color: var(--hr-mist); }

/* The load sequence. Applied by a class, so the plot is complete without JavaScript. */
@keyframes map-draw { from { stroke-dashoffset: 520; } to { stroke-dashoffset: 0; } }
@keyframes map-pop  { from { opacity: 0; transform: scale(.5); } to { opacity: 1; transform: none; } }
.map--in .map-axis { stroke-dasharray: 520; animation: map-draw .85s cubic-bezier(.16,1,.3,1) forwards; }
.map--in .map-grid line { opacity: 0; animation: map-pop .5s ease-out .5s forwards; }
.map--in .map-pt { opacity: 0; transform-box: fill-box; transform-origin: center;
                   animation: map-pop .5s cubic-bezier(.16,1,.3,1) forwards; }
.map--in .map-pt:nth-child(1) { animation-delay: .62s; }
.map--in .map-pt:nth-child(2) { animation-delay: .70s; }
.map--in .map-pt:nth-child(3) { animation-delay: .78s; }
.map--in .map-pt:nth-child(4) { animation-delay: .86s; }
.map--in .map-pt:nth-child(5) { animation-delay: .94s; }
.map--in .map-pt:nth-child(6) { animation-delay: 1.02s; }

/* ---------------------------------------------------------------- 7. buttons */
.btn {
  display: inline-block; font-family: var(--hr-font-text); font-weight: 600;
  font-size: .92rem; padding: .82rem 1.5rem; border-radius: var(--hr-radius-sm);
  background: var(--hr-forest); color: var(--hr-white); border: 1px solid var(--hr-forest);
  cursor: pointer; text-decoration: none;
  transition: background .18s var(--hr-ease), border-color .18s var(--hr-ease), color .18s;
}
.btn:hover { background: var(--hr-hunter); border-color: var(--hr-hunter); color: var(--hr-white); }
.btn-gold { background: var(--hr-gold); border-color: var(--hr-gold); color: var(--hr-hunter); }
.btn-gold:hover { background: var(--hr-bone); border-color: var(--hr-bone); color: var(--hr-hunter); }
.btn-ghost { background: transparent; color: var(--hr-bone); border-color: rgba(247,245,239,.42); }
.btn-ghost:hover { background: rgba(247,245,239,.1); color: var(--hr-bone); border-color: var(--hr-bone); }
.btn-outline { background: transparent; color: var(--hr-forest); border-color: var(--hr-sage-2); }
.btn-outline:hover { background: var(--hr-white); color: var(--hr-hunter); border-color: var(--hr-forest); }
.u-actions-center { justify-content: center; margin-top: 0; }

/* ----------------------------------------------------------------- 8. ledger
   Ruled rows, not cards. Six instruments in six cards cannot be compared; six aligned rows can. */
.ledger { list-style: none; margin: 2.4rem 0 0; padding: 0; border-top: 1px solid var(--hr-line); }
.ledger li { border-bottom: 1px solid var(--hr-line); }
.ledger-row {
  display: grid; align-items: start; gap: .4rem 1.8rem;
  padding: 1.3rem 0; text-decoration: none; color: inherit;
  transition: background .2s var(--hr-ease);
}
/* Explicit templates rather than repeat(var(--cols)): repeat(0, ...) is invalid CSS, which
   silently discards the whole declaration and drops the chevron onto its own row.
   Fixed column widths rather than max-content, because each row is its own grid: with
   max-content the figures land at a different x on every row, which is the one thing a
   ledger exists to prevent. */
.ledger-cols-0 .ledger-row { grid-template-columns: minmax(0, 1fr) 1.4rem; }
.ledger-cols-1 .ledger-row { grid-template-columns: minmax(0, 1fr) 12rem 1.4rem; }
.ledger-cols-2 .ledger-row { grid-template-columns: minmax(0, 1fr) 11.5rem 11rem 1.4rem; }
.ledger-cols-3 .ledger-row { grid-template-columns: minmax(0, 1fr) 10.5rem 10.5rem 9.5rem 1.4rem; }
.ledger-main { display: block; min-width: 0;
               transition: transform .2s var(--hr-ease); }
.ledger-name { display: block; font-weight: 600; font-size: 1.06rem; color: var(--hr-hunter);
               transition: color .2s; }
.ledger-note { display: block; color: var(--hr-text-muted); font-size: .93rem; margin-top: .25rem;
               max-width: 62ch; }
.ledger-meta { display: block; }
.ledger-k { display: block; font-size: .66rem; letter-spacing: .14em; text-transform: uppercase;
            color: var(--hr-sage); font-weight: 700; margin-bottom: .18rem; }
.ledger-v { display: block; font-size: .93rem; color: var(--hr-hunter); font-weight: 500; }
.ledger-go { justify-self: end; align-self: center; color: var(--hr-sage); font-size: 1.05rem;
             line-height: 1; transition: transform .22s var(--hr-ease), color .2s; }
a.ledger-row:hover { background: var(--hr-white); }
a.ledger-row:hover .ledger-main { transform: translateX(8px); }
a.ledger-row:hover .ledger-name { color: var(--hr-forest); }
a.ledger-row:hover .ledger-go { transform: translateX(5px); color: var(--hr-gold); }
a.ledger-row:focus-visible { outline-offset: -2px; }
.band-dark .ledger, .band-dark .ledger li { border-color: rgba(169, 181, 169, .22); }
.band-dark .ledger-name, .band-dark .ledger-v { color: var(--hr-bone); }
.band-dark .ledger-note { color: var(--hr-mist); }
.band-dark a.ledger-row:hover { background: rgba(247, 245, 239, .05); }
.band-dark a.ledger-row:hover .ledger-name { color: var(--hr-gold); }
@media (max-width: 940px) {
  /* Explicit placement: the chevron sits beside the name, and each figure collapses to one
     inline "label value" line rather than a column that has nothing to align against. */
  .ledger-row { grid-template-columns: minmax(0, 1fr) 1.3rem !important; gap: .5rem 1rem; }
  .ledger-main { grid-column: 1; grid-row: 1; }
  .ledger-go { grid-column: 2; grid-row: 1; align-self: start; margin-top: .2rem; }
  .ledger-meta { grid-column: 1 / -1; }
  .ledger-k { display: inline; margin: 0 .5rem 0 0; }
  .ledger-v { display: inline; white-space: normal; }
}

/* ------------------------------------------------------------- 8b. two-up */
.split { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
         gap: clamp(1.8rem, 4vw, 3.2rem); margin-top: 2.2rem; }
.split > div > h3 { padding-bottom: .8rem; border-bottom: 1px solid var(--hr-gold);
                    margin-bottom: 1.1rem; }

/* ------------------------------------------------------------------ 9. steps
   Numbers appear here and nowhere else on the site, because this content genuinely is a
   sequence and the order carries information the reader needs. */
.steps { counter-reset: step; list-style: none; margin: 2.6rem 0 0; padding: 0;
         display: grid; gap: 2rem; }
.step { display: grid; grid-template-columns: 3.4rem minmax(0, 1fr); gap: 1.4rem;
         align-items: start; }
.step-body { min-width: 0; max-width: 68ch; }
.step::before {
  counter-increment: step; content: counter(step, decimal-leading-zero);
  font-family: var(--hr-font-display); font-size: 1.05rem; letter-spacing: .06em;
  color: var(--hr-forest); border-top: 2px solid var(--hr-gold); padding-top: .55rem;
}
.step h3 { margin-bottom: .4rem; }
.step p { color: var(--hr-text-muted); margin: 0; }
@media (max-width: 620px) { .step { grid-template-columns: 2.6rem 1fr; gap: 1rem; } }

/* ----------------------------------------------------------------- 10. stats */
.stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
         gap: 1.8rem; margin: 0; }
.stat { border-top: 1px solid rgba(201, 162, 39, .45); padding-top: 1rem; }
.stat dt { font-size: .84rem; color: var(--hr-mist); order: 2; }
.stat dd { margin: 0 0 .35rem; font-family: var(--hr-font-display); font-size: 1.85rem;
           letter-spacing: .04em; color: var(--hr-bone); font-weight: 600;
           font-variant-numeric: tabular-nums; }
.stat { display: flex; flex-direction: column; }

/* ----------------------------------------------------------------- 11. table */
.table-wrap { overflow-x: auto; border: 1px solid var(--hr-line);
              border-radius: var(--hr-radius); background: var(--hr-white); margin-top: 2.2rem; }
table { width: 100%; border-collapse: collapse; font-size: .93rem; }
th, td { text-align: left; padding: .9rem 1.05rem; border-bottom: 1px solid var(--hr-line);
         vertical-align: top; }
th { font-size: .66rem; letter-spacing: .14em; text-transform: uppercase;
     color: var(--hr-sage); font-weight: 700; background: var(--hr-bone); }
tr:last-child td { border-bottom: none; }
td b { color: var(--hr-hunter); }

/* ------------------------------------------------------------------- 12. faq */
.faq { border-top: 1px solid var(--hr-line); margin-top: 2.4rem; }
.faq details { border-bottom: 1px solid var(--hr-line); }
.faq summary { cursor: pointer; padding: 1.2rem 2.4rem 1.2rem 0; position: relative;
               font-weight: 600; color: var(--hr-hunter); list-style: none;
               transition: color .18s; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { color: var(--hr-forest); }
.faq summary::after {
  content: ""; position: absolute; right: .45rem; top: 1.55rem;
  width: 11px; height: 11px; border-right: 1.5px solid var(--hr-gold);
  border-bottom: 1.5px solid var(--hr-gold); transform: rotate(45deg);
  transition: transform .24s cubic-bezier(.2,.7,.2,1);
}
.faq details[open] summary::after { transform: rotate(-135deg); top: 1.75rem; }
.faq .answer { padding: 0 0 1.4rem; color: var(--hr-text-muted); max-width: 70ch; }

/* ----------------------------------------------------------------- 13. forms */
.form { display: grid; gap: 1.15rem; }
.form h3 { margin-bottom: .3rem; }
.form h3 + .row-2, .form h3 + .field { margin-top: .2rem; }
.field label { display: block; font-size: .82rem; font-weight: 600; color: var(--hr-sage);
               margin-bottom: .35rem; }
.field input, .field select, .field textarea {
  width: 100%; padding: .78rem .85rem; font-family: inherit; font-size: 1rem;
  background: var(--hr-white); color: var(--hr-text);
  border: 1px solid var(--hr-sage-2); border-radius: var(--hr-radius-sm);
  transition: border-color .18s, box-shadow .18s;
}
.field input::placeholder, .field textarea::placeholder { color: var(--hr-sage); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--hr-forest); box-shadow: 0 0 0 3px rgba(30, 74, 46, .14);
}
.field .hint { font-size: .78rem; color: var(--hr-sage); margin-top: .3rem; }
.field.invalid input, .field.invalid select, .field.invalid textarea { border-color: var(--hr-danger); }
.field .err { display: none; font-size: .78rem; color: var(--hr-danger); margin-top: .3rem;
              font-weight: 600; }
.field.invalid .err { display: block; }
.row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1.15rem; }
@media (max-width: 620px) { .row-2 { grid-template-columns: 1fr; } }
.honey { position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; }
.form-note { font-size: .8rem; color: var(--hr-sage); }
.form-status { padding: .9rem 1rem; border-radius: var(--hr-radius-sm); font-size: .9rem; display: none; }
.form-status.ok  { display: block; background: #E7F0EA; color: #235F45; }
.form-status.bad { display: block; background: #F6E3E3; color: var(--hr-danger); }

/* ------------------------------------------------------------------ 14. note
   A bounded note. Deliberately not a coloured border on one edge. */
.note { margin: 2.2rem 0 0; padding: 1.15rem 0 0; border-top: 1px solid var(--hr-gold);
        max-width: 72ch; }
.note-label { font-size: .66rem; letter-spacing: .16em; text-transform: uppercase;
              font-weight: 700; color: var(--hr-forest); margin: 0 0 .5rem; }
.band-dark .note-label { color: var(--hr-gold); }   /* 5.68 on hunter, passes */
.note-body { color: var(--hr-text-muted); font-size: .95rem; }
.note-body p:last-child { margin-bottom: 0; }
.note-body b { color: var(--hr-hunter); }
.band-dark .note-body { color: var(--hr-mist); }
.band-dark .note-body b { color: var(--hr-bone); }

/* ---------------------------------------------------------------- 15. crumbs */
.crumbs { font-size: .8rem; color: var(--hr-sage); padding: 1rem 0 0; }
.crumbs a { color: var(--hr-sage); text-decoration: none; }
.crumbs a:hover { color: var(--hr-forest); text-decoration: underline; }
.crumbs span { margin: 0 .45rem; color: var(--hr-sage); }

/* ---------------------------------------------------------------- 16. footer */
.footer { background: var(--hr-hunter); color: var(--hr-mist);
          padding: clamp(3rem, 6vw, 4.5rem) 0 2rem; border-top: 2px solid var(--hr-gold); }
.footer-grid { display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 2.2rem; }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
.footer img.mark { height: 62px; width: auto; margin-bottom: 1.1rem; }
.footer h4 { color: var(--hr-gold); font-size: .7rem; letter-spacing: .18em;
             text-transform: uppercase; margin-bottom: .9rem; }
.footer ul { list-style: none; margin: 0; padding: 0; }
.footer li { margin-bottom: .5rem; }
.footer a:not(.btn) { color: var(--hr-mist); text-decoration: none; font-size: .88rem;
                      transition: color .18s; }
.footer a:not(.btn):hover { color: var(--hr-gold); }
.footer .tagline { font-size: .9rem; max-width: 34ch; }
.footer-base { margin-top: 2.6rem; padding-top: 1.6rem;
               border-top: 1px solid rgba(169, 181, 169, .22);
               display: flex; justify-content: space-between; gap: 1.2rem; flex-wrap: wrap;
               font-size: .8rem; color: var(--hr-mist); }
.disclosure { margin-top: 1.4rem; font-size: .74rem; line-height: 1.6; color: var(--hr-mist); }

/* --------------------------------------------------------- 17. reduced motion
   Not optional. The map renders complete and static; nothing anywhere is gated behind a
   transition, so removing motion never removes content. */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important; animation-iteration-count: 1 !important;
    transition-duration: .01ms !important; scroll-behavior: auto !important;
  }
  .map--in .map-axis { stroke-dasharray: none; stroke-dashoffset: 0; }
  .map--in .map-pt, .map--in .map-grid line { opacity: 1; transform: none; }
}
@media (prefers-reduced-motion: no-preference) { html { scroll-behavior: smooth; } }
