/* ==========================================================================
   dreischhoff.com – Stylesheet
   Design „A1 Plex & Kobalt": Monospace-Wortmarke mit rotem .com,
   Papier / Tinten-Navy / Kobalt — Zahlen × Code.
   Schriften liegen LOKAL unter schriften/ (kein Google-Abruf).
   ========================================================================== */

/* --- 0. Schriften (selbst gehostet) -------------------------------------- */
@font-face {
  font-family: "IBM Plex Mono";
  src: url("schriften/ibm-plex-mono-400.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "IBM Plex Mono";
  src: url("schriften/ibm-plex-mono-500.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "IBM Plex Mono";
  src: url("schriften/ibm-plex-mono-600.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "IBM Plex Sans";
  src: url("schriften/ibm-plex-sans.woff2") format("woff2");
  font-weight: 100 700;
  font-style: normal;
  font-display: swap;
}

/* --- 1. Farben & Grundwerte ---------------------------------------------- */
:root {
  --bg:            #f7f6f2;   /* Papier */
  --bg-soft:       #eceae2;   /* Sand für Wechsel-Sektionen */
  --bg-card:       #ffffff;
  --bg-dark:       #0d1b2e;   /* Tinten-Navy (Hero, Kontakt) */
  --bg-darker:     #081120;   /* Nacht (Fußzeile) */
  --ink:           #0d1b2e;
  --ink-2:         #3a4350;
  --ink-3:         #5b6472;
  --line:          #d9d6cc;
  --line-strong:   #c3beb0;
  --kobalt:        #1a3cff;
  --kobalt-dark:   #1230cc;
  --kobalt-soft:   #e6ebff;
  --kobalt-hell:   #8fa3ff;   /* Akzenttext auf dunklen Flächen */
  --rot:           #f60c0c;   /* dp-Familienrot: Wortmarke ».com« + Cursor */
  --hell:          #f7f6f2;
  --hell-2:        #b9c2cf;   /* gedämpfter Text auf Navy */

  --radius:        6px;
  --radius-sm:     4px;
  --shadow:        0 1px 2px rgba(13, 27, 46, .05), 0 8px 24px rgba(13, 27, 46, .07);
  --shadow-lift:   0 2px 4px rgba(13, 27, 46, .07), 0 18px 40px rgba(13, 27, 46, .12);

  --font:      "IBM Plex Sans", -apple-system, BlinkMacSystemFont, "Segoe UI",
               Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, SFMono-Regular, Consolas,
               "Courier New", monospace;

  --wrap:  1120px;
  --gutter: clamp(20px, 5vw, 48px);
}

/* --- 2. Reset ------------------------------------------------------------ */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body, h1, h2, h3, h4, p, ul, ol, li, figure, blockquote { margin: 0; padding: 0; }
ul, ol { list-style: none; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  /* Dekor-Animationen ganz ausblenden statt einfrieren */
  .formeln, .timeline::after { display: none !important; }
}

body {
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* --- 3. Hilfsklassen ----------------------------------------------------- */
.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 999;
  background: var(--kobalt);
  color: #ffffff;
  padding: 12px 20px;
  border-radius: 0 0 var(--radius-sm) 0;
  font-weight: 600;
}
.skip-link:focus { left: 0; }

:where(a, button, summary):focus-visible {
  outline: 3px solid var(--kobalt);
  outline-offset: 3px;
  border-radius: 2px;
}
/* Auf dunklen Flächen wäre Kobalt kaum sichtbar — dort heller Ring */
:where(.hero, .contact, .site-footer) :where(a, button):focus-visible {
  outline-color: var(--kobalt-hell);
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--kobalt);
}

.section {
  padding-block: clamp(64px, 9vw, 116px);
  scroll-margin-top: 84px;
}
.section--soft { background: var(--bg-soft); border-block: 1px solid var(--line); }

.section__head { max-width: 62ch; margin-bottom: clamp(36px, 5vw, 60px); }
.section__head h2 {
  font-family: var(--font-mono);
  font-size: clamp(1.7rem, 3.8vw, 2.4rem);
  line-height: 1.18;
  letter-spacing: -.02em;
  font-weight: 600;
  margin-top: 14px;
}
.section__head p {
  margin-top: 18px;
  font-size: 1.06rem;
  color: var(--ink-2);
}

/* --- 4. Kopfzeile / Navigation ------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247, 246, 242, .92);
  backdrop-filter: saturate(160%) blur(10px);
  border-bottom: 1px solid var(--line);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 68px;
}

.brand {
  display: inline-flex;
  align-items: baseline;
  text-decoration: none;
}
.brand__wordmark {
  font-family: var(--font-mono);
  font-size: 1.06rem;
  font-weight: 600;
  letter-spacing: -.01em;
  color: var(--ink);
  line-height: 1;
}
.brand__tld { color: var(--rot); }
.brand__cursor {
  display: inline-block;
  width: .5em;
  height: .95em;
  background: var(--rot);
  margin-left: .18em;
  vertical-align: -.12em;
}

.nav { display: flex; align-items: center; gap: 4px; }
.nav a {
  text-decoration: none;
  font-size: .95rem;
  font-weight: 600;
  color: var(--ink-2);
  padding: 9px 14px;
  border-radius: var(--radius-sm);
  transition: color .18s ease, background-color .18s ease;
}
.nav a:hover { color: var(--kobalt-dark); background: var(--kobalt-soft); }
.nav a[aria-current="true"] { color: var(--kobalt-dark); background: var(--kobalt-soft); }

.nav__cta {
  margin-left: 8px;
  background: var(--kobalt) !important;
  color: #ffffff !important;
  padding: 10px 18px !important;
}
.nav__cta:hover { background: var(--kobalt-dark) !important; }

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  padding: 9px 12px;
  font: inherit;
  font-size: .9rem;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
}

@media (max-width: 860px) {
  .nav-toggle { display: block; }
  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    background: var(--bg);
    border-bottom: 1px solid var(--line);
    padding: 12px var(--gutter) 20px;
    box-shadow: var(--shadow);
  }
  .nav[hidden] { display: none; }
  .nav a { padding: 13px 14px; }
  .nav__cta { margin-left: 0; margin-top: 8px; text-align: center; }
}

/* --- 5. Hero (Tinten-Navy-Bühne) ------------------------------------------ */
.hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(56px, 8vw, 104px) clamp(56px, 8vw, 96px);
  background:
    radial-gradient(56rem 30rem at 88% -12%, rgba(26, 60, 255, .16), transparent 60%),
    radial-gradient(40rem 26rem at 0% 112%, rgba(8, 17, 32, .8), transparent 62%),
    var(--bg-dark);
  color: var(--hell);
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(0, 1fr);
  gap: clamp(36px, 6vw, 76px);
  align-items: center;
}

.hero .eyebrow {
  color: var(--kobalt-hell);
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.hero .eyebrow::before {
  content: "";
  width: 44px;
  height: 1px;
  background: var(--kobalt);
}

.hero h1 {
  margin-top: 18px;
  font-family: var(--font-mono);
  font-size: clamp(2.3rem, 5.8vw, 3.8rem);
  line-height: 1.06;
  letter-spacing: -.03em;
  font-weight: 600;
}

.hero__role {
  margin-top: 18px;
  font-size: clamp(1.04rem, 2.2vw, 1.22rem);
  font-weight: 600;
  color: var(--kobalt-hell);
  line-height: 1.4;
}

.hero__text {
  margin-top: 22px;
  max-width: 56ch;
  font-size: 1.05rem;
  color: var(--hell-2);
}

.hero__actions {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero__meta {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 26px;
  font-size: .93rem;
  color: var(--hell-2);
}
.hero__meta li { display: flex; align-items: center; gap: 8px; }
.hero__meta svg { flex: none; color: var(--kobalt-hell); }

/* Portrait — bewusst in Farbe */
.portrait { justify-self: center; width: 100%; max-width: 340px; }
.portrait__frame {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-darker);
  border: 1px solid rgba(247, 246, 242, .5);
  outline: 1px solid rgba(26, 60, 255, .5);
  outline-offset: 6px;
  box-shadow: var(--shadow-lift);
}
.portrait__frame img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.portrait__fallback {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: grid;
  place-items: center;
  color: var(--kobalt-hell);
}
.portrait__initials {
  font-family: var(--font-mono);
  font-size: 3.2rem;
  font-weight: 600;
  letter-spacing: .04em;
  line-height: 1;
}

@media (max-width: 860px) {
  .hero__grid { grid-template-columns: 1fr; }
  .portrait { order: -1; max-width: 220px; justify-self: start; }
  .portrait__frame { aspect-ratio: 1 / 1; }
  .portrait__initials { font-size: 2.2rem; }
}

/* --- 6. Buttons ---------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  font: inherit;
  font-size: .98rem;
  font-weight: 650;
  text-decoration: none;
  cursor: pointer;
  transition: transform .18s ease, background-color .18s ease,
              border-color .18s ease, color .18s ease, box-shadow .18s ease;
}
.btn:active { transform: translateY(1px); }

.btn--primary { background: var(--kobalt); color: #ffffff; box-shadow: var(--shadow); }
.btn--primary:hover { background: var(--kobalt-dark); }

/* auf der dunklen Hero-Bühne */
.btn--ghost { background: transparent; color: var(--hell); border-color: rgba(247, 246, 242, .45); }
.btn--ghost:hover { border-color: var(--kobalt-hell); color: var(--kobalt-hell); background: rgba(26, 60, 255, .1); }

.btn--light { background: var(--kobalt); color: #ffffff; }
.btn--light:hover { background: var(--kobalt-dark); }

.btn--outline-light { background: transparent; color: var(--hell); border-color: rgba(247, 246, 242, .4); }
.btn--outline-light:hover { border-color: var(--hell); background: rgba(247, 246, 242, .08); }

/* --- 7. Kennzahlen & Kompetenzen ----------------------------------------- */
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-bottom: clamp(44px, 6vw, 68px);
}
.stat {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 26px;
  box-shadow: var(--shadow);
  border-top: 2px solid var(--kobalt);
}
.stat__value {
  font-family: var(--font-mono);
  font-size: clamp(1.7rem, 3.2vw, 2.2rem);
  font-weight: 600;
  letter-spacing: -.02em;
  color: var(--kobalt);
  line-height: 1.1;
}
.stat__label { margin-top: 10px; font-size: .95rem; color: var(--ink-2); }

.competences {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 26px;
}
.competence h3 {
  font-family: var(--font-mono);
  font-size: 1.06rem;
  font-weight: 600;
  letter-spacing: -.01em;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--kobalt);
  display: inline-block;
}
.competence ul { margin-top: 16px; display: grid; gap: 9px; }
.competence li {
  position: relative;
  padding-left: 22px;
  font-size: .97rem;
  color: var(--ink-2);
}
.competence li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: .62em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--kobalt);
  opacity: .55;
}

