/* KernMedia – KI-Agentur & Medienproduktion
   Statischer Neubau im Design der bisherigen Seite (2026-08-13):
   JetBrains Mono als Textschrift, Montserrat für Überschriften,
   Gold/Cyan-Akzente, Scan-Linie, Partikel-Gradienten, eckige Knöpfe.
   Logo: KM-Monogramm (Dachmarke) – NICHT das Profil-Logo (das gehört
   zu event-foto-video.de).

   FARBSEMANTIK (verbindlich):
   GOLD  = Aktion      – CTAs, Buttons, Hover auf Klickbarem, Zahlen
   TAN   = warme Ebene – Kicker, Kartentitel, Rahmen (Bestand der Marke)
   CYAN  = Information – Meta-Angaben, Nummerierung, Statuszeile,
                         sekundäre Links, Scan-Linie */

@font-face {
  font-family: 'JetBrains Mono';
  font-style: normal; font-weight: 100 800; font-display: swap;
  src: url('../fonts/jetbrains-mono-var.woff2') format('woff2');
}
@font-face {
  font-family: 'Montserrat';
  font-style: normal; font-weight: 100 900; font-display: swap;
  src: url('../fonts/montserrat-var.woff2') format('woff2');
}

:root {
  --bg: oklch(0.08 0 0);
  --fog: #1A1A1A;
  --fog-2: oklch(21% 0 0);
  --linie: rgba(255,255,255,0.10);
  --text: oklch(0.92 0.005 65);
  --leise: oklch(62% .01 65);
  --gold: #D4AF37;            /* Knöpfe, Zahlen – sattes Gold der alten Seite */
  --tan: #B89C81;             /* warmer Akzent: Rahmen, Kartentitel, Kicker */
  --tan-20: rgba(184,156,129,.2);
  --tan-25: rgba(184,156,129,.25);
  --gold-hell: #E8C66A;
  --cyan: oklch(75% .15 210);
  --dunkel: #0D0D0D;
  --radius: .25rem;
  --maxw: 1200px;
  --sans: 'Montserrat', sans-serif;
  --mono: 'JetBrains Mono', 'Courier New', monospace;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
@media (prefers-reduced-motion: no-preference) {
  html { scroll-behavior: smooth; }
}
body {
  font-family: var(--mono);
  background: var(--bg); color: var(--text);
  line-height: 1.75; overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; } /* height-Attribut liefert nur die Ratio */
a { color: var(--cyan); text-decoration: none; }
a:hover { text-decoration: underline; }
::selection { background: var(--gold); color: #14120e; }

/* Tastatur-Fokus: Gold als Aktionsfarbe */
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 2px; }

/* Skip-Link: unsichtbar bis fokussiert */
.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 10000;
  background: var(--gold); color: var(--dunkel);
  font-family: var(--mono); font-weight: 700; font-size: .9rem;
  padding: 10px 18px; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; text-decoration: none; }
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 26px; }

h1, h2, h3 { font-family: var(--sans); }

