/*
  Design-System „Überlappung" — AWO-Beratungsstelle Brake (Susanne Blümer)
  Unbounded (Display) + Onest (Text). Blasses Indigo-Grau, Indigo-Ink, Koralle.
  Übergroßer Titel überlappt die Bildkante; vertikale Navigation rechts.
  Individuell für diese Beratungsstelle; nicht wiederverwenden.
*/
:root {
  --indigograu: #e3e3ec;
  --indigograu-tief: #d6d6e3;
  --ink: #232447;
  --ink-weich: #4b4d6e;
  --ink-grau: #83859c;
  --koralle: #c4675f;
  --linie: rgba(35, 36, 71, 0.16);
  --linie-stark: rgba(35, 36, 71, 0.4);
  --disp: 'Unbounded', 'Segoe UI', Arial, sans-serif;
  --text: 'Onest', 'Segoe UI', Arial, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body::after {
  content: ""; position: fixed; inset: 0; pointer-events: none; z-index: 200;
  opacity: 0.5; mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3CfeColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.05 0'/%3E%3C/filter%3E%3Crect width='240' height='240' filter='url(%23n)'/%3E%3C/svg%3E");
}

body { background: var(--indigograu); color: var(--ink); font-family: var(--text); font-size: 16.5px; line-height: 1.68; -webkit-font-smoothing: antialiased; }

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }

/* Vertikale Navigation rechts (Desktop) */
.seitennavi {
  position: fixed;
  right: 0; top: 0; bottom: 0;
  width: 52px;
  background: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 20;
}
.seitennavi ul {
  list-style: none;
  writing-mode: vertical-rl;
  display: flex;
  gap: 1.6rem;
  font-family: var(--disp);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.seitennavi a { color: rgba(227, 227, 236, 0.6); }
.seitennavi a:hover { color: #fff; }
.seitennavi a[aria-current="page"] { color: #fff; border-right: 2px solid var(--koralle); padding-right: 0.5rem; }

/* Hauptfläche (Platz für die Navi) */
.inhalt { margin-right: 52px; }
.flaeche { max-width: 900px; margin: 0 auto; padding: 0 clamp(1.2rem, 4vw, 3rem); }

/* Hero mit überlappendem Titel */
.hero-bild { position: relative; }
.hero-bild img { width: 80%; margin-left: auto; height: clamp(320px, 58vh, 560px); object-fit: cover; }
.hero-titel {
  position: relative;
  margin-top: clamp(-2.6rem, -4.5vw, -1.4rem);
  padding: 0 clamp(1.2rem, 4vw, 3rem);
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.hero-titel h1 { text-shadow: 0 2px 22px rgba(227, 227, 236, 0.85); }
.hero-titel .kennung { font-family: var(--disp); font-size: 0.64rem; font-weight: 600; letter-spacing: 0.24em; text-transform: uppercase; color: var(--koralle); margin-bottom: 1rem; }
.hero-titel h1 { font-family: var(--disp); font-weight: 600; font-size: clamp(2rem, 5.4vw, 4.1rem); line-height: 1.08; letter-spacing: -0.01em; max-width: 17ch; }
.hero-titel .unter { margin-top: 1.3rem; max-width: 48ch; font-size: clamp(1rem, 1.5vw, 1.16rem); color: var(--ink-weich); line-height: 1.7; }

/* Abschnitte */
.abschnitt { padding: clamp(2.6rem, 6vw, 4.6rem) 0; }
.abschnitt + .abschnitt { border-top: 1px solid var(--linie); }
.kennung { font-family: var(--disp); font-size: 0.64rem; font-weight: 600; letter-spacing: 0.24em; text-transform: uppercase; color: var(--koralle); margin-bottom: 1rem; }
h2 { font-family: var(--disp); font-weight: 600; font-size: clamp(1.4rem, 2.8vw, 1.95rem); line-height: 1.18; margin-bottom: 1.1rem; }
h3 { font-weight: 700; font-size: 1rem; margin-bottom: 0.4rem; }

p + p { margin-top: 0.9rem; }
.einleitung { font-size: clamp(1.02rem, 1.5vw, 1.16rem); color: var(--ink-weich); max-width: 54ch; line-height: 1.75; }
.still { color: var(--ink-grau); font-size: 0.87rem; }

/* Zwei-Spalten */
.zwei { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(1.6rem, 4vw, 3.4rem); align-items: start; }

/* Faktenzeilen */
.zeilen { border-top: 1px solid var(--linie-stark); }
.zeilen > div { display: grid; grid-template-columns: minmax(7.5rem, 12rem) 1fr; gap: 0.6rem 1.8rem; padding: 0.9rem 0; border-bottom: 1px solid var(--linie); }
.zeilen dt { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-grau); padding-top: 0.26rem; }
.zeilen dd { font-size: 0.98rem; line-height: 1.6; }
.zeilen dd a { border-bottom: 1px solid var(--linie-stark); }
.zeilen dd a:hover { color: var(--koralle); border-color: var(--koralle); }

/* Knöpfe */
.takt { display: flex; gap: 0.9rem; flex-wrap: wrap; margin-top: 1.7rem; }
.knopf { display: inline-block; padding: 0.8rem 1.5rem; border-radius: 999px; font-family: var(--disp); font-size: 0.7rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; border: 1.5px solid var(--ink); }
.knopf:hover { background: var(--ink); color: var(--indigograu); }
.knopf-koralle { background: var(--koralle); border-color: var(--koralle); color: #fff; }
.knopf-koralle:hover { background: #a5514a; border-color: #a5514a; color: #fff; }

/* Hinweis + Krise */
.hinweis { border: 1px solid var(--linie-stark); border-radius: 10px; padding: 1.2rem 1.5rem; margin-top: 1.6rem; font-size: 0.94rem; color: var(--ink-weich); max-width: 64ch; }
.hinweis strong { color: var(--ink); }

.krise { border-radius: 12px; background: var(--ink); color: var(--indigograu); padding: 1.6rem 1.8rem; margin-top: 2.4rem; }
.krise h3 { font-family: var(--disp); font-weight: 600; color: var(--koralle); margin-bottom: 0.5rem; }
.krise p, .krise li { font-size: 0.94rem; color: rgba(227, 227, 236, 0.82); }
.krise ul { list-style: none; margin-top: 0.55rem; }
.krise li { padding: 0.26rem 0; }
.krise a { border-bottom: 1px solid rgba(227, 227, 236, 0.4); }

/* Fußzeile */
.fuss { border-top: 1px solid var(--linie-stark); margin-top: 3.4rem; }
.fuss-inhalt { max-width: 900px; margin: 0 auto; padding: 1.8rem clamp(1.2rem, 4vw, 3rem) 2.2rem; display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; font-size: 0.8rem; color: var(--ink-weich); }
.fuss-inhalt a { border-bottom: 1px solid var(--linie-stark); }
.fuss-inhalt a:hover { color: var(--koralle); border-color: var(--koralle); }

.fussnote { max-width: 62ch; margin-top: 2.2rem; border-top: 1px solid var(--linie); padding-top: 0.85rem; font-size: 0.78rem; color: var(--ink-grau); }
sup { color: var(--koralle); font-size: 0.72em; }

.reveal { opacity: 0; transform: translateY(12px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

@media (max-width: 880px) {
  .seitennavi { position: static; width: auto; }
  .seitennavi ul { writing-mode: horizontal-tb; flex-wrap: wrap; padding: 1rem clamp(1.2rem, 4vw, 3rem); gap: 0.9rem; justify-content: center; }
  .seitennavi a { color: rgba(227, 227, 236, 0.75); }
  .inhalt { margin-right: 0; }
  .zwei { grid-template-columns: 1fr; }
  .hero-bild img { width: 100%; height: 260px; }
}

/* Craft: Ticker */
.ticker { background: var(--gold); color: var(--ink); overflow: hidden; white-space: nowrap; padding: 0.75rem 0; border-top: 1px solid var(--linie-stark); }
.ticker-inhalt { display: inline-block; animation: lauf 30s linear infinite; font-family: var(--disp); font-weight: 600; font-size: 0.78rem; letter-spacing: 0.18em; text-transform: uppercase; }
.ticker-inhalt span { margin: 0 1.5rem; }
.ticker-inhalt .stern { color: var(--navy); }
@keyframes lauf { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .ticker-inhalt { animation: none; } }

/* Craft: Riesiges CTA */
.cta-riesig { background: var(--koralle); color: #fff; padding: clamp(3rem, 7vw, 5.6rem) clamp(1.2rem, 4vw, 3rem); }
.cta-riesig .flaeche { max-width: 900px; margin: 0 auto; padding: 0; }
.cta-riesig h2 { font-family: var(--disp, var(--font)); font-weight: 600; font-size: clamp(2.4rem, 6.5vw, 5rem); line-height: 1.04; max-width: 16ch; margin-bottom: 1.5rem; }
.cta-riesig p { font-size: clamp(1rem, 1.5vw, 1.18rem); color: rgba(255,255,255,0.92); max-width: 50ch; }