/* --- 8. Werdegang (Zeitstrahl) ------------------------------------------- */

/* Bühne für die aufsteigenden Formeln im Hintergrund */
.section--buehne { position: relative; overflow: hidden; }
.section--buehne .wrap { position: relative; z-index: 1; }
.formeln {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}
.formeln span {
  position: absolute;
  top: 102%;
  font-family: var(--font-mono);
  color: var(--kobalt);
  white-space: nowrap;
  animation: formel-flug linear infinite;
  will-change: top;
}
@keyframes formel-flug {
  from { top: 102%; }
  to   { top: -8%; }
}

.timeline { position: relative; display: grid; gap: 4px; }
.timeline::before {
  content: "";
  position: absolute;
  left: 9px;
  top: 12px;
  bottom: 12px;
  width: 2px;
  background: linear-gradient(180deg, var(--kobalt) 0%, var(--line-strong) 78%, transparent 100%);
}
/* Der Puls: ein Lichtpunkt wandert die Linie AUFWÄRTS — von den frühen
   Stationen hinauf zur aktuellen. Position steuert das kleine Script
   in index.html über die Variablen --puls-top / --puls-opacity. */
.timeline::after {
  content: "";
  position: absolute;
  left: 7px;
  top: var(--puls-top, 110%);
  width: 6px;
  height: 46px;
  border-radius: 3px;
  background: linear-gradient(180deg, transparent, var(--kobalt-hell) 45%, #d4ddff 55%, transparent);
  filter: blur(1px);
  opacity: var(--puls-opacity, 0);
  pointer-events: none;
}

.tl-item {
  position: relative;
  padding: 0 0 34px 44px;
}
.tl-item::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 8px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--bg);
  border: 3px solid var(--line-strong);
  transition: transform .25s ease, background-color .25s ease,
              border-color .25s ease, box-shadow .25s ease;
}
.tl-item--now::before {
  border-color: var(--kobalt);
  box-shadow: 0 0 0 5px var(--kobalt-soft);
  animation: punkt-atmen 3.6s ease-in-out infinite;
}
.tl-item:hover::before { border-color: var(--kobalt); }
@keyframes punkt-atmen {
  0%, 100% { box-shadow: 0 0 0 0 rgba(26, 60, 255, .4); }
  50%      { box-shadow: 0 0 0 9px rgba(26, 60, 255, 0); }
}

