/* ============================================================
   CARSTEN KÖLLING – BÜRGERMEISTERKANDIDAT RODENBERG
   Stylesheet v1.0
   ============================================================ */

/* --- Reset & Base ------------------------------------------ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --primary:       #1a3a5c;
  --primary-light: #3d7a9e;
  --primary-dark:  #0f2236;
  --logo-blue:     #3d7a9e;
  --accent:        #3d7a9e;
  --accent-hover:  #2e6090;
  --white:         #ffffff;
  --off-white:     #f8fafc;
  --light-gray:    #edf2f7;
  --border:        #e2e8f0;
  --text:          #2d3748;
  --text-light:    #4a5568;
  --text-lighter:  #718096;
  --success:       #38a169;
  --error:         #e53e3e;

  --container:     1200px;
  --radius:        8px;
  --radius-lg:     16px;
  --radius-xl:     24px;

  --shadow-sm: 0 1px 4px rgba(0,0,0,0.07);
  --shadow:    0 4px 20px rgba(0,0,0,0.09);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.15);

  --transition: 0.28s ease;
  --section-py: 90px;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

/* --- Typography -------------------------------------------- */
h1, h2, h3, h4, h5 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--primary);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.15rem; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* --- Container --------------------------------------------- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* --- Utility ----------------------------------------------- */
.section {
  padding: var(--section-py) 0;
}

.section--light { background: var(--off-white); }
.section--primary {
  background: var(--primary);
  color: var(--white);
}
.section--primary h2,
.section--primary h3,
.section--primary h4 {
  color: var(--white);
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-header .eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.section-header h2 {
  margin-bottom: 16px;
}

.section-header .lead {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}

.section--primary .section-header .lead {
  color: rgba(255,255,255,0.75);
}

.divider {
  width: 56px;
  height: 3px;
  background: var(--accent);
  margin: 16px auto 0;
  border-radius: 2px;
}

/* --- Buttons ----------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background var(--transition), color var(--transition),
              border-color var(--transition), transform var(--transition),
              box-shadow var(--transition);
  text-align: center;
  white-space: nowrap;
}

.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--white);
  color: var(--primary-dark);
  border-color: var(--white);
}
.btn-primary:hover {
  background: var(--off-white);
  border-color: var(--off-white);
  box-shadow: 0 8px 28px rgba(255,255,255,0.25);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.7);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
}

.btn-outline-dark {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}
.btn-outline-dark:hover {
  background: var(--primary);
  color: var(--white);
}

.btn-lg {
  padding: 17px 36px;
  font-size: 1rem;
}

/* Für Buttons auf weißem/hellem Hintergrund */
.btn-blue {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}
.btn-blue:hover {
  background: var(--primary-light);
  border-color: var(--primary-light);
  box-shadow: 0 8px 24px rgba(26,58,92,0.28);
}

/* --- Cookie Banner ----------------------------------------- */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--primary-dark);
  color: var(--white);
  z-index: 9999;
  padding: 20px 24px;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.25);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

#cookie-banner.visible {
  transform: translateY(0);
}

.cookie-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-text {
  flex: 1;
  min-width: 260px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.5;
}

.cookie-text strong {
  color: var(--white);
  display: block;
  margin-bottom: 4px;
}

.cookie-text a {
  color: var(--accent);
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}

.cookie-btn {
  padding: 9px 18px;
  border-radius: var(--radius);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  border: 1px solid transparent;
  transition: background var(--transition), color var(--transition);
}

.cookie-btn--accept {
  background: var(--white);
  color: var(--primary-dark);
}
.cookie-btn--accept:hover { background: var(--off-white); }

.cookie-btn--necessary {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
}
.cookie-btn--necessary:hover { border-color: var(--white); }

.cookie-btn--settings {
  background: transparent;
  color: rgba(255,255,255,0.6);
  font-weight: 400;
  font-size: 0.82rem;
}
.cookie-btn--settings:hover { color: var(--white); }

/* Cookie Settings Modal */
#cookie-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 10000;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

#cookie-modal.open { display: flex; }

.cookie-modal-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  max-width: 520px;
  width: 100%;
  padding: 36px;
  box-shadow: var(--shadow-lg);
}

.cookie-modal-box h3 {
  font-size: 1.25rem;
  margin-bottom: 8px;
}

.cookie-modal-box p {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 24px;
}

