/* =========================================================================
   Luftsportverein Borken — Redesign
   Aesthetic: "Sky & Heritage" — Himmelblau + Wolkenweiß + warmer Amber-Akzent
   Editorial, ruhig, viel Weißraum, Haarlinien. Seit 1926.
   ========================================================================= */

:root {
  /* --- Brand / Sky blues (angelehnt an das Original-Blau) --- */
  --sky-50:  #f2f8fd;
  --sky-100: #e4eff9;
  --sky-200: #cfe2f3;
  --brand-500: #1e78c2;
  --brand-600: #15619e;
  --brand-700: #0b4f8a;
  --brand-800: #0a3c69;

  /* --- Akzent: vertrauensvolles Sky-Blau (kein Gelb/Amber mehr) --- */
  --accent:      #1e78c2;
  --accent-dark: #0b4f8a;

  /* --- Apple System-Blau (CTAs, Links) --- */
  --apple-blue:      #0071e3;
  --apple-blue-dark: #0062c3;

  /* --- Tinte / Text --- */
  --ink:    #0e2233;   /* tiefes Navy-Slate statt Schwarz */
  --muted:  #4a6175;   /* erfüllt 4.5:1 auf hellem Grund */
  --line:   #d7e3ef;   /* sichtbare Haarlinie auf hell */
  --line-strong: #c2d4e6;
  --white:  #ffffff;

  /* --- Layout --- */
  --maxw: 1120px;
  --radius: 20px;
  --radius-sm: 13px;
  --shadow-sm: 0 1px 2px rgba(16, 24, 40, .05), 0 1px 3px rgba(16, 24, 40, .04);
  --shadow-md: 0 8px 30px rgba(16, 24, 40, .08);
  --shadow-lg: 0 24px 60px rgba(16, 24, 40, .12);

  --ease: cubic-bezier(.22, .61, .36, 1);

  /* eine einheitliche Schrift überall – San Francisco auf Apple-Geräten, Inter sonst */
  --font-sans:  -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", system-ui, "Inter", "Segoe UI", Roboto, sans-serif;
  --font-serif: var(--font-sans);
  /* Schriftzug im Header – wie auf dem Original-Logo (geometrisch, bold, Großbuchstaben) */
  --font-logo:  "Montserrat", var(--font-sans);
}

/* ----------------------------------------------------------------- Reset */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--sky-50);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; height: auto; }
a { color: var(--apple-blue); text-decoration: none; }
a:hover { color: var(--apple-blue-dark); }
ul { list-style: none; padding: 0; }

/* ---------------------------------------------------------- Typography */
h1, h2, h3 { font-family: var(--font-serif); font-weight: 700; line-height: 1.14; letter-spacing: -.022em; color: var(--ink); }
h2 { font-size: clamp(1.9rem, 4vw, 2.9rem); }
h3 { font-size: 1.32rem; font-weight: 600; line-height: 1.25; }

.eyebrow {
  font-family: var(--font-sans);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--brand-600);
  display: inline-flex;
  align-items: center;
  gap: .55rem;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 2px;
  background: var(--accent);
  display: inline-block;
}

.lead { font-size: 1.18rem; color: var(--muted); }

/* ------------------------------------------------------------- Layout */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 24px; }
section { padding-block: clamp(46px, 6.4vw, 92px); }
.section-head { max-width: 720px; margin-bottom: clamp(26px, 4vw, 44px); }
.section-head h2 { margin-top: .5rem; }
.section-head .lead { margin-top: 1.1rem; }

.alt { background: var(--white); }
.tint { background: linear-gradient(180deg, var(--sky-100), var(--sky-50)); }

/* --------------------------------------------------------------- Buttons */
.btn {
  --bg: var(--brand-700);
  --fg: #fff;
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: var(--font-sans);
  font-weight: 600; font-size: .98rem;
  padding: .82rem 1.4rem;
  border-radius: 999px;
  background: var(--bg); color: var(--fg);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: background-color .2s var(--ease), color .2s var(--ease), box-shadow .2s var(--ease), border-color .2s var(--ease);
  box-shadow: var(--shadow-sm);
}
.btn svg { width: 18px; height: 18px; }
.btn:hover { box-shadow: var(--shadow-md); }

