/* ============================================
   Rolf Claußen – Bürgermeister Stadt Wittmund
   Kommunalwahl 2026
   ============================================ */

:root {
  --coral: #FF5E46;
  --yellow-green: #DEEE43;
  --peach: #FFC19F;
  --dark-brown: #3A150D;
  --blue: #4A52BB;
  --white: #FFFFFF;

  --radius-pill: 999px;
  --radius-card: 32px;
  --radius-soft: 18px;
}

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

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

body {
  font-family: 'Open Sans', sans-serif;
  color: var(--dark-brown);
  line-height: 1.3;
  -webkit-font-smoothing: antialiased;
  background: var(--white);
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ============================================
   HERO – nur großer Schriftzug + Maus-Trail
   ============================================ */
.hero {
  position: relative;
  background: var(--coral);
  width: 100%;
  height: 100vh;
  min-height: 720px;
  overflow: hidden;
}

.hero__inner {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 60px;
}

.hero__title {
  font-size: clamp(64px, 13vw, 240px);
  line-height: 0.9;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.03em;
  text-align: center;
  z-index: 2;
  position: relative;
}

.site-logo {
  position: fixed;
  top: 24px;
  left: 24px;
  width: 64px;
  height: 64px;
  z-index: 100;
  display: block;
  transition: transform 0.25s ease, filter 0.3s ease;
}

.site-logo:hover {
  transform: scale(1.06);
}

.site-logo__img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.hero__scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: fit-content;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  color: var(--white);
  font-size: 11px;
  letter-spacing: 0.35em;
  font-weight: 700;
  z-index: 2;
  pointer-events: none;
}

.hero__scroll-hint::after {
  content: '';
  width: 1px;
  height: 36px;
  background: var(--white);
  animation: scroll-line 1.8s ease-in-out infinite;
}

@keyframes scroll-line {
  0%   { transform: scaleY(0); transform-origin: top; }
  45%  { transform: scaleY(1); transform-origin: top; }
  55%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ============================================
   NAV (fixed) – Glas-Pille mit Aktiv-Highlight
   ============================================ */
.nav {
  position: fixed;
  top: 22px;
  right: 24px;
  z-index: 100;
  display: flex;
  gap: 4px;
  padding: 6px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(58, 21, 13, 0.06);
  box-shadow:
    0 12px 36px rgba(58, 21, 13, 0.10),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);
  opacity: 0;
  transform: translateY(-12px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  pointer-events: none;
}

.nav.is-stuck {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.nav__btn {
  position: relative;
  display: inline-block;
  padding: 10px 22px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.02em;
  color: var(--dark-brown);
  border-radius: var(--radius-pill);
  white-space: nowrap;
  transition: color 0.25s ease, background 0.25s ease;
}

.nav__btn:hover {
  background: rgba(58, 21, 13, 0.06);
}

.nav__btn.is-current {
  background: var(--peach);
  color: var(--dark-brown);
  box-shadow: 0 4px 12px rgba(58, 21, 13, 0.08);
}

.nav__btn.is-current:hover {
  background: var(--peach);
}

/* ============================================
   INTRO – Vorstellung
   ============================================ */
.intro {
  background: var(--white);
  padding: 140px 0 120px;
  position: relative;
}

.intro__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 113px;
  display: flex;
  flex-direction: column;
  gap: 100px;
}

.intro__main {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 80px;
  align-items: start;
}

.intro__sidebar {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.intro__portrait {
  width: 380px;
  height: 380px;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  box-shadow: 0 30px 80px rgba(58, 21, 13, 0.15);
}

.intro__portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.intro__label {
  display: inline-block;
  background: var(--peach);
  color: var(--dark-brown);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 8px 20px;
  border-radius: var(--radius-pill);
  margin-bottom: 24px;
}

.intro__claim {
  color: var(--blue);
  font-size: 56px;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
}

.intro__copy p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 14px;
  color: var(--dark-brown);
  max-width: 540px;
}

.intro__copy p:last-child { margin-bottom: 0; }

.intro__highlight {
  margin-top: 36px;
  padding: 28px 32px;
  background: var(--coral);
  color: var(--white);
  border-radius: var(--radius-card);
  font-size: 18px;
  line-height: 1.5;
  font-weight: 700;
  letter-spacing: -0.005em;
  font-style: normal;
  max-width: 600px;
  position: relative;
}

.intro__highlight::before {
  content: '';
  position: absolute;
  top: 24px;
  left: -12px;
  width: 24px;
  height: 24px;
  background: var(--coral);
  transform: rotate(45deg);
  border-radius: 4px;
}

.intro__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  max-width: 380px;
  margin-top: 0;
}

.pill {
  display: inline-block;
  background: var(--blue);
  color: var(--white);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.02em;
  padding: 10px 22px;
  border-radius: var(--radius-pill);
}

.intro__second {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 80px;
  align-items: center;
}

.intro__landscape {
  width: 380px;
  height: 380px;
  border-radius: 50%;
  overflow: hidden;
}

.intro__landscape img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.intro__badge {
  background: var(--dark-brown);
  color: var(--peach);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.18em;
  text-align: center;
  padding: 22px 36px;
  border-radius: var(--radius-pill);
  justify-self: start;
}

/* ============================================
   LEISTUNGSBILANZ
   ============================================ */
.bilanz {
  background: var(--white);
  padding: 100px 0 120px;
}

.bilanz__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 113px;
  position: relative;
}

.bilanz__header { margin-bottom: 80px; }

.bilanz__label {
  color: var(--blue);
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 8px;
}

.bilanz__title {
  color: var(--blue);
  font-size: 64px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.02em;
}

.bilanz-item {
  display: flex;
  align-items: center;
  margin-bottom: 80px;
  position: relative;
}

.bilanz-item:last-child { margin-bottom: 0; }

.bilanz-item__image {
  flex-shrink: 0;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  overflow: hidden;
}

