/* zelt-wissen.de — Werkzeichnungs-Design: weißer Grund, Planen-Grün,
   Bemaßungslinien als Gestaltungselement. Überarbeitung 05.08.2026:
   breitere Bühne, ausbrechende Medien, Bricolage-Headlines, dezente Motion. */

@font-face {
  font-family: "Bricolage Grotesque";
  src: url("../fonts/bricolage-latin.woff2") format("woff2");
  font-weight: 400 800;
  font-stretch: 75% 125%;
  font-display: swap;
}

:root {
  --bg: #ffffff;
  --bg-soft: oklch(0.972 0.006 140);
  --bg-deep: oklch(0.286 0.041 155);
  --ink: oklch(0.28 0.02 155);
  --ink-strong: oklch(0.2 0.02 155);
  --muted: oklch(0.47 0.02 150);
  --line: oklch(0.9 0.008 140);
  --line-strong: oklch(0.78 0.015 145);
  --green: oklch(0.44 0.09 152);
  --green-deep: oklch(0.36 0.08 152);
  --green-soft: oklch(0.95 0.02 150);
  --amber: oklch(0.72 0.14 70);
  --amber-soft: oklch(0.96 0.035 80);
  --warn: oklch(0.55 0.16 32);
  --warn-soft: oklch(0.965 0.02 40);
  --radius: 10px;
  --w: 1240px;
  --measure: 52rem;
  --sans: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --display: "Bricolage Grotesque", var(--sans);
  --z-drop: 10;
  --z-sticky: 50;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 1.075rem;
  line-height: 1.7;
  color: var(--ink);
  background: var(--bg);
  -webkit-text-size-adjust: 100%;
}
@media (min-width: 1100px) {
  body { font-size: 1.125rem; }
}
img, svg { max-width: 100%; height: auto; }
a { color: var(--green); text-decoration-thickness: 1px; text-underline-offset: 2px; }
a:hover { color: var(--green-deep); }

h1, h2, h3 {
  font-family: var(--display);
  color: var(--ink-strong);
  line-height: 1.16;
  letter-spacing: -0.01em;
  font-weight: 720;
  text-wrap: balance;
}
h1 { font-size: clamp(2rem, 4.6vw, 3rem); margin: 0 0 0.6rem; }
h2 { font-size: clamp(1.45rem, 2.8vw, 1.9rem); margin: 2.6rem 0 0.8rem; }
h3 { font-size: 1.18rem; margin: 1.8rem 0 0.5rem; }
p { text-wrap: pretty; }

.wrap { max-width: var(--w); margin: 0 auto; padding: 0 clamp(1rem, 4vw, 2rem); }
.vh { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 99;
  background: var(--green); color: #fff; padding: 0.6rem 1rem;
}
.skip-link:focus { left: 0.5rem; top: 0.5rem; }

/* ------------------------------------------------------------------ Header */
.site-header {
  position: sticky; top: 0; z-index: var(--z-sticky);
  background: var(--bg);
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; gap: 1.4rem; min-height: 66px; }
.site-logo {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--display);
  font-weight: 780; font-size: 1.26rem; letter-spacing: -0.015em;
  color: var(--ink-strong); text-decoration: none; white-space: nowrap;
}
.site-logo .tld, .footer-logo .tld { color: var(--green); }
.logo-mark { width: 26px; height: 26px; color: var(--green); flex: none; }

