/* indielab-portfolio — hell, warm, ruhig.
   Klassisch durch Serifen-Display und typografische Disziplin,
   zeitgemaess durch Praezision statt Effekten.
   Die Screenshots der Apps sind die einzigen Farbflaechen der Seite.

   Schriften kommen aus fonts.css (lokal, kein Google-Aufruf) und werden
   in functions.php vor diesem Stylesheet eingebunden. */

:root {
  --paper:#faf7f1;
  --paper-2:#f2eee5;
  --ink:#20211e;        /* 15.13:1 */
  --ink-2:#514f47;      /* 7.67:1  */
  --ink-3:#6e695b;      /* 5.12:1 auf paper, 4.73:1 auf paper-2 */
  --line:#e4ded1;
  --signal:#d4501a;     /* 3.96:1 — NUR Grosstext ab 24px und Flaechen */
  --signal-ink:#b8420f; /* 5.14:1 — Links und Kleintext */
  --live:#2f7345;       /* 5.37:1 */
  --serif:'Fraunces',Georgia,serif;
  --body:'Inter',system-ui,sans-serif;
  --mono:'JetBrains Mono',ui-monospace,monospace;

  /* --signal-tint ersetzt den alten --signal-dim aus dem Alt-Bestand ausserhalb
     des Redesigns (Projekt-Detail, statische Seiten, 404, Kontaktformular —
     siehe Task-3-Kritikpunkt). Keine Alias-Variablen: die Verwendungsstellen
     wurden auf die neuen Namen (--paper-2, --ink-3 direkt) umbenannt statt
     Altnamen als Aliase weiterzureichen. --signal-dim hatte keine direkte
     Entsprechung: der alte Wert (#ffe3d6) war eine Aufhellung des alten,
     kraeftigeren --signal (#ff5a1f). Neu berechnet als 15% --signal in --paper
     gemischt (#f4ded1) — bleibt im warmen Papierton und ergibt 7.24:1 gegen
     den fixen dunkelroten Text (#7c2d12), der in mark.luecke und
     .form-hinweis--fehler darauf sitzt. .todo-box nutzt dieselbe Flaeche,
     setzt aber keine eigene color und erbt --ink (12.5:1 gegen --signal-tint
     — unkritisch, siehe Kommentar dort). */
  --signal-tint:#f4ded1;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  line-height: 1.68;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }

/* Tastaturbedienung muss sichtbar bleiben — nicht entfernen. */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--signal-ink);
  outline-offset: 2px;
  border-radius: 2px;
}

.wrap { max-width: 1080px; margin: 0 auto; padding-inline: 56px; }

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

/* --- Nav --- */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 30px 0;
  font-size: 0.94rem;
  color: var(--ink-2);
}
.mark {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
}
.bars { display: inline-flex; gap: 2px; align-items: flex-end; height: 12px; }
.bars i { width: 2.5px; background: var(--signal); display: block; }
.bars i:nth-child(1) { height: 40%; opacity: .45; }
.bars i:nth-child(2) { height: 70%; opacity: .7; }
.bars i:nth-child(3) { height: 100%; }
.bars i:nth-child(4) { height: 55%; opacity: .55; }
.nav-links { display: flex; gap: 1.9rem; }
.nav-links a { text-decoration: none; }
.nav-links a:hover { text-decoration: underline; }

/* Der Entwurf kommt ohne Bewegung aus. Diese Regel ist die Absicherung fuer
   spaetere Ergaenzungen — wer einen Uebergang hinzufuegt, bekommt die
   Ruecksicht auf reduzierte Bewegung geschenkt statt sie zu vergessen. */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* --- Hero --- */
.hero { padding-block: 104px 74px; }
.hero h1 {
  font-family: var(--serif);
  font-size: clamp(2.7rem, 5.6vw, 4.5rem);
  line-height: 1.1;
  letter-spacing: -0.015em;
  font-weight: 700;
  margin: 0 0 30px;
  max-width: 17ch;
}
.hero h1 em { font-style: italic; color: var(--signal); }
.lede {
  font-size: 1.2rem;
  line-height: 1.72;
  color: var(--ink-2);
  max-width: 54ch;
  margin: 0 0 18px;
}
.beilaeufig {
  font-size: 1.02rem;
  color: var(--ink-3);
  max-width: 54ch;
  margin: 0 0 40px;
}

