/* ═══════════════════════════════════════════════════════
   FLORIAN MAUL – Design
   Editorial · Warm · Menschlich
═══════════════════════════════════════════════════════ */

:root {
  /* Farben */
  --navy:        #1C2B4A;
  --navy-light:  #253660;
  --gold:        #C9973A;
  --gold-light:  #E8B95A;
  --cream:       #F7F4EE;
  --cream-dark:  #EDE9E0;
  --white:       #FFFFFF;
  --text:        #141414;
  --text-mid:    #4A4A4A;
  --text-muted:  #888;
  --border:      #E0DBD1;

  /* Schriften */
  --font-head: 'Sora', sans-serif;
  --font-body: 'DM Sans', sans-serif;

  /* Abstände */
  --section-pad: 7rem 2rem;
  --radius:      6px;
  --radius-lg:   14px;

  /* Schatten */
  --shadow:    0 2px 12px rgba(28,43,74,0.08);
  --shadow-md: 0 6px 28px rgba(28,43,74,0.11);

  --transition: 0.25s ease;
}

/* ── Reset ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { border: none; background: none; cursor: pointer; font: inherit; }

/* ── Container ──────────────────────────────────────── */
.container {
  width: min(1160px, 100% - 3rem);
  margin-inline: auto;
}

/* ── Typografie-Helpers ─────────────────────────────── */
.section-label {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.section-label.light { color: rgba(255,255,255,0.6); }

.section-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 3.8vw, 3.2rem);
  font-weight: 800;
  line-height: 1.12;
  color: var(--navy);
  margin-bottom: 2.5rem;
}

/* ── Buttons ────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  padding: 0.85rem 2rem;
  border-radius: var(--radius);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.01em;
  transition: var(--transition);
  cursor: pointer;
  white-space: nowrap;
}

.btn-light {
  background: var(--white);
  color: var(--navy);
}
.btn-light:hover {
  background: var(--cream);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.5);
}
.btn-outline-light:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-dark {
  background: var(--navy);
  color: var(--white);
}
.btn-dark:hover {
  background: var(--navy-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-full { width: 100%; justify-content: center; }

/* ── Link Arrow ─────────────────────────────────────── */
.link-arrow {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--navy);
  border-bottom: 1.5px solid var(--gold);
  padding-bottom: 1px;
  transition: var(--transition);
  background: none;
  cursor: pointer;
  letter-spacing: 0.01em;
}
.link-arrow:hover {
  color: var(--gold);
}

/* ═══════════════════════════════════════════════════════
   NAVBAR
═══════════════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.4rem 2rem;
  transition: background 0.3s ease, padding 0.3s ease, box-shadow 0.3s ease;
}
.navbar.scrolled {
  background: var(--navy);
  padding: 0.9rem 2rem;
  box-shadow: 0 2px 20px rgba(28,43,74,0.2);
}

.nav-inner {
  max-width: 1160px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.logo-mark {
  width: 38px;
  height: 38px;
  background: var(--gold);
  color: var(--white);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 0.85rem;
  flex-shrink: 0;
  transition: var(--transition);
}
.nav-logo:hover .logo-mark { background: var(--gold-light); }
.logo-name {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  color: var(--white);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.nav-links a {
  font-family: var(--font-head);
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  padding: 0.5rem 0.9rem;
  border-radius: var(--radius);
  transition: var(--transition);
}
.nav-links a:hover { color: var(--white); }
.nav-cta {
  background: var(--gold) !important;
  color: var(--white) !important;
  font-weight: 600 !important;
}
.nav-cta:hover { background: var(--gold-light) !important; }

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.mobile-menu.open { transform: none; }
.mobile-menu ul { text-align: center; }
.mobile-menu li { margin: 1.1rem 0; }
.mobile-menu a {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 700;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
}
.mobile-menu a:hover { color: var(--gold); }

/* ═══════════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════════ */
.hero {
  background: var(--navy);
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 6rem 0 0;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  padding-bottom: 5rem;
}

/* Hero Text */
.hero-top-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.75rem;
  opacity: 0;
  animation: fadeUp 0.7s 0.3s ease forwards;
}
.hero-wappen {
  flex-shrink: 0;
}
.hero-wappen img {
  height: 52px;
  width: auto;
  object-fit: contain;
  opacity: 0.9;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.4));
}

.hero-kicker {
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0;
  opacity: 1;
  animation: none;
}

