/* ============================================================
   Voss & Votava Sportreisen — Design System
   Tokens und Werte exakt nach Design-Handoff (Stand 2026).
   Keine neuen Farben, Schriften oder Radien ergaenzen.
   ============================================================ */

:root {
  /* Farben */
  --navy: #12233B;
  --blue-800: #1B4D8C;
  --blue-600: #2E7BD6;
  --blue-400: #8CB4E8;
  --blue-300: #8CC0FF;
  --blue-200: #AFC0D8;
  --blue-100: #C9DCF2;
  --blue-050: #EAF1FA;
  /* Flaechenton der getoenten Abschnitte. War #EEF4FA, nur 1,11 : 1
     gegen Weiss - die Abschnittsgrenzen waren kaum zu sehen. */
  --blue-025: #E1EBF6;
  --bg-soft: #FAFCFE;
  --text-body: #516180;
  --text-muted: #6B7A92;
  --text-nav: #3C4C63;
  --text-faint: #8A94A3;
  --text-faintest: #93A0B4;
  --line: #EAEFF5;
  --line-strong: #DCE3EC;
  --line-input: #D2DCE8;
  --white: #ffffff;
  --link-hover: #12386B;

  /* Statusfarben */
  --ok-text: #1B8A54;
  --err-text: #9C2B20;
  --err-bg: #FDEDEC;
  --err-line: #F6C9C4;

  /* Verlaeufe — es gibt genau drei */
  --grad-primary: linear-gradient(135deg, #2E7BD6, #1B4D8C);
  --grad-mono: linear-gradient(150deg, #2E7BD6, #12233B);
  --grad-dark: linear-gradient(150deg, #12233B 0%, #1B4D8C 62%, #2E7BD6 130%);

  /* Schatten */
  --shadow-card: 0 12px 30px rgba(18, 35, 59, .05);
  --shadow-btn: 0 10px 24px rgba(27, 77, 140, .28);
  --shadow-btn-sm: 0 8px 20px rgba(27, 77, 140, .26);
  --shadow-hero: 26px 30px 60px -30px rgba(18, 35, 59, .18);
  --shadow-tile: 0 18px 40px rgba(18, 35, 59, .13);
  --shadow-form: 0 24px 54px rgba(18, 35, 59, .09);

  /* Schrift */
  --font-sans: 'Hanken Grotesk', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-display: 'Archivo', var(--font-sans);
  --font-amp: 'Fira Sans', var(--font-sans);

  /* Layout */
  --wrap: 1240px;
  --wrap-legal: 1040px;
  --wrap-prose: 820px;
  --gutter: 24px;
  --section-y: clamp(64px, 9vw, 104px);
}

/* ------------------------------ Basis ------------------------------ */

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--navy);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: var(--blue-800); text-decoration: none; }
a:hover { color: var(--link-hover); }

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

h1, h2, h3 { font-family: var(--font-display); }

input, textarea, select, button { font-family: inherit; }
::placeholder { color: #9AA6B4; }

input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--blue-800);
  box-shadow: 0 0 0 3px rgba(27, 77, 140, .15);
}

:focus-visible { outline: 2px solid var(--blue-600); outline-offset: 3px; }

section[id], header { scroll-margin-top: 82px; }

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  margin: -1px; padding: 0;
  overflow: hidden; clip: rect(0 0 0 0);
  white-space: nowrap; border: 0;
}

/* ------------------------------ Layout ------------------------------ */

.wrap {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.section { padding: var(--section-y) 0; }
.section--white { background: var(--white); }
.section--tint { background: var(--blue-025); }
.section--top-line { border-top: 1px solid var(--line); }

.grid { display: grid; gap: 22px; }
.grid--240 { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }

/* ------------------------------ Typografie ------------------------------ */

.eyebrow {
  display: inline-block;
  color: var(--blue-800);
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  font-size: 13.5px;
  margin-bottom: 16px;
}

.h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(40px, 6vw, 68px);
  line-height: 1.02;
  letter-spacing: -.022em;
  color: var(--navy);
  margin: 0 0 22px;
}

.h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(34px, 5vw, 54px);
  line-height: 1.03;
  letter-spacing: -.02em;
  color: var(--navy);
  margin: 0 0 18px;
}

.h2--sm {
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.06;
}

