/* David Nienhaus IT-Dienstleistungen — shared stylesheet
   Light + Dark. System fonts only (no CDN). Mobile-first. */

/* ---------- Tokens ---------- */
:root {
  --font-sans: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-mono: ui-monospace, "SF Mono", "Cascadia Mono", "Segoe UI Mono", Menlo, Consolas, monospace;

  --primary: #1E63D6;
  --primary-strong: #164fac;
  --grey: #808A96;

  --bg: #ffffff;
  --bg-alt: #f4f6f9;
  --surface: #ffffff;
  --text: #16191d;
  --text-soft: #4a525c;
  --muted: #737d89;
  --line: #e2e6ec;
  --line-strong: #cdd4dd;
  --accent-soft: rgba(30, 99, 214, 0.08);

  --shadow: 0 1px 2px rgba(22, 25, 29, 0.04), 0 12px 32px rgba(22, 25, 29, 0.05);

  --maxw: 1160px;
  --gut: clamp(1.25rem, 4vw, 3rem);
  --radius: 4px;
}

@media (prefers-color-scheme: dark) {
  :root:not(.theme-light) {
    --primary: #5c8ef0;
    --primary-strong: #7ba6f5;
    --grey: #8b95a1;

    --bg: #16191d;
    --bg-alt: #1b1f24;
    --surface: #1d2127;
    --text: #e9ecf0;
    --text-soft: #b7bec8;
    --muted: #8b95a1;
    --line: #2b3138;
    --line-strong: #3a424b;
    --accent-soft: rgba(92, 142, 240, 0.12);

    --shadow: 0 1px 2px rgba(0, 0, 0, 0.3), 0 16px 40px rgba(0, 0, 0, 0.35);
  }
}

