:root {
  --cream:     #F7F5F1;
  --cream2:    #FDFCFA;
  --taupe:     #E8E4DE;
  --taupe2:    #D8D3CC;
  --stone:     #B8B2AA;
  --black:     #0E0E0E;
  --mid:       #0E0E0E;
  --light:     #3D3936;
  --green:     #8AB61A;
  --green-dk:  #6A9210;
  --border:    rgba(14,14,14,0.08);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--cream);
  color: var(--black);
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 300;
  font-size: 20px;
  line-height: 1.75;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1 { font-size: clamp(2.6rem, 4.8vw, 4.4rem); font-weight: 300; line-height: 1.08; letter-spacing: -0.01em; color: var(--black); }
h2 { font-size: clamp(1.8rem, 3vw, 2.8rem); font-weight: 300; line-height: 1.18; color: var(--black); }
h3 { font-size: 1.45rem; font-weight: 400; line-height: 1.3; color: var(--black); }
h4 { font-size: 1rem; font-weight: 500; color: var(--black); }
p  { font-weight: 300; color: var(--mid); line-height: 1.82; }
strong { font-weight: 500; color: var(--black); }

.label {
  font-size: 0.68rem; font-weight: 500;
  letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--green); display: block; margin-bottom: 1.2rem;
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 6vw;
  background: rgba(247,245,241,0.97);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.4s;
}
nav.scrolled { box-shadow: 0 1px 20px rgba(14,14,14,0.05); }
.nav-logo { height: 54px; width: auto; background: transparent; display: block; }
nav ul { list-style: none; display: flex; align-items: center; gap: 3rem; }
nav a {
  font-size: 0.82rem; font-weight: 400;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--mid); text-decoration: none; transition: color 0.2s;
}
nav a:hover { color: var(--black); }
.nav-cta { color: var(--black) !important; border-bottom: 1px solid var(--green); padding-bottom: 2px; }
.nav-cta:hover { color: var(--green) !important; }

/* ── HERO ── */
#hero {
  min-height: 100vh;
  position: relative;
  display: grid;
  grid-template-columns: 52% 48%;
  padding-top: 70px;
}

.hero-l {
  position: relative; z-index: 2;
  background: var(--cream);
  display: flex; flex-direction: column; justify-content: center;
  padding: 6rem 5vw 5rem 8vw;
}

.hero-eyebrow {
  font-size: 0.7rem; font-weight: 400;
  letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--light); margin-bottom: 2rem;
  display: flex; align-items: center; gap: 1rem;
}
.hero-eyebrow::before {
  content: ''; display: inline-block;
  width: 22px; height: 1px; background: var(--green); flex-shrink: 0;
}

h1 { margin-bottom: 1.8rem; }

.hero-sub {
  font-size: 1.05rem; color: var(--mid);
  line-height: 1.85; max-width: 400px;
  margin-bottom: 2.8rem; font-weight: 300;
}

.btn-fill {
  display: inline-block;
  font-size: 0.8rem; font-weight: 400;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--cream2); background: var(--black);
  text-decoration: none; padding: 0.78rem 1.8rem;
  transition: background 0.2s;
}
.btn-fill:hover { background: var(--green); }

/* Hero right */
.hero-r {
  position: relative; overflow: hidden;
  background: var(--taupe);
}
.hero-see {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: 60% 45%;
  filter: saturate(0.72) brightness(1.0) contrast(0.97);
}
.hero-r::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 50%;
  background: linear-gradient(to top, rgba(232,228,222,0.85) 0%, transparent 100%);
  z-index: 1;
}
.hero-portrait {
  position: absolute; bottom: 0; right: 2vw;
  width: 54%; max-width: 280px;
  z-index: 2; display: block;
  filter: drop-shadow(-4px 0 28px rgba(14,14,14,0.12));
}
.hero-card {
  position: absolute; top: 2.5rem; left: 2rem; z-index: 3;
  background: rgba(247,245,241,0.9); backdrop-filter: blur(10px);
  padding: 1.1rem 1.4rem; border-left: 2px solid var(--green); max-width: 210px;
}
.hero-card strong { display: block; font-size: 0.92rem; font-weight: 500; color: var(--black); margin-bottom: 0.25rem; }
.hero-card p { font-size: 0.75rem; color: var(--mid); line-height: 1.55; font-weight: 300; }