/* Flex-Item ist das <nav>, nicht die <ul> — margin-left:auto muss ans nav */
.header-inner > nav { margin-left: auto; min-width: 0; }
.site-nav { display: flex; list-style: none; margin: 0; padding: 0; gap: 0.15rem; }
.site-nav > li { position: relative; }
.site-nav > li > a {
  display: inline-block; padding: 1.1rem 0.7rem;
  color: var(--ink); text-decoration: none; font-size: 0.95rem; font-weight: 560;
}
.site-nav > li.in-section > a { color: var(--green-deep); box-shadow: inset 0 -2px 0 var(--green); }
.drop-toggle {
  background: none; border: 0; padding: 0.4rem 0.15rem; margin-left: -0.35rem;
  cursor: pointer; color: var(--muted); vertical-align: middle;
}
.caret { width: 13px; height: 13px; transition: transform 0.18s var(--ease-out); }
.dropdown {
  position: absolute; left: 50%; transform: translateX(-50%);
  top: 100%; min-width: 310px; padding: 0.5rem;
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); box-shadow: 0 14px 40px -18px rgba(20, 40, 30, 0.35);
  display: none; z-index: var(--z-drop);
}
.site-nav > li:nth-last-child(-n+2) .dropdown { left: auto; right: 0; transform: none; }
.has-drop:hover .dropdown, .has-drop:focus-within .dropdown { display: block; animation: drop-in 0.18s var(--ease-out); }
@keyframes drop-in {
  from { opacity: 0; translate: 0 -4px; }
  to { opacity: 1; translate: 0 0; }
}
.drop-col ul { list-style: none; margin: 0; padding: 0; }
.drop-col a {
  display: block; padding: 0.5rem 0.65rem; border-radius: 7px;
  color: var(--ink); text-decoration: none; font-size: 0.92rem; font-weight: 560;
  line-height: 1.35;
}
.drop-col a:hover { background: var(--green-soft); color: var(--green-deep); }
.drop-desc { display: block; font-weight: 400; font-size: 0.8rem; color: var(--muted); }
.drop-head {
  margin: 0.4rem 0.65rem 0.15rem; font-size: 0.72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.07em; color: var(--muted);
}
.icon-btn {
  display: none; background: none; border: 1px solid var(--line-strong);
  border-radius: 8px; padding: 0.45rem; cursor: pointer; color: var(--ink);
}
.icon-btn svg { width: 20px; height: 20px; display: block; }
.menu-toggle .i-x { display: none; }

@media (max-width: 1180px) {
  .menu-toggle { display: inline-flex; margin-left: auto; }
  .site-nav {
    display: none; position: absolute; left: 0; right: 0; top: 100%;
    flex-direction: column; gap: 0; margin: 0; padding: 0.5rem 1rem 1rem;
    background: #fff; border-bottom: 1px solid var(--line);
    max-height: calc(100vh - 66px); overflow: auto;
  }
  body.menu-open .site-nav { display: flex; }
  body.menu-open .menu-toggle .i-menu { display: none; }
  body.menu-open .menu-toggle .i-x { display: block; }
  .site-nav > li { border-bottom: 1px solid var(--line); }
  .site-nav > li > a { padding: 0.8rem 0.2rem; }
  .site-nav > li.in-section > a { box-shadow: none; }
  .drop-toggle { float: right; padding: 0.8rem 0.4rem; }
  .dropdown {
    position: static; transform: none; min-width: 0; border: 0; box-shadow: none;
    padding: 0 0 0.6rem; animation: none;
  }
  .has-drop:hover .dropdown { display: none; }
  .has-drop.open .dropdown { display: block; }
  .has-drop.open .caret { transform: rotate(180deg); }
}

/* -------------------------------------------------------------- Breadcrumb */
.crumbs-bar { border-bottom: 1px solid var(--line); background: var(--bg-soft); }
.crumbs {
  display: flex; flex-wrap: wrap; align-items: center; gap: 0.35rem;
  list-style: none; margin: 0; padding: 0.55rem 0; font-size: 0.84rem;
}
.crumbs a { color: var(--muted); text-decoration: none; }
.crumbs a:hover { color: var(--green-deep); text-decoration: underline; }
.crumbs li:last-child { color: var(--ink); font-weight: 560; }
.crumbs svg { width: 12px; height: 12px; color: var(--line-strong); display: block; }

