/* ============================================================
   Simsonbrunnentag 2026 — Gera
   Design system: Geist (body) + Anton (display)
   Yellow #fbc010 · Ink #1d1d1b
   ============================================================ */

:root {
  --yellow: #fbc010;
  --yellow-deep: #e0a800;
  --ink: #1d1d1b;
  --ink-soft: #2a2a27;
  --paper: #f4f1ea;
  --paper-2: #efeae0;
  --white: #ffffff;
  --line: rgba(29, 29, 27, 0.14);
  --muted: #6c6a63;
  --red: #e13a2e;
  --red-deep: #b82c22;

  --font-body: "Geist", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-display: "Anton", "Geist", sans-serif;

  --container: 1280px;
  --gutter: clamp(20px, 5vw, 64px);
  --topbar-h: 40px;
  --radius: 18px;
  --radius-sm: 12px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --dur: 0.6s;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }

::selection { background: var(--yellow); color: var(--ink); }

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 8px;
  z-index: 200;
  background: var(--ink);
  color: var(--paper);
  padding: 10px 18px;
  border-radius: 8px;
}
.skip-link:focus { left: 12px; }

:focus-visible {
  outline: 3px solid var(--ink);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ---------- Scroll progress ---------- */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0;
  background: var(--yellow);
  z-index: 150;
  transition: width 0.1s linear;
}

/* ---------- Display / typography helpers ---------- */
.display {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  margin: 0;
  font-size: clamp(2.6rem, 6vw, 5.2rem);
}
.display.huge { font-size: clamp(3.4rem, 11vw, 9rem); }

.kicker {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink);
  margin: 0 0 1.4rem;
  display: inline-flex;
  align-items: center;
  gap: 0.7em;
}
.kicker::before {
  content: "";
  width: 34px;
  height: 2px;
  background: var(--ink);
}

.lead {
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 46ch;
}

/* Placeholder text marker (visual cue for copy to replace) */
.ph {
  background: linear-gradient(transparent 62%, rgba(251, 192, 16, 0.45) 0);
}
/* On dark sections: dashed underline keeps light text readable */
.programm .ph,
.kontakt .ph,
.site-footer .ph {
  background: none;
  border-bottom: 1.5px dashed var(--yellow);
}
.footer-legal a.ph { width: fit-content; }

/* ============================================================
   HEADER
   ============================================================ */
/* ---------- Topbar (Veranstalter-Credit) ---------- */
.topbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 101;
  height: var(--topbar-h);
  background: var(--ink);
  color: var(--paper);
  display: flex;
  align-items: center;
  transition: transform 0.4s var(--ease);
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  font-size: 0.78rem;
}
.topbar-cred { display: inline-flex; align-items: baseline; gap: 8px; }
.topbar-label { color: rgba(244,241,234,0.6); letter-spacing: 0.04em; }
.topbar-cred strong { font-weight: 600; letter-spacing: 0.05em; }
.topbar-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--yellow); }
body.scrolled .topbar { transform: translateY(-100%); }

.site-header {
  position: fixed;
  top: var(--topbar-h); left: 0; right: 0;
  z-index: 100;
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease), padding 0.4s var(--ease), top 0.4s var(--ease);
  padding: 18px 0;
}
body.scrolled .site-header { top: 0; }
.site-header.scrolled {
  background: rgba(244, 241, 234, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--line);
  padding: 10px 0;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand img {
  height: clamp(55px, 6vw, 74px);
  width: auto;
  max-width: none;
  aspect-ratio: 234 / 94;
  transition: height 0.4s var(--ease);
}
.site-header.scrolled .brand img { height: 53px; }

.nav {
  display: flex;
  gap: clamp(18px, 2.4vw, 38px);
  margin-left: auto;
  margin-right: clamp(18px, 3vw, 44px);
}
.nav a {
  font-size: 0.95rem;
  font-weight: 500;
  position: relative;
  padding: 6px 2px;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s var(--ease);
}
.nav a:hover::after,
.nav a.active::after { transform: scaleX(1); transform-origin: left; }

.header-actions { display: flex; align-items: center; gap: 14px; }

/* ---------- Buttons ---------- */
.btn {
  --bg: var(--ink);
  --fg: var(--paper);
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  line-height: 1;
  padding: 14px 22px;
  border-radius: 100px;
  background: var(--bg);
  color: var(--fg);
  border: 2px solid var(--bg);
  cursor: pointer;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease);
  white-space: nowrap;
}
.btn svg { width: 1.05em; height: 1.05em; transition: transform 0.3s var(--ease); }
.btn:hover { transform: translateY(-2px); }
.btn:hover svg { transform: translateX(4px); }
.btn:active { transform: translateY(0) scale(0.98); }

.btn-primary { --bg: var(--yellow); --fg: var(--ink); border-color: var(--yellow); }
.btn-primary:hover { --bg: var(--ink); --fg: var(--paper); border-color: var(--ink); }

.header-actions .btn-primary { --bg: var(--red); --fg: var(--white); border-color: var(--red); }
.header-actions .btn-primary:hover { --bg: var(--red-deep); --fg: var(--white); border-color: var(--red-deep); }

.btn-ghost { --bg: transparent; --fg: var(--ink); border-color: var(--ink); }
.btn-ghost:hover { --bg: var(--ink); --fg: var(--paper); }

.btn-ghost-light { --bg: transparent; --fg: var(--paper); border-color: rgba(244,241,234,0.5); }
.btn-ghost-light:hover { --bg: var(--paper); --fg: var(--ink); border-color: var(--paper); }