.h2--md {
  font-size: clamp(32px, 4.5vw, 50px);
  line-height: 1.05;
}

.lead {
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.6;
  color: var(--text-body);
  margin: 0;
}

.lead--hero {
  font-size: clamp(17px, 2.2vw, 20px);
  max-width: 540px;
  margin: 0 0 30px;
}

.intro {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 48px;
}

.intro .lead { font-size: clamp(17px, 2vw, 19px); }

.eyebrow--lg { margin-bottom: 20px; }
.lead--section { max-width: 620px; margin-bottom: 50px; }
.intro--wide { max-width: 760px; }
.h2--occasions { font-size: clamp(32px, 4.5vw, 48px); line-height: 1.06; }

/* Zentrierte Aktionszeile unter einem Abschnitt */
.center-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 42px;
}
.center-row--tight { margin-top: 36px; }

/* ------------------------------ Buttons ------------------------------ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-weight: 700;
  font-size: 16px;
  padding: 15px 28px;
  border-radius: 12px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: box-shadow .18s ease, background .18s ease, color .18s ease;
}

.btn--primary {
  background: var(--grad-primary);
  color: var(--white);
  box-shadow: var(--shadow-btn);
}
.btn--primary:hover { color: var(--white); box-shadow: 0 14px 30px rgba(27, 77, 140, .34); }

.btn--secondary {
  background: var(--white);
  color: var(--navy);
  border-color: var(--line-input);
}
.btn--secondary:hover { color: var(--navy); box-shadow: var(--shadow-card); }

.btn--light {
  background: var(--white);
  color: var(--navy);
  border-color: #CFD8E4;
}
.btn--light:hover { color: var(--navy); box-shadow: var(--shadow-card); }

.btn--block { width: 100%; }
.btn--wide { padding: 16px 32px; }
.btn--gap { margin-top: 22px; }
.btn[disabled] { opacity: .7; cursor: default; }

.btn svg { flex: none; }

/* ------------------------------ Header ------------------------------ */

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(255, 255, 255, .85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.site-header__bar {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 14px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

/*
  Logo-Lockup — Text plus CSS, kein Bild. Bleibt auf jedem Display
  scharf, ist fuer Suchmaschinen und Screenreader lesbar und braucht
  keinen zusaetzlichen Request.

  Aufbau und Proportionen sind aus der freigegebenen Export-Vorlage
  (vv-logo-hell.png, 658x126) ausgemessen:
    V-Block  204 x  98 Einheiten   -> Schriftgrad 2,35 x Zeile 1
    Abstand   40 Einheiten         -> 0,41 x Versalhoehe
    Strich     6 Einheiten breit, volle Hoehe
    Zeile 1   42 Einheiten Versalhoehe
    Zeile 2   0,67 x Zeile 1
*/
.logo {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  text-decoration: none;
}

/* Die zwei V — zwei Buchstaben in Archivo 900, eng gesetzt */
.logo__vv {
  flex: none;
  display: inline-flex;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 44px;
  line-height: .74;
  letter-spacing: -.045em;
}

.logo__vv i { font-style: normal; }
.logo__vv i:first-child { color: var(--navy); }
.logo__vv i:last-child { color: var(--blue-600); }

.logo__rule {
  flex: none;
  width: 2px;
  height: 41px;
  border-radius: 1px;
  background: #DCE4EE;
}

.logo__text {
  display: inline-flex;
  flex-direction: column;
  line-height: 1.02;
}

.logo__name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 19px;
  letter-spacing: -.01em;
  color: var(--navy);
  white-space: nowrap;
}

.logo__amp {
  font-family: var(--font-amp);
  font-weight: 400;
  font-size: .95em;
  margin: 0 -2px;
  color: var(--text-faint);
}

.logo__sub {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: -.005em;
  color: var(--text-faint);
  margin-top: 3px;
}

/* Fassung fuer dunklen Grund (Footer, Partner-Hero) */
.logo--light .logo__vv i:first-child { color: var(--white); }
.logo--light .logo__vv i:last-child { color: var(--blue-400); }
.logo--light .logo__rule { background: #414F62; }
.logo--light .logo__name { color: var(--white); }
.logo--light .logo__amp { color: var(--blue-200); }
.logo--light .logo__sub { color: var(--blue-200); }

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  font-weight: 600;
  font-size: 16px;
}
.site-nav a { color: var(--text-nav); }
.site-nav a:hover { color: var(--blue-800); }

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--grad-primary);
  color: var(--white);
  font-weight: 700;
  font-size: 15px;
  padding: 12px 22px;
  border-radius: 11px;
  box-shadow: var(--shadow-btn-sm);
}
.header-cta:hover { color: var(--white); }

