/* =====================================================================
   Knowledge Expert - Patrick Dettmann
   Hauptstylesheet. Gemeinsam fuer Deutsch und Englisch.
   Palette: Espresso (#14110D) . Kreideweiss (#FAF6EF) . Signalorange (#FF8F0F)
   Schrift: Bricolage Grotesque (Display) x Hanken Grotesk (Body)
   ===================================================================== */

:root {
  /* Farben */
  --ink: #14110D;
  --ink-2: #1c1813;
  --ink-3: #241f18;
  --paper: #FAF6EF;
  --paper-2: #f1ebdf;
  --orange: #FF8F0F;
  --orange-deep: #D45A00;
  --muted-dark: #a89e92;   /* gedaempfter Text auf dunklem Grund */
  --muted-light: #6e665b;  /* gedaempfter Text auf hellem Grund */
  --line-dark: rgba(250,246,239,.14);
  --line-light: rgba(20,17,13,.12);

  /* Schrift */
  --font-display: 'Bricolage Grotesque', system-ui, -apple-system, Segoe UI, sans-serif;
  --font-body: 'Hanken Grotesk', system-ui, -apple-system, Segoe UI, sans-serif;

  /* Typo-Skala (fluid) */
  --fs-hero: clamp(2.7rem, 1.6rem + 5.2vw, 5.6rem);
  --fs-h2: clamp(2rem, 1.3rem + 3vw, 3.4rem);
  --fs-h3: clamp(1.25rem, 1.05rem + 1vw, 1.6rem);
  --fs-lead: clamp(1.1rem, 1rem + .5vw, 1.4rem);
  --fs-body: 1.0625rem;
  --fs-small: .9rem;

  /* Layout */
  --container: 1200px;
  --gutter: clamp(1.25rem, 5vw, 4rem);
  --section-y: clamp(4.5rem, 9vw, 9rem);
  --radius: 14px;
  --radius-sm: 9px;
  --radius-lg: 22px;

  --ease: cubic-bezier(.22,.61,.36,1);
}

/* ------------------------------ Reset --------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: 90px; }
body {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.7;
  color: var(--paper);
  background: var(--ink);
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, picture, svg, audio { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; background: none; border: 0; }
input, textarea, select { font: inherit; color: inherit; }
ul { list-style: none; padding: 0; }
:focus-visible { outline: 3px solid var(--orange); outline-offset: 3px; border-radius: 3px; }

/* --------------------------- Typografie ------------------------------- */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; line-height: 1.04; letter-spacing: -.01em; }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); line-height: 1.15; }
p { text-wrap: pretty; }
strong { font-weight: 600; }
.accent { color: var(--orange); }

/* ----------------------------- Layout --------------------------------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
main { position: relative; }

.section { position: relative; padding-block: var(--section-y); z-index: 1; }
.section--ink { background: var(--ink); color: var(--paper); }
.section--ink-2 { background: var(--ink-2); color: var(--paper); }
.section--paper { background: var(--paper); color: var(--ink); }

/* Abschnitts-Kopf mit Index (Lernpfad-Gefuehl) */
.sec-head { max-width: 56ch; margin-bottom: clamp(2rem, 4vw, 3.5rem); }
.eyebrow {
  display: inline-flex; align-items: center; gap: .6rem;
  font-size: .8rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase;
  color: var(--orange);
}
.eyebrow::before {
  content: attr(data-index);
  font-family: var(--font-display); font-weight: 700; letter-spacing: 0;
  color: var(--orange); opacity: .55;
}
.section--paper .eyebrow { color: var(--orange-deep); }
.sec-head h2 { margin-top: .9rem; }
.sec-head .lead { margin-top: 1.1rem; font-size: var(--fs-lead); color: var(--muted-dark); }
.section--paper .sec-head .lead { color: var(--muted-light); }