:root.theme-dark {
  --primary: #5c8ef0;
  --primary-strong: #7ba6f5;
  --grey: #8b95a1;

  --bg: #16191d;
  --bg-alt: #1b1f24;
  --surface: #1d2127;
  --text: #e9ecf0;
  --text-soft: #b7bec8;
  --muted: #8b95a1;
  --line: #2b3138;
  --line-strong: #3a424b;
  --accent-soft: rgba(92, 142, 240, 0.12);

  --shadow: 0 1px 2px rgba(0, 0, 0, 0.3), 0 16px 40px rgba(0, 0, 0, 0.35);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
h1, h2, h3, h4 { line-height: 1.15; font-weight: 650; letter-spacing: -0.01em; margin: 0; text-wrap: balance; }
p { margin: 0; text-wrap: pretty; }
a { color: var(--primary); text-decoration: none; }
a:hover { color: var(--primary-strong); text-decoration: underline; text-underline-offset: 3px; }
ul { margin: 0; padding: 0; }
:focus-visible { outline: 2px solid var(--primary); outline-offset: 3px; border-radius: 2px; }

/* ---------- Layout helpers ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gut); }
.section { padding-block: clamp(3.5rem, 8vw, 6.5rem); }
.section--alt { background: var(--bg-alt); }
.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--primary); color: #fff; padding: .6rem 1rem; border-radius: var(--radius);
}
.skip-link:focus { left: 1rem; top: 1rem; }

/* Eyebrow / section label motif */
.eyebrow {
  font-family: var(--font-mono);
  font-size: .72rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  margin: 0 0 1.1rem;
}
.eyebrow::before {
  content: "";
  width: 9px; height: 9px;
  background: var(--primary);
  display: inline-block;
  flex: none;
}
.eyebrow--num { color: var(--muted); }
.eyebrow--num b { color: var(--primary); font-weight: 600; }

.lede { font-size: clamp(1.05rem, 2vw, 1.28rem); color: var(--text-soft); line-height: 1.6; max-width: 60ch; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: saturate(1.4) blur(8px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem; min-height: 76px;
}
.wordmark { display: inline-block; line-height: 1; }
.wordmark__name { font-size: 1.2rem; font-weight: 700; letter-spacing: -0.02em; color: var(--text); }
.wordmark__name b { color: var(--primary); font-weight: 700; }
.wordmark__claim {
  display: block; margin-top: .28rem;
  font-family: var(--font-mono); font-size: .58rem; letter-spacing: .34em;
  text-transform: uppercase; color: var(--muted);
}
a.wordmark:hover { text-decoration: none; }
a.wordmark:hover .wordmark__name b { color: var(--primary-strong); }

.nav { display: flex; align-items: center; gap: clamp(1rem, 2vw, 1.9rem); }
.nav__links { display: flex; align-items: center; gap: clamp(1rem, 2vw, 1.9rem); list-style: none; }
.nav__links a {
  color: var(--text-soft); font-size: .96rem; font-weight: 500; letter-spacing: .01em;
  padding-block: .3rem; position: relative; white-space: nowrap;
}
.nav__links a:hover { color: var(--text); text-decoration: none; }
.nav__links a[aria-current="page"] { color: var(--text); }
.nav__links a[aria-current="page"]::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px; height: 2px; background: var(--primary);
}

.nav__tools { display: flex; align-items: center; gap: .5rem; padding-left: .3rem; }
.lang-switch { display: flex; align-items: center; font-family: var(--font-mono); font-size: .78rem; }
.lang-switch a, .lang-switch span { padding: .25rem .1rem; color: var(--muted); letter-spacing: .04em; }
.lang-switch a:hover { color: var(--text); text-decoration: none; }
.lang-switch .is-active { color: var(--text); font-weight: 600; }
.lang-switch .sep { color: var(--line-strong); padding-inline: .35rem; }

.icon-btn {
  display: inline-grid; place-items: center;
  width: 40px; height: 40px; border-radius: var(--radius);
  border: 1px solid var(--line); background: transparent; color: var(--text-soft);
  cursor: pointer; padding: 0;
}
.icon-btn:hover { color: var(--text); border-color: var(--line-strong); background: var(--bg-alt); }
.icon-btn svg { width: 18px; height: 18px; }
.theme-toggle .icon-moon { display: none; }
.theme-toggle .icon-sun { display: block; }
:root.theme-dark .theme-toggle .icon-moon,
.nav-menu-btn { display: none; }
@media (prefers-color-scheme: dark) {
  :root:not(.theme-light) .theme-toggle .icon-sun { display: none; }
  :root:not(.theme-light) .theme-toggle .icon-moon { display: block; }
}
:root.theme-dark .theme-toggle .icon-sun { display: none; }
:root.theme-dark .theme-toggle .icon-moon { display: block; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .6rem;
  font-weight: 600; font-size: 1rem; line-height: 1;
  padding: .95rem 1.5rem; border-radius: var(--radius);
  border: 1px solid transparent; cursor: pointer; transition: background .15s, border-color .15s, transform .1s;
}
.btn:hover { text-decoration: none; }
.btn:active { transform: translateY(1px); }
.btn--primary { background: var(--primary); color: #fff; }
.btn--primary:hover { background: var(--primary-strong); color: #fff; }
.btn--ghost { background: transparent; color: var(--text); border-color: var(--line-strong); }
.btn--ghost:hover { border-color: var(--primary); color: var(--primary); }
.btn--lg { padding: 1.15rem 1.9rem; font-size: 1.08rem; }
.btn .arrow { transition: transform .15s; }
.btn:hover .arrow { transform: translateX(3px); }

/* ---------- Hero ---------- */
.hero { padding-top: clamp(3rem, 7vw, 5.5rem); padding-bottom: clamp(3.5rem, 8vw, 6rem); position: relative; overflow: hidden; }
.hero__grid { display: grid; grid-template-columns: 1fr; gap: clamp(2.5rem, 5vw, 4rem); align-items: start; }
.hero h1 { font-size: clamp(2.2rem, 5.4vw, 3.8rem); font-weight: 700; letter-spacing: -0.025em; }
.hero h1 .hl { color: var(--primary); }
.hero__lede { margin-top: 1.6rem; }
.hero__cta { margin-top: 2.4rem; display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; }
.hero__meta { margin-top: 2.6rem; display: flex; flex-wrap: wrap; gap: 1.4rem 2.2rem; padding-top: 1.8rem; border-top: 1px solid var(--line); }
.hero__meta div { max-width: 22ch; }
.hero__meta dt { font-family: var(--font-mono); font-size: .68rem; letter-spacing: .16em; text-transform: uppercase; color: var(--primary); margin-bottom: .35rem; }
.hero__meta dd { margin: 0; font-size: .92rem; color: var(--text-soft); line-height: 1.5; }

/* Hero accent panel (asymmetric detail) */
.hero__panel {
  border: 1px solid var(--line); border-radius: var(--radius);
  background: var(--surface); box-shadow: var(--shadow);
  padding: 1.6rem 1.7rem;
}
.hero__panel-top { display: flex; align-items: center; justify-content: space-between; padding-bottom: 1.1rem; border-bottom: 1px solid var(--line); }
.hero__panel-top span { font-family: var(--font-mono); font-size: .7rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }
.hero__panel ul { list-style: none; margin-top: 1.1rem; display: grid; gap: .9rem; }
.hero__panel li { position: relative; padding-left: 1.5rem; font-size: .95rem; color: var(--text-soft); }
.hero__panel li::before { content: ""; position: absolute; left: 0; top: .5rem; width: 7px; height: 7px; background: var(--primary); }
.hero__panel li b { color: var(--text); font-weight: 600; }

/* ---------- Section heading ---------- */
.sec-head { max-width: 62ch; margin-bottom: clamp(2rem, 4vw, 3rem); }
.sec-head h2 { font-size: clamp(1.6rem, 3.4vw, 2.5rem); }
.sec-head p { margin-top: 1rem; color: var(--text-soft); font-size: 1.08rem; }

/* ---------- Service teaser list (varied, not identical cards) ---------- */
.svc-list { display: grid; gap: 0; border-top: 1px solid var(--line); }
.svc-row {
  display: grid; grid-template-columns: auto 1fr; gap: 1.2rem 2rem;
  padding-block: clamp(1.8rem, 3.5vw, 2.6rem);
  border-bottom: 1px solid var(--line);
}
.svc-row__num { font-family: var(--font-mono); font-size: .9rem; color: var(--primary); padding-top: .4rem; }
.svc-row h3 { font-size: clamp(1.25rem, 2.4vw, 1.6rem); }
.svc-row .tag { display: inline-block; margin-left: .8rem; font-family: var(--font-mono); font-size: .62rem; letter-spacing: .14em; text-transform: uppercase; color: var(--primary); background: var(--accent-soft); padding: .28rem .55rem; border-radius: 2px; vertical-align: middle; }
.svc-row p { margin-top: .8rem; color: var(--text-soft); max-width: 65ch; }
.svc-row .more { display: inline-flex; align-items: center; gap: .45rem; margin-top: 1rem; font-weight: 600; font-size: .95rem; }
@media (min-width: 720px) {
  .svc-row { grid-template-columns: 3rem 1fr; }
}

/* ---------- Trust strip ---------- */
.trust { display: grid; gap: 1.5rem; grid-template-columns: 1fr; }
.trust__item { padding: 1.7rem 1.8rem; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); }
.trust__item h3 { font-size: 1.15rem; display: flex; align-items: center; gap: .7rem; }
.trust__item h3::before { content: ""; width: 10px; height: 10px; background: var(--primary); flex: none; }
.trust__item p { margin-top: .7rem; color: var(--text-soft); font-size: .96rem; }

/* ---------- CTA band ---------- */
.cta-band { border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); box-shadow: var(--shadow); padding: clamp(2rem, 5vw, 3.4rem); position: relative; overflow: hidden; }
.cta-band::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 5px; background: var(--primary); }
.cta-band__grid { display: grid; gap: 1.8rem; align-items: center; }
.cta-band h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); }
.cta-band p { margin-top: .9rem; color: var(--text-soft); max-width: 52ch; }
@media (min-width: 820px) {
  .cta-band__grid { grid-template-columns: 1fr auto; gap: 2.5rem; }
}

