@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700;900&family=Source+Serif+4:ital,wght@0,300;0,400;0,600;1,400&family=DM+Sans:wght@400;500;600&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy: #162540;
  --navy-mid: #1e3a5f;
  --accent: #c0392b;
  --amber: #d4700a;
  --green-civic: #2d6a4f;
  --bg: #f4f1eb;
  --bg-white: #fffffe;
  --text: #1a1a1a;
  --text-muted: #5a5a5a;
  --border: #d4ccbb;
  --highlight-bg: #fef9ee;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
}

/* ── HEADER ── */
header {
  background: var(--navy);
  color: #fff;
  padding: 0;
}

.site-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  border-bottom: 3px solid var(--accent);
  gap: 1rem;
  flex-wrap: wrap;
}

.site-logo {
  display: flex;
  flex-direction: column;
}

.site-logo .tagline {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 0.2rem;
}

.site-logo .name {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 900;
  color: #fff;
  text-decoration: none;
  line-height: 1.1;
}

.site-logo .name span { color: var(--amber); }

/* ── NAV ── */
nav {
  background: var(--navy-mid);
}

nav ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  padding: 0 1.5rem;
  gap: 0;
}

nav ul li a {
  display: block;
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  font-size: 0.82rem;
  letter-spacing: 0.05em;
  font-weight: 600;
  text-transform: uppercase;
  padding: 0.85rem 1rem;
  transition: all 0.2s;
  border-bottom: 3px solid transparent;
}

nav ul li a:hover,
nav ul li a.active {
  color: #fff;
  border-bottom-color: var(--amber);
  background: rgba(255,255,255,0.06);
}

/* ── HERO ── */
.hero {
  background: var(--navy);
  color: #fff;
  padding: 4rem 2rem 3.5rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 40px,
    rgba(255,255,255,0.015) 40px,
    rgba(255,255,255,0.015) 80px
  );
}

.hero-inner {
  position: relative;
  max-width: 860px;
  margin: 0 auto;
}

.hero-label {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  margin-bottom: 1.2rem;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 900;
  line-height: 1.15;
  color: #fff;
  margin-bottom: 1.2rem;
}

.hero h1 em { color: var(--amber); font-style: normal; }

.hero p {
  font-family: 'Source Serif 4', serif;
  font-size: 1.05rem;
  color: rgba(255,255,255,0.8);
  max-width: 680px;
  margin-bottom: 2rem;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--amber);
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.85rem 1.8rem;
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: background 0.2s;
}

.hero-cta:hover { background: #b85e09; }

/* ── MAIN LAYOUT ── */
.page-wrap {
  max-width: 1080px;
  margin: 0 auto;
  padding: 3rem 2rem;
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 3rem;
  align-items: start;
}

.page-wrap.full-width {
  grid-template-columns: 1fr;
  max-width: 860px;
}

/* ── SECTIONS ── */
.section {
  background: var(--bg-white);
  border: 1px solid var(--border);
  padding: 2rem 2.2rem;
  margin-bottom: 2rem;
}

.section-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.6rem;
}

.section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.25;
  color: var(--navy);
  margin-bottom: 1rem;
  padding-bottom: 0.8rem;
  border-bottom: 2px solid var(--border);
}

.section h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  margin: 1.5rem 0 0.5rem;
}

.section p {
  font-family: 'Source Serif 4', serif;
  font-size: 0.97rem;
  line-height: 1.8;
  margin-bottom: 1rem;
  color: #2a2a2a;
}

.section ul, .section ol {
  font-family: 'Source Serif 4', serif;
  font-size: 0.97rem;
  line-height: 1.8;
  padding-left: 1.4rem;
  margin-bottom: 1rem;
}

.section li { margin-bottom: 0.3rem; }

/* ── CALLOUT BOXES ── */
.callout {
  padding: 1.2rem 1.5rem;
  margin: 1.5rem 0;
  border-left: 4px solid var(--accent);
  background: #fef5f5;
}

.callout.amber {
  border-left-color: var(--amber);
  background: var(--highlight-bg);
}

.callout.green {
  border-left-color: var(--green-civic);
  background: #f0f7f4;
}

.callout.navy {
  border-left-color: var(--navy);
  background: #f0f3f8;
}

.callout p {
  font-family: 'Source Serif 4', serif;
  font-size: 0.95rem;
  margin: 0;
  color: #2a2a2a;
}

