/* =========================================================
   Zukunft für Nidderau – Phil Studebaker
   Selbst gehostete Schriften, keine externen Aufrufe.
   ========================================================= */

@font-face { font-family: Inter; font-style: normal; font-weight: 400; font-display: swap; src: url(fonts/inter-400.woff2) format("woff2"); }
@font-face { font-family: Inter; font-style: normal; font-weight: 500; font-display: swap; src: url(fonts/inter-500.woff2) format("woff2"); }
@font-face { font-family: Inter; font-style: normal; font-weight: 600; font-display: swap; src: url(fonts/inter-600.woff2) format("woff2"); }
@font-face { font-family: Inter; font-style: normal; font-weight: 700; font-display: swap; src: url(fonts/inter-700.woff2) format("woff2"); }
@font-face { font-family: Montserrat; font-style: normal; font-weight: 600; font-display: swap; src: url(fonts/montserrat-600.woff2) format("woff2"); }
@font-face { font-family: Montserrat; font-style: normal; font-weight: 700; font-display: swap; src: url(fonts/montserrat-700.woff2) format("woff2"); }
@font-face { font-family: Montserrat; font-style: normal; font-weight: 800; font-display: swap; src: url(fonts/montserrat-800.woff2) format("woff2"); }

:root {
  --navy:   #0C2D3C;
  --blue:   #0057B8;
  --blue-d: #00448F;
  --green:  #5C9B57;
  --green-d:#3F7A3B;
  --orange: #E79A24;
  --cream:  #F7F5F0;
  --white:  #FFFFFF;
  --text:   #202A30;
  --body:   #4A575F;
  --muted:  #66727A;
  --line:   rgba(12, 45, 60, .12);
  --line-2: rgba(12, 45, 60, .07);
  --red:    #C92C3A;
  --wrap:   1180px;
  --r:      18px;
  --r-lg:   24px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 88px; }
body {
  margin: 0; color: var(--text); background: var(--white);
  font-family: Inter, system-ui, -apple-system, Segoe UI, Arial, sans-serif;
  font-size: 17px; line-height: 1.65; -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--blue); }

h1, h2, h3, h4 { font-family: Montserrat, Inter, system-ui, sans-serif; line-height: 1.12; margin: 0; letter-spacing: -.012em; }
h1 { font-size: clamp(2.6rem, 6vw, 4.6rem); font-weight: 800; }
h2 { font-size: clamp(1.9rem, 3.6vw, 3.1rem); font-weight: 800; }
h3 { font-size: clamp(1.15rem, 1.7vw, 1.45rem); font-weight: 700; }
p  { margin: 0 0 18px; color: var(--body); }
p:last-child { margin-bottom: 0; }
ul { margin: 0; padding: 0; }

section { padding: 96px 0; }
.container { width: min(var(--wrap), calc(100% - 40px)); margin-inline: auto; }
.narrow { max-width: 860px; }
.mid { max-width: 980px; }

.eyebrow {
  display: flex; align-items: center; gap: 12px;
  margin: 0 0 16px; color: var(--orange);
  text-transform: uppercase; letter-spacing: .15em; font-weight: 700; font-size: .74rem;
  font-family: Montserrat, Inter, sans-serif;
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: currentColor; flex: 0 0 auto; }
.eyebrow--c { justify-content: center; }
.lead { font-size: clamp(1.12rem, 1.6vw, 1.3rem); color: var(--body); line-height: 1.6; }
.section-intro { font-size: clamp(1.05rem, 1.4vw, 1.2rem); max-width: 66ch; margin-bottom: 0; }
.shead { margin-bottom: 48px; }
.shead h2 + .section-intro { margin-top: 20px; }

/* ---------- Sprungmarke, Kopfzeile ---------- */
.skip {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--navy); color: #fff; padding: 12px 20px; border-radius: 0 0 12px 0;
}
.skip:focus { left: 0; }
:focus-visible { outline: 3px solid var(--orange); outline-offset: 3px; border-radius: 4px; }

/* Wichtig: backdrop-filter darf NICHT auf .hdr selbst stehen. Ein Element mit
   backdrop-filter wird zum Bezugsrahmen fuer alle position:fixed-Kinder. Das
   mobile Menue (.nav) ist so ein Kind und war dadurch nur so hoch wie die
   Kopfzeile. Die Milchglas-Flaeche liegt deshalb in einem eigenen Pseudo-
   Element hinter dem Inhalt. */
.hdr {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  transition: box-shadow .25s ease, border-color .25s ease;
  border-bottom: 1px solid transparent;
}
.hdr::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: rgba(255,255,255,.94); backdrop-filter: blur(10px);
  opacity: 0; transition: opacity .25s ease;
}
.hdr[data-solid="true"]::before { opacity: 1; }
.hdr[data-solid="true"] { border-bottom-color: var(--line-2); }
.hdr__in { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 16px 0; }
.brand { display: block; text-decoration: none; line-height: 1.2; }
.brand b { display: block; font-family: Montserrat, sans-serif; font-weight: 800; font-size: 1.06rem; color: var(--navy); }
.brand span { display: block; font-size: .69rem; letter-spacing: .13em; text-transform: uppercase; color: var(--muted); font-weight: 600; }

