/* ============================================================
   Lumen Media — statische Website
   Handgeschriebenes CSS, keine Frameworks. Light/Dark via Tokens.
   Fonts self-hosted (Variable, latin-subset).
   ============================================================ */

/* ---------- Fonts ---------- */
@font-face {
  font-family: "Bricolage Grotesque";
  src: url("../fonts/bricolage-grotesque.woff2") format("woff2");
  font-weight: 200 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Hanken Grotesk";
  src: url("../fonts/hanken-grotesk.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

/* ---------- Design Tokens ---------- */
:root {
  color-scheme: light dark;

  --font-display: "Bricolage Grotesque", "Hanken Grotesk", system-ui, sans-serif;
  --font-sans: "Hanken Grotesk", system-ui, -apple-system, "Segoe UI", sans-serif;

  /* Light (Standard) */
  --bg: #fbfbfc;
  --bg-elev: #ffffff;
  --surface: #f2f4f7;
  --surface-2: #eaecf0;
  --text: #101828;
  --text-muted: #475467;
  --text-faint: #667085;
  --border: rgba(16, 19, 38, 0.11);
  --border-strong: rgba(16, 19, 38, 0.22);
  --accent: #1570ef;
  --accent-hover: #175cd3;
  --accent-ink: #ffffff;
  --accent-soft: rgba(21, 112, 239, 0.10);
  --shadow: 0 1px 2px rgba(24,21,15,.04), 0 12px 32px -12px rgba(24,21,15,.14);
  --shadow-sm: 0 1px 2px rgba(24,21,15,.05), 0 4px 12px -6px rgba(24,21,15,.10);

  --radius: 14px;
  --radius-lg: 22px;
  --maxw: 1180px;
  --gutter: clamp(1.25rem, 5vw, 3rem);

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #0d0f26;
    --bg-elev: #14172e;
    --surface: #171a33;
    --surface-2: #1e2240;
    --text: #f5f7fa;
    --text-muted: #a2acc2;
    --text-faint: #7c85a0;
    --border: rgba(255, 255, 255, 0.10);
    --border-strong: rgba(255, 255, 255, 0.22);
    --accent: #5aa2ff;
    --accent-hover: #7bb5ff;
    --accent-ink: #0d0f26;
    --accent-soft: rgba(90, 162, 255, 0.15);
    --shadow: 0 1px 2px rgba(0,0,0,.4), 0 16px 40px -14px rgba(0,0,0,.7);
    --shadow-sm: 0 1px 2px rgba(0,0,0,.4), 0 6px 16px -8px rgba(0,0,0,.6);
  }
}

/* Manueller Toggle überschreibt System */
:root[data-theme="light"] {
  --bg: #fbfbfc; --bg-elev: #ffffff; --surface: #f2f4f7; --surface-2: #eaecf0;
  --text: #101828; --text-muted: #475467; --text-faint: #667085;
  --border: rgba(16,19,38,.11); --border-strong: rgba(16,19,38,.22);
  --accent: #1570ef; --accent-hover: #175cd3; --accent-ink: #ffffff;
  --accent-soft: rgba(21,112,239,.10);
  --shadow: 0 1px 2px rgba(16,19,38,.04), 0 12px 32px -12px rgba(16,19,38,.14);
  --shadow-sm: 0 1px 2px rgba(16,19,38,.05), 0 4px 12px -6px rgba(16,19,38,.10);
}
:root[data-theme="dark"] {
  --bg: #0d0f26; --bg-elev: #14172e; --surface: #171a33; --surface-2: #1e2240;
  --text: #f5f7fa; --text-muted: #a2acc2; --text-faint: #7c85a0;
  --border: rgba(255,255,255,.10); --border-strong: rgba(255,255,255,.22);
  --accent: #5aa2ff; --accent-hover: #7bb5ff; --accent-ink: #0d0f26;
  --accent-soft: rgba(90,162,255,.15);
  --shadow: 0 1px 2px rgba(0,0,0,.4), 0 16px 40px -14px rgba(0,0,0,.7);
  --shadow-sm: 0 1px 2px rgba(0,0,0,.4), 0 6px 16px -8px rgba(0,0,0,.6);
}

/* ---------- Reset / Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 1.0625rem;
  line-height: 1.65;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-feature-settings: "ss01", "cv01";
  overflow-x: hidden;
}

img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; background: none; border: none; }
input, textarea, select { font: inherit; color: inherit; }
::selection { background: var(--accent); color: var(--accent-ink); }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 4px; }

/* ---------- Layout ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
section { position: relative; }
.section-pad { padding-block: clamp(4.5rem, 11vw, 9rem); }
.eyebrow {
  display: inline-block;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.1rem;
}

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.03;
  letter-spacing: -0.02em;
  text-wrap: balance;
}
.display {
  font-size: clamp(2.4rem, 5.4vw, 4.2rem);
  line-height: 1.0;
  letter-spacing: -0.03em;
  font-weight: 600;
}
h2.section-title { font-size: clamp(2rem, 4.6vw, 3.2rem); letter-spacing: -0.025em; }
h3 { font-size: clamp(1.25rem, 2.2vw, 1.6rem); font-weight: 600; }
.lead { font-size: clamp(1.1rem, 1.7vw, 1.32rem); line-height: 1.55; color: var(--text-muted); max-width: 42ch; }
.prose { color: var(--text-muted); max-width: 62ch; }
.prose p + p { margin-top: 1.1rem; }
.text-accent { color: var(--accent); }
.emph { font-style: italic; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .55rem;
  padding: .82rem 1.5rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: -0.01em;
  transition: transform .25s var(--ease), background-color .25s var(--ease), border-color .25s var(--ease), box-shadow .25s var(--ease);
  white-space: nowrap;
}
.btn:active { transform: translateY(1px) scale(.985); }
.btn-primary { background: var(--accent); color: var(--accent-ink); box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--accent-hover); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-ghost { border: 1px solid var(--border-strong); color: var(--text); }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }
.btn .arrow { transition: transform .25s var(--ease); }
.btn:hover .arrow { transform: translate(3px, -3px); }

/* ---------- Grain (fixed, GPU-freundlich) ---------- */
.grain {
  position: fixed; inset: 0; z-index: 90;
  pointer-events: none; opacity: .028; mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
@media (prefers-color-scheme: dark) { .grain { mix-blend-mode: screen; opacity: .035; } }
:root[data-theme="dark"] .grain { mix-blend-mode: screen; opacity: .035; }

/* ---------- Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 100;
  transition: background-color .3s var(--ease), border-color .3s var(--ease), backdrop-filter .3s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: color-mix(in srgb, var(--bg) 82%, transparent);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom-color: var(--border);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 68px; }
.brand { display: inline-flex; align-items: center; gap: .6rem; font-family: var(--font-display); font-weight: 600; font-size: 1.18rem; letter-spacing: -0.02em; }
.brand .dot { width: 11px; height: 11px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 4px var(--accent-soft); flex: none; }
.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-links a.navlink { font-size: .96rem; color: var(--text-muted); font-weight: 500; transition: color .2s var(--ease); }
.nav-links a.navlink:hover { color: var(--text); }
.nav-right { display: flex; align-items: center; gap: 1.1rem; }
.theme-toggle {
  width: 40px; height: 40px; border-radius: 50%;
  display: grid; place-items: center;
  border: 1px solid var(--border); color: var(--text-muted);
  transition: color .2s var(--ease), border-color .2s var(--ease), transform .2s var(--ease);
}
.theme-toggle:hover { color: var(--text); border-color: var(--border-strong); transform: rotate(-15deg); }
.theme-toggle .moon { display: none; }
:root[data-theme="dark"] .theme-toggle .sun, .theme-toggle .sun { display: block; }
:root[data-theme="dark"] .theme-toggle .moon { display: none; }
@media (prefers-color-scheme: dark) {
  .theme-toggle .sun { display: none; } .theme-toggle .moon { display: block; }
}
:root[data-theme="light"] .theme-toggle .sun { display: block; }
:root[data-theme="light"] .theme-toggle .moon { display: none; }
:root[data-theme="dark"] .theme-toggle .sun { display: none; }
:root[data-theme="dark"] .theme-toggle .moon { display: block; }
.nav-cta { display: inline-flex; }
.burger { display: none; }
.mobile-menu { display: none; }

@media (max-width: 860px) {
  .nav-links { display: none; }
  .nav-right .nav-cta { display: none; }
  .burger {
    display: grid; place-items: center; width: 42px; height: 42px;
    border-radius: 10px; border: 1px solid var(--border); color: var(--text);
  }
  .mobile-menu {
    position: fixed; inset: 68px 0 auto 0; z-index: 99;
    background: var(--bg-elev); border-bottom: 1px solid var(--border);
    padding: 1.2rem var(--gutter) 1.8rem;
    display: none; flex-direction: column; gap: .2rem;
    box-shadow: var(--shadow);
  }
  .mobile-menu.open { display: flex; }
  .mobile-menu a { padding: .85rem 0; font-size: 1.1rem; font-weight: 500; border-bottom: 1px solid var(--border); font-family: var(--font-display); }
  .mobile-menu .btn { margin-top: 1rem; justify-content: center; }
}

/* ---------- Hero ---------- */
.hero { position: relative; padding-top: clamp(2.5rem, 6vw, 5rem); padding-bottom: clamp(3rem, 8vw, 6.5rem); overflow: hidden; }
.hero-glow {
  position: absolute; z-index: 0; pointer-events: none;
  width: 60vw; height: 60vw; max-width: 720px; max-height: 720px;
  right: -10vw; top: -12vw;
  background: radial-gradient(circle at 50% 50%, var(--accent-soft), transparent 68%);
  filter: blur(8px);
}
.hero-grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.15fr 0.85fr; gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.hero-avail {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .82rem; font-weight: 500; color: var(--text-muted);
  border: 1px solid var(--border); border-radius: 999px;
  padding: .4rem .85rem; margin-bottom: 1.6rem;
}
.hero-avail .live { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); flex: none; }
.hero h1 { margin-bottom: 1.5rem; }
.hero .lead { margin-bottom: 2.1rem; max-width: 46ch; }
.hero-cta { display: flex; flex-wrap: wrap; gap: .9rem; align-items: center; }
.hero-visual {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  aspect-ratio: 4 / 5; background: var(--surface);
  border: 1px solid var(--border); box-shadow: var(--shadow);
}
.hero-visual img { width: 100%; height: 100%; object-fit: cover; }
.hero-visual .cap {
  position: absolute; left: 14px; bottom: 14px; z-index: 2;
  font-size: .74rem; font-weight: 600; letter-spacing: .04em;
  color: #fff; background: rgba(20,17,12,.55);
  backdrop-filter: blur(6px); padding: .35rem .7rem; border-radius: 999px;
}
@media (max-width: 820px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { aspect-ratio: 16 / 11; max-height: 340px; order: -1; }
}

/* ---------- Metrics ---------- */
.metrics { border-block: 1px solid var(--border); }
.metrics-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.metric { padding: clamp(2rem, 4vw, 3.2rem) clamp(1rem, 3vw, 2.4rem); }
.metric + .metric { border-left: 1px solid var(--border); }
.metric .num { font-family: var(--font-display); font-size: clamp(2.4rem, 5vw, 3.6rem); font-weight: 600; letter-spacing: -0.03em; line-height: 1; }
.metric .lbl { color: var(--text-muted); margin-top: .6rem; font-size: .98rem; }
@media (max-width: 720px) {
  .metrics-grid { grid-template-columns: 1fr; }
  .metric + .metric { border-left: none; border-top: 1px solid var(--border); }
}

/* ---------- Section header ---------- */
.sec-head { max-width: 40ch; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.sec-head p { margin-top: 1rem; color: var(--text-muted); font-size: 1.1rem; }

/* ---------- Leistungen (Bento) ---------- */
.bento { display: grid; grid-template-columns: repeat(6, 1fr); gap: 1rem; }
.card {
  background: var(--bg-elev); border: 1px solid var(--border);
  border-radius: var(--radius); padding: clamp(1.5rem, 2.6vw, 2.1rem);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
  display: flex; flex-direction: column; min-height: 210px;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--border-strong); }
.card .ico { width: 44px; height: 44px; border-radius: 11px; display: grid; place-items: center; background: var(--accent-soft); color: var(--accent); margin-bottom: auto; }
.card .ico svg { width: 22px; height: 22px; }
.card h3 { margin-top: 1.4rem; }
.card p { color: var(--text-muted); margin-top: .5rem; font-size: .98rem; }
.card.span-3 { grid-column: span 3; }
.card.span-2 { grid-column: span 2; }
.card.feature {
  grid-column: span 6; flex-direction: row; align-items: center; gap: 2rem;
  background: linear-gradient(120deg, var(--accent-soft), transparent 60%), var(--bg-elev);
  min-height: 0;
}
.card.feature .ico { margin: 0; width: 56px; height: 56px; }
.card.feature .ftxt { flex: 1; }
.card.feature h3 { margin-top: 0; }
@media (max-width: 900px) {
  .bento { grid-template-columns: repeat(2, 1fr); }
  .card.span-3, .card.span-2 { grid-column: span 1; }
  .card.feature { grid-column: span 2; }
}
@media (max-width: 560px) {
  .bento { grid-template-columns: 1fr; }
  .card.feature { grid-column: span 1; flex-direction: column; align-items: flex-start; gap: 1.2rem; }
  .card.span-3, .card.span-2 { grid-column: span 1; }
}

/* ---------- Ansatz (Statement + Prose) ---------- */
.ansatz-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(2.5rem, 6vw, 5rem); align-items: start; }
.statement { font-family: var(--font-display); font-weight: 500; font-size: clamp(1.7rem, 3.6vw, 2.8rem); line-height: 1.14; letter-spacing: -0.02em; text-wrap: balance; }
.statement .text-accent { font-weight: 600; }
.ansatz-side .prose { font-size: 1.05rem; }
.ansatz-side .sign { margin-top: 1.8rem; display: flex; align-items: center; gap: .8rem; }
.ansatz-side .sign .who { font-family: var(--font-display); font-weight: 600; }
.ansatz-side .sign .role { color: var(--text-faint); font-size: .9rem; }
@media (max-width: 820px) { .ansatz-grid { grid-template-columns: 1fr; gap: 2rem; } }