.header-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 15px;
  color: var(--text-nav);
}

/* Burger */
.burger {
  display: none;
  flex: none;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  border: 1px solid var(--line-strong);
  background: var(--white);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.burger__lines {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 20px;
}

.burger__lines span {
  display: block;
  height: 2px;
  border-radius: 2px;
  background: var(--navy);
  transition: transform .22s ease, opacity .18s ease;
}

.burger[aria-expanded="true"] .burger__lines span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger[aria-expanded="true"] .burger__lines span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] .burger__lines span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobiles Panel */
.mobile-panel {
  overflow: hidden;
  border-top: 1px solid transparent;
  background: rgba(255, 255, 255, .97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  max-height: 0;
  opacity: 0;
  transition: max-height .32s ease, opacity .22s ease;
}

.mobile-panel.is-open {
  border-top-color: var(--line);
  max-height: 520px;
  opacity: 1;
}

.mobile-panel nav {
  display: flex;
  flex-direction: column;
  padding: 8px var(--gutter) 22px;
}

.mobile-panel__link {
  color: var(--navy);
  font-weight: 600;
  font-size: 19px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.mobile-panel__cta {
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  background: var(--grad-primary);
  color: var(--white);
  font-weight: 700;
  font-size: 17px;
  padding: 17px 24px;
  border-radius: 12px;
  box-shadow: var(--shadow-btn-sm);
}
.mobile-panel__cta:hover { color: var(--white); }

.mobile-panel__phone {
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  color: var(--blue-800);
  font-weight: 700;
  font-size: 16px;
  padding: 15px 24px;
  border-radius: 12px;
  border: 1px solid var(--line-input);
  background: var(--white);
}

/* ------------------------------ Hero ------------------------------ */

.hero { background: linear-gradient(180deg, #F3F7FC, #ffffff); }

.hero__inner {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: clamp(48px, 7vw, 86px) var(--gutter) clamp(44px, 5vw, 64px);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: clamp(36px, 5vw, 60px);
  align-items: center;
}

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

.hero__media {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-hero);
}

/*
  Diashow: nur das eintreffende Bild wird eingeblendet, das vorherige
  bleibt darunter sichtbar, bis die Blende durch ist. So blitzt kein
  weisser Grund durch und es scheinen nie zwei Motive gleichzeitig.
*/
.hero__slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  z-index: 0;
  transition: opacity 1.1s ease-in-out;
}

.hero__slide.is-active {
  opacity: 1;
  z-index: 2;
}

.hero__slide.is-previous {
  opacity: 1;
  z-index: 1;
  transition: none;
}

.hero__caption {
  position: absolute;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
  max-width: calc(100% - 36px);
  pointer-events: none;
  text-align: center;
  background: rgba(255, 255, 255, .42);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, .5);
  border-radius: 14px;
  padding: 12px 20px;
  color: var(--blue-800);
}

.hero__caption strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 15px;
  white-space: nowrap;
}

.hero__caption span {
  display: block;
  font-size: 12px;
  margin-top: 2px;
  white-space: nowrap;
}

/* Trust-Strip */
.trust {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg-soft);
}

.trust__inner {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 26px var(--gutter);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 20px;
}

.trust__item { text-align: center; }

.trust__num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(28px, 3vw, 34px);
  color: var(--blue-800);
}

.trust__label {
  font-size: 13.5px;
  color: var(--text-muted);
  margin-top: 2px;
}

/* ------------------------------ Karten ------------------------------ */

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow-card);
}

.card--pad { padding: 30px; }

.card--photo { overflow: hidden; padding: 0; }

.card:hover { box-shadow: 0 16px 36px rgba(18, 35, 59, .08); }

.card__body { padding: 26px; }

.card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  color: var(--navy);
  margin: 0 0 9px;
}