.btn--primary { --bg: var(--apple-blue); --fg: #fff; }
.btn--primary:hover { --bg: var(--apple-blue-dark); color: #fff; }

.btn--white { --bg: #fff; --fg: var(--brand-700); }
.btn--white:hover { --bg: var(--sky-100); color: var(--brand-800); }

.btn--ghost {
  --bg: transparent; --fg: var(--brand-700);
  border-color: var(--line-strong);
  box-shadow: none;
}
.btn--ghost:hover { --bg: var(--white); border-color: var(--brand-500); color: var(--brand-700); }

.btn--light { --bg: rgba(255,255,255,.14); --fg: #fff; border-color: rgba(255,255,255,.35); backdrop-filter: blur(4px); }
.btn--light:hover { --bg: rgba(255,255,255,.24); color: #fff; }

/* ------------------------------------------------------- Focus states */
a:focus-visible, button:focus-visible, .btn:focus-visible, summary:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible {
  outline: 3px solid var(--apple-blue);
  outline-offset: 3px;
  border-radius: 8px;
}

/* =====================================================================
   HEADER / NAV
   ===================================================================== */
/* Apple-Stil: weiße Milchglas-Bar (Logo-Hintergrundfarbe) */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 255, 255, .72);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid rgba(0, 0, 0, .07);
  transition: box-shadow .3s var(--ease), background-color .3s var(--ease);
}
.site-header.is-scrolled { box-shadow: 0 1px 24px rgba(16, 24, 40, .07); }
.nav {
  display: flex; align-items: center; justify-content: space-between;
  height: 62px;
}
.brand { display: flex; align-items: center; gap: .6rem; color: var(--ink); }
.brand:hover { color: var(--ink); }
.brand .mark {
  width: 38px; height: 38px; flex: none;
  display: grid; place-items: center;
  border-radius: 10px;
  background: #fff;
  overflow: hidden;
}
.brand .mark img { width: 100%; height: 100%; object-fit: contain; }
.brand-text { line-height: 1.12; }
.brand-text strong {
  font-family: var(--font-logo); font-weight: 700;
  font-size: .92rem; letter-spacing: .01em; text-transform: uppercase;
  color: #16243f; display: block;
}
.brand-text span { font-family: var(--font-logo); font-size: .62rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin-top: 1px; display: block; }

.nav-links { display: flex; align-items: center; gap: .15rem; }
.nav-links > li > a {
  display: inline-block;
  font-size: .9rem; font-weight: 450; color: #3a4a59;
  padding: .45rem .7rem; border-radius: 8px;
  transition: background-color .18s var(--ease), color .18s var(--ease);
}
.nav-links > li > a:hover { background: rgba(0,0,0,.045); color: var(--ink); }
.nav-links > li > a[aria-current="page"] { color: var(--apple-blue); }

.nav-cta { display: flex; align-items: center; gap: .6rem; }

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  border: 1px solid var(--line-strong); border-radius: 10px;
  background: var(--white); color: var(--ink);
  cursor: pointer;
  align-items: center; justify-content: center;
}
.nav-toggle svg { width: 22px; height: 22px; }

/* =====================================================================
   HERO
   ===================================================================== */
.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(120% 80% at 80% -10%, rgba(255,255,255,.9), transparent 60%),
    linear-gradient(170deg, var(--sky-100) 0%, var(--sky-50) 55%, #fff 100%);
}
.hero::before { /* dezente Wolkentextur */
  content: "";
  position: absolute; inset: 0;
  background: url("../img/clouds.jpg") center top / cover no-repeat;
  opacity: .14;
  mask-image: linear-gradient(180deg, #000 0%, transparent 78%);
  -webkit-mask-image: linear-gradient(180deg, #000 0%, transparent 78%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  padding-block: clamp(40px, 6vw, 80px);
}
.hero-kicker {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--accent-dark);
  margin-bottom: .4rem;
}
.hero h1 {
  font-size: clamp(2.45rem, 5.8vw, 4.1rem);
  font-weight: 800;
  letter-spacing: -.035em;
  margin-block: .2rem .9rem;
}
.hero h1 .em { font-style: italic; color: var(--brand-700); }
.hero p.lead { max-width: 46ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.7rem; }

.hero-figure {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 6px solid #fff;
  aspect-ratio: 4 / 3.05;
  background: var(--sky-100);
}
.hero-figure img { width: 100%; height: 100%; object-fit: cover; }
.hero-figure figcaption {
  position: absolute; left: 14px; bottom: 14px;
  background: rgba(14, 34, 51, .72);
  color: #fff; font-size: .76rem; letter-spacing: .02em;
  padding: .35rem .7rem; border-radius: 8px;
  backdrop-filter: blur(3px);
}

/* Stat-Leiste */
.stats {
  position: relative;
  border-top: 1px solid var(--line);
  background: rgba(255,255,255,.6);
}
.stats ul {
  display: grid; grid-template-columns: repeat(4, 1fr);
  text-align: center;
}
.stats li { padding: 26px 14px; border-left: 1px solid var(--line); }
.stats li:first-child { border-left: none; }
.stats .num {
  font-family: var(--font-serif);
  font-size: clamp(1.7rem, 3.4vw, 2.5rem);
  font-weight: 600; color: var(--brand-700);
  font-variant-numeric: tabular-nums;
  line-height: 1;
}
.stats .label { font-size: .82rem; color: var(--muted); margin-top: .45rem; letter-spacing: .02em; }

/* =====================================================================
   WILLKOMMEN / INTRO  (zwei Spalten)
   ===================================================================== */
.split { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.split .prose p { margin-top: 1rem; color: var(--muted); }
.split .prose p:first-of-type { margin-top: 1.4rem; }
.quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.3rem, 2.4vw, 1.75rem);
  line-height: 1.4;
  color: var(--ink);
  border-left: 3px solid var(--accent);
  padding-left: 1.2rem;
}
.media-frame {
  border-radius: 20px; overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 6px solid #fff;
  aspect-ratio: 3 / 3.4;
  background: var(--sky-100);
}
.media-frame img { width: 100%; height: 100%; object-fit: cover; }

/* =====================================================================
   FEATURE-CARDS (Flugsportarten, Über-uns-Stats etc.)
   ===================================================================== */
.grid { display: grid; gap: 22px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow-sm);
  transition: transform .22s var(--ease), box-shadow .22s var(--ease), border-color .22s var(--ease);
}
.card:hover { box-shadow: var(--shadow-md); border-color: var(--line-strong); }
.card .icon {
  width: 50px; height: 50px; border-radius: 13px;
  display: grid; place-items: center;
  background: var(--sky-100); color: var(--brand-700);
  margin-bottom: 18px;
}
.card .icon svg { width: 26px; height: 26px; }
.card h3 { margin-bottom: .5rem; }
.card p { color: var(--muted); font-size: .98rem; }

/* =====================================================================
   AUSBILDUNG — Schritte
   ===================================================================== */
.steps { display: grid; gap: 20px; grid-template-columns: repeat(3, 1fr); }
.step {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 28px 28px;
  box-shadow: var(--shadow-sm);
}
.step h3 { font-size: 1.12rem; margin-top: .35rem; }
.step .step-tag {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .76rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
  color: var(--brand-700);
}
.step .step-tag::before { content: ""; width: 20px; height: 2px; background: var(--brand-500); display: inline-block; }
.step ul { margin-top: 1rem; display: grid; gap: .5rem; }
.step li { position: relative; padding-left: 1.5rem; font-size: .94rem; color: var(--muted); }
.step li::before {
  content: ""; position: absolute; left: 0; top: .55em;
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--brand-500);
}