.cookie-toggle-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-top: 1px solid var(--border);
}

.cookie-toggle-row:last-of-type { border-bottom: 1px solid var(--border); }

.cookie-toggle-info strong {
  display: block;
  font-size: 0.9rem;
  color: var(--text);
}
.cookie-toggle-info span {
  font-size: 0.8rem;
  color: var(--text-lighter);
}

.toggle {
  position: relative;
  width: 44px;
  height: 24px;
  flex-shrink: 0;
}
.toggle input { opacity: 0; width: 0; height: 0; }
.toggle-slider {
  position: absolute;
  inset: 0;
  background: var(--border);
  border-radius: 12px;
  cursor: pointer;
  transition: background var(--transition);
}
.toggle-slider::before {
  content: '';
  position: absolute;
  width: 18px;
  height: 18px;
  left: 3px;
  top: 3px;
  background: var(--white);
  border-radius: 50%;
  transition: transform var(--transition);
  box-shadow: var(--shadow-sm);
}
.toggle input:checked + .toggle-slider { background: var(--primary); }
.toggle input:checked + .toggle-slider::before { transform: translateX(20px); }
.toggle input:disabled + .toggle-slider { cursor: not-allowed; opacity: 0.7; }

.cookie-modal-actions {
  display: flex;
  gap: 12px;
  margin-top: 24px;
  flex-wrap: wrap;
}

/* --- Navigation -------------------------------------------- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: background var(--transition), box-shadow var(--transition),
              padding var(--transition);
}

.nav.scrolled {
  background: rgba(15,34,54,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.2);
  padding: 10px 0;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.2;
  flex-shrink: 0;
}

.nav-logo-badge {
  width: 42px;
  height: 42px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--primary-dark);
  flex-shrink: 0;
}

/* Logo image in nav — white pill keeps it readable on dark bg */
.nav-logo-img-wrap {
  width: 48px;
  height: 48px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
  padding: 3px;
  box-shadow: 0 0 0 2px rgba(255,255,255,0.15);
}

.nav-logo-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Hero logo badge */
.hero-logo {
  display: block;
  width: 120px;
  height: 120px;
  background: var(--white);
  border-radius: 50%;
  padding: 8px;
  margin-bottom: 28px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
}

.hero-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Footer logo image */
.footer-logo-img-wrap {
  width: 52px;
  height: 52px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
  padding: 4px;
}

.footer-logo-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.nav-logo-text .name {
  display: block;
  font-size: 1rem;
}
.nav-logo-text .subtitle {
  display: block;
  font-size: 0.7rem;
  font-weight: 400;
  opacity: 0.75;
  letter-spacing: 0.03em;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  color: rgba(255,255,255,0.85);
  font-size: 0.88rem;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: var(--radius);
  transition: color var(--transition), background var(--transition);
}
.nav-link:hover {
  color: var(--white);
  background: rgba(255,255,255,0.1);
}

.nav-cta {
  background: var(--white);
  color: var(--primary-dark);
  font-weight: 700;
  padding: 8px 18px;
  border-radius: var(--radius);
  font-size: 0.88rem;
  transition: background var(--transition), box-shadow var(--transition);
}
.nav-cta:hover {
  background: var(--off-white);
  box-shadow: 0 4px 16px rgba(255,255,255,0.2);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* --- Hero -------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--primary-dark);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url('../images/hero.jpg') center center / cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(10,22,38,0.88) 0%,
    rgba(15,34,54,0.72) 50%,
    rgba(10,22,38,0.45) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  padding: 120px 0 80px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(61,122,158,0.15);
  border: 1px solid rgba(61,122,158,0.45);
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 24px;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 16px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.3);
}

.hero-slogan {
  display: block;
  margin: 0 0 20px 0 !important;
  padding: 0;
  line-height: 1 !important;
}

.slogan-line {
  display: block;
  font-size: clamp(1.6rem, 5vw, 3.2rem);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white) !important;
  text-shadow: 0 2px 16px rgba(0,0,0,0.35);
  line-height: 1 !important;
  margin: 0 !important;
  padding: 0;
  white-space: nowrap;
}

.slogan-accent {
  color: var(--white);
  text-shadow: 0 2px 16px rgba(0,0,0,0.35);
}

.hero-tagline {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: var(--accent);
  font-weight: 600;
  letter-spacing: 0.03em;
  margin-bottom: 20px;
}