.bilanz-item__image img { width: 100%; height: 100%; object-fit: cover; }

.bilanz-item__circle {
  flex-shrink: 0;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--peach);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 60px 55px;
  position: relative;
  z-index: 2;
}

.bilanz-item__icon { width: 45px; height: 45px; margin-bottom: 18px; }

.bilanz-item__circle h3 {
  font-size: 19px;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 16px;
  color: var(--peach);
}

.bilanz-item__circle p {
  font-size: 14px;
  line-height: 1.5;
  color: var(--peach);
}

.bilanz-item--right {
  justify-content: flex-start;
  padding-left: 120px;
}

.bilanz-item--right .bilanz-item__image {
  margin-right: -50px;
  z-index: 1;
}

.bilanz-item--left {
  justify-content: flex-end;
  padding-right: 120px;
}

.bilanz-item--left .bilanz-item__image {
  margin-left: -50px;
  z-index: 1;
}

/* ============================================
   KEIN VERSPRECHEN OHNE BELEG
   ============================================ */
.beleg {
  background: var(--white);
  padding: 80px 0 120px;
  position: relative;
}

.beleg__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 113px;
  position: relative;
}

.beleg__title {
  color: var(--blue);
  font-size: 146px;
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin-bottom: 60px;
}

.beleg__title-flag {
  display: inline-block;
  width: 80px;
  height: 50px;
  vertical-align: middle;
  margin: 0 20px 0 10px;
}

.beleg__title-flag svg { width: 100%; height: 100%; }

.beleg__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 80px;
  row-gap: 60px;
}

.beleg__image {
  grid-column: 1 / 2;
  grid-row: 1 / 3;
  width: 100%;
  max-width: 380px;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 20px;
}

.beleg__image img { width: 100%; height: 100%; object-fit: cover; }

.beleg__entry--col1 { grid-column: 1; }
.beleg__entry--col2 { grid-column: 2; }

.beleg__date {
  font-size: 14px;
  color: var(--dark-brown);
  margin-bottom: 6px;
}

.beleg__entry h4 {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 12px;
  color: var(--dark-brown);
}

.beleg__entry p {
  font-size: 14px;
  line-height: 1.5;
  color: var(--dark-brown);
}

.beleg__scribble {
  position: absolute;
  right: 113px;
  bottom: 80px;
  width: 100px;
  height: 100px;
  opacity: 0.85;
}

.beleg__scribble svg { width: 100%; height: 100%; }

/* ============================================
   ANGEPACKT VOR ORT – Auto-Karussell
   ============================================ */
.bewegt {
  background: var(--white);
  padding: 100px 0 120px;
  overflow: hidden;
  position: relative;
}

.bewegt__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 113px;
}

.bewegt__header {
  margin-bottom: 60px;
  max-width: 700px;
}

.bewegt__label {
  color: var(--blue);
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 8px;
}

.bewegt__title {
  color: var(--blue);
  font-size: clamp(48px, 7vw, 96px);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.02em;
}

.bewegt__lead {
  color: var(--dark-brown);
  font-size: 17px;
  line-height: 1.55;
  margin-top: 22px;
  max-width: 640px;
}

.bewegt__carousel {
  width: 100%;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent, black 4%, black 96%, transparent);
  mask-image: linear-gradient(to right, transparent, black 4%, black 96%, transparent);
}

.bewegt__track {
  display: flex;
  gap: 24px;
  width: max-content;
  padding: 8px 24px;
  animation: bewegt-scroll 70s linear infinite;
}

.bewegt__carousel:hover .bewegt__track,
.bewegt__carousel:focus-within .bewegt__track {
  animation-play-state: paused;
}

@keyframes bewegt-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.bewegt-card {
  flex-shrink: 0;
  width: 380px;
  height: 520px;
  border-radius: var(--radius-card);
  padding: 36px 32px 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 16px 40px rgba(58, 21, 13, 0.12);
}

.bewegt-card--blue   { background: var(--blue);         color: var(--white); }
.bewegt-card--peach  { background: var(--peach);        color: var(--dark-brown); }
.bewegt-card--yellow { background: var(--yellow-green); color: var(--dark-brown); }
.bewegt-card--coral  { background: var(--coral);        color: var(--white); }
.bewegt-card--dark   { background: var(--dark-brown);   color: var(--peach); }

.bewegt-card__title {
  font-size: 26px;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 18px;
  letter-spacing: -0.01em;
}

.bewegt-card__text {
  font-size: 14px;
  line-height: 1.55;
}

.bewegt-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.bewegt-tag {
  background: rgba(255, 255, 255, 0.18);
  color: currentColor;
  padding: 7px 16px;
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.bewegt-card--peach .bewegt-tag,
.bewegt-card--yellow .bewegt-tag {
  background: rgba(58, 21, 13, 0.10);
}

.bewegt-card--dark .bewegt-tag {
  background: rgba(255, 193, 159, 0.18);
}

@media (prefers-reduced-motion: reduce) {
  .bewegt__track { animation: none; }
  .bewegt__carousel { overflow-x: auto; }
}

/* ============================================
   ZIELGRUPPEN – Bubbles + Tab-Panels
   ============================================ */
.zielgruppen {
  background: var(--white);
  padding: 120px 0 140px;
  position: relative;
  --zg-color: var(--blue);
  --zg-text: var(--white);
  transition: --zg-color 0.4s ease;
}

.zielgruppen[data-active="familien"]   { --zg-color: var(--coral);        --zg-text: var(--white); }
.zielgruppen[data-active="wirtschaft"] { --zg-color: var(--peach);        --zg-text: var(--dark-brown); }
.zielgruppen[data-active="tourismus"]  { --zg-color: var(--yellow-green); --zg-text: var(--dark-brown); }
.zielgruppen[data-active="ehrenamt"]   { --zg-color: var(--blue);         --zg-text: var(--white); }
.zielgruppen[data-active="ankommen"]   { --zg-color: var(--coral);        --zg-text: var(--white); }
.zielgruppen[data-active="jung"]       { --zg-color: var(--peach);        --zg-text: var(--dark-brown); }
.zielgruppen[data-active="klar"]       { --zg-color: var(--yellow-green); --zg-text: var(--dark-brown); }

.zielgruppen__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 113px;
  position: relative;
}