/* Aktivierung: Der aufsteigende Puls erreicht eine Station —
   der Punkt füllt sich kobaltblau und springt auf, die Zeile wird fett. */
.tl-item__role, .tl-item__period { transition: font-weight .25s ease, color .25s ease; }
.tl-item--aktiv::before {
  background: var(--kobalt);
  border-color: var(--kobalt);
  transform: scale(1.4);
  box-shadow: 0 0 0 7px rgba(26, 60, 255, .22);
}
.tl-item--aktiv .tl-item__role { font-weight: 700; color: var(--kobalt-dark); }
.tl-item--aktiv .tl-item__period { color: var(--kobalt-dark); }

.tl-item__period {
  font-family: var(--font-mono);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.tl-item--now .tl-item__period { color: var(--kobalt-dark); }

.tl-item__role {
  margin-top: 5px;
  font-size: 1.16rem;
  font-weight: 600;
  letter-spacing: -.005em;
}
.tl-item__org { color: var(--kobalt); font-weight: 600; }
.tl-item__desc { margin-top: 8px; max-width: 68ch; color: var(--ink-2); font-size: .98rem; }

.education {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 18px;
}
.edu-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 24px;
}
.edu-card__year { font-family: var(--font-mono); font-size: .78rem; font-weight: 600; letter-spacing: .08em; color: var(--kobalt); }
.edu-card__title { margin-top: 6px; font-weight: 700; font-size: 1rem; }
.edu-card__sub { margin-top: 5px; font-size: .92rem; color: var(--ink-2); }

