/* =========================================================================
   Luftsportverein Borken — Redesign
   Aesthetic: "Sky & Heritage" — Vereins-Blau + Wolkenweiß, dazu ein warmer
   Sonnen-Glow im Himmel, damit das Blau-Weiß nie kühl/klinisch wirkt.
   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:   #e2e9f1;   /* weiche Haarlinie, minimal blaustichig */
  --line-strong: #d0dbe7;
  --white:  #ffffff;

  /* --- Grundtöne: sanftes Blau-Weiß (LSV-Farbwelt). Kein Beige mehr –
         die Wärme kommt bewusst über den Sonnen-Glow im Hero/Video. --- */
  --cream-50:  #f4f8fc;  /* himmelweißer Seitengrund (fast weiß) */
  --cream-100: #e9f2fb;  /* zartes Sky-Tint für getönte Sektionen */
  --cream-200: #dbeaf7;
  --sun:       #e29a4f;  /* warmer Sonnen-Akzent (sehr sparsam) */
  --sun-soft:  #f7d9af;

  /* --- 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(--cream-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(38px, 4.8vw, 66px); }
/* Aufeinanderfolgende Sektionen gleicher Farbe: doppelten Abstand vermeiden */
.tint + .tint,
.alt + .alt { padding-top: 0; }
.section-head { max-width: 720px; margin-bottom: clamp(18px, 2.8vw, 32px); }
.section-head h2 { margin-top: .5rem; }
.section-head .lead { margin-top: 1.1rem; }

.alt { background: var(--white); }
/* Tint-Sektionen blenden an Ober-/Unterkante sanft nach Weiß aus,
   damit der Übergang Beige↔Weiß weich wirkt – Weiß bleibt erhalten. */