.card p {
  font-size: 15.5px;
  line-height: 1.55;
  color: var(--text-muted);
  margin: 0;
}

.card__body h3 { margin-bottom: 10px; }
.card__body p { font-size: 15px; }

.icon-tile {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: var(--blue-050);
  color: var(--blue-800);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}

.card__media { height: 200px; }
.card__media img { width: 100%; height: 100%; object-fit: cover; }

/* ------------------------------ Events ------------------------------ */

.events__head {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  align-items: end;
  margin-bottom: 48px;
}

.events__head .h2 { margin: 0; }
.events__head p { font-size: 18px; line-height: 1.6; color: var(--text-body); margin: 0; }

.events__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 26px;
}

.event {
  position: relative;
  aspect-ratio: 3 / 4;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-tile);
}

.event img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .2s ease;
}
.event:hover img { transform: scale(1.03); }

.event__veil {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(to top,
    rgba(8, 18, 34, .94) 4%,
    rgba(8, 18, 34, .6) 34%,
    rgba(8, 18, 34, .06) 66%,
    rgba(8, 18, 34, 0) 100%);
}

.event__body {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 26px;
  pointer-events: none;
}

.event__tag {
  display: block;
  color: var(--blue-300);
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
  font-size: 12.5px;
  margin-bottom: 10px;
}

.event__body h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 26px;
  line-height: 1.08;
  color: var(--white);
  margin: 0 0 10px;
}

.event__body p {
  font-size: 15px;
  line-height: 1.5;
  color: rgba(255, 255, 255, .85);
  margin: 0 0 14px;
}

.event__link {
  pointer-events: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue-300);
  font-weight: 700;
  font-size: 15px;
}
.event__link:hover { color: var(--white); }

/* ------------------------------ Portale ------------------------------ */

.portal-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.portal {
  border-radius: 22px;
  padding: clamp(28px, 3vw, 44px);
  display: flex;
  flex-direction: column;
}

.portal--dark { background: var(--navy); color: var(--white); }
.portal--light { background: #F3F7FC; border: 1px solid #E1E9F2; }

.portal__icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}

.portal--dark .portal__icon { background: rgba(140, 180, 232, .18); color: var(--blue-300); }
.portal--light .portal__icon { background: var(--blue-050); color: var(--blue-800); }

.portal__kicker {
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-size: 12.5px;
}
.portal--dark .portal__kicker { color: var(--blue-300); }
.portal--light .portal__kicker { color: var(--blue-800); }

.portal h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 27px;
  margin: 10px 0 12px;
}
.portal--light h3 { color: var(--navy); }

.portal p {
  font-size: 16px;
  line-height: 1.6;
  margin: 0 0 20px;
}
.portal--dark p { color: var(--blue-200); }
.portal--light p { color: var(--text-body); margin-bottom: 24px; flex: 1; }

.portal__note {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  background: rgba(46, 123, 214, .12);
  border: 1px solid rgba(140, 180, 232, .28);
  border-radius: 12px;
  padding: 14px 16px;
  margin: 0 0 24px;
}