/* ----------------------------- Buttons -------------------------------- */
.btn {
  display: inline-flex; align-items: center; gap: .6rem;
  padding: .9rem 1.5rem; border-radius: 999px;
  font-weight: 600; font-size: 1rem; letter-spacing: .005em;
  transition: transform .25s var(--ease), background-color .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
  will-change: transform;
}
.btn svg { width: 1.05em; height: 1.05em; flex: none; }
.btn--primary { background: var(--orange); color: #2a1500; }
.btn--primary:hover { background: #ffa133; transform: translateY(-2px); }
.btn--ghost { border: 1.5px solid currentColor; color: inherit; }
.btn--ghost:hover { background: var(--orange); border-color: var(--orange); color: #2a1500; transform: translateY(-2px); }
.btn--block { width: 100%; justify-content: center; }

/* --------------------------- Kopf / Navigation ------------------------ */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 60;
  transition: background-color .35s var(--ease), border-color .35s var(--ease), backdrop-filter .35s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.is-stuck {
  background: rgba(20,17,13,.82);
  backdrop-filter: saturate(140%) blur(12px);
  border-bottom-color: var(--line-dark);
}
.nav { display: flex; align-items: center; gap: 1.5rem; min-height: 74px; }
.brand { display: inline-flex; align-items: center; gap: .65rem; font-family: var(--font-display); font-weight: 700; font-size: 1.12rem; color: var(--paper); }
.brand img { width: 38px; height: 38px; }
.brand span { white-space: nowrap; }
.brand span b { color: var(--orange); font-weight: 700; }
.brand span small { display: block; font-family: var(--font-body); font-weight: 500; font-size: .68rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted-dark); }
.nav__spacer { flex: 1; }
.nav__menu { display: flex; align-items: center; gap: 1.75rem; }
.nav__menu a { font-weight: 500; font-size: .98rem; color: var(--paper); opacity: .82; position: relative; padding-block: .3rem; transition: opacity .2s; }
.nav__menu a::after { content: ""; position: absolute; left: 0; bottom: -2px; width: 100%; height: 2px; background: var(--orange); transform: scaleX(0); transform-origin: left; transition: transform .3s var(--ease); }
.nav__menu a:hover { opacity: 1; }
.nav__menu a:hover::after, .nav__menu a.active::after { transform: scaleX(1); }
.nav__menu a.active { opacity: 1; }

.lang-switch { display: inline-flex; border: 1px solid var(--line-dark); border-radius: 999px; overflow: hidden; }
.lang-switch a { padding: .35rem .7rem; font-size: .82rem; font-weight: 600; letter-spacing: .04em; color: var(--muted-dark); }
.lang-switch a[aria-current="true"] { background: var(--orange); color: #2a1500; }

.nav__cta { white-space: nowrap; }
.nav__toggle { display: none; width: 46px; height: 46px; border-radius: 12px; border: 1px solid var(--line-dark); align-items: center; justify-content: center; }
.nav__toggle svg { width: 22px; height: 22px; }

/* Mobile-Menue */
.mobile-nav { position: fixed; inset: 0; z-index: 55; background: var(--ink); padding: 6rem var(--gutter) 2rem; display: flex; flex-direction: column; gap: .4rem; transform: translateY(-100%); opacity: 0; visibility: hidden; transition: transform .45s var(--ease), opacity .3s var(--ease), visibility .45s; overflow-y: auto; }
.mobile-nav.is-open { transform: none; opacity: 1; visibility: visible; }
.mobile-nav a { font-family: var(--font-display); font-weight: 600; font-size: 1.8rem; padding: .55rem 0; border-bottom: 1px solid var(--line-dark); color: var(--paper); }
.mobile-nav a .num { color: var(--orange); font-size: 1rem; margin-right: .8rem; vertical-align: middle; }
.mobile-nav .mobile-foot { margin-top: auto; padding-top: 2rem; display: flex; flex-direction: column; gap: 1rem; color: var(--muted-dark); }

/* --------------------------- Faden (Signatur) ------------------------- */
.thread-layer { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; z-index: 5; overflow: visible; }
.thread-layer svg { width: 100%; height: 100%; overflow: visible; }
.thread-back { fill: none; stroke: var(--orange-deep); stroke-width: 6; stroke-linecap: round; opacity: .9; }
.thread-front { fill: none; stroke: var(--orange); stroke-width: 3; stroke-linecap: round; }
.thread-node { fill: var(--orange); stroke: var(--ink); stroke-width: 3; }

/* --------------------------- Reveal-Animation ------------------------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .08s; }
.reveal[data-delay="2"] { transition-delay: .16s; }
.reveal[data-delay="3"] { transition-delay: .24s; }

/* -------------------------------- Hero -------------------------------- */
.hero { position: relative; min-height: 100svh; display: flex; align-items: center; padding-top: 8rem; padding-bottom: 4rem; overflow: hidden; }
.hero__glow { position: absolute; right: -10%; top: 8%; width: 60vw; height: 60vw; max-width: 760px; max-height: 760px; background: radial-gradient(circle at center, rgba(255,143,15,.16), transparent 62%); pointer-events: none; }
.hero__grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(2rem, 5vw, 5rem); align-items: center; width: 100%; }
.hero__eyebrow { display: inline-flex; align-items: center; gap: .7rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; font-size: .82rem; color: var(--orange); margin-bottom: 1.6rem; }
.hero__eyebrow .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--orange); box-shadow: 0 0 0 4px rgba(255,143,15,.18); }
.hero h1 { font-size: var(--fs-hero); font-weight: 800; letter-spacing: -.025em; }
.hero h1 .ln { display: block; }
.hero h1 em { font-style: normal; color: var(--orange); }
.hero__sub { margin-top: 1.6rem; font-size: var(--fs-lead); color: var(--muted-dark); max-width: 44ch; }
.hero__actions { margin-top: 2.4rem; display: flex; flex-wrap: wrap; gap: 1rem; }
.hero__meta { margin-top: 2.6rem; display: flex; flex-wrap: wrap; gap: 1.4rem 2.2rem; color: var(--muted-dark); font-size: .92rem; }
.hero__meta span { display: inline-flex; align-items: center; gap: .5rem; }
.hero__meta svg { width: 18px; height: 18px; color: var(--orange); }