.hero-headline {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(2.8rem, 5.5vw, 5rem);
  line-height: 1.06;
  color: var(--white);
  margin-bottom: 1.75rem;
}
.h-line {
  display: block;
  opacity: 0;
  transform: translateY(40px);
}
.h-gold { color: var(--gold); }
.h-line:nth-child(1) { animation: lineIn 0.7s 0.5s cubic-bezier(0.2,0,0,1) forwards; }
.h-line:nth-child(2) { animation: lineIn 0.7s 0.65s cubic-bezier(0.2,0,0,1) forwards; }
.h-line:nth-child(3) { animation: lineIn 0.7s 0.8s cubic-bezier(0.2,0,0,1) forwards; }

.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.62);
  line-height: 1.8;
  max-width: 46ch;
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fadeUp 0.7s 1s ease forwards;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.7s 1.15s ease forwards;
}

/* Hero Visual */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  opacity: 0;
  animation: fadeUp 0.9s 0.7s ease forwards;
}

.hero-photo {
  width: clamp(260px, 32vw, 400px);
  aspect-ratio: 3/4;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}
.hero-photo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.photo-placeholder {
  width: 100%;
  height: 100%;
  background: var(--navy-light);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  color: rgba(255,255,255,0.3);
  font-family: var(--font-head);
  font-size: 0.85rem;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
}
.photo-placeholder svg { width: 110px; opacity: 0.6; }

.hero-date-badge {
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;
  background: var(--gold);
  color: var(--white);
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: var(--shadow-md);
}
.hdb-day {
  font-family: var(--font-head);
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1;
}
.hdb-rest {
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 600;
  line-height: 1.5;
}

/* ═══════════════════════════════════════════════════════
   ÜBER FLORIAN
═══════════════════════════════════════════════════════ */
.ueber {
  padding: var(--section-pad);
  background: var(--white);
}

.ueber-grid {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 6rem;
  align-items: start;
}

.ueber-img-wrap {
  position: sticky;
  top: 6rem;
}
.ueber-photo-img {
  width: 100%;
  max-width: 400px;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: top center;
  border-radius: var(--radius-lg);
  display: block;
  margin-inline: auto;
}

.ueber-placeholder {
  width: 100%;
  max-width: 400px;
  aspect-ratio: 3/4;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  color: var(--text-muted);
  font-family: var(--font-head);
  font-size: 0.85rem;
  margin-inline: auto;
}
.ueber-placeholder svg { width: 130px; opacity: 0.4; }

.ueber-text-col { padding-top: 0.5rem; }

.ueber-lead {
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.55;
  color: var(--navy);
  margin-bottom: 1.25rem;
}
.ueber-body {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.85;
  margin-bottom: 1rem;
}

/* Timeline */
.timeline {
  margin-top: 2.5rem;
  border-left: 2px solid var(--border);
  padding-left: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.tl-item {
  display: flex;
  gap: 1.25rem;
  align-items: baseline;
  position: relative;
}
.tl-item::before {
  content: '';
  position: absolute;
  left: -2.1rem;
  top: 0.4rem;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--border);
  transition: var(--transition);
}
.tl-current::before {
  background: var(--gold);
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,151,58,0.2);
}

.tl-year {
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.06em;
  white-space: nowrap;
  min-width: 3.5rem;
}
.tl-text {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.5;
}
.tl-current .tl-text {
  color: var(--navy);
  font-weight: 600;
}

/* Persönliche Fakten-Leiste */
.ueber-facts {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid rgba(28,43,74,0.12);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 2rem;
}
.uf-item {
  display: flex;
  align-items: baseline;
  gap: 1.25rem;
  padding: 0.7rem 1.1rem;
  border-bottom: 1px solid rgba(28,43,74,0.08);
}
.uf-item:last-child { border-bottom: none; }
.uf-label {
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--gold);
  flex-shrink: 0;
  width: 7.5rem;
}
.uf-val {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.5;
}

/* ═══════════════════════════════════════════════════════
   MARQUEE
═══════════════════════════════════════════════════════ */
.marquee-bar {
  background: var(--navy);
  overflow: hidden;
  padding: 1.1rem 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.marquee-track {
  display: flex;
  white-space: nowrap;
  gap: 0;
  animation: marquee 35s linear infinite;
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.04em;
}
.marquee-track .sep { color: var(--gold); margin: 0 0.75rem; }

/* ═══════════════════════════════════════════════════════
   THEMEN
═══════════════════════════════════════════════════════ */
.themen {
  padding: var(--section-pad);
  background: var(--cream);
}

.themen-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
}

