/* ============================================================
   SAARLANDTOURS – Adventure Redesign 2026
   Dunkel, bold, orange. Inspiriert von KTM, Marius Quast,
   Fritz Meinecke & aeroe.
   ============================================================ */

:root {
  --bg: #0e0f12;
  --bg-soft: #14161b;
  --surface: #1b1e25;
  --surface-2: #22262f;
  --line: rgba(255, 255, 255, 0.09);
  --text: #f2f0ea;
  --text-dim: #a7a9ad;
  --orange: #ff5f00;
  --orange-soft: #ff7b26;
  --olive: #8a9a5b;
  --radius: 18px;
  --display: "Anton", "Arial Narrow", sans-serif;
  --condensed: "Barlow Condensed", "Arial Narrow", sans-serif;
  --body: "Barlow", "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: clip; scroll-padding-top: 142px; }
body {
  margin: 0;
  overflow-x: clip;
  background: var(--bg);
  color: var(--text);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button { color: inherit; font: inherit; background: none; border: 0; cursor: pointer; }
img { display: block; width: 100%; }
svg { fill: none; stroke: currentColor; stroke-width: 1.8; }
.icon-play path, .video-play path { fill: currentColor; stroke: none; }

.skip-link { position: fixed; z-index: 1100; top: 12px; left: 12px; padding: 12px 18px; background: var(--orange); color: #000; font-weight: 700; transform: translateY(-160%); }
.skip-link:focus { transform: none; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

h1, h2, h3 { margin: 0; }
h2 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(44px, 6vw, 88px);
  line-height: 1.1;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}
h2 em, h1 em { font-style: normal; color: var(--orange); }

.section-number {
  display: inline-block;
  margin-right: 14px;
  font-family: var(--condensed);
  font-weight: 700;
  font-size: 15px;
  color: var(--orange);
  letter-spacing: 0.12em;
}
.section-label {
  font-family: var(--condensed);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.section-head { display: grid; gap: 18px; max-width: 900px; padding: 0 0 48px; }
.section-head p { max-width: 480px; margin: 0; color: var(--text-dim); }

/* ---------- Buttons ---------- */
.button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 30px;
  font-family: var(--condensed);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}
.button svg { width: 20px; height: 20px; }
.button-primary { background: var(--orange); color: #000; }
.button-primary:hover { background: var(--orange-soft); transform: translateY(-2px); }
.button-ghost { border: 1px solid rgba(255, 255, 255, 0.35); color: var(--text); }
.button-ghost:hover { border-color: var(--orange); color: var(--orange); transform: translateY(-2px); }

.pill {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 999px;
  background: rgba(255, 95, 0, 0.14);
  border: 1px solid rgba(255, 95, 0, 0.4);
  color: var(--orange-soft);
  font-family: var(--condensed);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  display: flex;
  align-items: center;
  gap: 30px;
  min-height: 128px;
  padding: 8px 4vw;
  background: rgba(14, 15, 18, 0.86);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}
.logo-link { flex: 0 0 auto; display: inline-flex; align-items: center; }
.logo-link img { width: auto; height: 112px; object-fit: contain; filter: drop-shadow(0 6px 18px rgba(0, 0, 0, 0.55)); }
.desktop-nav { display: flex; flex: 1; justify-content: center; gap: clamp(18px, 2.6vw, 44px); }
.desktop-nav a {
  position: relative;
  padding: 10px 0;
  font-family: var(--condensed);
  font-weight: 600;
  font-size: 17px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.desktop-nav a::after { content: ""; position: absolute; right: 100%; bottom: 4px; left: 0; height: 3px; background: var(--orange); transition: right 0.35s ease; }
.desktop-nav a:hover::after { right: 0; }
.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  background: var(--orange);
  color: #000;
  font-family: var(--condensed);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: background 0.25s ease, transform 0.25s ease;
}
.header-cta:hover { background: var(--orange-soft); transform: translateY(-2px); }
.header-cta svg { width: 20px; height: 20px; }

/* Social-Media-Dropdown */
.social-dropdown { position: relative; flex: 0 0 auto; }
.header-cta .cta-chevron { width: 18px; height: 18px; stroke-width: 2.4; transition: transform 0.3s ease; }
.social-dropdown.open .cta-chevron { transform: rotate(180deg); }
.social-menu {
  position: absolute;
  z-index: 60;
  top: calc(100% + 14px);
  right: 0;
  width: 300px;
  padding: 10px;
  border-radius: var(--radius);
  background: rgba(20, 22, 27, 0.97);
  border: 1px solid var(--line);
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(14px);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px) scale(0.98);
  transform-origin: top right;
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
}
.social-dropdown.open .social-menu,
.social-dropdown:hover .social-menu,
.social-dropdown:focus-within .social-menu { opacity: 1; visibility: visible; transform: none; }
.social-dropdown:hover .cta-chevron,
.social-dropdown:focus-within .cta-chevron { transform: rotate(180deg); }
/* unsichtbare Brücke, damit die Maus nicht in die Lücke fällt */
.social-menu::after { content: ""; position: absolute; top: -18px; right: 0; left: 0; height: 18px; }
.social-menu::before {
  content: "";
  position: absolute;
  top: -7px;
  right: 34px;
  width: 12px;
  height: 12px;
  background: rgba(20, 22, 27, 0.97);
  border-left: 1px solid var(--line);
  border-top: 1px solid var(--line);
  transform: rotate(45deg);
}
.social-menu a {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 14px;
  border-radius: 12px;
  color: var(--text);
  transition: background 0.2s ease, transform 0.2s ease;
}
.social-menu a:hover { background: rgba(255, 95, 0, 0.14); transform: translateX(4px); }
.social-menu a svg { width: 24px; height: 24px; flex: 0 0 auto; color: var(--orange); stroke-width: 1.7; }
.social-menu a svg .fill { fill: currentColor; stroke: none; }
.social-menu span { display: grid; gap: 2px; font-family: var(--condensed); font-weight: 700; font-size: 19px; letter-spacing: 0.06em; text-transform: uppercase; }
.social-menu small { font-family: var(--body); font-weight: 400; font-size: 13.5px; letter-spacing: 0; text-transform: none; color: var(--text-dim); }

.menu-toggle { display: none; }
.mobile-menu { display: none; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: calc(100vh - 128px);
  padding: 120px 4vw 70px;
  isolation: isolate;
}
.hero-bg { position: absolute; inset: 0; z-index: -1; overflow: clip; }
.hero-bg picture { display: block; height: 100%; }
.hero-bg img { height: 100%; object-fit: cover; object-position: 62% 50%; filter: saturate(1.03) contrast(1.04); }
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(14,15,18,0.5) 0%, rgba(14,15,18,0.2) 35%, rgba(14,15,18,0.95) 100%),
    linear-gradient(90deg, rgba(14,15,18,0.82) 0%, rgba(14,15,18,0.35) 45%, rgba(14,15,18,0) 72%);
}
.hero-content { max-width: 1100px; }
.hero-kicker {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 0 0 24px;
  font-family: var(--condensed);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.hero-kicker i { width: 46px; height: 2px; background: var(--orange); }
.hero h1 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(64px, 10vw, 168px);
  line-height: 1.04;
  letter-spacing: 0.005em;
  text-transform: uppercase;
  text-shadow: 0 6px 40px rgba(0, 0, 0, 0.45);
}
.hero-sub { max-width: 520px; margin: 26px 0 34px; font-size: 19px; color: rgba(242, 240, 234, 0.85); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; }
.hero-badge {
  position: absolute;
  right: 4vw;
  bottom: 70px;
  display: grid;
  gap: 2px;
  padding: 18px 22px;
  border-left: 4px solid var(--orange);
  background: rgba(14, 15, 18, 0.72);
  backdrop-filter: blur(8px);
  font-family: var(--condensed);
  text-transform: uppercase;
}
.hero-badge span:first-child { font-weight: 700; font-size: 22px; letter-spacing: 0.08em; }
.hero-badge span:last-child { font-size: 14px; letter-spacing: 0.18em; color: var(--text-dim); }

/* ---------- Moving strip ---------- */
.moving-strip { overflow: clip; background: var(--orange); color: #000; }
.strip-track { display: flex; width: max-content; animation: strip 26s linear infinite; will-change: transform; }
.strip-copy {
  display: flex;
  align-items: center;
  gap: 34px;
  flex: 0 0 auto;
  padding: 14px 0 14px 34px;
  font-family: var(--display);
  font-size: 26px;
  letter-spacing: 0.05em;
}
.moving-strip i { width: 10px; height: 10px; background: #000; transform: rotate(45deg); flex: 0 0 auto; }
@keyframes strip { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- Sections base ---------- */
.videos, .journeys, .story-section { padding: 110px 4vw; }

/* ---------- Videos ---------- */
.videos { background: var(--bg); }
.video-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.video-card {
  overflow: clip;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--line);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.video-card:hover { transform: translateY(-6px); border-color: rgba(255, 95, 0, 0.55); box-shadow: 0 22px 50px rgba(0, 0, 0, 0.45); }
.video-card a { display: grid; }
.video-card figure { position: relative; margin: 0; aspect-ratio: 16 / 9; overflow: clip; }
.video-card figure img { height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.video-card:hover figure img { transform: scale(1.05); }
.video-duration {
  position: absolute;
  right: 10px;
  bottom: 10px;
  padding: 3px 8px;
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.82);
  font-family: var(--condensed);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.06em;
}
.video-play {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(14, 15, 18, 0.25);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.video-card:hover .video-play { opacity: 1; }
.video-play svg { width: 62px; height: 62px; padding: 14px; border-radius: 50%; background: var(--orange); color: #000; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5); }
.video-body { display: grid; gap: 10px; align-content: start; padding: 18px 18px 22px; }
.video-body .pill { justify-self: start; }
.video-body h3 { font-size: 17px; font-weight: 700; line-height: 1.35; }
.video-meta { font-family: var(--condensed); font-size: 14px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-dim); }
.videos-more { display: flex; justify-content: center; padding-top: 44px; }

/* ---------- Shorts ---------- */
.shorts { padding: 0 4vw 110px; }
.shorts-head { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 24px; padding-bottom: 40px; }
.shorts-head > div { display: grid; gap: 16px; }
.shorts-head p { max-width: 460px; margin: 0; color: var(--text-dim); }
.shorts-head-link { flex: 0 0 auto; }

.shorts-rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(232px, 1fr);
  gap: 20px;
  overflow-x: auto;
  padding-bottom: 14px;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: var(--orange) transparent;
}
.shorts-rail::-webkit-scrollbar { height: 6px; }
.shorts-rail::-webkit-scrollbar-track { background: rgba(128, 128, 128, 0.18); border-radius: 99px; }
.shorts-rail::-webkit-scrollbar-thumb { background: var(--orange); border-radius: 99px; }

.short-card { display: grid; gap: 12px; align-content: start; scroll-snap-align: start; }
.short-card figure {
  position: relative;
  margin: 0;
  aspect-ratio: 9 / 16;
  overflow: clip;
  border-radius: var(--radius);
  background: var(--surface-2);
  border: 1px solid var(--line);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.short-card figure img { height: 100%; object-fit: cover; transition: transform 0.45s ease; }
.short-card:hover figure { transform: translateY(-6px); border-color: rgba(255, 95, 0, 0.6); box-shadow: 0 22px 50px rgba(0, 0, 0, 0.45); }
.short-card:hover figure img { transform: scale(1.06); }
.short-play {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  opacity: 0;
  background: rgba(14, 15, 18, 0.28);
  transition: opacity 0.3s ease;
}
.short-card:hover .short-play { opacity: 1; }
.short-play svg { width: 56px; height: 56px; padding: 13px; border-radius: 50%; background: var(--orange); color: #000; }
.short-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 11px;
  border-radius: 999px;
  background: var(--orange);
  color: #000;
  font-family: var(--condensed);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.short-card h3 { font-size: 16px; font-weight: 700; line-height: 1.4; }
.short-meta { font-family: var(--condensed); font-size: 14px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-dim); }
.shorts-hint { display: none; margin: 16px 0 0; font-family: var(--condensed); font-size: 15px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--text-dim); }

/* ---------- Mission ---------- */
.mission { padding: 110px 4vw; background: var(--bg-soft); border-block: 1px solid var(--line); }
.mission-inner { display: grid; gap: 26px; max-width: 1000px; margin: 0 auto; }
.mission-intro { max-width: 760px; margin: 0; font-size: 21px; line-height: 1.55; }
.mission-columns { display: grid; grid-template-columns: 1fr 1fr; gap: 34px; color: var(--text-dim); }
.mission-columns p { margin: 0; }
.mission-note { max-width: 760px; margin: 10px 0 0; padding-left: 22px; border-left: 3px solid var(--orange); color: var(--text-dim); }

/* ---------- Journeys ---------- */
.route-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.route-card {
  position: relative;
  display: grid;
  gap: 10px;
  align-content: start;
  padding: 28px 24px 32px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--line);
  border-top: 3px solid var(--orange);
  transition: transform 0.3s ease, background 0.3s ease;
}
.route-card:hover { transform: translateY(-6px); background: var(--surface-2); }
.route-index { font-family: var(--display); font-size: 34px; color: rgba(255, 95, 0, 0.85); }
.route-card h3 { font-family: var(--condensed); font-weight: 700; font-size: 26px; letter-spacing: 0.06em; text-transform: uppercase; }
.route-card p { margin: 0; font-size: 15.5px; color: var(--text-dim); }

.travel-feature {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  margin-top: 70px;
  border-radius: var(--radius);
  overflow: clip;
  border: 1px solid var(--line);
}
.travel-feature-image { margin: 0; min-height: 420px; }
.travel-feature-image img { height: 100%; object-fit: cover; }
.travel-feature-copy { display: grid; gap: 18px; align-content: center; padding: clamp(30px, 4vw, 64px); background: #000; }
.story-type { font-family: var(--condensed); font-weight: 600; font-size: 15px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--orange); }
.travel-feature-copy h3 { font-family: var(--display); font-weight: 400; font-size: clamp(30px, 3vw, 44px); line-height: 1.18; text-transform: uppercase; }
.travel-feature-copy h3, .travel-feature-copy p { color: #fff; }
.travel-feature-copy p { margin: 0; }
.travel-feature-copy .button { justify-self: start; }

/* ---------- Test lab ---------- */
.test-lab { padding: 110px 4vw; background: var(--bg-soft); border-block: 1px solid var(--line); }
.test-lab-inner { display: grid; gap: 56px; max-width: 1300px; margin: 0 auto; }
.test-lab header { display: grid; gap: 18px; align-content: start; }
.test-lab header p { max-width: 420px; margin: 0; color: var(--text-dim); }
.test-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.test-panel { display: grid; gap: 18px; align-content: start; padding: 38px; border-radius: var(--radius); background: var(--surface); border: 1px solid var(--line); border-left: 4px solid var(--orange); transition: transform 0.25s ease, background 0.25s ease; }
.test-panel:hover { transform: translateY(-4px); background: var(--surface-2); }
.panel-count { font-family: var(--condensed); font-weight: 600; font-size: 14px; letter-spacing: 0.2em; color: var(--orange); }
.test-panel h3 { font-size: 24px; font-weight: 700; line-height: 1.3; }
.test-panel ul { display: grid; grid-template-columns: 1fr 1fr; gap: 18px 32px; margin: 0; padding: 0; list-style: none; color: var(--text-dim); }
.test-panel li { display: flex; align-items: center; gap: 12px; }
.test-panel li::before { content: ""; width: 8px; height: 8px; background: var(--orange); transform: rotate(45deg); flex: 0 0 auto; }

/* ---------- Stories ---------- */
.story-filters { display: flex; flex-wrap: wrap; gap: 10px; padding-bottom: 36px; }
.story-filters button {
  padding: 10px 22px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  font-family: var(--condensed);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
  transition: all 0.25s ease;
}
.story-filters button:hover { border-color: var(--orange); color: var(--text); }
.story-filters button.active { background: var(--orange); border-color: var(--orange); color: #000; }

.story-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.story-card {
  overflow: clip;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--line);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease;
}
.story-card:hover { transform: translateY(-6px); border-color: rgba(255, 95, 0, 0.55); box-shadow: 0 22px 50px rgba(0, 0, 0, 0.45); }
.story-card.is-hidden { display: none; }
.story-card a { display: grid; height: 100%; }
.story-card figure { margin: 0; aspect-ratio: 16 / 10; overflow: clip; }
.story-card figure img { height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.story-card:hover figure img { transform: scale(1.05); }
.story-body { display: grid; gap: 12px; align-content: start; padding: 20px 20px 26px; }
.story-meta { display: flex; align-items: center; gap: 12px; font-family: var(--condensed); font-size: 14px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-dim); }
.story-card h3 { font-size: 20px; font-weight: 700; line-height: 1.3; }
.story-card p { margin: 0; font-size: 15.5px; color: var(--text-dim); }
.story-wide { grid-column: span 2; }
.story-wide figure { aspect-ratio: 21 / 10; }
.story-tall figure { aspect-ratio: 16 / 12; }
.story-accent { background: var(--orange); border-color: var(--orange); }
.story-accent .story-body { gap: 14px; padding: 28px 24px; }
.story-accent .story-type, .story-accent h3, .story-accent p { color: #000; }
.story-accent p { opacity: 0.8; }
.story-accent .card-link { display: inline-flex; align-items: center; gap: 10px; font-family: var(--condensed); font-weight: 700; font-size: 16px; letter-spacing: 0.1em; text-transform: uppercase; color: #000; }
.story-accent .card-link svg { width: 18px; height: 18px; }
.story-accent:hover { box-shadow: 0 22px 50px rgba(255, 95, 0, 0.25); }

/* ---------- Statement ---------- */
.statement { position: relative; overflow: clip; padding: 130px 4vw; background: #000; border-block: 1px solid var(--line); }
.statement-track {
  position: absolute;
  top: 50%;
  left: 0;
  width: max-content;
  transform: translateY(-50%);
  font-family: var(--display);
  font-size: clamp(110px, 16vw, 260px);
  white-space: nowrap;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.14);
  animation: strip 40s linear infinite;
}
.statement-content { position: relative; display: grid; gap: 14px; max-width: 640px; margin: 0 auto; text-align: center; }
.statement-content p { margin: 0; font-size: clamp(22px, 2.6vw, 32px); font-weight: 600; line-height: 1.4; }

/* ---------- Social ---------- */
.social-section { display: grid; grid-template-columns: 1fr 1.2fr; gap: clamp(40px, 6vw, 100px); padding: 110px 4vw; }
.social-intro { display: grid; gap: 18px; align-content: start; }
.social-intro p { max-width: 420px; margin: 0; color: var(--text-dim); }
.social-links { display: grid; gap: 12px; align-content: center; }
.social-links a {
  position: relative;
  display: grid;
  grid-template-columns: 150px 1fr 32px;
  align-items: center;
  gap: 20px;
  padding: 22px 26px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--surface);
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}
.social-links a:hover { transform: translateX(8px); border-color: rgba(255, 95, 0, 0.55); background: var(--surface-2); }
.social-links span { font-family: var(--condensed); font-weight: 700; font-size: 24px; letter-spacing: 0.08em; text-transform: uppercase; }
.social-links small { font-size: 15px; color: var(--text-dim); }
.social-links svg { width: 26px; height: 26px; color: var(--orange); }

/* ---------- Footer ---------- */
.site-footer { border-top: 1px solid var(--line); background: #000; }
.footer-top { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 30px; padding: 60px 4vw; }
.footer-top img { width: 190px; filter: drop-shadow(0 6px 18px rgba(0, 0, 0, 0.55)); }
.footer-top p { margin: 0; font-family: var(--condensed); font-weight: 600; font-size: 20px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--text-dim); }
.back-top { display: inline-flex; align-items: center; gap: 10px; font-family: var(--condensed); font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--orange); }
.back-top svg { width: 20px; height: 20px; }
.footer-made {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 4vw 30px;
  font-family: var(--condensed);
  font-weight: 600;
  font-size: 17px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.footer-made .heart { width: 19px; height: 19px; fill: var(--orange); stroke: none; animation: heartbeat 2.4s ease-in-out infinite; }
.footer-made a { color: var(--text); border-bottom: 2px solid var(--orange); padding-bottom: 1px; transition: color 0.25s ease; }
.footer-made a:hover { color: var(--orange); }
@keyframes heartbeat {
  0%, 22%, 100% { transform: scale(1); }
  10% { transform: scale(1.22); }
  16% { transform: scale(1.06); }
}
@media (prefers-reduced-motion: reduce) { .footer-made .heart { animation: none; } }
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 22px 4vw 30px;
  border-top: 1px solid var(--line);
  font-size: 14px;
  color: var(--text-dim);
}
.footer-bottom div { display: flex; gap: 22px; }
.footer-bottom a:hover { color: var(--orange); }

/* ---------- Helle Sektionen ---------- */
.section-light {
  --surface: #ffffff;
  --surface-2: #f6f4ee;
  --line: rgba(20, 22, 27, 0.12);
  --text: #16181d;
  --text-dim: #5f6166;
  background: #f2f0ea;
  color: #16181d;
  border-block: 0;
}
.section-light .section-label { color: #6d6f68; }
.section-light .button-ghost { border-color: rgba(20, 22, 27, 0.35); color: #16181d; }
.section-light .button-ghost:hover { border-color: var(--orange); color: var(--orange); }
.section-light .story-filters button,
.section-light .test-tabs button { border-color: rgba(20, 22, 27, 0.25); }
.section-light .story-filters button:hover { border-color: var(--orange); color: #16181d; }
.section-light .story-filters button.active { background: var(--orange); border-color: var(--orange); color: #000; }
.section-light .route-card,
.section-light .story-card,
.section-light .social-links a {
  box-shadow: 0 10px 30px rgba(20, 22, 27, 0.06);
}
.section-light .story-card:hover,
.section-light .video-card:hover { box-shadow: 0 22px 50px rgba(20, 22, 27, 0.16); }
.section-light .travel-feature { border-color: rgba(20, 22, 27, 0.12); }
.section-light .story-accent { box-shadow: 0 10px 30px rgba(255, 95, 0, 0.2); }

/* ---------- Rechtstexte (Impressum / Datenschutz) ---------- */
.legal-hero { padding: 90px 4vw 50px; background: var(--bg-soft); border-bottom: 1px solid var(--line); }
.legal-hero .section-label { display: block; margin-bottom: 14px; }
.legal-hero h1 { font-family: var(--display); font-weight: 400; font-size: clamp(46px, 7vw, 96px); line-height: 1.1; text-transform: uppercase; }
.legal-hero h1 em { font-style: normal; color: var(--orange); }
.legal-body { max-width: 900px; margin: 0 auto; padding: 70px 4vw 110px; }
.legal-body h2 {
  margin: 54px 0 18px;
  font-family: var(--condensed);
  font-weight: 700;
  font-size: clamp(24px, 2.6vw, 32px);
  line-height: 1.2;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text);
}
.legal-body h2:first-child { margin-top: 0; }
.legal-body h3 { margin: 32px 0 12px; font-size: 20px; font-weight: 700; color: var(--text); }
.legal-body p { margin: 0 0 18px; color: var(--text-dim); }
.legal-body ul { margin: 0 0 20px; padding-left: 0; list-style: none; display: grid; gap: 12px; color: var(--text-dim); }
.legal-body ul li { display: flex; gap: 12px; }
.legal-body ul li::before { content: ""; margin-top: 9px; width: 7px; height: 7px; background: var(--orange); transform: rotate(45deg); flex: 0 0 auto; }
.legal-body a { color: var(--orange-soft); text-decoration: underline; text-underline-offset: 3px; word-break: break-word; }
.legal-body a:hover { color: var(--orange); }
.legal-card {
  display: grid;
  gap: 6px;
  margin: 0 0 28px;
  padding: 30px 34px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--line);
  border-left: 4px solid var(--orange);
  color: var(--text);
}
.legal-card strong { font-family: var(--condensed); font-size: 22px; letter-spacing: 0.05em; text-transform: uppercase; }
.legal-note { margin-top: 50px; padding-top: 24px; border-top: 1px solid var(--line); font-size: 14px; color: var(--text-dim); }

/* ---------- Scroll-Dynamik ---------- */
.scroll-progress { position: fixed; top: 0; left: 0; z-index: 300; height: 3px; width: 0; background: var(--orange); box-shadow: 0 0 12px rgba(255, 95, 0, 0.6); }
.site-header { transition: min-height 0.35s ease, box-shadow 0.35s ease; }
.logo-link img { transition: height 0.35s ease; }
body.scrolled .site-header { min-height: 84px; box-shadow: 0 12px 34px rgba(0, 0, 0, 0.45); }
body.scrolled .logo-link img { height: 64px; }
.hero-bg img { will-change: transform; }
.hero-content { will-change: transform, opacity; }

.reveal-item { opacity: 0; }
.reveal-item.in-view { opacity: 1; animation: itemRise 0.65s cubic-bezier(0.2, 0.7, 0.3, 1) backwards; }
@keyframes itemRise {
  from { opacity: 0; transform: translateY(34px); }
  to { opacity: 1; transform: none; }
}

/* ---------- Reveal animations ---------- */
.reveal, .image-reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.in-view, .image-reveal.in-view { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .moving-strip > div, .statement-track { animation: none; }
  .reveal, .image-reveal { opacity: 1; transform: none; transition: none; }
  .reveal-item { opacity: 1; }
  .reveal-item.in-view { animation: none; }
  .scroll-progress { display: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1100px) {
  .video-grid { grid-template-columns: repeat(2, 1fr); }
  .route-grid { grid-template-columns: repeat(2, 1fr); }
  .test-lab-inner { grid-template-columns: 1fr; }
  .social-section { grid-template-columns: 1fr; }
  .story-grid { grid-template-columns: repeat(2, 1fr); }
  .story-wide { grid-column: span 2; }
}

@media (max-width: 760px) {
  .desktop-nav, .social-dropdown { display: none; }
  .menu-toggle {
    display: grid;
    gap: 6px;
    margin-left: auto;
    padding: 12px;
  }
  .menu-toggle span:not(.sr-only) { width: 26px; height: 2px; background: var(--text); transition: transform 0.3s ease, opacity 0.3s ease; }
  .menu-toggle.active span:nth-child(1) { transform: translateY(4px) rotate(45deg); }
  .menu-toggle.active span:nth-child(2) { transform: translateY(-4px) rotate(-45deg); }
  /* Header kompakter, damit oben nicht der halbe Bildschirm weg ist */
  .site-header { min-height: 86px; padding: 8px 6vw; gap: 12px; }
  .logo-link img { height: 62px; }
  body.scrolled .site-header { min-height: 72px; }
  body.scrolled .logo-link img { height: 50px; }
  html { scroll-padding-top: 96px; }

  .mobile-menu {
    position: fixed;
    inset: 86px 0 0;
    z-index: 45;
    display: grid;
    gap: 4px;
    align-content: start;
    overflow-y: auto;
    padding: 30px 6vw calc(40px + env(safe-area-inset-bottom));
    background: var(--bg);
    border-top: 1px solid var(--line);
    transform: translateX(100%);
    visibility: hidden;
    transition: transform 0.35s ease, visibility 0.35s;
  }
  .mobile-menu.open { transform: none; visibility: visible; }
  .mobile-menu a { padding: 15px 0; border-bottom: 1px solid var(--line); font-family: var(--condensed); font-weight: 700; font-size: 24px; letter-spacing: 0.08em; text-transform: uppercase; }
  .mobile-menu a:last-child { border-bottom: 0; }
  /* Hero: Schrift so, dass nichts mehr aus dem Bild läuft */
  .hero { min-height: calc(100svh - 86px); padding: 70px 6vw 64px; }
  .hero-bg img { object-position: 74% 42%; }
  .hero-bg::after {
    background:
      linear-gradient(180deg, rgba(14,15,18,0.5) 0%, rgba(14,15,18,0.25) 28%, rgba(14,15,18,0.96) 78%),
      linear-gradient(90deg, rgba(14,15,18,0.6) 0%, rgba(14,15,18,0.1) 100%);
  }
  .hero h1 { font-size: clamp(40px, 12.2vw, 92px); line-height: 1.06; }
  .hero-kicker { flex-wrap: wrap; gap: 8px 12px; margin-bottom: 18px; font-size: 12.5px; letter-spacing: 0.16em; }
  .hero-kicker i { width: 28px; }
  .hero-sub { margin: 20px 0 26px; font-size: 16.5px; }
  .hero-actions { display: grid; gap: 10px; }
  .hero-actions .button { justify-content: center; width: 100%; padding: 15px 20px; font-size: 16px; }
  .hero-badge { display: none; }
  .videos, .journeys, .story-section, .mission, .test-lab, .social-section { padding: 70px 6vw; }
  .shorts { padding: 0 6vw 70px; }
  .shorts-rail { grid-auto-columns: 62vw; margin-right: -6vw; padding-right: 6vw; }
  .shorts-head-link { display: none; }
  .shorts-hint { display: block; }
  .video-grid, .route-grid, .story-grid, .test-grid { grid-template-columns: 1fr; }
  .story-wide { grid-column: auto; }
  .story-wide figure { aspect-ratio: 16 / 10; }
  .mission-columns { grid-template-columns: 1fr; }
  .travel-feature { grid-template-columns: 1fr; }
  .travel-feature-image { min-height: 260px; }
  .social-links a { grid-template-columns: 1fr 26px; gap: 6px 14px; padding: 18px 20px; }
  .social-links span { font-size: 21px; }
  .social-links small { grid-column: 1 / -1; }
  .footer-top { flex-direction: column; align-items: flex-start; gap: 22px; padding: 46px 6vw; }

  /* Überschriften und Textgrößen */
  h2 { font-size: clamp(36px, 10vw, 64px); }
  .section-head { padding-bottom: 34px; gap: 14px; }
  .mission-intro { font-size: 18px; }
  .mission-columns { gap: 20px; }
  .mission-note { padding-left: 16px; }
  .statement { padding: 80px 6vw; }
  .statement-content p { font-size: 20px; }

  /* Testkacheln: Kriterien untereinander statt zweispaltig gequetscht */
  .test-grid { gap: 16px; }
  .test-panel { padding: 26px 22px; gap: 14px; }
  .test-panel ul { grid-template-columns: 1fr; gap: 12px; }
  .test-panel h3 { font-size: 20px; }
  .test-lab-inner { gap: 34px; }

  /* Karten */
  .video-grid, .route-grid, .story-grid { gap: 16px; }
  .route-card { padding: 24px 20px 26px; }
  .travel-feature-copy { gap: 14px; padding: 30px 22px 34px; }
  .videos-more { padding-top: 30px; }
  .videos-more .button, .travel-feature-copy .button { width: 100%; justify-content: center; }

  /* Laufschrift etwas kleiner */
  .strip-copy { font-size: 20px; gap: 22px; padding: 11px 0 11px 22px; }

  /* Footer-Credit darf umbrechen */
  .footer-made { flex-wrap: wrap; padding: 0 6vw 26px; font-size: 15px; letter-spacing: 0.1em; }
  .footer-bottom { justify-content: flex-start; gap: 10px 18px; }
  .footer-top img { width: 168px; }

  /* Rechtstexte */
  .legal-hero { padding: 60px 6vw 36px; }
  .legal-body { padding: 50px 6vw 80px; }
  .legal-body h2 { margin: 40px 0 14px; }
  .legal-card { padding: 24px 22px; }
}

/* Sehr kleine Geräte */
@media (max-width: 380px) {
  .hero h1 { font-size: 38px; }
  h2 { font-size: 34px; }
  .shorts-rail { grid-auto-columns: 70vw; }
  .logo-link img { height: 54px; }
  .site-header { min-height: 78px; }
  .mobile-menu { inset: 78px 0 0; }
  .mobile-menu a { font-size: 21px; padding: 13px 0; }
}