/* ---------- Detailed service blocks (Leistungen) ---------- */
.svc-detail { display: grid; gap: clamp(2.5rem, 6vw, 4.5rem); }
.svc-block { display: grid; gap: 2rem; grid-template-columns: 1fr; scroll-margin-top: 100px; }
.svc-block__aside { }
.svc-block__index { font-family: var(--font-mono); font-size: .8rem; letter-spacing: .1em; color: var(--muted); }
.svc-block__index b { color: var(--primary); }
.svc-block h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); margin-top: .6rem; }
.svc-block .focus-flag { display: inline-block; margin-top: .9rem; font-family: var(--font-mono); font-size: .64rem; letter-spacing: .14em; text-transform: uppercase; color: #fff; background: var(--primary); padding: .3rem .6rem; border-radius: 2px; }
.benefit { border-left: 3px solid var(--primary); padding: .2rem 0 .2rem 1.3rem; margin-bottom: 1.6rem; }
.benefit p { font-size: 1.12rem; color: var(--text); line-height: 1.55; }
.svc-block__body > p { color: var(--text-soft); margin-bottom: 1.1rem; }
.tech-note { margin-top: 1.6rem; padding: 1.3rem 1.4rem; background: var(--bg-alt); border: 1px solid var(--line); border-radius: var(--radius); }
.tech-note h4 { font-family: var(--font-mono); font-size: .7rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); margin-bottom: .7rem; }
.tech-note p { font-size: .95rem; color: var(--text-soft); }
.tech-note dl { display: grid; gap: .8rem; margin: 0; }
.tech-note dt { font-weight: 600; font-size: .95rem; color: var(--text); }
.tech-note dd { margin: .15rem 0 0; font-size: .92rem; color: var(--text-soft); }
@media (min-width: 860px) {
  .svc-block { grid-template-columns: 15rem 1fr; gap: 3rem; }
}