.portal__note svg { flex: none; color: var(--blue-300); margin-top: 1px; }
.portal__note span { font-size: 14px; line-height: 1.5; color: #CBD8EC; }

.portal .btn { margin-top: auto; padding: 15px 24px; }

.portal__domain {
  margin-top: 14px;
  font-size: 13px;
  text-align: center;
}
.portal--dark .portal__domain { color: #6E82A0; }
.portal--light .portal__domain { color: var(--text-faintest); }

/* ------------------------------ Diskretion ------------------------------ */

.split {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: var(--section-y) var(--gutter);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: clamp(36px, 5vw, 60px);
  align-items: center;
}

.split p { font-size: 18px; line-height: 1.65; color: var(--text-body); margin: 0; }

.proof { display: flex; flex-direction: column; gap: 16px; }

.proof__item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: var(--white);
  border: 1px solid #E7EDF4;
  border-radius: 14px;
  padding: 22px;
}

.proof__item svg { flex: none; color: var(--ok-text); }
.proof__item strong { display: block; font-weight: 700; font-size: 16px; color: var(--navy); }
.proof__item span { font-size: 15px; color: var(--text-muted); }

/* ------------------------------ Ueber uns ------------------------------ */

.prose-center {
  max-width: var(--wrap-prose);
  margin: 0 auto;
  padding: var(--section-y) var(--gutter);
  text-align: center;
}

.prose-center .h2 { font-size: clamp(34px, 5vw, 52px); line-height: 1.04; margin-bottom: 22px; }
.prose-center .lead { line-height: 1.65; }

/* ------------------------------ Kontakt ------------------------------ */

.contact { background: linear-gradient(180deg, #ffffff, #F3F7FC); }

.contact__inner {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: var(--section-y) var(--gutter);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: clamp(36px, 5vw, 60px);
  align-items: start;
}

.contact .h2 { font-size: clamp(34px, 5vw, 52px); line-height: 1.04; }
.contact__lead { font-size: 18px; line-height: 1.6; color: var(--text-body); margin: 0 0 34px; max-width: 460px; }

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

.contact__row {
  display: flex;
  align-items: center;
  gap: 16px;
  color: inherit;
}

.contact__tile {
  flex: none;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--blue-050);
  color: var(--blue-800);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact__label {
  display: block;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--text-faint);
}

.contact__value {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 19px;
  color: var(--navy);
}

.contact__hours {
  margin-top: 26px;
  padding: 18px 20px;
  background: var(--white);
  border: 1px solid #E7EDF4;
  border-radius: 14px;
  font-size: 15px;
  line-height: 1.55;
  color: var(--text-muted);
}
.contact__hours strong { color: var(--navy); }

/* Formular */
.form-card {
  background: var(--white);
  border: 1px solid #E7EDF4;
  border-radius: 24px;
  padding: clamp(24px, 3vw, 36px);
  box-shadow: var(--shadow-form);
}

.form-card h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 24px;
  color: var(--navy);
  margin: 0 0 8px;
}

.form-card__intro {
  font-size: 15.5px;
  line-height: 1.55;
  color: var(--text-muted);
  margin: 0 0 24px;
}

.field { display: block; margin-bottom: 18px; }

.field > span {
  display: block;
  font-weight: 700;
  font-size: 14px;
  color: var(--navy);
  margin-bottom: 8px;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 13px 15px;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  font-size: 16px;
  color: var(--navy);
  background: var(--white);
}

.field textarea { resize: vertical; }

.field--invalid input,
.field--invalid textarea { border-color: var(--err-line); background: #FFFBFB; }

.field__error {
  display: none;
  font-size: 13px;
  font-weight: 600;
  color: var(--err-text);
  margin-top: 6px;
}
.field--invalid .field__error { display: block; }

.field-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 18px;
  margin-bottom: 18px;
}
.field-row .field { margin-bottom: 0; }

.field > span em {
  font-style: normal;
  font-weight: 500;
  color: #A0ADC0;
}

.checkbox {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: start;
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--text-muted);
  cursor: pointer;
}

.checkbox input {
  width: 16px;
  height: 16px;
  margin-top: 3px;
  accent-color: var(--blue-600);
  cursor: pointer;
}

.checkbox .field__error { grid-column: 2; margin-top: 2px; }

.honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }

.form-note {
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--text-faint);
  margin: 16px 0 0;
}

.form-error {
  margin: 16px 0 0;
  padding: 14px 16px;
  background: var(--err-bg);
  border: 1px solid var(--err-line);
  border-radius: 12px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--err-text);
}
.form-error a { color: var(--err-text); font-weight: 700; text-decoration: underline; }

.form-success { text-align: center; }

.form-success__icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #E7F5EC;
  color: var(--ok-text);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.form-success h3 { font-size: 26px; margin-bottom: 10px; }
.form-success p { font-size: 16px; line-height: 1.6; color: var(--text-body); margin: 0; }
.form-success--inline { padding: 8px 0 4px; }
.form-success__icon--standalone { margin-bottom: 24px; }

/* ------------------------------ Footer ------------------------------ */

.site-footer { background: var(--navy); }

.site-footer__inner {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 44px var(--gutter) 30px;
}

.site-footer__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-nav {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
  font-size: 15px;
  font-weight: 600;
}
.footer-nav a { color: rgba(255, 255, 255, .75); }
.footer-nav a:hover { color: var(--white); }
.footer-nav a[aria-current="page"] { color: var(--blue-300); }