.btn-lg { padding: 17px 30px; font-size: 1rem; }

/* ---------- Nav toggle (mobile) ---------- */
.nav-toggle {
  display: none;
  width: 46px; height: 46px;
  border: 2px solid var(--ink);
  border-radius: 12px;
  background: transparent;
  cursor: pointer;
  padding: 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 20px; height: 2px;
  background: var(--ink);
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}
body.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
body.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav-scrim {
  position: fixed; inset: 0;
  background: rgba(29,29,27,0.55);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  opacity: 0; visibility: hidden;
  transition: opacity 0.3s var(--ease), visibility 0.3s var(--ease);
  z-index: 98;
}
body.nav-open .nav-scrim { opacity: 1; visibility: visible; }

/* Fix: backdrop-filter auf dem Header macht ihn zum Containing-Block für das
   position:fixed-Nav-Panel → Panel würde beim Scrollen auf Header-Höhe kollabieren.
   Solange das Menü offen ist: Header-Filter aus + Hintergrund-Scroll sperren. */
body.nav-open .site-header { backdrop-filter: none; -webkit-backdrop-filter: none; }
body.nav-open { overflow: hidden; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: stretch;
  padding-top: clamp(116px, 15vh, 168px);
  padding-bottom: 0;
  overflow: hidden;
  background: #f2e8d6;
}
.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  grid-template-rows: 1fr;
  align-items: center;
  gap: clamp(20px, 4vw, 60px);
  z-index: 2;
}

.hero-circle {
  position: absolute;
  left: calc(50% + 30px);
  top: 50%;
  width: clamp(252px, 31vw, 476px);
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  background: var(--yellow);
  border-radius: 50%;
  z-index: 0;
  will-change: transform;
}
.hero-circle::after {
  content: "";
  position: absolute;
  inset: -28px;
  border: 2px solid var(--ink);
  border-radius: 50%;
  opacity: 0.12;
}

.hero-copy { position: relative; align-self: start; }

.hero-title {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  line-height: 0.86;
  letter-spacing: 0.005em;
  margin: 0 0 1.1rem;
  font-size: clamp(3.2rem, 10vw, 9rem);
}
.reveal-line { display: block; overflow: hidden; padding-top: 0.12em; margin-top: -0.12em; }
.reveal-line > span { display: block; }
.reveal-line.outline > span {
  color: transparent;
  -webkit-text-stroke: 2px var(--ink);
  text-stroke: 2px var(--ink);
}

.hero-lead {
  font-size: clamp(1.05rem, 1.5vw, 1.28rem);
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 42ch;
  margin: 0 0 1.3rem;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(20px, 4vw, 52px);
  margin-bottom: 1.4rem;
  padding-top: 1.1rem;
  border-top: 1.5px solid var(--line);
}
.meta-block { display: flex; flex-direction: column; gap: 4px; }
.meta-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}
.meta-value { font-size: 1.02rem; font-weight: 600; }

.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; }

.hero-figure {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  align-self: end;
  min-height: 60svh;
}
.hero-statue {
  position: relative;
  z-index: 1;
  height: clamp(380px, 72vh, 760px);
  width: auto;
  max-width: none;
  will-change: transform;
  /* Ränder weich in den Hintergrund auslaufen lassen (links/rechts/oben),
     unten hart, da der Sockel dort auf dem Balken aufsitzt. */
  -webkit-mask-image:
    linear-gradient(to right, transparent 0, #000 5%, #000 95%, transparent 100%),
    linear-gradient(to bottom, transparent 0, #000 5%, #000 100%);
  -webkit-mask-composite: source-in;
  mask-image:
    linear-gradient(to right, transparent 0, #000 5%, #000 95%, transparent 100%),
    linear-gradient(to bottom, transparent 0, #000 5%, #000 100%);
  mask-composite: intersect;
}

/* Hero decorations */
.hero-deco { position: absolute; inset: 0; z-index: 1; pointer-events: none; color: var(--ink); }
.hero-side {
  position: absolute;
  left: clamp(8px, 1.4vw, 22px);
  top: 50%;
  transform: rotate(180deg) translateX(50%);
  writing-mode: vertical-rl;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted);
}
.hero-index {
  position: absolute;
  right: var(--gutter);
  top: clamp(120px, 16vh, 175px);
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.4rem);
  color: var(--ink);
  opacity: 0.85;
}
.hero-index::before {
  content: "";
  position: absolute;
  right: 110%;
  top: 50%;
  width: clamp(30px, 6vw, 80px);
  height: 2px;
  background: var(--ink);
}
.hero-wave {
  position: absolute;
  left: clamp(20px, 30vw, 380px);
  top: clamp(110px, 15vh, 165px);
  width: clamp(60px, 8vw, 100px);
  color: var(--ink);
  opacity: 0.6;
}

.hero-scroll {
  position: absolute;
  left: 50%;
  bottom: 26px;
  transform: translateX(-50%);
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  z-index: 3;
}
.hero-scroll svg { width: 20px; height: 20px; animation: bob 1.8s var(--ease) infinite; }
@keyframes bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(6px); } }

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee {
  background: var(--ink);
  color: var(--yellow);
  overflow: hidden;
  padding: 18px 0;
  border-block: 2px solid var(--ink);
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 28s linear infinite;
}
.marquee-track span {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: clamp(1.4rem, 3vw, 2.4rem);
  letter-spacing: 0.04em;
  padding-right: 0.6em;
  white-space: nowrap;
}
.marquee-track i { color: var(--paper); font-style: normal; padding: 0 0.4em; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ============================================================
   SECTION basics
   ============================================================ */
.section { padding: clamp(70px, 11vh, 150px) 0; }

.section-head {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: clamp(28px, 5vh, 56px);
}
.section-num {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--yellow-deep);
  background: var(--ink);
  color: var(--yellow);
  width: 46px; height: 46px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
}
.section-tag {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}
.section-head.light .section-tag { color: rgba(244,241,234,0.65); }
.section-head.light .section-num { background: var(--yellow); color: var(--ink); }
.section-tag.light { color: rgba(244,241,234,0.7); display:inline-block; margin-bottom: 1rem; }