.portrait { position: relative; }
.portrait__frame { position: relative; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line-dark); aspect-ratio: 512/640; }
.portrait__frame img { width: 100%; height: 100%; object-fit: cover; object-position: top center; filter: grayscale(1) contrast(1.02); }
.portrait::before { content: ""; position: absolute; inset: auto -14px -14px auto; width: 62%; height: 62%; background: var(--orange); border-radius: var(--radius-lg); z-index: -1; }
.portrait__tag { position: absolute; left: -10px; bottom: 22px; background: var(--ink); border: 1px solid var(--line-dark); border-left: 3px solid var(--orange); padding: .6rem .9rem; border-radius: 10px; font-size: .82rem; box-shadow: 0 18px 40px rgba(0,0,0,.35); }
.portrait__tag b { display: block; font-family: var(--font-display); font-size: .95rem; }
.portrait__tag span { color: var(--muted-dark); }

.scroll-cue { position: absolute; left: var(--gutter); bottom: 1.6rem; display: inline-flex; align-items: center; gap: .6rem; font-size: .78rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted-dark); }
.scroll-cue .line { width: 46px; height: 1px; background: var(--muted-dark); position: relative; overflow: hidden; }
.scroll-cue .line::after { content: ""; position: absolute; inset: 0; width: 40%; background: var(--orange); animation: cue 2.4s var(--ease) infinite; }
@keyframes cue { 0% { transform: translateX(-100%); } 60%,100% { transform: translateX(260%); } }

/* ----------------------------- Ueber mich ----------------------------- */
.lead-grid { display: grid; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.lead-grid--img-left { grid-template-columns: .85fr 1.15fr; }
.lead-grid--img-right { grid-template-columns: 1.15fr .85fr; }
.about__text p + p { margin-top: 1.1rem; }
.about__text .muted { color: var(--muted-light); }
.creds { margin-top: 1.8rem; display: flex; flex-wrap: wrap; gap: .6rem; }
.cred { display: inline-flex; align-items: center; gap: .5rem; padding: .5rem .9rem; border: 1px solid var(--line-light); border-radius: 999px; font-size: .88rem; font-weight: 500; }
.cred svg { width: 16px; height: 16px; color: var(--orange-deep); }
.section--ink .cred { border-color: var(--line-dark); }
.section--ink .cred svg { color: var(--orange); }

/* ------------------------------ Stats --------------------------------- */
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1rem, 3vw, 2.5rem); margin-top: clamp(2.5rem, 5vw, 4rem); }
.stat { border-top: 2px solid var(--orange); padding-top: 1rem; }
.stat__num { font-family: var(--font-display); font-weight: 800; font-size: clamp(2.4rem, 1.5rem + 3.5vw, 4rem); line-height: .95; letter-spacing: -.02em; }
.stat__num .plus { color: var(--orange); }
.stat__label { margin-top: .5rem; color: var(--muted-dark); font-size: .95rem; }
.section--paper .stat__label { color: var(--muted-light); }