.nav { display: flex; align-items: center; gap: 4px; }
.nav a:not(.btn) {
  display: flex; align-items: center; min-height: 44px;
  padding: 9px 13px; border-radius: 999px; text-decoration: none;
  font-size: .93rem; font-weight: 600; color: var(--text); white-space: nowrap;
}
.nav a:not(.btn):hover { background: rgba(12,45,60,.06); }
.nav a:not(.btn)[aria-current="true"] { color: var(--blue); }
.nav .btn { margin-left: 8px; min-height: 44px; }
.navtoggle { display: none; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px; justify-content: center;
  padding: 14px 26px; border-radius: 999px; text-decoration: none;
  font-weight: 700; font-size: .97rem; border: 2px solid transparent;
  transition: transform .18s ease, background .18s ease, color .18s ease;
  font-family: Inter, sans-serif; cursor: pointer;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary { background: var(--blue); color: #fff; border-color: var(--blue); }
.btn--primary:hover { background: var(--blue-d); border-color: var(--blue-d); }
.btn--secondary { border-color: var(--blue); color: var(--blue); background: transparent; }
.btn--secondary:hover { background: rgba(0,87,184,.07); }
.btn--light { background: #fff; color: var(--navy); border-color: #fff; }
.btn--outline-light { border-color: rgba(255,255,255,.5); color: #fff; }
.btn--outline-light:hover { background: rgba(255,255,255,.1); }
.btn--orange { background: var(--orange); color: #211502; border-color: var(--orange); }
.buttons { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }

/* ---------- Hero ---------- */
.hero { background: var(--cream); padding: 138px 0 84px; }
.hero__grid { display: grid; grid-template-columns: 1.04fr .96fr; gap: clamp(36px, 5vw, 72px); align-items: center; }
.hero h1 { color: var(--navy); }
.hero__sub {
  font-family: Montserrat, sans-serif; font-weight: 700;
  font-size: clamp(1.15rem, 2vw, 1.6rem); line-height: 1.3; color: var(--green-d);
  margin: 22px 0 0;
}
.hero__who { margin-top: 30px; padding-top: 24px; border-top: 1px solid var(--line); }
.hero__who b { display: block; font-family: Montserrat, sans-serif; font-weight: 800; font-size: 1.3rem; color: var(--navy); }
.hero__who span { display: block; color: var(--body); font-size: 1rem; }
.hero__claim {
  margin-top: 16px; display: flex; flex-wrap: wrap; gap: 8px 18px;
  font-size: .93rem; font-weight: 700; color: var(--navy);
}
.hero__claim i { font-style: normal; display: inline-flex; align-items: center; gap: 8px; }
.hero__claim i::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--orange); }
.hero__img { position: relative; }
.hero__img img { width: 100%; height: min(600px, 66vh); border-radius: var(--r-lg); object-fit: cover; object-position: center 32%; }
.hero__tag {
  position: absolute; left: -14px; bottom: 26px; background: var(--white);
  border-radius: 14px; padding: 14px 20px; box-shadow: 0 12px 34px rgba(12,45,60,.14);
  font-weight: 700; font-size: .9rem; color: var(--navy); max-width: 78%;
}
.hero__tag small { display: block; font-weight: 600; color: var(--muted); font-size: .78rem; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 3px; }

/* ---------- Zweispalter ---------- */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 5vw, 70px); align-items: center; }
.two-col img { border-radius: var(--r-lg); width: 100%; }
figure { margin: 0; }
.figcap { margin-top: 12px; font-size: .88rem; color: var(--muted); font-style: italic; }

.personal { background: var(--white); }
.personal h2 { color: var(--navy); }
.personal .accent { font-family: Montserrat, sans-serif; font-weight: 700; color: var(--navy); font-size: 1.12rem; }

/* ---------- Warum ich kandidiere ---------- */
.why { background: var(--cream); }
.why blockquote {
  margin: 30px 0; padding: 30px 34px; background: var(--white);
  border-left: 5px solid var(--orange); border-radius: 0 var(--r) var(--r) 0;
  font-family: Montserrat, sans-serif; font-weight: 600;
  font-size: clamp(1.1rem, 1.9vw, 1.42rem); line-height: 1.45; color: var(--navy);
}
.why h2 { color: var(--navy); }
.why .ask { margin-top: 26px; font-weight: 700; font-size: 1.06rem; line-height: 1.55; color: var(--navy); }
.why .highlight {
  margin-top: 26px; font-family: Montserrat, sans-serif; font-weight: 800;
  font-size: clamp(1.2rem, 2.2vw, 1.7rem); color: var(--green-d); line-height: 1.3;
}

/* ---------- Alltag ---------- */
.everyday { background: var(--white); }
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.card-grid--4 { grid-template-columns: repeat(4, 1fr); gap: 20px; }
.card-grid--4 .card { padding: 26px 24px; }
.card-grid--4 .card h3 { font-size: 1.1rem; align-items: flex-start; }
.card-grid--4 .card .ic { margin-top: 1px; }
.card-grid--4 .card p { font-size: 1rem; }
.card {
  background: var(--white); border: 1px solid var(--line-2); border-radius: var(--r);
  padding: 30px; transition: border-color .2s ease, transform .2s ease;
}
.card:hover { border-color: var(--line); transform: translateY(-3px); }
.card h3 { color: var(--navy); margin-bottom: 10px; display: flex; align-items: center; gap: 12px; }
.card p { font-size: 1.02rem; margin: 0; }
.card .ic { width: 34px; height: 34px; flex: 0 0 auto; border-radius: 10px; background: rgba(0,87,184,.09); display: grid; place-items: center; }
.card .ic svg { width: 19px; height: 19px; }
.statement {
  margin-top: 34px; padding: 38px clamp(26px, 4vw, 48px); background: var(--navy); color: #fff;
  border-radius: var(--r-lg); font-family: Montserrat, sans-serif; font-weight: 700;
  font-size: clamp(1.2rem, 2.3vw, 1.75rem); line-height: 1.35;
}

/* ---------- Prioritäten ---------- */
.priorities { background: var(--cream); }
.priority-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.priority {
  background: var(--white); border: 1px solid var(--line-2); border-radius: var(--r);
  padding: 34px 30px 30px; border-top: 5px solid var(--c); display: flex; flex-direction: column;
}
.priority .num { font-family: Montserrat, sans-serif; font-weight: 800; font-size: 1.9rem; color: var(--c); line-height: 1; margin-bottom: 14px; }
.priority h3 { color: var(--navy); margin-bottom: 8px; }
.priority .psub { font-weight: 600; color: var(--c); font-size: .98rem; margin-bottom: 18px; }
.priority ul { list-style: none; display: grid; gap: 10px; margin-bottom: 24px; }
.priority li { position: relative; padding-left: 26px; font-size: 1rem; line-height: 1.5; color: var(--body); }
.priority li::before {
  content: ""; position: absolute; left: 0; top: 7px; width: 13px; height: 7px;
  border-left: 2.4px solid var(--c); border-bottom: 2.4px solid var(--c); transform: rotate(-45deg);
}
.priority .more { margin-top: auto; font-weight: 700; text-decoration: none; color: var(--c); font-size: .95rem; display: inline-flex; align-items: center; gap: 7px; }
.priority .more:hover { text-decoration: underline; }

/* ---------- Stimmen ---------- */
.voices { background: var(--white); }
.voice-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.voice {
  background: var(--cream); border-radius: var(--r); padding: 32px 30px; margin: 0;
  display: flex; flex-direction: column;
}
.voice .q { font-family: Montserrat, sans-serif; font-weight: 800; font-size: 2.4rem; color: var(--orange); line-height: .8; margin-bottom: 12px; }
.voice blockquote { margin: 0 0 22px; font-size: 1.05rem; line-height: 1.55; color: var(--text); }
.voice figcaption { display: flex; align-items: center; gap: 14px; margin-top: auto; }
.voice img { width: 54px; height: 54px; border-radius: 50%; object-fit: cover; object-position: center 22%; flex: 0 0 auto; }
.voice b { display: block; font-weight: 700; color: var(--navy); font-size: .98rem; }
.voice em { display: block; font-style: normal; color: var(--muted); font-size: .87rem; }
.disclose {
  margin-top: 30px; padding: 20px 24px; background: var(--cream);
  border-left: 4px solid var(--blue); border-radius: 0 var(--r) var(--r) 0;
  font-size: 1rem; line-height: 1.6; color: var(--body);
}
.center-cta { margin-top: 34px; display: flex; justify-content: center; }

/* ---------- Verantwortung ---------- */
.responsibility { background: var(--navy); color: #fff; }
.responsibility h2 { color: #fff; }
.responsibility p { color: #C6D5DD; font-size: clamp(1.05rem, 1.5vw, 1.2rem); }
.responsibility p.bigpromise {
  font-family: Montserrat, sans-serif; font-weight: 800;
  font-size: clamp(1.2rem, 2.3vw, 1.85rem); line-height: 1.3; color: #fff;
  max-width: 30ch; margin-bottom: 46px;
  padding-left: 20px; border-left: 4px solid var(--orange);
}
.pl-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.pl {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--r); padding: 28px 26px 26px; display: flex; flex-direction: column;
}
.responsibility .pl p.pl__n {
  font-family: Montserrat, sans-serif; font-weight: 800; font-size: .72rem;
  letter-spacing: .13em; text-transform: uppercase; color: var(--orange); margin-bottom: 10px;
}
.pl h3 { color: #fff; font-size: 1.16rem; margin-bottom: 12px; }
.responsibility .pl p.pl__how { color: #C6D5DD; font-size: 1.02rem; margin-bottom: 20px; }
.responsibility .pl p.pl__you {
  margin: auto 0 0; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.16);
  color: #fff; font-weight: 700; font-size: 1.02rem; line-height: 1.45;
}
.responsibility .pl p.pl__you span {
  display: block; font-family: Montserrat, sans-serif; font-weight: 700; font-size: .68rem;
  letter-spacing: .13em; text-transform: uppercase; color: var(--orange);
  margin-bottom: 8px;
}
.responsibility p.honest {
  margin-top: 34px; max-width: 74ch; color: #B9CBD5; font-size: 1.02rem;
}
.responsibility p.measure {
  margin-top: 42px; font-family: Montserrat, sans-serif; font-weight: 800;
  font-size: clamp(1.5rem, 3vw, 2.4rem); color: var(--orange); line-height: 1.2;
}

/* ---------- Wer ich bin ---------- */
.about { background: var(--cream); }
.about h2 { color: var(--navy); }
.perspectives { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.persp { background: var(--white); border-radius: var(--r); padding: 28px 26px; border: 1px solid var(--line-2); }
.persp .ic { width: 42px; height: 42px; border-radius: 12px; background: rgba(92,155,87,.14); display: grid; place-items: center; margin-bottom: 16px; }
.persp .ic svg { width: 22px; height: 22px; }
.persp h3 { font-size: 1.1rem; color: var(--navy); margin-bottom: 8px; }
.persp p { font-size: 1rem; margin: 0; }
.vita { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px 30px; margin-top: 34px; padding-top: 32px; border-top: 1px solid var(--line); }
.vita div p { margin: 0; font-size: 1rem; }
.vita .y { font-family: Montserrat, sans-serif; font-weight: 700; font-size: .74rem; letter-spacing: .12em; text-transform: uppercase; color: var(--blue); margin-bottom: 7px; }
.nominierung {
  margin-top: 30px; padding-top: 22px; border-top: 1px solid var(--line);
  font-family: Montserrat, sans-serif; font-weight: 700; font-size: 1.02rem; color: var(--navy);
}

/* ---------- Finanzen ---------- */
.finance { background: var(--white); }
.finance h2 { color: var(--navy); }
.finance .bridge {
  margin-top: 24px; max-width: 72ch; padding: 22px 26px; background: var(--cream);
  border-left: 4px solid var(--navy); border-radius: 0 var(--r) var(--r) 0;
  font-size: 1.02rem; color: var(--text);
}
.finance .sub { font-family: Montserrat, sans-serif; font-weight: 700; font-size: clamp(1.15rem, 1.9vw, 1.5rem); color: var(--green-d); margin: 14px 0 20px; }
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 44px; }
.stat { background: var(--cream); border-radius: var(--r); padding: 30px 28px; }
.stat .k { font-family: Montserrat, sans-serif; font-weight: 700; font-size: .74rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin-bottom: 12px; }
.stat .n { font-family: Montserrat, sans-serif; font-weight: 800; font-size: clamp(1.7rem, 3vw, 2.35rem); color: var(--navy); line-height: 1.05; margin-bottom: 6px; }
.stat .u { font-weight: 700; color: var(--navy); font-size: 1rem; margin-bottom: 12px; }
.stat p { font-size: .95rem; margin: 0; }
.stat .src { display: block; margin-top: 12px; font-size: .82rem; font-style: italic; color: var(--muted); }
.stat .src a { color: var(--muted); }
.plan-box {
  margin-top: 26px; background: var(--cream); border-radius: var(--r-lg);
  padding: clamp(28px, 3.6vw, 44px);
}
.plan-box h3 { color: var(--navy); margin-bottom: 14px; }
.plan-scroll { overflow-x: auto; margin-top: 22px; }
.plan-tbl { border-collapse: collapse; width: 100%; min-width: 780px; background: #fff; font-size: 1rem; }
.plan-tbl th, .plan-tbl td { text-align: left; vertical-align: top; padding: 15px 17px; border-bottom: 1px solid var(--line-2); line-height: 1.5; color: var(--body); }
.plan-tbl thead th { font-family: Montserrat, sans-serif; font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; color: #fff; background: var(--navy); border-bottom: none; }
.plan-tbl tbody th { font-weight: 700; color: var(--text); width: 22%; }
.plan-tbl tbody tr:last-child th, .plan-tbl tbody tr:last-child td { border-bottom: none; }
.note {
  margin-top: 26px; background: var(--white); border: 1px solid var(--line-2);
  border-radius: var(--r); padding: clamp(26px, 3vw, 38px);
}
.note h3 { color: var(--navy); margin-bottom: 12px; }
.note .big {
  font-family: Montserrat, sans-serif; font-weight: 800;
  font-size: clamp(1.2rem, 2.2vw, 1.65rem); line-height: 1.28; color: var(--green-d);
  margin: 18px 0; max-width: 26ch;
}
.note .zusage { font-weight: 700; color: var(--text); }
.finance .src-all { margin-top: 24px; font-size: .87rem; font-style: italic; color: var(--muted); }

/* ---------- Themen ---------- */
.topics { background: var(--cream); }
.topic-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.topic { background: var(--white); border-radius: var(--r); overflow: hidden; border: 1px solid var(--line-2); display: flex; flex-direction: column; }
.topic__img { aspect-ratio: 16 / 10; overflow: hidden; }
.topic__img img { width: 100%; height: 100%; object-fit: cover; object-position: center 28%; }
.topic__body { padding: 26px 28px 30px; }
.topic .tag { font-family: Montserrat, sans-serif; font-weight: 700; font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: var(--orange); margin-bottom: 10px; }
.topic h3 { color: var(--navy); margin-bottom: 10px; font-size: 1.18rem; }
.topic p { font-size: 1.02rem; margin: 0; }

/* ---------- Was gut ist, bewahren ---------- */
.preserve { background: var(--cream); }
.preserve h2 { color: var(--navy); }
.band5 {
  display: grid; grid-template-columns: .82fr 1.18fr; gap: clamp(28px, 4vw, 52px);
  align-items: center; margin-top: clamp(30px, 4vw, 48px);
  background: var(--white); border: 1px solid var(--line-2); border-radius: var(--r-lg);
  padding: clamp(24px, 3vw, 38px);
}
.band5 img { border-radius: var(--r); width: 100%; }
.band5__k {
  font-family: Montserrat, sans-serif; font-weight: 800;
  font-size: clamp(1.35rem, 2.6vw, 2.1rem); line-height: 1.18; color: var(--green-d);
  margin-bottom: 14px;
}
.band5 p { font-size: 1.04rem; }

/* ---------- Wie ich mit Geld umgehe ---------- */
.method {
  margin-top: 26px; background: var(--cream); border-radius: var(--r-lg);
  padding: clamp(26px, 3.4vw, 42px);
}
.method h3 { color: var(--navy); margin-bottom: 20px; }
.method ul { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 16px 40px; }
.method li { position: relative; padding-left: 28px; font-size: 1rem; line-height: 1.55; color: var(--body); }
.method li::before {
  content: ""; position: absolute; left: 0; top: 7px; width: 13px; height: 7px;
  border-left: 2.4px solid var(--green); border-bottom: 2.4px solid var(--green); transform: rotate(-45deg);
}
.method b { color: var(--text); font-weight: 700; }

/* ---------- Hero-Ergänzungen ---------- */
.hero__role { font-size: 1.16rem; color: var(--body); margin: 10px 0 0; font-weight: 600; }
.hero__txt { margin-top: 22px; max-width: 52ch; font-size: 1.05rem; }
.hero__orte {
  margin-top: 26px; padding-top: 20px; border-top: 1px solid var(--line);
  font-family: Montserrat, sans-serif; font-weight: 700; font-size: .85rem;
  letter-spacing: .04em; color: var(--navy);
}
.hero__orte span { color: var(--orange); margin: 0 4px; }

/* ---------- Vier Fakten und Parteizeile ---------- */
.facts4 { list-style: none; margin: 26px 0 0; display: grid; gap: 10px; }
.facts4 li {
  position: relative; padding-left: 26px; font-weight: 600; font-size: 1.02rem; color: var(--text);
}
.facts4 li::before {
  content: ""; position: absolute; left: 0; top: 8px; width: 13px; height: 7px;
  border-left: 2.4px solid var(--green); border-bottom: 2.4px solid var(--green); transform: rotate(-45deg);
}
.parteibox {
  margin-top: 28px; padding: 20px 24px; background: var(--cream);
  border-left: 4px solid var(--blue); border-radius: 0 var(--r) var(--r) 0;
  font-size: 1rem; line-height: 1.6;
}

/* ---------- Finanzkennzahlen ---------- */
.finrow { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.finrow--single { grid-template-columns: 1fr; margin-top: 26px; }
.fig { background: var(--cream); border-radius: var(--r); padding: 24px 24px 26px; }
.fig--wide { padding: clamp(26px, 3vw, 36px); }
.fig__tag {
  display: inline-block; font-family: Montserrat, sans-serif; font-weight: 700;
  font-size: .66rem; letter-spacing: .12em; text-transform: uppercase;
  padding: 5px 11px; border-radius: 999px; margin-bottom: 14px;
}
.fig__tag--ist  { background: rgba(63,122,59,.14);  color: var(--green-d); }
.fig__tag--zwi  { background: rgba(231,154,36,.20); color: #8A5B00; }
.fig__tag--plan { background: rgba(0,87,184,.12);   color: var(--blue-d); }
.fig__k { font-weight: 700; color: var(--navy); font-size: .95rem; margin-bottom: 6px; }
.fig__n {
  font-family: Montserrat, sans-serif; font-weight: 800;
  font-size: clamp(1.5rem, 2.6vw, 2.1rem); line-height: 1.06; color: var(--navy); margin-bottom: 8px;
}
.fig--wide .fig__n { font-size: clamp(1.9rem, 3.4vw, 2.8rem); }
.fig__u { font-size: 1rem; margin: 0; }
.fig__t { margin-top: 14px; font-size: 1rem; max-width: 70ch; }

/* ---------- Umsetzung ---------- */
.plans { background: var(--cream); }
.plans h2 { color: var(--navy); }
.plan-cards { display: none; }
.pcard {
  background: #fff; border: 1px solid var(--line-2); border-radius: var(--r);
  padding: 24px 24px 26px; margin-bottom: 16px;
}
.pcard h3 { color: var(--navy); margin-bottom: 14px; font-size: 1.14rem; }
.pcard p { font-size: 1rem; margin: 0 0 12px; }
.pcard p:last-child { margin-bottom: 0; }
.pcard b {
  display: block; font-family: Montserrat, sans-serif; font-weight: 700; font-size: .68rem;
  letter-spacing: .12em; text-transform: uppercase; color: var(--orange); margin-bottom: 3px;
}

/* ---------- Stadtteil-Reiter ---------- */
.tabs { margin-top: 24px; }
.tabs__bar { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; }
.tab {
  font-family: Inter, sans-serif; font-weight: 600; font-size: 1rem;
  padding: 12px 22px; min-height: 44px; border-radius: 999px; cursor: pointer;
  background: var(--white); border: 1px solid var(--line); color: var(--navy);
  transition: background .18s ease, border-color .18s ease, color .18s ease;
}
.tab:hover { border-color: var(--blue); }
.tab[aria-selected="true"] { background: var(--blue); border-color: var(--blue); color: #fff; }
.tabs__panel { background: var(--white); border: 1px solid var(--line-2); border-radius: var(--r); padding: 24px 26px; }
.tabs__empty { margin: 0; font-size: 1rem; }

/* ---------- Dateigrößen an Downloads ---------- */
.btn .fs { font-weight: 500; font-size: .85rem; opacity: .8; }

/* ---------- Fahrplan ---------- */
.roadmap { background: var(--white); }
.road-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.road { background: var(--cream); border-radius: var(--r); padding: 32px 30px; }
.road .step { font-family: Montserrat, sans-serif; font-weight: 800; font-size: .74rem; letter-spacing: .12em; text-transform: uppercase; color: var(--blue); margin-bottom: 10px; }
.road h3 { color: var(--navy); margin-bottom: 18px; }
.road ul { list-style: none; display: grid; gap: 11px; }
.road li { position: relative; padding-left: 24px; font-size: 1rem; line-height: 1.5; color: var(--body); }
.road li::before { content: ""; position: absolute; left: 0; top: 9px; width: 8px; height: 8px; border-radius: 50%; background: var(--blue); }
.road-foot {
  margin-top: 30px; padding: 30px clamp(24px, 3vw, 40px); border-radius: var(--r);
  border: 2px solid var(--green); background: rgba(92,155,87,.05);
}
.road-foot h3 { color: var(--green-d); margin-bottom: 10px; }
.road-foot p { margin: 0; }

/* ---------- Kontakt ---------- */
.contact { background: var(--cream); }
.contact h2 { color: var(--navy); }
.contact .strong { font-family: Montserrat, sans-serif; font-weight: 700; font-size: 1.15rem; color: var(--navy); }
.districts { margin-top: 42px; padding-top: 34px; border-top: 1px solid var(--line); }
.districts h3 { color: var(--navy); margin-bottom: 8px; }
.chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; list-style: none; }
.chips li { background: var(--white); border: 1px solid var(--line-2); border-radius: 999px; padding: 10px 20px; font-weight: 600; font-size: .95rem; color: var(--navy); }
.contact-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 30px; }
.ccard { background: var(--white); border: 1px solid var(--line-2); border-radius: var(--r); padding: 26px 26px 28px; }
.ccard h3 { font-size: 1.05rem; color: var(--navy); margin-bottom: 10px; }
.ccard p { font-size: .97rem; margin: 0 0 8px; }
.ccard .sm { font-size: .88rem; color: var(--muted); margin: 0; }
.chan { display: flex; flex-wrap: wrap; gap: 8px 16px; }
.chan a { font-weight: 700; }
.btn--sm { padding: 11px 20px; font-size: .92rem; }

/* ---------- Wahlabschluss ---------- */
.vote { background: var(--navy); color: #fff; text-align: center; padding: 120px 0; position: relative; overflow: visible; }
.vote__bg { position: absolute; inset: 0; opacity: .22; overflow: hidden; }
.vote__bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; }
.vote .container { position: relative; }
.vote h2 { color: #fff; }
.vote p { color: #C6D5DD; }
.vote .party {
  margin: 34px auto 0; max-width: 22ch; font-family: Montserrat, sans-serif; font-weight: 700;
  font-size: clamp(1.15rem, 2.1vw, 1.6rem); line-height: 1.3; color: #fff;
}
.vote .small { font-size: 1rem; margin-top: 14px; }
.vote .date {
  margin: 46px auto; max-width: 20ch; font-family: Montserrat, sans-serif; font-weight: 800;
  font-size: clamp(1.7rem, 4vw, 3.1rem); line-height: 1.15; color: var(--orange);
}
.vote .sig b { display: block; font-family: Montserrat, sans-serif; font-weight: 800; font-size: 1.3rem; color: #fff; }
.vote .sig span { display: block; color: #C6D5DD; }
.vote .claims { margin-top: 26px; display: flex; flex-wrap: wrap; gap: 10px 26px; justify-content: center; font-weight: 700; color: #fff; font-size: .96rem; }
.vote .claims i { font-style: normal; display: inline-flex; align-items: center; gap: 9px; }
.vote .claims i::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--orange); }

/* ---------- Magazin ---------- */
.mag { background: var(--white); }
.mag__grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: clamp(32px, 5vw, 64px); align-items: center; }
.mag__grid img { border-radius: var(--r); box-shadow: 0 24px 56px rgba(12,45,60,.2); max-width: 330px; width: 100%; }
.mag h2 { color: var(--navy); }
.dl { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.mag__note { margin-top: 18px; font-size: 1rem; color: var(--body); }

/* ---------- Fußzeile ---------- */
.ftr { background: var(--navy); color: #A9BEC9; padding: 66px 0 34px; font-size: .95rem; }
.ftr a { color: #D6E3EA; text-decoration: none; }
.ftr a:hover { text-decoration: underline; }
.ftr p { color: #A9BEC9; }
.ftr__grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 40px; }
.ftr h2 { font-family: Montserrat, sans-serif; font-weight: 800; color: #fff; font-size: 1.05rem; margin: 0 0 14px; }
.ftr ul { list-style: none; display: grid; gap: 9px; }
.ftr__claim { margin-top: 16px; color: var(--orange); font-weight: 700; }
.ftr__bar {
  margin-top: 44px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.14);
  display: flex; flex-wrap: wrap; gap: 10px 26px; justify-content: space-between; font-size: 1rem;
}

/* ---------- Mobiler Dauer-CTA ---------- */
.mcta { display: none; }

/* ---------- Rechtstexte ---------- */
.legal { padding: 150px 0 90px; }
.legal h1 { font-size: clamp(2rem, 4vw, 3rem); color: var(--navy); margin-bottom: 30px; }
.legal h2 { font-size: clamp(1.2rem, 2vw, 1.5rem); color: var(--navy); margin: 40px 0 12px; }
.legal .container { max-width: 780px; }
.legal address { font-style: normal; margin-bottom: 8px; color: var(--body); }
.legal ul { padding-left: 22px; margin-bottom: 18px; }
.legal li { margin-bottom: 6px; color: var(--body); }
.back { display: inline-block; margin-bottom: 26px; font-weight: 700; text-decoration: none; }
.hint { background: #FFF6DF; border: 1px solid #EBD39A; border-radius: var(--r); padding: 20px 24px; color: #5C4708; font-size: .95rem; }

/* ---------- Einblenden ---------- */
/* Grundzustand: alles sichtbar. Die Einblendung wird nur aktiv,
   wenn site.js laeuft und die Klasse js-anim gesetzt hat. */
.rv { opacity: 1; transform: none; }
.js-anim .rv { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.js-anim .rv.in { opacity: 1; transform: none; }
.d1 { transition-delay: .09s; } .d2 { transition-delay: .18s; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .rv, .js-anim .rv { opacity: 1; transform: none; transition: none; }
  .btn:hover, .card:hover { transform: none; }
}

/* ---------- Umbrüche ---------- */
.card-grid > *, .priority-grid > *, .voice-grid > *, .perspectives > *, .vita > *,
.stats > *, .topic-grid > *, .road-grid > *, .contact-cards > *, .pl-grid > *,
.band5 > *, .method ul > *, .finrow > *, .tabs__bar > *,
.two-col > *, .hero__grid > *, .mag__grid > *, .ftr__grid > *, .chips > * { min-width: 0; }
.card, .priority, .voice, .persp, .stat, .topic, .road, .ccard, .note, .plan-box, .statement,
.pl, .bigpromise, .finance .bridge { overflow-wrap: break-word; }

@media (max-width: 1080px) {
  .perspectives, .vita, .card-grid--4 { grid-template-columns: repeat(2, 1fr); }
  .nav a:not(.btn) { padding: 8px 10px; font-size: .88rem; min-height: 44px; }
}

@media (max-width: 940px) {
  section { padding: 64px 0; }
  .hero { padding: 116px 0 64px; }
  .hero__grid, .two-col { grid-template-columns: 1fr; }
  .hero__grid { gap: 34px; }
  .hero__img { order: -1; }
  .hero__img img { height: min(430px, 52vh); object-position: center 26%; }
  .hero__tag { left: 12px; bottom: 14px; }
  .card-grid, .card-grid--4, .priority-grid, .voice-grid, .stats, .topic-grid, .road-grid,
  .contact-cards, .pl-grid, .mag__grid, .ftr__grid, .band5, .method ul { grid-template-columns: 1fr; }
  .finrow { grid-template-columns: 1fr 1fr; }
  .plan-scroll { display: none; }
  .plan-cards { display: block; }
  .btn { min-height: 44px; }
  .two-col { gap: 30px; }
  .two-col figure { order: -1; }

  .navtoggle {
    display: grid; place-items: center; width: 46px; height: 46px;
    border: 1px solid var(--line); border-radius: 12px; background: #fff; cursor: pointer;
  }
  .navtoggle svg { width: 22px; height: 22px; stroke: var(--navy); fill: none; stroke-width: 2; stroke-linecap: round; }
  .hdr { border-bottom-color: var(--line-2); }
  .hdr::before { opacity: 1; }
  /* Hoehe ausdruecklich rechnen statt ueber bottom:0 ableiten. Damit steht das
     Menue auch dann korrekt, wenn ein Elternelement zum Bezugsrahmen wird.
     dvh beruecksichtigt die ein- und ausfahrende Leiste mobiler Browser. */
  .nav {
    position: fixed; top: 78px; left: 0; right: 0; z-index: 99;
    height: calc(100vh - 78px); height: calc(100dvh - 78px);
    background: var(--white); flex-direction: column;
    align-items: stretch; gap: 2px; padding: 24px 20px; overflow-y: auto;
    transform: translateX(100%); transition: transform .28s ease; visibility: hidden;
  }
  .nav[data-open="true"] { transform: none; visibility: visible; }
  .nav a:not(.btn) { padding: 14px 16px; border-radius: 12px; font-size: 1.05rem; }
  .nav .btn { margin: 12px 0 0; }

  .mcta {
    display: flex; position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 90; gap: 10px;
    opacity: 0; transform: translateY(90px); pointer-events: none;
    transition: opacity .25s ease, transform .25s ease;
  }
  .mcta[data-show="true"] { opacity: 1; transform: none; pointer-events: auto; }
  .mcta .btn { flex: 1; box-shadow: 0 10px 30px rgba(12,45,60,.28); padding: 13px 18px; font-size: .92rem; }
  .ftr { padding-bottom: 96px; }
  .vote { padding: 80px 0; }
}

@media (max-width: 560px) {
  .perspectives, .vita, .finrow { grid-template-columns: 1fr; }
  .statement, .why blockquote { padding: 26px 24px; }
}

/* Lange URLs und Fachbegriffe in den Rechtstexten sauber umbrechen */
.legal { hyphens: auto; }
.legal p, .legal li, .legal address, .legal a,
.legal h1, .legal h2, .legal h3 { overflow-wrap: anywhere; }
.legal h1 { font-size: clamp(1.7rem, 4vw, 3rem); }

/* Überschrift, die die Hierarchie sauber hält, ohne die Optik zu stören */
.visually-h2 {
  font-size: clamp(1.4rem, 2.2vw, 1.9rem); color: var(--navy); margin-bottom: 30px;
}

/* ---------- Finanzgrafik: Schuldenkurve ----------
   WICHTIG: Farben, Schriftgroessen und Ausrichtung stehen als Attribute
   direkt im SVG in index.html, nicht hier. Damit sieht die Grafik auch
   dann richtig aus, wenn dieses Stylesheet fehlt oder veraltet ist.
   Hier steht nur Layout. Die Hochformat-Variante traegt style="display:none"
   im HTML, deshalb braucht die Umschaltung !important.                   */
.fchart { margin: 34px 0 0; }
.fchart__h { color: var(--navy); margin-bottom: 6px; }
.fchart__u { font-size: .95rem; font-weight: 700; color: var(--muted); margin: 0 0 10px; }
.fchart svg { width: 100%; height: auto; display: block; }
.fchart figcaption { margin-top: 18px; font-size: 1rem; color: var(--muted); max-width: 78ch; }
@media (max-width: 760px) {
  .fchart svg.fc-wide { display: none !important; }
  .fchart svg.fc-tall { display: block !important; }
}

/* ---------- Finanzen: Glühbirne und Zielkasten (wie im Magazin, Seite 13) ---------- */
.note--bulb h3 { display: flex; align-items: center; gap: 14px; }
.bulb {
  flex: 0 0 auto; width: 40px; height: 40px; border-radius: 50%;
  background: #F5C518; display: inline-flex; align-items: center; justify-content: center;
}
.bulb svg { width: 22px; height: 22px; }
.goals {
  margin-top: 22px; background: var(--cream); border: 1px solid var(--line-2);
  border-radius: var(--r); padding: 30px 32px;
}
.goals h3 { color: var(--navy); margin-bottom: 18px; }
.goals ul { list-style: none; display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px 34px; }
.goals li { position: relative; padding-left: 24px; font-size: 1rem; line-height: 1.5; color: var(--body); }
.goals li::before { content: ""; position: absolute; left: 0; top: 9px; width: 8px; height: 8px; border-radius: 50%; background: var(--green); }
@media (max-width: 700px) { .goals ul { grid-template-columns: 1fr; } .goals { padding: 26px 24px; } }