/* SVG-Connector: animierte Linie von aktiver Bubble zum Panel */
.zg-connector {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: visible;
  z-index: 1;
  width: 100%;
  height: 100%;
}

.zg-connector__path {
  fill: none;
  stroke: var(--zg-color);
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 4px 10px rgba(58, 21, 13, 0.10));
}

.zielgruppen__header {
  margin-bottom: 50px;
  max-width: 820px;
}

.zielgruppen__label {
  color: var(--blue);
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 8px;
}

.zielgruppen__title {
  color: var(--blue);
  font-size: clamp(48px, 8vw, 112px);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.zielgruppen__lead {
  color: var(--dark-brown);
  font-size: 17px;
  line-height: 1.55;
  max-width: 640px;
}

/* Bubble-Cluster: bricht aus dem Inner-Padding aus + skaliert proportional mit Breite */
.zielgruppen__cluster {
  position: relative;
  width: min(calc(100% + 500px), 100vw - 60px, 1700px);
  left: 50%;
  transform: translateX(-50%);
  aspect-ratio: 1080 / 460;
  margin: 60px 0 90px;
  z-index: 2;
}

.zg-bubble {
  --s: 1;
  position: absolute;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  font-family: inherit;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: clamp(8px, 1vw, 18px);
  text-align: center;
  transform: scale(var(--s));
  transform-origin: center;
  transition: transform 0.18s cubic-bezier(0.2, 0.9, 0.25, 1),
              box-shadow 0.3s ease,
              outline-color 0.3s ease;
  will-change: transform;
  z-index: 2;
  box-sizing: border-box;
}

/* Positionen + Größen in % – skaliert mit Cluster.
   width%/height% folgen Cluster-Aspect (1080/460=2.348), damit Bubbles immer perfekt rund. */
.zg-bubble[data-zg="60plus"]     { left: 2%;  top: 19.6%; width: 15.3%; height: 35.93%; }
.zg-bubble[data-zg="familien"]   { left: 24%; top: 5.4%;  width: 18.1%; height: 42.49%; }
.zg-bubble[data-zg="wirtschaft"] { left: 52%; top: 16.0%; width: 13.4%; height: 31.46%; }
.zg-bubble[data-zg="tourismus"]  { left: 80%; top: 9.0%;  width: 16.2%; height: 38.03%; }
.zg-bubble[data-zg="ehrenamt"]   { left: 10%; top: 57.5%; width: 15.3%; height: 35.93%; }
.zg-bubble[data-zg="ankommen"]   { left: 36%; top: 50.0%; width: 17.4%; height: 40.85%; }
.zg-bubble[data-zg="jung"]       { left: 62%; top: 62.0%; width: 14.1%; height: 33.10%; }
.zg-bubble[data-zg="klar"]       { left: 83%; top: 51.0%; width: 16.5%; height: 38.74%; }

.zg-bubble--blue   { background: var(--blue);         color: var(--white); }
.zg-bubble--coral  { background: var(--coral);        color: var(--white); }
.zg-bubble--peach  { background: var(--peach);        color: var(--dark-brown); }
.zg-bubble--yellow { background: var(--yellow-green); color: var(--dark-brown); }
.zg-bubble--dark   { background: var(--dark-brown);   color: var(--peach); }

.zg-bubble__label {
  font-size: clamp(16px, 1.5vw, 28px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.01em;
  margin-bottom: clamp(3px, 0.4vw, 8px);
}

.zg-bubble__sub {
  font-size: clamp(9px, 0.75vw, 14px);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.85;
}

.zg-bubble:hover {
  box-shadow: 0 16px 36px rgba(58, 21, 13, 0.22);
}

.zg-bubble.is-active {
  --s: 1.15;
  box-shadow: 0 22px 52px rgba(58, 21, 13, 0.30);
  outline: 4px solid rgba(58, 21, 13, 0.12);
  outline-offset: 4px;
  z-index: 4;
}

/* Panel: weiße Karte, der animierte SVG-Pfad zeichnet den farbigen Rahmen drumherum */
.zielgruppen__panels {
  background: var(--white);
  border-radius: var(--radius-card);
  padding: 56px 60px;
  box-shadow: 0 24px 60px rgba(58, 21, 13, 0.12);
  position: relative;
  transition: box-shadow 0.5s ease;
}


.zg-panel {
  display: none;
}

.zg-panel.is-active {
  display: block;
  animation: zg-fade 0.5s cubic-bezier(0.2, 0.9, 0.25, 1);
}

@keyframes zg-fade {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

.zg-panel__head { margin-bottom: 32px; }

.zg-panel__tag {
  display: inline-block;
  background: var(--zg-color);
  color: var(--zg-text);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 8px 20px;
  border-radius: var(--radius-pill);
  margin-bottom: 22px;
  transition: background-color 0.5s ease, color 0.5s ease;
}

.zg-panel__headline {
  color: var(--blue);
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.zg-panel__body {
  margin-bottom: 36px;
  max-width: 780px;
}

.zg-panel__body p {
  font-size: 16px;
  line-height: 1.65;
  margin-bottom: 14px;
  color: var(--dark-brown);
}

.zg-panel__body p:last-child { margin-bottom: 0; }

/* Pillars – die drei prägnanten Kernsätze */
.zg-panel__pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 40px;
}

.zg-pillar {
  background: var(--blue);
  color: var(--white);
  padding: 22px 24px;
  border-radius: var(--radius-card);
  font-size: 15px;
  line-height: 1.5;
  font-weight: 700;
  letter-spacing: -0.005em;
}

/* Theme-Cards – ausführliche Erklärungen */
.zg-panel__themes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 36px;
}

.zg-theme {
  background: var(--peach);
  padding: 24px 28px;
  border-radius: var(--radius-card);
}

.zg-theme h4 {
  font-size: 17px;
  font-weight: 700;
  color: var(--dark-brown);
  margin-bottom: 10px;
  line-height: 1.3;
}

.zg-theme p {
  font-size: 14px;
  line-height: 1.55;
  color: var(--dark-brown);
}

.zg-panel__subline {
  margin-top: 8px;
  padding: 28px 32px;
  background: var(--coral);
  color: var(--white);
  border-radius: var(--radius-card);
  font-size: 17px;
  line-height: 1.5;
  font-weight: 700;
  letter-spacing: -0.005em;
  font-style: normal;
}

/* ============================================
   VARIANTE B – DREHRAD
   ============================================ */
.rad-section {
  background: linear-gradient(180deg, #FAF7F2 0%, var(--white) 100%);
  padding: 100px 0 130px;
  position: relative;
  overflow: hidden;
}

.rad-section__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 60px;
  position: relative;
  isolation: isolate;
}

.rad-section__header {
  text-align: center;
  margin-bottom: 60px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.rad-section__label {
  display: inline-block;
  background: var(--dark-brown);
  color: var(--peach);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  margin-bottom: 22px;
}

.rad-section__title {
  color: var(--blue);
  font-size: clamp(40px, 7vw, 88px);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.rad-section__lead {
  color: var(--dark-brown);
  font-size: 17px;
  line-height: 1.55;
}

/* ----- Rad-Bühne ----- */
.rad-stage {
  --wheel-size: clamp(320px, 56vw, 560px);
  --wheel-radius: calc(var(--wheel-size) * 0.41);
  --bubble-size: clamp(78px, 13vw, 130px);
  --rotate-duration: 0.85s;
  --rotate-easing: cubic-bezier(0.25, 1, 0.4, 1);

  width: var(--wheel-size);
  height: var(--wheel-size);
  margin: 0 auto 90px; /* Abstand für Verbindungslinie zum Panel */
  position: relative;
  z-index: 2;
}

.rad-wheel {
  position: absolute;
  inset: 0;
  transform: rotate(var(--rotate, 0deg));
  transition: transform var(--rotate-duration) var(--rotate-easing);
  will-change: transform;
}

/* Dezenter Hilfskreis im Hintergrund */
.rad-wheel::before {
  content: '';
  position: absolute;
  inset: calc(var(--bubble-size) / 2 + 4px);
  border-radius: 50%;
  border: 1px dashed rgba(58, 21, 13, 0.16);
  pointer-events: none;
}

.rad-bubble {
  position: absolute;
  top: 50%;
  left: 50%;
  width: var(--bubble-size);
  height: var(--bubble-size);
  margin: calc(-1 * var(--bubble-size) / 2);
  padding: 0;
  border: none;
  border-radius: 50%;
  background: var(--zg-color, var(--blue));
  color: var(--zg-text, var(--white));
  cursor: pointer;
  font-family: inherit;
  transform: rotate(var(--angle, 0deg)) translateY(calc(-1 * var(--wheel-radius)));
  box-shadow: 0 12px 28px rgba(58, 21, 13, 0.16);
  transition: box-shadow 0.3s ease, filter 0.3s ease;
}

.rad-bubble:hover {
  box-shadow: 0 16px 40px rgba(58, 21, 13, 0.24);
  filter: brightness(1.05);
}

.rad-bubble.is-active {
  box-shadow: 0 18px 44px rgba(58, 21, 13, 0.28);
  outline: 4px solid rgba(58, 21, 13, 0.10);
  outline-offset: 4px;
}

.rad-bubble--blue   { --zg-color: var(--blue);         --zg-text: var(--white); }
.rad-bubble--coral  { --zg-color: var(--coral);        --zg-text: var(--white); }
.rad-bubble--peach  { --zg-color: var(--peach);        --zg-text: var(--dark-brown); }
.rad-bubble--yellow { --zg-color: var(--yellow-green); --zg-text: var(--dark-brown); }
.rad-bubble--dark   { --zg-color: var(--dark-brown);   --zg-text: var(--peach); }

.rad-bubble__face {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 6px 8px;
  text-align: center;
  /* Counter-rotate: Bubble bleibt aufrecht egal wie das Rad steht */
  transform: rotate(calc(-1 * (var(--angle, 0deg) + var(--rotate, 0deg))));
  transition: transform var(--rotate-duration) var(--rotate-easing);
}

.rad-bubble__label {
  display: block;
  font-weight: 800;
  font-size: clamp(14px, 1.6vw, 19px);
  line-height: 1.05;
  letter-spacing: -0.005em;
  margin-bottom: 4px;
}

.rad-bubble__sub {
  display: block;
  font-weight: 600;
  font-size: clamp(9px, 1vw, 11px);
  letter-spacing: 0.10em;
  text-transform: uppercase;
  opacity: 0.85;
}

/* Pin/Marker, der die „Aktiv unten"-Position markiert */
.rad-stage__pin {
  position: absolute;
  bottom: -22px;
  left: 50%;
  transform: translateX(-50%);
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--dark-brown);
  box-shadow: 0 0 0 6px rgba(58, 21, 13, 0.08);
}

/* ----- Verbinder ----- */
.rad-connector {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: visible;
  z-index: 1;
}

.rad-connector__path {
  fill: none;
  stroke: var(--zg-active-color, var(--blue));
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 4px 10px rgba(58, 21, 13, 0.10));
  transition: stroke 0.4s ease;
}

/* ----- Panels ----- */
.rad-panels {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-card);
  padding: 56px 60px;
  box-shadow: 0 24px 60px rgba(58, 21, 13, 0.10);
  z-index: 2;
}

.rad-panel {
  display: none;
  animation: rad-fade 0.55s cubic-bezier(0.2, 0.9, 0.25, 1);
}

.rad-panel.is-active {
  display: block;
}

@keyframes rad-fade {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Mobile: Rad bleibt mittig, Panel padding kleiner */
@media (max-width: 900px) {
  .rad-section { padding: 70px 0 90px; }
  .rad-section__inner { padding: 0 24px; }
  .rad-section__header { margin-bottom: 40px; }
  .rad-stage { --wheel-size: clamp(280px, 80vw, 460px); }
  .rad-panels { padding: 36px 28px; }
}

@media (max-width: 480px) {
  .rad-stage { --bubble-size: 72px; }
  .rad-bubble__label { font-size: 12px; }
  .rad-bubble__sub { font-size: 8px; }
}

@media (prefers-reduced-motion: reduce) {
  .rad-wheel,
  .rad-bubble__face {
    transition: none;
  }
  .rad-panel { animation: none; }
}

/* ============================================
   ZITAT
   ============================================ */
.quote {
  background: var(--yellow-green);
  padding: 140px 0 160px;
  position: relative;
  overflow: hidden;
}

.quote__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 113px;
  position: relative;
}

.quote__mark {
  position: absolute;
  top: -80px;
  left: 80px;
  font-size: 420px;
  line-height: 1;
  font-weight: 800;
  color: var(--dark-brown);
  opacity: 0.08;
  pointer-events: none;
  user-select: none;
  font-family: inherit;
}

.quote__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 80px;
  align-items: center;
}