.hero-lead {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  color: rgba(255,255,255,0.82);
  margin-bottom: 36px;
  max-width: 560px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
}

.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.3);
  animation: scrollLine 2s infinite;
}

@keyframes scrollLine {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50% { opacity: 0.8; transform: scaleY(1.1); }
}

/* --- Trust Bar --------------------------------------------- */
.trust-bar {
  background: var(--primary);
  padding: 20px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.85);
  font-size: 0.88rem;
  font-weight: 500;
}

.trust-icon {
  width: 36px;
  height: 36px;
  background: rgba(61,122,158,0.15);
  border: 1px solid rgba(61,122,158,0.35);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

/* --- About Carsten ----------------------------------------- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-image-wrap {
  position: relative;
}

.about-image-frame {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/5;
  background: var(--light-gray);
}

.about-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-image-frame .img-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.4);
  font-size: 4rem;
}

.about-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 16px 20px;
  box-shadow: var(--shadow-lg);
  text-align: center;
  min-width: 140px;
}

.about-badge .badge-num {
  display: block;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}
.about-badge .badge-text {
  font-size: 0.75rem;
  color: var(--text-light);
  font-weight: 500;
  margin-top: 4px;
}

/* Photo variant – replaces text badge with a small portrait */
.about-badge--photo {
  padding: 0;
  width: 130px;
  height: 160px;
  overflow: hidden;
  border: 3px solid var(--white);
}

.about-badge--photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.about-content .eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.about-content h2 { margin-bottom: 20px; }

.about-content .about-lead {
  font-size: 1.05rem;
  color: var(--text);
  margin-bottom: 20px;
  line-height: 1.75;
}

.about-pillars {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 28px 0 32px;
}

.about-pillar {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  background: var(--off-white);
  border-radius: var(--radius);
  border-left: 3px solid var(--accent);
}

.about-pillar-icon {
  font-size: 1.4rem;
  width: 40px;
  text-align: center;
  flex-shrink: 0;
}

.about-pillar-text strong {
  display: block;
  font-size: 0.9rem;
  color: var(--primary);
}
.about-pillar-text span {
  font-size: 0.82rem;
  color: var(--text-lighter);
}

/* --- Why Mayor --------------------------------------------- */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.why-image-frame {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/5;
  background: var(--light-gray);
  order: 2;
}

.why-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.why-image-frame .img-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #1e4976 0%, var(--primary) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.3);
  font-size: 4rem;
}

.why-content { order: 1; }
.why-content .eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.why-content h2 { margin-bottom: 20px; }

.why-quote {
  background: var(--primary);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  margin: 28px 0;
  position: relative;
}
.why-quote::before {
  content: '\201C';
  font-size: 4rem;
  color: var(--accent);
  position: absolute;
  top: -10px;
  left: 16px;
  line-height: 1;
  font-family: Georgia, serif;
}
.why-quote p {
  font-size: 1rem;
  font-style: italic;
  opacity: 0.9;
  padding-top: 16px;
}

/* --- Connection Section ------------------------------------ */
.connection-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.connection-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  border-top: 3px solid var(--accent);
  transition: transform var(--transition), box-shadow var(--transition);
}

.connection-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.connection-icon {
  font-size: 2.2rem;
  margin-bottom: 16px;
}

.connection-card h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.connection-card p {
  font-size: 0.9rem;
  color: var(--text-light);
}

/* --- Topics / Goals ---------------------------------------- */
.topics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.topic-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: background var(--transition), transform var(--transition);
}

.topic-card:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-4px);
}

.topic-icon {
  width: 52px;
  height: 52px;
  background: rgba(61,122,158,0.15);
  border: 1px solid rgba(61,122,158,0.35);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 16px;
}

.topic-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}

.topic-card p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.68);
  line-height: 1.65;
}

/* --- Values ------------------------------------------------ */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.value-card {
  text-align: center;
  padding: 36px 24px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.value-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin: 0 auto 20px;
}

.value-card h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.value-card p {
  font-size: 0.875rem;
  color: var(--text-light);
}

/* --- Stand For --------------------------------------------- */
.stand-for-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.stand-for-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px;
  background: var(--off-white);
  border-radius: var(--radius);
  transition: background var(--transition);
}
.stand-for-item:hover { background: var(--light-gray); }

