/* ==========================================================================
   Busreisen Filser – Stylesheet
   Farben aus dem Logo: Navy #0C2143, Himmelblau #2DAAE1
   ========================================================================== */

@font-face {
  font-family: "Jakarta";
  src: url("../fonts/PlusJakartaSans.woff2") format("woff2");
  font-weight: 400 800;
  font-style: normal;
  font-display: swap;
}

:root {
  --navy: #0c2143;
  --navy-900: #071630;
  --navy-700: #16315c;
  --sky: #2daae1;
  --sky-600: #1b8fc4;
  --sky-50: #eaf6fc;
  --ink: #0f1b2d;
  --text: #3d4a5c;
  --muted: #6b7789;
  --line: #e3e8ef;
  --bg: #ffffff;
  --bg-soft: #f5f7fa;
  --white: #ffffff;
  --ok: #1f9d63;
  --err: #d64545;

  --radius: 18px;
  --radius-sm: 12px;
  --shadow: 0 1px 2px rgba(12, 33, 67, .06), 0 8px 24px rgba(12, 33, 67, .08);
  --shadow-lg: 0 24px 60px rgba(12, 33, 67, .18);
  --container: 1200px;
  --gutter: clamp(16px, 4vw, 32px);
  --header-h: 76px;
  --ease: cubic-bezier(.2, .7, .2, 1);
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 12px); -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } *, *::before, *::after { transition: none !important; animation: none !important; } }

body {
  margin: 0;
  font-family: "Jakarta", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--sky-600); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--navy); }

h1, h2, h3, h4 { color: var(--ink); line-height: 1.15; letter-spacing: -.02em; margin: 0 0 .5em; font-weight: 800; }
h1 { font-size: clamp(2.3rem, 5.6vw, 4.4rem); letter-spacing: -.035em; }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.9rem); }
h3 { font-size: 1.25rem; letter-spacing: -.01em; }
p { margin: 0 0 1em; }

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