/* =====================================================================
   FLOTTE / FLUGZEUGPARK
   ===================================================================== */
.fleet-tabsnote { color: var(--muted); font-size: .95rem; margin-top: .4rem; }
.fleet { display: grid; gap: 22px; grid-template-columns: repeat(4, 1fr); }
.plane {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column;
  transition: transform .22s var(--ease), box-shadow .22s var(--ease);
}
.plane:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.plane-img { aspect-ratio: 4 / 3; background: var(--sky-100); position: relative; overflow: hidden; }
.plane-img img { width: 100%; height: 100%; object-fit: cover; }

/* Platzhalter ohne Foto */
.ph {
  width: 100%; height: 100%;
  display: grid; place-items: center; gap: .5rem;
  background:
    repeating-linear-gradient(135deg, var(--sky-100) 0 14px, var(--sky-50) 14px 28px);
  color: var(--brand-500);
}
.ph svg { width: 40px; height: 40px; opacity: .85; }
.ph span { font-size: .76rem; letter-spacing: .04em; color: var(--muted); }

.plane-body { padding: 18px 20px 22px; flex: 1; display: flex; flex-direction: column; }
.plane-cat { font-size: .72rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--accent-dark); }
.plane-body h3 { font-size: 1.18rem; margin-top: .25rem; }
.plane-reg { font-family: var(--font-sans); font-size: .82rem; color: var(--muted); font-variant-numeric: tabular-nums; }
.plane-specs { margin-top: auto; padding-top: 14px; display: grid; gap: .3rem; }
.plane-specs div { display: flex; justify-content: space-between; gap: 1rem; font-size: .85rem; border-top: 1px solid var(--line); padding-top: .35rem; }
.plane-specs dt { color: var(--muted); }
.plane-specs dd { color: var(--ink); font-weight: 600; font-variant-numeric: tabular-nums; text-align: right; }
.badge-art { display:inline-block; margin-top:.6rem; font-size:.72rem; font-weight:600; color: var(--brand-700); background: var(--sky-100); padding:.2rem .55rem; border-radius:999px; }