.stand-for-check {
  width: 28px;
  height: 28px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 0.8rem;
  flex-shrink: 0;
  margin-top: 1px;
}

.stand-for-item strong {
  display: block;
  font-size: 0.92rem;
  color: var(--primary);
  margin-bottom: 3px;
}
.stand-for-item p {
  font-size: 0.83rem;
  color: var(--text-light);
  margin: 0;
}

/* --- Your Topics ------------------------------------------- */
.your-topics-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.your-topics-text .eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.your-topics-text h2 { margin-bottom: 20px; }
.your-topics-text p {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.8;
}

.supporter-box {
  background: var(--primary);
  color: var(--white);
  border-radius: var(--radius-xl);
  padding: 40px 36px;
  text-align: center;
}

.supporter-box h3 {
  color: var(--white);
  font-size: 1.4rem;
  margin-bottom: 12px;
}
.supporter-box p {
  color: rgba(255,255,255,0.75);
  font-size: 0.92rem;
  margin-bottom: 28px;
}

.supporter-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.supporter-form input {
  padding: 13px 16px;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.1);
  color: var(--white);
  font-size: 0.9rem;
  outline: none;
  transition: border-color var(--transition), background var(--transition);
  font-family: inherit;
}
.supporter-form input::placeholder { color: rgba(255,255,255,0.45); }
.supporter-form input:focus {
  border-color: var(--accent);
  background: rgba(255,255,255,0.14);
}

/* --- Events / Appointments --------------------------------- */
.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.event-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  transition: transform var(--transition), box-shadow var(--transition);
}
.event-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.event-date {
  background: var(--primary);
  color: var(--white);
  padding: 20px 16px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 80px;
}
.event-date .day {
  font-size: 1.8rem;
  font-weight: 800;
  line-height: 1;
  color: var(--accent);
}
.event-date .month {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  opacity: 0.8;
  margin-top: 4px;
}

.event-info {
  padding: 20px 22px;
}
.event-info h4 {
  font-size: 0.95rem;
  margin-bottom: 6px;
}
.event-info .event-location {
  font-size: 0.82rem;
  color: var(--text-lighter);
  display: flex;
  align-items: center;
  gap: 5px;
}
.event-info .event-desc {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-top: 8px;
  margin-bottom: 0;
}

.events-cta {
  text-align: center;
  margin-top: 36px;
}

/* --- Social / Instagram ------------------------------------ */
.social-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.social-header-text .eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}

.social-header-text h2 { margin-bottom: 10px; }
.social-header-text p {
  color: var(--text-light);
  font-size: 0.95rem;
  max-width: 520px;
  margin: 0;
}

.instagram-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
  color: var(--white);
  padding: 12px 22px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.9rem;
  white-space: nowrap;
  transition: opacity var(--transition), transform var(--transition);
  flex-shrink: 0;
}
.instagram-link:hover { opacity: 0.9; transform: translateY(-2px); }

.social-follow-btns {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex-shrink: 0;
}

.facebook-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #1877f2;
  color: var(--white);
  padding: 12px 22px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.9rem;
  white-space: nowrap;
  transition: opacity var(--transition), transform var(--transition);
}
.facebook-link:hover { opacity: 0.9; transform: translateY(-2px); }

/* Instagram embed grid */
.insta-embeds-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* DSGVO-konformer Embed-Wrapper */
.insta-embed-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 280px;
  background: var(--light-gray);
  position: relative;
}

.insta-consent-layer {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 28px 20px;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  gap: 12px;
}

.insta-consent-layer .insta-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.4rem;
}

.insta-consent-layer strong {
  font-size: 0.9rem;
  color: var(--text);
  display: block;
}

.insta-consent-layer p {
  font-size: 0.78rem;
  color: var(--text-lighter);
  line-height: 1.5;
  margin: 0;
  max-width: 220px;
}

/* Geladener Embed */
.insta-embed-wrapper.loaded .insta-consent-layer {
  display: none;
}

.insta-embed-wrapper .embed-container {
  display: none;
  width: 100%;
}

.insta-embed-wrapper.loaded .embed-container {
  display: block;
}

.insta-embed-wrapper .instagram-media {
  margin: 0 !important;
  min-width: unset !important;
  width: 100% !important;
}

/* Fallback: Post-Karte ohne Embed */
.insta-preview-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 280px;
}