.skip-link { position: absolute; left: 12px; top: -60px; background: var(--navy); color: #fff; padding: 10px 16px; border-radius: 8px; z-index: 1000; }
.skip-link:focus { top: 12px; }

:focus-visible { outline: 3px solid var(--sky); outline-offset: 3px; border-radius: 6px; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: .78rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  color: var(--sky-600); margin-bottom: 14px;
}
.eyebrow::before { content: ""; width: 28px; height: 2px; background: currentColor; border-radius: 2px; }
.eyebrow--light { color: var(--sky); }

.lead { font-size: clamp(1.05rem, 1.5vw, 1.2rem); color: var(--text); max-width: 60ch; }

/* ---------- Buttons ---------- */
.btn {
  --b: var(--sky); --c: #fff;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 52px; padding: 0 26px; border-radius: 999px; border: 2px solid var(--b);
  background: var(--b); color: var(--c); font: inherit; font-weight: 700; font-size: .98rem;
  text-decoration: none; cursor: pointer; transition: transform .2s var(--ease), background .2s, box-shadow .2s, color .2s;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(45, 170, 225, .35); color: var(--c); background: var(--sky-600); border-color: var(--sky-600); }
.btn svg { width: 18px; height: 18px; flex: none; }
.btn--ghost { background: transparent; --c: #fff; border-color: rgba(255,255,255,.45); }
.btn--ghost:hover { background: rgba(255,255,255,.12); border-color: #fff; box-shadow: none; }
.btn--navy { --b: var(--navy); }
.btn--navy:hover { background: var(--navy-700); border-color: var(--navy-700); box-shadow: 0 10px 24px rgba(12,33,67,.3); }
.btn--outline { background: transparent; --c: var(--navy); border-color: var(--line); }
.btn--outline:hover { --c: var(--navy); background: var(--bg-soft); border-color: var(--navy); box-shadow: none; }
.btn--block { width: 100%; }

/* ---------- Header ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100; height: var(--header-h);
  display: flex; align-items: center;
  transition: background .3s, box-shadow .3s, backdrop-filter .3s;
}
.site-header.is-solid, .site-header--solid {
  background: rgba(7, 22, 48, .92); backdrop-filter: saturate(160%) blur(14px); -webkit-backdrop-filter: saturate(160%) blur(14px);
  box-shadow: 0 1px 0 rgba(255,255,255,.06);
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { flex: none; }
.brand img { height: 46px; width: auto; }
.nav { display: flex; align-items: center; gap: 6px; }
.nav a {
  color: rgba(255,255,255,.86); text-decoration: none; font-weight: 600; font-size: .93rem;
  padding: 10px 12px; border-radius: 10px; transition: color .2s, background .2s;
}
.nav a:hover, .nav a.is-active { color: #fff; background: rgba(255,255,255,.08); }
.nav .nav-cta { margin-left: 8px; background: var(--sky); color: #fff; padding: 10px 18px; border-radius: 999px; display: inline-flex; gap: 8px; align-items: center; }
.nav .nav-cta:hover { background: var(--sky-600); }
.nav .nav-cta svg { width: 16px; height: 16px; }

.nav-toggle {
  display: none; width: 46px; height: 46px; border: 0; border-radius: 12px; background: rgba(255,255,255,.1);
  color: #fff; cursor: pointer; align-items: center; justify-content: center;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: ""; display: block; width: 20px; height: 2px; background: currentColor; border-radius: 2px; position: relative; transition: transform .25s var(--ease), background .2s;
}
.nav-toggle span::before { position: absolute; top: -6px; }
.nav-toggle span::after { position: absolute; top: 6px; }
.nav-open .nav-toggle span { background: transparent; }
.nav-open .nav-toggle span::before { transform: translateY(6px) rotate(45deg); }
.nav-open .nav-toggle span::after { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 1180px) {
  .nav-toggle { display: inline-flex; }
  .nav {
    position: fixed; inset: var(--header-h) 0 0 0; background: var(--navy-900);
    flex-direction: column; align-items: stretch; gap: 2px; padding: 20px var(--gutter) 40px;
    transform: translateX(100%); transition: transform .35s var(--ease); overflow-y: auto;
  }
  .nav a { font-size: 1.15rem; padding: 14px 12px; border-bottom: 1px solid rgba(255,255,255,.06); border-radius: 0; }
  .nav .nav-cta { margin: 18px 0 0; justify-content: center; border-radius: 999px; padding: 16px; border: 0; }
  .nav-open .nav { transform: none; }
  .nav-open { overflow: hidden; }
  .nav-open .site-header { background: var(--navy-900); backdrop-filter: none; -webkit-backdrop-filter: none; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: min(100svh, 920px); display: flex; align-items: flex-end;
  color: #fff; background: var(--navy-900); isolation: isolate; overflow: hidden;
}
.hero__bg { position: absolute; inset: 0; z-index: -2; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 60%; transform: scale(1.04); animation: heroZoom 18s ease-out forwards; }
@keyframes heroZoom { to { transform: scale(1); } }
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(180deg, rgba(7,22,48,.72) 0%, rgba(7,22,48,.25) 35%, rgba(7,22,48,.55) 65%, rgba(7,22,48,.96) 100%),
    linear-gradient(90deg, rgba(7,22,48,.75) 0%, rgba(7,22,48,0) 70%);
}
.hero .container { padding-top: calc(var(--header-h) + 60px); padding-bottom: 56px; }
.hero h1 { color: #fff; max-width: 15ch; margin-bottom: 20px; }
.hero h1 em { font-style: normal; color: var(--sky); }
.hero .lead { color: rgba(255,255,255,.86); margin-bottom: 32px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; }
.hero__facts {
  margin-top: 56px; padding-top: 28px; border-top: 1px solid rgba(255,255,255,.16);
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
}
.hero__facts div { display: flex; flex-direction: column; gap: 2px; }
.hero__facts strong { color: #fff; font-size: 1.02rem; }
.hero__facts span { color: rgba(255,255,255,.66); font-size: .9rem; }
@media (max-width: 820px) { .hero__facts { grid-template-columns: 1fr 1fr; } }

/* ---------- Sections ---------- */
.section { padding: clamp(72px, 10vw, 128px) 0; }
.section--soft { background: var(--bg-soft); }
.section--navy { background: var(--navy); color: rgba(255,255,255,.8); }
.section--navy h2, .section--navy h3 { color: #fff; }
.section-head { max-width: 760px; margin-bottom: clamp(36px, 5vw, 56px); }
.section-head--center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head--center .eyebrow::before { display: none; }

/* Intro / Über uns */
.split { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(32px, 6vw, 80px); align-items: center; }
.split__media { position: relative; }
.split__media img { border-radius: var(--radius); box-shadow: var(--shadow-lg); aspect-ratio: 4 / 3.3; object-fit: cover; width: 100%; }
.split__badge {
  position: absolute; right: -18px; bottom: -22px; background: #fff; border-radius: var(--radius-sm); box-shadow: var(--shadow);
  padding: 16px 20px; display: flex; align-items: center; gap: 14px; max-width: 280px;
}
.split__badge svg { width: 40px; height: 40px; flex: none; color: var(--sky); }
.split__badge strong { display: block; color: var(--ink); line-height: 1.25; }
.split__badge span { font-size: .85rem; color: var(--muted); }
.quote {
  margin: 28px 0; padding: 22px 26px; border-left: 3px solid var(--sky); background: var(--sky-50); border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 1.1rem; color: var(--ink); font-weight: 600;
}
.quote cite { display: block; margin-top: 8px; font-style: normal; font-weight: 500; font-size: .9rem; color: var(--muted); }
.checks { list-style: none; padding: 0; margin: 0 0 24px; display: grid; gap: 10px; }
.checks li { position: relative; padding-left: 32px; }
.checks li::before {
  content: ""; position: absolute; left: 0; top: .2em; width: 20px; height: 20px; border-radius: 50%;
  background: var(--sky-50) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231b8fc4' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12l5 5L20 7'/%3E%3C/svg%3E") center / 12px no-repeat;
}
.section--navy .checks li::before { background-color: rgba(45,170,225,.15); }
@media (max-width: 900px) { .split { grid-template-columns: 1fr; } .split__badge { right: 12px; } }

/* Leistungen */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 28px;
  display: flex; flex-direction: column; transition: transform .3s var(--ease), box-shadow .3s, border-color .3s;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: transparent; }
.card__icon {
  width: 54px; height: 54px; border-radius: 14px; display: grid; place-items: center; margin-bottom: 20px;
  background: linear-gradient(135deg, var(--navy), var(--navy-700)); color: var(--sky);
}
.card__icon svg { width: 26px; height: 26px; }
.card p { font-size: .98rem; }
.card ul { margin: 0 0 1em; padding-left: 1.1em; font-size: .95rem; }
.card ul li { margin-bottom: 4px; }
.card ul li::marker { color: var(--sky); }
.card .card__link { margin-top: auto; font-weight: 700; text-decoration: none; display: inline-flex; gap: 6px; align-items: center; }
.card .card__link::after { content: "→"; transition: transform .2s; }
.card .card__link:hover::after { transform: translateX(4px); }
.card--feature { grid-column: span 1; background: linear-gradient(160deg, var(--navy) 0%, var(--navy-700) 100%); border: 0; color: rgba(255,255,255,.82); }
.card--feature h3 { color: #fff; }
.card--feature .card__icon { background: rgba(45,170,225,.16); }
.card--feature .card__link { color: var(--sky); }
@media (max-width: 1000px) { .cards { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .cards { grid-template-columns: 1fr; } }

/* Booking / Embeds */
.embed {
  background: #fff; border-radius: var(--radius); box-shadow: var(--shadow-lg); overflow: hidden; border: 1px solid var(--line);
}
.embed__bar {
  display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  padding: 14px 20px; border-bottom: 1px solid var(--line); background: var(--bg-soft);
}
.embed__bar strong { color: var(--ink); font-size: .95rem; display: inline-flex; align-items: center; gap: 10px; }
.embed__bar strong::before { content: ""; width: 9px; height: 9px; border-radius: 50%; background: var(--ok); box-shadow: 0 0 0 4px rgba(31,157,99,.15); }
.embed__bar a { font-size: .9rem; font-weight: 700; text-decoration: none; }
.embed iframe { display: block; width: 100%; border: 0; background: #fff; }
.embed__frame--booking { height: 1500px; max-height: 88vh; min-height: 640px; }
.embed__frame--gmundo { height: 1400px; max-height: 88vh; min-height: 640px; }
.booking-links { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 22px; }

.consent {
  display: grid; place-items: center; text-align: center; padding: clamp(40px, 7vw, 80px) 24px; min-height: 420px;
  background:
    linear-gradient(180deg, rgba(7,22,48,.82), rgba(7,22,48,.92)),
    url("../img/home_slider_.jpg") center / cover;
  color: rgba(255,255,255,.82);
}
.consent h3 { color: #fff; font-size: 1.5rem; }
.consent p { max-width: 54ch; margin: 0 auto 22px; font-size: .95rem; }
.consent small { display: block; margin-top: 16px; color: rgba(255,255,255,.55); font-size: .8rem; }
.consent small a { color: rgba(255,255,255,.8); }

/* Flotte / Galerie */
.gallery { display: grid; grid-template-columns: repeat(12, 1fr); grid-auto-rows: 120px; gap: 12px; }
.gallery button {
  padding: 0; border: 0; border-radius: var(--radius-sm); overflow: hidden; cursor: zoom-in; background: var(--navy-700); position: relative;
}
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease), opacity .3s; }
.gallery button:hover img { transform: scale(1.05); }
.gallery .g1 { grid-column: span 7; grid-row: span 3; }
.gallery .g2 { grid-column: span 5; grid-row: span 3; }
.gallery .g3, .gallery .g4, .gallery .g5 { grid-column: span 4; grid-row: span 2; }
.gallery .g6 { grid-column: span 5; grid-row: span 2; }
.gallery .g7 { grid-column: span 7; grid-row: span 2; }
.gallery .g8, .gallery .g9 { grid-column: span 6; grid-row: span 2; }
@media (max-width: 760px) {
  .gallery { grid-auto-rows: 90px; gap: 8px; }
  .gallery button { grid-column: span 6 !important; grid-row: span 2 !important; }
  .gallery .g1 { grid-column: span 12 !important; grid-row: span 3 !important; }
}
.fleet-types { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin: 0 0 36px; }
.fleet-types div { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius-sm); padding: 18px 20px; }
.fleet-types strong { display: block; color: #fff; }
.fleet-types span { font-size: .9rem; }
@media (max-width: 700px) { .fleet-types { grid-template-columns: 1fr; } }

.lightbox { border: 0; padding: 0; background: transparent; max-width: min(1400px, 94vw); max-height: 92vh; }
.lightbox::backdrop { background: rgba(4, 12, 28, .9); }
.lightbox img { max-height: 86vh; width: auto; margin: 0 auto; border-radius: 12px; }
.lightbox__close, .lightbox__nav {
  position: fixed; background: rgba(255,255,255,.12); color: #fff; border: 0; width: 50px; height: 50px; border-radius: 50%;
  font-size: 26px; line-height: 1; cursor: pointer; display: grid; place-items: center;
}
.lightbox__close { top: 18px; right: 18px; }
.lightbox__nav { top: 50%; transform: translateY(-50%); }
.lightbox__nav--prev { left: 18px; }
.lightbox__nav--next { right: 18px; }
.lightbox__close:hover, .lightbox__nav:hover { background: rgba(255,255,255,.25); }

/* Banner Veranstaltungen */
.banner {
  position: relative; border-radius: calc(var(--radius) + 6px); overflow: hidden; color: #fff; isolation: isolate;
  padding: clamp(40px, 7vw, 88px) clamp(24px, 6vw, 72px); display: grid; grid-template-columns: 1.3fr 1fr; gap: 40px; align-items: center;
}
.banner > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; }
.banner::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(100deg, rgba(7,22,48,.95) 0%, rgba(7,22,48,.8) 50%, rgba(7,22,48,.35) 100%); }
.banner h2 { color: #fff; }
.banner p { color: rgba(255,255,255,.84); }
.chips { display: flex; flex-wrap: wrap; gap: 10px; }
.chips span { padding: 8px 16px; border-radius: 999px; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.18); font-size: .9rem; font-weight: 600; backdrop-filter: blur(6px); }
@media (max-width: 860px) { .banner { grid-template-columns: 1fr; } }

/* FAQ */
.faq { display: grid; gap: 12px; }
.faq details { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm); transition: box-shadow .25s, border-color .25s; }
.faq details[open] { box-shadow: var(--shadow); border-color: transparent; }
.faq summary {
  list-style: none; cursor: pointer; padding: 20px 60px 20px 24px; font-weight: 700; color: var(--ink); position: relative; font-size: 1.04rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; position: absolute; right: 22px; top: 50%; width: 26px; height: 26px; margin-top: -13px; border-radius: 50%;
  background: var(--sky-50) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231b8fc4' stroke-width='2.5' stroke-linecap='round'%3E%3Cpath d='M12 5v14M5 12h14'/%3E%3C/svg%3E") center / 14px no-repeat;
  transition: transform .25s var(--ease);
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq .faq__body { padding: 0 24px 22px; }
.faq .faq__body p:last-child { margin-bottom: 0; }

/* Forms */
.form-wrap { display: grid; grid-template-columns: 1fr 1.35fr; gap: clamp(32px, 5vw, 72px); align-items: start; }
@media (max-width: 960px) { .form-wrap { grid-template-columns: 1fr; } }
.form-aside .contact-list { list-style: none; padding: 0; margin: 28px 0 0; display: grid; gap: 18px; }
.contact-list li { display: flex; gap: 16px; align-items: flex-start; }
.contact-list .ico { width: 46px; height: 46px; flex: none; border-radius: 12px; display: grid; place-items: center; background: var(--sky-50); color: var(--sky-600); }
.section--navy .contact-list .ico { background: rgba(45,170,225,.14); color: var(--sky); }
.contact-list .ico svg { width: 22px; height: 22px; }
.contact-list small { display: block; font-size: .78rem; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); font-weight: 700; }
.section--navy .contact-list small { color: rgba(255,255,255,.5); }
.contact-list a, .contact-list address { color: var(--ink); font-weight: 700; text-decoration: none; font-style: normal; font-size: 1.05rem; }
.section--navy .contact-list a, .section--navy .contact-list address { color: #fff; }
.contact-list a:hover { color: var(--sky-600); }

.form {
  background: #fff; border-radius: var(--radius); padding: clamp(24px, 4vw, 40px); box-shadow: var(--shadow-lg); border: 1px solid var(--line);
  color: var(--text);
}
.form h3 { margin-bottom: 4px; }
.form .form-intro { color: var(--muted); font-size: .95rem; margin-bottom: 24px; }
.form fieldset { border: 0; padding: 0; margin: 0 0 8px; }
.form legend { font-weight: 800; color: var(--ink); font-size: .8rem; text-transform: uppercase; letter-spacing: .12em; margin: 10px 0 14px; padding: 0; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 0 16px; }
.grid-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 0 16px; }
@media (max-width: 560px) { .grid-2, .grid-3 { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; margin-bottom: 16px; }
.field label { font-size: .88rem; font-weight: 700; color: var(--ink); margin-bottom: 6px; }
.field label .req { color: var(--sky-600); }
.field input, .field select, .field textarea {
  font: inherit; font-size: 1rem; color: var(--ink); background: var(--bg-soft);
  border: 1.5px solid transparent; border-radius: 12px; padding: 13px 15px; width: 100%;
  transition: border-color .2s, background .2s, box-shadow .2s; -webkit-appearance: none; appearance: none;
}
.field select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236b7789' stroke-width='2.5' stroke-linecap='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; background-size: 16px; padding-right: 42px; }
.field textarea { min-height: 130px; resize: vertical; }
.field input:hover, .field select:hover, .field textarea:hover { border-color: var(--line); }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--sky); background: #fff; box-shadow: 0 0 0 4px rgba(45,170,225,.15); }
.field input:user-invalid, .field textarea:user-invalid { border-color: var(--err); }
.radio-row { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 16px; }
.radio-row label {
  display: inline-flex; align-items: center; gap: 10px; padding: 11px 16px; border-radius: 12px; background: var(--bg-soft);
  cursor: pointer; font-weight: 600; font-size: .95rem; color: var(--ink); border: 1.5px solid transparent;
}
.radio-row label:has(input:checked) { border-color: var(--sky); background: var(--sky-50); }
.radio-row input { accent-color: var(--sky-600); width: 18px; height: 18px; margin: 0; }
.check { display: flex; gap: 12px; align-items: flex-start; font-size: .88rem; color: var(--muted); margin: 6px 0 22px; cursor: pointer; }
.check input { accent-color: var(--sky-600); width: 20px; height: 20px; margin: 2px 0 0; flex: none; }
.hp { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; overflow: hidden; }
.form-note { font-size: .8rem; color: var(--muted); margin: 12px 0 0; text-align: center; }
.form-status { display: none; margin-top: 16px; padding: 14px 18px; border-radius: 12px; font-weight: 600; font-size: .95rem; }
.form-status.is-ok { display: block; background: #e7f6ee; color: #146c43; }
.form-status.is-err { display: block; background: #fdecec; color: #a12d2d; }
.form.is-sending button[type=submit] { opacity: .6; pointer-events: none; }
.form-success { text-align: center; padding: 40px 10px; }
.form-success svg { width: 64px; height: 64px; color: var(--ok); margin: 0 auto 16px; }

/* Gutschein / Versicherung */
.duo { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
@media (max-width: 900px) { .duo { grid-template-columns: 1fr; } }
.panel { border-radius: var(--radius); padding: clamp(28px, 4vw, 44px); background: #fff; border: 1px solid var(--line); }
.panel--insurance { display: grid; grid-template-columns: 1fr 150px; gap: 28px; align-items: center; }
.panel--insurance img { border-radius: 14px; }
@media (max-width: 560px) { .panel--insurance { grid-template-columns: 1fr; } .panel--insurance img { max-width: 160px; } }
.panel--agency { background: linear-gradient(160deg, var(--navy), var(--navy-700)); color: rgba(255,255,255,.8); border: 0; }
.panel--agency h3 { color: #fff; }

.voucher-steps { counter-reset: s; list-style: none; padding: 0; margin: 24px 0; display: grid; gap: 14px; }
.voucher-steps li { counter-increment: s; position: relative; padding-left: 48px; }
.voucher-steps li::before {
  content: counter(s); position: absolute; left: 0; top: 0; width: 32px; height: 32px; border-radius: 50%;
  background: var(--navy); color: #fff; font-weight: 800; display: grid; place-items: center; font-size: .9rem;
}
.voucher-card {
  margin-top: 28px; aspect-ratio: 1.7; max-width: 380px; border-radius: 18px; padding: 24px; color: #fff; position: relative; overflow: hidden;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-700) 55%, var(--sky-600) 140%); box-shadow: var(--shadow-lg);
  display: flex; flex-direction: column; justify-content: space-between;
}
.voucher-card img { width: 130px; }
.voucher-card strong { font-size: 1.9rem; letter-spacing: -.02em; }
.voucher-card span { font-size: .8rem; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.7); }
.voucher-card::after { content: ""; position: absolute; right: -60px; top: -60px; width: 200px; height: 200px; border-radius: 50%; border: 30px solid rgba(45,170,225,.18); }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-900); color: rgba(255,255,255,.66); padding: 72px 0 32px; font-size: .95rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; }
.site-footer h4 { color: #fff; font-size: .82rem; text-transform: uppercase; letter-spacing: .14em; margin-bottom: 16px; }
.site-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; }
.site-footer a { color: rgba(255,255,255,.8); text-decoration: none; }
.site-footer a:hover { color: var(--sky); }
.site-footer .brand img { height: 64px; margin-bottom: 18px; }
.socials { display: flex; gap: 10px; margin-top: 18px; }
.socials a { width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center; background: rgba(255,255,255,.07); }
.socials a:hover { background: var(--sky); color: #fff; }
.socials svg { width: 20px; height: 20px; }
.footer-bottom { margin-top: 56px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.08); display: flex; flex-wrap: wrap; justify-content: space-between; gap: 16px; font-size: .85rem; }
.footer-bottom nav { display: flex; gap: 20px; flex-wrap: wrap; }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }

/* Floating phone (mobile) */
.fab-call {
  position: fixed; right: 16px; bottom: 16px; z-index: 90; width: 58px; height: 58px; border-radius: 50%;
  background: var(--sky); color: #fff; display: none; place-items: center; box-shadow: 0 10px 28px rgba(12,33,67,.35);
}
.fab-call svg { width: 24px; height: 24px; }
@media (max-width: 760px) { .fab-call { display: grid; } }

/* ---------- Legal pages ---------- */
.page-hero { background: linear-gradient(160deg, var(--navy-900), var(--navy-700)); color: #fff; padding: calc(var(--header-h) + 64px) 0 64px; }
.page-hero h1 { color: #fff; font-size: clamp(2.2rem, 5vw, 3.4rem); margin: 0; }
.page-hero p { color: rgba(255,255,255,.7); margin: 12px 0 0; }
.legal { padding: clamp(48px, 7vw, 88px) 0; }
.legal .container { max-width: 880px; }
.legal h2 { font-size: clamp(1.5rem, 2.6vw, 2rem); margin-top: 1.6em; padding-top: .4em; }
.legal h2:first-child { margin-top: 0; }
.legal h3 { font-size: 1.12rem; margin-top: 1.8em; }
.legal ol { padding-left: 1.3em; }
.legal li { margin-bottom: .6em; }
.legal-block + .legal-block { margin-top: 56px; padding-top: 32px; border-top: 1px solid var(--line); }
.legal-toc { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 40px; }
.legal-toc a { padding: 8px 16px; border-radius: 999px; background: var(--bg-soft); text-decoration: none; font-weight: 700; font-size: .9rem; color: var(--navy); }
.legal-toc a:hover { background: var(--sky-50); }
.legal .info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 24px 0 8px; }
.legal .info-grid > div { background: var(--bg-soft); border-radius: var(--radius-sm); padding: 20px 22px; }
.legal .info-grid h3 { margin-top: 0; font-size: .82rem; text-transform: uppercase; letter-spacing: .12em; color: var(--muted); }
.legal .info-grid p { margin: 0; color: var(--ink); }
@media (max-width: 640px) { .legal .info-grid { grid-template-columns: 1fr; } }
.back-link { display: inline-flex; gap: 8px; font-weight: 700; text-decoration: none; margin-top: 40px; }

/* Reveal on scroll */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
.no-js .reveal { opacity: 1; transform: none; }
.section--navy .form h3 { color: var(--ink); }

/* ==========================================================================
   Mehrseitige Version – Ergänzungen
   ========================================================================== */

/* Menü mit Untermenüs */
.nav-group { position: relative; }
.nav-caret { width: 14px; height: 14px; margin-left: 4px; vertical-align: -2px; opacity: .7; transition: transform .2s; }
.nav-sub {
  position: absolute; top: calc(100% + 6px); left: 0; min-width: 250px; padding: 8px;
  background: #fff; border-radius: 14px; box-shadow: var(--shadow-lg);
  opacity: 0; visibility: hidden; transform: translateY(6px); transition: opacity .2s, transform .2s, visibility .2s;
}
.nav-sub::before { content: ""; position: absolute; left: 0; right: 0; top: -10px; height: 10px; }
.nav-sub a { display: block; color: var(--ink) !important; padding: 10px 14px; border-radius: 10px; font-size: .92rem; background: none !important; }
.nav-sub a:hover { background: var(--sky-50) !important; color: var(--sky-600) !important; }
.nav-group:hover .nav-sub, .nav-group:focus-within .nav-sub { opacity: 1; visibility: visible; transform: none; }
.nav-group:hover .nav-caret { transform: rotate(180deg); }
.nav { gap: 2px; }
.nav > *, .nav a { white-space: nowrap; flex: none; }
.nav-group > a { display: inline-flex; align-items: center; }
@media (max-width: 1320px) and (min-width: 1181px) { .nav a { padding: 10px 9px; font-size: .9rem; } .nav .nav-cta { padding: 10px 14px; } }
@media (max-width: 1180px) {
  .nav-group { display: flex; flex-direction: column; }
  .nav-caret { display: none; }
  .nav-sub { position: static; opacity: 1; visibility: visible; transform: none; background: transparent; box-shadow: none; padding: 0 0 8px 14px; min-width: 0; }
  .nav-sub::before { display: none; }
  .nav-sub a { color: rgba(255,255,255,.65) !important; font-size: 1rem; padding: 9px 12px; border-bottom: 0; }
  .nav-sub a:hover { background: rgba(255,255,255,.06) !important; color: #fff !important; }
}

/* Seitenkopf mit Bild */
.page-hero { position: relative; isolation: isolate; overflow: hidden; }
.page-hero--img { padding: calc(var(--header-h) + clamp(64px, 10vw, 120px)) 0 clamp(56px, 8vw, 96px); background: var(--navy-900); }
.page-hero__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; }
.page-hero--img::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(90deg, rgba(7,22,48,.92) 0%, rgba(7,22,48,.7) 55%, rgba(7,22,48,.35) 100%), linear-gradient(180deg, rgba(7,22,48,.5) 0%, rgba(7,22,48,0) 40%);
}
.page-hero h1 { max-width: 20ch; }
.page-hero .lead { color: rgba(255,255,255,.82); margin: 16px 0 0; }
.page-hero .eyebrow { margin-bottom: 18px; }
.subnav { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 32px; }
.subnav a { color: #fff; text-decoration: none; font-weight: 600; font-size: .92rem; padding: 10px 18px; border-radius: 999px; border: 1px solid rgba(255,255,255,.3); background: rgba(255,255,255,.06); backdrop-filter: blur(6px); transition: background .2s, border-color .2s; }
.subnav a:hover { background: var(--sky); border-color: var(--sky); color: #fff; }

.section--tight-top { padding-top: clamp(40px, 5vw, 64px); }
.lead--light { color: rgba(255,255,255,.78); }
.split--top { align-items: start; }
@media (min-width: 901px) { .split--reverse > :first-child { order: 2; } }

/* Schnellzugriff unter dem Hero */
.quicklinks { position: relative; z-index: 2; margin-top: -1px; background: var(--navy-900); padding-bottom: 8px; }
.quicklinks__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; transform: translateY(40px); }
.quicklink {
  display: flex; align-items: center; gap: 14px; padding: 20px; background: #fff; border-radius: var(--radius);
  box-shadow: var(--shadow-lg); text-decoration: none; color: var(--text); transition: transform .25s var(--ease), box-shadow .25s;
}
.quicklink:hover { transform: translateY(-4px); color: var(--text); }
.quicklink strong { display: block; color: var(--ink); font-size: 1.02rem; }
.quicklink small { display: block; font-size: .84rem; color: var(--muted); line-height: 1.4; }
.quicklink__icon { width: 46px; height: 46px; flex: none; border-radius: 12px; display: grid; place-items: center; background: var(--sky-50); color: var(--sky-600); }
.quicklink__icon svg { width: 22px; height: 22px; }
.quicklink__arrow { width: 18px; height: 18px; margin-left: auto; flex: none; color: var(--sky-600); transition: transform .2s; }
.quicklink:hover .quicklink__arrow { transform: translateX(4px); }
.quicklinks + .section { padding-top: calc(clamp(72px, 10vw, 128px) + 40px); }
@media (max-width: 1000px) { .quicklinks__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .quicklinks__grid { grid-template-columns: 1fr; gap: 10px; } .quicklink { padding: 16px; } }

/* Kopfzeile mit Button rechts */
.section-head--row { max-width: none; display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.section-head--row > div { max-width: 720px; }
.section-head--row .lead { margin-bottom: 0; }

/* Karten als Link */
.card--link { text-decoration: none; color: var(--text); }
.card--link:hover { color: var(--text); }
.card--link.card--feature, .card--link.card--feature:hover { color: rgba(255,255,255,.82); }
.card--link .card__link { color: var(--sky-600); }
.card--link.card--feature .card__link { color: var(--sky); }

/* Reiseprogramm-Band */
.feature-band {
  position: relative; isolation: isolate; overflow: hidden; border-radius: calc(var(--radius) + 6px);
  padding: clamp(40px, 7vw, 96px) clamp(24px, 6vw, 72px); color: #fff;
}
.feature-band > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; }
.feature-band::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(90deg, rgba(7,22,48,.94) 0%, rgba(7,22,48,.75) 50%, rgba(7,22,48,.2) 100%); }
.feature-band__content { max-width: 560px; }
.feature-band h2 { color: #fff; }
.feature-band p { color: rgba(255,255,255,.84); margin-bottom: 28px; }

/* Bild-Mosaik */
.mosaic { display: grid; grid-template-columns: 1.3fr 1fr; grid-template-rows: 1fr 1fr; gap: 12px; height: clamp(320px, 42vw, 480px); }
.mosaic img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius-sm); }
.mosaic__a { grid-row: span 2; }

/* Promo-Kacheln */
.promo {
  display: block; text-decoration: none; border-radius: var(--radius); padding: clamp(28px, 4vw, 44px); background: #fff;
  border: 1px solid var(--line); color: var(--text); transition: transform .3s var(--ease), box-shadow .3s;
}
.promo:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); color: var(--text); }
.promo h3 { font-size: clamp(1.4rem, 2.2vw, 1.8rem); }
.promo .card__link { font-weight: 700; color: var(--sky-600); display: inline-flex; gap: 6px; }
.promo .card__link::after { content: "→"; transition: transform .2s; }
.promo:hover .card__link::after { transform: translateX(4px); }
.promo--voucher { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-700) 60%, var(--sky-600) 150%); border: 0; color: rgba(255,255,255,.84); }
.promo--voucher:hover { color: rgba(255,255,255,.84); }
.promo--voucher h3 { color: #fff; }
.promo--voucher .card__link { color: var(--sky); }

/* Kontakt-Band */
.cta-band__inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.cta-band__inner > div:first-child { max-width: 620px; }
.cta-band__inner p { margin: 0; }
.cta-band__actions { display: flex; gap: 12px; flex-wrap: wrap; }
.cta-band { padding: clamp(56px, 8vw, 96px) 0; }

/* Reiseprogramm-Seite */
.embed--lift { margin-top: calc(-1 * clamp(40px, 5vw, 64px) - 40px); position: relative; z-index: 2; }
.info-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 28px; }
.info-tile { display: flex; gap: 14px; align-items: flex-start; padding: 20px; border-radius: var(--radius-sm); background: var(--bg-soft); }
.info-tile > svg { width: 24px; height: 24px; flex: none; color: var(--sky-600); margin-top: 2px; }
.info-tile strong { display: block; color: var(--ink); }
.info-tile span { font-size: .92rem; }
@media (max-width: 860px) { .info-row { grid-template-columns: 1fr; } }