.thema-row {
  display: grid;
  grid-template-columns: 3rem 1fr auto;
  gap: 2rem;
  align-items: center;
  padding: 2.25rem 2.5rem;
  border-bottom: 1px solid var(--border);
  transition: background var(--transition);
}
.thema-row:last-child { border-bottom: none; }
.thema-row:hover { background: var(--cream); }

.thema-num {
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.06em;
}

.thema-body h3 {
  font-family: var(--font-head);
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.5rem;
}
.thema-body p {
  font-size: 0.93rem;
  color: var(--text-mid);
  line-height: 1.7;
  max-width: 60ch;
}

.thema-tags {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  flex-shrink: 0;
}
.thema-tags li {
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  text-align: right;
}

/* ═══════════════════════════════════════════════════════
   ORT-STRIP (Malterdingen Fotos)
═══════════════════════════════════════════════════════ */
.ort-strip {
  padding: var(--section-pad);
  background: var(--navy);
  overflow: hidden;
}
.ort-strip-inner {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 2.5rem;
  align-items: center;
  max-width: 1160px;
  margin: 0 auto;
}
.ort-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 0.75rem;
}
.ort-img-wrap {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--navy-light);
}
.ort-img-wrap:first-child {
  grid-column: 1 / -1;
  aspect-ratio: 16/7;
}
.ort-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.ort-img-wrap:hover img { transform: scale(1.04); }
.ort-img-wrap.img-fallback {
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.2);
  font-size: 0.8rem;
}
.ort-caption {
  position: absolute;
  bottom: 0.75rem;
  left: 0.75rem;
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  background: rgba(28,43,74,0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  padding: 0.3rem 0.6rem;
  border-radius: 4px;
}
.ort-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0;
  order: -1;
}
.ort-wappen {
  margin-bottom: 1.5rem;
}
.ort-wappen img {
  height: 72px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.3));
}
.ort-text h3 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 1rem;
}
.ort-text p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}
.ort-facts {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.ort-facts li {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.ort-facts li::before {
  content: '';
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}
.ort-facts span {
  color: var(--gold-light);
  font-weight: 600;
  font-family: var(--font-head);
}
@media (max-width: 1024px) {
  .ort-strip-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .ort-text { order: 0; }
  .ort-images {
    grid-template-columns: 1fr 1fr;
  }
  .ort-img-wrap:first-child {
    grid-column: 1 / -1;
    aspect-ratio: 16/6;
  }
}
@media (max-width: 768px) {
  .ort-strip-inner {
    grid-template-columns: 1fr;
  }
  .ort-images {
    grid-template-columns: 1fr 1fr;
  }
  .ort-img-wrap:first-child {
    aspect-ratio: 16/7;
  }
}
@media (max-width: 480px) {
  .ort-images {
    grid-template-columns: 1fr;
  }
  .ort-img-wrap:first-child {
    aspect-ratio: 4/3;
    grid-column: auto;
  }
  .ort-img-wrap:nth-child(3) { display: none; }
}

/* ═══════════════════════════════════════════════════════
   DIALOG CTA
═══════════════════════════════════════════════════════ */
.dialog-cta {
  position: relative;
  min-height: 62vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.dialog-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center top;
  filter: grayscale(20%);
  transform: scale(1.04);
  transition: transform 8s ease;
}
.dialog-cta:hover .dialog-bg { transform: scale(1); }
.dialog-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(28,43,74,0.92) 0%,
    rgba(28,43,74,0.78) 45%,
    rgba(28,43,74,0.2) 100%
  );
}
.dialog-inner {
  position: relative;
  z-index: 1;
  padding-top: 5rem;
  padding-bottom: 5rem;
}
.dialog-content {
  max-width: 560px;
}
.dialog-headline {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 1.5rem;
}
.dialog-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.85;
  margin-bottom: 2.25rem;
  max-width: 44ch;
}
.btn-gold {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.btn-gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
}
@media (max-width: 768px) {
  .dialog-cta { min-height: 80vw; }
  .dialog-overlay {
    background: linear-gradient(
      180deg,
      rgba(28,43,74,0.85) 0%,
      rgba(28,43,74,0.75) 100%
    );
  }
}