/* ---------- Showcase Band ---------- */
.band { background: var(--surface); border-block: 1px solid var(--border); }
.band-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.band h2 { font-size: clamp(1.9rem, 4vw, 3rem); }
.band .lead { margin-top: 1.1rem; max-width: 40ch; }
.principles { display: grid; gap: .1rem; }
.principle { padding: 1.2rem 0 1.2rem 1.4rem; border-top: 1px solid var(--border); position: relative; }
.principle:last-child { border-bottom: 1px solid var(--border); }
.principle::before { content: ""; position: absolute; left: 0; top: 1.55rem; width: 8px; height: 8px; border-radius: 50%; background: var(--accent); }
.principle .pt { font-weight: 600; font-family: var(--font-display); font-size: 1.08rem; }
.principle .pd { color: var(--text-muted); font-size: .96rem; margin-top: .2rem; }
@media (max-width: 820px) { .band-grid { grid-template-columns: 1fr; } }

/* ---------- Tools ---------- */
.tools-row { display: flex; flex-wrap: wrap; gap: .8rem; }
.tool {
  display: inline-flex; align-items: center; gap: .7rem;
  border: 1px solid var(--border); border-radius: 999px;
  padding: .6rem 1.1rem .6rem .7rem; background: var(--bg-elev);
  transition: border-color .2s var(--ease), transform .2s var(--ease);
}
.tool:hover { border-color: var(--accent); transform: translateY(-2px); }
.tool .tbadge { width: 30px; height: 30px; border-radius: 50%; background: var(--surface-2); display: grid; place-items: center; font-family: var(--font-display); font-weight: 700; font-size: .85rem; color: var(--accent); }
.tool .tname { font-weight: 600; font-size: .95rem; }
.tool .tdesc { color: var(--text-faint); font-size: .85rem; }