/* ============================================================
   ÜBER DEN BRUNNEN
   ============================================================ */
.brunnen { background: var(--paper); }
.brunnen-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(30px, 6vw, 80px);
  align-items: center;
}
.brunnen-sub {
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  font-weight: 600;
  margin: 0 0 1rem;
  color: var(--ink);
}
.brunnen-text p { margin: 0 0 1.2rem; }
.bullets { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.bullets li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
}
.bullets li::before {
  content: "";
  flex: 0 0 auto;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--yellow-deep);
}
.brunnen-text .display { margin-bottom: 1.4rem; }
.brunnen-text p { margin: 0 0 1.1rem; max-width: 52ch; }
.brunnen-text .lead { margin-bottom: 1.4rem; }

.brunnen-media {
  position: relative;
  margin: 0;
}
.brunnen-media img {
  position: relative;
  width: 100%;
  border-radius: var(--radius);
  aspect-ratio: 3 / 4;
  object-fit: cover;
  z-index: 1;
}
.brunnen-media figcaption {
  font-size: 0.82rem;
  color: var(--muted);
  margin-top: 0.8rem;
  position: relative;
  z-index: 1;
}

.facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: clamp(40px, 7vh, 80px);
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.fact {
  background: var(--paper);
  padding: clamp(22px, 3vw, 38px) clamp(18px, 2vw, 28px);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.fact-num {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1;
  color: var(--ink);
}
.fact-num.ph { width: fit-content; }
.fact-label {
  font-size: 0.86rem;
  font-weight: 500;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ============================================================
   PROGRAMM (dark)
   ============================================================ */
.programm {
  background: var(--ink);
  color: var(--paper);
}
.programm .display { color: var(--paper); margin-bottom: 1rem; }
.programm-note {
  color: var(--yellow);
  font-weight: 600;
  font-size: clamp(1.05rem, 1.7vw, 1.35rem);
  margin: 0 0 1rem;
  max-width: 50ch;
}
.light-lead { color: rgba(244,241,234,0.72); max-width: 50ch; margin: 0 0 clamp(34px, 5vh, 60px); }

.timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  counter-reset: t;
}
.t-item {
  padding: clamp(20px, 2.6vh, 30px) 0;
  border-top: 1.5px solid rgba(244,241,234,0.16);
  transition: padding-left 0.4s var(--ease);
}
.t-item:last-child { border-bottom: 1.5px solid rgba(244,241,234,0.16); }
.t-item:hover { padding-left: 14px; }
.t-time {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  color: var(--yellow);
  line-height: 1;
}
.t-body h3 {
  margin: 0 0 0.4rem;
  font-size: clamp(1.15rem, 2vw, 1.6rem);
  font-weight: 600;
}
.t-body p { margin: 0; color: rgba(244,241,234,0.66); max-width: 56ch; }

.programm-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  margin-top: clamp(1.5rem, 3vh, 2.5rem);
}
.programm-col {
  border-top: 1.5px solid rgba(244,241,234,0.16);
  padding-top: clamp(20px, 2.6vh, 30px);
}
.programm-col h3 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.15rem, 2vw, 1.6rem);
  font-weight: 600;
  color: var(--paper);
}
.programm-col p { margin: 0; color: rgba(244,241,234,0.66); }
.programm-list {
  margin: 0.6rem 0 0 1.1rem;
  padding: 0;
  color: rgba(244,241,234,0.66);
  line-height: 1.7;
}
.programm-list li { margin-bottom: 0.2rem; }

/* ============================================================
   ORT & ANREISE
   ============================================================ */
.anreise { background: var(--white); }
.anreise-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(30px, 5vw, 70px);
  align-items: center;
}
.info-list { margin-top: 2rem; display: flex; flex-direction: column; gap: 4px; }
.info-row {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px 0;
  border-top: 1.5px solid var(--line);
}
.info-row svg { width: 26px; height: 26px; flex-shrink: 0; color: var(--ink); margin-top: 2px; }
.info-label {
  display: block;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 3px;
}
.info-value { font-size: 1.04rem; font-weight: 500; }

.map-card {
  position: relative;
  display: block;
  aspect-ratio: 4 / 3.4;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--paper-2);
  border: 1.5px solid var(--line);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.map-card:hover { transform: translateY(-4px); box-shadow: 0 24px 50px rgba(29,29,27,0.16); }
