/* Aktionaersleitfaden — afb-group.it.com
   Self-contained stylesheet. Q/A-Lernzentrum, Flex-dominant cluster cards.
   Palette: helle Flaeche + gedaempftes Bordeaux/Deep-Rose Akzent (<80% Sat),
   zinc-900 Text. System fonts only, keine Remote-Assets. */

/* ---------- Tokens ---------- */
:root {
  --surface: #faf8f7;
  --surface-2: #ffffff;
  --surface-3: #f4efee;
  --border: #e3d9d7;
  --border-strong: #d2c2bf;
  --text: #1c1917;            /* zinc-900 */
  --text-muted: #57534e;      /* stone-600 */
  --text-soft: #78716c;       /* stone-500 */
  --accent: #7d213a;          /* gedaempftes Bordeaux, <80% Sat */
  --accent-2: #9d3450;        /* Deep-Rose */
  --accent-soft: #f3e5e8;
  --accent-contrast: #ffffff;
  --focus: #9d3450;
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 18px;
  --shadow-sm: 0 1px 2px rgba(28, 25, 23, .06);
  --shadow: 0 6px 20px rgba(28, 25, 23, .08);
  --maxw: 1120px;
  --measure: 68ch;
  /* golden/organic spacing rhythm */
  --sp-1: 6px;
  --sp-2: 10px;
  --sp-3: 16px;
  --sp-4: 26px;
  --sp-5: 42px;
  --sp-6: 68px;
  --font-sans: system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  --font-serif: Georgia, 'Times New Roman', 'Nimbus Roman', serif;
  --font-mono: 'SFMono-Regular', 'Cascadia Mono', Consolas, 'Liberation Mono', monospace;
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.65;
  color: var(--text);
  background: var(--surface);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  overflow-wrap: break-word;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent); text-decoration: underline; text-underline-offset: 2px; }
a:hover { color: var(--accent-2); }
h1, h2, h3, h4 { line-height: 1.22; font-weight: 700; color: var(--text); }
h1 { font-size: clamp(1.9rem, 1.3rem + 2.6vw, 2.5rem); margin: 0 0 var(--sp-3); letter-spacing: -.01em; }
h2 { font-size: clamp(1.4rem, 1.15rem + 1.1vw, 1.65rem); margin: var(--sp-5) 0 var(--sp-3); }
h3 { font-size: clamp(1.12rem, 1rem + .5vw, 1.28rem); margin: var(--sp-4) 0 var(--sp-2); }
p { margin: 0 0 var(--sp-3); }
ul, ol { margin: 0 0 var(--sp-3); padding-left: 1.3em; }
li { margin: .3em 0; }
code {
  font-family: var(--font-mono);
  font-size: .9em;
  background: var(--surface-3);
  padding: .1em .35em;
  border-radius: 5px;
}
:focus-visible { outline: 3px solid var(--focus); outline-offset: 2px; border-radius: 3px; }

/* ---------- Skip link ---------- */
.skip-link {
  position: absolute; left: 8px; top: -60px;
  background: var(--accent); color: #fff; padding: 10px 16px;
  border-radius: var(--radius-sm); z-index: 1100;
  transition: top .15s ease; text-decoration: none;
}
.skip-link:focus { top: 8px; }