/* ------------------------------------------------------------------- Hero */
.hero {
  padding: clamp(2.2rem, 6vw, 4.5rem) 0 clamp(1.6rem, 4vw, 3rem);
  background:
    linear-gradient(to right, oklch(0.95 0.008 150 / 0.55) 1px, transparent 1px),
    linear-gradient(to bottom, oklch(0.95 0.008 150 / 0.55) 1px, transparent 1px);
  background-size: 32px 32px;
  border-bottom: 1px solid var(--line);
}
.hero-grid {
  display: grid; grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  gap: clamp(1.5rem, 4vw, 4rem); align-items: center;
}
.hero-copy { max-width: 640px; }
.hero-art { color: var(--green); }
.hero-art .profil { width: 100%; max-width: none; height: auto; }
.lead { font-size: clamp(1.1rem, 2vw, 1.25rem); line-height: 1.62; color: var(--ink); }
.kicker-line {
  display: flex; align-items: center; gap: 0.55rem;
  font-size: 0.88rem; font-weight: 650; color: var(--green-deep);
  margin-bottom: 0.9rem;
}
.kicker-line svg { width: 17px; height: 17px; }
@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-art { max-width: 400px; }
}

.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--green); color: #fff; text-decoration: none;
  padding: 0.74rem 1.3rem; border-radius: 9px; font-weight: 650; font-size: 0.98rem;
  border: 1px solid var(--green-deep);
  transition: background 0.15s var(--ease-out), translate 0.15s var(--ease-out);
}
.btn:hover { background: var(--green-deep); color: #fff; translate: 0 -1px; }
.btn svg { width: 17px; height: 17px; }
.btn--ghost { background: transparent; color: var(--green-deep); border-color: var(--line-strong); }
.btn--ghost:hover { background: var(--green-soft); }
.btn-row { display: flex; flex-wrap: wrap; gap: 0.7rem; margin-top: 1.5rem; }

/* --------------------------------------------------------------- Sections */
.section { padding: clamp(1.8rem, 4.5vw, 3.2rem) 0; }
.section--tight { padding: clamp(1.2rem, 3vw, 1.8rem) 0; }
.section--deep { background: var(--bg-soft); border-top: 1px solid var(--line); }
.section--band { background: var(--bg-soft); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }

/* Bemaßungslinie als Sektionskopf (Marken-System, trägt ein echtes H2) */
.rule-mass {
  display: flex; align-items: center; gap: 1rem;
  margin: 0 0 1.6rem; color: var(--ink-strong);
}
.rule-mass::before, .rule-mass::after {
  content: ""; flex: 1; height: 9px;
  border-bottom: 1px solid var(--line-strong);
  border-left: 1px solid var(--line-strong);
  border-right: 1px solid var(--line-strong);
}
.rule-mass::before { flex: 0 0 clamp(1.2rem, 6vw, 4rem); }
.rule-mass h2, .rule-mass span {
  font-family: var(--display);
  font-size: clamp(1.3rem, 2.4vw, 1.65rem); font-weight: 720;
  letter-spacing: -0.01em; white-space: nowrap; margin: 0;
}

/* ------------------------------------------------------------------ Cards */
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); gap: 1rem; margin: 1.4rem 0; }
.card {
  display: block; padding: 1.2rem 1.3rem; border: 1px solid var(--line);
  border-radius: var(--radius); text-decoration: none; color: var(--ink);
  background: #fff;
  transition: border-color 0.15s var(--ease-out), box-shadow 0.15s var(--ease-out),
              translate 0.15s var(--ease-out);
}
.card:hover {
  border-color: var(--green); color: var(--ink); translate: 0 -2px;
  box-shadow: 0 12px 28px -18px rgba(20, 60, 40, 0.45);
}
.card svg { width: 26px; height: 26px; color: var(--green); margin-bottom: 0.55rem; }
.card strong { display: block; font-family: var(--display); color: var(--ink-strong); font-size: 1.08rem; margin-bottom: 0.25rem; }
.card span { font-size: 0.92rem; color: var(--muted); line-height: 1.5; }
.card .profil { width: 100%; max-width: 220px; color: var(--green); margin-bottom: 0.4rem; }