.subhead {
  margin-top: clamp(44px, 6vw, 64px);
  margin-bottom: 6px;
  font-family: var(--font-mono);
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: -.01em;
}

/* --- 9. Projekte --------------------------------------------------------- */
.projects {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 22px;
}
.project {
  display: flex;
  flex-direction: column;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 26px;
  box-shadow: var(--shadow);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.project:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lift);
  border-color: var(--line-strong);
}
.project__icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: var(--radius-sm);
  background: var(--kobalt-soft);
  color: var(--kobalt);
  margin-bottom: 18px;
}
.project h3 { font-family: var(--font-mono); font-size: 1.08rem; font-weight: 600; letter-spacing: -.01em; }
.project p { margin-top: 10px; font-size: .96rem; color: var(--ink-2); flex: 1; }
.project__logo { margin-top: 18px; }
.project__logo img {
  height: 54px;
  width: auto;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 6px 10px;
  box-sizing: content-box;
}
.project__link {
  margin-top: 16px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: .93rem;
  font-weight: 700;
  color: var(--kobalt);
  text-decoration: none;
}
.project__link:hover { color: var(--kobalt-dark); text-decoration: underline; }

.tags { margin-top: 18px; display: flex; flex-wrap: wrap; gap: 7px; }
.tag {
  font-family: var(--font-mono);
  font-size: .74rem;
  font-weight: 500;
  color: var(--ink-2);
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 4px 10px;
}