/* =====================================================================
   MITGLIED WERDEN — Preise
   ===================================================================== */
.join-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 4vw, 56px); align-items: start; }
.price-table {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm);
}
.price-table h3 { padding: 20px 24px; background: linear-gradient(120deg, var(--brand-700), var(--brand-800)); color: #fff; font-size: 1.05rem; font-weight: 600; }
.price-row { display: flex; justify-content: space-between; align-items: baseline; gap: 1rem; padding: 14px 24px; border-top: 1px solid var(--line); }
.price-row:first-of-type { border-top: none; }
.price-row .k { color: var(--ink); }
.price-row .v { font-weight: 700; color: var(--brand-700); font-variant-numeric: tabular-nums; white-space: nowrap; }
.price-row .sub { display: block; font-size: .8rem; color: var(--muted); font-weight: 500; }

.join-note { color: var(--muted); }
.join-note p { margin-top: 1rem; }
.join-note .highlight {
  background: var(--sky-100); border: 1px solid var(--line);
  border-radius: var(--radius-sm); padding: 16px 18px; color: var(--ink);
  font-size: .95rem; margin-top: 1.3rem;
}
.checklist { margin-top: 1.2rem; display: grid; gap: .6rem; }
.checklist li { position: relative; padding-left: 1.9rem; color: var(--muted); }
.checklist li svg { position: absolute; left: 0; top: .15em; width: 20px; height: 20px; color: var(--brand-600); }

/* =====================================================================
   EVENTS
   ===================================================================== */
.events { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(28px, 4vw, 56px); align-items: center; }
.event-list { display: grid; gap: 16px; }
.event {
  display: flex; gap: 18px; align-items: center;
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 20px 22px; box-shadow: var(--shadow-sm);
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.event:hover { border-color: var(--brand-500); box-shadow: var(--shadow-md); }
.event .when {
  flex: none; width: 64px; height: 64px; border-radius: 14px;
  background: linear-gradient(150deg, var(--accent), var(--accent-dark));
  color: #fff; display: grid; place-items: center; text-align: center; line-height: 1;
}
.event .when .y { font-family: var(--font-serif); font-size: 1.25rem; font-weight: 700; }
.event .when .t { font-size: .62rem; letter-spacing: .08em; text-transform: uppercase; margin-top: 2px; }
.event h3 { font-size: 1.12rem; }
.event p { font-size: .92rem; color: var(--muted); margin-top: .2rem; }
.flyer-frame {
  border-radius: 18px; overflow: hidden; border: 6px solid #fff;
  box-shadow: var(--shadow-lg); background: var(--sky-100); max-width: 420px; margin-inline: auto;
}

/* =====================================================================
   KONTAKT / CTA-BAND
   ===================================================================== */
.cta-band {
  position: relative; overflow: hidden;
  background: linear-gradient(140deg, var(--brand-700), var(--brand-800));
  color: #fff;
}
.cta-band::after {
  content: ""; position: absolute; inset: 0;
  background: url("../img/clouds.jpg") center / cover no-repeat;
  opacity: .12; mix-blend-mode: screen; pointer-events: none;
}
.cta-band .container { position: relative; }
.cta-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: clamp(28px, 5vw, 64px); align-items: center; }
.cta-band h2 { color: #fff; }
.cta-band .eyebrow { color: #bfe0f7; }
.cta-band .eyebrow::before { background: #7fc0ef; }
.cta-band p { color: rgba(255,255,255,.82); margin-top: 1rem; font-size: 1.1rem; max-width: 48ch; }
.contact-card {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--radius); padding: 28px; backdrop-filter: blur(6px);
}
.contact-card ul { display: grid; gap: 16px; }
.contact-card li { display: flex; gap: 14px; align-items: flex-start; }
.contact-card li svg { width: 22px; height: 22px; flex: none; color: var(--accent); margin-top: 2px; }
.contact-card a { color: #fff; }
.contact-card a:hover { color: #fff; text-decoration: underline; }
.contact-card .k { font-size: .78rem; letter-spacing: .08em; text-transform: uppercase; color: #bfe0f7; }

/* =====================================================================
   FOOTER
   ===================================================================== */
.site-footer { background: var(--ink); color: rgba(255,255,255,.66); padding-block: 56px 30px; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; }
.footer-brand .brand .mark { background: #fff; border-color: transparent; }
.footer-brand .brand strong, .footer-brand .brand span { color: #fff; }
.footer-brand p { margin-top: 16px; font-size: .92rem; max-width: 38ch; }
.footer-col h4 { font-family: var(--font-sans); font-size: .8rem; letter-spacing: .1em; text-transform: uppercase; color: #fff; margin-bottom: 14px; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { color: rgba(255,255,255,.66); font-size: .94rem; }
.footer-col a:hover { color: #fff; }
.footer-bottom {
  margin-top: 40px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.12);
  display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between;
  font-size: .84rem; color: rgba(255,255,255,.5);
}

/* =====================================================================
   Reveal-Animation (dezent, 1–2 Elemente pro View)
   ===================================================================== */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .plane:hover, .card:hover { transform: none; }
}

/* =====================================================================
   SUBSEITEN (Flugzeugpark, Kontakt) — Page-Header
   ===================================================================== */
section[id], .page-header { scroll-margin-top: 76px; }

.page-header {
  background:
    radial-gradient(120% 90% at 85% -20%, rgba(255,255,255,.9), transparent 60%),
    linear-gradient(180deg, var(--sky-100), var(--sky-50));
  border-bottom: 1px solid var(--line);
  padding-block: clamp(44px, 8vw, 84px);
}
.page-header .crumbs { font-size: .84rem; color: var(--muted); margin-bottom: 1rem; }
.page-header .crumbs a { color: var(--brand-600); }
.page-header h1 {
  font-family: var(--font-serif); font-weight: 800;
  font-size: clamp(2.1rem, 5vw, 3.2rem); letter-spacing: -.03em;
  margin-top: .4rem;
}
.page-header .lead { margin-top: 1rem; max-width: 60ch; }

/* =====================================================================
   KONTAKT-SEITE
   ===================================================================== */
.contact-grid { display: grid; grid-template-columns: .92fr 1.08fr; gap: clamp(28px, 4vw, 56px); align-items: start; }

.info-card {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 30px; box-shadow: var(--shadow-sm);
}
.info-card h2 { font-size: 1.4rem; margin-bottom: 1.2rem; }
.info-card ul { display: grid; gap: 20px; }
.info-card li { display: flex; gap: 14px; align-items: flex-start; }
.info-card li svg { width: 22px; height: 22px; flex: none; color: var(--brand-600); margin-top: 3px; }
.info-card .k { font-size: .74rem; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); display: block; margin-bottom: 2px; }
.info-card a { color: var(--brand-700); }
.info-card a:hover { color: var(--brand-800); }
.info-card .info-cta { margin-top: 26px; padding-top: 22px; border-top: 1px solid var(--line); display: grid; gap: 12px; }

/* Formular */
.form-card {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius); padding: clamp(24px, 4vw, 38px); box-shadow: var(--shadow-md);
}
.form-card h2 { font-size: 1.4rem; }
.form-card > p { color: var(--muted); margin: .5rem 0 1.6rem; font-size: .96rem; }
.form-row { display: grid; gap: 7px; margin-bottom: 18px; }
.form-row.two { grid-template-columns: 1fr 1fr; gap: 18px; }
.form-row.two > .form-row { margin-bottom: 0; }
.form-row label { font-size: .85rem; font-weight: 600; color: var(--ink); }
.form-row .req { color: var(--brand-600); }
.field {
  width: 100%; font: inherit; font-size: .98rem; color: var(--ink);
  background: var(--sky-50); border: 1.5px solid var(--line-strong);
  border-radius: 10px; padding: .72rem .85rem;
  transition: border-color .18s var(--ease), box-shadow .18s var(--ease), background-color .18s var(--ease);
}
.field::placeholder { color: #8aa0b3; }
.field:focus { outline: none; border-color: var(--brand-500); background: #fff; box-shadow: 0 0 0 4px rgba(30,120,194,.16); }
textarea.field { min-height: 150px; resize: vertical; }
.form-consent { display: flex; gap: 11px; align-items: flex-start; font-size: .86rem; color: var(--muted); margin: 4px 0 20px; }
.form-consent input { margin-top: 3px; width: 18px; height: 18px; accent-color: var(--brand-600); flex: none; }
.form-consent a { color: var(--brand-700); text-decoration: underline; }
.form-note { font-size: .8rem; color: var(--muted); margin-top: 16px; }
.form-status { margin-top: 16px; padding: 14px 16px; border-radius: 10px; font-size: .92rem; display: none; }
.form-status.show { display: block; }
.form-status.ok { background: var(--sky-100); border: 1px solid var(--line-strong); color: var(--brand-800); }

/* =====================================================================
   NEWS
   ===================================================================== */
.news-grid { display: grid; gap: 22px; grid-template-columns: repeat(3, 1fr); }
.news-card {
  display: flex; flex-direction: column;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-sm); color: inherit;
  transition: transform .22s var(--ease), box-shadow .22s var(--ease);
}
a.news-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); color: inherit; }
.news-thumb { aspect-ratio: 16 / 10; background: var(--sky-100); overflow: hidden; }
.news-thumb img { width: 100%; height: 100%; object-fit: cover; }
.news-body { padding: 20px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.news-date { font-size: .77rem; font-weight: 600; letter-spacing: .05em; color: var(--brand-600); text-transform: uppercase; }
.news-body h3 { font-size: 1.16rem; margin: .4rem 0 .5rem; }
.news-body p { font-size: .92rem; color: var(--muted); }
.news-more { margin-top: auto; padding-top: 14px; font-size: .85rem; font-weight: 600; color: var(--brand-700); display: inline-flex; align-items: center; gap: .4rem; transition: gap .18s var(--ease); }
a.news-card:hover .news-more { gap: .65rem; }
.news-more svg { width: 16px; height: 16px; }

/* =====================================================================
   TERMINE / KALENDER
   ===================================================================== */
.termine-list { display: grid; gap: 16px; }
.termin {
  display: grid; grid-template-columns: auto 1fr auto; gap: 24px; align-items: center;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 22px 24px; box-shadow: var(--shadow-sm);
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.termin:hover { border-color: var(--brand-500); box-shadow: var(--shadow-md); }
.termin-date {
  flex: none; width: 80px; text-align: center; border-radius: 14px; overflow: hidden;
  border: 1px solid var(--line); background: var(--sky-50);
}
.termin-date .m { background: var(--brand-700); color: #fff; font-size: .68rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; padding: 5px 0; }
.termin-date .d { font-size: 1.85rem; font-weight: 800; color: var(--ink); line-height: 1.15; padding: 7px 0 1px; font-variant-numeric: tabular-nums; }
.termin-date .y { font-size: .72rem; color: var(--muted); padding-bottom: 7px; }
.termin-info h3 { font-size: 1.2rem; }
.termin-info .meta { display: flex; flex-wrap: wrap; gap: 16px; margin-top: .55rem; font-size: .88rem; color: var(--muted); }
.termin-info .meta span { display: inline-flex; align-items: center; gap: .4rem; }
.termin-info .meta svg { width: 16px; height: 16px; color: var(--brand-600); flex: none; }
.termin-info p { font-size: .92rem; color: var(--muted); margin-top: .55rem; max-width: 62ch; }
.termin-actions { display: grid; gap: 9px; min-width: 184px; }
.termin-actions .btn { padding: .62rem 1rem; font-size: .88rem; justify-content: center; }
.btn-merken {
  background: #fff; border: 1.5px solid var(--line-strong); color: var(--brand-700);
  border-radius: 999px; padding: .62rem 1rem; font: inherit; font-size: .88rem; font-weight: 600;
  cursor: pointer; display: inline-flex; align-items: center; justify-content: center; gap: .45rem;
  transition: background-color .18s var(--ease), border-color .18s var(--ease), color .18s var(--ease);
}
.btn-merken svg { width: 16px; height: 16px; }
.btn-merken:hover { border-color: var(--brand-500); background: var(--sky-50); }
.btn-merken.is-saved { background: var(--brand-700); border-color: var(--brand-700); color: #fff; }
.termine-note { margin-top: 18px; font-size: .85rem; color: var(--muted); }
.termine-note svg { width: 15px; height: 15px; vertical-align: -2px; color: var(--brand-600); }

/* =====================================================================
   GEMEINSCHAFT / JUGEND
   ===================================================================== */
.kicker-badge {
  display: inline-flex; align-items: center; gap: .45rem;
  font-size: .73rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase;
  color: var(--brand-700); background: var(--sky-100);
  padding: .3rem .7rem; border-radius: 999px; margin-bottom: .8rem;
}
.community h2 { font-size: clamp(1.9rem, 3.6vw, 2.8rem); }
.community .lead { margin-top: 1.1rem; }
.youth-note {
  margin-top: 1.7rem;
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius-sm); padding: 22px 24px;
  display: flex; gap: 16px; align-items: flex-start; box-shadow: var(--shadow-sm);
}
.youth-note .yi { flex: none; width: 46px; height: 46px; border-radius: 13px; background: var(--sky-100); color: var(--brand-700); display: grid; place-items: center; }
.youth-note .yi svg { width: 24px; height: 24px; }
.youth-note h3 { font-size: 1.04rem; margin-bottom: .3rem; }
.youth-note p { font-size: .92rem; color: var(--muted); margin: 0; }
.community-figure {
  border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg);
  border: 6px solid #fff; aspect-ratio: 4 / 3.3; background: var(--sky-100);
}
.community-figure img { width: 100%; height: 100%; object-fit: cover; }

/* zentrierter "Mitmachen"-Aufruf (light, Apple-Stil) */
.join-cta {
  background: linear-gradient(180deg, var(--sky-100), var(--sky-50));
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: clamp(40px, 6vw, 76px) clamp(24px, 5vw, 56px);
  text-align: center;
}
.join-cta h2 { font-size: clamp(1.7rem, 3.2vw, 2.5rem); }
.join-cta .lead { margin: 1rem auto 1.9rem; max-width: 54ch; }
.join-cta .hero-actions { justify-content: center; }

/* =====================================================================
   RESPONSIVE
   ===================================================================== */
@media (max-width: 1024px) {
  .fleet { grid-template-columns: repeat(3, 1fr); }
  .news-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
  .termin { grid-template-columns: auto 1fr; row-gap: 18px; }
  .termin-actions { grid-column: 1 / -1; min-width: 0; }
}
@media (min-width: 561px) and (max-width: 720px) {
  .termin-actions { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .nav-links, .nav-cta .btn { display: none; }
  .nav-toggle { display: inline-flex; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-figure { order: -1; aspect-ratio: 16 / 10; }
  .split, .join-wrap, .events, .cta-grid, .contact-grid, .form-row.two { grid-template-columns: 1fr; }
  .news-grid { grid-template-columns: 1fr; }
  .events .flyer-frame { order: -1; }
  .grid-3, .steps { grid-template-columns: 1fr; }
  .fleet { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }

  /* Mobile-Menü */
  .nav-links.open {
    display: flex; flex-direction: column; align-items: stretch;
    position: absolute; top: 62px; left: 0; right: 0;
    background: rgba(255,255,255,.92);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    border-bottom: 1px solid rgba(0,0,0,.08);
    padding: 14px 22px 22px; gap: 2px; box-shadow: var(--shadow-md);
  }
  .nav-links.open > li > a { padding: .8rem .6rem; font-size: 1rem; border-radius: 8px; }
  .nav-links.open .mobile-cta { display: block; margin-top: 10px; }
  .nav-links.open .mobile-cta .btn { display: inline-flex; width: 100%; justify-content: center; }
}
@media (min-width: 901px) { .mobile-cta { display: none; } }
@media (max-width: 560px) {
  body { font-size: 16px; }
  .stats ul { grid-template-columns: 1fr 1fr; }
  .stats li:nth-child(3) { border-left: none; }
  .stats li:nth-child(n+3) { border-top: 1px solid var(--line); }
  .fleet { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  section { padding-block: 52px; }
}