.map-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 38px 38px;
  opacity: 0.7;
}
.map-grid::after {
  content: "";
  position: absolute;
  left: 8%; right: 30%; top: 46%;
  height: 26px;
  background: var(--yellow);
  transform: rotate(-8deg);
  opacity: 0.5;
}
.map-pin {
  position: absolute;
  left: 50%; top: 44%;
  transform: translate(-50%, -100%);
  color: var(--ink);
}
.map-pin svg { width: 52px; height: 52px; filter: drop-shadow(0 6px 10px rgba(29,29,27,0.3)); }
.map-pin::after {
  content: "";
  position: absolute;
  left: 50%; bottom: -6px;
  width: 14px; height: 5px;
  background: rgba(29,29,27,0.25);
  border-radius: 50%;
  transform: translateX(-50%);
}
.map-label {
  position: absolute;
  left: 18px; bottom: 18px; right: 18px;
  background: var(--ink);
  color: var(--paper);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.map-label strong { font-size: 1.05rem; }
.map-label span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: var(--yellow);
}
.map-label span svg { width: 16px; height: 16px; }

/* ============================================================
   GALERIE
   ============================================================ */
.galerie { background: var(--paper); }
.galerie .display { margin-bottom: clamp(28px, 4vh, 48px); }
/* Masonry via CSS-Spalten: Bilder ungeschnitten, auf Spaltenbreite skaliert */
.gallery {
  column-count: 3;
  column-gap: 16px;
}
.g-item {
  margin: 0 0 16px;
  break-inside: avoid;
  overflow: hidden;
  border-radius: var(--radius-sm);
  background: var(--paper-2);
}
.g-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.7s var(--ease);
}
.g-item:hover img { transform: scale(1.04); }
.gallery-note { font-size: 0.85rem; color: var(--muted); margin-top: 1.2rem; }

/* ============================================================
   SPONSOREN
   ============================================================ */
.sponsoren { background: var(--white); }
.sponsoren .display { margin-bottom: clamp(28px, 4vh, 48px); }
.sponsor-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  max-width: 600px;
  margin: 0 auto;
}
.sponsor-card {
  margin: 0;
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  min-height: 220px;
  display: grid;
  place-items: center;
  padding: clamp(20px, 3vw, 34px);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.sponsor-card:hover { transform: translateY(-5px); box-shadow: 0 22px 44px rgba(29,29,27,0.1); }
.sponsor-link {
  display: grid;
  place-items: center;
  width: 100%;
}
.sponsor-card img {
  max-height: 220px;
  max-width: 94%;
  width: auto;
  object-fit: contain;
  transition: transform 0.4s var(--ease);
}
.sponsor-card a:hover img { transform: scale(1.05); }
.sponsor-fallback {
  display: none;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  color: var(--ink);
  opacity: 0.5;
  text-align: center;
}
.sponsor-subheading {
  font-size: clamp(1.3rem, 2.2vw, 1.8rem);
  font-weight: 600;
  margin: clamp(46px, 7vh, 90px) 0 1.5rem;
  padding-top: clamp(28px, 4vh, 48px);
  border-top: 2px solid var(--ink);
  text-align: center;
}

/* ============================================================
   KONTAKT / CTA (dark)
   ============================================================ */
.kontakt { background: var(--ink); color: var(--paper); }
.kontakt-inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: clamp(34px, 5vw, 80px);
  align-items: center;
}
.kontakt .display { color: var(--paper); margin-bottom: 1.2rem; }
.kontakt .hl { color: var(--yellow); }