.site-footer__bottom {
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, .12);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.site-footer__bottom span {
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255, 255, 255, .5);
}

.site-footer__tax { max-width: 640px; }

/* ------------------------------ Rechtsseiten ------------------------------ */

.legal-header .site-header__bar { max-width: var(--wrap-legal); }
.legal-footer .site-footer__inner {
  max-width: var(--wrap-legal);
  padding: 36px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.legal {
  max-width: var(--wrap-prose);
  margin: 0 auto;
  padding: clamp(44px, 6vw, 72px) var(--gutter) clamp(56px, 7vw, 88px);
}

.legal > .eyebrow { font-size: 13px; margin-bottom: 14px; }

.legal h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(34px, 5vw, 52px);
  letter-spacing: -.02em;
  margin: 0 0 36px;
  color: var(--navy);
}

.legal__body {
  font-size: 16.5px;
  line-height: 1.7;
  color: #33435C;
}

.legal__body h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  color: var(--navy);
  margin: 32px 0 10px;
}
.legal__body h2:first-child { margin-top: 0; }

.legal__body h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  color: var(--navy);
  margin: 24px 0 8px;
}

.legal__body p { margin: 0 0 12px; }
.legal__body p:last-child { margin-bottom: 0; }

.legal__body ul { margin: 0 0 14px; padding-left: 22px; }
.legal__body li { margin-bottom: 7px; }

/* Impressum: kurze Abschnitte, jeweils Ueberschrift plus ein Absatz */
.legal__body--sections p { margin-bottom: 26px; }
.legal__body--sections h2 { margin-top: 0; }

.legal__muted { color: #5A6A82; }

.legal-box {
  padding: 20px 22px;
  border-radius: 14px;
  margin: 0 0 30px;
}
.legal-box p:last-child { margin-bottom: 0; }
.legal-box--warn { background: #FBF3E9; border: 1px solid #F0DCC0; }
.legal-box--info { background: #F3F7FC; border: 1px solid #E1E9F2; padding: 18px 20px; margin-bottom: 12px; }
.legal-box--form { background: var(--bg-soft); border: 1px dashed #C7D3E2; padding: 24px; line-height: 1.9; }

/* ------------------------------ Partnerseite ------------------------------ */

.partner-hero {
  position: relative;
  overflow: hidden;
  background: var(--navy);
  color: var(--white);
}

.partner-hero__bg {
  position: absolute;
  inset: 0;
  background: var(--grad-dark);
}

.partner-hero__glow {
  position: absolute;
  top: -260px;
  right: -120px;
  width: 720px;
  height: 720px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(140, 180, 232, .32) 0%, rgba(140, 180, 232, 0) 62%);
  pointer-events: none;
}

.partner-hero__inner {
  position: relative;
  max-width: var(--wrap);
  margin: 0 auto;
  padding: clamp(52px, 7vw, 88px) var(--gutter) clamp(120px, 13vw, 168px);
}

.partner-hero .eyebrow { color: var(--blue-300); }

.partner-hero h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(38px, 5.4vw, 58px);
  line-height: 1.03;
  letter-spacing: -.025em;
  color: var(--white);
  margin: 0 0 20px;
  max-width: 760px;
}

.partner-hero__lead {
  font-size: clamp(17px, 2vw, 19px);
  line-height: 1.6;
  color: var(--blue-200);
  margin: 0;
  max-width: 560px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 7px 14px 7px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .09);
  border: 1px solid rgba(255, 255, 255, .16);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  margin-bottom: 22px;
}

.pill__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #6EE7A8;
  box-shadow: 0 0 0 4px rgba(110, 231, 168, .18);
  flex: none;
}

.pill span {
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: .02em;
  color: #DBE9FB;
}

.partner-body {
  position: relative;
  z-index: 2;
  max-width: var(--wrap);
  margin: clamp(-148px, -12vw, -100px) auto 0;
  padding: 0 var(--gutter) var(--section-y);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  align-items: start;
}

.partner-main { display: flex; flex-direction: column; gap: 24px; }
.partner-side { display: flex; flex-direction: column; gap: 22px; max-width: 460px; }

.panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow-form);
  padding: clamp(28px, 3vw, 40px);
}