/* ---------- Layout ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 16px; }
.section { padding-block: var(--sp-5); }
.prose { max-width: var(--measure); }
.prose p, .prose li { color: var(--text); }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 900;
  background: rgba(250, 248, 247, .93);
  backdrop-filter: saturate(1.1) blur(6px);
  border-bottom: 1px solid var(--border);
}
.site-header__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--sp-3); min-height: 64px;
}
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--text); }
.brand__mark {
  width: 34px; height: 34px; flex: none;
  display: grid; place-items: center;
  background: var(--accent); color: #fff; border-radius: 9px;
}
.brand__name { font-weight: 800; font-size: 1.06rem; letter-spacing: -.01em; }
.brand__sub { display: block; font-weight: 500; font-size: .72rem; color: var(--text-soft); letter-spacing: .02em; }

.nav-toggle {
  display: inline-flex; align-items: center; gap: 8px;
  min-height: 44px; padding: 8px 12px;
  background: var(--surface-2); border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm); color: var(--text);
  font: inherit; font-weight: 600; cursor: pointer;
}
.primary-nav ul { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 2px; }
.primary-nav a {
  display: inline-flex; align-items: center; min-height: 44px;
  padding: 8px 12px; border-radius: var(--radius-sm);
  text-decoration: none; color: var(--text-muted); font-weight: 600; font-size: .96rem;
}
.primary-nav a:hover { background: var(--accent-soft); color: var(--accent); }
.primary-nav a[aria-current="page"] { color: var(--accent); background: var(--accent-soft); }

@media (max-width: 767px) {
  .primary-nav {
    display: none; position: absolute; left: 0; right: 0; top: 100%;
    background: var(--surface-2); border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow); padding: 10px 16px 18px;
  }
  .primary-nav.is-open {
    display: block;
    max-height: var(--mobile-nav-max-height, 100dvh);
    overflow-y: auto;
    overscroll-behavior: contain;
  }
  .primary-nav ul { flex-direction: column; gap: 2px; }
  .primary-nav a { width: 100%; }
  body.mobile-nav-open { overflow: hidden; }
  body.mobile-nav-open .cmp:not([hidden]) { display: none; }
}
@media (min-width: 768px) {
  .nav-toggle { display: none; }
  .primary-nav { display: block !important; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100dvh;
  display: flex; align-items: center;
  background-color: #45141f; /* Fallback, waehrend Bild laedt */
  background-image: linear-gradient(180deg, rgba(40,12,20,.72), rgba(40,12,20,.82)),
                    url('../img/home-hero.jpg');
  background-size: cover; background-position: center;
  color: #fdf4f1;
  padding-block: var(--sp-6);
}
.hero__inner { display: grid; gap: var(--sp-4); }
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .82rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  color: #f0c9cf;
}
.hero h1 { color: #fff; max-width: 20ch; }
.hero__lead { font-size: clamp(1.05rem, .98rem + .5vw, 1.22rem); color: #f4e2e0; max-width: 58ch; margin: 0; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: var(--sp-2); }
.hero__qapreview {
  display: flex; flex-direction: column; gap: 10px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--radius-lg);
  padding: var(--sp-4);
  max-width: 640px;
}
.hero__qapreview h2 { margin: 0 0 4px; font-size: 1rem; color: #f8e7e4; letter-spacing: .01em; }
.hero__qa {
  display: flex; gap: 10px; align-items: flex-start;
  color: #fbeceb; font-size: .98rem;
}
.hero__qa svg { flex: none; margin-top: 3px; color: #f0b8bf; }
@media (min-width: 900px) {
  .hero__inner { grid-template-columns: 1.1fr .9fr; align-items: center; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 42px; padding: 8px 20px;
  border-radius: var(--radius); border: 1px solid var(--border-strong);
  font: inherit; font-weight: 700; line-height: 1.2; cursor: pointer; text-decoration: none;
  background: var(--surface-2); color: var(--text);
  transition: transform .12s ease, background-color .15s ease;
}
.btn svg { flex: 0 0 auto; }
@media (min-width: 768px) { .btn { white-space: nowrap; } }
.btn:hover { transform: translateY(-1px); }
.btn--solid { background: var(--accent); color: var(--accent-contrast); border-color: var(--accent); }
.btn--solid:hover { background: var(--accent-2); color: #fff; }
.btn--ghost { background: transparent; color: var(--text); }
.btn--on-dark { background: rgba(255,255,255,.12); color: #fff; border-color: rgba(255,255,255,.4); }
.btn--on-dark.btn--solid { background: #fff; color: var(--accent); border-color: #fff; }
.btn:focus-visible { outline: 3px solid var(--focus); outline-offset: 2px; }

/* ---------- Chips (Frage-Kategorien) ---------- */
.chips { display: flex; flex-wrap: wrap; gap: 8px; list-style: none; margin: 0 0 var(--sp-3); padding: 0; }
.chip {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 12px; min-height: 32px;
  background: var(--accent-soft); color: var(--accent);
  border: 1px solid var(--border); border-radius: 999px;
  font-size: .84rem; font-weight: 600; text-decoration: none;
}
a.chip:hover { background: #ecd3d8; }

/* ---------- Q/A cluster cards (Flex-dominant) ---------- */
.cluster-list { display: flex; flex-direction: column; gap: var(--sp-4); }
.cluster {
  display: flex; flex-direction: column; gap: var(--sp-3);
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--sp-4);
  box-shadow: var(--shadow-sm);
  background-color: var(--surface-2);
}
.cluster__head { display: flex; flex-wrap: wrap; align-items: flex-start; gap: var(--sp-3); }
.cluster__icon {
  width: 46px; height: 46px; flex: none;
  display: grid; place-items: center;
  background: var(--accent-soft); color: var(--accent);
  border-radius: 12px;
}
.cluster__titlewrap { flex: 1 1 260px; }
.cluster__title { margin: 0; font-size: 1.22rem; }
.cluster__title a { text-decoration: none; color: var(--text); }
.cluster__title a:hover { color: var(--accent); }
.cluster__meta { display: flex; flex-wrap: wrap; gap: 8px 16px; margin-top: 6px; color: var(--text-soft); font-size: .85rem; }
.cluster__meta span { display: inline-flex; align-items: center; gap: 6px; }
.cluster__summary { margin: 0; color: var(--text-muted); max-width: 66ch; }
.cluster__peek { display: flex; flex-direction: column; gap: 6px; margin: 0; padding: 0; list-style: none; }
.cluster__peek li { display: flex; gap: 8px; align-items: flex-start; color: var(--text-muted); font-size: .95rem; }
.cluster__peek svg { flex: none; margin-top: 3px; color: var(--accent-2); }
.cluster__foot { margin-top: 2px; }

/* ---------- Details / Q&A accordion ---------- */
.qa-toolbar {
  display: flex; flex-wrap: wrap; align-items: center; gap: 12px;
  margin: var(--sp-3) 0 var(--sp-4);
}
.qa-toolbar__hint { color: var(--text-soft); font-size: .9rem; margin: 0; }
.qa-group { display: flex; flex-direction: column; gap: var(--sp-3); }
.qa {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface-2);
  overflow: hidden;
}
.qa[open] { border-color: var(--border-strong); box-shadow: var(--shadow-sm); }
.qa > summary {
  list-style: none; cursor: pointer;
  display: flex; align-items: center; gap: 12px;
  padding: 16px 18px; min-height: 44px;
  font-weight: 700; font-size: 1.05rem; color: var(--text);
}
.qa > summary::-webkit-details-marker { display: none; }
.qa > summary:hover { background: var(--surface-3); }
.qa__chev {
  flex: none; margin-left: auto; color: var(--accent);
  transition: transform .2s ease;
}
.qa[open] > summary .qa__chev { transform: rotate(180deg); }
.qa__marker {
  flex: none; width: 28px; height: 28px; border-radius: 8px;
  display: grid; place-items: center;
  background: var(--accent-soft); color: var(--accent);
  font-size: .82rem; font-weight: 800;
}
.qa__body { padding: 0 18px 18px; }
.qa__body > *:first-child { margin-top: 0; }
.qa__body p, .qa__body li { color: var(--text-muted); max-width: 68ch; }

/* ---------- Cards grid (directory) ---------- */
.card-grid { display: grid; gap: var(--sp-4); grid-template-columns: 1fr; }
@media (min-width: 620px) { .card-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 980px) { .card-grid.card-grid--3 { grid-template-columns: repeat(3, 1fr); } }
.card {
  display: flex; flex-direction: column; gap: 10px;
  background: var(--surface-2); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: var(--sp-4);
  box-shadow: var(--shadow-sm); background-color: var(--surface-2);
}
.card__icon {
  width: 42px; height: 42px; display: grid; place-items: center;
  background: var(--accent-soft); color: var(--accent); border-radius: 11px;
}
.card h3 { margin: 4px 0 0; }
.card h3 a { text-decoration: none; color: var(--text); }
.card h3 a:hover { color: var(--accent); }
.card p { margin: 0; color: var(--text-muted); font-size: .97rem; }
.card__more {
  margin-top: auto; align-self: flex-start; display: inline-flex; align-items: center; gap: 6px;
  font-weight: 700; font-size: .92rem; text-decoration: none; color: var(--accent);
}
.card__more svg, .back-link svg { width: 16px; height: 16px; flex: 0 0 auto; }
.card__more:hover { gap: 9px; }

/* ---------- Feature blocks ---------- */
.feature-grid { display: grid; gap: var(--sp-4); grid-template-columns: 1fr; }
@media (min-width: 760px) { .feature-grid { grid-template-columns: 1fr 1fr; } }
.feature {
  display: flex; gap: var(--sp-3); align-items: flex-start;
  background: var(--surface-2); border: 1px solid var(--border);
  border-radius: var(--radius); padding: var(--sp-4);
}
.feature__icon {
  width: 40px; height: 40px; flex: none; display: grid; place-items: center;
  background: var(--accent-soft); color: var(--accent); border-radius: 10px;
}
.feature h3 { margin: 0 0 4px; font-size: 1.08rem; }
.feature p { margin: 0; color: var(--text-muted); font-size: .96rem; }

/* ---------- Section headings ---------- */
.section__eyebrow {
  display: block; font-size: .8rem; font-weight: 800; letter-spacing: .1em;
  text-transform: uppercase; color: var(--accent-2); margin-bottom: 6px;
}
.section__lead { max-width: 68ch; color: var(--text-muted); font-size: 1.05rem; }
.section--alt { background: var(--surface-3); }
.section--tight { padding-block: var(--sp-4); }

/* ---------- Breadcrumb ---------- */
.breadcrumb { font-size: .88rem; color: var(--text-soft); margin: var(--sp-3) 0; }
.breadcrumb ol { list-style: none; display: flex; flex-wrap: wrap; gap: 6px; margin: 0; padding: 0; }
.breadcrumb li { display: inline-flex; align-items: center; gap: 6px; }
.breadcrumb a { color: var(--text-muted); text-decoration: none; }
.breadcrumb a:hover { color: var(--accent); text-decoration: underline; }
.breadcrumb [aria-current="page"] { color: var(--text); }
.breadcrumb .sep { color: var(--border-strong); }

/* ---------- Article furniture ---------- */
.article-head { border-bottom: 1px solid var(--border); padding-bottom: var(--sp-4); margin-bottom: var(--sp-4); }
.article-meta {
  display: flex; flex-wrap: wrap; gap: 8px 18px; align-items: center;
  color: var(--text-soft); font-size: .88rem; margin-top: var(--sp-3);
}
.article-meta span { display: inline-flex; align-items: center; gap: 6px; }
.byline { font-weight: 600; color: var(--text-muted); }
.cover {
  border-radius: var(--radius-lg); overflow: hidden; margin: var(--sp-4) 0;
  border: 1px solid var(--border);
  background-color: var(--surface-3);
  aspect-ratio: 16 / 7;
  background-size: cover; background-position: center;
}

/* ---------- Aside notes ---------- */
.note {
  display: flex; gap: 12px; align-items: flex-start;
  background: var(--accent-soft); border: 1px solid var(--border-strong);
  border-left: 4px solid var(--accent);
  border-radius: var(--radius); padding: var(--sp-3) var(--sp-4);
  margin: var(--sp-4) 0; color: #4a2530;
}
.note svg { flex: none; margin-top: 3px; color: var(--accent); }
.note p { margin: 0; font-size: .95rem; }
.note strong { color: var(--accent); }

.legal-aside {
  background: var(--surface-3); border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: var(--sp-3) var(--sp-4);
  margin: var(--sp-4) 0; color: var(--text-muted); font-size: .9rem;
}
.legal-aside p { margin: 0; }

/* ---------- Related reading ---------- */
.related { background: var(--surface-3); border-radius: var(--radius); padding: var(--sp-4); margin: var(--sp-5) 0 0; }
.related h2 { margin-top: 0; font-size: 1.2rem; }
.related ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.related li { display: flex; gap: 10px; align-items: flex-start; }
.related li svg { flex: none; margin-top: 4px; color: var(--accent-2); }
.related a { font-weight: 600; text-decoration: none; }
.related a:hover { text-decoration: underline; }

/* ---------- Prev / Next ---------- */
.pager {
  display: grid; gap: var(--sp-3); grid-template-columns: 1fr; margin: var(--sp-5) 0 var(--sp-4);
}
@media (min-width: 620px) { .pager { grid-template-columns: 1fr 1fr; } }
.pager a {
  display: flex; flex-direction: column; gap: 4px;
  border: 1px solid var(--border); border-radius: var(--radius);
  padding: var(--sp-3) var(--sp-4); text-decoration: none; background: var(--surface-2);
}
.pager a:hover { border-color: var(--border-strong); background: var(--surface-3); }
.pager__dir { font-size: .8rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: var(--text-soft); }
.pager__title { font-weight: 700; color: var(--text); }
.pager--next a { text-align: right; align-items: flex-end; }
.back-link { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; text-decoration: none; }
.back-link:hover { text-decoration: underline; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; gap: var(--sp-5); grid-template-columns: 1fr; }
@media (min-width: 900px) { .contact-grid { grid-template-columns: 1fr 1fr; } }
.contact-card {
  background: var(--surface-2); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: var(--sp-4);
}
.contact-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: var(--sp-3); }
.contact-list li { display: flex; gap: 12px; align-items: flex-start; }
.contact-list svg { flex: none; margin-top: 2px; color: var(--accent); }
.contact-list a { text-decoration: none; font-weight: 600; }
.contact-list a:hover { text-decoration: underline; }

.field { display: flex; flex-direction: column; gap: 6px; margin-bottom: var(--sp-3); }
.field label { font-weight: 600; font-size: .95rem; }
.field input, .field textarea {
  font: inherit; padding: 11px 14px; min-height: 44px;
  border: 1px solid var(--border-strong); border-radius: var(--radius-sm);
  background: var(--surface); color: var(--text);
}
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus, .field textarea:focus { outline: 3px solid var(--focus); outline-offset: 1px; border-color: var(--accent); }

.map-embed {
  margin-top: var(--sp-3); border: 1px solid var(--border); border-radius: var(--radius);
  overflow: hidden; background: var(--surface-3);
}
.map-embed iframe { width: 100%; height: 340px; border: 0; display: block; }
.map-placeholder { padding: var(--sp-4); text-align: center; }
.map-placeholder p { color: var(--text-muted); font-size: .92rem; }

/* ---------- Definition list / sources ---------- */
.source-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: var(--sp-3); }
.source-list li {
  display: flex; gap: 12px; align-items: flex-start;
  border: 1px solid var(--border); border-radius: var(--radius); padding: var(--sp-3) var(--sp-4);
  background: var(--surface-2);
}
.source-list svg { flex: none; margin-top: 3px; color: var(--accent); }
.source-list strong { display: block; }
.source-list a { word-break: break-word; }

/* ---------- Footer ---------- */
.site-footer {
  background: #2a1015; color: #ecd9d7;
  padding-block: var(--sp-5) var(--sp-4); margin-top: var(--sp-6);
}
.site-footer a { color: #f2d7d5; }
.site-footer__grid { display: grid; gap: var(--sp-4); grid-template-columns: 1fr; }
@media (min-width: 720px) { .site-footer__grid { grid-template-columns: 1.4fr 1fr 1fr; } }
.site-footer h2 { font-size: .82rem; letter-spacing: .1em; text-transform: uppercase; color: #d9a7ab; margin: 0 0 10px; }
.site-footer ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 6px; }
.site-footer nav a { text-decoration: none; }
.site-footer nav a:hover { text-decoration: underline; }
.footer-note { font-size: .86rem; color: #cbaeac; line-height: 1.6; margin: 0; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.12); margin-top: var(--sp-4); padding-top: var(--sp-3);
  display: flex; flex-wrap: wrap; gap: 10px 18px; align-items: center; justify-content: space-between;
  font-size: .85rem; color: #c6a6a4;
}
.cmp-reopen {
  background: none; border: none; color: #f2d7d5; text-decoration: underline;
  cursor: pointer; min-height: 44px; font: inherit; padding: 0;
}
.cmp-reopen:hover { color: #fff; }

/* ---------- CMP ---------- */
.cmp {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 1000;
  background: var(--surface-2); border-top: 1px solid var(--border-strong);
  box-shadow: 0 -6px 24px rgba(28, 25, 23, .12);
  padding: 16px; max-height: 85dvh; overflow: auto;
}
.cmp__bar { display: grid; gap: 12px; max-width: var(--maxw); margin: 0 auto; }
@media (min-width: 768px) { .cmp__bar { grid-template-columns: 1fr auto; align-items: center; } }
.cmp__text { margin: 0; font-size: .93rem; line-height: 1.6; color: var(--text-muted); }
.cmp__actions { display: flex; flex-wrap: wrap; gap: 8px; }
.cmp__panel { max-width: var(--maxw); margin: 0 auto; display: grid; gap: 12px; }
.cmp__bar[hidden], .cmp__panel[hidden] { display: none; }
.cmp__title { margin: 0; font-size: 1.15rem; }
.cmp__row { border-top: 1px solid var(--border); padding-top: 12px; }
.cmp__rowhead { display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.cmp__cat { font-weight: 700; }
.cmp__state { color: var(--text-soft); font-size: .9rem; }
.cmp__more { margin-top: 6px; }
.cmp__more summary { cursor: pointer; color: var(--accent); font-size: .9rem; font-weight: 600; min-height: 44px; display: flex; align-items: center; }
.cmp__more p { margin: 6px 0 0; font-size: .9rem; color: var(--text-muted); }
.cmp__toggle { width: 44px; height: 26px; cursor: pointer; }

/* ---------- Utility ---------- */
.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;
}
.lead { font-size: 1.1rem; color: var(--text-muted); max-width: var(--measure); }
.reading-time::before { content: ""; }
.divider { border: 0; border-top: 1px solid var(--border); margin: var(--sp-5) 0; }
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }

/* ---------- Motion ---------- */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}

/* footer heading compliance (audit: footer allows only simple tags) */
.site-footer .footer-title{font-weight:700;font-size:.8rem;letter-spacing:.04em;text-transform:uppercase;margin:0 0 .6rem;line-height:1.3;opacity:.9}
.site-footer .footer-strong{font-weight:700}
.site-footer p{margin:.25rem 0}

/* No-JS fallback: keep mobile navigation reachable without JavaScript */
html:not(.js-enabled) .main-nav,
html:not(.js-enabled) .primary-nav{display:block !important}
html:not(.js-enabled) .nav-toggle{display:none !important}