/* Signatur-Effekt der alten Seite: wandernde Cyan-Linie */
.scan-line {
  pointer-events: none; z-index: 9999;
  background: linear-gradient(#0000, oklch(75% .15 210 / .3), #0000);
  width: 100%; height: 2px;
  animation: scan 8s linear infinite;
  position: fixed; top: 0; left: 0;
}
@keyframes scan { from { transform: translateY(-10px); } to { transform: translateY(100vh); } }

/* Partikel-Gradienten (gold links oben, cyan rechts unten) */
.particle-bg { position: relative; overflow: hidden; }
.particle-bg::before {
  content: ""; pointer-events: none; position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 20% 0%, #ab93801a, #0000 50%),
    radial-gradient(circle at 80% 80%, #00c4db1a, #0000 50%);
}

.glow-gold { text-shadow: 0 0 20px oklch(68% .04 60 / .5), 0 0 40px oklch(68% .04 60 / .3); }
.glow-cyan { text-shadow: 0 0 20px oklch(75% .15 210 / .5), 0 0 40px oklch(75% .15 210 / .3); }

/* ---------- Kopf ---------- */
header.kopf {
  position: sticky; top: 0; z-index: 100;
  background: rgba(10,10,10,0.85);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--linie);
}
.nav {
  display: flex; align-items: center; justify-content: space-between; gap: 22px;
  padding: 12px 26px; max-width: 1380px; margin: 0 auto;
}
.marke { display: block; flex-shrink: 0; }
.marke img { height: 44px; width: auto; }
.nav ul { display: flex; gap: 26px; list-style: none; }
.nav ul a {
  color: var(--text); font-size: .9rem; letter-spacing: .02em;
  white-space: nowrap; transition: color .2s; text-decoration: none;
}
.nav ul a:hover { color: var(--gold-hell); text-decoration: none; }
.nav .cta {
  font-family: var(--mono); font-size: .88rem; font-weight: 700;
  background: var(--gold); color: var(--dunkel);
  padding: 10px 24px; border-radius: 8px;
  white-space: nowrap; text-decoration: none;
  transition: background .2s, box-shadow .2s;
}
.nav .cta:hover { background: var(--gold-hell); box-shadow: 0 0 20px rgba(212,175,55,.5); text-decoration: none; }
/* ---------- Mobile Navigation (JS-frei, details/summary) ---------- */
.mnav { display: none; } /* Panel positioniert sich am sticky Header */
.mnav summary {
  list-style: none; cursor: pointer;
  display: flex; flex-direction: column; justify-content: center; gap: 5px;
  width: 44px; height: 44px; padding: 10px;
  border: 1px solid var(--tan-25); border-radius: 8px;
}
.mnav summary::-webkit-details-marker { display: none; }
.mnav summary span { display: block; height: 2px; background: var(--gold); border-radius: 1px; transition: transform .2s, opacity .2s; }
.mnav[open] summary span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mnav[open] summary span:nth-child(2) { opacity: 0; }
.mnav[open] summary span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mnav-liste {
  position: absolute; left: 0; right: 0; top: 100%;
  background: rgba(10,10,10,.97);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--linie);
  display: flex; flex-direction: column; gap: 4px;
  padding: 18px 26px 26px;
}
.mnav-liste a {
  color: var(--text); font-size: 1.05rem; padding: 12px 4px;
  border-bottom: 1px solid rgba(255,255,255,.06); text-decoration: none;
}
.mnav-liste a:hover { color: var(--gold-hell); }
.mnav-liste .mnav-cta {
  margin-top: 14px; text-align: center; border: 0;
  background: var(--gold); color: var(--dunkel);
  font-weight: 700; border-radius: 8px; padding: 13px;
}
@media (max-width: 1080px) {
  .nav ul { display: none; }
  .nav .cta { display: none; }
  .mnav { display: block; }
}
@media (max-width: 480px) { .marke img { height: 36px; width: auto; } }

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 94vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center; isolation: isolate; overflow: hidden;
  padding: 90px 0;
}
.hero .hintergrund {
  position: absolute; inset: 0; z-index: -1;
  background: url('../img/bg-hero.webp') center / cover no-repeat;
  opacity: .3;
}
.hero-inhalt { max-width: 1240px; margin: 0 auto; padding: 0 26px; }
.kicker {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--sans); color: var(--tan); letter-spacing: .3em;
  text-transform: uppercase; font-size: .8rem; font-weight: 800;
}
/* Hero-Kicker als Mono-Meta in Cyan (Information, s. Farbsemantik) */
.hero .kicker {
  font-family: var(--mono); font-weight: 600; color: var(--cyan);
  letter-spacing: .26em; font-size: .78rem;
}
.hero .kicker::before, .hero .kicker::after {
  content: "//"; opacity: .55; letter-spacing: 0;
}
.hero h1 {
  font-weight: 900; font-size: clamp(2.4rem, 6.4vw, 6rem);
  line-height: 1.06; text-transform: uppercase;
  letter-spacing: .1em; padding-left: .1em;  /* Sperrung + optischer Ausgleich */
  margin-top: 24px; color: #fff;
  text-shadow: 0 0 20px oklch(0.68 0.04 60 / .5), 0 0 40px oklch(0.68 0.04 60 / .3);
}
.hero .zeile {
  margin-top: 24px; display: flex; justify-content: center; gap: 10px 18px; flex-wrap: wrap;
  font-size: .95rem; letter-spacing: .24em; text-transform: uppercase;
  color: var(--tan); font-weight: 600;
}
.hero .zeile span + span::before { content: "•"; margin-right: 18px; opacity: .6; }
.hero .unter {
  margin: 26px auto 0; max-width: 66ch; color: var(--text);
  font-size: .98rem; opacity: .92;
}
.hero .aktionen { margin-top: 38px; display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; }