/* Zeltarten-Raster: erstes Element betont, Raster bewusst asymmetrisch */
.cards--arten { grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }
@media (min-width: 900px) {
  .cards--arten > .card:first-child { grid-column: span 2; display: grid; grid-template-columns: 1fr 1fr; gap: 0 1.4rem; align-items: center; }
  .cards--arten > .card:first-child .profil { max-width: 280px; grid-row: span 3; margin: 0; }
}

/* Register-Liste (statt Kartenraster) */
.register { list-style: none; margin: 1.2rem 0 0; padding: 0; columns: 2; column-gap: 3rem; }
.register li { break-inside: avoid; border-bottom: 1px solid var(--line); }
.register a {
  display: flex; align-items: baseline; gap: 0.9rem; justify-content: space-between;
  padding: 0.9rem 0.2rem; text-decoration: none; color: var(--ink);
  transition: background 0.15s var(--ease-out), padding 0.15s var(--ease-out);
}
.register a:hover { background: var(--green-soft); padding-left: 0.7rem; }
.register strong { font-family: var(--display); color: var(--ink-strong); font-size: 1.06rem; white-space: nowrap; }
.register span { color: var(--muted); font-size: 0.92rem; text-align: right; }
@media (max-width: 760px) {
  .register { columns: 1; }
  .register span { display: none; }
}

/* Segment-Reihe mit Profil-Zeichnungen */
.profil-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1rem; margin: 1.6rem 0; }

/* ---------------------------------------------------------------- Artikel */
.article-head { max-width: var(--measure); padding-top: clamp(1.6rem, 4vw, 2.6rem); }
.article-lead { font-size: 1.16rem; color: var(--ink); max-width: var(--measure); }
.article-meta {
  display: flex; flex-wrap: wrap; gap: 1rem; margin: 0.9rem 0 0;
  font-size: 0.84rem; color: var(--muted);
}
.article-meta span { display: inline-flex; align-items: center; gap: 0.4rem; }
.article-meta svg { width: 15px; height: 15px; }

/* Prosa: Text hält das Lesemaß, Medien brechen auf volle Bühnenbreite aus */
.prose > * { max-width: var(--measure); }
.prose > .table-wrap, .prose > .fig, .prose > .planer,
.prose > .grundriss, .prose > .cards, .prose > .register { max-width: none; }
.prose > p, .prose > ul, .prose > ol { margin: 0 0 1.1rem; }
.prose ul, .prose ol { padding-left: 1.35rem; }
.prose li { margin-bottom: 0.35rem; }
.prose li::marker { color: var(--green); }
.prose strong { color: var(--ink-strong); }
.prose hr { border: 0; border-top: 1px solid var(--line); margin: 2rem 0; }

/* Schrittfolgen */
.steps { counter-reset: step; list-style: none; padding: 0; margin: 1.3rem 0; }
.steps > li {
  position: relative; padding: 0 0 1.2rem 3.1rem; counter-increment: step;
  border-left: 1px solid var(--line-strong); margin-left: 1.05rem;
}
.steps > li:last-child { border-left-color: transparent; }
.steps > li::before {
  content: counter(step);
  position: absolute; left: -1.1rem; top: -0.15rem;
  width: 2.15rem; height: 2.15rem; border-radius: 50%;
  background: #fff; border: 1.5px solid var(--green); color: var(--green-deep);
  font-family: var(--display); font-weight: 720; font-size: 0.95rem;
  display: flex; align-items: center; justify-content: center;
}
.steps > li > strong { display: block; color: var(--ink-strong); margin-bottom: 0.15rem; }

