@charset "UTF-8";
/* ==========================================================================
   Memoria — Designsystem
   Untermarke der AB-Transport UG (haftungsbeschränkt)

   Grundhaltung (Briefing Abschnitt 13):
   gedeckte Palette, Serif-Überschriften, ruhige Bildsprache, sparsame Animation.
   Keine externen Ressourcen (keine CDN, keine Google Fonts) — DSGVO.
   ========================================================================== */

/* --- 1. Tokens ---------------------------------------------------------- */

:root {
  /* Farbe. Kontraste geprüft gegen --paper (#F6F4F0):
     --ink 15.1:1 · --ink-2 7.4:1 · --primary 9.6:1 · --accent 4.6:1 (nur ab 18px/bold) */
  --paper:      #F6F4F0;
  --paper-2:    #EDE9E1;
  --surface:    #FFFFFF;
  --ink:        #191E1C;
  --ink-2:      #4C5451;
  --line:       #D9D3C8;
  --line-soft:  #E7E2D8;
  --primary:    #23423C;
  --primary-2:  #16302A;
  --primary-3:  #0E211D;
  --on-primary: #F3F1EC;
  --accent:     #8A6835;
  --accent-2:   #6E5228;
  --accent-soft:#EFE5D3;
  --focus:      #A8541F;

  /* Typografie */
  --serif: Charter, "Bitstream Charter", "Iowan Old Style", "Palatino Linotype",
           Palatino, "Book Antiqua", Georgia, "Times New Roman", serif;
  --sans: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue",
          Arial, "Noto Sans", sans-serif;

  --step--1: clamp(0.84rem, 0.82rem + 0.10vw, 0.90rem);
  --step-0:  clamp(1.00rem, 0.97rem + 0.16vw, 1.10rem);
  --step-1:  clamp(1.16rem, 1.10rem + 0.30vw, 1.35rem);
  --step-2:  clamp(1.38rem, 1.26rem + 0.58vw, 1.75rem);
  --step-3:  clamp(1.62rem, 1.42rem + 1.00vw, 2.30rem);
  --step-4:  clamp(1.95rem, 1.60rem + 1.72vw, 3.05rem);
  --step-5:  clamp(2.30rem, 1.75rem + 2.70vw, 3.90rem);

  /* Raum */
  --sp-1: 0.35rem;  --sp-2: 0.7rem;   --sp-3: 1.1rem;
  --sp-4: 1.7rem;   --sp-5: 2.6rem;   --sp-6: 4rem;    --sp-7: 6rem;

  --wrap: 74rem;
  --wrap-narrow: 46rem;
  --radius: 3px;
  --radius-lg: 5px;
  --shadow: 0 1px 2px rgba(25,30,28,.05), 0 8px 24px -12px rgba(25,30,28,.18);
}

/* --- 2. Reset / Basis --------------------------------------------------- */

*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

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

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: var(--step-0);
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

img, svg, video { max-width: 100%; height: auto; display: block; }

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.18;
  letter-spacing: -0.012em;
  color: var(--primary-2);
  margin: 0 0 var(--sp-3);
  text-wrap: balance;
}

h1 { font-size: var(--step-5); }
h2 { font-size: var(--step-3); }
h3 { font-size: var(--step-1); }
h4 { font-size: var(--step-0); letter-spacing: 0; }

p, li { text-wrap: pretty; }
p { margin: 0 0 var(--sp-3); max-width: 68ch; }

a { color: var(--primary); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--accent-2); }

strong, b { font-weight: 650; color: var(--primary-3); }

:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 2px;
  border-radius: 2px;
}

hr { border: 0; border-top: 1px solid var(--line); margin: var(--sp-5) 0; }

/* --- 3. Layout ---------------------------------------------------------- */

.wrap { width: min(100% - 2.5rem, var(--wrap)); margin-inline: auto; }
.wrap-narrow { width: min(100% - 2.5rem, var(--wrap-narrow)); margin-inline: auto; }