/* ---------- Kontakt ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.form-field { display: flex; flex-direction: column; gap: .45rem; margin-bottom: 1.1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.form-field label { font-size: .9rem; font-weight: 600; }
.form-field label .req { color: var(--accent); }
.form-field input, .form-field select, .form-field textarea {
  background: var(--bg-elev); border: 1px solid var(--border-strong);
  border-radius: 10px; padding: .8rem .95rem; width: 100%;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.form-field input::placeholder, .form-field textarea::placeholder { color: var(--text-faint); }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-soft);
}
.form-field textarea { resize: vertical; min-height: 120px; }
.form-note { font-size: .88rem; color: var(--text-faint); margin-top: .3rem; }
.form-status { display: none; padding: .9rem 1.1rem; border-radius: 10px; background: var(--accent-soft); color: var(--accent); font-weight: 500; font-size: .95rem; margin-top: 1rem; }
.form-status.show { display: block; }
.contact-info { display: flex; flex-direction: column; gap: .2rem; }
.info-item { display: flex; gap: 1rem; padding: 1.1rem 0; border-top: 1px solid var(--border); align-items: flex-start; }
.info-item:last-child { border-bottom: 1px solid var(--border); }
.info-item .ii-ico { color: var(--accent); flex: none; margin-top: 2px; }
.info-item .ii-k { font-size: .82rem; color: var(--text-faint); text-transform: uppercase; letter-spacing: .08em; }
.info-item .ii-v { font-weight: 500; }
.info-item a.ii-v:hover { color: var(--accent); }
@media (max-width: 820px) { .contact-grid { grid-template-columns: 1fr; } .form-row { grid-template-columns: 1fr; } }
.contact-cta { background: var(--bg-elev); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: clamp(1.8rem, 3vw, 2.6rem); display: flex; flex-direction: column; justify-content: center; }
.contact-cta-lead { font-size: 1.12rem; color: var(--text); margin-bottom: 1.6rem; max-width: 42ch; }
.contact-cta-actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-bottom: 1.1rem; }

/* ---------- Footer ---------- */
.footer { border-top: 1px solid var(--border); background: var(--bg); }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2.5rem; padding-block: clamp(3rem, 6vw, 4.5rem); }
.footer .brand { font-size: 1.3rem; margin-bottom: 1rem; }
.footer .fdesc { color: var(--text-muted); max-width: 34ch; font-size: .98rem; }
.footer .footer-h { font-family: var(--font-sans); font-size: .8rem; text-transform: uppercase; letter-spacing: .1em; color: var(--text-faint); margin-bottom: 1.1rem; font-weight: 600; }
.footer-col a { display: block; padding: .35rem 0; color: var(--text-muted); font-size: .98rem; transition: color .2s var(--ease); }
.footer-col a:hover { color: var(--accent); }
.socials { display: flex; gap: .6rem; margin-top: 1.4rem; }
.socials a { width: 38px; height: 38px; border-radius: 10px; border: 1px solid var(--border); display: grid; place-items: center; color: var(--text-muted); transition: color .2s var(--ease), border-color .2s var(--ease), transform .2s var(--ease); }
.socials a:hover { color: var(--accent); border-color: var(--accent); transform: translateY(-2px); }
.footer-bottom { border-top: 1px solid var(--border); padding-block: 1.5rem; display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between; align-items: center; }
.footer-bottom p { color: var(--text-faint); font-size: .9rem; }
.footer-bottom .fb-links { display: flex; gap: 1.3rem; }
.footer-bottom .fb-links a { color: var(--text-faint); font-size: .9rem; }
.footer-bottom .fb-links a:hover { color: var(--text); }
@media (max-width: 720px) { .footer-top { grid-template-columns: 1fr 1fr; } .footer-brandcol { grid-column: span 2; } }
@media (max-width: 480px) { .footer-top { grid-template-columns: 1fr; } .footer-brandcol { grid-column: span 1; } }