.btn {
  display: inline-block; padding: 14px 32px; border-radius: 8px;
  font-family: var(--mono); font-size: 1.02rem; font-weight: 700;
  text-decoration: none; transition: all .2s;
}
.btn:hover { text-decoration: none; }
.btn-gold { background: var(--gold); color: var(--dunkel); }
.btn-gold::after { content: " →"; }
.btn-gold:hover { background: var(--gold-hell); box-shadow: 0 0 24px rgba(212,175,55,.55), 0 6px 26px rgba(0,0,0,.4); transform: translateY(-2px); }
.btn-rand { border: 1px solid var(--cyan); color: var(--cyan); }
.btn-rand:hover { background: oklch(75% .15 210 / .12); transform: translateY(-2px); }

/* Maus-Scrollhinweis */
.maus {
  position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
  width: 24px; height: 40px; border: 2px solid rgba(184,156,129,.55); border-radius: 14px;
}
.maus::before {
  content: ""; position: absolute; top: 7px; left: 50%; margin-left: -2px;
  width: 4px; height: 8px; border-radius: 2px; background: var(--gold-hell);
  animation: rad 2s ease-in-out infinite;
}
@keyframes rad { 0%,100% { transform: translateY(0); opacity: 1; } 60% { transform: translateY(12px); opacity: .2; } }

/* ---------- Abschnitte ---------- */
section { padding: 96px 0; position: relative; }
section.alt { background: oklch(10% 0 0); border-top: 1px solid var(--linie); border-bottom: 1px solid var(--linie); }
.kopfzeile { max-width: 780px; margin: 0 auto 56px; text-align: center; }
.kopfzeile h2 {
  font-weight: 900; font-size: clamp(2rem, 4.6vw, 3.75rem);
  line-height: 1.08; text-transform: uppercase;
  letter-spacing: .1em; padding-left: .1em;
  margin-top: 14px;
  text-shadow: 0 0 20px oklch(0.68 0.04 60 / .5), 0 0 40px oklch(0.68 0.04 60 / .3);
}
.kopfzeile h2 em { font-style: normal; color: var(--tan); }
/* Arbeitsweise trägt wie im Original den Cyan-Glow */
#arbeitsweise .kopfzeile h2 {
  text-shadow: 0 0 20px oklch(0.75 0.15 210 / .5), 0 0 40px oklch(0.75 0.15 210 / .3);
}
.kopfzeile p { color: var(--leise); margin-top: 14px; font-size: .95rem; }
.kopfzeile.links { text-align: left; margin-left: 0; }

/* ---------- Leistungs-Karten ---------- */
.raster3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; counter-reset: karte; }
@media (max-width: 1000px) { .raster3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px)  { .raster3 { grid-template-columns: 1fr; } }

/* Mono-Nummerierung als Ordnungsprinzip der Dachmarke */
.raster3 .karte { counter-increment: karte; }
.raster3 .karte .rubrik::before {
  content: counter(karte, decimal-leading-zero) " / ";
  font-family: var(--mono); font-weight: 600;
  color: var(--cyan); letter-spacing: .06em;
}