/* --------------------------- Leistungen ------------------------------- */
.services { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(1rem, 2.5vw, 1.6rem); }
.service { position: relative; padding: clamp(1.6rem, 3vw, 2.4rem); border: 1px solid var(--line-dark); border-radius: var(--radius); background: var(--ink-2); overflow: hidden; transition: transform .4s var(--ease), border-color .4s var(--ease); }
.service::after { content: ""; position: absolute; left: 0; top: 0; height: 3px; width: 0; background: var(--orange); transition: width .5s var(--ease); }
.service:hover { transform: translateY(-4px); border-color: rgba(255,143,15,.4); }
.service:hover::after { width: 100%; }
.service__idx { font-family: var(--font-display); font-weight: 700; font-size: 1rem; color: var(--orange); opacity: .7; }
.service__icon { width: 50px; height: 50px; margin: 1rem 0 1.2rem; color: var(--orange); }
.service__icon svg { width: 100%; height: 100%; }
.service h3 { margin-bottom: .7rem; }
.service p { color: var(--muted-dark); }
.service ul { margin-top: 1.1rem; display: flex; flex-direction: column; gap: .5rem; }
.service li { display: flex; gap: .6rem; align-items: flex-start; font-size: .95rem; color: var(--paper); }
.service li svg { width: 18px; height: 18px; color: var(--orange); flex: none; margin-top: .2rem; }

/* --------------------------- Vertonung / Audio ------------------------ */
.voice-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.players { display: flex; flex-direction: column; gap: 1rem; }
.player { display: flex; align-items: center; gap: 1rem; padding: 1rem 1.2rem; border: 1px solid var(--line-light); border-radius: var(--radius); background: var(--paper-2); }
.section--ink .player, .section--ink-2 .player { background: var(--ink-3); border-color: var(--line-dark); }
.player__toggle { width: 52px; height: 52px; flex: none; border-radius: 50%; background: var(--orange); color: #2a1500; display: inline-flex; align-items: center; justify-content: center; transition: transform .2s var(--ease); }
.player__toggle:hover { transform: scale(1.06); }
.player__toggle svg { width: 22px; height: 22px; }
.player__toggle .ic-pause { display: none; }
.player.is-playing .ic-play { display: none; }
.player.is-playing .ic-pause { display: block; }
.player__body { flex: 1; min-width: 0; }
.player__top { display: flex; justify-content: space-between; align-items: baseline; gap: 1rem; margin-bottom: .5rem; }
.player__lang { font-family: var(--font-display); font-weight: 600; font-size: 1rem; }
.player__flag { font-size: .76rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted-light); }
.section--ink .player__flag, .section--ink-2 .player__flag { color: var(--muted-dark); }
.player__seek { -webkit-appearance: none; appearance: none; width: 100%; height: 6px; border-radius: 999px; background: rgba(138,129,120,.35); cursor: pointer; }
.player__seek::-webkit-slider-thumb { -webkit-appearance: none; width: 16px; height: 16px; border-radius: 50%; background: var(--orange); border: 2px solid var(--paper); }
.player__seek::-moz-range-thumb { width: 16px; height: 16px; border: 2px solid var(--paper); border-radius: 50%; background: var(--orange); }
.section--ink .player__seek::-webkit-slider-thumb, .section--ink-2 .player__seek::-webkit-slider-thumb { border-color: var(--ink); }
.player__time { margin-top: .4rem; font-size: .8rem; color: var(--muted-light); font-variant-numeric: tabular-nums; }
.section--ink .player__time, .section--ink-2 .player__time { color: var(--muted-dark); }

/* ----------------------------- Ablauf --------------------------------- */
.steps { display: grid; gap: clamp(1rem, 2.5vw, 1.4rem); }
.step { display: grid; grid-template-columns: auto 1fr; gap: 1.4rem; padding: clamp(1.3rem, 2.5vw, 1.8rem); border: 1px solid var(--line-light); border-radius: var(--radius); background: var(--paper); }
.step__no { font-family: var(--font-display); font-weight: 800; font-size: 1.5rem; color: var(--orange-deep); width: 54px; height: 54px; border-radius: 50%; border: 2px solid var(--orange); display: inline-flex; align-items: center; justify-content: center; }
.step h3 { margin-bottom: .4rem; }
.step p { color: var(--muted-light); }