/* ---------- Legal pages ---------- */
.legal { padding-top: clamp(2.5rem, 6vw, 4.5rem); }
.legal-head { max-width: 60ch; margin-bottom: 3rem; }
.legal-head .back { color: var(--accent); font-weight: 600; font-size: .92rem; display: inline-flex; gap: .4rem; margin-bottom: 1.5rem; }
.legal-body { max-width: 68ch; }
.legal-body h2 { font-size: 1.5rem; margin-top: 2.6rem; margin-bottom: .9rem; }
.legal-body h3 { font-size: 1.15rem; margin-top: 1.8rem; margin-bottom: .6rem; }
.legal-body p { color: var(--text-muted); margin-bottom: 1rem; }
.legal-body ul { color: var(--text-muted); margin: 0 0 1rem 1.2rem; }
.legal-body li { margin-bottom: .4rem; }
.legal-body a { color: var(--accent); }
.legal-body strong { color: var(--text); font-weight: 600; }
.legal-body .muted-box { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.2rem 1.4rem; margin-bottom: 1.4rem; font-size: .95rem; }

/* ---------- Brand-Logo (Wortmarke: navy in Light, weiß in Dark) ---------- */
.brand-logo { display: inline-flex; align-items: center; }
/* Wortmarke ist sehr breit (430:17), Höhe daher bewusst klein halten */
.brand-logo img { height: 11px; width: auto; display: block; }
.footer .brand-logo img { height: 13px; }
@media (max-width: 520px) { .brand-logo img { height: 9px; } }
@media (prefers-color-scheme: dark) { .brand-logo img { filter: brightness(0) invert(1); } }
:root[data-theme="light"] .brand-logo img { filter: none; }
:root[data-theme="dark"] .brand-logo img { filter: brightness(0) invert(1); }