.kontakt-card {
  background: var(--ink-soft);
  border: 1.5px solid rgba(244,241,234,0.14);
  border-radius: var(--radius);
  padding: clamp(26px, 3vw, 40px);
}
.kontakt-card h3 {
  margin: 0 0 0.4rem;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(244,241,234,0.6);
  font-weight: 600;
}
.kontakt-card > p { margin: 0 0 1.6rem; font-size: 1.4rem; font-weight: 600; }
.contact-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 16px; }
.contact-list li { display: flex; align-items: center; gap: 12px; }
.contact-list svg { width: 22px; height: 22px; color: var(--yellow); flex-shrink: 0; }
.contact-list a:hover { color: var(--yellow); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: #161614;
  color: var(--paper);
  padding: clamp(50px, 8vh, 90px) 0 30px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.footer-logo { height: 60px; width: auto; margin-bottom: 1rem; }
.footer-brand p { color: rgba(244,241,234,0.6); max-width: 32ch; margin: 0; }
.footer-nav { display: flex; flex-direction: column; gap: 12px; }
.footer-nav a { color: rgba(244,241,234,0.78); font-weight: 500; width: fit-content; }
.footer-nav a:hover { color: var(--yellow); }
.footer-legal { display: flex; flex-direction: column; gap: 12px; font-size: 0.9rem; }
.footer-legal a { color: rgba(244,241,234,0.78); }
.footer-legal a:hover { color: var(--yellow); }
.footer-legal span { color: rgba(244,241,234,0.45); margin-top: 6px; }

.footer-bottom {
  margin-top: clamp(36px, 5vh, 60px);
  padding-top: 22px;
  border-top: 1px solid rgba(244,241,234,0.14);
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 0.9rem;
}
.footer-bottom .footer-legal {
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 18px;
}
.footer-bottom .footer-legal span { margin-top: 0; }
.footer-copy { color: rgba(244,241,234,0.45); }

/* ============================================================
   REVEAL ANIMATIONS
   ============================================================ */
[data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
  transition-delay: var(--reveal-delay, 0ms);
}
[data-reveal].in { opacity: 1; transform: none; }

.reveal-line > [data-reveal] { transform: translateY(105%); }
.reveal-line > [data-reveal].in { transform: none; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1080px) {
  .hero-inner { grid-template-columns: 1.1fr 0.9fr; }
  .hero-statue { height: clamp(340px, 56vh, 600px); }
}

@media (max-width: 900px) {
  .nav, .header-actions .btn { display: none; }
  .nav-toggle { display: flex; position: relative; z-index: 101; }
  .header-actions { margin-left: auto; }

  .nav {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(78vw, 340px);
    background: var(--paper);
    flex-direction: column;
    justify-content: center;
    gap: 8px;
    padding: 40px;
    margin: 0;
    transform: translateX(100%);
    transition: transform 0.4s var(--ease);
    z-index: 99;
    box-shadow: -20px 0 60px rgba(29,29,27,0.2);
  }
  body.nav-open .nav { transform: translateX(0); display: flex; }
  .nav a {
    font-size: 1.5rem;
    font-family: var(--font-display);
    text-transform: uppercase;
    opacity: 0;
    transform: translateX(26px);
    transition: opacity 0.45s var(--ease), transform 0.45s var(--ease), color 0.25s var(--ease);
  }
  .nav a::after { display: none; }
  body.nav-open .nav a { opacity: 1; transform: none; }
  body.nav-open .nav a:nth-child(1) { transition-delay: 0.10s; }
  body.nav-open .nav a:nth-child(2) { transition-delay: 0.16s; }
  body.nav-open .nav a:nth-child(3) { transition-delay: 0.22s; }
  body.nav-open .nav a:nth-child(4) { transition-delay: 0.28s; }
  body.nav-open .nav a:nth-child(5) { transition-delay: 0.34s; }
  body.nav-open .nav a:nth-child(6) { transition-delay: 0.40s; }
  .nav a.active { color: var(--yellow-deep); }

  .hero { align-items: center; padding-bottom: 0; }
  .hero-inner { grid-template-columns: 1fr; grid-template-rows: auto; }
  .hero-copy { align-self: stretch; }
  .hero-figure { min-height: auto; margin-top: clamp(20px, 5vw, 40px); }
  .hero-statue { height: clamp(300px, 48vh, 460px); }
  .hero-circle { left: 50%; top: 50%; right: auto; transform: translate(-50%, -50%); width: clamp(240px, 62vw, 360px); }
  .hero-side, .hero-wave { display: none; }
  .hero-scroll { display: none; }
  .hero-meta { gap: 28px; }

  .brunnen-grid, .anreise-grid, .kontakt-inner { grid-template-columns: 1fr; }
  .brunnen-media { max-width: 460px; }
  .facts { grid-template-columns: repeat(2, 1fr); }

  .footer-inner { grid-template-columns: 1fr; gap: 30px; }
  .t-item { grid-template-columns: 90px 1fr; gap: 16px; }
}

@media (max-width: 540px) {
  body { font-size: 16px; }
  .facts { grid-template-columns: 1fr 1fr; }
  .hero-cta .btn, .kontakt-cta .btn { flex: 1; justify-content: center; }
  .t-item { grid-template-columns: 1fr; gap: 6px; }
  .t-time { font-size: 1.5rem; }
}

/* ============================================================
   NEW SECTION COMPONENTS (real content)
   ============================================================ */
.display.light { color: var(--paper); }
.display em, .section-tag em, h2 em, h3 em { font-style: italic; }

/* ---------- Begrüßung ---------- */
.welcome { background: var(--white); }
.welcome-inner {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  gap: clamp(30px, 6vw, 80px);
  align-items: center;
}
.welcome-lead {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  margin: 0 0 1.4rem;
  letter-spacing: 0.01em;
}
.welcome-copy p { margin: 0 0 1.2rem; max-width: 60ch; font-size: 1.08rem; }
.welcome-copy em { font-style: italic; color: var(--yellow-deep); font-weight: 600; }
.welcome-sig {
  font-weight: 700;
  color: var(--ink);
}
.motto {
  position: relative;
  background: var(--yellow);
  border-radius: var(--radius);
  padding: clamp(28px, 4vw, 48px);
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
}
.motto-mark {
  position: absolute;
  top: 0.1em; left: 0.3em;
  font-family: var(--font-display);
  font-size: 7rem;
  color: var(--ink);
  opacity: 0.18;
  line-height: 1;
}
.motto-text {
  position: relative;
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.05;
  margin: 0;
}
.motto-text em { font-style: italic; }

/* ---------- Geschichte / Timeline ---------- */
.history {
  margin-top: clamp(46px, 7vh, 90px);
  border-top: 2px solid var(--ink);
  padding-top: clamp(28px, 4vh, 48px);
}
.history-title {
  font-size: clamp(1.3rem, 2.2vw, 1.8rem);
  font-weight: 600;
  margin: 0 0 2rem;
}
.history-list {
  list-style: none;
  margin: 0; padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 3vw, 44px);
}
.h-step {
  position: relative;
  padding-top: 28px;
  border-top: 3px solid var(--line);
}
.h-step--accent { border-top-color: var(--yellow); }
.h-year {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  line-height: 1;
  margin-bottom: 0.6rem;
}
.h-step--accent .h-year { color: var(--yellow-deep); }
.h-step p { margin: 0; color: var(--ink-soft); font-size: 0.98rem; }
.h-step em { font-style: italic; }
.history-src { margin-top: 1.6rem; font-size: 0.85rem; color: var(--muted); }
.history-src a { color: var(--yellow-deep); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }

/* ---------- Warum + Cards ---------- */
.warum { background: var(--paper); }
.warum-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 5vw, 70px);
  align-items: end;
  margin-bottom: clamp(34px, 5vh, 64px);
}
.warum-intro .section-tag { display: block; margin-bottom: 1rem; }
.warum-body p { margin: 0 0 1rem; max-width: 52ch; }
.warum-body strong { font-weight: 700; }
.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.card {
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(24px, 2.4vw, 34px);
  min-height: 230px;
  display: flex;
  flex-direction: column;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.card:hover { transform: translateY(-5px); box-shadow: 0 24px 44px rgba(29,29,27,0.12); }
.card-num {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--yellow-deep);
  margin-bottom: auto;
}
.card h4 { font-size: 1.25rem; font-weight: 700; margin: 1.6rem 0 0.5rem; }
.card p { margin: 0; color: var(--ink-soft); font-size: 0.96rem; }
.card--dark { background: var(--ink); border-color: var(--ink); color: var(--paper); }
.card--dark .card-num { color: var(--yellow); }
.card--dark p { color: rgba(244,241,234,0.7); }
.card--gold { background: var(--yellow); border-color: var(--yellow); }
.card--gold .card-num { color: var(--ink); }
.card--gold p { color: var(--ink-soft); }

/* ---------- Bauhaustag Lite ---------- */
.lite { background: var(--white); }
.lite-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: clamp(30px, 5vw, 70px);
  align-items: center;
}
.lite-copy .section-tag { display: block; margin-bottom: 0.8rem; }
.lite-copy .display { margin-bottom: 1.2rem; }
.lite-copy .lead { margin-bottom: 1.6rem; }
.tag-grid {
  list-style: none;
  margin: 0; padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.tag-grid li {
  border: 1.5px solid var(--ink);
  border-radius: 100px;
  padding: 8px 16px;
  font-size: 0.9rem;
  font-weight: 500;
}
.lite-cta {
  position: relative;
  background: var(--ink);
  color: var(--paper);
  border-radius: var(--radius);
  padding: clamp(28px, 3vw, 44px);
  overflow: hidden;
}
.lite-year {
  position: absolute;
  top: -10px; right: 14px;
  font-family: var(--font-display);
  font-size: 6rem;
  color: rgba(251,192,16,0.16);
  line-height: 1;
}
.lite-cta h3 {
  position: relative;
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1;
  margin: 0 0 1rem;
}
.lite-cta p { color: rgba(244,241,234,0.72); margin: 0 0 1.6rem; }

/* ---------- Bewegung zum Markt (dark) ---------- */
.bewegung { background: var(--ink); color: var(--paper); }
.bewegung .display { color: var(--paper); margin-bottom: clamp(34px, 5vh, 60px); }
.routes {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.route {
  background: var(--ink-soft);
  border: 1.5px solid rgba(244,241,234,0.14);
  border-radius: var(--radius);
  padding: clamp(24px, 2.4vw, 34px);
  display: flex;
  flex-direction: column;
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease);
}
.route-type { margin-top: auto; }
.routes-center { display: none; }
.routes-map { display: none; }
.route:hover { transform: translateY(-5px); border-color: var(--yellow); }
.route-pin {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--ink);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: 1.4rem;
}
.route h4 { font-size: 1.5rem; font-weight: 700; margin: 0 0 0.3rem; }
.route p { margin: 0 0 1rem; color: rgba(244,241,234,0.7); font-size: 0.96rem; }
.route-type {
  display: inline-block;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--yellow);
  border-top: 1px solid rgba(244,241,234,0.18);
  padding-top: 0.8rem;
  width: 100%;
}
.bewegung-note {
  margin-top: clamp(30px, 4vh, 50px);
  color: rgba(244,241,234,0.7);
  font-size: 1.02rem;
  text-align: center;
}
.bewegung-note a { color: var(--yellow); font-weight: 600; }

/* ---------- Accordion ---------- */
.accordion {
  margin: clamp(2rem, 4vh, 3.5rem) 0 clamp(2.5rem, 5vh, 4rem);
}
.acc-item {
  border-top: 1px solid rgba(244,241,234,0.25);
}
.acc-item:last-child {
  border-bottom: 1px solid rgba(244,241,234,0.25);
}
.acc-trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 3.3vw, 2.25rem);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--yellow);
  text-align: left;
  transition: color 0.2s;
}
.acc-trigger:hover { color: var(--paper); }
.acc-trigger svg {
  width: 1.6rem;
  height: 1.6rem;
  flex-shrink: 0;
  transition: transform 0.3s ease;
  color: inherit;
}
.acc-trigger[aria-expanded="true"] svg { transform: rotate(180deg); }
.acc-body[hidden] { display: none; }
.acc-body { overflow: hidden; }
.acc-content {
  padding: 0.25rem 0 2.25rem;
  color: rgba(244,241,234,0.88);
  line-height: 1.7;
}
.acc-content p { margin-bottom: 0.2rem; }
.acc-h1 {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.8vw, 2rem);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--yellow);
  margin: 0 0 0.6rem;
}
.acc-h2 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  color: var(--paper);
  margin: 0 0 1.25rem;
  line-height: 1.5;
}
.acc-label {
  display: block;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--yellow);
  letter-spacing: 0.05em;
  font-size: 0.85rem;
  margin-top: 1rem;
}
.acc-divider {
  border: none;
  border-top: 1px solid var(--yellow);
  margin: 0;
}