.quote__content {
  position: relative;
  z-index: 1;
}

.quote__eyebrow {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--dark-brown);
  background: rgba(58, 21, 13, 0.08);
  padding: 10px 20px;
  border-radius: var(--radius-pill);
  margin-bottom: 36px;
}

.quote__text {
  font-size: 64px;
  font-weight: 800;
  line-height: 1.08;
  color: var(--dark-brown);
  letter-spacing: -0.015em;
  margin-bottom: 50px;
  max-width: 720px;
}

.quote__author {
  display: flex;
  align-items: center;
  gap: 24px;
}

.quote__author-rule {
  display: block;
  width: 60px;
  height: 3px;
  background: var(--dark-brown);
  border-radius: 999px;
  flex-shrink: 0;
}

.quote__author-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.quote__author-name {
  font-size: 18px;
  font-weight: 700;
  color: var(--dark-brown);
  letter-spacing: -0.005em;
}

.quote__author-role {
  font-size: 14px;
  color: var(--dark-brown);
  opacity: 0.7;
}

.quote__image {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: var(--radius-card);
  box-shadow: 0 30px 60px -25px rgba(58, 21, 13, 0.35);
  transform: rotate(2deg);
}

.quote__image::before {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: calc(var(--radius-card) + 8px);
  border: 2px solid var(--dark-brown);
  opacity: 0.15;
  transform: rotate(-4deg);
  z-index: -1;
}

