:root {
  --red: #d71920;
  --red-dark: #aa1117;
  --red-soft: #fff2f2;
  --ink: #25282a;
  --muted: #5e6468;
  --line: #dfe2e3;
  --soft: #f5f6f6;
  --white: #ffffff;
  --shadow: 0 18px 48px rgba(28, 32, 35, 0.09);
  --radius: 18px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
button, a { font: inherit; }
button { color: inherit; }
a { color: inherit; }
[hidden] { display: none !important; }
.skip-link { position: fixed; top: -60px; left: 18px; z-index: 100; padding: 12px 18px; background: var(--ink); color: white; border-radius: 8px; }
.skip-link:focus { top: 14px; }

.site-header { position: relative; z-index: 20; border-bottom: 1px solid var(--line); background: rgba(255,255,255,.97); }
.header-inner { max-width: var(--max); min-height: 82px; margin: auto; padding: 0 24px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 13px; text-decoration: none; line-height: 1.15; }
.brand-mark { width: 5px; height: 42px; border-radius: 3px; background: var(--red); }
.brand strong, .brand small { display: block; }
.brand strong { font-size: 1rem; letter-spacing: -.01em; }
.brand small { margin-top: 5px; color: var(--muted); font-size: .78rem; letter-spacing: .09em; text-transform: uppercase; }
.site-nav { display: flex; align-items: center; gap: 26px; }
.site-nav a { position: relative; padding: 29px 0 27px; color: #3f4447; font-size: .91rem; font-weight: 700; text-decoration: none; }
.site-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 19px; height: 2px; background: var(--red); transition: right .2s ease; }
.site-nav a:hover::after, .site-nav a:focus-visible::after { right: 0; }
.menu-toggle { display: none; border: 1px solid var(--line); background: white; border-radius: 8px; padding: 9px 12px; font-weight: 700; }

.landing-view { min-height: calc(100vh - 82px); display: grid; place-items: center; background: linear-gradient(90deg, #fff 0 67%, var(--soft) 67% 100%); }
.landing-grid { width: 100%; max-width: var(--max); margin: auto; padding: 76px 24px 86px; display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(400px, .8fr); align-items: center; gap: 82px; }
.eyebrow { margin: 0 0 13px; color: var(--red-dark); font-size: .76rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.landing-copy h1, .results-heading h1 { max-width: 720px; margin: 0; font-size: clamp(2.8rem, 7vw, 5.6rem); line-height: .97; letter-spacing: -.055em; }
.landing-copy h1 { position: relative; }
.landing-copy h1::after { content: ""; display: block; width: 84px; height: 6px; margin: 28px 0 27px; background: var(--red); border-radius: 4px; }
.landing-copy .lead { margin: 0 0 3px; font-size: 1.3rem; }
.landing-copy > p:not(.eyebrow):not(.privacy-note) { max-width: 680px; color: var(--muted); font-size: 1.08rem; }
.landing-actions { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 31px; }
.button { min-height: 46px; display: inline-flex; align-items: center; justify-content: center; gap: 10px; padding: 11px 18px; border: 2px solid transparent; border-radius: 10px; cursor: pointer; font-weight: 800; line-height: 1.25; text-align: center; text-decoration: none; transition: transform .15s ease, box-shadow .15s ease, background .15s ease; }
.button:hover { transform: translateY(-1px); }
.button:focus-visible, .choice-card:focus-visible, .text-button:focus-visible, summary:focus-visible, .menu-toggle:focus-visible { outline: 3px solid rgba(215,25,32,.28); outline-offset: 3px; }
.button-large { min-height: 54px; padding: 14px 22px; }
.button-primary { color: white; background: var(--red); box-shadow: 0 8px 20px rgba(215,25,32,.18); }
.button-primary:hover { background: var(--red-dark); }
.button-secondary { border-color: #cfd2d3; background: white; color: var(--ink); }
.button-secondary:hover { border-color: #aeb2b4; box-shadow: 0 7px 18px rgba(31,34,36,.08); }
.button-dark { background: var(--ink); color: white; }
.button[disabled] { opacity: .45; cursor: not-allowed; transform: none; box-shadow: none; }
.privacy-note { margin: 18px 0 0 !important; color: #62676a !important; font-size: .9rem !important; }
.privacy-note span { color: var(--red); font-weight: 900; }

.portal-route { max-width: 720px; display: grid; grid-template-columns: minmax(0,1fr) auto; gap: 18px; align-items: center; margin-top: 24px; padding: 19px 20px; border: 1px solid #d7dadd; border-left: 5px solid var(--ink); border-radius: 5px 12px 12px 5px; background: var(--soft); }
.portal-route-kicker { margin: 0 0 3px; color: var(--ink); font-size: .78rem; font-weight: 800; letter-spacing: .035em; text-transform: uppercase; }
.portal-route h2 { margin: 0; font-size: 1.08rem; line-height: 1.3; letter-spacing: -.015em; }
.portal-route p:not(.portal-route-kicker) { margin: 7px 0 0; color: var(--muted); font-size: .84rem; line-height: 1.45; }
.portal-route .portal-access-note, .portal-results-card .portal-access-note { color: #4c5154; font-size: .79rem; }
.portal-route-actions { display: grid; gap: 8px; justify-items: start; }
.portal-direct-link { color: #42474a; font-size: .8rem; font-weight: 800; text-underline-offset: 3px; }
.button-portal { flex: 0 0 auto; border-color: var(--ink); background: var(--ink); color: white; font-size: .84rem; }
.button-portal:hover { background: #3b4043; box-shadow: 0 7px 18px rgba(31,34,36,.14); }

.pathway-card { position: relative; padding: 28px; border: 1px solid #e1e3e4; border-top: 5px solid var(--red); border-radius: 5px 5px var(--radius) var(--radius); background: white; box-shadow: var(--shadow); }
.pathway-card::before { content: ""; position: absolute; inset: 9px -12px -12px 12px; z-index: -1; border: 1px solid #d7dadd; border-radius: 8px 8px 22px 22px; }
.pathway-top { display: flex; justify-content: space-between; gap: 16px; padding-bottom: 20px; border-bottom: 1px solid var(--line); color: var(--red-dark); font-size: .74rem; font-weight: 800; letter-spacing: .12em; }
.pathway-time { color: #74797c; font-weight: 700; letter-spacing: .03em; text-transform: none; }
.pathway-list { position: relative; list-style: none; margin: 0; padding: 20px 0 8px; }
.pathway-list::before { content: ""; position: absolute; left: 16px; top: 44px; bottom: 50px; width: 2px; background: #e5e7e8; }
.pathway-list li { position: relative; display: flex; gap: 16px; padding: 10px 0 17px; }
.pathway-number { flex: 0 0 34px; width: 34px; height: 34px; display: grid; place-items: center; z-index: 1; border: 2px solid #d5d8d9; border-radius: 50%; background: white; color: #565b5e; font-size: .82rem; font-weight: 800; }
.pathway-list li:first-child .pathway-number { border-color: var(--red); background: var(--red); color: white; }
.pathway-list strong, .pathway-list small { display: block; }
.pathway-list strong { margin-top: 3px; font-size: .98rem; }
.pathway-list small { margin-top: 3px; color: var(--muted); font-size: .87rem; }
.pathway-outcome { display: flex; gap: 14px; align-items: center; margin-top: 10px; padding: 17px; border-radius: 11px; background: var(--red-soft); }
.pathway-outcome > span { width: 36px; height: 36px; display: grid; place-items: center; border-radius: 8px; background: white; color: var(--red); font-weight: 900; }
.pathway-outcome small, .pathway-outcome strong { display: block; }
.pathway-outcome small { color: var(--red-dark); font-size: .66rem; font-weight: 800; letter-spacing: .12em; }
.pathway-outcome strong { margin-top: 2px; font-size: .91rem; }

.finder-view { min-height: 720px; background: var(--soft); }
.finder-shell { max-width: var(--max); margin: auto; padding: 52px 24px 70px; display: grid; grid-template-columns: 280px minmax(0,1fr); gap: 48px; align-items: start; }
.progress-panel { position: sticky; top: 28px; padding: 26px 24px 25px; border-radius: var(--radius); background: var(--ink); color: white; }
.progress-kicker { margin: 0 0 9px; color: #ff9b9e; font-size: .74rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.progress-panel h2 { margin: 0 0 27px; font-size: 1.4rem; line-height: 1.2; letter-spacing: -.025em; }
.progress-steps { position: relative; list-style: none; margin: 0; padding: 0; }
.progress-steps::before { content: ""; position: absolute; left: 12px; top: 17px; bottom: 20px; width: 2px; background: #4e5356; }
.progress-steps li { position: relative; display: grid; grid-template-columns: 26px 1fr; gap: 13px; align-items: start; min-height: 49px; color: #aeb3b5; font-size: .85rem; font-weight: 700; }
.progress-dot { width: 26px; height: 26px; display: grid; place-items: center; z-index: 1; border: 2px solid #5f6568; border-radius: 50%; background: var(--ink); font-size: .7rem; }
.progress-steps li.active { color: white; }
.progress-steps li.active .progress-dot { border-color: var(--red); background: var(--red); }
.progress-steps li.done .progress-dot { border-color: #ef777b; color: white; }
.progress-steps li.done { color: #e1e3e4; }
.progress-note { margin: 17px 0 0; padding-top: 18px; border-top: 1px solid #4b5053; color: #b6babd; font-size: .78rem; }
.question-panel { min-height: 590px; padding: 36px 40px 38px; border: 1px solid #e0e2e3; border-radius: var(--radius); background: white; box-shadow: 0 12px 34px rgba(30,34,36,.07); }
.question-meta { display: flex; justify-content: space-between; align-items: center; gap: 16px; color: var(--muted); font-size: .85rem; font-weight: 700; }
.text-button { padding: 4px; border: 0; background: transparent; color: var(--muted); cursor: pointer; font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }
.progress-bar { height: 4px; margin: 13px 0 33px; overflow: hidden; border-radius: 4px; background: #eceeef; }
.progress-bar span { display: block; width: 25%; height: 100%; background: var(--red); transition: width .25s ease; }
.question-header h1 { max-width: 720px; margin: 0; font-size: clamp(2rem, 4.5vw, 3rem); line-height: 1.08; letter-spacing: -.045em; }
.question-header p { max-width: 670px; margin: 13px 0 0; color: var(--muted); font-size: 1rem; }
.choices { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 12px; margin-top: 28px; }
.choice-card { position: relative; width: 100%; min-height: 90px; display: flex; align-items: flex-start; gap: 14px; padding: 17px; border: 2px solid var(--line); border-radius: 12px; background: white; cursor: pointer; text-align: left; transition: border-color .15s ease, background .15s ease, transform .15s ease; }
.choice-card:hover { border-color: #aeb3b5; transform: translateY(-1px); }
.choice-card[aria-pressed="true"] { border-color: var(--red); background: var(--red-soft); box-shadow: inset 0 0 0 1px var(--red); }
.choice-indicator { flex: 0 0 23px; width: 23px; height: 23px; display: grid; place-items: center; margin-top: 1px; border: 2px solid #aeb3b5; border-radius: 50%; color: transparent; background: white; font-size: .74rem; font-weight: 900; }
.multi .choice-indicator { border-radius: 5px; }
.choice-card[aria-pressed="true"] .choice-indicator { border-color: var(--red); background: var(--red); color: white; }
.choice-copy strong, .choice-copy small { display: block; }
.choice-copy strong { line-height: 1.3; }
.choice-copy small { margin-top: 5px; color: var(--muted); font-size: .84rem; line-height: 1.4; }
.question-actions { display: flex; justify-content: space-between; gap: 14px; margin-top: 31px; padding-top: 22px; border-top: 1px solid var(--line); }
.question-actions .button { min-width: 116px; }

.results-view { background: white; }
.results-inner { max-width: 1050px; margin: auto; padding: 66px 24px 82px; }
.results-heading { max-width: 820px; }
.results-heading h1 { font-size: clamp(2.5rem, 6vw, 4.7rem); }
.results-heading > p:last-child { max-width: 720px; margin: 18px 0 0; color: var(--muted); font-size: 1.08rem; }
.answer-summary { margin-top: 38px; padding: 22px 24px; border: 1px solid var(--line); border-left: 5px solid var(--red); border-radius: 5px 12px 12px 5px; background: var(--soft); }
.summary-heading { display: flex; justify-content: space-between; gap: 20px; align-items: baseline; }
.summary-heading h2 { margin: 0; font-size: 1rem; }
.summary-heading span { color: var(--muted); font-size: .8rem; }
.answer-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 13px; }
.answer-chip { display: inline-flex; align-items: center; gap: 8px; padding: 8px 10px 8px 12px; border: 1px solid #d4d7d8; border-radius: 999px; background: white; color: #44494c; font-size: .8rem; font-weight: 700; }
.answer-chip button { border: 0; padding: 0 2px; background: transparent; color: var(--red-dark); cursor: pointer; font-weight: 800; text-decoration: underline; text-underline-offset: 2px; }
.format-note { margin: 20px 0 7px; padding: 13px 16px; border-radius: 9px; background: #f2f3f3; color: var(--muted); font-size: .89rem; }
.recommendations { display: grid; gap: 17px; margin-top: 22px; counter-reset: result; }
.recommendation-card { counter-increment: result; display: grid; grid-template-columns: 62px minmax(0,1fr); gap: 24px; padding: 28px; border: 1px solid var(--line); border-radius: 14px; background: white; box-shadow: 0 8px 24px rgba(29,32,34,.055); }
.result-number { width: 50px; height: 50px; display: grid; place-items: center; border-radius: 50%; background: var(--ink); color: white; font-size: .9rem; font-weight: 800; }
.result-number::before { content: counter(result, decimal-leading-zero); }
.recommendation-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 20px; }
.recommendation-top h2 { margin: 2px 0 0; font-size: 1.55rem; line-height: 1.2; letter-spacing: -.025em; }
.area-label { flex: 0 0 auto; padding: 5px 9px; border-radius: 999px; background: var(--red-soft); color: var(--red-dark); font-size: .69rem; font-weight: 800; letter-spacing: .07em; text-transform: uppercase; }
.fit-reason { margin: 15px 0 20px; color: #4f5558; }
.fit-reason strong { color: var(--ink); }
.result-details { display: grid; grid-template-columns: .8fr 1.2fr; gap: 24px; padding-top: 19px; border-top: 1px solid var(--line); }
.result-details h3 { margin: 0 0 8px; font-size: .78rem; letter-spacing: .07em; text-transform: uppercase; }
.result-details p, .result-details ul { margin: 0; color: var(--muted); font-size: .9rem; }
.result-details ul { padding-left: 20px; display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 4px 20px; }
.card-actions { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 22px; }
.card-actions .button { min-height: 42px; padding: 9px 14px; font-size: .86rem; }
.onsite-card { display: grid; grid-template-columns: 56px 1fr auto; gap: 22px; align-items: center; margin-top: 26px; padding: 28px; border-radius: 14px; background: var(--red-soft); }
.onsite-icon { width: 52px; height: 52px; display: grid; place-items: center; border-radius: 12px; background: white; color: var(--red); font-size: 1.5rem; font-weight: 900; }
.onsite-card h2 { margin: 0 0 6px; font-size: 1.4rem; }
.onsite-card p:not(.eyebrow) { margin: 0; color: #575c5f; font-size: .9rem; }
.onsite-card .eyebrow { margin-bottom: 5px; }
.portal-results-card { display: grid; grid-template-columns: minmax(0,1fr) auto; gap: 26px; align-items: center; margin-top: 26px; padding: 25px 28px; border: 1px solid #d7dadd; border-left: 5px solid var(--ink); border-radius: 5px 14px 14px 5px; background: var(--soft); }
.portal-results-card .eyebrow { margin-bottom: 5px; color: #555b5e; }
.portal-results-card h2 { margin: 0; font-size: 1.35rem; line-height: 1.25; }
.portal-results-card p:not(.eyebrow) { max-width: 720px; margin: 7px 0 0; color: var(--muted); font-size: .9rem; }
.other-topics { margin-top: 26px; border: 1px solid var(--line); border-radius: 13px; overflow: hidden; }
.other-topics summary { list-style: none; display: flex; justify-content: space-between; gap: 18px; align-items: center; padding: 20px 23px; cursor: pointer; }
.other-topics summary::-webkit-details-marker { display: none; }
.other-topics summary strong, .other-topics summary small { display: block; }
.other-topics summary small { margin-top: 2px; color: var(--muted); font-size: .83rem; font-weight: 400; }
.summary-plus { color: var(--red); font-size: 1.6rem; font-weight: 300; transition: transform .15s ease; }
.other-topics[open] .summary-plus { transform: rotate(45deg); }
.other-topics-body { padding: 0 23px 22px; }
.other-topics-body p { margin: 0 0 15px; color: var(--muted); }
.results-actions { display: flex; justify-content: space-between; gap: 14px; margin-top: 34px; padding-top: 28px; border-top: 1px solid var(--line); }

.portal-view { min-height: calc(100vh - 82px); background: linear-gradient(180deg, var(--soft) 0 285px, white 285px 100%); }
.portal-result-shell { max-width: 960px; margin: auto; padding: 66px 24px 82px; }
.portal-result-shell > h1 { max-width: 780px; margin: 0; font-size: clamp(2.55rem, 6vw, 4.8rem); line-height: 1; letter-spacing: -.05em; }
.portal-result-intro { max-width: 680px; margin: 18px 0 0; color: var(--muted); font-size: 1.08rem; }
.portal-selection { display: grid; grid-template-columns: 1fr; gap: 1px; margin-top: 35px; overflow: hidden; border: 1px solid var(--line); border-radius: 12px; background: var(--line); }
.portal-selection div { padding: 17px 20px; background: white; }
.portal-selection small, .portal-selection strong { display: block; }
.portal-selection small { color: var(--red-dark); font-size: .68rem; font-weight: 800; letter-spacing: .1em; }
.portal-selection strong { margin-top: 4px; font-size: .95rem; }
.portal-destination-card { margin-top: 20px; padding: 32px; border: 1px solid #d8dbdc; border-top: 5px solid var(--red); border-radius: 5px 5px 16px 16px; background: white; box-shadow: var(--shadow); }
.portal-destination-label { margin: 0; color: var(--red-dark); font-size: .72rem; font-weight: 800; letter-spacing: .12em; }
.portal-destination-card h2 { max-width: 760px; margin: 7px 0 0; font-size: clamp(1.75rem,4vw,2.5rem); line-height: 1.12; letter-spacing: -.035em; }
.portal-destination-card > p:not(.portal-destination-label) { max-width: 760px; margin: 14px 0 0; color: var(--muted); }
.portal-result-links { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 25px; }
.portal-destination-card .portal-login-note { margin-top: 20px; padding-top: 17px; border-top: 1px solid var(--line); color: #4c5154; font-size: .86rem; }
.ownership-note { margin-top: 20px; padding: 21px 23px; border-left: 5px solid var(--ink); border-radius: 5px 11px 11px 5px; background: var(--soft); }
.ownership-note strong { display: block; }
.ownership-note ul { display: grid; gap: 9px; margin: 11px 0 0; padding-left: 21px; color: var(--muted); font-size: .9rem; }
.ownership-note li strong { display: inline; color: var(--ink); }

.site-footer { border-top: 1px solid #3d4245; background: var(--ink); color: #d9dcdd; }
.footer-inner { max-width: var(--max); margin: auto; padding: 34px 24px; display: grid; grid-template-columns: 190px 1fr auto; gap: 38px; align-items: start; }
.footer-brand strong, .footer-brand span { display: block; }
.footer-brand strong { color: white; }
.footer-brand span { margin-top: 4px; color: #aeb3b5; font-size: .76rem; letter-spacing: .1em; text-transform: uppercase; }
.footer-inner p { max-width: 670px; margin: 0; font-size: .78rem; line-height: 1.6; }
.footer-inner a { color: white; font-size: .83rem; font-weight: 800; text-underline-offset: 4px; }

@media (max-width: 960px) {
  .menu-toggle { display: inline-flex; }
  .site-nav { position: absolute; top: 82px; left: 0; right: 0; display: none; padding: 10px 24px 20px; border-bottom: 1px solid var(--line); background: white; box-shadow: 0 12px 22px rgba(25,28,30,.08); }
  .site-nav.open { display: grid; }
  .site-nav a { padding: 10px 0; }
  .site-nav a::after { display: none; }
  .landing-view { background: linear-gradient(180deg, #fff 0 66%, var(--soft) 66% 100%); }
  .landing-grid { grid-template-columns: 1fr; gap: 48px; padding-top: 58px; }
  .finder-shell { grid-template-columns: 1fr; gap: 18px; }
  .progress-panel { position: static; padding: 20px 22px; }
  .progress-panel h2, .progress-note { display: none; }
  .progress-steps { display: grid; grid-template-columns: repeat(var(--step-count, 4),1fr); gap: 6px; }
  .progress-steps::before { left: 12%; right: 12%; top: 12px; bottom: auto; width: auto; height: 2px; }
  .progress-steps li { grid-template-columns: 1fr; justify-items: center; min-height: 0; text-align: center; gap: 6px; font-size: .74rem; }
  .footer-inner { grid-template-columns: 1fr; gap: 18px; }
  .onsite-card { grid-template-columns: 56px 1fr; }
  .onsite-card .button { grid-column: 2; justify-self: start; }
  .portal-route, .portal-results-card { grid-template-columns: 1fr; }
  .portal-route .button, .portal-results-card .button { justify-self: start; }
}

@media (max-width: 680px) {
  .header-inner { min-height: 72px; padding-inline: 18px; }
  .site-nav { top: 72px; }
  .brand strong { font-size: .9rem; }
  .brand small { font-size: .68rem; }
  .landing-view { min-height: auto; }
  .landing-grid { padding: 43px 18px 60px; gap: 36px; }
  .landing-copy h1 { font-size: clamp(2.8rem, 16vw, 4.2rem); }
  .landing-actions { display: grid; }
  .button-large { width: 100%; }
  .pathway-card { padding: 22px; }
  .pathway-time { display: none; }
  .finder-shell { padding: 24px 14px 52px; }
  .progress-panel { border-radius: 12px; }
  .progress-steps li span:last-child { display: none; }
  .question-panel { min-height: 0; padding: 25px 18px 26px; border-radius: 13px; }
  .choices { grid-template-columns: 1fr; }
  .choice-card { min-height: 76px; }
  .question-actions { align-items: stretch; }
  .question-actions .button { min-width: 0; }
  .results-inner { padding: 49px 16px 64px; }
  .results-heading h1 { font-size: 2.75rem; }
  .summary-heading { display: block; }
  .summary-heading span { display: block; margin-top: 4px; }
  .recommendation-card { grid-template-columns: 1fr; gap: 14px; padding: 22px 18px; }
  .result-number { width: 40px; height: 40px; }
  .recommendation-top { display: block; }
  .area-label { display: inline-block; margin-top: 10px; }
  .result-details { grid-template-columns: 1fr; gap: 18px; }
  .result-details ul { grid-template-columns: 1fr; }
  .card-actions { display: grid; }
  .onsite-card { grid-template-columns: 1fr; padding: 22px 18px; }
  .onsite-card .button { grid-column: 1; width: 100%; }
  .portal-route { padding: 18px; }
  .portal-route .button, .portal-results-card .button { width: 100%; }
  .portal-results-card { padding: 22px 18px; }
  .results-actions { display: grid; }
  .portal-result-shell { padding: 49px 16px 64px; }
  .portal-result-shell > h1 { font-size: 2.75rem; }
  .portal-selection { grid-template-columns: 1fr; }
  .portal-destination-card { padding: 24px 19px; }
  .portal-result-links { display: grid; }
}

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