/* ═══════════════════════════════════════════════════════
   STATEMENT
═══════════════════════════════════════════════════════ */
.statement {
  padding: var(--section-pad);
  background: var(--navy);
}

.statement-inner {
  max-width: 800px;
  margin-inline: auto;
}

blockquote {
  font-family: var(--font-head);
  font-size: clamp(1.3rem, 2.8vw, 2rem);
  font-weight: 400;
  line-height: 1.6;
  color: rgba(255,255,255,0.88);
  margin-bottom: 2.5rem;
  quotes: none;
  font-style: italic;
}

.statement-name {
  font-family: var(--font-head);
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.04em;
  border-left: 3px solid var(--gold);
  padding-left: 1rem;
}

/* ═══════════════════════════════════════════════════════
   TERMINE
═══════════════════════════════════════════════════════ */
.termine {
  padding: var(--section-pad);
  background: var(--white);
}

.termine-list {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.termin-row {
  display: grid;
  grid-template-columns: 5rem 1fr auto;
  gap: 2rem;
  align-items: center;
  padding: 1.75rem 2.5rem;
  border-bottom: 1px solid var(--border);
  transition: background var(--transition);
}
.termin-row:last-child { border-bottom: none; }
.termin-row:hover { background: var(--cream); }

.termin-date {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.1;
}
.td-day {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 800;
  color: var(--navy);
}
.td-month {
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}

.termin-details {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.termin-details strong {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
}
.termin-details span {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.termin-tag {
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: var(--cream);
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  white-space: nowrap;
}

.termin-highlight {
  background: var(--navy);
}
.termin-highlight:hover { background: var(--navy-light); }
.termin-highlight .td-day,
.termin-highlight .termin-details strong { color: var(--white); }
.termin-highlight .td-month,
.termin-highlight .termin-details span { color: rgba(255,255,255,0.5); }

.tag-wahl {
  background: var(--gold) !important;
  color: var(--white) !important;
  border-color: var(--gold) !important;
}

/* ═══════════════════════════════════════════════════════
   MITMACHEN
═══════════════════════════════════════════════════════ */
.mitmachen {
  padding: var(--section-pad);
  background: var(--cream);
}

.mitmachen-sub {
  font-size: 1.05rem;
  color: var(--text-mid);
  line-height: 1.8;
  max-width: 58ch;
  margin-bottom: 3.5rem;
}

.mitmachen-optionen {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.mm-option {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  transition: var(--transition);
}
.mm-option:hover {
  border-color: var(--navy);
  box-shadow: var(--shadow);
}
.mm-num {
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: 0.06em;
  flex-shrink: 0;
  margin-top: 2px;
}
.mm-option strong {
  display: block;
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.5rem;
}
.mm-option p {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.65;
  margin-bottom: 1.1rem;
}

/* ═══════════════════════════════════════════════════════
   WAHLTAG
═══════════════════════════════════════════════════════ */
.wahltag {
  padding: var(--section-pad);
  background: var(--navy);
  text-align: center;
}

.wahltag-top {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  margin-bottom: 4rem;
  flex-wrap: wrap;
}
.wt-date-block {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  line-height: 1;
}
.wt-day {
  font-family: var(--font-head);
  font-size: clamp(6rem, 14vw, 11rem);
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}
.wt-month-year {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.wt-month {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}
.wt-year {
  font-family: var(--font-head);
  font-size: clamp(1rem, 2vw, 1.5rem);
  font-weight: 400;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.08em;
}
.wt-divider {
  width: 2px;
  height: clamp(5rem, 10vw, 8rem);
  background: rgba(201,151,58,0.3);
  flex-shrink: 0;
}
.wt-headline {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  line-height: 1.1;
  color: var(--white);
  text-align: left;
}

.wahltag-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 3.5rem;
}
.wf-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 2rem 1.5rem;
  background: rgba(255,255,255,0.03);
  transition: background 0.25s;
}
.wf-item:hover { background: rgba(255,255,255,0.06); }
.wf-num {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: var(--gold-light);
  line-height: 1;
}
.wf-label {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.5;
  max-width: 18ch;
}

.wahltag-body {
  max-width: 680px;
  margin: 0 auto 3rem;
}
.wahltag-body p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.68);
  line-height: 1.85;
  margin-bottom: 1.2rem;
}
.wahltag-body p:last-child { margin-bottom: 0; }

.wahltag-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}
.btn-lg {
  padding: 1.1rem 2.8rem;
  font-size: 1.05rem;
}
.wt-share-hint {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.4);
  max-width: 42ch;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .wahltag-top { gap: 1.5rem; }
  .wt-divider { display: none; }
  .wt-headline { text-align: center; }
  .wahltag-facts { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════
   KONTAKT
═══════════════════════════════════════════════════════ */
.kontakt {
  padding: var(--section-pad);
  background: var(--white);
}

.kontakt-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 7rem;
  align-items: start;
}