.quote__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ============================================
   KONTAKTFORMULAR
   ============================================ */
.contact {
  background: var(--coral);
  padding: 100px 0 120px;
  position: relative;
}

.contact__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 113px;
  position: relative;
}

.contact__card {
  background: var(--peach);
  padding: 60px 65px 65px;
  max-width: 660px;
  margin: 0 auto;
  color: var(--dark-brown);
  border-radius: var(--radius-card);
  box-shadow: 0 30px 80px rgba(58, 21, 13, 0.18);
}

.contact__title {
  font-size: 42px;
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}

.contact__intro {
  font-size: 16px;
  line-height: 1.55;
  margin-bottom: 32px;
}

.contact__form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact__field {
  display: flex;
  flex-direction: column;
  position: relative;
}

.contact__label {
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.04em;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.contact__field input,
.contact__field textarea {
  background: var(--white);
  border: 2px solid transparent;
  border-radius: var(--radius-soft);
  padding: 14px 18px;
  font-family: inherit;
  font-size: 15px;
  color: var(--dark-brown);
  outline: none;
  width: 100%;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact__field input::placeholder,
.contact__field textarea::placeholder {
  color: var(--dark-brown);
  opacity: 0.45;
}

.contact__field input:focus,
.contact__field textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(74, 82, 187, 0.12);
}

.contact__field textarea {
  min-height: 130px;
  resize: vertical;
  line-height: 1.45;
}

.contact__counter {
  position: absolute;
  right: 4px;
  bottom: -22px;
  font-size: 12px;
  color: var(--dark-brown);
  opacity: 0.55;
}

.contact__submit {
  background: var(--dark-brown);
  color: var(--white);
  border: none;
  padding: 16px 36px;
  font-family: inherit;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.04em;
  cursor: pointer;
  align-self: flex-start;
  margin-top: 22px;
  border-radius: var(--radius-pill);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contact__submit:hover {
  transform: translateX(4px);
  box-shadow: 0 10px 22px rgba(58, 21, 13, 0.25);
}

.contact__deco {
  position: absolute;
  right: 100px;
  top: 240px;
  width: 160px;
  height: 70px;
  opacity: 0.85;
}

.contact__deco svg { width: 100%; height: 100%; }

/* ============================================
   FAQ – Häufige Fragen (Akkordeon)
   ============================================ */
.faq {
  background: var(--white);
  padding: 100px 0 120px;
  position: relative;
}

.faq__inner {
  max-width: 920px;
  margin: 0 auto;
  padding: 0 32px;
}

.faq__header {
  margin-bottom: 48px;
  text-align: left;
}

.faq__label {
  display: inline-block;
  background: var(--peach);
  color: var(--dark-brown);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  margin-bottom: 20px;
}

.faq__title {
  color: var(--blue);
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.faq__lead {
  color: var(--dark-brown);
  font-size: 17px;
  line-height: 1.55;
  max-width: 600px;
}

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

.faq-item {
  background: var(--white);
  border: 1px solid rgba(58, 21, 13, 0.10);
  border-radius: var(--radius-soft);
  overflow: hidden;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.faq-item:hover {
  border-color: rgba(58, 21, 13, 0.22);
  box-shadow: 0 6px 22px rgba(58, 21, 13, 0.06);
}

.faq-item[open] {
  border-color: var(--blue);
  background: #FAFAFE;
  box-shadow: 0 10px 30px rgba(74, 82, 187, 0.10);
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 26px;
  cursor: pointer;
  list-style: none;
  user-select: none;
  transition: color 0.2s ease;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item__q {
  font-size: 17px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--dark-brown);
  letter-spacing: -0.005em;
}

.faq-item[open] .faq-item__q {
  color: var(--blue);
}

.faq-item__icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--peach);
  position: relative;
  transition: background 0.25s ease, transform 0.3s cubic-bezier(0.2, 0.9, 0.25, 1);
}

.faq-item__icon::before,
.faq-item__icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 2px;
  background: var(--dark-brown);
  transform: translate(-50%, -50%);
  border-radius: 1px;
  transition: transform 0.3s cubic-bezier(0.2, 0.9, 0.25, 1), background 0.25s ease;
}

.faq-item__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item[open] .faq-item__icon {
  background: var(--blue);
  transform: rotate(180deg);
}

.faq-item[open] .faq-item__icon::before,
.faq-item[open] .faq-item__icon::after {
  background: var(--white);
}

.faq-item[open] .faq-item__icon::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.faq-item__a {
  padding: 0 26px 24px;
  color: var(--dark-brown);
  font-size: 16px;
  line-height: 1.65;
}

.faq-item__a p {
  margin-bottom: 12px;
}

.faq-item__a p:last-child {
  margin-bottom: 0;
}

.faq-item__a a {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.faq-item__a a:hover {
  text-decoration: none;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--blue);
  padding: 80px 0 28px;
  color: var(--white);
  font-size: 14px;
}

.footer__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 113px;
}