.karte {
  background: var(--fog); border: 1px solid var(--tan-20); border-radius: 8px;
  padding: 32px; display: flex; flex-direction: column;
  transition: transform .25s, border-color .25s, box-shadow .25s;
}
.karte:hover {
  transform: translateY(-4px);
  border-color: var(--tan);
  box-shadow: 0 18px 40px rgba(0,0,0,.5), 0 0 30px rgba(184,156,129,.12);
}
.karte .rubrik { font-family: var(--sans); font-weight: 800; font-size: .7rem; letter-spacing: .22em; text-transform: uppercase; color: oklch(0.707 0.022 261); }
.karte h3 { font-weight: 700; font-size: 1.4rem; letter-spacing: .01em; margin: 10px 0 2px; color: var(--tan); }
.karte .sub { color: var(--gold-hell); font-size: .8rem; margin-bottom: 12px; }
.karte p { color: var(--leise); font-size: .86rem; }
.karte ul { list-style: none; margin-top: 16px; }
.karte li { font-size: .84rem; padding-left: 20px; position: relative; margin-bottom: 7px; }
.karte li::before { content: "▸"; color: var(--tan); position: absolute; left: 0; }
.karte .beleg { margin-top: auto; padding-top: 18px; font-size: .8rem; color: var(--leise); }