.tint { background: linear-gradient(180deg, #fff 0%, var(--cream-100) 13%, var(--cream-100) 87%, #fff 100%); }

/* --------------------------------------------------------------- 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;
  isolation: isolate;
  background: #0b4f8a;          /* Ladefarbe, bis das Foto da ist */
  color: #fff;
}
/* Echtes Kumulus-Foto als Vollbild-Hintergrund – mit ruhiger, langsamer
   Ken-Burns-Bewegung (kein Fake-3D, das echte Thermikwolken-Foto). */
.hero::before {
  content: "";
  position: absolute; inset: -3%;
  z-index: -2;
  background: url("../img/clouds.jpg") center 38% / cover no-repeat;
  animation: heroDrift 36s ease-in-out infinite alternate;
  will-change: transform;
  pointer-events: none;
}
/* Lesbarkeits-Scrim + warmer Sonnen-Glow (macht den kühlen Himmel einladend warm) */
.hero::after {
  content: "";
  position: absolute; inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(64% 52% at 87% 6%, rgba(245,185,120,.18), transparent 58%),
    linear-gradient(101deg, rgba(8,38,72,.82) 0%, rgba(8,38,72,.52) 38%, rgba(8,38,72,0) 68%),
    linear-gradient(0deg, rgba(9,40,74,.46), transparent 46%);
}
@keyframes heroDrift {
  from { transform: scale(1.06) translate3d(0, 0, 0); }
  to   { transform: scale(1.16) translate3d(-2%, -1.4%, 0); }
}
@media (prefers-reduced-motion: reduce) {
  .hero::before { animation: none; transform: scale(1.06); }
}
.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  padding-block: clamp(50px, 7vw, 96px);
}
.hero-kicker {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.25rem;
  color: #d7ecfb;
  margin-bottom: .4rem;
  text-shadow: 0 1px 16px rgba(7,28,56,.45);
}
.hero h1 {
  font-size: clamp(2.45rem, 5.8vw, 4.1rem);
  font-weight: 800;
  letter-spacing: -.035em;
  margin-block: .2rem .9rem;
  color: #fff;
  text-shadow: 0 2px 32px rgba(6,24,50,.5);
}
.hero h1 .em { font-style: italic; color: #8fcbf2; }
.hero p.lead { max-width: 46ch; color: rgba(255,255,255,.93); text-shadow: 0 1px 18px rgba(6,24,50,.45); }
.hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.7rem; }
.hero-fact { display: flex; align-items: center; gap: .5rem; margin-top: 1rem; font-size: .88rem; font-weight: 600; color: var(--brand-700); }
.hero-fact svg { width: 16px; height: 16px; flex-shrink: 0; color: var(--brand-600); }
.hero .hero-fact { color: rgba(255,255,255,.85); }
.hero .hero-fact svg { color: #8fcbf2; }

.hero-figure {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 70px -28px rgba(6, 24, 50, .6);
  border: 1px solid rgba(255, 255, 255, .18);
  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 {
  position: relative;
  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--wide { aspect-ratio: 4 / 3; }
.media-frame--auto { aspect-ratio: auto; background: #fff; }
.media-frame--auto img { height: auto; object-fit: contain; }
.media-frame img { width: 100%; height: 100%; object-fit: cover; }
.media-frame figcaption {
  position: absolute; left: 14px; bottom: 14px;
  background: rgba(14, 34, 51, .68);
  color: #fff; font-size: .76rem; letter-spacing: .02em;
  padding: .35rem .7rem; border-radius: 8px;
  backdrop-filter: blur(3px);
}

/* =====================================================================
   VIDEO-BAND  "Borken von oben" – Vollbild-Hintergrundvideo (Luftaufnahme)
   ===================================================================== */
.video-band {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  min-height: clamp(380px, 54vh, 520px);
  display: grid;
  align-items: center;
  color: #fff;
  /* Poster als Standbild-Hintergrund: greift immer, wenn das Video (z. B. auf
     iOS im Stromsparmodus) nicht automatisch startet – so bleibt hier ein
     schönes Luftbild statt eines toten Play-Buttons. */
  background: #0b3a63 url("../img/borken-luft-poster.jpg") center / cover no-repeat;
}
.video-band__media {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: -2;
  pointer-events: none;
}
/* Autoplay blockiert → Video ausblenden, das Poster-Standbild übernimmt. */
.video-band.is-static .video-band__media { display: none; }
.video-band__scrim {
  position: absolute; inset: 0;
  z-index: -1;
  background:
    radial-gradient(60% 65% at 16% 32%, rgba(7,30,58,.55), transparent 72%),
    linear-gradient(95deg, rgba(7,30,58,.74) 0%, rgba(7,30,58,.40) 46%, rgba(7,30,58,.16) 100%),
    linear-gradient(0deg, rgba(7,30,58,.46), transparent 56%);
}
.video-band__inner { position: relative; }
.video-band__inner .eyebrow { color: #bfe0f7; }
.video-band__inner .eyebrow::before { background: #7fc0ef; }
.video-band__inner h2 {
  color: #fff; max-width: 20ch; margin-top: .5rem;
  text-shadow: 0 2px 30px rgba(5,22,46,.5);
}
.video-band__inner .lead {
  color: rgba(255,255,255,.93); max-width: 50ch; margin-top: .9rem;
  text-shadow: 0 1px 18px rgba(5,22,46,.45);
}
.video-band__inner .btn { margin-top: 1.7rem; }

/* =====================================================================
   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; }

/* --- Einklappbare Karten (Flugsportarten & Freizeitangebot) --- */
.card--toggle { padding: 0; align-self: start; }
.card-toggle-head { margin: 0; }
.card--toggle .card-toggle-head { margin-bottom: 0; }
.card-toggle {
  width: 100%;
  display: flex; align-items: center; gap: 16px;
  padding: 20px 22px;
  background: none; border: 0; cursor: pointer;
  font: inherit; color: inherit; text-align: left;
  border-radius: var(--radius);
}
.card-toggle:focus-visible {
  outline: 2px solid var(--brand-500);
  outline-offset: -2px;
}
.card--toggle .icon { margin-bottom: 0; flex-shrink: 0; width: 44px; height: 44px; }
.card--toggle .icon svg { width: 23px; height: 23px; }
.card-toggle-label { flex: 1; min-width: 0; }
.card-toggle-chev {
  width: 20px; height: 20px; flex-shrink: 0;
  color: var(--brand-600);
  transition: transform .3s var(--ease);
}
.card--toggle.open .card-toggle-chev { transform: rotate(180deg); }
.card-toggle-body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .34s var(--ease);
}
.card--toggle.open .card-toggle-body { grid-template-rows: 1fr; }
.card-toggle-inner { overflow: hidden; min-height: 0; }
.card-toggle-content {
  padding: 2px 22px 22px;
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity .28s var(--ease), transform .28s var(--ease);
}
.card--toggle.open .card-toggle-content { opacity: 1; transform: none; }
.card-toggle-content .card-link { margin-top: 14px; }
.card--toggle.open { border-color: var(--line-strong); box-shadow: var(--shadow-md); }
@media (prefers-reduced-motion: reduce) {
  .card-toggle-body, .card-toggle-chev, .card-toggle-content { transition: none; }
}

/* =====================================================================
   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; }
.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; }
.socials { display: flex; flex-wrap: wrap; gap: 14px 22px; margin-top: 18px; }
.social-link { display: inline-flex; align-items: center; gap: 9px; color: rgba(255,255,255,.78); font-size: .92rem; font-weight: 600; transition: color .15s ease; }
.social-link:hover { color: #fff; }
.social-link svg { flex: none; }
.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(36px, 5.5vw, 64px);
}
.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; }

.vtower-banner {
  display: flex; align-items: center; gap: clamp(20px, 3vw, 36px); flex-wrap: wrap;
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius); padding: clamp(20px, 3vw, 32px); box-shadow: var(--shadow-sm);
}
.vtower-banner .media-frame { flex: none; width: 120px; }
.vtower-banner__body { flex: 1; min-width: 240px; }
.vtower-banner__body h2 { margin-top: .2rem; }
.vtower-banner__body p { color: var(--muted); margin: .8rem 0 1.3rem; max-width: 56ch; }

/* 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); }
.form-status.error { background: #fdecec; border: 1px solid #f3b9b9; color: #9a2b2b; }

/* ------------------------------------------- Rundflug: Flugart & Preis-Box */
.is-hidden { display: none !important; }

.flugart-choice { border: 0; padding: 0; margin: 0 0 18px; }
.flugart-choice legend { font-size: .85rem; font-weight: 600; color: var(--ink); padding: 0; margin-bottom: 8px; }
.choice-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.choice { position: relative; display: block; cursor: pointer; }
.choice input { position: absolute; inset: 0; opacity: 0; cursor: pointer; margin: 0; }
.choice-card {
  display: block; height: 100%;
  border: 1.5px solid var(--line-strong); border-radius: 12px;
  background: var(--sky-50); padding: 14px 16px;
  transition: border-color .18s var(--ease), box-shadow .18s var(--ease), background-color .18s var(--ease);
}
.choice-title { display: block; font-weight: 600; color: var(--ink); }
.choice-sub { display: block; font-size: .82rem; color: var(--muted); margin-top: 3px; }
.choice input:checked + .choice-card { border-color: var(--brand-500); background: #fff; box-shadow: 0 0 0 3px rgba(30,120,194,.16); }
.choice input:focus-visible + .choice-card { outline: 3px solid var(--apple-blue); outline-offset: 2px; }

.price-box {
  display: grid; gap: 2px;
  background: linear-gradient(135deg, var(--brand-700), var(--brand-800));
  color: #fff; border-radius: 12px; padding: 16px 18px; margin-bottom: 20px;
}
.price-box__label { font-size: .72rem; letter-spacing: .09em; text-transform: uppercase; color: rgba(255,255,255,.78); }
.price-box__value { font-size: 1.6rem; font-weight: 800; letter-spacing: -.02em; line-height: 1.1; }
.price-box__note { font-size: .82rem; color: rgba(255,255,255,.85); }

/* =====================================================================
   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); }

/* =====================================================================
   web-pilot FEED (News & Termine aus der screenflow-Konsole)
   Klassen swp-* werden von embed.js gesetzt; hier ans LSV-Design angepasst.
   ===================================================================== */
.swp-empty { color: var(--muted); font-size: .95rem; }

/* News-Feed → Karten wie .news-card (Container behält .news-grid) */
.news-grid .swp-news-item {
  display: flex; flex-direction: column;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 20px 22px 24px; box-shadow: var(--shadow-sm);
  transition: transform .22s var(--ease), box-shadow .22s var(--ease);
}
.news-grid .swp-news-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.swp-news-item .swp-thumb { border-radius: 10px; margin-bottom: 14px; background: var(--sky-100); }
.swp-news-item .swp-date,
.swp-event-item .swp-date {
  font-size: .77rem; font-weight: 600; letter-spacing: .05em;
  color: var(--brand-600); text-transform: uppercase;
}
.swp-news-item .swp-title { font-size: 1.16rem; margin: .4rem 0 .5rem; }
.swp-news-item .swp-body { font-size: .92rem; color: var(--muted); }
.swp-more {
  margin-top: 14px; font-size: .85rem; font-weight: 600; color: var(--brand-700);
  display: inline-flex; align-items: center; gap: .4rem;
}

/* Termine-Feed → Zeilen/Karten wie .termin (Container behält .termine-list) */
.termine-list .swp-event-item {
  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);
}
.termine-list .swp-event-item:hover { border-color: var(--brand-500); box-shadow: var(--shadow-md); }
.swp-event-item .swp-title { font-size: 1.2rem; margin: .35rem 0 .5rem; }
.swp-event-item .swp-body { font-size: .92rem; color: var(--muted); max-width: 62ch; }

/* =====================================================================
   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(32px, 4.5vw, 56px) clamp(24px, 5vw, 52px);
  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; }
  /* stärkerer, gleichmäßiger Scrim, damit weiße Schrift überm hellen Wolkenfoto lesbar bleibt */
  .hero::after {
    background:
      radial-gradient(85% 38% at 80% 3%, rgba(245,185,120,.16), transparent 62%),
      linear-gradient(180deg, rgba(8,38,72,.44) 0%, rgba(8,38,72,.68) 100%);
  }
  .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; }
  .choice-grid { grid-template-columns: 1fr; }
  section { padding-block: 40px; }
}

/* ----------------------------------------------------------- News-Artikel */
.article { max-width: 760px; margin-inline: auto; }
.article-hero {
  margin: 0 0 30px;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--sky-100);
  box-shadow: var(--shadow-sm);
}
.article-hero img { display: block; width: 100%; height: auto; }

.article-video {
  margin: 0 0 30px;
  border-radius: var(--radius);
  overflow: hidden;
  background: #000;
  box-shadow: var(--shadow-md);
  aspect-ratio: 16 / 9;
}
.article-video video { display: block; width: 100%; height: 100%; object-fit: contain; background: #000; }

.article-body { font-size: 1.075rem; line-height: 1.75; color: var(--ink); }
.article-body p { margin: 0 0 1.15em; }
.article-body p:last-child { margin-bottom: 0; }
.article-body h2 {
  font-size: 1.32rem;
  line-height: 1.3;
  margin: 1.9rem 0 .7rem;
  color: var(--brand-700);
}

.article-source {
  margin: 2rem 0 0;
  padding-top: 1.1rem;
  border-top: 1px solid var(--line);
  font-size: .9rem;
  color: var(--muted);
  font-style: italic;
}

/* Vor-/Zurück-Navigation zwischen Beiträgen */
.post-nav {
  max-width: 760px;
  margin: 40px auto 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.post-nav__item {
  display: flex;
  flex-direction: column;
  gap: .25rem;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: transform .18s var(--ease), box-shadow .18s var(--ease), border-color .18s var(--ease);
}
a.post-nav__item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--line-strong);
  color: inherit;
}
.post-nav__item.is-empty { background: transparent; border: none; box-shadow: none; }
.post-nav__next { text-align: right; align-items: flex-end; }
.post-nav__dir { font-size: .78rem; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; color: var(--brand-600); }
.post-nav__title { font-weight: 600; color: var(--ink); }

.back-link { max-width: 760px; margin: 26px auto 0; }
.back-link a { font-weight: 600; color: var(--brand-700); }

@media (max-width: 560px) {
  .post-nav { grid-template-columns: 1fr; }
  .post-nav__next { text-align: left; align-items: flex-start; }
  .post-nav__item.is-empty { display: none; }
}

/* =====================================================================
   FAQ (Häufige Fragen)
   ===================================================================== */
.faq-list { display: grid; gap: 12px; max-width: 760px; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 4px 22px;
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 16px 0;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--brand-600);
  transition: transform .2s var(--ease);
  flex: none;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { color: var(--muted); padding: 0 0 18px; margin-top: -6px; }
.card .card-link { display: inline-block; margin-top: 14px; padding: 8px 16px; font-size: .92rem; }

/* =====================================================================
   DATA-TABLE (Flugplatzdaten — Label/Wert-Zeilen statt Kacheln)
   ===================================================================== */
.data-table-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.data-table {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow-sm); overflow: hidden; align-self: start;
}
.data-table__row { display: flex; justify-content: space-between; align-items: baseline; gap: 1rem; padding: 14px 22px; border-top: 1px solid var(--line); }
.data-table__row:first-child { border-top: none; }
.data-table__row .k { color: var(--muted); }
.data-table__row .v { font-weight: 700; color: var(--ink); font-variant-numeric: tabular-nums; white-space: nowrap; }
.data-table__row .sub { display: block; font-size: .8rem; color: var(--muted); font-weight: 500; }

/* =====================================================================
   WETTER-PANEL (große aktuelle Anzeige + Detail-Tabelle)
   ===================================================================== */
.wx-panel { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px clamp(20px,3vw,32px); box-shadow: var(--shadow-sm); }
.wx-body { display: flex; flex-wrap: wrap; gap: clamp(24px, 4vw, 48px); align-items: center; }
.wx-now { display: flex; align-items: center; gap: 16px; flex: none; }
.wx-now__icon {
  flex: none; width: 64px; height: 64px; border-radius: 18px;
  display: grid; place-items: center; background: var(--sky-100); color: var(--brand-700);
}
.wx-now__icon svg { width: 32px; height: 32px; }
.wx-now__temp { display: block; font-size: 2.1rem; font-weight: 700; color: var(--ink); line-height: 1; font-variant-numeric: tabular-nums; }
.wx-now__label { display: block; margin-top: .4rem; font-weight: 600; color: var(--ink); }
.wx-now__meta { display: block; margin-top: .25rem; font-size: .82rem; color: var(--muted); }
.wx-table { flex: 1; min-width: 260px; display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid var(--line); }
.wx-row { display: flex; justify-content: space-between; align-items: baseline; gap: 1rem; padding: 12px 14px; border-bottom: 1px solid var(--line); }
.wx-row .k { color: var(--muted); font-size: .9rem; }
.wx-row .v { font-weight: 700; color: var(--ink); font-variant-numeric: tabular-nums; white-space: nowrap; }
.wx-row .sub { display: block; font-size: .76rem; font-weight: 500; color: var(--muted); }
.wx-note { margin-top: 18px; font-size: .85rem; color: var(--muted); }
.wx-note svg { width: 15px; height: 15px; vertical-align: -2px; color: var(--brand-600); margin-right: 2px; }
.wx-loading, .wx-error { color: var(--muted); font-size: .92rem; }

@media (max-width: 640px) {
  .data-table-grid { grid-template-columns: 1fr; }
  .wx-table { grid-template-columns: 1fr; }
}

.footer-weather { display: inline-flex; align-items: center; gap: 8px; }
.footer-weather svg { width: 16px; height: 16px; flex: none; color: rgba(255,255,255,.55); }
.footer-weather:empty { display: none; }