/* ── STRIP ── */
.strip {
  background: var(--taupe); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 1.1rem 6vw; display: flex; gap: 3.5rem; overflow-x: auto;
}
.strip-item {
  font-size: 0.76rem; font-weight: 400; letter-spacing: 0.07em;
  color: var(--mid); white-space: nowrap; flex-shrink: 0;
  display: flex; align-items: center; gap: 0.65rem;
}
.sdot { width: 3px; height: 3px; border-radius: 50%; background: var(--green); flex-shrink: 0; }

/* ── SECTIONS ── */
.section { padding: 7rem 8vw; }

/* ── PROBLEM ── */
#problem { background: var(--cream2); }
.problem-layout { display: grid; grid-template-columns: 3fr 2fr; gap: 6rem; align-items: start; }
.symptoms { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--taupe2); margin-top: 2.5rem; }
.sym { background: var(--cream2); padding: 1.5rem 1.7rem; transition: background 0.22s; }
.sym:hover { background: var(--cream); }
.sym h4 { font-size: 0.92rem; margin-bottom: 0.4rem; }
.sym p { font-size: 0.84rem; line-height: 1.6; }
.pull-quote { padding: 2.4rem; background: var(--taupe); border-left: 2px solid var(--green); position: sticky; top: 110px; }
.pull-quote p { font-size: 1.2rem; font-weight: 300; color: var(--black); line-height: 1.55; margin-bottom: 1rem; }
.pull-quote cite { font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--light); font-style: normal; }

/* ── TWO PATHS ── */
.two-paths { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-top: 2rem; }
.path { padding: 0; }
.path-label {
  font-size: 0.66rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--light); font-weight: 400; margin-bottom: 0.6rem;
}
.path h4 { font-size: 1rem; font-weight: 500; color: var(--black); margin-bottom: 0; }
.path-new .path-label { color: var(--green); }

@media (max-width: 900px) { .two-paths { grid-template-columns: 1fr; } }

/* ── LEISTUNGEN ── */
#leistungen { background: var(--cream); }
.l-head { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: end; margin-bottom: 3rem; }
.intro-p { font-size: 0.98rem; color: var(--mid); line-height: 1.85; max-width: 520px; font-weight: 300; }
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--taupe2); }
.card { background: var(--cream2); padding: 2.6rem 2.2rem; transition: background 0.22s; }
.card:hover { background: var(--cream); }
.card-num { font-size: 3.2rem; font-weight: 300; color: var(--taupe2); line-height: 1; margin-bottom: 0.9rem; }
.card h3 { font-size: 1.35rem; margin-bottom: 0.25rem; }
.card-sub { font-size: 0.66rem; letter-spacing: 0.17em; text-transform: uppercase; color: var(--green); font-weight: 400; margin-bottom: 1.1rem; display: block; }
.card p { font-size: 0.88rem; line-height: 1.74; margin-bottom: 1.8rem; }
.card-result { font-size: 0.8rem; color: var(--black); font-weight: 400; padding-top: 1.1rem; border-top: 1px solid var(--border); }
.card-result::before { content: '→ '; color: var(--green); }

/* ── PROZESS ── */
#prozess { background: var(--taupe); }
.prozess-head { text-align: center; margin-bottom: 3.5rem; }
.phasen { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--stone); }
.phase { background: var(--cream); padding: 2.4rem 1.8rem; transition: background 0.22s; }
.phase:hover { background: var(--cream2); }
.phase-num { font-size: 2.8rem; font-weight: 300; color: var(--taupe2); line-height: 1; margin-bottom: 0.9rem; }
.phase-tag { font-size: 0.64rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--green); font-weight: 400; margin-bottom: 0.35rem; display: block; }
.phase h3 { font-size: 1.1rem; margin-bottom: 0.6rem; }
.phase p { font-size: 0.84rem; line-height: 1.62; }