.insta-preview-img {
  flex: 1;
  background: var(--light-gray);
  overflow: hidden;
  position: relative;
}

.insta-preview-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.insta-preview-card:hover .insta-preview-img img { transform: scale(1.04); }

.insta-preview-footer {
  padding: 14px 16px;
  background: var(--white);
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.insta-preview-footer span {
  font-size: 0.8rem;
  color: var(--text-lighter);
  display: flex;
  align-items: center;
  gap: 6px;
}

@media (max-width: 900px) {
  .insta-embeds-grid { grid-template-columns: repeat(2, 1fr); }
  .social-header { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 640px) {
  .insta-embeds-grid { grid-template-columns: 1fr; }
}

/* --- Contact ----------------------------------------------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 56px;
  align-items: start;
}

.contact-info .contact-item {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
}

.contact-icon {
  width: 48px;
  height: 48px;
  background: var(--primary);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--accent);
  flex-shrink: 0;
}

.contact-item-text strong {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-lighter);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 3px;
}
.contact-item-text span {
  font-size: 0.95rem;
  color: var(--text);
}

.contact-item--link {
  text-decoration: none;
  transition: opacity var(--transition);
}
.contact-item--link:hover { opacity: 0.8; }
.contact-item--link:hover .contact-icon { background: var(--primary-light); }

.social-link-btn {
  width: 44px;
  height: 44px;
  border-radius: var(--radius);
  background: var(--primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: background var(--transition), transform var(--transition);
}
.social-link-btn:hover {
  background: var(--primary-light);
  transform: translateY(-3px);
}

/* Contact Form */
.contact-form-card {
  background: var(--off-white);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 7px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-family: inherit;
  color: var(--text);
  background: var(--white);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(26,58,92,0.08);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  font-size: 0.83rem;
  color: var(--text-light);
  line-height: 1.5;
  margin-bottom: 24px;
}

.form-checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 1px;
  accent-color: var(--primary);
  cursor: pointer;
}

.form-checkbox a {
  color: var(--primary);
  text-decoration: underline;
}

.form-success {
  display: none;
  background: #f0fdf4;
  border: 1px solid #86efac;
  border-radius: var(--radius);
  padding: 16px 20px;
  color: #166534;
  font-size: 0.9rem;
  margin-top: 12px;
  align-items: center;
  gap: 10px;
}
.form-success.show { display: flex; }

.form-error-msg {
  display: none;
  color: var(--error);
  font-size: 0.8rem;
  margin-top: 4px;
}
.form-error-msg.show { display: block; }

.field-error input,
.field-error textarea {
  border-color: var(--error);
}

/* --- Footer ------------------------------------------------ */
.footer {
  background: var(--primary-dark);
  color: rgba(255,255,255,0.7);
  padding: 64px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand .footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  font-weight: 700;
  margin-bottom: 16px;
}

.footer-logo-badge {
  width: 40px;
  height: 40px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 800;
  color: var(--primary-dark);
}

.footer-brand p {
  font-size: 0.86rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social-btn {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.07);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  transition: background var(--transition), color var(--transition);
}
.footer-social-btn:hover {
  background: var(--accent);
  color: var(--primary-dark);
}

.footer-col h4 {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  font-size: 0.86rem;
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--accent); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0;
  flex-wrap: wrap;
}

.footer-bottom p { font-size: 0.8rem; margin: 0; }

.footer-legal-links {
  display: flex;
  gap: 20px;
}
.footer-legal-links a {
  font-size: 0.8rem;
  transition: color var(--transition);
}
.footer-legal-links a:hover { color: var(--accent); }

.cookie-reset-btn {
  background: none;
  border: none;
  color: rgba(255,255,255,0.7);
  font-size: 0.86rem;
  font-family: inherit;
  font-weight: 400;
  line-height: inherit;
  cursor: pointer;
  transition: color var(--transition);
  padding: 0;
  margin: 0;
  text-align: left;
  display: block;
  width: 100%;
}
.cookie-reset-btn:hover { color: var(--accent); }

/* --- Scroll Animations ------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.revealed {
  opacity: 1;
  transform: none;
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* --- Photo Strip ------------------------------------------- */
.photo-strip {
  height: 420px;
  overflow: hidden;
  position: relative;
}

.photo-strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  display: block;
  transition: transform 8s ease;
}