.footer__cols {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.footer__col { min-width: 0; }

.footer__brand {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.005em;
  line-height: 1.1;
  margin-bottom: 12px;
  color: var(--peach);
}

.footer__tagline {
  font-size: 14px;
  line-height: 1.55;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 18px;
  opacity: 0.92;
}

.footer__vsdp {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.7;
}

.footer__heading {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--peach);
  margin-bottom: 16px;
}

.footer__address {
  font-style: normal;
  font-size: 14px;
  line-height: 1.65;
  color: var(--white);
  opacity: 0.92;
}

.footer__address a {
  color: var(--white);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  transition: border-color 200ms ease, color 200ms ease;
}

.footer__address a:hover {
  color: var(--peach);
  border-bottom-color: var(--peach);
}

.footer__nav {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer__nav li { margin-bottom: 8px; }

.footer__nav a {
  color: var(--white);
  text-decoration: none;
  font-size: 14px;
  opacity: 0.92;
  transition: color 200ms ease, opacity 200ms ease;
}

.footer__nav a:hover {
  color: var(--peach);
  opacity: 1;
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding-top: 28px;
  flex-wrap: wrap;
}

.footer__copy {
  font-size: 13px;
  font-weight: 400;
  opacity: 0.8;
}

.footer__links {
  display: flex;
  gap: 24px;
}

.footer__links a {
  color: var(--white);
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.85;
  transition: color 200ms ease, opacity 200ms ease;
}

.footer__links a:hover {
  color: var(--peach);
  opacity: 1;
}

/* ============================================
   RESPONSIVE: TABLET (≤1200px)
   ============================================ */
@media (max-width: 1200px) {

  .intro__inner,
  .zielgruppen__inner,
  .quote__inner,
  .contact__inner,
  .footer__inner { padding: 0 60px; }

  .intro { padding: 110px 0 100px; }
  .intro__main,
  .intro__second {
    grid-template-columns: 280px 1fr;
    gap: 50px;
  }
  .intro__portrait,
  .intro__landscape { width: 280px; height: 280px; }
  .intro__sidebar { top: 80px; }
  .intro__claim { font-size: 44px; }

  .quote { padding: 110px 0 130px; }
  .quote__mark { font-size: 320px; top: -60px; left: 40px; }
  .quote__grid { grid-template-columns: 1fr 1fr; gap: 50px; }
  .quote__text { font-size: 44px; }
  .contact__title { font-size: 34px; }

  /* Zielgruppen Tablet */
  .zielgruppen { padding: 90px 0 110px; }
  /* Tablet: Cluster bleibt prozentual – nur Breakout etwas reduzieren */
  .zielgruppen__cluster {
    width: min(calc(100% + 120px), 100vw - 32px);
  }
  .zg-bubble__label { font-size: 19px; }
  .zg-bubble__sub { font-size: 10px; }
  .zielgruppen__panels { padding: 44px 40px; }
  .zg-panel__pillars { grid-template-columns: 1fr; }
  .zg-pillar { font-size: 14px; padding: 18px 22px; }

  .bewegt { padding: 80px 0 90px; }
  .bewegt__inner { padding: 0 60px; }
  .bewegt__title { font-size: 60px; }
  .bewegt-card { width: 320px; height: 480px; padding: 30px 26px 26px; }
  .bewegt-card__title { font-size: 22px; margin-bottom: 14px; }
}

/* ============================================
   RESPONSIVE: MOBILE (≤768px)
   ============================================ */
@media (max-width: 768px) {

  /* HERO */
  .hero {
    height: 100svh;
    min-height: 600px;
  }
  .hero__inner { padding: 0 24px; }
  .hero__title {
    font-size: clamp(44px, 13vw, 88px);
    word-break: break-word;
    hyphens: auto;
  }
  .site-logo { top: 16px; left: 16px; width: 48px; height: 48px; }

  /* NAV – auf Mobile als Bottom-Bar (Daumen-freundlich) */
  .nav {
    top: auto;
    bottom: 14px;
    right: 50%;
    transform: translate(50%, 16px);
    padding: 4px;
    gap: 2px;
    max-width: calc(100vw - 24px);
  }
  .nav.is-stuck {
    transform: translate(50%, 0);
  }
  .nav__btn {
    padding: 9px 14px;
    font-size: 13px;
  }

  /* INTRO */
  .intro { padding: 70px 0 80px; }
  .intro__inner { padding: 0 24px; gap: 60px; }
  .intro__main,
  .intro__second {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }
  .intro__portrait,
  .intro__landscape {
    width: 240px;
    height: 240px;
    margin: 0 auto;
    position: static;
  }
  .intro__sidebar { position: static; }
  .intro__highlight {
    padding: 22px 24px;
    font-size: 16px;
    margin-top: 24px;
  }
  .intro__highlight::before { display: none; }
  .intro__label,
  .intro__badge { margin-left: auto; margin-right: auto; }
  .intro__claim { font-size: 34px; }
  .intro__copy p { margin-left: auto; margin-right: auto; }
  .intro__stats { justify-content: center; }
  .intro__badge { justify-self: center; padding: 16px 24px; font-size: 13px; }

  /* ZIELGRUPPEN Mobile */
  .zielgruppen { padding: 60px 0 80px; }
  .zielgruppen__inner { padding: 0 24px; }
  .zielgruppen__header { margin-bottom: 28px; }
  .zielgruppen__title { font-size: 40px; }
  .zielgruppen__lead { font-size: 15px; }
  /* Mobile: absolutes Stagger-Layout (kein striktes Grid) – höheres, schmaleres Cluster */
  .zielgruppen__cluster {
    position: relative;
    display: block;
    width: 100%;
    max-width: none;
    aspect-ratio: 360 / 640;
    height: auto;
    left: auto;
    transform: none;
    margin: 32px 0 40px;
  }
  /* Versetzt links/rechts mit unterschiedlichen Y-Höhen pro Bubble */
  .zg-bubble[data-zg="60plus"]     { left: 6%;  top: 5%;  width: 36%; height: 20.25%; }
  .zg-bubble[data-zg="familien"]   { left: 55%; top: 1%;  width: 39%; height: 21.94%; }
  .zg-bubble[data-zg="wirtschaft"] { left: 2%;  top: 30%; width: 33%; height: 18.56%; }
  .zg-bubble[data-zg="tourismus"]  { left: 60%; top: 26%; width: 34%; height: 19.13%; }
  .zg-bubble[data-zg="ehrenamt"]   { left: 8%;  top: 53%; width: 36%; height: 20.25%; }
  .zg-bubble[data-zg="ankommen"]   { left: 56%; top: 50%; width: 38%; height: 21.38%; }
  .zg-bubble[data-zg="jung"]       { left: 4%;  top: 76%; width: 35%; height: 19.69%; }
  .zg-bubble[data-zg="klar"]       { left: 58%; top: 73%; width: 36%; height: 20.25%; }
  .zg-bubble.is-active { --s: 1.08; outline-offset: 2px; outline-width: 3px; }
  .zielgruppen__panels { padding: 28px 22px; border-radius: 24px; }
  .zg-panel__head { margin-bottom: 22px; }
  .zg-panel__tag { font-size: 11px; padding: 6px 14px; margin-bottom: 16px; }
  .zg-panel__headline { font-size: 26px; }
  .zg-panel__body { margin-bottom: 24px; }
  .zg-panel__body p { font-size: 15px; }
  .zg-panel__pillars {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-bottom: 28px;
  }
  .zg-pillar { font-size: 14px; padding: 16px 20px; }
  .zg-panel__themes {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-bottom: 24px;
  }
  .zg-theme { padding: 18px 22px; }
  .zg-theme h4 { font-size: 16px; }
  .zg-theme p { font-size: 13px; }
  .zg-panel__subline { padding: 22px 24px; font-size: 15px; }

  /* BEWEGT */
  .bewegt { padding: 60px 0 70px; }
  .bewegt__inner { padding: 0 24px; }
  .bewegt__header { margin-bottom: 36px; }
  .bewegt__title { font-size: 38px; }
  .bewegt-card { width: 280px; height: 440px; padding: 24px 22px 22px; }
  .bewegt-card__title { font-size: 19px; margin-bottom: 12px; }
  .bewegt-card__text { font-size: 13px; }
  .bewegt-card__tags { margin-top: 18px; }
  .bewegt__track { animation-duration: 60s; }

  /* ZITAT */
  .quote { padding: 80px 0 100px; }
  .quote__inner { padding: 0 24px; }
  .quote__mark { font-size: 200px; top: -30px; left: 10px; }
  .quote__grid { grid-template-columns: 1fr; gap: 40px; }
  .quote__eyebrow { font-size: 12px; padding: 8px 16px; margin-bottom: 24px; }
  .quote__text { font-size: 32px; margin-bottom: 32px; }
  .quote__author-rule { width: 40px; }
  .quote__author-name { font-size: 16px; }
  .quote__author-role { font-size: 13px; }
  .quote__image {
    aspect-ratio: 4 / 3;
    transform: rotate(0);
    max-width: 420px;
    margin: 0 auto;
  }
  .quote__image::before { display: none; }

  /* BEWEGT-LEAD */
  .bewegt__lead { font-size: 15px; margin-top: 16px; }

  /* FAQ */
  .faq { padding: 60px 0 70px; }
  .faq__inner { padding: 0 22px; }
  .faq__header { margin-bottom: 32px; }
  .faq__title { font-size: 36px; }
  .faq__lead { font-size: 15px; }
  .faq-item summary { padding: 18px 20px; gap: 16px; }
  .faq-item__q { font-size: 15px; }
  .faq-item__icon { width: 24px; height: 24px; }
  .faq-item__icon::before,
  .faq-item__icon::after { width: 10px; }
  .faq-item__a { padding: 0 20px 20px; font-size: 14.5px; }

  /* KONTAKT */
  .contact { padding: 60px 0 110px; }
  .contact__inner { padding: 0 24px; }
  .contact__card { padding: 38px 28px 45px; }
  .contact__title { font-size: 28px; }
  .contact__intro { font-size: 15px; }
  .contact__deco { display: none; }

  /* FOOTER */
  .footer { padding: 56px 0 110px; }
  .footer__inner { padding: 0 24px; }
  .footer__cols {
    grid-template-columns: 1fr;
    gap: 36px;
    padding-bottom: 36px;
  }
  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    text-align: left;
  }
  .footer__links { flex-wrap: wrap; gap: 18px; }
}