.section { padding-block: var(--sp-6); }
.section--tight { padding-block: var(--sp-5); }
.section--alt { background: var(--paper-2); }
.section--ink { background: var(--primary-2); color: var(--on-primary); }
.section--ink h2, .section--ink h3 { color: #FFFFFF; }
/* Buttons ausnehmen: sonst gewinnt diese Regel per Spezifität gegen
   .btn--light und färbt hellen Text auf hellen Grund. */
.section--ink a:not(.btn) { color: #E4D8BE; }
.section--ink a:not(.btn):hover { color: #FFFFFF; }

.skip {
  position: absolute; left: -9999px; top: 0; z-index: 999;
  background: var(--primary-2); color: #fff; padding: var(--sp-2) var(--sp-3);
}
.skip:focus { left: var(--sp-2); top: var(--sp-2); }

/* --- 4. Kopfzeile ------------------------------------------------------- */

.site-header {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  position: sticky; top: 0; z-index: 60;
}

.header-inner {
  display: flex; align-items: center; gap: var(--sp-3);
  min-height: 4.6rem;
}

.brand { display: flex; flex-direction: column; text-decoration: none; margin-right: auto; }
.brand__name {
  font-family: var(--serif); font-size: 1.55rem; font-weight: 600;
  letter-spacing: .18em; color: var(--primary-2); line-height: 1;
  text-transform: uppercase;
}
.brand__sub {
  font-size: .64rem; letter-spacing: .19em; text-transform: uppercase;
  color: var(--ink-2); margin-top: .38rem;
}

.nav-toggle {
  display: inline-flex; align-items: center; gap: .5rem;
  font: inherit; font-size: var(--step--1); font-weight: 600;
  background: transparent; border: 1px solid var(--line);
  border-radius: var(--radius); padding: .55rem .8rem; color: var(--primary-2);
  cursor: pointer;
}
.nav-toggle__bars { display: block; width: 1.05rem; height: 2px; background: currentColor; position: relative; }
.nav-toggle__bars::before, .nav-toggle__bars::after {
  content: ""; position: absolute; left: 0; width: 100%; height: 2px; background: currentColor;
}
.nav-toggle__bars::before { top: -5px; }
.nav-toggle__bars::after  { top: 5px; }

.site-nav ul { list-style: none; margin: 0; padding: 0; }
.site-nav a {
  text-decoration: none; color: var(--primary-2); font-weight: 550;
  font-size: var(--step--1); letter-spacing: .01em;
}
.site-nav a[aria-current="page"] { color: var(--accent-2); text-decoration: underline; text-underline-offset: 5px; }

.header-cta { display: none; }

@media (max-width: 63.99em) {
  .site-nav {
    display: none;
    position: absolute; left: 0; right: 0; top: 100%;
    background: var(--paper); border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
  }
  .site-nav[data-open="true"] { display: block; }
  .site-nav ul { padding: var(--sp-2) 0 var(--sp-3); }
  .site-nav li { border-top: 1px solid var(--line-soft); }
  .site-nav li:first-child { border-top: 0; }
  .site-nav a { display: block; padding: .85rem 1.25rem; font-size: var(--step-0); }
}

@media (min-width: 64em) {
  .nav-toggle { display: none; }
  .site-nav ul { display: flex; gap: var(--sp-4); align-items: center; }
  .header-cta {
    display: inline-block; margin-left: var(--sp-4);
    font-size: var(--step--1); font-weight: 650; text-decoration: none;
    color: var(--on-primary); background: var(--primary);
    padding: .6rem 1.1rem; border-radius: var(--radius);
  }
  .header-cta:hover { background: var(--primary-2); color: #fff; }
}

/* --- 5. Buttons --------------------------------------------------------- */

.btn {
  display: inline-block; font: inherit; font-weight: 650; font-size: var(--step--1);
  letter-spacing: .015em; text-decoration: none; cursor: pointer;
  padding: .85rem 1.5rem; border-radius: var(--radius);
  border: 1px solid transparent; transition: background-color .18s ease, color .18s ease;
}
.btn--primary { background: var(--primary); color: var(--on-primary); }
.btn--primary:hover { background: var(--primary-3); color: #fff; }
.btn--ghost { background: transparent; color: var(--primary-2); border-color: var(--primary); }
.btn--ghost:hover { background: var(--primary); color: var(--on-primary); }
.btn--light { background: var(--accent-soft); color: var(--primary-3); }
.btn--light:hover { background: #fff; color: var(--primary-3); }
/* Zweitbutton auf dunklem Grund. Eigene Klasse statt style-Attribut, damit
   die Content-Security-Policy ohne 'unsafe-inline' auskommt. */
.btn--on-ink { background: transparent; color: var(--on-primary); border-color: #C8A96A; }
.btn--on-ink:hover { background: #C8A96A; color: var(--primary-3); }

.btn-row { display: flex; flex-wrap: wrap; gap: var(--sp-2); margin-top: var(--sp-4); }

/* --- 6. Hero ------------------------------------------------------------ */

.hero { background: var(--primary-2); color: var(--on-primary); position: relative; overflow: hidden; }
.hero__inner { padding-block: var(--sp-6) var(--sp-6); position: relative; z-index: 2; }
.hero h1 { color: #FFFFFF; max-width: 20ch; }
.hero__kicker {
  font-size: var(--step--1); letter-spacing: .19em; text-transform: uppercase;
  color: #D8C9A8; margin: 0 0 var(--sp-3);
}
.hero__lead { font-size: var(--step-1); max-width: 54ch; color: #E2E6E4; margin-bottom: 0; }
.hero__media { position: absolute; inset: 0; z-index: 1; opacity: .17; }
.hero__media img, .hero__media video { width: 100%; height: 100%; object-fit: cover; }
.hero--plain { background: var(--paper-2); color: var(--ink); border-bottom: 1px solid var(--line); }
.hero--plain h1 { color: var(--primary-2); }
.hero--plain .hero__kicker { color: var(--accent-2); }
.hero--plain .hero__lead { color: var(--ink-2); }
.hero--plain .hero__inner { padding-block: var(--sp-5); }

/* --- 7. Weiche: Privat / Institutionell --------------------------------- */

.split-choice { display: grid; gap: var(--sp-3); }
@media (min-width: 48em) { .split-choice { grid-template-columns: 1fr 1fr; } }

.choice {
  background: var(--surface); border: 1px solid var(--line);
  border-top: 3px solid var(--primary); border-radius: var(--radius-lg);
  padding: var(--sp-4); display: flex; flex-direction: column;
}
.choice--accent { border-top-color: var(--accent); }
.choice h3 { margin-bottom: var(--sp-2); }
.choice ul { margin: 0 0 var(--sp-4); padding-left: 1.1rem; color: var(--ink-2); font-size: var(--step--1); }
.choice .btn { margin-top: auto; align-self: flex-start; }

/* --- 8. Karten / Raster ------------------------------------------------- */

.grid { display: grid; gap: var(--sp-3); }
.grid--2 { grid-template-columns: 1fr; }
.grid--3 { grid-template-columns: 1fr; }
@media (min-width: 40em) { .grid--2, .grid--3 { grid-template-columns: 1fr 1fr; } }
@media (min-width: 62em) { .grid--3 { grid-template-columns: repeat(3, 1fr); } }

.card {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: var(--sp-4);
  display: flex; flex-direction: column;
}
.card h3 { font-size: var(--step-1); margin-bottom: var(--sp-2); }
.card p { color: var(--ink-2); font-size: var(--step--1); margin-bottom: var(--sp-3); }
.card p:last-child { margin-bottom: 0; }
.card__more { margin-top: auto; font-weight: 650; font-size: var(--step--1); text-decoration: none; }
.card__more::after { content: " →"; }
a.card { text-decoration: none; color: inherit; transition: border-color .18s ease, transform .18s ease; }
a.card:hover { border-color: var(--primary); }
a.card:hover h3 { color: var(--accent-2); }

/* --- 9. USP-Block ------------------------------------------------------- */

.usp { display: grid; gap: 0; border-top: 1px solid var(--line); }
.usp__item { border-bottom: 1px solid var(--line); padding-block: var(--sp-4); display: grid; gap: var(--sp-2); }
@media (min-width: 52em) {
  .usp__item { grid-template-columns: 4.5rem 1fr; column-gap: var(--sp-4); }
}
.usp__num {
  font-family: var(--serif); font-size: var(--step-2); color: var(--accent);
  line-height: 1; font-variant-numeric: tabular-nums;
}
.usp__body h3 { margin-bottom: var(--sp-2); }
.usp__body p:last-child { margin-bottom: 0; }

/* --- 10. Kennzahlen ----------------------------------------------------- */

.facts { display: grid; gap: var(--sp-3); grid-template-columns: repeat(2, 1fr); }
@media (min-width: 56em) { .facts { grid-template-columns: repeat(4, 1fr); } }
.fact { border-left: 2px solid var(--accent); padding-left: var(--sp-3); }
.fact__num {
  font-family: var(--serif); font-size: var(--step-3); line-height: 1.05;
  color: inherit; display: block; font-variant-numeric: tabular-nums;
}
.fact__label { font-size: var(--step--1); font-weight: 600; display: block; margin-top: .3rem; }
.fact__note { font-size: .78rem; opacity: .78; display: block; margin-top: .15rem; }

/* --- 11. Zusagen-Tabelle ------------------------------------------------ */

.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--surface); }
table { border-collapse: collapse; width: 100%; min-width: 30rem; font-size: var(--step--1); }
caption { text-align: left; padding: var(--sp-3) var(--sp-3) 0; color: var(--ink-2); font-size: var(--step--1); }
th, td { text-align: left; padding: .9rem var(--sp-3); border-bottom: 1px solid var(--line-soft); vertical-align: top; }
thead th { background: var(--paper-2); font-weight: 650; color: var(--primary-2); border-bottom-color: var(--line); }
tbody tr:last-child th, tbody tr:last-child td { border-bottom: 0; }
tbody th { font-weight: 600; color: var(--primary-2); }

/* --- 12. Listen --------------------------------------------------------- */

.checklist { list-style: none; margin: 0; padding: 0; display: grid; gap: var(--sp-2); }
.checklist li { padding-left: 1.75rem; position: relative; }
.checklist li::before {
  content: ""; position: absolute; left: 0; top: .58em;
  width: .62rem; height: .32rem; border-left: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent); transform: rotate(-45deg);
}
.section--ink .checklist li::before { border-color: #C8A96A; }

.plain-list { list-style: none; margin: 0; padding: 0; }
.plain-list li { padding: .55rem 0; border-bottom: 1px solid var(--line-soft); }
.plain-list li:last-child { border-bottom: 0; }

.cols { display: grid; gap: var(--sp-4); }
@media (min-width: 48em) { .cols { grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr)); } }
.cols h3 { font-size: var(--step-0); text-transform: uppercase; letter-spacing: .1em;
           font-family: var(--sans); color: var(--accent-2); }

/* --- 13. Ablaufschritte ------------------------------------------------- */

.steps { counter-reset: step; list-style: none; margin: 0; padding: 0; display: grid; gap: var(--sp-4); }
.steps li { counter-increment: step; display: grid; gap: var(--sp-2); }
@media (min-width: 44em) { .steps li { grid-template-columns: 3rem 1fr; column-gap: var(--sp-3); } }
.steps li::before {
  content: counter(step, decimal-leading-zero);
  font-family: var(--serif); font-size: var(--step-2); color: var(--accent); line-height: 1;
}
.steps h3 { margin-bottom: var(--sp-1); font-size: var(--step-1); }
.steps p:last-child { margin-bottom: 0; }

/* --- 14. Zitat / Haltungssatz ------------------------------------------- */

blockquote.stance {
  margin: var(--sp-4) 0; padding: var(--sp-4) var(--sp-4) var(--sp-4) var(--sp-5);
  border-left: 3px solid var(--accent); background: var(--surface);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
}
blockquote.stance p {
  font-family: var(--serif); font-size: var(--step-2); line-height: 1.35;
  color: var(--primary-2); margin: 0; max-width: 34ch;
}
.section--ink blockquote.stance { background: var(--primary-3); }
.section--ink blockquote.stance p { color: #FFFFFF; }

/* --- 15. Vorher-Nachher (Signature-Element) ----------------------------- */

.ba {
  --pos: 50%;
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--line); background: var(--paper-2); isolation: isolate;
}
.ba__frame { position: relative; aspect-ratio: 3 / 2; }
.ba__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ba__img--after { clip-path: inset(0 0 0 var(--pos)); }
.ba__divider {
  position: absolute; top: 0; bottom: 0; left: var(--pos); width: 2px;
  background: var(--paper); transform: translateX(-1px); pointer-events: none; z-index: 3;
}
.ba__handle {
  position: absolute; top: 50%; left: var(--pos); z-index: 4;
  width: 2.85rem; height: 2.85rem; margin: -1.42rem 0 0 -1.42rem;
  border-radius: 50%; background: var(--paper); border: 2px solid var(--primary-2);
  display: grid; place-items: center; pointer-events: none;
  box-shadow: 0 2px 10px rgba(0,0,0,.28);
}
.ba__handle::before { content: "◂ ▸"; font-size: .8rem; color: var(--primary-2); letter-spacing: -1px; }
.ba__range {
  position: absolute; inset: 0; z-index: 5; width: 100%; height: 100%;
  margin: 0; opacity: 0; cursor: ew-resize; -webkit-appearance: none; appearance: none;
  background: transparent;
}
.ba__range:focus-visible { opacity: 1; outline: 3px solid var(--focus); outline-offset: -3px; }
.ba__tag {
  position: absolute; bottom: var(--sp-2); z-index: 3;
  background: rgba(14,33,29,.82); color: #fff; font-size: .72rem;
  letter-spacing: .14em; text-transform: uppercase; padding: .3rem .65rem;
  border-radius: var(--radius);
}
.ba__tag--before { left: var(--sp-2); }
.ba__tag--after  { right: var(--sp-2); }
.ba__caption { font-size: var(--step--1); color: var(--ink-2); margin: var(--sp-2) 0 0; }

/* --- 16. Downloads ------------------------------------------------------ */

.downloads { list-style: none; margin: 0; padding: 0; display: grid; gap: var(--sp-2); }
.dl {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: var(--sp-3) var(--sp-4);
  display: flex; flex-wrap: wrap; gap: var(--sp-2) var(--sp-3); align-items: baseline;
}
.dl__title { font-weight: 650; color: var(--primary-2); font-size: var(--step-0); }
.dl__note { color: var(--ink-2); font-size: var(--step--1); flex: 1 1 14rem; margin: 0; }
.badge {
  font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; font-weight: 700;
  padding: .22rem .55rem; border-radius: 100px; white-space: nowrap;
}
.badge--todo { background: var(--accent-soft); color: var(--accent-2); border: 1px solid #DCC9A4; }
.badge--ready { background: #DCE7E2; color: var(--primary-2); border: 1px solid #B9CEC7; }

/* --- 17. FAQ ------------------------------------------------------------ */

.faq { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  cursor: pointer; padding: var(--sp-3) 2rem var(--sp-3) 0; position: relative;
  font-family: var(--serif); font-size: var(--step-1); color: var(--primary-2);
  list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; position: absolute; right: .25rem; top: 50%; transform: translateY(-50%);
  font-size: 1.5rem; color: var(--accent); font-family: var(--sans); line-height: 1;
}
.faq details[open] summary::after { content: "–"; }
.faq__answer { padding: 0 0 var(--sp-3); }
.faq__answer p:last-child { margin-bottom: 0; }

/* --- 18. Zielgruppen-Chips --------------------------------------------- */

.chips { display: flex; flex-wrap: wrap; gap: .5rem; list-style: none; margin: 0; padding: 0; }
.chips a {
  display: inline-block; text-decoration: none; font-size: var(--step--1); font-weight: 600;
  border: 1px solid var(--line); border-radius: 100px; padding: .4rem .95rem;
  background: var(--surface); color: var(--primary-2);
}
.chips a:hover { border-color: var(--primary); background: var(--primary); color: var(--on-primary); }
.chips a[aria-current="page"] { background: var(--primary-2); color: #fff; border-color: var(--primary-2); }

/* --- 19. Hinweisbox / Platzhalter -------------------------------------- */

.note {
  border: 1px dashed #C6AE7E; background: var(--accent-soft);
  border-radius: var(--radius-lg); padding: var(--sp-3) var(--sp-4);
  font-size: var(--step--1); color: #5A4620;
}
.note p:last-child { margin-bottom: 0; }
.note strong { color: #4A390F; }

.callout {
  background: var(--surface); border: 1px solid var(--line);
  border-left: 3px solid var(--primary); border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  padding: var(--sp-4);
}
.callout p:last-child { margin-bottom: 0; }
.callout h3 { font-size: var(--step-1); }

/* --- 20. Formular ------------------------------------------------------- */

.form { display: grid; gap: var(--sp-3); max-width: 38rem; }
.field { display: grid; gap: .4rem; }
.field label { font-weight: 650; font-size: var(--step--1); color: var(--primary-2); }
.field .hint { font-size: .8rem; color: var(--ink-2); }
input[type="text"], input[type="email"], input[type="tel"], textarea, select {
  font: inherit; font-size: var(--step-0); color: var(--ink);
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: .7rem .85rem; width: 100%;
}
textarea { min-height: 8rem; resize: vertical; }
input:focus, textarea:focus, select:focus { border-color: var(--primary); }
.field--check { grid-template-columns: auto 1fr; align-items: start; gap: .7rem; }
.field--check input { margin-top: .35rem; width: 1.05rem; height: 1.05rem; accent-color: var(--primary); }
.field--check label { font-weight: 400; font-size: var(--step--1); color: var(--ink-2); }
.hp { position: absolute; left: -9999px; }

/* --- 21. Fußzeile ------------------------------------------------------- */

.site-footer { background: var(--primary-3); color: #C9D2CF; padding-block: var(--sp-6) var(--sp-4); margin-top: var(--sp-6); }
.site-footer h2 { color: #fff; font-size: var(--step-1); }
.site-footer h3 {
  color: #C8A96A; font-family: var(--sans); font-size: .74rem;
  letter-spacing: .16em; text-transform: uppercase; margin-bottom: var(--sp-2);
}
.site-footer a { color: #DDE3E1; text-decoration: none; }
.site-footer a:hover { color: #fff; text-decoration: underline; }
.footer-grid { display: grid; gap: var(--sp-4); }
@media (min-width: 46em) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 68em) { .footer-grid { grid-template-columns: 1.3fr 1fr 1fr 1fr; } }
.footer-grid ul { list-style: none; margin: 0; padding: 0; font-size: var(--step--1); }
.footer-grid li { padding: .22rem 0; }
.footer-brand .brand__name { color: #fff; }
.footer-brand .brand__sub { color: #A9B5B1; }
.footer-brand p { font-size: var(--step--1); color: #B6C0BD; max-width: 32ch; }
.footer-legal {
  border-top: 1px solid rgba(255,255,255,.14); margin-top: var(--sp-5); padding-top: var(--sp-3);
  display: flex; flex-wrap: wrap; gap: var(--sp-2) var(--sp-4);
  font-size: .8rem; color: #9FACA8; align-items: center;
}
.footer-legal a { color: #C4CECB; }

/* --- 22. Kleinteile ---------------------------------------------------- */

.lead { font-size: var(--step-1); color: var(--ink-2); max-width: 58ch; }
.eyebrow {
  font-size: var(--step--1); letter-spacing: .18em; text-transform: uppercase;
  color: var(--accent-2); font-weight: 650; margin: 0 0 var(--sp-2);
}
.section--ink .eyebrow { color: #C8A96A; }
.muted { color: var(--ink-2); }
.small { font-size: var(--step--1); }
.mb0 { margin-bottom: 0; }
.mt4 { margin-top: var(--sp-4); }
.center { text-align: center; }
.stack > * + * { margin-top: var(--sp-3); }

.breadcrumb { font-size: .8rem; color: var(--ink-2); padding-block: var(--sp-2); }
.breadcrumb ol { list-style: none; display: flex; flex-wrap: wrap; gap: .4rem; margin: 0; padding: 0; }
.breadcrumb li + li::before { content: "›"; margin-right: .4rem; color: var(--line); }
.breadcrumb a { color: var(--ink-2); }

.figure-ph {
  border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden;
  background: var(--paper-2);
}
figure { margin: 0; }
figcaption { font-size: var(--step--1); color: var(--ink-2); margin-top: var(--sp-2); }

@media print {
  .site-header, .site-footer, .btn-row, .nav-toggle { display: none !important; }
  body { background: #fff; font-size: 11pt; }
  a::after { content: " (" attr(href) ")"; font-size: 9pt; color: #555; }
}