.photo-strip:hover img {
  transform: scale(1.03);
}

.photo-strip-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(15,34,54,0.55) 0%,
    rgba(15,34,54,0.1) 60%,
    transparent 100%
  );
  display: flex;
  align-items: flex-end;
  padding: 36px 40px;
}

.photo-strip-caption {
  color: rgba(255,255,255,0.85);
  font-size: 0.88rem;
  font-style: italic;
  letter-spacing: 0.03em;
}

/* --- Connection hero image --------------------------------- */
.connection-feature-img {
  border-radius: var(--radius-xl);
  overflow: hidden;
  margin-bottom: 48px;
  position: relative;
  height: 340px;
  box-shadow: var(--shadow-lg);
}

.connection-feature-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}

.connection-feature-img .img-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(15,34,54,0.8), transparent);
  color: rgba(255,255,255,0.9);
  padding: 20px 24px 18px;
  font-size: 0.82rem;
  font-style: italic;
}

/* --- Contact portrait -------------------------------------- */
.contact-portrait {
  border-radius: var(--radius-xl);
  overflow: hidden;
  margin-top: 32px;
  box-shadow: var(--shadow);
  aspect-ratio: 4/5;
  max-height: 320px;
}

.contact-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

/* --- Subpages (Impressum / Datenschutz) -------------------- */
.subpage-hero {
  background: var(--primary);
  padding: 120px 0 60px;
  text-align: center;
  color: var(--white);
}
.subpage-hero h1 { color: var(--white); margin-bottom: 12px; }
.subpage-hero p { color: rgba(255,255,255,0.75); font-size: 0.95rem; }

.legal-content {
  padding: 64px 0 80px;
}
.legal-content .container {
  max-width: 800px;
}

.legal-content h2 {
  font-size: 1.3rem;
  margin: 36px 0 12px;
  padding-top: 8px;
  border-top: 2px solid var(--light-gray);
}
.legal-content h2:first-of-type { margin-top: 0; border-top: none; }
.legal-content h3 {
  font-size: 1.05rem;
  margin: 20px 0 8px;
}
.legal-content p, .legal-content li {
  font-size: 0.92rem;
  color: var(--text-light);
  line-height: 1.8;
}
.legal-content ul {
  list-style: disc;
  padding-left: 24px;
  margin: 8px 0 16px;
}
.legal-content a { color: var(--primary); text-decoration: underline; }

.placeholder-box {
  background: #fffbeb;
  border: 1px dashed #d97706;
  border-radius: var(--radius);
  padding: 10px 14px;
  font-size: 0.85rem;
  color: #92400e;
  display: inline-block;
  margin: 2px 0;
}

/* --- Responsive -------------------------------------------- */
@media (max-width: 1024px) {
  :root { --section-py: 70px; }
  .about-grid, .why-grid, .your-topics-inner, .social-inner { gap: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 900px) {
  .about-grid,
  .why-grid,
  .your-topics-inner,
  .social-inner,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .why-image-frame { order: 0; max-width: 420px; }

  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .connection-grid { grid-template-columns: repeat(2, 1fr); }
  .stand-for-grid { grid-template-columns: 1fr; }

  .about-badge { bottom: -16px; right: -8px; }

  .nav-menu { display: none; }
  .nav-toggle { display: flex; }

  .nav-menu.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(10,22,38,0.98);
    backdrop-filter: blur(12px);
    padding: 16px 24px 24px;
    gap: 4px;
    border-top: 1px solid rgba(255,255,255,0.08);
  }

  .nav-cta {
    width: fit-content;
    margin-top: 8px;
  }
}

@media (max-width: 640px) {
  :root { --section-py: 56px; }

  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-actions .btn { width: 100%; justify-content: center; }

  .values-grid { grid-template-columns: 1fr; }
  .connection-grid { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-legal-links { flex-wrap: wrap; justify-content: center; }

  .form-row { grid-template-columns: 1fr; }
  .contact-form-card { padding: 28px 20px; }

  .trust-bar-inner { gap: 20px; }

  .social-feed-grid { grid-template-columns: repeat(2, 1fr); }

  .cookie-inner { flex-direction: column; gap: 16px; }
  .cookie-actions { width: 100%; }

  .cookie-modal-box { padding: 24px 20px; }
  .cookie-modal-actions { flex-direction: column; }
}