.callout strong { color: var(--navy); }

/* ── QUOTE BOX ── */
.quote-box {
  border-left: 4px solid var(--amber);
  padding: 1rem 1.5rem;
  margin: 1.5rem 0;
  background: var(--highlight-bg);
}

.quote-box blockquote {
  font-family: 'Source Serif 4', serif;
  font-size: 1.05rem;
  font-style: italic;
  color: var(--navy);
  line-height: 1.7;
}

.quote-box cite {
  display: block;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 0.5rem;
  font-style: normal;
  letter-spacing: 0.03em;
}

/* ── SIDEBAR ── */
.sidebar { position: sticky; top: 2rem; }

.sidebar-box {
  background: var(--bg-white);
  border: 1px solid var(--border);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

.sidebar-box h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.8rem;
  padding-bottom: 0.6rem;
  border-bottom: 2px solid var(--border);
}

.sidebar-box ul { list-style: none; padding: 0; }

.sidebar-box ul li {
  font-size: 0.88rem;
  padding: 0.4rem 0;
  border-bottom: 1px solid var(--border);
  color: var(--text-muted);
}

.sidebar-box ul li:last-child { border-bottom: none; }

.petition-box {
  background: var(--navy);
  color: #fff;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

.petition-box h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.7rem;
}

.petition-box p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.btn-petition {
  display: block;
  background: var(--amber);
  color: #fff;
  text-align: center;
  padding: 0.8rem 1rem;
  font-weight: 700;
  font-size: 0.88rem;
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: background 0.2s;
}

.btn-petition:hover { background: #b85e09; }

/* ── PAGE NAV CARDS ── */
.nav-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.nav-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  padding: 1.4rem 1.6rem;
  text-decoration: none;
  display: block;
  transition: all 0.2s;
  border-top: 3px solid var(--navy-mid);
}

.nav-card:hover {
  border-top-color: var(--accent);
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  transform: translateY(-2px);
}

.nav-card .card-icon {
  font-size: 1.6rem;
  margin-bottom: 0.6rem;
}

.nav-card .card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.3rem;
}

.nav-card .card-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ── TIMELINE ── */
.timeline { margin: 1.5rem 0; }

.timeline-item {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 1rem;
  margin-bottom: 1.2rem;
  position: relative;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: 96px;
  top: 1.5rem;
  bottom: -1.2rem;
  width: 2px;
  background: var(--border);
}

.timeline-item:last-child::before { display: none; }

.timeline-date {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-muted);
  text-align: right;
  padding-top: 0.2rem;
  letter-spacing: 0.03em;
}

.timeline-content {
  background: var(--bg-white);
  border: 1px solid var(--border);
  padding: 0.9rem 1.1rem;
  position: relative;
}

.timeline-content::before {
  content: '●';
  position: absolute;
  left: -20px;
  top: 0.7rem;
  color: var(--accent);
  font-size: 0.8rem;
}

.timeline-content strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.2rem;
}

.timeline-content p {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.5;
}

/* ── STATS STRIP ── */
.stats-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 0;
  background: var(--navy);
  margin-bottom: 2rem;
}

.stat-item {
  padding: 1.5rem 1.2rem;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.1);
  color: #fff;
}

.stat-item:last-child { border-right: none; }

.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 900;
  color: var(--amber);
  display: block;
}

.stat-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ── FB SCREENSHOT SECTION ── */
.fb-mockup {
  background: #f0f2f5;
  border: 1px solid #ccd0d5;
  border-radius: 4px;
  padding: 1.2rem;
  margin: 1.5rem 0;
  font-family: -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;
}

.fb-name {
  font-weight: 700;
  font-size: 0.9rem;
  color: #050505;
}

.fb-meta {
  font-size: 0.75rem;
  color: #65676b;
  margin-bottom: 0.7rem;
}

.fb-text {
  font-size: 0.88rem;
  line-height: 1.5;
  color: #050505;
}

.comment-arrow {
  color: var(--accent);
  font-weight: 700;
  margin: 0.8rem 0;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
}