/* ── USE CASE ── */
#usecase { background: var(--cream2); }
.uc-box { display: grid; grid-template-columns: 2fr 3fr; border: 1px solid var(--taupe2); }
.uc-l { background: var(--taupe); padding: 3.2rem 2.8rem; display: flex; flex-direction: column; justify-content: space-between; }
.uc-l h3 { font-weight: 400; font-size: 1.35rem; line-height: 1.3; }
.uc-meta { font-size: 0.73rem; color: var(--light); line-height: 1.65; border-top: 1px solid var(--stone); padding-top: 1.3rem; font-weight: 300; }
.uc-r { padding: 2.8rem 3.2rem; display: grid; grid-template-columns: 1fr 1fr; gap: 1.8rem; align-content: start; background: var(--cream2); }
.uc-b h4 { font-size: 0.66rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--green); margin-bottom: 0.5rem; font-weight: 400; }
.uc-b p { font-size: 0.86rem; line-height: 1.65; }
.uc-b.full { grid-column: 1/-1; }
.uc-result { grid-column: 1/-1; background: var(--taupe); padding: 1.4rem 1.7rem; font-size: 0.86rem; border-left: 2px solid var(--green); margin-top: 0.4rem; }

/* ── ÜBER — mit Timeline ── */
#ueber { background: var(--cream); }
.ueber-grid { display: grid; grid-template-columns: 1fr 1.8fr; gap: 5rem; align-items: start; }

.portrait-wrap { position: relative; }
.portrait-wrap::before {
  content: ''; position: absolute;
  top: -1rem; left: -1rem; right: 1rem; bottom: 1rem;
  border: 1px solid var(--stone); z-index: 0;
}
.portrait-wrap img.portrait {
  width: 100%; max-width: 320px; display: block;
  position: relative; z-index: 1;
  box-shadow: 6px 14px 40px rgba(14,14,14,0.07);
}
.see-sil { display: none; }

.ueber-txt h2 { margin-bottom: 0.6rem; }
.ueber-lead { font-size: 1.08rem; color: var(--mid); line-height: 1.85; margin-bottom: 2.5rem; font-weight: 300; }

/* Timeline */
.timeline { margin: 2.5rem 0; border-left: 1px solid var(--stone); padding-left: 2rem; display: flex; flex-direction: column; gap: 1.8rem; }
.tl-item { position: relative; }
.tl-item::before {
  content: ''; position: absolute;
  left: -2.38rem; top: 0.42rem;
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--cream); border: 1.5px solid var(--green);
}
.tl-year { font-size: 0.68rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--green); font-weight: 400; display: block; margin-bottom: 0.25rem; }
.tl-item h4 { font-size: 0.95rem; font-weight: 500; margin-bottom: 0.25rem; }
.tl-item p { font-size: 0.85rem; line-height: 1.62; }

.ueber-now { margin-top: 2rem; padding: 1.8rem 2rem; background: var(--taupe); border-left: 2px solid var(--green); }
.ueber-now p { font-size: 0.95rem; line-height: 1.8; color: var(--black); font-weight: 300; }

.chips { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 2rem; }
.chip { font-size: 0.7rem; font-weight: 400; letter-spacing: 0.05em; color: var(--mid); border: 1px solid var(--border); padding: 0.32rem 0.85rem; background: var(--cream2); }

/* ── FAQ ── */
#faq { background: var(--taupe); padding: 6rem 8vw; }
.faq-grid { display: grid; grid-template-columns: 1fr 2fr; gap: 5rem; align-items: start; }
.faq-list { display: flex; flex-direction: column; }
.fi { border-bottom: 1px solid var(--stone); }
.fi-q { font-size: 0.98rem; font-weight: 400; color: var(--black); padding: 1.3rem 0; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 1rem; transition: color 0.2s; user-select: none; line-height: 1.4; }
.fi-q:hover { color: var(--green); }
.fi-arrow { color: var(--green); font-size: 1.2rem; transition: transform 0.3s; flex-shrink: 0; line-height: 1; }
.fi.open .fi-arrow { transform: rotate(45deg); }
.fi-a { font-size: 0.88rem; color: var(--mid); line-height: 1.78; max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding-bottom 0.3s; font-weight: 300; }
.fi.open .fi-a { max-height: 300px; padding-bottom: 1.3rem; }