/* ---------- Accordion light variant (--lite section) ---------- */
.accordion--lite .acc-item { border-top-color: rgba(29,29,27,0.16); }
.accordion--lite .acc-item:last-child { border-bottom-color: rgba(29,29,27,0.16); }
.accordion--lite .acc-trigger { color: var(--ink); }
.accordion--lite .acc-trigger:hover { color: var(--yellow); }
.accordion--lite .acc-content { color: rgba(29,29,27,0.82); }
.accordion--lite .acc-divider { border-top-color: rgba(29,29,27,0.18); }
.acc-img {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  margin-bottom: 1.5rem;
  display: block;
}
.acc-list {
  margin: 0.75rem 0 0 1.1rem;
  padding: 0;
  line-height: 1.75;
}
.acc-list li { margin-bottom: 0.15rem; }
.accordion--lite .acc-list { color: rgba(29,29,27,0.82); }
.acc-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
  margin-top: 1.25rem;
}
.acc-links a {
  color: var(--yellow);
  text-decoration: underline;
  text-underline-offset: 3px;
  font-size: 0.9rem;
}
.acc-links a:hover { color: var(--paper); }
.accordion--lite .acc-links a { color: var(--ink); }
.accordion--lite .acc-links a:hover { color: var(--yellow); }
.acc-source {
  margin-top: 1.25rem;
  font-size: 0.78rem;
  opacity: 0.5;
  font-style: italic;
}
.gesichter-heading {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4.8vw, 3.6rem);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--paper);
  margin: clamp(3rem, 6vh, 5rem) 0 clamp(1rem, 2vh, 1.5rem);
}
.acc-img--portrait {
  max-height: 520px;
  object-fit: cover;
  object-position: top center;
}
.acc-img--map {
  max-height: none;
  object-fit: contain;
  background: var(--white);
  border-radius: var(--radius);
}

/* ---------- Vereine & Ortsteile ---------- */
.vereine { background: var(--paper); }
.vereine .display { margin-bottom: 1.4rem; }
.vereine-lead { margin-bottom: 2rem; max-width: 60ch; }
.pills { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: clamp(34px, 5vh, 60px); }
.pill {
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: 100px;
  padding: 10px 20px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease);
}
.pill:hover { background: var(--yellow); border-color: var(--yellow); }
.vereine-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 3vw, 44px);
  border-top: 2px solid var(--ink);
  padding-top: clamp(26px, 3vh, 40px);
}
.vereine-col h4 { font-size: 1.2rem; font-weight: 700; margin: 0 0 0.5rem; }
.vereine-col p { margin: 0; color: var(--ink-soft); }

/* ---------- Kinder & Familie / Bühne duo ---------- */
.familie { background: var(--white); }
.duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.duo-card {
  border-radius: var(--radius);
  padding: clamp(32px, 4vw, 56px);
  min-height: 360px;
  display: flex;
  flex-direction: column;
}
.duo-card .section-tag { display: block; margin-bottom: auto; }
.duo-card--gold { background: var(--yellow); color: var(--ink); }
.duo-card--dark { background: var(--ink); color: var(--paper); }
.duo-title {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 0.95;
  margin: 2rem 0 1.6rem;
}
.check-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.check-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
  font-size: 1.05rem;
}
.check-list li::before {
  content: "";
  width: 18px; height: 18px;
  border-radius: 50%;
  flex-shrink: 0;
  background: currentColor;
  opacity: 0.18;
}
.duo-card--gold .check-list li::before { background: var(--ink); opacity: 1; }
.duo-card--dark .check-list li::before { background: var(--yellow); opacity: 1; }

/* ---------- Mitmachen ---------- */
.mitmachen { background: var(--paper); }
.mm-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 60px;
}
.mm {
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(32px, 4vw, 56px);
  display: flex;
  flex-direction: column;
  min-height: 360px;
}
.mm-tag {
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.4rem;
}
.mm h4 {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 700;
  line-height: 0.95;
  margin: 0 0 1.2rem;
}
.mm p { margin: 0 0 1.6rem; color: var(--ink-soft); font-size: 0.96rem; flex-grow: 1; }
.mm .btn { align-self: flex-start; }
.mm--gold { background: var(--yellow); border-color: var(--yellow); }
.mm--gold .mm-tag { color: var(--ink); }
.mm--gold p { color: var(--ink-soft); }
.mm--dark { background: var(--ink); border-color: var(--ink); color: var(--paper); }
.mm--dark .mm-tag { color: var(--yellow); }
.mm--dark p { color: rgba(244,241,234,0.7); }

/* ---------- News ---------- */
.news { background: var(--white); }
.news .display { margin-bottom: clamp(28px, 4vh, 48px); }
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 3vw, 40px);
}
.news-item {
  border-top: 3px solid var(--ink);
  padding-top: 22px;
}
.news-date {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--yellow-deep);
  margin-bottom: 0.8rem;
}
.news-item h4 { font-size: 1.25rem; font-weight: 700; margin: 0 0 0.6rem; }
.news-item p { margin: 0; color: var(--ink-soft); font-size: 0.96rem; }

/* ---------- Gallery social card ---------- */
.g-social {
  background: var(--ink);
  display: grid;
  place-items: center;
  text-align: center;
  min-height: 320px;
}
.g-social-inner { display: flex; flex-direction: column; align-items: center; gap: 8px; padding: 20px; }
.fb-mark {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--yellow);
  color: var(--ink);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 1.8rem;
  margin-bottom: 8px;
}
.g-social-inner strong { color: var(--paper); font-size: 1.05rem; }
.g-social-inner span { color: rgba(244,241,234,0.6); font-size: 0.88rem; }

/* ============================================================
   FOOTER (real content)
   ============================================================ */