/* ---------- Hero-Foto ---------- */
.hero-visual { aspect-ratio: 5 / 6; }
.hero-visual img { object-position: 50% 26%; }
.hero-badge {
  position: absolute; left: 16px; bottom: 16px; z-index: 2;
  display: inline-flex; align-items: center; gap: .55rem;
  background: color-mix(in srgb, var(--bg-elev) 90%, transparent);
  backdrop-filter: blur(8px); border: 1px solid var(--border);
  padding: .5rem .85rem; border-radius: 999px; box-shadow: var(--shadow-sm);
}
.hero-badge .hb-ava { width: 26px; height: 26px; border-radius: 50%; object-fit: cover; }
.hero-badge .hb-t { font-size: .84rem; font-weight: 600; line-height: 1.15; }
.hero-badge .hb-s { font-size: .74rem; color: var(--text-muted); }

/* ---------- Trust Logo-Wall ---------- */
.trust { border-top: 1px solid var(--border); }
.trust .wrap { padding-block: clamp(2.2rem, 4vw, 3.2rem); }
.trust-label { text-align: center; font-size: .82rem; color: var(--text-faint); letter-spacing: .04em; margin-bottom: 1.6rem; }
.logowall { display: grid; grid-template-columns: repeat(4, 1fr); align-items: center; justify-items: center; gap: clamp(1.8rem, 4vw, 2.8rem) clamp(1.4rem, 4vw, 3rem); max-width: 940px; margin-inline: auto; }
.logowall img {
  height: 32px; width: auto; max-width: 100%; object-fit: contain;
  filter: brightness(0); opacity: .5;
  transition: opacity .25s var(--ease), filter .25s var(--ease);
}
@media (max-width: 620px) { .logowall { grid-template-columns: repeat(2, 1fr); gap: 2rem 1.5rem; } }
.logowall a:hover img { opacity: .72; }
@media (prefers-color-scheme: dark) { .logowall img { filter: brightness(0) invert(1); opacity: .55; } }
:root[data-theme="light"] .logowall img { filter: brightness(0); opacity: .48; }
:root[data-theme="dark"] .logowall img { filter: brightness(0) invert(1); opacity: .55; }