/* ---------------------------------------------------------------- Kästen */
.note {
  display: grid; gap: 0.35rem; margin: 1.4rem 0; padding: 1.1rem 1.25rem;
  background: var(--green-soft); border-radius: var(--radius);
  font-size: 0.98rem;
}
.note--warn { background: var(--warn-soft); }
.note--recht { background: var(--amber-soft); }
.note--praxis { background: var(--bg-soft); border: 1px solid var(--line); }
.note-head { display: flex; align-items: center; gap: 0.55rem; }
.note-head svg { width: 19px; height: 19px; color: var(--green-deep); flex: none; }
.note--warn .note-head svg { color: var(--warn); }
.note--recht .note-head svg { color: oklch(0.55 0.11 75); }
.note-title { margin: 0; font-weight: 700; color: var(--ink-strong); }
.note p { margin: 0 0 0.55rem; }
.note p:last-child { margin-bottom: 0; }
.recht-hinweis { font-size: 0.86rem; color: var(--muted); margin: 0.8rem 0 0; }

/* --------------------------------------------------------------- Tabellen */
.table-wrap { overflow-x: auto; margin: 1.3rem 0 0.2rem; border: 1px solid var(--line); border-radius: var(--radius); }
table { border-collapse: collapse; width: 100%; min-width: 560px; font-size: 0.95rem; }
caption { text-align: left; padding: 0.8rem 1rem 0.35rem; font-family: var(--display); font-weight: 700; font-size: 1.02rem; color: var(--ink-strong); }
th, td { text-align: left; padding: 0.62rem 1rem; border-top: 1px solid var(--line); vertical-align: top; }
thead th {
  border-top: 0; background: var(--bg-soft); font-size: 0.8rem;
  text-transform: uppercase; letter-spacing: 0.05em; color: var(--muted);
}
td.num { font-variant-numeric: tabular-nums; white-space: nowrap; }
tbody tr:hover { background: oklch(0.985 0.005 140); }
.scroll-hint { display: none; font-size: 0.78rem; color: var(--muted); margin: 0.3rem 0 0; }
@media (max-width: 640px) { .scroll-hint { display: block; } }
.table-note { font-size: 0.86rem; color: var(--muted); margin: 0.5rem 0 0; }