/* ── KONTAKT ── */
#kontakt { background: var(--cream2); padding: 7rem 8vw; }
.kontakt-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: start; }
.kontakt-txt h2 { margin-bottom: 1.2rem; }
.kontakt-txt p { font-size: 0.93rem; margin-bottom: 1rem; }
.kontakt-see { display: block; width: 100%; height: 160px; object-fit: cover; object-position: 60% 45%; filter: saturate(0.6) brightness(1.02); margin-top: 2.2rem; }
.cdetails { margin-top: 2rem; display: flex; flex-direction: column; gap: 0.65rem; }
.cd { font-size: 0.84rem; color: var(--mid); }
.cd a { color: var(--black); text-decoration: none; border-bottom: 1px solid var(--green); padding-bottom: 1px; transition: color 0.2s; }
.cd a:hover { color: var(--green); }

.fg { margin-bottom: 0.95rem; }
.fg label { display: block; font-size: 0.66rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--light); margin-bottom: 0.38rem; font-weight: 400; }
.fg input, .fg textarea, .fg select { width: 100%; background: var(--cream); border: 1px solid var(--taupe2); color: var(--black); padding: 0.78rem 1rem; font-family: 'Cormorant Garamond', serif; font-size: 1rem; font-weight: 300; outline: none; transition: border-color 0.2s; appearance: none; }
.fg input:focus, .fg textarea:focus, .fg select:focus { border-color: var(--green); }
.fg textarea { resize: vertical; min-height: 88px; }
.f-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.f-btn { width: 100%; background: var(--black); color: var(--cream2); border: none; padding: 0.95rem; font-family: 'Cormorant Garamond', serif; font-size: 0.86rem; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 400; cursor: pointer; transition: background 0.2s; margin-top: 0.4rem; }
.f-btn:hover { background: var(--green); }
.f-note { font-size: 0.7rem; color: var(--light); margin-top: 0.7rem; line-height: 1.6; font-weight: 300; }

/* ── FOOTER ── */
footer { background: var(--taupe); border-top: 1px solid var(--border); padding: 1.8rem 6vw; display: flex; justify-content: space-between; align-items: center; }
footer p { font-size: 0.7rem; color: var(--light); letter-spacing: 0.05em; font-weight: 300; }
.f-links { display: flex; gap: 2rem; }
.f-links a { font-size: 0.7rem; color: var(--light); text-decoration: none; transition: color 0.2s; }
.f-links a:hover { color: var(--black); }

/* ── REVEAL ── */
.r  { opacity: 0; transform: translateY(22px); transition: opacity 0.72s ease, transform 0.72s ease; }
.r2 { transition-delay: 0.13s; }
.r3 { transition-delay: 0.26s; }
.r.v { opacity: 1; transform: translateY(0); }

/* ── MOBILE ── */
@media (max-width: 900px) {
  nav ul { display: none; }
  #hero { grid-template-columns: 1fr; }
  .hero-l { padding: 5rem 6vw 3rem; }
  .hero-r { min-height: 68vw; }
  .hero-portrait { width: 55%; }
  .portraits-col { grid-template-columns: 1fr; }
  .portrait-wrap.secondary { margin-top: 0; }
  .problem-layout, .l-head, .ueber-grid, .kontakt-grid, .faq-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .symptoms, .f-row { grid-template-columns: 1fr; }
  .cards, .phasen { grid-template-columns: 1fr; }
  .uc-box { grid-template-columns: 1fr; }
  .uc-r { grid-template-columns: 1fr; }
  footer { flex-direction: column; gap: 1rem; text-align: center; }
  .section { padding: 5rem 6vw; }
  #faq, #kontakt { padding: 5rem 6vw; }
}
/* ── BETRIEBSSYSTEM ── */
#system { background: var(--cream2); }
.kette {
  margin: 3.2rem 0 3.4rem; padding: 2.8rem 0;
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.kette p {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.35rem, 2.9vw, 2.05rem);
  font-weight: 300; color: var(--black);
  line-height: 1.42; margin: 0;
}
.kette p + p { margin-top: 0.25rem; }
.kette p:last-of-type { color: var(--green-dk); }
.kette-note {
  display: block; margin-top: 1.4rem;
  font-size: 0.78rem; letter-spacing: 0.1em;
  color: var(--light); font-weight: 300;
}
.gegen { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--taupe2); }
.gegen-col { background: var(--cream2); padding: 2.4rem 2.2rem; }
.gegen-col.hl { background: var(--cream); }
.gegen-tag {
  font-size: 0.66rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--light); font-weight: 400; display: block; margin-bottom: 0.7rem;
}
.gegen-col.hl .gegen-tag { color: var(--green); }
.gegen-col h3 { font-size: 1.22rem; margin-bottom: 0.9rem; font-weight: 400; }
.gegen-col p { font-size: 0.88rem; line-height: 1.78; color: var(--mid); }
.system-close {
  margin-top: 2.6rem; max-width: 780px;
  font-size: 0.98rem; line-height: 1.85; color: var(--mid); font-weight: 300;
}