/* --------------------------- Branchen / Referenzen -------------------- */
.industries { display: flex; flex-wrap: wrap; gap: .7rem; margin-bottom: 2.5rem; }
.industry { display: inline-flex; align-items: center; gap: .55rem; padding: .65rem 1.1rem; border: 1px solid var(--line-dark); border-radius: 999px; font-weight: 500; }
.industry svg { width: 17px; height: 17px; color: var(--orange); }
.ref-note { display: grid; grid-template-columns: auto 1fr; gap: 1.2rem; align-items: center; padding: clamp(1.4rem,3vw,2rem); border: 1px dashed rgba(255,143,15,.5); border-radius: var(--radius); background: rgba(255,143,15,.05); }
.ref-note svg { width: 30px; height: 30px; color: var(--orange); }
.ref-note p { color: var(--muted-dark); }
.ref-note b { color: var(--paper); font-weight: 600; }
.placeholder-flag { display: inline-block; margin-left: .5rem; font-size: .72rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--orange-deep); background: rgba(255,143,15,.14); border: 1px solid rgba(255,143,15,.4); padding: .1rem .5rem; border-radius: 6px; vertical-align: middle; }

/* -------------------------------- FAQ --------------------------------- */
.faq { max-width: 820px; }
.faq__item { border-bottom: 1px solid var(--line-light); }
.faq__item summary { list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; padding: 1.3rem 0; font-family: var(--font-display); font-weight: 600; font-size: clamp(1.1rem, 1rem + .6vw, 1.35rem); }
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary .pm { flex: none; width: 30px; height: 30px; border-radius: 50%; border: 1.5px solid var(--orange); position: relative; transition: background-color .3s; }
.faq__item summary .pm::before, .faq__item summary .pm::after { content: ""; position: absolute; left: 50%; top: 50%; width: 12px; height: 2px; background: var(--orange); transform: translate(-50%,-50%); transition: transform .3s var(--ease), background-color .3s; }
.faq__item summary .pm::after { transform: translate(-50%,-50%) rotate(90deg); }
.faq__item[open] summary .pm { background: var(--orange); }
.faq__item[open] summary .pm::before, .faq__item[open] summary .pm::after { background: var(--ink); }
.faq__item[open] summary .pm::after { transform: translate(-50%,-50%) rotate(0); }
.faq__answer { padding: 0 0 1.4rem; color: var(--muted-light); max-width: 68ch; }
.section--ink .faq__answer { color: var(--muted-dark); }
.faq__answer p + p { margin-top: .8rem; }