/* ── NEWSLETTER NAV LINK ── */
nav ul li a.nav-newsletter {
  color: var(--accent, #c0392b);
  font-weight: 700;
  border: 1px solid var(--accent, #c0392b);
  border-radius: 3px;
  padding: 0.3rem 0.7rem;
}
nav ul li a.nav-newsletter:hover {
  background: var(--accent, #c0392b);
  color: #fff;
}

/* ── NEWSLETTER MODAL ── */
.nl-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 1000;
  align-items: center;
  justify-content: center;
}
.nl-overlay.open { display: flex; }

.nl-box {
  background: #fff;
  border-radius: 6px;
  padding: 2rem;
  width: 100%;
  max-width: 460px;
  margin: 1rem;
  position: relative;
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
}
.nl-box h3 {
  margin: 0 0 0.3rem 0;
  color: #1a2e4a;
  font-size: 1.2rem;
}
.nl-box p.nl-intro {
  font-size: 0.9rem;
  color: #555;
  margin: 0 0 1.2rem 0;
}
.nl-close {
  position: absolute;
  top: 0.8rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 1.4rem;
  cursor: pointer;
  color: #888;
  line-height: 1;
}
.nl-close:hover { color: #333; }

.nl-form label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 0.25rem;
}
.nl-form input[type="text"],
.nl-form input[type="email"] {
  width: 100%;
  padding: 0.55rem 0.75rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 0.95rem;
  margin-bottom: 0.9rem;
  box-sizing: border-box;
}
.nl-form input:focus {
  outline: none;
  border-color: #1a2e4a;
}
.nl-checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin-bottom: 0.8rem;
}
.nl-checkbox-row input[type="checkbox"] {
  margin-top: 3px;
  flex-shrink: 0;
}
.nl-checkbox-row span {
  font-size: 0.82rem;
  color: #444;
  line-height: 1.4;
}
.nl-datenschutz {
  background: #f7f8fa;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  padding: 0.8rem 1rem;
  font-size: 0.75rem;
  color: #666;
  line-height: 1.5;
  margin-bottom: 1rem;
  max-height: 120px;
  overflow-y: auto;
}
.nl-submit {
  width: 100%;
  background: #1a2e4a;
  color: #fff;
  border: none;
  border-radius: 4px;
  padding: 0.7rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
}
.nl-submit:disabled {
  background: #aaa;
  cursor: not-allowed;
}
.nl-submit:not(:disabled):hover { background: #243d62; }
.nl-msg { font-size: 0.9rem; margin-top: 0.8rem; text-align: center; }
.nl-msg.ok { color: #2e7d32; }
.nl-msg.err { color: #c0392b; }

/* ── FOOTER ── */
footer {
  background: var(--navy);
  color: rgba(255,255,255,0.65);
  padding: 2rem;
  text-align: center;
  font-size: 0.82rem;
  margin-top: 2rem;
}

footer a {
  color: var(--amber);
  text-decoration: none;
}

footer a:hover { text-decoration: underline; }

footer .footer-inner {
  max-width: 860px;
  margin: 0 auto;
}

/* ── HIGHLIGHT ── */
mark {
  background: rgba(212, 112, 10, 0.2);
  color: inherit;
  padding: 0.1em 0.2em;
}

strong.red { color: var(--accent); }

/* ── PAGE TITLE BAND ── */
.page-title-band {
  background: var(--navy-mid);
  color: #fff;
  padding: 2rem 2rem 1.8rem;
  border-bottom: 3px solid var(--accent);
}

.page-title-band .section-label {
  color: var(--amber);
  margin-bottom: 0.4rem;
}

.page-title-band h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.2;
}

/* ── WARNING BOX ── */
.warning-box {
  background: var(--accent);
  color: #fff;
  padding: 1.2rem 1.5rem;
  margin: 1.5rem 0;
}

.warning-box strong {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
  opacity: 0.85;
}

.warning-box p {
  font-family: 'Source Serif 4', serif;
  font-size: 0.95rem;
  margin: 0;
  color: #fff;
  line-height: 1.6;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .page-wrap {
    grid-template-columns: 1fr;
    padding: 1.5rem 1rem;
  }

  .sidebar { position: static; }

  .stats-strip {
    grid-template-columns: 1fr 1fr;
  }

  nav ul { gap: 0; }
  nav ul li a { padding: 0.7rem 0.8rem; font-size: 0.75rem; }

  .hero { padding: 2.5rem 1.2rem 2rem; }

  .timeline-item { grid-template-columns: 80px 1fr; }

  .site-top { padding: 1rem; }
}