/* ── KONTROLLE / GOVERNANCE ── */
.gov { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2.6rem 3.2rem; margin-top: 3rem; }
.gov-item { padding-top: 1.3rem; border-top: 1px solid var(--green); }
.gov-item h3 { font-size: 1.12rem; font-weight: 400; margin-bottom: 0.7rem; }
.gov-item p { font-size: 0.88rem; line-height: 1.78; color: var(--mid); }

@media (max-width: 860px) {
  .gegen { grid-template-columns: 1fr; }
  .gov { grid-template-columns: 1fr; gap: 2rem; }
  .kette p { font-size: 1.25rem; }
}

/* ── QUERVERWEISE ── */
.more {
  display: inline-block; margin-top: 0.9rem;
  font-size: 0.86rem; color: var(--green-dk); text-decoration: none;
  border-bottom: 1px solid var(--taupe2); padding-bottom: 2px;
  transition: border-color 0.2s;
}
.more::after { content: ' →'; }
.more:hover { border-color: var(--green); }

/* ── UNTERSEITEN ── */
.sub-hero { padding: 9rem 8vw 3.5rem; background: var(--cream2); border-bottom: 1px solid var(--border); }
.sub-hero h1 { font-size: clamp(2.1rem, 5vw, 3.4rem); font-weight: 300; line-height: 1.12; margin-bottom: 1.4rem; }
.sub-lead { font-size: 1.05rem; line-height: 1.82; color: var(--mid); max-width: 680px; font-weight: 300; }
.prose { max-width: 720px; }
.prose h2 { font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 300; margin: 3.2rem 0 1.1rem; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { font-size: 1.15rem; font-weight: 400; margin: 2.1rem 0 0.6rem; }
.prose p { font-size: 0.95rem; line-height: 1.85; color: var(--mid); margin-bottom: 1.1rem; font-weight: 300; }
.prose ul { margin: 0 0 1.4rem 1.1rem; }
.prose li { font-size: 0.95rem; line-height: 1.8; color: var(--mid); margin-bottom: 0.55rem; font-weight: 300; }
.prose strong { color: var(--black); font-weight: 500; }
.merksatz {
  margin: 2.4rem 0; padding: 1.8rem 0;
  border-top: 1px solid var(--green); border-bottom: 1px solid var(--border);
}
.merksatz p {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.2rem, 2.4vw, 1.65rem); font-weight: 300;
  color: var(--black); line-height: 1.45; margin: 0;
}
.sub-cta { margin-top: 3.5rem; padding-top: 2rem; border-top: 1px solid var(--border); }


/* ────────────────────────────────────────────────
   TYPOGRAFIE
   Fliesstext: Avenir (System) — Fallback Nunito Sans
   Cormorant Garamond nur noch zum Absetzen
   --sans-size regelt die Groesse des Fliesstextes:
   kleiner = 0.92, groesser = 1.00
   ──────────────────────────────────────────────── */
:root {
  --sans: 'Avenir Next', 'Avenir', 'Nunito Sans', -apple-system, 'Segoe UI', Helvetica, sans-serif;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans-size: 0.97;
}

body, p, li, td, th, span, div, a, label,
input, textarea, select, button,
.label, .chip, .card-sub, .card-result, .phase-tag, .gegen-tag,
.hero-eyebrow, .hero-sub, .hero-card, .intro-p, .uc-meta, .uc-result,
.fi-q, .fi-a, .f-note, .f-btn, .sub-lead, .kette-note, .more,
nav a, footer, .tl-year {
  font-family: var(--sans);
  font-size: calc(1em * var(--sans-size));
}
body { font-size: calc(1rem * var(--sans-size)); letter-spacing: 0.002em; }