/* Callout for the "no hardware sales" framing */
.callout { border: 1px solid var(--line-strong); border-radius: var(--radius); padding: 1.6rem 1.8rem; background: var(--accent-soft); }
.callout h3 { font-size: 1.15rem; margin-bottom: .6rem; }
.callout p { color: var(--text-soft); font-size: .98rem; }

/* ---------- About ---------- */
.about-grid { display: grid; gap: clamp(2rem, 5vw, 3.5rem); grid-template-columns: 1fr; }
.about-grid h2 { font-size: clamp(1.4rem, 2.6vw, 1.9rem); margin-bottom: 1rem; }
.about-grid p { color: var(--text-soft); margin-bottom: 1.1rem; }
.values { list-style: none; display: grid; gap: 1rem; margin-top: .5rem; }
.values li { position: relative; padding-left: 1.6rem; }
.values li::before { content: ""; position: absolute; left: 0; top: .5rem; width: 9px; height: 9px; background: var(--primary); }
.values b { color: var(--text); display: block; }
.values span { color: var(--text-soft); font-size: .95rem; }
.portrait {
  aspect-ratio: 4 / 5; border: 1px solid var(--line); border-radius: var(--radius);
  background:
    repeating-linear-gradient(135deg, var(--bg-alt) 0 12px, transparent 12px 24px), var(--surface);
  display: grid; place-content: center; text-align: center; color: var(--muted);
  font-family: var(--font-mono); font-size: .72rem; letter-spacing: .1em; padding: 1rem;
}
.about-grid > div { max-width: 68ch; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; gap: 1.8rem; grid-template-columns: 1fr; align-items: start; }
.booking {
  border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface);
  box-shadow: var(--shadow); padding: clamp(1.8rem, 4vw, 2.8rem); position: relative; overflow: hidden;
}
.booking::before { content: ""; position: absolute; left: 0; top: 0; right: 0; height: 5px; background: var(--primary); }
.booking .eyebrow { margin-top: .3rem; }
.booking h2 { font-size: clamp(1.4rem, 3vw, 2rem); }
.booking p { margin-top: .9rem; color: var(--text-soft); max-width: 46ch; }
.booking .btn { margin-top: 1.8rem; }
.booking small { display: block; margin-top: 1.2rem; color: var(--muted); font-size: .85rem; }
.contact-info { display: grid; gap: 1.3rem; }
.contact-info__card { border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); padding: 1.4rem 1.5rem; }
.contact-info dl { margin: 0; display: grid; gap: 1.1rem; }
.contact-info dt { font-family: var(--font-mono); font-size: .66rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); margin-bottom: .25rem; }
.contact-info dd { margin: 0; color: var(--text); font-size: 1rem; }
.contact-info dd a { font-weight: 500; }
@media (min-width: 880px) {
  .contact-grid { grid-template-columns: 1.4fr 1fr; gap: 2.4rem; }
}