.kontakt-text {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

.kontakt-social {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.social-row {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-mid);
  padding: 0.9rem 1.25rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: var(--transition);
}
.social-row svg { width: 18px; height: 18px; flex-shrink: 0; }
.social-row:hover {
  border-color: var(--navy);
  color: var(--navy);
  background: var(--cream);
}

/* Mailto */
.kontakt-mailto-wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  gap: 1rem;
  padding: 2.5rem;
  background: var(--navy);
  border-radius: var(--radius-lg);
}
.kontakt-mailto-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}
.kontakt-mailto-btn {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  text-decoration: none;
  color: var(--white);
  font-family: var(--font-heading);
  font-size: clamp(1rem, 2.5vw, 1.35rem);
  font-weight: 600;
  transition: color 0.2s;
  word-break: break-all;
}
.kontakt-mailto-btn svg {
  flex-shrink: 0;
  color: var(--gold);
  transition: transform 0.2s;
}
.kontakt-mailto-btn:hover {
  color: var(--gold);
}
.kontakt-mailto-btn:hover svg {
  transform: translateY(-2px);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  margin-bottom: 1.1rem;
}
.form-group label {
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.02em;
}
.form-group input,
.form-group textarea {
  padding: 0.8rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--white);
  outline: none;
  transition: var(--transition);
  resize: vertical;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(28,43,74,0.08);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #bbb; }

.form-check {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  margin-bottom: 1.5rem;
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.55;
}
.form-check input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: var(--navy);
  flex-shrink: 0;
  margin-top: 1px;
}
.form-check a { color: var(--navy); text-decoration: underline; }

/* ═══════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════ */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,0.55);
  padding: 3.5rem 2rem 2rem;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.footer-brand p {
  font-size: 0.85rem;
  line-height: 1.6;
}

.footer-nav {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  align-items: center;
}
.footer-nav a {
  font-family: var(--font-head);
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  transition: var(--transition);
}
.footer-nav a:hover { color: var(--gold); }

.footer-legal {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
}
.footer-legal details {
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  overflow: hidden;
  max-width: 600px;
}
.footer-legal summary {
  padding: 0.8rem 1.2rem;
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
  cursor: pointer;
  user-select: none;
  transition: var(--transition);
}
.footer-legal summary:hover { color: rgba(255,255,255,0.8); }
.legal-text {
  padding: 0 1.2rem 1rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
  line-height: 1.7;
}
.legal-text p { margin-bottom: 0.6rem; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  font-size: 0.78rem;
}

/* ═══════════════════════════════════════════════════════
   ANIMATIONEN
═══════════════════════════════════════════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes lineIn {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ═══════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 3rem; padding-top: 2rem; }
  .hero-visual { justify-content: flex-start; }
  .hero-photo { width: 280px; }
  .ueber-grid { grid-template-columns: 1fr; gap: 3rem; }
  .ueber-img-wrap { position: static; }
  .thema-row { grid-template-columns: 3rem 1fr; }
  .thema-tags { display: none; }
  .kontakt-grid { grid-template-columns: 1fr; gap: 3.5rem; }
}

@media (max-width: 768px) {
  :root { --section-pad: 5rem 2rem; }
  .nav-links { display: none; }
  .burger { display: flex; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .mitmachen-optionen { grid-template-columns: 1fr; }
  .termin-row { grid-template-columns: 4rem 1fr; }
  .termin-tag { display: none; }
  .thema-row { grid-template-columns: 2.5rem 1fr; padding: 1.75rem 1.5rem; gap: 1.25rem; }
  .footer-top { flex-direction: column; }
  .footer-bottom { flex-direction: column; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .uf-item { flex-direction: column; gap: 0.2rem; }
  .uf-label { width: auto; }
}

@media (max-width: 480px) {
  .hero-ctas { flex-direction: column; }
  .btn { width: 100%; justify-content: center; }
  .termin-row { padding: 1.5rem 1.25rem; }
  .hero-wappen img { height: 38px; }
}