/* Verschachtelung neutralisieren — sonst schrumpft Text mehrfach */
body p, body li, body span, body div, body a, body label,
body input, body textarea, body select, body button { font-size: inherit; }

/* Absetzen bleibt Garamond — in Originalgroesse */
h1, h2, h3, h4,
.kette p, .merksatz p, .pull-quote,
.card-num, .phase-num, .hero-card strong {
  font-family: var(--serif);
  font-size: revert;
}
.kette p, .merksatz p { font-size: clamp(1.3rem, 2.8vw, 1.95rem); }
.kette p + p { margin-top: 0.25rem; }
.card-num { font-size: 3.2rem; }
.phase-num { font-size: revert; }

/* Sans braucht etwas mehr Zeilenluft und weniger Gewicht */
.prose p, .prose li, .card p, .gegen-col p, .gov-item p,
.fi-a, .intro-p, .sub-lead, .system-close { line-height: 1.75; font-weight: 300; }
.label, .card-sub, .gegen-tag, .phase-tag, .hero-eyebrow { font-weight: 600; }
.f-btn { font-weight: 600; letter-spacing: 0.12em; }


/* ── KARTEN: Ergebniszeile bündig am unteren Rand ── */
.cards { align-items: stretch; }
.card { display: flex; flex-direction: column; }
.card p { margin-bottom: 1.8rem; }
.card-result { margin-top: auto; }

/* dasselbe für die Bot/Agent-Gegenüberstellung */
.gegen { align-items: stretch; }
.gegen-col { display: flex; flex-direction: column; }

/* Logo klickbar */
nav#mainnav > a { display: inline-flex; align-items: center; text-decoration: none; }

/* ────────────────────────────────────────────────
   LESBARKEIT — Fliesstext durchgehend schwarz
   ──────────────────────────────────────────────── */
:root { --sans-size: 1.0; }

body, p, li, .intro-p, .sub-lead, .system-close,
.card p, .gegen-col p, .gov-item p, .prose p, .prose li,
.fi-a, .hero-sub, .uc-block p, .phase p, .tl-text {
  color: var(--black);
}
.hero-sub { color: var(--black); font-weight: 300; }
.prose p, .prose li, .card p, .gegen-col p, .gov-item p,
.fi-a, .intro-p, .sub-lead, .system-close { font-weight: 300; }

/* Sekundaeres nur leicht zurueckgenommen — bleibt lesbar */
.uc-meta, .f-note, .kette-note, .hero-card p { color: var(--light); }
.hero-card strong { color: var(--black); }

/* ── HERO: Headline einzeilig ── */
.hero h1 {
  font-size: clamp(1.8rem, 3.5vw, 3.1rem);
  line-height: 1.1;
  white-space: nowrap;
}
@media (max-width: 900px) {
  .hero h1 { white-space: normal; font-size: clamp(2rem, 8vw, 3rem); }
}

/* ── ZITAT statt Headline ── */
.kette, .merksatz { border-left: 2px solid var(--green); border-top: none; border-bottom: none;
  padding: 0.4rem 0 0.4rem 1.8rem; margin: 3rem 0; }
.kette p, .merksatz p {
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.15rem, 2.1vw, 1.55rem);
  line-height: 1.5;
  color: var(--black);
}
.kette-note { margin-top: 1rem; font-style: normal; }

/* ── FOOTER lesbar ── */
footer p, footer a, footer .f-links a { color: var(--black); }
footer a:hover { color: var(--green-dk); }

/* ── AKTIVER MENUEPUNKT ── */
nav#mainnav a.aktiv,
nav#mainnav a.aktiv:hover { color: var(--green-dk); font-weight: 600; }
nav#mainnav a { transition: color 0.18s ease; }
nav#mainnav a:hover { color: var(--green-dk); }


/* ── LESBARKEIT: alles Textliche auf Schwarz ── */
p, li, td, th, .intro-p, .sub-lead, .system-close, .fi-a, .fi-q,
.card p, .gegen-col p, .gov-item p, .phase p, .prose p, .prose li,
.uc-block p, .hero-sub, .tl-text, footer p, footer a,
.card-result, .uc-result, label, input, textarea, select {
  color: var(--black);
}
.card-sub, .gegen-tag, .phase-tag { color: var(--green-dk); }
input::placeholder, textarea::placeholder { color: #6B6764; }