.panel__kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.panel__kicker i {
  width: 26px;
  height: 1px;
  background: var(--blue-600);
  flex: none;
}

.panel__kicker span {
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--blue-800);
}

.panel__kicker--muted i { background: var(--line-strong); }
.panel__kicker--muted span { color: var(--text-faintest); }

.panel h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(24px, 2.6vw, 30px);
  line-height: 1.15;
  letter-spacing: -.02em;
  color: var(--navy);
  margin: 0 0 16px;
}

.panel__claim {
  font-size: 20px;
  line-height: 1.5;
  font-weight: 600;
  letter-spacing: -.01em;
  color: var(--navy);
  margin: 0 0 18px;
}

.panel p {
  font-size: 16.5px;
  line-height: 1.7;
  color: var(--text-body);
  margin: 0 0 16px;
}
.panel p:last-child { margin-bottom: 0; }

.panel__intro { margin-bottom: 26px; }
.panel__sub { font-size: 15px; margin-bottom: 24px; }

/* Ablauf-Schritte */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 26px;
}

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

.step__head { display: flex; align-items: center; gap: 10px; }

.step__num {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--blue-050);
  color: var(--blue-800);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
}

.step__rule {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, var(--line-strong), rgba(220, 227, 236, 0));
}

.step strong {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -.01em;
  color: var(--navy);
}

.step span { font-size: 14.5px; line-height: 1.6; color: var(--text-muted); }

/* Auswahl-Karten */
.choice {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  text-align: left;
  padding: 20px 22px;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  background: #F8FAFD;
  transition: border-color .15s ease, background .15s ease, box-shadow .15s ease;
}

.choice:hover {
  border-color: var(--blue-600);
  background: var(--white);
  box-shadow: 0 12px 26px -18px rgba(27, 77, 140, .75);
}

.choice__text { display: flex; flex-direction: column; gap: 4px; }

.choice strong {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -.01em;
  color: var(--navy);
}

.choice span { font-size: 13.5px; line-height: 1.5; color: var(--text-muted); }

.choice__arrow { color: var(--blue-600); flex: none; }

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

.panel__hint {
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--text-faintest);
  margin: 18px 0 0;
}

/* Ansprechpartner-Karte */
.contact-panel {
  position: relative;
  overflow: hidden;
  background: var(--grad-dark);
  border-radius: 18px;
  box-shadow: var(--shadow-form);
  padding: clamp(28px, 3vw, 36px);
  color: #E7EEFA;
}

.contact-panel__glow {
  position: absolute;
  top: -140px;
  right: -100px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(140, 180, 232, .3) 0%, rgba(140, 180, 232, 0) 65%);
  pointer-events: none;
}

.contact-panel__inner { position: relative; }
.contact-panel .panel__kicker i { background: var(--blue-300); }
.contact-panel .panel__kicker span { color: var(--blue-300); }

.contact-panel > .contact-panel__inner > p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--blue-200);
  margin: 0 0 22px;
}

.people { display: grid; gap: 10px; margin-bottom: 22px; }

.person {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 13px 15px;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 14px;
  background: rgba(255, 255, 255, .06);
}

.person__initials {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(140, 180, 232, .18);
  color: #BFE0FB;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
}

.person strong { font-size: 15px; font-weight: 700; color: var(--white); }

.datalist {
  display: grid;
  gap: 2px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, .12);
}

.datalist__row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 9px 0;
}
.datalist__row + .datalist__row { border-top: 1px solid rgba(255, 255, 255, .07); }

.datalist__key {
  font-size: 12.5px;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 700;
  color: #7D97BA;
  width: 78px;
  flex: none;
}

.datalist__row a,
.datalist__row span:last-child {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--white);
}
.datalist__row a:hover { color: var(--blue-300); }

/* ------------------------------ Media Queries ------------------------------ */

@media (max-width: 900px) {
  .site-nav,
  .header-cta { display: none; }
  .burger { display: inline-flex; }
}

@media (min-width: 901px) {
  .mobile-panel { display: none; }
}

@media (max-width: 700px) {
  .hero__media { border-radius: 18px; }
}

@media (max-width: 760px) {
  .partner-body { margin-top: -96px; }
  .partner-side { max-width: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero__slide { transition: none; }
  .event img { transition: none; }
  .event:hover img { transform: none; }
}