/* --------------------------------------------------------------------- QA */
.qa { margin: 1.3rem 0; max-width: var(--measure); }
.qa details { border: 1px solid var(--line); border-radius: var(--radius); margin-bottom: 0.6rem; background: #fff; }
.qa summary {
  cursor: pointer; padding: 0.9rem 1.1rem; font-weight: 650; color: var(--ink-strong);
  list-style: none; position: relative; padding-right: 2.4rem;
}
.qa summary::-webkit-details-marker { display: none; }
.qa summary::after {
  content: "+"; position: absolute; right: 1.05rem; top: 50%; transform: translateY(-52%);
  font-size: 1.25rem; font-weight: 400; color: var(--green);
  transition: rotate 0.18s var(--ease-out);
}
.qa details[open] summary::after { content: "–"; }
.qa-body { padding: 0 1.1rem 0.95rem; }
.qa-body p { margin: 0 0 0.6rem; }

/* ------------------------------------------------------------------ Bilder */
.fig { margin: 1.6rem 0; }
.fig-media { position: relative; border-radius: var(--radius); overflow: hidden; }
.fig-media img { display: block; width: 100%; height: auto; }
.ki-badge {
  position: absolute; right: 0.6rem; bottom: 0.6rem;
  display: inline-flex; align-items: center; gap: 0.3rem;
  background: rgba(20, 30, 25, 0.72); color: #fff;
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.02em;
  padding: 0.28rem 0.55rem; border-radius: 999px; backdrop-filter: blur(3px);
}
.ki-badge svg { width: 12px; height: 12px; }
figcaption { font-size: 0.85rem; color: var(--muted); margin-top: 0.5rem; }

/* ----------------------------------------------------------------- Quellen */
.sources { max-width: var(--measure); font-size: 0.9rem; }
.sources h2 { margin-top: 0; font-size: 1.25rem; }
.sources-intro { color: var(--muted); }
.sources ol { padding-left: 1.3rem; }
.sources li { margin-bottom: 0.7rem; overflow-wrap: anywhere; }
.sources a { color: var(--muted); font-size: 0.84rem; }

/* ------------------------------------------------------------- Weiterlesen */
.next { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 0.9rem; }
.next a {
  display: block; padding: 1rem 1.1rem; border: 1px solid var(--line);
  border-radius: var(--radius); text-decoration: none; background: #fff;
  transition: border-color 0.15s var(--ease-out), translate 0.15s var(--ease-out);
}
.next a:hover { border-color: var(--green); translate: 0 -2px; }
.next strong { display: block; font-family: var(--display); color: var(--ink-strong); margin-bottom: 0.2rem; font-size: 1rem; }
.next span { font-size: 0.87rem; color: var(--muted); line-height: 1.45; }

/* ------------------------------------------------------------------ Footer */
.site-footer { margin-top: 3rem; background: var(--bg-deep); color: oklch(0.88 0.01 150); }
.site-footer a { color: oklch(0.92 0.02 150); }
.footer-grid {
  display: grid; grid-template-columns: minmax(240px, 1.4fr) repeat(3, minmax(150px, 1fr));
  gap: 2rem; padding: 2.6rem 0 1.6rem;
}
.footer-logo { font-family: var(--display); font-weight: 780; font-size: 1.12rem; text-decoration: none; color: #fff; }
.footer-about p { font-size: 0.88rem; line-height: 1.55; color: oklch(0.8 0.015 150); }
.footer-head {
  font-size: 0.74rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.08em; color: oklch(0.72 0.02 150); margin: 0 0 0.6rem;
}
.footer-nav ul { list-style: none; margin: 0; padding: 0; }
.footer-nav li { margin-bottom: 0.4rem; }
.footer-nav a { font-size: 0.9rem; text-decoration: none; }
.footer-nav a:hover { text-decoration: underline; }
.footer-bottom {
  display: flex; flex-wrap: wrap; gap: 0.8rem; justify-content: space-between;
  padding: 1.1rem 0; border-top: 1px solid oklch(0.38 0.03 155);
  font-size: 0.85rem; color: oklch(0.78 0.015 150);
}
.footer-bottom p { margin: 0; }
.footer-legal { display: flex; flex-wrap: wrap; gap: 1rem; }
.footer-legal a { text-decoration: none; }
.footer-legal a:hover { text-decoration: underline; }
.footer-disclosure { background: oklch(0.24 0.035 155); }
.footer-disclosure p {
  margin: 0; padding: 0.85rem 0; font-size: 0.8rem; line-height: 1.5;
  color: oklch(0.72 0.015 150);
}
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .footer-grid { grid-template-columns: 1fr; } }

/* ----------------------------------------------------------- SVG-Elemente */
.profil { width: 100%; max-width: 300px; height: auto; display: block; }
.grundriss { width: 100%; max-width: 720px; height: auto; display: block; color: var(--green-deep); margin: 1.2rem 0; }
.profil-card { text-align: left; }

/* Fragenverzeichnis */
.fragen-liste { list-style: none; padding: 0; margin: 0 0 1.6rem; max-width: none; }
.fragen-liste li { padding: 0.45rem 0; border-bottom: 1px solid var(--line); }
.fragen-liste a { font-weight: 650; text-decoration: none; }
.fragen-liste a:hover { text-decoration: underline; }
.fragen-liste span { color: var(--muted); font-size: 0.9rem; }

/* Größenplaner */
.planer {
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.4rem 1.5rem; margin: 1.5rem 0; background: var(--bg-soft);
}
.planer label { display: block; font-weight: 650; color: var(--ink-strong); margin-bottom: 0.35rem; }
.planer select, .planer input {
  font: inherit; padding: 0.55rem 0.7rem; border: 1px solid var(--line-strong);
  border-radius: 8px; background: #fff; color: var(--ink); width: 100%;
}
.planer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1rem; }
.planer-out { margin-top: 1.1rem; font-size: 1.05rem; }
.planer-out strong { color: var(--green-deep); font-size: 1.3rem; }
.planer-note { font-size: 0.82rem; color: var(--muted); margin-top: 0.6rem; }

/* ------------------------------------------------------------------ Motion */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
