/* =====================================================================
   Human Intelligence — Corinna Kegel  ·  Design-System (Entwurf)
   Schriften wie corinnakegel.com: Playfair Display (Display) + Source Sans Pro (Text)
   Palette: gedämpftes Bordeaux + neutrale Flächen + dunkles Rötlich-Grau
   ===================================================================== */

:root {
  /* Farben 1:1 von corinnakegel.com übernommen */
  --ink: #2c2c2c;
  --ink-soft: #555555;
  --paper: #ffffff;
  --paper-2: #f8f8f8;
  --accent: #c80063;
  --accent-2: #c70667;
  --accent-soft: #c70667;
  --dark: #909090;
  --dark-2: #a3a3a3;
  --muted: #747474;
  --line: #dddddd;
  --line-dark: rgba(255,255,255,.14);
  --radius: 18px;
  --radius-sm: 12px;
  --max: 1200px;
  --display: "Source Sans Pro", system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
  --sans: "Source Sans Pro", system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
  --ease: cubic-bezier(.2, .7, .2, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
html, body { overflow-x: hidden; max-width: 100%; }
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 18px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3 { font-family: var(--display); font-weight: 500; line-height: 1.2; margin: 0 0 .4em; letter-spacing: 0; color: #767676; }
h1 { font-size: clamp(2rem, 4.2vw, 3.3rem); font-weight: 600; letter-spacing: -.01em; }
h2 { font-size: clamp(1.55rem, 2.8vw, 2.25rem); }
h3 { font-size: clamp(1.1rem, 1.6vw, 1.3rem); }
p { margin: 0 0 1.1em; }
a { color: inherit; text-decoration: none; }

.wrap { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 28px; }
.section { padding: clamp(64px, 10vw, 130px) 0; }
.section.tight { padding: clamp(48px, 6vw, 80px) 0; }
.ink { background: var(--dark); color: #f0f0f0; }
.ink h1, .ink h2, .ink h3 { color: #fff; }
.soft { background: var(--paper-2); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .78rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase;
  color: var(--accent);
}
.eyebrow::before { content: ""; width: 22px; height: 1.5px; background: var(--accent); display: inline-block; }
.ink .eyebrow { color: #c80063; }
.ink .eyebrow::before { background: #c80063; }

.lead { font-size: clamp(1.15rem, 2vw, 1.45rem); line-height: 1.5; color: var(--ink-soft); max-width: 62ch; }
.ink .lead { color: #ececec; }
.measure { max-width: 68ch; }
.muted { color: var(--muted); }
.center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 28px; border-radius: 100px;
  font-family: var(--sans); font-weight: 600; font-size: 1rem;
  background: var(--accent); color: #fff; border: 1.5px solid var(--accent);
  cursor: pointer; white-space: nowrap; transition: transform .25s var(--ease), background .2s, box-shadow .25s;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(200,0,99,.28); }
.btn .arrow { transition: transform .25s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }
.btn.ghost { background: transparent; color: var(--accent); border-color: var(--accent); }
.btn.ghost:hover { background: var(--accent); color: #fff; box-shadow: none; }

.textlink { font-weight: 600; color: var(--accent); display: inline-flex; align-items: center; gap: 7px; }
.textlink .arrow { transition: transform .25s var(--ease); }
.textlink:hover .arrow { transform: translateX(4px); }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  backdrop-filter: saturate(160%) blur(14px);
  background: color-mix(in srgb, var(--paper) 82%, transparent);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, background .3s;
}
.site-header.scrolled { border-color: var(--line); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 78px; gap: 32px; }
.logo { font-family: var(--display); font-size: 1.35rem; font-weight: 600; letter-spacing: -.01em; display: inline-flex; align-items: center; }
.logo img { height: 34px; width: auto; display: block; }
.logo b { color: var(--accent); font-weight: 600; }
.logo small { display: block; font-family: var(--sans); font-size: .62rem; letter-spacing: .28em; text-transform: uppercase; color: var(--muted); font-weight: 600; margin-top: 2px; }

.nav { display: flex; align-items: center; gap: 4px; }
.nav > ul { display: flex; align-items: center; gap: 2px; list-style: none; margin: 0; padding: 0; }
.nav li { position: relative; }
.nav > ul > li > a { display: block; padding: 10px 12px; font-size: .95rem; font-weight: 500; white-space: nowrap; border-radius: 8px; transition: color .2s, background .2s; }
.nav > ul > li > a:hover { color: var(--accent); }
.nav .has-sub > a::after { content: "⌄"; margin-left: 5px; font-size: .8em; opacity: .55; position: relative; top: -2px; }
.submenu {
  position: absolute; top: calc(100% + 8px); left: 0;
  list-style: none; margin: 0; padding: 8px;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm);
  min-width: 288px; box-shadow: 0 20px 50px rgba(20,20,30,.13);
  opacity: 0; visibility: hidden; transform: translateY(8px); transition: all .22s var(--ease);
}
.nav li:hover > .submenu { opacity: 1; visibility: visible; transform: translateY(0); }
.submenu a { display: block; padding: 11px 14px; border-radius: 8px; font-size: .92rem; font-weight: 500; transition: background .15s, color .15s; }
.submenu a:hover { background: var(--accent-soft); color: var(--accent); }
.submenu .sub-desc { display: block; font-size: .78rem; color: var(--muted); font-weight: 400; margin-top: 1px; }
.nav .cta { margin-left: 10px; }
.nav-toggle { display: none; background: none; border: 0; font-size: 1.7rem; cursor: pointer; color: var(--ink); line-height: 1; }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; background: var(--paper-2); padding: clamp(70px,11vw,150px) 0 clamp(60px,8vw,110px); }
.hero .badge { margin-bottom: 26px; }
.hero h1 { max-width: 46ch; font-size: clamp(1.9rem, 3.6vw, 3.3rem); }
.hero h1 .grad { color: var(--accent); }
.hero .sub { margin-top: 26px; font-size: clamp(1.15rem,2vw,1.4rem); color: var(--ink-soft); max-width: 54ch; }
.hero .actions { margin-top: 38px; display: flex; gap: 14px; flex-wrap: wrap; }

/* ---------- Two-path split ---------- */
.paths { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.path-card {
  position: relative; border-radius: var(--radius); padding: 40px; overflow: hidden;
  background: #fff; border: 1px solid var(--line);
  transition: transform .3s var(--ease), box-shadow .3s;
  display: flex; flex-direction: column;
}
.path-card:hover { transform: translateY(-4px); box-shadow: 0 26px 60px rgba(20,20,30,.12); }
.path-card .tag { font-size: .78rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--accent); }
.path-card h3 { margin-top: 12px; font-size: clamp(1.5rem,2.4vw,2rem); }
.path-card ul { list-style: none; padding: 0; margin: 18px 0 26px; }
.path-card li { padding: 9px 0 9px 26px; position: relative; border-top: 1px solid var(--line); font-weight: 500; }
.path-card li::before { content: "→"; position: absolute; left: 0; color: var(--accent); }
.path-card .textlink { margin-top: auto; }

/* ---------- Feature grid ---------- */
.grid { display: grid; gap: 22px; }
.g3 { grid-template-columns: repeat(3, 1fr); }
.g2 { grid-template-columns: repeat(2, 1fr); }
.feature { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; transition: transform .3s var(--ease), box-shadow .3s; }
.feature:hover { transform: translateY(-3px); box-shadow: 0 20px 44px rgba(43,31,35,.12); }
.feature .num { font-family: var(--display); font-size: 1.4rem; color: var(--accent); }
.feature h3 { margin-top: 10px; }

.book-card { display: flex; flex-direction: column; }
.book-card .book-cover { width: 100%; max-height: 260px; object-fit: contain; background: var(--paper-2); border-radius: var(--radius-sm); display: block; }
.book-card h3 { margin-top: 14px; }
.book-card .book-action { margin-top: 22px; }

/* ---------- Arrow list (reusable) ---------- */
.arrow-list { list-style: none; padding: 0; margin: 0; }
.arrow-list li { padding: 11px 0 11px 26px; position: relative; border-top: 1px solid var(--line); font-weight: 500; }
.arrow-list li::before { content: "→"; position: absolute; left: 0; color: var(--accent); }
.arrow-list a { color: inherit; }
.arrow-list a:hover { color: var(--accent); }

/* ---------- Video embed ---------- */
.video-embed { position: relative; width: 100%; aspect-ratio: 16 / 9; border-radius: var(--radius); overflow: hidden; background: #000; border: 1px solid var(--line); }
.video-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* Vorschaubild mit Klick-zum-Abspielen: zeigt zuverlässig ein echtes Bild, statt sich auf das
   Nachladen des YouTube-iframes zu verlassen (das lokal/ohne erlaubte Domain Fehler 153 zeigt). */
.video-facade { position: absolute; inset: 0; width: 100%; height: 100%; padding: 0; margin: 0; border: 0; cursor: pointer; background: #000; }
.video-facade img { width: 100%; height: 100%; object-fit: cover; display: block; }
.video-facade .play-btn { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 64px; height: 64px; border-radius: 50%; background: var(--accent); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 22px; transition: transform .2s var(--ease), background .2s; }
.video-facade .play-btn::before { content: ""; border-style: solid; border-width: 11px 0 11px 18px; border-color: transparent transparent transparent #fff; margin-left: 4px; }
.video-facade:hover .play-btn { transform: translate(-50%,-50%) scale(1.08); background: var(--accent-2); }

/* ---------- Split media ---------- */
.split { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(30px,5vw,72px); align-items: center; }
.split.rev { grid-template-columns: .95fr 1.05fr; }
.split.rev .media { order: -1; }
.media img { width: 100%; border-radius: var(--radius); display: block; object-fit: cover; }
.media { position: relative; }

/* Bündig oben: Medienspalte richtet sich an der Oberkante der Überschrift aus,
   statt (wie sonst) vertikal zur ganzen Textspalte zentriert zu sein. */
.split-top { align-items: start; }
.split-top .media { margin-top: var(--top-flush-offset, 0px); }

/* ---------- Kontakt: Bildband über der Fußzeile ---------- */
.contact-banner { width: 100%; line-height: 0; margin-top: clamp(40px, 6vw, 80px); }
.contact-banner img { width: 100%; height: auto; display: block; }

/* ---------- Parallax-Banner (quer, volle Breite) ---------- */
.parallax-banner { width: 100%; height: clamp(260px,38vw,460px); background-size: cover; background-position: center; background-attachment: fixed; }
@media (max-width: 900px), (prefers-reduced-motion: reduce) {
  .parallax-banner { background-attachment: scroll; }
}
@media print {
  .parallax-banner { display: none !important; }
}
.media .kicker {
  position: absolute; bottom: 18px; left: 18px; background: rgba(255,255,255,.92);
  padding: 10px 16px; border-radius: 100px; font-size: .85rem; font-weight: 600;
}

/* ---------- AI vs Human band ---------- */
.duo { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line-dark); }
.duo > div { padding: clamp(30px,4vw,52px); }
.duo .ai { background: var(--dark-2); }
.duo .hi { background: var(--accent); }
.duo h3 { font-size: 1.5rem; color: #fff; }
.duo .label { font-size: .75rem; letter-spacing: .18em; text-transform: uppercase; color: #e5e5e5; font-weight: 700; }
.duo .hi .label { color: #fff; }
.duo ul { list-style: none; padding: 0; margin: 16px 0 0; }
.duo li { padding: 8px 0; border-top: 1px solid rgba(255,255,255,.16); color: #eeeeee; }
.duo .hi li { color: #ffe3ef; border-top-color: rgba(255,255,255,.28); }

/* ---------- Stats ---------- */
.stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.stat .n { font-family: var(--display); font-size: clamp(2.4rem,5vw,3.6rem); color: var(--accent); line-height: 1; }
.stat .l { color: var(--muted); font-weight: 500; margin-top: 6px; }

/* ---------- Quote ---------- */
.bigquote { max-width: 30ch; font-family: var(--display); font-size: clamp(1.05rem,2vw,1.4rem); line-height: 1.35; letter-spacing: -.01em; color: var(--muted); font-weight: 400; }
.bigquote .grad { color: var(--muted); }

/* Startseiten-Claim (Human Intelligence / Potenziale / Komplexität / Zukunft): eigenständig
   größer und in Akzentfarbe, unabhängig von den kleineren, grauen Kundenzitaten oben. */
.bigquote.home-claim, .bigquote.home-claim .grad { color: var(--accent); }
.bigquote.home-claim .verb { color: #fff; }

/* Feedback-Zitate (Kundenstimmen): normale Lesebreite statt schmaler Gedicht-Spalte,
   dunklerer Grauton für bessere Lesbarkeit als Fließtext. */
.bigquote.feedback-quote { max-width: 62ch; color: var(--ink-soft); letter-spacing: normal; }
.bigquote.feedback-quote .grad { color: var(--ink-soft); }
.bigquote.feedback-quote .quote-title { display: block; font-weight: 700; color: var(--ink); margin-bottom: 10px; }
.bigquote.home-claim { max-width: 34ch; font-size: clamp(1.7rem,3.6vw,2.7rem); font-weight: 500; line-height: 1.25; }
.bigquote.home-claim .claim-hi { display: inline-block; font-size: clamp(2.3rem,5.4vw,4.2rem); font-weight: 600; margin-bottom: .05em; }

/* Human-Intelligence-Leitsatz: weißer Fließtext, „Kopf, Herz, Intuition, Verantwortung" in Beerenfarbe. */
.bigquote.mission-quote { color: #fff; font-size: clamp(1.4rem,3vw,2.2rem); line-height: 1.4; }
.bigquote.mission-quote .grad { color: var(--accent); }

/* ---------- CTA band ---------- */
.cta-band { border-radius: var(--radius); background: var(--dark); color: #f0f0f0; padding: clamp(40px,6vw,80px); text-align: center; }
.cta-band h2 { color: #fff; }
.cta-band .eyebrow { color: var(--accent); }
.cta-band .eyebrow::before { background: var(--accent); }
.cta-band .lead { color: #cfcfcf; }

/* ---------- Page hero ---------- */
.page-hero { padding: clamp(60px,9vw,120px) 0 clamp(30px,4vw,50px); }
.page-hero h1 { max-width: 34ch; }
.breadcrumb { font-size: .85rem; color: var(--muted); margin-bottom: 20px; }
.breadcrumb a:hover { color: var(--accent); }

/* ---------- FAQ / accordion ---------- */
.acc { border-top: 1px solid var(--line); }
.acc details { border-bottom: 1px solid var(--line); }
.acc summary { list-style: none; cursor: pointer; padding: 22px 44px 22px 0; position: relative; font-family: var(--display); font-size: clamp(1.1rem,1.8vw,1.4rem); font-weight: 500; }
.acc summary::-webkit-details-marker { display: none; }
.acc summary::after { content: "+"; position: absolute; right: 6px; top: 50%; transform: translateY(-50%); font-family: var(--sans); font-size: 1.6rem; color: var(--accent); transition: transform .25s; }
.acc details[open] summary::after { content: "–"; }
.acc .a { padding: 0 44px 24px 0; color: var(--ink-soft); }
.acc .a p { font-style: italic; margin: 0 0 .8em; }
.acc .a cite { display: block; font-style: normal; font-weight: 600; color: var(--accent); font-size: .92rem; }

/* ---------- Tabs ---------- */
.tabs { display: flex; gap: 10px; flex-wrap: wrap; margin: 8px 0 44px; }
.tab-btn {
  padding: 12px 24px; border-radius: 100px; border: 1.5px solid var(--line);
  background: #fff; color: var(--ink); font: inherit; font-weight: 600; font-size: .95rem;
  cursor: pointer; transition: all .2s var(--ease); display: inline-flex; align-items: center; gap: 9px;
}
.tab-btn:hover { border-color: var(--accent); color: var(--accent); }
.tab-btn[aria-selected="true"] { background: var(--accent); color: #fff; border-color: var(--accent); }
.tab-btn .count { font-size: .8rem; opacity: .7; font-weight: 600; }
.tab-panel[hidden] { display: none; }
.tab-intro { color: var(--ink-soft); margin-bottom: 28px; }

/* ---------- Client list ---------- */
.clients { display: grid; grid-template-columns: repeat(auto-fill, minmax(270px, 1fr)); gap: 16px; }
.client {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: 20px 22px; transition: transform .25s var(--ease), box-shadow .25s;
}
.client:hover { transform: translateY(-3px); box-shadow: 0 16px 36px rgba(43,31,35,.12); }
.client b { font-family: var(--display); font-size: 1.12rem; font-weight: 600; line-height: 1.15; display: block; overflow-wrap: break-word; word-break: break-word; hyphens: auto; }
.client .ort { font-size: .88rem; color: var(--ink-soft); margin-top: 3px; }
.client .branche { font-size: .82rem; color: var(--muted); margin-top: 8px; padding-top: 8px; border-top: 1px solid var(--line); }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(30px,5vw,64px); }
.field { margin-bottom: 18px; }
.field label { display: block; font-weight: 600; margin-bottom: 7px; font-size: .95rem; }
.field input, .field textarea { width: 100%; padding: 14px 16px; border: 1.5px solid var(--line); border-radius: var(--radius-sm); font: inherit; font-size: 1rem; background: #fff; transition: border-color .2s; }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--accent); }
.field textarea { min-height: 150px; resize: vertical; }
.info-item { padding: 16px 0; border-top: 1px solid var(--line); }
.info-item b { display: block; font-family: var(--display); font-size: 1.15rem; }

/* ---------- Footer ---------- */
.site-footer { background: var(--dark); color: #ececec; padding: clamp(60px,8vw,96px) 0 34px; }
.site-footer a { color: #cfcfcf; transition: color .2s; }
.site-footer a:hover { color: #fff; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr; gap: 36px; }
.footer-top h4 { color: #fff; font-family: var(--sans); font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; margin: 0 0 14px; }
.footer-top ul { list-style: none; padding: 0; margin: 0; }
.footer-top li { margin-bottom: 9px; font-size: .95rem; }
.footer-brand .logo { color: #fff; }
.footer-claim { font-family: var(--sans); font-size: .72rem; font-weight: 600; letter-spacing: .24em; text-transform: uppercase; color: #cfcfcf; max-width: 22ch; margin-top: 12px; line-height: 1.2; }
.social-list a { display: inline-flex; align-items: center; gap: 9px; }
.social-list svg { flex-shrink: 0; opacity: .9; }
.social-list a:hover svg { opacity: 1; }
.footer-bottom { margin-top: 54px; padding-top: 22px; border-top: 1px solid var(--line-dark); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: .82rem; color: #9a9a9a; }
.footer-bottom a { color: #9a9a9a; }
.draft-note { font-size: .78rem; color: #9a9a9a; margin-top: 14px; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .g3, .g2, .stats, .paths, .split, .split.rev, .duo, .contact-grid, .footer-top { grid-template-columns: 1fr; }
  .split.rev .media { order: 0; }
  .footer-top { gap: 30px; }
  .nav-toggle { display: block; }
  .nav {
    position: fixed; inset: 78px 0 auto 0; background: var(--paper);
    border-bottom: 1px solid var(--line); padding: 14px 20px 22px;
    flex-direction: column; align-items: stretch; gap: 0;
    transform: translateY(-120%); transition: transform .35s var(--ease); z-index: 90;
    max-height: calc(100vh - 78px); overflow-y: auto;
  }
  .nav.open { transform: none; }
  .nav > ul { flex-direction: column; align-items: stretch; gap: 0; }
  .nav > ul > li > a { padding: 14px 6px; border-bottom: 1px solid var(--line); }
  .submenu { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: 0; min-width: 0; padding: 0 0 8px 14px; }
  .nav .cta { margin: 14px 0 0; }
  .nav .btn { width: 100%; justify-content: center; }
}

/* =====================================================================
   Druckausgabe (DIN A4) — Korrekturfassung zum Ausdrucken
   Ziel: alle Inhalte vollständig, große Schrift, heller Grund.
   ===================================================================== */
@media print {
  /* Querformat, damit die Desktop-Breite und das mehrspaltige Layout abgebildet werden */
  @page { size: A4 landscape; margin: 11mm 10mm 12mm; }

  /* Navigation und Interaktives raus */
  .nav, .nav-toggle, .site-header .cta { display: none !important; }
  .site-header { position: static !important; box-shadow: none !important;
                 border-bottom: 1px solid #bbb; padding: 4mm 0 !important; }
  .site-header .logo img { width: 46mm; height: auto; }

  /* Einblend-Animationen deaktivieren, sonst fehlen Inhalte */
  .reveal, .reveal.in { opacity: 1 !important; transform: none !important; transition: none !important; }

  /* Flächen aufhellen, Text auf Papier gut lesbar dunkel */
  html, body, .hero, .section, .section.soft, .section.ink, .site-footer,
  .cta-band, .feature, .path-card, .client, .book-card, .acc summary,
  .acc .a, .duo > div { background: #fff !important; }
  body, p, li, dd, .lead, .sub, .muted, .breadcrumb, .acc .a p,
  .client .ort, .client .branche, .tab-intro { color: #1a1a1a !important; }
  h1, h2, h3, h4, .ink h1, .ink h2, .ink h3, .cta-band h2 { color: #111 !important; }
  .ink, .ink p, .ink li, .ink .lead, .site-footer, .site-footer a { color: #1a1a1a !important; }
  .eyebrow, .ink .eyebrow, .path-card .tag, .feature .num, .stat .n,
  .grad, .bigquote .grad, .textlink, .acc summary::after { color: #a80054 !important; }
  .eyebrow::before, .ink .eyebrow::before { background: #a80054 !important; }
  .arrow-list li::before, .path-card li::before { color: #a80054 !important; }

  /* Struktur ohne Farbflächen erkennbar halten */
  .section.ink { border-top: 2px solid #bbb; border-bottom: 2px solid #bbb; }
  .feature, .path-card, .client, .cta-band, .book-card {
    border: 1px solid #bbb !important; box-shadow: none !important; }
  .site-footer { border-top: 2px solid #bbb; }

  /* Abstände fürs Papier verdichten */
  .section { padding: 12mm 0 !important; }
  .section.tight { padding: 9mm 0 !important; }
  .hero, .page-hero { padding: 5mm 0 9mm !important; }
  .wrap { max-width: none !important; padding-left: 0 !important; padding-right: 0 !important; }

  /* Schriftgrößen für A4 */
  body { font-size: 12.5pt !important; line-height: 1.5 !important; }
  .lead { font-size: 13.5pt !important; }
  h1, .hero h1, .page-hero h1 { font-size: 23pt !important; line-height: 1.15 !important; }
  h2, .cta-band h2 { font-size: 16.5pt !important; }
  h3 { font-size: 13.5pt !important; }
  h4 { font-size: 13pt !important; }
  .bigquote { font-size: 18pt !important; line-height: 1.25 !important; }
  .stat .n { font-size: 24pt !important; }
  .measure { max-width: 68ch !important; }
  .lead, .hero .sub { max-width: 62ch !important; }
  .hero h1, .page-hero h1 { max-width: 40ch !important; }
  .bigquote { max-width: 26ch !important; }

  /* Aufklappbares vollständig ausgeben (sonst fehlen alle Antworten).
     Das Öffnen selbst erledigt js/main.js beim beforeprint-Ereignis bzw.
     der PDF-Export über aufgeklappte Arbeitskopien. */
  details[open] > *:not(summary) { display: block !important; }
  .acc details { border: 1px solid #ccc !important; margin-bottom: 3mm; padding: 3mm 4mm; }
  .acc summary { font-weight: 700; cursor: auto; }
  .acc summary::after { content: "" !important; }

  /* Registerkarten: alle Bereiche ausgeben, Schalter weg */
  .tabs { display: none !important; }
  .tab-panel, .tab-panel[hidden] { display: block !important; }
  .tab-panel { margin-bottom: 10mm; }

  /* Videos kennzeichnen statt weglassen */
  .video-embed { height: auto !important; padding: 10mm 0 !important;
                 border: 1px dashed #999 !important; text-align: center; }
  .video-embed iframe, .video-embed .video-facade { display: none !important; }
  .video-embed::after { content: "[ Video – im Ausdruck nicht darstellbar ]";
                        color: #555 !important; font-size: 11pt; }

  /* Seitenumbrüche */
  h1, h2, h3, h4 { break-after: avoid; page-break-after: avoid; }
  .feature, .path-card, .client, .stat, .book-card, .acc details,
  .info-item, .field, blockquote { break-inside: avoid; page-break-inside: avoid; }
  img { max-width: 100% !important; height: auto !important; }
  .media img { max-height: 62mm; width: auto !important; }

  /* Formularfelder als beschreibbare Kästen */
  .field input, .field textarea { border: 1px solid #999 !important; }
  .field textarea { min-height: 25mm !important; }

  /* Fußzeile schlank */
  .social-list svg { display: none !important; }
  .draft-note { border: 1px solid #999; padding: 4mm; color: #1a1a1a !important; }

  /* Desktop-Layout erzwingen. Der Druckbereich im A4-Querformat ist rund 1040 px
     breit und würde sonst die Regel für Bildschirme bis 1080 px auslösen. */
  .paths { grid-template-columns: 1fr 1fr !important; }
  .g3 { grid-template-columns: repeat(3, 1fr) !important; }
  .g2 { grid-template-columns: repeat(2, 1fr) !important; }
  .split { grid-template-columns: 1.05fr .95fr !important; align-items: start !important; }
  .split.rev { grid-template-columns: .95fr 1.05fr !important; }
  .split.rev .media { order: -1 !important; }
  .stats { grid-template-columns: repeat(3, 1fr) !important; }
  .duo { grid-template-columns: 1fr 1fr !important; }
  .contact-grid { grid-template-columns: .8fr 1.2fr !important; }
  .footer-top { grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr !important; gap: 24px !important; }
  .split, .grid, .paths { gap: 10mm !important; }

  /* Referenzen: das Akkordeon nutzt die Breite besser und wird gestrafft,
     sonst wächst die Seite im Querformat von 20 auf 33 Blätter. */
  .tab-panel.measure { max-width: 84ch !important; }
  .acc details { padding: 2mm 3mm !important; margin-bottom: 2mm !important; }
  .acc summary { padding: 2mm 0 !important; font-size: 13pt !important; }
  .acc .a { padding: 0 0 1mm !important; }
  .acc .a p { margin: 0 0 2mm !important; }

  /* Im Querformat ist weniger Höhe verfügbar: Abstände etwas straffer */
  .section { padding: 9mm 0 !important; }
  .section.tight { padding: 7mm 0 !important; }
  .hero, .page-hero { padding: 4mm 0 7mm !important; }
}