.footer-cta {
  text-align: center;
  padding-bottom: clamp(46px, 7vh, 90px);
  margin-bottom: clamp(46px, 7vh, 90px);
  border-bottom: 1.5px solid rgba(244,241,234,0.14);
}
.footer-cta .section-tag { display: inline-block; margin-bottom: 1rem; }
.footer-cta .hl { color: var(--yellow); }
.footer-cta-lead { color: rgba(244,241,234,0.72); font-size: 1.1rem; margin: 0 auto 2rem; max-width: 44ch; }
.footer-cta .btn { margin-inline: auto; }

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 0.8fr;
  gap: 40px;
  align-items: start;
}
.footer-col h4 {
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(244,241,234,0.55);
  margin: 0 0 1rem;
  font-weight: 600;
}
.footer-col address { font-style: normal; line-height: 1.7; color: rgba(244,241,234,0.85); }
.footer-col address strong { color: var(--paper); }
.footer-phone { margin: 1rem 0 0; }
.footer-phone a { color: var(--yellow); font-weight: 600; }
.footer-motto { margin: 1rem 0 0; }
.footer-motto em { font-style: italic; color: rgba(244,241,234,0.7); }

/* ============================================================
   LEGAL PAGES (Impressum / Datenschutz)
   ============================================================ */
.legal-hero {
  background: var(--paper);
  padding: calc(var(--topbar-h) + 140px) 0 clamp(34px, 5vh, 60px);
}
.legal-hero .kicker { margin-bottom: 1rem; }
.legal-hero .display { font-size: clamp(3rem, 9vw, 7rem); }
.legal-body { background: var(--white); padding: clamp(44px, 7vh, 90px) 0 clamp(60px, 10vh, 120px); }
.legal-prose { max-width: 820px; }
.legal-prose > p:first-child { font-size: 1.1rem; color: var(--ink); }
.legal-prose h2 {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: clamp(1.4rem, 2.6vw, 2.1rem);
  line-height: 1.05;
  margin: 2.6rem 0 0.9rem;
  padding-top: 1.6rem;
  border-top: 2px solid var(--line);
}
.legal-prose h3 { font-size: 1.08rem; font-weight: 700; margin: 1.6rem 0 0.4rem; }
.legal-prose p { margin: 0 0 1rem; color: var(--ink-soft); }
.legal-prose ul { margin: 0 0 1.2rem; padding-left: 1.3rem; color: var(--ink-soft); }
.legal-prose li { margin-bottom: 0.5rem; }
.legal-prose a { color: var(--yellow-deep); text-decoration: underline; text-underline-offset: 2px; word-break: break-word; }
.legal-prose em { font-style: italic; color: var(--muted); }
.legal-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 2.6rem;
  font-weight: 600;
}
.legal-back svg { width: 18px; height: 18px; }

/* ---------- Bewegung: Kompass-Layout nur Desktop ---------- */
@media (min-width: 1081px) {
  .routes {
    position: relative;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto auto;
    align-items: center;
    align-content: center;
    justify-items: center;
    column-gap: 18px;
    row-gap: clamp(24px, 4vh, 56px);
    max-width: 1040px;
    min-height: 1040px;
    margin-inline: auto;
  }
  .routes-map {
    display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 620px;
    height: 992px;
    max-width: none;
    z-index: 0;
    opacity: 0.55;
    pointer-events: none;
  }
  .route, .routes-center { position: relative; z-index: 1; }
  .route--n { grid-column: 2; grid-row: 1; }
  .route--o { grid-column: 3; grid-row: 2; }
  .route--s { grid-column: 2; grid-row: 3; }
  .route--w { grid-column: 1; grid-row: 2; }
  .routes-center {
    display: grid;
    grid-column: 2;
    grid-row: 2;
    place-items: center;
    place-self: center;
    width: clamp(240px, 22vw, 320px);
    aspect-ratio: 1;
    border: 1.5px dashed rgba(251, 192, 16, 0.5);
    border-radius: 50%;
  }
  .routes-center span {
    font-family: var(--font-display);
    text-transform: uppercase;
    font-size: clamp(1.6rem, 2.2vw, 2.2rem);
    color: var(--yellow);
    letter-spacing: 0.01em;
  }
  .route {
    background: transparent;
    border: none;
    padding: 0;
    text-align: center;
    align-items: center;
    max-width: 300px;
  }
  .route:hover { transform: none; }
  .route-pin { margin-bottom: 1rem; }
  .route p { max-width: 280px; margin-bottom: 0.8rem; }
  .route-type {
    margin-top: 0;
    border-top: none;
    padding-top: 0;
    width: auto;
  }
}

/* ---------- Responsive for new components ---------- */
@media (max-width: 1080px) {
  .cards, .mm-grid, .routes { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .gallery { column-count: 2; }
}
@media (max-width: 900px) {
  .topbar { display: none; }
  .site-header { top: 0; }
  .welcome-inner, .warum-intro, .lite-grid, .duo { grid-template-columns: 1fr; }
  .history-list, .vereine-row, .news-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .motto { aspect-ratio: auto; max-width: 460px; }
  .duo-card { min-height: 0; }
}
@media (max-width: 640px) {
  .cards, .mm-grid, .routes, .footer-grid, .sponsor-grid, .programm-split { grid-template-columns: 1fr; }
  .lite-year, .motto-mark { font-size: 4.5rem; }
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  [data-reveal] { opacity: 1 !important; transform: none !important; }
  .marquee-track { animation: none; }
  .hero-scroll svg { animation: none; }
}