/* ============================================
   SCROLL-ANIMATIONEN
   ============================================ */

.js .reveal {
  opacity: 0;
  transition:
    opacity 700ms cubic-bezier(0.2, 0.9, 0.25, 1),
    transform 700ms cubic-bezier(0.2, 0.9, 0.25, 1);
  will-change: opacity, transform;
}

.js .reveal--up    { transform: translate3d(0, 28px, 0); }
.js .reveal--down  { transform: translate3d(0, -28px, 0); }
.js .reveal--left  { transform: translate3d(-40px, 0, 0); }
.js .reveal--right { transform: translate3d(40px, 0, 0); }
.js .reveal--scale { transform: scale(0.9); }

.js .reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  will-change: auto;
}

.js .reveal-lines .line {
  display: block;
  overflow: hidden;
  line-height: inherit;
}

.js .reveal-lines .line__inner {
  display: block;
  transform: translate3d(0, 110%, 0);
  transition: transform 800ms cubic-bezier(0.2, 0.9, 0.25, 1);
  will-change: transform;
}

.js .reveal-lines.is-visible .line__inner {
  transform: translate3d(0, 0, 0);
}

.js .reveal-lines.is-visible .line:nth-child(1) .line__inner { transition-delay: 0ms; }
.js .reveal-lines.is-visible .line:nth-child(2) .line__inner { transition-delay: 110ms; }
.js .reveal-lines.is-visible .line:nth-child(3) .line__inner { transition-delay: 220ms; }
.js .reveal-lines.is-visible .line:nth-child(4) .line__inner { transition-delay: 330ms; }