/* ---------- Zielgruppen-Split (Unternehmen / Agenturen) ---------- */
.audience-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem; }
.aud {
  background: var(--bg-elev); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: clamp(1.8rem, 3vw, 2.6rem);
  display: flex; flex-direction: column;
}
.aud.accent { background: linear-gradient(160deg, var(--accent-soft), transparent 55%), var(--bg-elev); border-color: color-mix(in srgb, var(--accent) 30%, var(--border)); }
.aud .aud-k { font-size: .82rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--accent); margin-bottom: .9rem; }
.aud h3 { font-size: clamp(1.4rem, 2.4vw, 1.85rem); margin-bottom: .7rem; }
.aud .aud-lead { color: var(--text-muted); margin-bottom: 1.4rem; }
.aud ul { list-style: none; padding: 0; margin: 0 0 1.6rem; display: grid; gap: .7rem; }
.aud li { position: relative; padding-left: 1.7rem; color: var(--text); font-size: .98rem; }
.aud li::before {
  content: ""; position: absolute; left: 0; top: .28em; width: 16px; height: 16px;
  background: var(--accent); border-radius: 50%;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E") center/13px no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E") center/13px no-repeat;
}
.aud .btn { margin-top: auto; align-self: flex-start; }
@media (max-width: 780px) { .audience-grid { grid-template-columns: 1fr; } }