/* ---------- Arbeitsweise (01–04) ---------- */
.ablauf { display: grid; grid-template-columns: repeat(4, 1fr); gap: 34px 26px; counter-reset: schritt; margin-top: 10px; }
@media (max-width: 900px) { .ablauf { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .ablauf { grid-template-columns: 1fr; } }
.ablauf > div { counter-increment: schritt; }
.ablauf > div::before {
  content: "0" counter(schritt);
  font-family: var(--sans); font-weight: 900; font-size: 2.2rem;
  color: var(--gold); display: block; line-height: 1; margin-bottom: 12px;
  text-shadow: 0 0 20px rgba(212,175,55,.5), 0 0 40px rgba(212,175,55,.3);
}
.ablauf h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.ablauf p { color: var(--leise); font-size: .84rem; }

/* ---------- Mediencreator ---------- */
.fokus { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
@media (max-width: 900px) { .fokus { grid-template-columns: 1fr; } }
.fokus h2 { font-weight: 900; font-size: clamp(2rem, 4.4vw, 3.4rem); text-transform: uppercase; line-height: 1.06;
  letter-spacing: .1em; margin: 14px 0 16px;
  text-shadow: 0 0 20px oklch(0.68 0.04 60 / .5), 0 0 40px oklch(0.68 0.04 60 / .3); }
.fokus > div > p { color: var(--leise); font-size: .92rem; }
.fokus ul { list-style: none; margin: 22px 0 28px; }
.fokus li { padding-left: 24px; position: relative; margin-bottom: 9px; font-size: .9rem; }
.fokus li::before { content: "✓"; color: var(--gold-hell); position: absolute; left: 0; font-weight: 700; }
.fokus-bild {
  background: linear-gradient(135deg, #161616, #0D0D0D);
  border: 1px solid var(--tan-25); border-radius: 16px;
  padding: 36px; position: relative; overflow: hidden;
}
.fokus-bild::before {
  content: ""; position: absolute; top: -120px; right: -80px; width: 340px; height: 300px;
  background: radial-gradient(ellipse, oklch(68% .04 60 / .2), transparent 68%);
}
.fokus-bild .zeile { display: flex; align-items: center; gap: 10px; font-size: .78rem; color: var(--leise); }
.fokus-bild .zeile i { font-style: normal; color: var(--gold-hell); }
.fokus-bild .gross { font-family: var(--sans); font-weight: 800; text-transform: uppercase; font-size: 1.9rem; line-height: 1.1; margin: 14px 0 10px; }
.fokus-bild p:last-child { color: var(--leise); font-size: .84rem; }

/* ---------- Markenfamilie ---------- */
.familie { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
@media (max-width: 980px) { .familie { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; } }
.schwester {
  background: var(--fog); border: 1px solid var(--tan-20); border-radius: 8px;
  overflow: hidden; display: flex; flex-direction: column; text-decoration: none; color: inherit;
  transition: transform .25s, border-color .25s, box-shadow .25s;
}
.schwester:hover { transform: translateY(-5px); border-color: var(--tan); box-shadow: 0 20px 45px rgba(0,0,0,.5), 0 0 26px rgba(184,156,129,.12); text-decoration: none; }
.fenster { background: oklch(23% 0 0); border-bottom: 1px solid var(--linie); }
.fenster .balken { display: flex; align-items: center; gap: 6px; padding: 9px 12px; }
.fenster .balken i { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,.16); }
.fenster .balken i:first-child { background: rgba(255,95,87,.75); }
.fenster .balken span { margin-left: 8px; font-size: .66rem; color: var(--leise); background: rgba(255,255,255,.07); padding: 2px 12px; border-radius: 999px; }
.fenster img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; transition: transform .5s; }
.schwester:hover .fenster img { transform: scale(1.04); }
.schwester .inhalt { padding: 24px 26px 26px; display: flex; flex-direction: column; flex: 1; }
.schwester .rubrik { font-family: var(--sans); font-weight: 800; font-size: .68rem; letter-spacing: .22em; text-transform: uppercase; color: var(--tan); }
.schwester.eigen .rubrik { color: var(--cyan); }
.schwester h3 { font-weight: 700; font-size: 1.3rem; margin: 8px 0; color: var(--tan); }
.schwester p { color: var(--leise); font-size: .84rem; }
.schwester .ziel { margin-top: auto; padding-top: 18px; font-size: .78rem; display: flex; align-items: center; gap: 8px; }
.schwester .ziel .pfeil { color: var(--gold); transition: transform .25s; }
.schwester:hover .ziel .pfeil { transform: translateX(5px); }

/* ---------- Über uns ---------- */
.ueber { display: grid; grid-template-columns: 380px 1fr; gap: 60px; align-items: center; }
@media (max-width: 940px) { .ueber { grid-template-columns: 1fr; } }
.ueber .portrait { position: relative; }
.ueber .portrait img { border-radius: var(--radius); position: relative; z-index: 1; }
.ueber .portrait::before {
  content: ""; position: absolute; inset: -16px auto auto -16px; width: 55%; height: 55%;
  border: 1px solid oklch(75% .15 210 / .5); border-radius: var(--radius);
}
.ueber .portrait::after {
  content: ""; position: absolute; inset: auto -16px -16px auto; width: 55%; height: 55%;
  border: 1px solid oklch(68% .04 60 / .5); border-radius: var(--radius);
}
.ueber h2 {
  font-weight: 900; font-size: clamp(2rem, 4.6vw, 3.4rem);
  text-transform: uppercase; line-height: 1.1; letter-spacing: .08em; margin: 12px 0 6px;
  text-shadow: 0 0 20px oklch(0.68 0.04 60 / .5), 0 0 40px oklch(0.68 0.04 60 / .3);
}
.ueber h2 em { font-style: normal; color: var(--tan); display: block; }
.ueber .rolle { color: var(--cyan); font-size: .9rem; margin-bottom: 16px; }
.ueber p { color: var(--leise); margin-bottom: 14px; font-size: .92rem; }
.zahlen { display: flex; gap: 50px; flex-wrap: wrap; margin: 28px 0 6px; }
.zahlen b { display: block; font-family: var(--sans); font-weight: 900; font-size: 3.2rem; line-height: 1; color: var(--gold);
  text-shadow: 0 0 20px rgba(212,175,55,.4); }
.zahlen span { font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; color: var(--leise); }
.werte { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
.werte span {
  font-size: .78rem; letter-spacing: .04em;
  border: 1px solid var(--tan-25); border-radius: 999px;
  padding: 7px 18px; color: var(--tan); background: var(--fog);
}

/* ---------- Kontakt ---------- */
.kontakt-raster { display: grid; grid-template-columns: 1.1fr .9fr; gap: 50px; }
@media (max-width: 880px) { .kontakt-raster { grid-template-columns: 1fr; } }
.feld { margin-bottom: 16px; }
.feld label { display: block; font-size: .74rem; letter-spacing: .14em; text-transform: uppercase; color: var(--leise); margin-bottom: 6px; }
.feld input, .feld textarea {
  width: 100%; background: var(--fog); border: 1px solid var(--tan-20); border-radius: 8px;
  color: var(--text); font-family: var(--mono); font-size: .92rem; padding: 12px 14px;
  transition: border-color .2s, box-shadow .2s;
}
.feld input:focus, .feld textarea:focus { outline: none; border-color: var(--tan); box-shadow: 0 0 0 3px rgba(184,156,129,.18); }
.feld textarea { min-height: 150px; resize: vertical; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
button.senden {
  font-family: var(--mono); font-size: 1rem; font-weight: 700;
  background: var(--gold); color: var(--dunkel); border: 0; border-radius: 8px;
  padding: 14px 34px; cursor: pointer; transition: background .2s, box-shadow .2s, transform .2s;
}
button.senden::after { content: " →"; }
button.senden:hover { background: var(--gold-hell); transform: translateY(-2px); box-shadow: 0 0 24px rgba(212,175,55,.5); }
button.senden:disabled { opacity: .55; cursor: not-allowed; transform: none; }
.hinweis { margin-top: 14px; font-size: .86rem; min-height: 1.4em; }
.hinweis.ok { color: #6fd39a; }
.hinweis.fehler { color: #ef7a6d; }
.direkt { border: 1px solid var(--tan-20); border-radius: 8px; padding: 32px; background: var(--fog); align-self: start; }
.direkt h3 { font-weight: 800; font-size: 1.15rem; text-transform: uppercase; margin-bottom: 18px; }
.direkt dl { display: grid; grid-template-columns: auto 1fr; gap: 12px 18px; font-size: .88rem; }
.direkt dt { color: var(--tan); font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; padding-top: 3px; }
.direkt .notiz { margin-top: 18px; padding-top: 16px; border-top: 1px solid var(--linie); color: var(--leise); font-size: .8rem; }

/* ---------- Fuß ---------- */
footer { border-top: 1px solid var(--linie); padding: 44px 0; color: var(--leise); font-size: .84rem; background: oklch(9% 0 0); }
footer .reihe { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 14px; align-items: center; }
footer a { color: var(--leise); }
footer a:hover { color: var(--text); }
footer nav a { margin-left: 18px; }
footer .logo-fuss { height: 34px; width: auto; opacity: .9; }

/* Terminal-Statuszeile: Familienzeichen, hier in Mono/Cyan */
footer .statuszeile {
  margin-top: 26px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.06);
  font-family: var(--mono); font-size: .72rem; letter-spacing: .14em;
  color: oklch(62% .09 210);
}
/* Statische Markenzeile: No-JS-Fallback, markenband.js ersetzt sie */
footer .km-marken-zeile { margin-top: 10px; font-size: .78rem; color: var(--leise); }
footer .km-marken-zeile a { color: var(--cyan); }

/* ---------- Bewegung ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .scan-line { display: none; }
}

/* ---------- Unterseiten ---------- */
.inhaltsseite { padding: 70px 0 90px; }
.inhaltsseite h1 { font-weight: 900; font-size: clamp(2rem, 4.6vw, 3.2rem); text-transform: uppercase; line-height: 1.08;
  letter-spacing: .08em; margin-bottom: 10px;
  text-shadow: 0 0 20px oklch(0.68 0.04 60 / .5), 0 0 40px oklch(0.68 0.04 60 / .3); }
.inhaltsseite h2 { font-size: 1.05rem; margin: 30px 0 10px; }
.inhaltsseite p, .inhaltsseite li { color: var(--leise); font-size: .92rem; }
.inhaltsseite ul { margin-left: 20px; }
.zurueck { display: inline-block; margin-bottom: 26px; font-size: .78rem; letter-spacing: .14em; text-transform: uppercase; color: var(--tan); }

/* Hero-Variante für Unterseiten */
.hero.klein { min-height: 0; padding: 110px 0 80px; text-align: left; }
.hero.klein .hero-inhalt { max-width: var(--maxw); margin: 0; padding: 0; }
.hero.klein .zeile, .hero.klein .aktionen { justify-content: flex-start; }
.hero.klein .unter { margin-left: 0; }