/* .hero__eyebrow bleibt bestehen: front-page.php nutzt sie nicht mehr, aber
   404.php haengt "Fehler 404" weiterhin daran (eigenstaendige Verwendung
   ausserhalb des Hero-Blocks, nicht Gegenstand dieses Tasks). */
.hero__eyebrow {
	font-family: var(--mono);
	font-size: 0.85rem;
	color: var(--ink-3);
	text-transform: uppercase;
	letter-spacing: 0.06em;
	margin: 0 0 1.25rem;
}

/* --- Projekt-Status und CTA ---
   .projekt-card war die Klasse der frueheren Grid-Karten auf der Startseite
   (entfernt in Task 6/7). Die Elemente darunter leben weiter: __status auf
   der Detailseite (single-projekt.php), __cta auf der 404-Seite (404.php). */
.projekt-card__status {
	display: inline-block;
	font-family: var(--mono);
	font-size: 0.72rem;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	padding: 0.2rem 0.55rem;
	border-radius: 999px;
	background: var(--paper-2);
	color: var(--ink-3);
}
.projekt-card__status--live { background: #e4f4ea; color: var(--live); }
.projekt-card__cta {
	display: block;
	margin-top: 1rem;
	font-family: var(--mono);
	font-size: 0.85rem;
	color: var(--signal-ink);
	font-weight: 500;
}

/* Fähigkeiten-Tags: bewusst dezent/statisch, nur auf der Detailseite. */
.skill-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 0.4rem;
	list-style: none;
	margin: 0 0 0.9rem;
	padding: 0;
}
.skill-tag {
	font-family: var(--mono);
	font-size: 0.72rem;
	color: var(--ink-3);
	border: 1px solid var(--line);
	border-radius: 5px;
	padding: 0.2rem 0.5rem;
}
.skill-tags--detail { margin: 1rem 0 1.5rem; }

/* --- Detail page --- */
.projekt-detail {
	max-width: 720px;
	margin: 0 auto;
	padding: 6rem 2rem 5rem;
}
.projekt-detail h1 { font-family: var(--serif); font-size: 2.4rem; margin: 0.75rem 0 0.5rem; }
.projekt-detail__stack { font-family: var(--mono); font-size: 0.85rem; color: var(--ink-3); margin: 0 0 2rem; }
.projekt-detail__body { font-size: 1.05rem; }
.projekt-detail__body p { margin: 0 0 1.2rem; }