.js.parallax-on [data-parallax] {
  transform: translate3d(0, var(--parallax-y, 0px), 0) scale(1.15);
  transform-origin: center;
  will-change: transform;
}

.js.parallax-on .quote__image,
.js.parallax-on .intro__landscape { overflow: hidden; }

@media (max-width: 768px) {
  .js.parallax-on [data-parallax] {
    transform: none;
    will-change: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  .js .reveal,
  .js .reveal-lines .line__inner {
    transition: opacity 200ms ease !important;
    transform: none !important;
  }
  .js .reveal-lines .line { overflow: visible; }
  .js.parallax-on [data-parallax] { transform: none !important; }
  .hero__scroll-hint::after { animation: none; }
}

/* ============================================
   MAUS-TRAIL IM HERO
   ============================================ */

.js .hero__trail {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 4;
}

.js .trail-item {
  position: absolute;
  font-family: 'Open Sans', sans-serif;
  font-weight: 800;
  font-size: clamp(14px, 1.4vw, 24px);
  letter-spacing: -0.005em;
  color: var(--white);
  background: var(--dark-brown);
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  text-transform: uppercase;
  transform: translate(-50%, -50%) rotate(var(--trail-rot, 0deg)) scale(0.85);
  opacity: 0;
  transition:
    opacity 200ms ease-out,
    transform 320ms cubic-bezier(0.2, 0.9, 0.25, 1);
}

.js .trail-item--alt {
  background: var(--peach);
  color: var(--dark-brown);
}

.js .trail-item--blue {
  background: var(--blue);
  color: var(--white);
}

.js .trail-item--yellow {
  background: var(--yellow-green);
  color: var(--dark-brown);
}

.js .trail-item.is-visible {
  opacity: 1;
  transform: translate(-50%, -50%) rotate(var(--trail-rot, 0deg)) scale(1);
}

.js .trail-item.is-fading {
  opacity: 0;
  transition: opacity 500ms ease-out;
}

@media (prefers-reduced-motion: reduce) { .js .hero__trail { display: none; } }

/* ============================================
   LEGAL-SEITEN (Impressum, Datenschutz)
   ============================================ */
.legal-page { background: var(--white); }

.legal {
  background: var(--white);
  color: var(--dark-brown);
  padding: 160px 0 80px;
}

.legal__inner {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 32px;
}

.legal__back {
  display: inline-block;
  margin-bottom: 32px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
  text-decoration: none;
}

.legal__back:hover { text-decoration: underline; }

.legal__title {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin: 0 0 24px;
  color: var(--dark-brown);
}

.legal__lead {
  font-size: 18px;
  line-height: 1.55;
  color: var(--dark-brown);
  margin: 0 0 40px;
}

.legal h2 {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.005em;
  text-transform: uppercase;
  margin: 48px 0 14px;
  color: var(--blue);
}

.legal h3 {
  font-size: 17px;
  font-weight: 700;
  margin: 28px 0 10px;
  color: var(--dark-brown);
}

.legal p,
.legal li {
  font-size: 16px;
  line-height: 1.65;
  color: var(--dark-brown);
}

.legal p { margin: 0 0 14px; }

.legal ul {
  margin: 0 0 14px;
  padding-left: 22px;
}

.legal li { margin-bottom: 6px; }

.legal a {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 3px;
  word-break: break-word;
}

.legal a:hover { text-decoration: none; }

@media (max-width: 768px) {
  .legal { padding: 120px 0 60px; }
  .legal__inner { padding: 0 22px; }
  .legal h2 { font-size: 19px; margin-top: 36px; }
  .legal p, .legal li { font-size: 15px; }
}
