:root {
  --blau: #1a365d;
  --blau-dunkel: #142c4d;
  --rot: #8b1a1a;
  --papier: #faf9f6;
  --hell: #f7f6f3;
  --sand: #e8e5df;
  --linie: #d4d0c8;
  --text: #2d2d2d;
  --nav-hoehe: 52px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: Georgia, 'Times New Roman', serif; color: var(--text); background: var(--papier); line-height: 1.7; }
[id] { scroll-margin-top: calc(var(--nav-hoehe) + 12px); }
a { color: var(--blau); }
a:focus-visible, button:focus-visible { outline: 2px solid var(--rot); outline-offset: 2px; }

/* ===== MASTHEAD ===== */
.masthead { background: var(--hell); border-bottom: 1px solid var(--linie); text-align: center; padding: clamp(0.55rem, 1.5vw, 0.9rem) 1rem; }
.masthead > a { display: inline-block; color: inherit; text-decoration: none; }
.logo { display: inline-block; background: #ededed; padding: clamp(0.7rem, 2vw, 1rem) clamp(1.1rem, 3vw, 1.8rem); text-align: center; }
.logo .zeile1 { font-family: Arial, 'Helvetica Neue', sans-serif; font-weight: 800; font-size: clamp(1.5rem, 4.5vw, 2rem); letter-spacing: 2px; line-height: 1.15; }
.logo .vgr { color: var(--blau); }
.logo .ev { color: var(--rot); }
.logo .sub { display: block; font-family: Arial, 'Helvetica Neue', sans-serif; font-size: clamp(0.66rem, 1.8vw, 0.78rem); font-weight: 700; color: var(--blau); letter-spacing: 0.5px; margin-top: 0.35rem; }
.logo .motto { display: block; font-family: Arial, 'Helvetica Neue', sans-serif; font-size: clamp(0.62rem, 1.7vw, 0.72rem); color: var(--blau); letter-spacing: 0.5px; margin-top: 0.15rem; }

/* ===== NAVIGATION ===== */
.site-nav { position: sticky; top: 0; z-index: 100; background: var(--hell); border-bottom: 1px solid var(--linie); box-shadow: 0 1px 4px rgba(0,0,0,0.06); font-family: 'Segoe UI', Arial, sans-serif; }
.nav-inner { max-width: 1100px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; padding: 0 1.25rem; min-height: var(--nav-hoehe); position: relative; }
.nav-brand { font-family: Arial, 'Helvetica Neue', sans-serif; font-weight: 800; font-size: 1.05rem; letter-spacing: 1px; color: var(--blau); text-decoration: none; white-space: nowrap; background: #ededed; padding: 0.3rem 0.75rem; }
.nav-brand span { color: var(--rot); }
.nav-toggle { display: none; }
.nav-menu { display: flex; align-items: center; list-style: none; }
.nav-menu > li { position: relative; }
.nav-menu > li > a { display: block; padding: 0.95rem 0.85rem; color: #333; text-decoration: none; font-size: 1rem; letter-spacing: 0.4px; border-bottom: 2px solid transparent; transition: color 0.15s, border-color 0.15s; white-space: nowrap; }
.nav-menu > li > a:hover,
.nav-menu > li > a[aria-current="page"] { color: var(--blau); border-bottom-color: var(--blau); }
.nav-cta > a { background: var(--blau); color: #fff !important; padding: 0.55rem 1.15rem !important; margin-left: 0.6rem; border-bottom: none !important; transition: background 0.15s; }
.nav-cta > a:hover,
.nav-cta > a[aria-current="page"] { background: var(--blau-dunkel); }

@media (min-width: 1101px) {
  .has-sub > a::after { content: "▾"; font-size: 0.6rem; margin-left: 0.4rem; color: #6a6a6a; }
  .nav-menu .sub { position: absolute; top: 100%; left: 0; min-width: 230px; background: #fff; border: 1px solid var(--linie); border-top: 2px solid var(--blau); box-shadow: 0 8px 20px rgba(0,0,0,0.10); list-style: none; padding: 0.35rem 0; opacity: 0; visibility: hidden; transform: translateY(6px); transition: opacity 0.15s, transform 0.15s, visibility 0.15s; }
  .has-sub:hover .sub, .has-sub:focus-within .sub { opacity: 1; visibility: visible; transform: translateY(0); }
  .nav-menu .sub a { display: block; padding: 0.55rem 1.15rem; color: #333; font-size: 1rem; text-decoration: none; }
  .nav-menu .sub a:hover { background: #f0ede6; color: var(--blau); }
}

@media (max-width: 1100px) {
  .nav-toggle { display: inline-flex; align-items: center; gap: 0.5rem; background: none; border: 1px solid #c9c4ba; padding: 0.45rem 0.9rem; font: 600 0.85rem 'Segoe UI', Arial, sans-serif; color: var(--blau); cursor: pointer; }
  .nav-menu { display: none; position: absolute; top: 100%; left: 0; right: 0; flex-direction: column; align-items: stretch; background: #fff; border-bottom: 1px solid var(--linie); box-shadow: 0 14px 28px rgba(0,0,0,0.14); max-height: calc(100vh - var(--nav-hoehe)); overflow-y: auto; }
  .site-nav.open .nav-menu { display: flex; }
  .nav-menu > li > a { padding: 0.85rem 1.25rem; border-bottom: 1px solid #eee9e0; white-space: normal; }
  .nav-menu > li > a:hover, .nav-menu > li > a[aria-current="page"] { border-bottom-color: #eee9e0; background: #faf9f6; }
  .nav-menu .sub { list-style: none; background: var(--papier); }
  .nav-menu .sub a { display: block; padding: 0.7rem 1.25rem 0.7rem 2.4rem; color: #3a3a3a; font-size: 1rem; text-decoration: none; border-bottom: 1px solid #eee9e0; }
  .nav-cta > a { margin: 0.85rem 1.25rem; text-align: center; }
}

/* ===== TYPOGRAFIE UND SEITEN ===== */
.page-intro { max-width: 900px; margin: 0 auto; padding: clamp(2.5rem, 7vw, 4rem) clamp(1.1rem, 4vw, 2rem) 1rem; }
.page-intro h1, .legal-main h1 { font-size: clamp(1.6rem, 4vw, 2rem); color: var(--blau); font-weight: 400; margin-bottom: 1.2rem; padding-bottom: 0.6rem; border-bottom: 1px solid var(--linie); }
.page-intro p { color: #3a3a3a; font-size: 1.03rem; }
.section { max-width: 900px; margin: 0 auto; padding: clamp(1.4rem, 3.5vw, 2.2rem) clamp(1.1rem, 4vw, 2rem); }
.section h2 { font-size: clamp(1.35rem, 3.5vw, 1.6rem); color: var(--blau); margin-bottom: 1.5rem; padding-bottom: 0.5rem; border-bottom: 1px solid var(--linie); font-weight: 400; }
.section h3 { color: var(--blau); margin: 1.8rem 0 0.8rem; font-size: 1.08rem; }
.section p { margin-bottom: 1.2rem; color: #2e2e2e; }
.full-alt { background: #f0ede6; }
.full-alt > .section { padding-top: clamp(1.4rem, 3.5vw, 2.2rem); padding-bottom: clamp(1.4rem, 3.5vw, 2.2rem); }
.legal-main { max-width: 800px; margin: 0 auto; padding: clamp(2rem, 6vw, 3.5rem) clamp(1.1rem, 4vw, 2rem); }
.legal-main h2 { font-size: 1.1rem; color: var(--blau); font-weight: 700; font-family: 'Segoe UI', Arial, sans-serif; margin: 2rem 0 0.7rem; }
.legal-main p, .legal-main li { margin-bottom: 1rem; color: #2e2e2e; }
.legal-main ul { padding-left: 1.4rem; }
.legal-main ul li { margin-bottom: 0.4rem; }

/* ===== HERO UND HINWEISE ===== */
.hero { background: linear-gradient(160deg, var(--blau), #22456e); color: white; padding: clamp(3rem, 9vw, 5rem) 1.5rem; text-align: center; }
.hero h1 { font-size: clamp(1.65rem, 4.5vw, 2.5rem); margin-bottom: 0.5rem; font-weight: 400; letter-spacing: 1px; }
.hero .tagline { font-size: clamp(1rem, 2.6vw, 1.15rem); opacity: 0.85; font-style: italic; margin-bottom: 2rem; }
.hero .cta, .button { display: inline-block; border: 1px solid rgba(255,255,255,0.6); color: white; padding: 0.8rem 2.5rem; text-decoration: none; font-family: 'Segoe UI', Arial, sans-serif; font-size: 0.9rem; letter-spacing: 1px; transition: background 0.3s, border-color 0.3s; }
.hero .cta:hover { background: rgba(255,255,255,0.15); border-color: white; }
.button { background: var(--blau); border-color: var(--blau); padding: 0.7rem 1.4rem; }
.button:hover { background: var(--blau-dunkel); }
.hinweis { max-width: 900px; margin: 1.25rem auto; padding: clamp(1.2rem, 4vw, 2rem) clamp(1.2rem, 5vw, 2.5rem); border: 2px solid var(--blau); background: #f9fafb; font-family: 'Segoe UI', Arial, sans-serif; }
.hinweis .hinweis-titel { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 2px; color: var(--blau); margin-bottom: 1.2rem; font-weight: 700; }
.hinweis p { font-size: clamp(0.86rem, 2.3vw, 0.93rem); line-height: 1.8; color: #262626; margin-bottom: 0.8rem; }
.hinweis p:last-child { margin-bottom: 0; }
.notice-box { background: #fdf6e3; border-left: 4px solid #b08a20; padding: 1.1rem 1.3rem; margin: 1.5rem 0; font-family: 'Segoe UI', Arial, sans-serif; color: #554716; }
.notice-box strong { color: #493b10; }
.separation-note { font: 0.9rem/1.6 'Segoe UI', Arial, sans-serif; color: #454545; background: #f0ede6; padding: 0.9rem 1.1rem; margin: -0.4rem 0 2rem; }
@media (max-width: 940px) { .hinweis { margin-left: 1rem; margin-right: 1rem; } }

/* ===== KARTEN, LISTEN UND ZITATE ===== */
.feature-grid, .teaser-grid, .download-grid, .contact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: clamp(1rem, 3vw, 2rem); margin-top: 2rem; }
.feature, .teaser-card, .download-card, .contact-card { padding: 1.5rem; background: white; border: 1px solid var(--sand); }
.contact-grid { margin-bottom: 1.7rem; } /* Abstand zum Folgeabsatz auf der Kontaktseite */
.teaser-card { display: flex; flex-direction: column; }
.feature h3, .teaser-card h2, .teaser-card h3, .download-card h3, .download-card h4, .contact-card h2, .contact-card h3 { font-size: 1rem; color: var(--blau); margin: 0 0 0.8rem; font-family: 'Segoe UI', Arial, sans-serif; letter-spacing: 0.5px; font-weight: 700; }
.feature p, .teaser-card p, .download-card p, .contact-card p { font-size: 0.92rem; color: #3a3a3a; }
.teaser-card .link-strong { display: inline-block; margin-top: auto; padding-top: 0.4rem; }
.quote-box { border-left: 3px solid var(--rot); padding: 1.5rem clamp(1.2rem, 4vw, 2rem); margin: 2rem 0; background: #faf8f4; }
.quote-box p { font-style: italic; color: #3a3a3a; margin-bottom: 0.5rem; }
.quote-box .author { font-style: normal; font-weight: 700; color: var(--blau); font-size: 0.9rem; }
.team-list, .benefit-list { list-style: none; margin: 1.5rem 0; }
.team-list li { padding: 0.6rem 0; border-bottom: 1px solid var(--sand); color: #2e2e2e; }
.team-list li strong { color: var(--blau); }
.benefit-list li { padding: 0.6rem 0 0.6rem 1.8rem; position: relative; color: #2e2e2e; }
.benefit-list li::before { content: "—"; position: absolute; left: 0; color: var(--rot); font-weight: 700; }
.link-strong { color: var(--blau); font-weight: 700; }

/* ===== VIDEO UND PETITION ===== */
.video-container { aspect-ratio: 16 / 9; width: 100%; margin: 1.5rem 0; }
.video-container iframe { width: 100%; height: 100%; border: none; }
.yt-facade { width: 100%; height: 100%; background: #1a1a1a; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1rem; padding: 1.25rem; text-align: center; }
.yt-play-btn { width: 68px; height: 48px; border: none; border-radius: 10px; background: var(--rot); color: #fff; font-size: 1.4rem; line-height: 1; cursor: pointer; }
.yt-play-btn:hover { background: #a52323; }
.yt-note { font-size: 0.8rem; color: #dcdcdc !important; width: 100%; max-width: 460px; margin: 0 !important; line-height: 1.5; font-family: 'Segoe UI', Arial, sans-serif; overflow-wrap: break-word; }
.yt-note a { color: #fff; }
.apolut-facade { width: 100%; height: 100%; background: #1a1a1a; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1rem; padding: 1.25rem; text-align: center; }
.apolut-play-btn { width: 68px; height: 48px; border: none; border-radius: 10px; background: var(--rot); color: #fff; font-size: 1.4rem; line-height: 1; cursor: pointer; }
.apolut-play-btn:hover { background: #a52323; }
.apolut-note { font-size: 0.8rem; color: #dcdcdc !important; width: 100%; max-width: 600px; margin: 0 !important; line-height: 1.5; font-family: 'Segoe UI', Arial, sans-serif; overflow-wrap: break-word; }
.apolut-note a { color: #fff; }
.video-source { font: 0.85rem/1.6 'Segoe UI', Arial, sans-serif; }

/* Kompakter Petition-Teaser auf der Startseite */
.petition-teaser { max-width: 900px; margin: 0 auto; padding: 0.5rem clamp(1.1rem, 4vw, 2rem); }
.petition-teaser .petition-box { margin: 0; }
.section-kompakt { padding-top: clamp(1.2rem, 3vw, 1.8rem); }
.section-anschluss { padding-top: 0.2rem; } /* Section, die ohne Zwischenüberschrift direkt an die page-intro anschließt */

.petition-box { background: var(--blau); color: white; padding: clamp(1.5rem, 4vw, 2rem); margin: 2rem 0; text-align: center; }
.petition-box h2, .petition-box h3 { color: #fff; font-size: 1.2rem; margin-bottom: 0.8rem; font-weight: 400; border: 0; padding: 0; }
.petition-box p { color: #fff; opacity: 0.9; margin-bottom: 1.2rem; }
.petition-box a { display: inline-block; border: 1px solid white; color: white; padding: 0.7rem 2rem; text-decoration: none; font-family: 'Segoe UI', Arial, sans-serif; font-size: 0.85rem; letter-spacing: 1px; transition: background 0.3s, color 0.3s; }
.petition-box a:hover { background: white; color: var(--blau); }

/* ===== MITGLIEDSCHAFT UND AUFRUF ===== */
.fee-box { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--linie); border: 1px solid var(--linie); margin: 1.8rem 0; }
.fee-item { background: #fff; padding: 1.25rem; text-align: center; }
.fee-item strong { display: block; color: var(--blau); font-size: 1.15rem; }
.steps { list-style: none; counter-reset: schritt; }
.step-card { counter-increment: schritt; position: relative; padding: 2rem 1.5rem 2rem 5.2rem; margin: 1.5rem 0; background: #fff; border: 1px solid var(--sand); min-height: 100px; }
.step-card::before { content: counter(schritt); position: absolute; left: 1.5rem; top: 1.5rem; width: 2.6rem; height: 2.6rem; display: grid; place-items: center; border-radius: 50%; background: var(--blau); color: #fff; font: 700 1.2rem 'Segoe UI', Arial, sans-serif; }
.step-card h2, .step-card h3 { margin-bottom: 0.7rem; padding: 0; border: 0; }
.download-card { display: flex; flex-direction: column; }
.download-card p { flex-grow: 1; }
.download-meta { font: 0.8rem 'Segoe UI', Arial, sans-serif; color: #575757; margin-bottom: 0.8rem; }
.appeal { background: #fffdf8; border: 1px solid #d9ccb4; box-shadow: 0 5px 18px rgba(70,55,30,0.08); padding: clamp(1.4rem, 4vw, 2.5rem); margin: 1.25rem 0; }
.appeal p { text-align: justify; hyphens: auto; -webkit-hyphens: auto; }
.appeal h3 { margin-top: 2rem; padding-bottom: 0.3rem; border-bottom: 1px solid #e7ddc9; }
.appeal p:last-of-type, .appeal .appeal-signature { text-align: left; }
.appeal h2 { border: 0; padding: 0; }
.appeal h3 { font: 700 1rem 'Segoe UI', Arial, sans-serif; letter-spacing: 0.3px; margin-top: 2rem; }
.appeal p { color: #3f3a32; }
.appeal-signature { border-top: 1px solid #d9ccb4; margin-top: 2rem; padding-top: 1rem; font-style: italic; color: var(--blau) !important; }
.publication-letter ul, .publication-letter ol { margin: 0.4rem 0 1.5rem; padding-left: 1.6rem; }
.publication-letter li { color: #3f3a32; margin-bottom: 0.9rem; text-align: justify; hyphens: auto; -webkit-hyphens: auto; }
.publication-letter .letter-closing { margin-top: 2rem; }
.appeal .letter-date { text-align: right; margin-bottom: 1.6rem; }
.letter-signers { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0.8rem clamp(0.8rem, 4vw, 2rem); border-top: 1px solid #d9ccb4; margin-top: 2rem; padding-top: 1rem; }
.appeal .letter-signers p { text-align: left; hyphens: manual; -webkit-hyphens: manual; margin-bottom: 0; color: var(--blau); }
.letter-signers .signer-name { font-weight: 700; }
.rev { unicode-bidi: bidi-override; direction: rtl; }

/* ===== FOOTER ===== */
footer { background: var(--text); color: #d4d4d4; padding: clamp(2rem, 5vw, 3rem) clamp(1.1rem, 4vw, 2rem) clamp(1.1rem, 3vw, 1.4rem); font-family: 'Segoe UI', Arial, sans-serif; font-size: 0.85rem; margin-top: 0; }
.footer-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 2rem; }
.footer-inner h2 { color: white; margin-bottom: 1rem; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 1px; }
.footer-inner p { color: #d4d4d4; }
.footer-inner a { color: #d4d4d4; text-decoration: none; }
.footer-inner a:hover { color: white; }
.footer-bottom { max-width: 1100px; margin: 2rem auto 0; padding-top: 1.5rem; border-top: 1px solid #444; text-align: center; color: #c9c9c9; font-size: 0.8rem; }
.footer-bottom a { color: #c9c9c9; }

@media (max-width: 700px) {
  .fee-box { grid-template-columns: 1fr; }
  .step-card { padding: 4.8rem 1.2rem 1.5rem; }
  .step-card::before { left: 1.2rem; top: 1.2rem; }
}
@media (max-width: 600px) {
  .petition-box a, .hero .cta, .button { display: block; text-align: center; }
}

/* Blocksatz fuer Fliesstext (mit Silbentrennung); zentrierte/kurze Elemente bleiben ausgenommen */
.section p, .hinweis p, .page-intro p,
.download-card p, .contact-card p, .step-card p,
.notice-box, .quote-box p,
.legal-main p, .legal-main li { text-align: justify; hyphens: auto; -webkit-hyphens: auto; }
.petition-box p, .fee-item, .download-meta, .yt-note, .appeal-signature, .quote-box .author,
.hero .tagline, .footer-inner p, .footer-bottom p { hyphens: manual; }
.apolut-note { hyphens: manual; }
.petition-box p, .section .fee-item, .fee-item { text-align: center; }
.section .download-meta, .download-meta, .appeal .appeal-signature, .section .quote-box .author { text-align: left; }
.section .yt-note, .yt-facade .yt-note, p.yt-note { text-align: center; }
.section .apolut-note, .apolut-facade .apolut-note, p.apolut-note { text-align: center; }

.section .teaser-card p, .teaser-card p { text-align: left; }

.hinweis .hinweis-titel { text-align: left; }
.skip-link { position: absolute; width: 1px; height: 1px; margin: -1px; padding: 0; overflow: hidden; clip: rect(0,0,0,0); clip-path: inset(50%); white-space: nowrap; border: 0; }
.skip-link:focus { position: fixed; top: 0; left: 0; width: auto; height: auto; margin: 0; padding: 0.6rem 1rem; overflow: visible; clip: auto; clip-path: none; white-space: normal; background: var(--blau); color: #fff; z-index: 200; font-family: 'Segoe UI', Arial, sans-serif; }
.hero a:focus-visible, .petition-box a:focus-visible, .yt-play-btn:focus-visible, .nav-cta > a:focus-visible { outline: 3px solid #fff; outline-offset: 2px; }
.apolut-play-btn:focus-visible { outline: 3px solid #fff; outline-offset: 2px; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