.note {
  margin-top: 30px;
  padding: 20px 24px;
  border-left: 3px solid var(--kobalt);
  background: var(--kobalt-soft);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: .96rem;
  color: var(--ink-2);
}

/* --- 10. Kontakt --------------------------------------------------------- */
.contact {
  background:
    radial-gradient(46rem 26rem at 90% 0%, rgba(26, 60, 255, .14), transparent 60%),
    var(--bg-dark);
  color: var(--hell);
  padding-block: clamp(64px, 9vw, 108px);
  scroll-margin-top: 84px;
}
.contact .eyebrow {
  color: var(--kobalt-hell);
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.contact .eyebrow::before {
  content: "";
  width: 44px;
  height: 1px;
  background: var(--kobalt);
}
.contact h2 {
  margin-top: 14px;
  font-family: var(--font-mono);
  font-size: clamp(1.7rem, 3.8vw, 2.4rem);
  line-height: 1.18;
  letter-spacing: -.02em;
  font-weight: 600;
}
.contact p {
  margin-top: 18px;
  max-width: 54ch;
  color: var(--hell-2);
  font-size: 1.05rem;
}
.contact__actions { margin-top: 34px; display: flex; flex-wrap: wrap; gap: 12px; }

/* --- 11. Fußzeile -------------------------------------------------------- */
.site-footer {
  background: var(--bg-darker);
  color: rgba(247, 246, 242, .55);
  border-top: 1px solid rgba(26, 60, 255, .3);
  padding-block: 30px;
  font-size: .9rem;
}
.site-footer__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 28px;
  align-items: center;
  justify-content: space-between;
}
.site-footer nav { display: flex; flex-wrap: wrap; gap: 22px; }
.site-footer a { color: rgba(247, 246, 242, .82); text-decoration: none; }
.site-footer a:hover { color: var(--kobalt-hell); text-decoration: underline; }

/* --- 12. Rechtstexte (Impressum / Datenschutz) --------------------------- */
.legal { padding-block: clamp(52px, 7vw, 88px); }
.legal__inner { max-width: 74ch; }
.legal h1 {
  font-family: var(--font-mono);
  font-size: clamp(1.9rem, 4.2vw, 2.7rem);
  line-height: 1.14;
  letter-spacing: -.02em;
  font-weight: 600;
  margin-top: 14px;
}
.legal h2 {
  margin-top: 44px;
  font-family: var(--font-mono);
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: -.01em;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}
.legal h3 { margin-top: 28px; font-size: 1.02rem; font-weight: 700; }
.legal p, .legal li { margin-top: 14px; color: var(--ink-2); }
.legal ul { margin-top: 8px; }
.legal li { position: relative; padding-left: 20px; }
.legal li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: .68em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--kobalt);
  opacity: .55;
}
.legal a { color: var(--kobalt); text-decoration: underline; text-underline-offset: 3px; }
.legal a:hover { color: var(--kobalt-dark); }
.legal address {
  font-style: normal;
  margin-top: 14px;
  padding: 20px 24px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-left: 3px solid var(--kobalt);
  border-radius: var(--radius);
  color: var(--ink);
  line-height: 1.8;
}
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 48px;
  font-weight: 700;
  color: var(--kobalt);
  text-decoration: none;
}
.back-link:hover { color: var(--kobalt-dark); text-decoration: underline; }

/* --- 13. Druck ----------------------------------------------------------- */
@media print {
  .site-header, .nav, .hero__actions, .contact__actions { display: none !important; }
  body { font-size: 11pt; color: #000; background: #fff; }
  .hero, .contact, .site-footer { background: #fff; color: #000; }
  .hero__role, .hero__text, .hero__meta, .contact p { color: #000; }
  .project, .stat { box-shadow: none; break-inside: avoid; }
  .tl-item { break-inside: avoid; }
}