/* ---------- Über-mich mit Foto ---------- */
.about-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(2.5rem, 5vw, 4.5rem); align-items: center; }
.about-photo { border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/5; border: 1px solid var(--border); box-shadow: var(--shadow); }
.about-photo img { width: 100%; height: 100%; object-fit: cover; object-position: 60% 30%; }
@media (max-width: 780px) { .about-grid { grid-template-columns: 1fr; } .about-photo { max-height: 380px; aspect-ratio: 3/2; } }

/* ---------- Linktree (/links) ---------- */
.tree { max-width: 480px; margin-inline: auto; text-align: center; }
.tree-ava { width: 108px; height: 108px; border-radius: 50%; object-fit: cover; margin: 0 auto 1.2rem; border: 3px solid var(--bg-elev); box-shadow: var(--shadow); object-position: 50% 20%; }
.tree h1 { font-size: 1.8rem; }
.tree .tree-sub { color: var(--text-muted); margin: .4rem 0 2rem; }
.tree-links { display: grid; gap: .8rem; }
.tree-link {
  display: flex; align-items: center; gap: .9rem; text-align: left;
  background: var(--bg-elev); border: 1px solid var(--border);
  border-radius: var(--radius); padding: .95rem 1.2rem;
  transition: transform .2s var(--ease), border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.tree-link:hover { transform: translateY(-2px); border-color: var(--accent); box-shadow: var(--shadow-sm); }
.tree-link .tl-badge { width: 38px; height: 38px; border-radius: 10px; background: var(--surface-2); display: grid; place-items: center; font-family: var(--font-display); font-weight: 700; color: var(--accent); flex: none; }
.tree-link .tl-t { font-weight: 600; }
.tree-link .tl-s { font-size: .86rem; color: var(--text-faint); }
.tree-link .tl-arrow { margin-left: auto; color: var(--text-faint); }
.tree-socials { display: flex; justify-content: center; gap: .7rem; margin-top: 2rem; }
.tree-socials a { width: 42px; height: 42px; border-radius: 12px; border: 1px solid var(--border); display: grid; place-items: center; color: var(--text-muted); transition: color .2s var(--ease), border-color .2s var(--ease), transform .2s var(--ease); }
.tree-socials a:hover { color: var(--accent); border-color: var(--accent); transform: translateY(-2px); }

/* ---------- Reveal Motion ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-d="1"] { transition-delay: .07s; }
.reveal[data-d="2"] { transition-delay: .14s; }
.reveal[data-d="3"] { transition-delay: .21s; }
.reveal[data-d="4"] { transition-delay: .28s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .btn, .card, .tool, .socials a, .theme-toggle { transition: none !important; }
}