/* --- Statische Seiten (Über mich, Kontakt, Impressum, Datenschutz, 404) --- */
.page-body {
	max-width: 720px;
	margin: 0 auto;
	padding: 6rem 2rem 5rem;
}
.page-body__title {
	font-family: var(--serif);
	font-size: clamp(2rem, 5vw, 2.8rem);
	line-height: 1.1;
	margin: 0 0 1.75rem;
}
.page-body__lede { font-size: 1.15rem; color: #3a352c; }
.page-body__content { font-size: 1.05rem; }
.page-body__content h2 {
	font-family: var(--serif);
	font-size: 1.5rem;
	margin: 2.5rem 0 0.75rem;
}
.page-body__content h3 {
	font-family: var(--serif);
	font-size: 1.15rem;
	margin: 1.75rem 0 0.5rem;
}
.page-body__content p { margin: 0 0 1.2rem; }
.page-body__content ul { margin: 0 0 1.2rem; padding-left: 1.25rem; }
.page-body__content li { margin-bottom: 0.4rem; }
.page-body--404 { text-align: center; padding-top: 8rem; }

/* Offene Stellen in Rechtstexten — auffällig, damit sie vor dem Go-Live
   nicht übersehen werden. */
mark.luecke {
	background: var(--signal-tint);
	color: #7c2d12;
	border: 1px dashed var(--signal);
	border-radius: 4px;
	padding: 0.05em 0.4em;
	font-family: var(--mono);
	font-size: 0.85em;
}

/* Platzhalter-Hinweis für noch zu befüllende Rechtstexte. Anders als
   mark.luecke/.form-hinweis--fehler setzt .todo-box keine eigene color,
   sondern erbt --ink (12.5:1 gegen --signal-tint — unkritisch). */
.todo-box {
	border: 1px dashed var(--signal);
	background: var(--signal-tint);
	border-radius: 10px;
	padding: 1rem 1.25rem;
	margin: 0 0 1.5rem;
	font-family: var(--mono);
	font-size: 0.85rem;
	line-height: 1.6;
}
.todo-box strong { display: block; margin-bottom: 0.35rem; }

/* --- Kontaktformular --- */
.kontakt-form { margin: 2rem 0 0; }
.kontakt-form__feld { margin: 0 0 1.25rem; }
.kontakt-form__feld label {
	display: block;
	font-family: var(--mono);
	font-size: 0.82rem;
	color: var(--ink-3);
	margin-bottom: 0.4rem;
}
.kontakt-form__feld input,
.kontakt-form__feld textarea {
	width: 100%;
	padding: 0.7rem 0.85rem;
	border: 1px solid var(--line);
	border-radius: 8px;
	background: #fff;
	font-family: var(--body);
	font-size: 1rem;
	color: var(--ink);
}
.kontakt-form__feld input:focus,
.kontakt-form__feld textarea:focus {
	border-color: var(--signal);
	box-shadow: 0 0 0 3px var(--signal-tint);
}
.kontakt-form__feld textarea { resize: vertical; }

/* Honeypot: für Menschen unsichtbar, für Bots ein Köder.
   Nicht display:none — manche Bots ignorieren solche Felder. */
.kontakt-form__hp {
	position: absolute;
	left: -9999px;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

.kontakt-form__datenschutz {
	font-size: 0.85rem;
	color: var(--ink-3);
	margin: 0 0 1.25rem;
}
.kontakt-form__button {
	font-family: var(--mono);
	font-size: 0.9rem;
	font-weight: 500;
	background: var(--ink);
	color: var(--paper);
	border: none;
	border-radius: 8px;
	padding: 0.8rem 1.6rem;
	cursor: pointer;
	transition: background 0.15s;
}
/* --signal waere hier 3.96:1 auf --paper bei 14.4px — unter AA (4.5:1).
   --signal-ink liefert 5.14:1 und besteht AA. */
.kontakt-form__button:hover { background: var(--signal-ink); }

.form-hinweis {
	border-radius: 8px;
	padding: 0.9rem 1.1rem;
	margin: 1.5rem 0 0;
	font-size: 0.95rem;
}
.form-hinweis--ok { background: #e4f4ea; color: #14532d; border: 1px solid #a7d8ba; }
.form-hinweis--fehler { background: var(--signal-tint); color: #7c2d12; border: 1px solid #f5b199; }

/* --- Footer ---
   .site-footer traegt zusaetzlich die Klasse .wrap (siehe footer.php) —
   die liefert den seitlichen Abstand einheitlich zu allen anderen
   Sektionen, .site-footer selbst setzt nur noch das vertikale Polster. */
.site-footer {
	padding-block: 2rem 3rem;
	font-family: var(--mono);
	font-size: 0.78rem;
	color: var(--ink-3);
	border-top: 1px solid var(--line);
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem 1.5rem;
	align-items: center;
	justify-content: space-between;
}
.site-footer p { margin: 0; }
.site-footer__nav { display: flex; flex-wrap: wrap; gap: 1.25rem; }
.site-footer__nav a { color: var(--ink-3); text-decoration: none; }
.site-footer__nav a:hover { color: var(--ink); text-decoration: underline; }

/* --- Hauptarbeiten --- */
.work { padding-block: 74px; border-bottom: 1px solid var(--line); }
.work h2 {
  font-family: var(--serif);
  font-size: 2.4rem;
  line-height: 1.14;
  letter-spacing: -0.012em;
  font-weight: 700;
  margin: 0 0 4px;
}
.work .wo {
  font-family: var(--mono);
  font-size: 0.78rem;
  color: var(--ink-3);
  margin: 0 0 20px;
}
.work .wo a { color: var(--signal-ink); text-decoration: none; }
.work .wo a:hover { text-decoration: underline; }
.work .q {
  font-size: 1.13rem;
  line-height: 1.72;
  color: var(--ink-2);
  max-width: 60ch;
  margin: 0 0 30px;
}
.shot {
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 18px 40px -26px rgba(40,35,25,.4);
}
.shot img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9.4;
  object-fit: cover;
  object-position: top center;
}
.nach {
  font-size: 0.98rem;
  color: var(--ink-3);
  max-width: 60ch;
  margin: 18px 0 0;
}
.nach b { color: var(--ink-2); font-weight: 500; }

/* --- Mittlere Stufe --- */
.pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  padding-block: 74px;
  border-bottom: 1px solid var(--line);
}
.pair h2 {
  font-family: var(--serif);
  font-size: 1.65rem;
  line-height: 1.2;
  font-weight: 700;
  margin: 0 0 4px;
}
.pair .wo {
  font-family: var(--mono);
  font-size: 0.76rem;
  color: var(--ink-3);
  margin: 0 0 16px;
}
.pair .wo a { color: var(--signal-ink); text-decoration: none; }
.pair .wo a:hover { text-decoration: underline; }
.pair .q { font-size: 1.02rem; color: var(--ink-2); margin: 0 0 22px; }
.pair .shot img { aspect-ratio: 16 / 10.5; }

/* Bewusste Leerstelle statt Screenshot (z.B. passwortgeschuetzte Projekte) —
   macht die Absicht sichtbar, damit es nicht wie ein fehlendes Bild wirkt. */
.shot-leer {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 140px;
  border: 1px dashed var(--line);
  border-radius: 10px;
  padding: 1.5rem;
  margin: 0;
  color: var(--ink-3);
  font-size: 0.92rem;
  font-style: italic;
  text-align: center;
}

/* --- Kleinkram --- */
.klein { padding-block: 66px; border-bottom: 1px solid var(--line); }
.klein-head {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 0 30px;
}
.k-row {
  display: grid;
  grid-template-columns: 170px 1fr 210px;
  gap: 34px;
  align-items: baseline;
  padding: 18px 0;
}
.k-row + .k-row { border-top: 1px dashed var(--line); }
.k-row .t { font-weight: 500; }
.k-row .d { color: var(--ink-2); }
.k-row .s {
  font-family: var(--mono);
  font-size: 0.74rem;
  color: var(--ink-3);
  text-align: right;
}

/* --- Wie das nebenher geht --- */
.wie { padding-block: 78px; border-bottom: 1px solid var(--line); }
.wie h2 {
  font-family: var(--serif);
  font-size: 2.2rem;
  line-height: 1.2;
  font-weight: 700;
  max-width: 20ch;
  margin: 0 0 14px;
}
.wie .sub {
  color: var(--ink-2);
  font-size: 1.1rem;
  max-width: 58ch;
  margin: 0 0 46px;
}
.w-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.w-grid h3 { font-size: 1.02rem; font-weight: 500; margin: 0 0 8px; font-family: var(--body); }
.w-grid p { color: var(--ink-2); font-size: 0.98rem; margin: 0; }

/* --- Schmalere Viewports --- */
@media (max-width: 1024px) {
  .pair { grid-template-columns: 1fr; gap: 56px; }
  .w-grid { grid-template-columns: 1fr; gap: 34px; }

  /* .home.home statt .home: die unveraenderten, unbedingten .home .work-Regeln
     aus Task 3 (grid-template-columns/grid-column) stehen im Stylesheet erst
     NACH diesem Block. Bei gleicher Selektor-Spezifitaet gewinnt sonst die
     spaetere, unbedingte Regel — auch innerhalb dieses Breakpoints — und das
     Grid bliebe zweispaltig. Verdoppelte Klasse statt !important loest den
     Vorrang, ohne die bestehende Blockposition oder -struktur anzutasten. */
  .home.home .work { grid-template-columns: 1fr; }
  .home.home .work .shot,
  .home.home .work:nth-of-type(2) .shot { grid-column: 1; grid-row: auto; margin-top: 24px; }
  .home.home .work:nth-of-type(2) h2,
  .home.home .work:nth-of-type(2) .wo,
  .home.home .work:nth-of-type(2) .q,
  .home.home .work:nth-of-type(2) .nach { grid-column: 1; }
}

@media (max-width: 768px) {
  .wrap { padding-inline: 24px; }
  .hero { padding-block: 64px 56px; }
  .work { padding-block: 56px; }
  .pair { padding-block: 56px; }
  .klein { padding-block: 52px; }
  .wie { padding-block: 60px; }

  /* Kleinkram stapeln — drei Spalten sind hier nicht lesbar. */
  .k-row { grid-template-columns: 1fr; gap: 6px; padding: 20px 0; }
  .k-row .s { text-align: left; }
}

@media (max-width: 480px) {
  /* .hero h1 statt bare h1 (Brief-Wortlaut): .hero h1 hat Spezifitaet 0,1,1 —
     ein bare h1 (0,0,1) wuerde sie nie schlagen, egal an welcher Position im
     Stylesheet, und bliebe damit wirkungslos. */
  .hero h1 { font-size: clamp(2rem, 8.5vw, 2.7rem); }
  .work h2 { font-size: 1.9rem; }
  .wie h2 { font-size: 1.75rem; }
  .lede { font-size: 1.1rem; }
  .nav-links { gap: 1.1rem; }
}

/* --- Kolophon --- */
.kolo {
  padding-block: 46px 84px;
  font-size: 0.92rem;
  color: var(--ink-3);
  display: flex;
  flex-wrap: wrap;
  gap: 10px 26px;
}
.kolo b { color: var(--ink-2); font-weight: 500; }

/* =====================================================================
   RESTYLE: Neo-Brutalist Dev — ausschliesslich Startseite.
   Scope-Anker: WordPress setzt die body-Klasse "home" ausschliesslich
   auf der Startseite (live verifiziert gegen 6 Routen, siehe Spec
   2026-07-29-indielab-restyle-neobrutalist-design.md, Abschnitt 2).
   Jede Regel hier beginnt mit ".home" und darf niemals ausserhalb dieses
   Praefixes etwas Globales ueberschreiben. ".home <bestehender Selektor>"
   hat durch die zusaetzliche Klasse immer hoehere Spezifitaet als der
   globale Selektor und gewinnt unabhaengig von der Position im
   Stylesheet — kein !important noetig.
   ===================================================================== */

.home {
  --home-bg:#0b0c0d;
  --home-ink:#eef0ea;      /* 17.05:1 gegen --home-bg */
  --home-muted:#a9afa6;    /* 8.74:1 */
  --home-line:#2a2d2f;
  --home-lime:#c8ff4d;     /* 16.66:1 */
  --home-pink:#ff3d81;     /* 5.81:1 */
  --home-font:'Space Mono', ui-monospace, monospace;

  background: var(--home-bg);
  background-image: radial-gradient(var(--home-line) 1px, transparent 1px);
  background-size: 22px 22px;
  color: var(--home-ink);
  font-family: var(--home-font);
}

.home a:focus-visible,
.home button:focus-visible,
.home input:focus-visible,
.home textarea:focus-visible {
  outline-color: var(--home-lime);
}

/* --- Nav --- */
.home .nav { border-bottom: 2px solid var(--home-line); color: var(--home-ink); }
.home .mark { color: var(--home-ink); }
.home .bars i { background: var(--home-lime); }
.home .nav-links a { color: var(--home-muted); }
.home .nav-links a:hover { color: var(--home-ink); }

/* --- Hero --- */
.home .hero h1 { font-family: var(--home-font); letter-spacing: -0.01em; }
.home .hero h1 em { color: var(--home-lime); font-style: normal; }
.home .lede { color: var(--home-muted); }
.home .beilaeufig { color: var(--home-muted); opacity: .8; }
.home .rule { border-top-color: var(--home-line); background: var(--home-line); }

/* --- Hauptarbeiten: 2-spaltiges Grid, keine Markup-Aenderung.
   .work bleibt eine flache Folge von h2/.wo/.q/.shot/.nach; die Spalte
   ergibt sich ausschliesslich aus grid-column je Kind. Zweite Hauptarbeit
   spiegelt die Spalten (Bild links) fuer visuellen Rhythmus. */
.home .work {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 44px;
  border-bottom: 2px solid var(--home-line);
  align-items: start;
}
.home .work h2,
.home .work .wo,
.home .work .q,
.home .work .nach { grid-column: 1; }
.home .work .shot { grid-column: 2; grid-row: 1 / span 5; align-self: start; }

.home .work:nth-of-type(2) h2,
.home .work:nth-of-type(2) .wo,
.home .work:nth-of-type(2) .q,
.home .work:nth-of-type(2) .nach { grid-column: 2; }
.home .work:nth-of-type(2) .shot { grid-column: 1; }

.home .work h2 { font-family: var(--home-font); color: var(--home-ink); }
.home .work .wo { font-family: var(--home-font); color: var(--home-pink); }
.home .work .wo a { color: var(--home-lime); }
.home .work .q { color: var(--home-muted); }
.home .work .nach {
  color: var(--home-ink);
  border-left: 2px solid var(--home-pink);
  padding-left: 12px;
}
.home .work .nach b { color: var(--home-lime); }
.home .shot {
  border: 2px solid var(--home-ink);
  border-radius: 0;
  background: #141517;
  box-shadow: none;
}

/* --- Paar-Stufe --- */
.home .pair { border-bottom: 2px solid var(--home-line); }
.home .pair-item { border: 2px solid var(--home-ink); padding: 32px; }
.home .pair h2 { font-family: var(--home-font); color: var(--home-ink); }
.home .pair .wo { font-family: var(--home-font); color: var(--home-pink); }
.home .pair .wo a { color: var(--home-lime); }
.home .pair .q { color: var(--home-muted); }
/* Kein eigenes .pair .shot noetig: die generische .home .shot-Regel aus
   Task 3 (Rahmen, kein Radius, dunkler Hintergrund) deckt Haupt- und
   Paar-Stufe bereits ab, da beide dieselbe .shot-Klasse nutzen. */

.home .shot-leer {
  border: 2px dashed var(--home-pink);
  border-radius: 0;
  color: var(--home-muted);
  font-style: normal;
  font-family: var(--home-font);
  text-align: left;
  flex-direction: column;
  align-items: flex-start;
}
.home .shot-leer .x { color: var(--home-pink); font-weight: 700; display: block; margin-bottom: 8px; }

/* --- Kleinkram --- */
.home .klein { border-bottom: 2px solid var(--home-line); }
.home .klein-head { font-family: var(--home-font); color: var(--home-lime); }
.home .k-row .t { font-family: var(--home-font); color: var(--home-ink); }
.home .k-row .d { color: var(--home-muted); }
.home .k-row .s { color: var(--home-lime); }
.home .k-row + .k-row { border-top: 1px dashed var(--home-line); }

/* --- Wie das nebenher geht --- */
.home .wie { border-bottom: 2px solid var(--home-line); }
.home .wie h2 { font-family: var(--home-font); color: var(--home-ink); }
.home .wie .sub { color: var(--home-muted); }
.home .w-grid h3 { font-family: var(--home-font); color: var(--home-ink); }
.home .w-grid p { color: var(--home-muted); }
.home .w-grid .num {
  display: block;
  font-family: var(--home-font);
  font-weight: 700;
  font-size: 1.6rem;
  color: var(--home-lime);
  margin-bottom: 10px;
}

/* --- Kolophon --- */
.home .kolo { border-top: 2px solid var(--home-line); color: var(--home-muted); font-family: var(--home-font); }
.home .kolo b { color: var(--home-ink); }

/* --- Seitenfuss: rechtliche Pflichtlinks (Ueber mich/Kontakt/Impressum/
   Datenschutz) muessen von jeder Seite aus lesbar erreichbar sein — auch
   auf der Startseite blieb .site-footer sonst im hellen Altschema auf
   dunklem Grund stehen (3.58:1 normal, 1.21:1 im Hover, beide unter AA). */
.home .site-footer { color: var(--home-muted); border-top-color: var(--home-line); font-family: var(--home-font); }
.home .site-footer__nav a { color: var(--home-muted); }
.home .site-footer__nav a:hover { color: var(--home-ink); }