/* ---------- Legal (Impressum / Datenschutz) ---------- */
.legal { max-width: 760px; }
.legal h1 { font-size: clamp(1.8rem, 4vw, 2.6rem); margin-bottom: 1.4rem; }
.legal h2 { font-size: 1.3rem; margin-top: 2.6rem; margin-bottom: .8rem; padding-top: 1.6rem; border-top: 1px solid var(--line); }
.legal h3 { font-size: 1.05rem; margin-top: 1.6rem; margin-bottom: .5rem; }
.legal p, .legal li { color: var(--text-soft); margin-bottom: .9rem; }
.legal ul { padding-left: 1.2rem; list-style: disc; }
.legal ul li { margin-bottom: .4rem; }
.legal address { font-style: normal; color: var(--text); line-height: 1.9; }
.legal code { font-family: var(--font-mono); font-size: .88em; background: var(--bg-alt); border: 1px solid var(--line); border-radius: 3px; padding: .05rem .35rem; color: var(--text); }
.fill { background: #ffe9a8; color: #6b4e00; padding: .05rem .4rem; border-radius: 2px; font-weight: 600; font-size: .92em; }
:root.theme-dark .fill { background: #4a3c12; color: #ffdf8a; }
@media (prefers-color-scheme: dark) { :root:not(.theme-light) .fill { background: #4a3c12; color: #ffdf8a; } }
.note-box { border: 1px solid var(--line-strong); background: var(--bg-alt); border-radius: var(--radius); padding: 1.1rem 1.3rem; font-size: .92rem; color: var(--text-soft); margin-bottom: 1.6rem; }

/* Legal page: head, facts table, numbered sections */
.legal-head { max-width: 760px; margin-bottom: 2.6rem; }
.legal-head h1 { font-size: clamp(1.8rem, 4vw, 2.6rem); margin-bottom: .7rem; }
.legal-head .lead { color: var(--text-soft); font-size: 1.02rem; max-width: 56ch; text-wrap: pretty; }

.legal-facts { max-width: 880px; margin: 0 0 3.4rem; border: 1px solid var(--line-strong); border-radius: var(--radius); background: var(--bg-alt); padding: .35rem 1.5rem; }
.legal-facts dl { display: grid; }
.legal-facts dl > div { padding: 1.05rem 0; border-top: 1px solid var(--line); }
.legal-facts dl > div:first-child { border-top: none; }
.legal-facts dt { font-family: var(--font-mono); font-size: .7rem; letter-spacing: .09em; text-transform: uppercase; color: var(--muted); margin-bottom: .3rem; }
.legal-facts dd { color: var(--text); line-height: 1.7; }
.legal-facts dd address { font-style: normal; line-height: 1.7; }
.legal-facts .fact-note { display: block; color: var(--muted); font-size: .85rem; margin-top: .1rem; }
@media (min-width: 720px) {
  .legal-facts dl > div { display: grid; grid-template-columns: 210px 1fr; gap: 1.75rem; }
  .legal-facts dt { margin-bottom: 0; padding-top: .28rem; }
}

.legal-body { counter-reset: lsec; }
.legal-body h2 { counter-increment: lsec; display: flex; gap: .75rem; align-items: baseline; }
.legal-body h2::before { content: counter(lsec, decimal-leading-zero); flex: none; font-family: var(--font-mono); font-size: .78rem; font-weight: 500; letter-spacing: .05em; color: var(--primary); }

/* ---------- Footer ---------- */
.site-footer { border-top: 1px solid var(--line); background: var(--bg-alt); padding-block: clamp(2.5rem, 5vw, 3.5rem); margin-top: clamp(3rem, 7vw, 5rem); }
.footer-grid { display: grid; gap: 2rem; grid-template-columns: 1fr; }
.footer-brand .wordmark__name { font-size: 1.1rem; }
.footer-brand p { margin-top: 1rem; color: var(--muted); font-size: .9rem; max-width: 34ch; }
.footer-col h4 { font-family: var(--font-mono); font-size: .68rem; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); margin-bottom: 1rem; }
.footer-col ul { list-style: none; display: grid; gap: .6rem; }
.footer-col a { color: var(--text-soft); font-size: .94rem; }
.footer-col a:hover { color: var(--text); text-decoration: none; }
.footer-bottom { margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid var(--line); display: flex; flex-wrap: wrap; gap: .8rem 1.5rem; justify-content: space-between; align-items: center; }
.footer-bottom p { color: var(--muted); font-size: .85rem; }
.footer-bottom .foot-legal { display: flex; gap: 1.3rem; }
.footer-bottom .foot-legal a { color: var(--muted); font-size: .85rem; }
.footer-bottom .foot-legal a:hover { color: var(--text); text-decoration: none; }
@media (min-width: 720px) {
  .footer-grid { grid-template-columns: 1.6fr 1fr 1fr; gap: 3rem; }
}
/* Touch: enlarge footer link hit areas without changing visual rhythm */
@media (hover: none) and (max-width: 719px) {
  .footer-col ul { gap: 0; }
  .footer-col li { display: grid; }
  .footer-col a { padding-block: .62rem; }
  .footer-bottom .foot-legal { gap: 0; }
  .footer-bottom .foot-legal a { padding: .62rem 0; margin-right: 1.3rem; }
}

/* ---------- Mobile nav ---------- */
@media (max-width: 899px) {
  .nav-menu-btn { display: inline-grid; }
  .nav__links {
    position: fixed; inset: 76px 0 auto 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--bg); border-bottom: 1px solid var(--line);
    padding: .5rem var(--gut) 1.2rem;
    box-shadow: var(--shadow);
    display: none;
  }
  .nav__links.is-open { display: flex; }
  .nav__links a { padding: .9rem 0; border-bottom: 1px solid var(--line); font-size: 1.05rem; }
  .nav__links a[aria-current="page"]::after { display: none; }
  .nav__links a[aria-current="page"] { color: var(--primary); }
}
@media (min-width: 900px) { .nav-menu-btn { display: none !important; } }

/* Two-column utility for teasers/trust on wide screens */
@media (min-width: 760px) {
  .trust { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 940px) {
  .hero__grid { grid-template-columns: 1.35fr 1fr; }
}

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