/* Veranstaltungen */
.event-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.event-tile { padding: 22px; border-radius: var(--radius-sm); background: var(--bg-soft); display: flex; flex-direction: column; gap: 4px; }
.event-tile svg { width: 28px; height: 28px; color: var(--sky-600); margin-bottom: 10px; }
.event-tile strong { color: var(--ink); font-size: 1.08rem; }
.event-tile span { font-size: .9rem; color: var(--muted); }
.event-tile--wide { grid-column: span 2; background: linear-gradient(135deg, var(--navy), var(--navy-700)); }
.event-tile--wide strong { color: #fff; }
.event-tile--wide span { color: rgba(255,255,255,.7); }
.event-tile--wide svg { color: var(--sky); }

/* Kontakt-Seite */
.contact-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: calc(-1 * clamp(40px, 5vw, 64px) - 40px); position: relative; z-index: 2; }
.contact-card {
  display: flex; flex-direction: column; gap: 4px; padding: 26px; border-radius: var(--radius); background: #fff; box-shadow: var(--shadow-lg);
  text-decoration: none; color: var(--ink); transition: transform .25s var(--ease);
}
.contact-card:hover { transform: translateY(-4px); color: var(--sky-600); }
.contact-card .ico { width: 48px; height: 48px; border-radius: 12px; display: grid; place-items: center; background: var(--sky-50); color: var(--sky-600); margin-bottom: 12px; }
.contact-card .ico svg { width: 22px; height: 22px; }
.contact-card small { font-size: .78rem; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); font-weight: 700; }
.contact-card strong { font-size: 1.08rem; word-break: break-word; }
@media (max-width: 860px) { .contact-cards { grid-template-columns: 1fr; } }
.socials--dark a { background: var(--navy); color: #fff; }
.socials--dark a:hover { background: var(--sky); }

.panel--big { grid-template-columns: 1fr 260px; }
@media (max-width: 700px) { .panel--big { grid-template-columns: 1fr; } }
.page-hero:not(.page-hero--img) + .legal { padding-top: clamp(40px, 6vw, 72px); }
.legal ul { padding-left: 1.3em; }

/* ---------- VIP-Sprinter ---------- */
.section--vip {
  background: radial-gradient(1200px 500px at 80% 0%, rgba(45,170,225,.12), transparent 60%), #060d1d;
  color: rgba(255,255,255,.78);
}
.section--vip-alt { background: radial-gradient(900px 400px at 10% 100%, rgba(45,170,225,.10), transparent 60%), #0a1428; }
.section--vip h2, .section--vip h3 { color: #fff; }
.section--vip .split__media img { box-shadow: 0 30px 80px rgba(0,0,0,.5); }
.page-hero--vip::after { background: linear-gradient(90deg, rgba(4,10,24,.95) 0%, rgba(4,10,24,.7) 55%, rgba(4,10,24,.3) 100%); }
.chips--vip { margin-top: 24px; }
.chips--vip span { background: rgba(45,170,225,.12); border-color: rgba(45,170,225,.35); color: #fff; }
.vip-features { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.vip-feature {
  text-align: center; padding: 30px 18px; border-radius: var(--radius); border: 1px solid rgba(255,255,255,.08);
  background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.01)); display: flex; flex-direction: column; gap: 6px; align-items: center;
}
.vip-feature svg { width: 30px; height: 30px; color: var(--sky); margin-bottom: 10px; }
.vip-feature strong { color: #fff; }
.vip-feature span { font-size: .9rem; color: rgba(255,255,255,.6); }
@media (max-width: 1000px) { .vip-features { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 640px) { .vip-features { grid-template-columns: 1fr 1fr; } .vip-feature:last-child { grid-column: span 2; } }
.vip-card { margin-top: 28px; padding: 28px; border-radius: var(--radius); border: 1px solid rgba(45,170,225,.25); background: rgba(45,170,225,.06); }
.vip-card p { margin-bottom: 16px; }
.vip-card strong { color: #fff; }
.vip-list-title { font-size: 1.3rem; margin-bottom: 18px; }
.section--vip .checks li::before { background-color: rgba(45,170,225,.18); }
.checks--2col { grid-template-columns: 1fr; }
.section--vip .checks li { padding-bottom: 12px; border-bottom: 1px solid rgba(255,255,255,.06); }

.gallery--vip { grid-auto-rows: 110px; }
.gallery--vip button:nth-child(1) { grid-column: span 8; grid-row: span 4; }
.gallery--vip button:nth-child(2) { grid-column: span 4; grid-row: span 4; }
.gallery--vip button:nth-child(3) { grid-column: span 4; grid-row: span 3; }
.gallery--vip button:nth-child(4) { grid-column: span 4; grid-row: span 3; }
.gallery--vip button:nth-child(5) { grid-column: span 4; grid-row: span 3; }
.gallery--vip button:nth-child(6) { grid-column: span 6; grid-row: span 3; }
.gallery--vip button:nth-child(7) { grid-column: span 6; grid-row: span 3; }
@media (max-width: 760px) {
  .gallery--vip button { grid-column: span 6 !important; grid-row: span 2 !important; }
  .gallery--vip button:nth-child(1) { grid-column: span 12 !important; grid-row: span 3 !important; }
}

.embed--dark { background: #0a1428; border-color: rgba(255,255,255,.08); }
.embed--dark .embed__bar { background: #0e1a33; border-color: rgba(255,255,255,.08); }
.embed--dark .embed__bar strong { color: #fff; }
.embed__frame--360 { height: 620px; max-height: 80vh; }
.consent--vip { background: linear-gradient(180deg, rgba(4,10,24,.75), rgba(4,10,24,.92)), url("../img/vip-sprinter-4.jpg") center / cover; }

/* VIP-Teaser auf Startseite */
.vip-teaser {
  position: relative; isolation: isolate; overflow: hidden; border-radius: calc(var(--radius) + 6px);
  display: grid; grid-template-columns: 1fr 1fr; min-height: 420px; background: #060d1d; color: rgba(255,255,255,.8);
}
.vip-teaser__media { position: relative; }
.vip-teaser__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.vip-teaser__content { padding: clamp(32px, 5vw, 64px); align-self: center; }
.vip-teaser h2 { color: #fff; }
@media (max-width: 860px) { .vip-teaser { grid-template-columns: 1fr; } .vip-teaser__media { min-height: 260px; } }
.section--tight-bottom { padding-bottom: 0; }

/* ---------- Tagesfahrtenprogramm ---------- */
.pdf-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.pdf-card {
  display: grid; grid-template-columns: 140px 1fr; gap: 20px; align-items: center; padding: 18px; border-radius: var(--radius);
  background: #fff; border: 1px solid var(--line); text-decoration: none; color: var(--text); transition: transform .3s var(--ease), box-shadow .3s, border-color .3s;
}
.pdf-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: transparent; color: var(--text); }
.pdf-card__cover { display: block; border-radius: 8px; overflow: hidden; box-shadow: 0 6px 18px rgba(12,33,67,.18); aspect-ratio: 424 / 600; }
.pdf-card__cover img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.pdf-card:hover .pdf-card__cover img { transform: scale(1.04); }
.pdf-card__body { display: flex; flex-direction: column; gap: 4px; }
.pdf-card small { font-size: .75rem; text-transform: uppercase; letter-spacing: .12em; font-weight: 700; color: var(--sky-600); }
.pdf-card strong { font-size: 1.2rem; color: var(--ink); line-height: 1.25; }
.pdf-card__dl { margin-top: 12px; font-weight: 700; font-size: .92rem; color: var(--navy); display: inline-flex; gap: 6px; }
.pdf-card__dl::after { content: "↗"; }
@media (max-width: 1000px) { .pdf-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .pdf-grid { grid-template-columns: 1fr; } .pdf-card { grid-template-columns: 110px 1fr; } }

/* ---------- Sprachumschalter ---------- */
.lang-switch { display: inline-flex; align-items: center; gap: 2px; margin-left: 6px; padding: 3px; border-radius: 999px; background: rgba(255,255,255,.08); }
.nav .lang-switch a, .lang-switch span { padding: 6px 10px; font-size: .78rem; font-weight: 800; letter-spacing: .06em; border-radius: 999px; color: rgba(255,255,255,.7); line-height: 1; }
.nav .lang-switch a:hover { color: #fff; background: rgba(255,255,255,.1); }
.lang-switch .is-current { background: #fff; color: var(--navy); pointer-events: none; }
@media (max-width: 1180px) {
  .lang-switch { align-self: flex-start; order: -1; margin: 0 0 12px 12px; }
  .nav .lang-switch a, .lang-switch span { font-size: .95rem; padding: 10px 16px; border-bottom: 0; }
}
.legal-note { padding: 14px 18px; border-radius: var(--radius-sm); background: var(--sky-50); color: var(--ink); font-size: .95rem; margin-bottom: 32px; }
.embed-note { margin: 14px 4px 0; font-size: .9rem; color: var(--muted); }