/* ------------------------------ Kontakt ------------------------------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.contact-cards { display: flex; flex-direction: column; gap: 1rem; }
.contact-card { display: flex; align-items: center; gap: 1rem; padding: 1.2rem 1.4rem; border: 1px solid var(--line-dark); border-radius: var(--radius); transition: border-color .3s, transform .3s var(--ease); }
.contact-card:hover { border-color: rgba(255,143,15,.45); transform: translateY(-2px); }
.contact-card .ic { width: 48px; height: 48px; flex: none; border-radius: 12px; background: rgba(255,143,15,.12); color: var(--orange); display: inline-flex; align-items: center; justify-content: center; }
.contact-card .ic svg { width: 22px; height: 22px; }
.contact-card span { display: block; font-size: .8rem; color: var(--muted-dark); letter-spacing: .04em; }
.contact-card b { font-family: var(--font-display); font-weight: 600; font-size: 1.1rem; }

.form { background: var(--ink-2); border: 1px solid var(--line-dark); border-radius: var(--radius-lg); padding: clamp(1.5rem, 3vw, 2.4rem); }
.form__note { background: rgba(255,143,15,.08); border: 1px solid rgba(255,143,15,.32); border-radius: 10px; padding: .8rem 1rem; font-size: .85rem; color: var(--muted-dark); margin-bottom: 1.4rem; }
.form__note b { color: var(--paper); }
.field { margin-bottom: 1.1rem; }
.field label { display: block; font-size: .88rem; font-weight: 600; margin-bottom: .45rem; }
.field label .req { color: var(--orange); }
.field input, .field textarea {
  width: 100%; padding: .85rem 1rem; border-radius: 10px;
  background: var(--ink); border: 1px solid var(--line-dark); color: var(--paper);
  transition: border-color .25s, box-shadow .25s;
}
.field input::placeholder, .field textarea::placeholder { color: #6f675d; }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--orange); box-shadow: 0 0 0 3px rgba(255,143,15,.2); }
.field textarea { resize: vertical; min-height: 130px; }
.field--check { display: flex; gap: .7rem; align-items: flex-start; font-size: .88rem; color: var(--muted-dark); }
.field--check input { width: 20px; height: 20px; flex: none; accent-color: var(--orange); margin-top: .15rem; }
.field--check a { color: var(--orange); text-decoration: underline; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form__status { margin-top: 1rem; font-size: .9rem; display: none; }
.form__status.is-on { display: block; }

/* ------------------------------ Footer -------------------------------- */
.site-footer { background: #100d0a; color: var(--muted-dark); padding-block: clamp(3rem, 6vw, 5rem) 2rem; position: relative; z-index: 1; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2.5rem; padding-bottom: 2.5rem; border-bottom: 1px solid var(--line-dark); }
.footer-brand .brand { margin-bottom: 1rem; }
.footer-brand p { max-width: 38ch; }
.footer-col h4 { font-family: var(--font-display); font-weight: 600; font-size: 1rem; color: var(--paper); margin-bottom: 1rem; }
.footer-col a { display: block; padding: .3rem 0; transition: color .2s; }
.footer-col a:hover { color: var(--orange); }
.footer-bottom { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between; align-items: center; padding-top: 1.6rem; font-size: .85rem; }
.footer-bottom nav { display: flex; gap: 1.4rem; flex-wrap: wrap; }
.footer-bottom a:hover { color: var(--orange); }

/* --------------------------- Rechtsseiten ----------------------------- */
.legal { padding-top: 8rem; }
.legal .container { max-width: 820px; }
.legal h1 { font-size: clamp(2.2rem, 1.6rem + 3vw, 3.4rem); margin-bottom: .6rem; }
.legal .updated { color: var(--muted-dark); margin-bottom: 2.5rem; }
.legal h2 { font-size: clamp(1.4rem, 1.1rem + 1.3vw, 1.9rem); margin: 2.4rem 0 .8rem; }
.legal h3 { font-size: 1.15rem; margin: 1.6rem 0 .5rem; }
.legal p, .legal li { color: #d8d0c4; }
.legal p { margin-bottom: .9rem; }
.legal ul { padding-left: 1.2rem; list-style: disc; display: flex; flex-direction: column; gap: .4rem; margin-bottom: 1rem; }
.legal a { color: var(--orange); text-decoration: underline; text-underline-offset: 2px; }
.legal .callout { border: 1px solid rgba(255,143,15,.45); background: rgba(255,143,15,.08); border-radius: var(--radius); padding: 1.2rem 1.4rem; margin: 1.5rem 0; }
.legal .callout strong { color: var(--orange); }
.legal address { font-style: normal; }

.skip-link { position: absolute; left: 1rem; top: -120px; z-index: 100; background: var(--orange); color: #2a1500; padding: .7rem 1.2rem; border-radius: 8px; font-weight: 600; transition: top .2s; }
.skip-link:focus { top: 1rem; }

/* ============================ Responsiv =============================== */
@media (max-width: 980px) {
  .hero__grid { grid-template-columns: 1fr; }
  .portrait { max-width: 380px; margin-inline: auto; order: -1; }
  .lead-grid--img-left, .lead-grid--img-right, .voice-grid, .contact-grid { grid-template-columns: 1fr; }
  .lead-grid .portrait, .voice-grid .portrait { max-width: 420px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 820px) {
  .nav { gap: .8rem; min-height: 64px; }
  .nav__menu, .nav__cta.is-desktop { display: none; }
  .nav__toggle { display: inline-flex; }
  .brand span small { display: none; }
  .brand span { font-size: 1.02rem; }
  .brand img { width: 34px; height: 34px; }
  .services { grid-template-columns: 1fr; }
  .stats { gap: 1.6rem 1.2rem; }
}
@media (max-width: 560px) {
  .stats { grid-template-columns: 1fr; }
}
@media (max-width: 520px) {
  .footer-grid { grid-template-columns: 1fr; }
  .step { grid-template-columns: 1fr; gap: .8rem; }
  .hero__actions { flex-direction: column; align-items: stretch; }
  .btn { justify-content: center; }
}

/* ----------------------- Bewegung reduzieren -------------------------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
  .scroll-cue .line::after { display: none; }
}

/* -------------------------------- Print ------------------------------- */
@media print {
  .site-header, .mobile-nav, .thread-layer, .scroll-cue, .hero__glow { display: none !important; }
  body { background: #fff; color: #000; }
}
