/* ===================================================================
   Galaxy Jump — design tokens
   Palette derived from Bilder/Logo.png: night-navy/violet galaxy base,
   rainbow letter accents from the "GALAXY" wordmark, white/ivory fields.
   =================================================================== */
:root {
  /* base neutrals */
  --white: #ffffff;
  --ivory: #f6f6fb;
  --ink: #171a3a;
  --slate: #565b82;
  --slate-soft: #8285ac;
  --line: #e7e7f2;

  /* galaxy navy/violet (from logo backing + orbit swirl) */
  --navy-950: #0d0f28;
  --navy-900: #12153a;
  --navy-800: #1b2050;
  --navy-700: #262c68;
  --navy-glow-1: #4a4fb8;
  --navy-glow-2: #2c6f96;

  /* text set on navy (3-step scale, reused everywhere instead of one-off grays) */
  --on-dark-secondary: #cdd0f2;
  --on-dark-muted: #9296c4;
  --on-dark-faint: #7a7ea8;

  /* rainbow accents (sampled from the GALAXY wordmark) */
  --coral: #ef5f42;
  --coral-rgb: 239,95,66;
  --coral-dark: #d6472a;
  --coral-dark-rgb: 214,71,42;
  --coral-tint: #fdece6;
  --gold: #f7c246;
  --gold-dark: #d99f1f;
  --gold-tint: #fdf3dd;
  --green: #6cbb52;
  --green-dark: #4f9c3a;
  --green-tint: #eaf6e6;
  --teal: #4fc0d6;
  --teal-dark: #2f9cb2;
  --teal-tint: #e6f7fa;
  --blue: #5686d1;
  --blue-dark: #3d67b3;
  --blue-tint: #e9f0fb;
  --violet: #8c6fc0;
  --violet-dark: #6f52a6;
  --violet-tint: #f1ecfa;

  --radius-xs: 4px;
  --radius-s: 10px;
  --radius-m: 18px;
  --radius-l: 28px;
  --radius-pill: 999px;
  --shadow-sm: 0 6px 16px -6px rgba(23, 26, 58, .18);
  --shadow-md: 0 18px 40px -14px rgba(23, 26, 58, .28);
  --shadow-lg: 0 30px 70px -20px rgba(13, 15, 40, .45);
  --measure: 62ch;
}

/* ===================================================================
   Reset & base
   =================================================================== */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
h1, h2, h3, h4 {
  font-family: 'Fredoka', 'Inter', system-ui, sans-serif;
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.01em;
  text-wrap: balance;
}
p { max-width: var(--measure); }
::selection { background: var(--coral); color: var(--white); }
::-webkit-scrollbar { width: 12px; }
::-webkit-scrollbar-track { background: var(--ivory); }
::-webkit-scrollbar-thumb { background: var(--navy-700); border-radius: var(--radius-pill); border: 3px solid var(--ivory); }
:focus-visible { outline: 3px solid var(--teal); outline-offset: 3px; border-radius: var(--radius-xs); }

.wrap {
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 24px;
}

.icon {
  width: 1.15em;
  height: 1.15em;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}
.icon-star-fill, .icon-star { fill: currentColor; stroke: none; }

/* ===================================================================
   Buttons
   =================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Fredoka', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 15px 28px;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  transition: transform .28s cubic-bezier(.16,1,.3,1), box-shadow .28s cubic-bezier(.16,1,.3,1), background .3s ease, border-color .3s ease;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  backdrop-filter: blur(18px) saturate(170%);
  -webkit-backdrop-filter: blur(18px) saturate(170%);
}
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(135deg, rgba(255,255,255,.45) 0%, rgba(255,255,255,0) 45%);
  mix-blend-mode: overlay;
  pointer-events: none;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.6), inset 0 -1px 0 rgba(255,255,255,.08);
  pointer-events: none;
}
.btn .icon { width: 1.1em; height: 1.1em; }
.btn-cta {
  background: rgba(var(--coral-rgb), .88);
  border-color: rgba(255,255,255,.32);
  color: var(--white);
  box-shadow: var(--shadow-md);
}
.btn-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 45px -14px rgba(214, 71, 42, .55);
  background: rgba(var(--coral-dark-rgb), .92);
}
.btn-ghost-dark {
  border-color: rgba(255,255,255,.32);
  color: var(--white);
  background: rgba(255,255,255,.08);
}
.btn-ghost-dark:hover { border-color: rgba(255,255,255,.55); background: rgba(255,255,255,.18); transform: translateY(-3px); }
.btn-ghost-light {
  border-color: rgba(255,255,255,.42);
  color: var(--white);
  background: rgba(255,255,255,.05);
}
.btn-ghost-light:hover { background: rgba(255,255,255,.16); transform: translateY(-3px); }

/* ===================================================================
   Header
   =================================================================== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 14px 0;
  transition: background .35s ease, box-shadow .35s ease;
}
.site-header.is-scrolled, .site-header.static-light {
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(14px);
  box-shadow: 0 8px 30px -12px rgba(23,26,58,.18);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 28px;
}
.brand { display: block; }
.brand-logo {
  height: 78px;
  width: auto;
}
.main-nav {
  display: flex;
  gap: 30px;
  margin-left: auto;
  font-weight: 600;
  font-size: .97rem;
}
.main-nav a {
  color: var(--white);
  position: relative;
  padding: 6px 0;
  transition: color .2s ease;
}
.site-header.is-scrolled .main-nav a, .site-header.static-light .main-nav a { color: var(--ink); }
.main-nav a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 2px;
  background: var(--coral);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .25s ease;
}
.main-nav a:hover::after { transform: scaleX(1); }
.header-cta { padding: 12px 22px; font-size: .93rem; }
.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  cursor: pointer;
  padding: 6px;
}
.site-header.is-scrolled .nav-toggle, .site-header.static-light .nav-toggle { color: var(--ink); }
.nav-toggle .icon { width: 26px; height: 26px; }
.nav-toggle .icon-close { display: none; }
.nav-toggle[aria-expanded="true"] .icon-open { display: none; }
.nav-toggle[aria-expanded="true"] .icon-close { display: block; }

/* ===================================================================
   Hero
   =================================================================== */
.hero-fold {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
.hero {
  position: relative;
  background: var(--navy-900);
  padding: 140px 0 56px;
  overflow: hidden;
  isolation: isolate;
  flex: 1 0 auto;
  display: flex;
  align-items: center;
}
.hero-fold .trustbar { flex: 0 0 auto; }
.hero-sky {
  position: absolute;
  inset: 0;
  z-index: -3;
  background:
    radial-gradient(ellipse 700px 500px at 82% 8%, rgba(140,111,192,.35), transparent 60%),
    radial-gradient(ellipse 600px 480px at 8% 92%, rgba(79,192,214,.22), transparent 60%),
    radial-gradient(ellipse 900px 700px at 50% 100%, rgba(38,44,104,.6), transparent 70%),
    linear-gradient(180deg, var(--navy-950), var(--navy-900) 45%, var(--navy-800));
}
.hero-sky::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 42%, rgba(247,194,70,.12), transparent 60%);
  animation: hero-glow-pulse 7s ease-in-out infinite;
}
@keyframes hero-glow-pulse { 0%, 100% { opacity: .55; } 50% { opacity: 1; } }
.hero-canvas {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  display: block;
}
.hero-scribbles { position: absolute; inset: 0; z-index: -1; pointer-events: none; }
.scribble { position: absolute; width: 220px; opacity: .5; }
.scribble path { stroke: var(--teal); stroke-width: 2.5; }
.scribble-1 { top: 128px; left: 46%; width: 200px; }
.sparkle-deco { position: absolute; fill: currentColor; opacity: .8; }
.sparkle-a { top: 118px; left: 6%; width: 26px; color: var(--gold); animation: drift 7s ease-in-out infinite; }
.sparkle-b { top: 60%; left: 3%; width: 18px; color: var(--coral); animation: drift 9s ease-in-out infinite reverse; }
.sparkle-c { top: 40%; left: 44%; width: 14px; color: var(--teal); animation: drift 6s ease-in-out infinite; }
.hero-arrow { position: absolute; bottom: 46px; left: 6%; width: 110px; opacity: .55; display: none; }
.hero-arrow path:first-child { stroke: var(--white); fill: none; }
.hero-arrow path:last-child { fill: var(--white); }
@keyframes drift { 0%,100% { transform: translateY(0) rotate(0deg); } 50% { transform: translateY(-14px) rotate(12deg); } }

.hero-inner {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
}
.hero-title {
  color: var(--white);
  font-size: clamp(2.6rem, 5.2vw, 4.4rem);
  font-weight: 700;
  max-width: 15ch;
}
.rainbow-word { display: inline; }
.rw { color: var(--c); }
.hero-sub {
  color: var(--on-dark-secondary);
  font-size: 1.15rem;
  margin-top: 22px;
  max-width: 46ch;
}
.hero-actions {
  display: flex;
  gap: 16px;
  margin-top: 36px;
  flex-wrap: wrap;
}

.hero-visual { position: relative; }
.collage {
  position: relative;
  height: 520px;
}
.collage-tile {
  position: absolute;
  border-radius: var(--radius-m);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 6px solid var(--navy-900);
}
.collage-tile img { width: 100%; height: 100%; object-fit: cover; }
.tile-main {
  width: 68%;
  height: 400px;
  top: 10px;
  right: 0;
  transform: rotate(3deg);
  z-index: 2;
}
.tile-second {
  width: 52%;
  height: 230px;
  bottom: 0;
  left: 0;
  transform: rotate(-6deg);
  z-index: 3;
}
.tile-third {
  width: 40%;
  height: 190px;
  top: -20px;
  left: 4%;
  transform: rotate(-10deg);
  z-index: 1;
  display: block;
}
.stat-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,.6);
  color: var(--ink);
  border: 1px solid rgba(255,255,255,.65);
  border-radius: var(--radius-pill);
  padding: 10px 18px 10px 12px;
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  overflow: hidden;
  isolation: isolate;
  z-index: 4;
  animation: float 5s ease-in-out infinite;
}
.stat-badge::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(140deg, rgba(255,255,255,.6) 0%, rgba(255,255,255,0) 55%);
  pointer-events: none;
}
.stat-badge::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.7), inset 0 -1px 0 rgba(255,255,255,.1);
  pointer-events: none;
}
.stat-badge .icon { width: 20px; height: 20px; }
.stat-badge strong { display: block; font-family: 'Fredoka', sans-serif; font-size: 1.05rem; line-height: 1.1; }
.stat-badge span { display: block; font-size: .72rem; color: var(--slate); font-weight: 600; }
.badge-a { top: -6px; right: 22%; color: var(--coral); animation-delay: 0s; }
.badge-b { bottom: 34px; right: -18px; color: var(--teal-dark); animation-delay: .6s; }
.badge-c { bottom: -14px; left: 30%; color: var(--green-dark); animation-delay: 1.2s; }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

/* ===================================================================
   Trust bar
   =================================================================== */
.trustbar {
  background: var(--ivory);
  border-bottom: 1px solid var(--line);
}
.trustbar-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 28px 40px;
  justify-content: center;
  padding: 26px 24px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: .95rem;
  color: var(--ink);
}
.trust-item .icon { color: var(--coral-dark); width: 20px; height: 20px; }
.trust-item:nth-child(2) .icon { color: var(--teal-dark); }
.trust-item:nth-child(3) .icon { color: var(--blue-dark); }
.trust-item:nth-child(4) .icon { color: var(--green-dark); }

/* ===================================================================
   Attraction sections
   =================================================================== */
.attraction { padding: 120px 0; background: var(--white); }
.attraction-alt { background: var(--ivory); }
.attraction-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.attraction-media { position: relative; }
.attraction-number {
  position: absolute;
  top: -108px;
  left: -30px;
  font-family: 'Fredoka', sans-serif;
  font-size: 8rem;
  font-weight: 700;
  color: transparent;
  -webkit-text-stroke: 3px rgba(23,26,58,.18);
  z-index: 0;
  line-height: 1;
  user-select: none;
}
.attraction-number-alt { left: auto; right: -22px; }
.media-frame {
  position: relative;
  z-index: 1;
  border-radius: var(--radius-l);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: transform .4s cubic-bezier(.16,1,.3,1), box-shadow .4s cubic-bezier(.16,1,.3,1);
}
.media-frame img {
  aspect-ratio: 4/5;
  object-fit: cover;
  transition: transform .5s cubic-bezier(.16,1,.3,1);
}
.media-frame-a { transform: rotate(-2deg); }
.media-frame-b { transform: rotate(2deg); }
.media-frame-a:hover, .media-frame-b:hover {
  transform: rotate(0deg) translateY(-8px);
  box-shadow: 0 36px 80px -20px rgba(13,15,40,.5);
}
.media-frame:hover img { transform: scale(1.08); }

.tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .82rem;
  font-weight: 700;
  padding: 7px 16px;
  border-radius: var(--radius-pill);
  margin-bottom: 20px;
}
.tag .icon { width: 16px; height: 16px; }
.tag-coral { background: var(--coral-tint); color: var(--coral-dark); }
.tag-teal { background: var(--teal-tint); color: var(--teal-dark); }

.attraction-copy h2 { font-size: clamp(1.8rem, 3vw, 2.5rem); margin-bottom: 18px; }
.attraction-copy > p { color: var(--slate); font-size: 1.08rem; margin-bottom: 30px; }
.highlight-list { display: flex; flex-direction: column; gap: 13px; margin-bottom: 34px; }
.highlight-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-weight: 600;
  font-size: .98rem;
}
.highlight-list .icon {
  color: var(--white);
  background: var(--green);
  border-radius: 50%;
  padding: 3px;
  width: 20px;
  height: 20px;
  margin-top: 1px;
}

.fact-strip {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  background: var(--navy-900);
  border-radius: var(--radius-m);
  padding: 22px 26px;
}
.fact { display: flex; align-items: center; gap: 12px; flex: 1 1 150px; }
.fact .icon { color: var(--gold); width: 26px; height: 26px; flex-shrink: 0; }
.fact strong { display: block; color: var(--white); font-family: 'Fredoka', sans-serif; font-size: 1rem; }
.fact span { display: block; color: var(--on-dark-muted); font-size: .78rem; }

/* ===================================================================
   Section head (shared)
   =================================================================== */
.section-head { text-align: center; max-width: 620px; margin: 0 auto 56px; }
.section-head h2 { font-size: clamp(1.9rem, 3.4vw, 2.7rem); margin-bottom: 14px; }
.section-head p { color: var(--slate); margin: 0 auto; font-size: 1.05rem; }

/* ===================================================================
   Veranstalter grid
   =================================================================== */
.veranstalter {
  padding: 120px 0;
  background:
    radial-gradient(ellipse 900px 600px at 12% 0%, var(--coral-tint), transparent 60%),
    radial-gradient(ellipse 900px 600px at 88% 100%, var(--blue-tint), transparent 60%),
    var(--white);
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.feature-card {
  background: rgba(255,255,255,.55);
  border: 1px solid rgba(255,255,255,.65);
  border-radius: var(--radius-m);
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  backdrop-filter: blur(22px) saturate(180%);
  -webkit-backdrop-filter: blur(22px) saturate(180%);
  box-shadow: var(--shadow-sm);
  transition: transform .3s cubic-bezier(.16,1,.3,1), box-shadow .3s cubic-bezier(.16,1,.3,1), background .3s ease;
}
.feature-card::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(150deg, rgba(255,255,255,.55) 0%, rgba(255,255,255,0) 55%);
  pointer-events: none;
}
.feature-card::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.7), inset 0 -1px 0 rgba(255,255,255,.15);
  pointer-events: none;
}
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); background: rgba(255,255,255,.75); }
.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: var(--radius-s);
  margin-bottom: 18px;
}
.feature-icon .icon { width: 26px; height: 26px; }
.fi-coral { background: var(--coral-tint); color: var(--coral-dark); }
.fi-teal { background: var(--teal-tint); color: var(--teal-dark); }
.fi-green { background: var(--green-tint); color: var(--green-dark); }
.fi-gold { background: var(--gold-tint); color: var(--gold-dark); }
.fi-blue { background: var(--blue-tint); color: var(--blue-dark); }
.fi-violet { background: var(--violet-tint); color: var(--violet-dark); }
.feature-card h3 { font-size: 1.15rem; margin-bottom: 10px; }
.feature-card p { color: var(--slate); font-size: .95rem; margin: 0; }

/* ===================================================================
   Testimonials
   =================================================================== */
.testimonials { padding: 120px 0; background: var(--ivory); }
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-m);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
}
.stars { display: flex; gap: 4px; color: var(--gold); margin-bottom: 18px; }
.stars .icon { width: 18px; height: 18px; }
.testimonial-card p {
  font-size: 1rem;
  color: var(--ink);
  margin-bottom: 26px;
  max-width: none;
}
.testimonial-person { display: flex; align-items: center; gap: 14px; }
.avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--av);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Fredoka', sans-serif;
  font-weight: 600;
  font-size: .85rem;
  line-height: 1;
  text-align: center;
  flex-shrink: 0;
}
.testimonial-person strong { display: block; font-size: .93rem; }
.testimonial-person span { display: block; font-size: .82rem; color: var(--slate); }

/* ===================================================================
   FAQ
   =================================================================== */
.faq { padding: 120px 0; background: var(--white); }
.faq-wrap { max-width: 780px; }
.accordion-item { border-bottom: 1px solid var(--line); }
.accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: none;
  border: none;
  text-align: left;
  padding: 26px 4px;
  font-family: 'Fredoka', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
}
.accordion-trigger .icon { color: var(--coral); transition: transform .3s ease; flex-shrink: 0; }
.accordion-trigger[aria-expanded="true"] .icon { transform: rotate(180deg); }
.accordion-panel {
  display: grid;
  grid-template-rows: minmax(0, 0fr);
  overflow: hidden;
  transition: grid-template-rows .35s cubic-bezier(.16,1,.3,1);
}
.accordion-panel > p { min-height: 0; overflow: hidden; padding: 0 4px 26px; color: var(--slate); }
.accordion-item.is-open .accordion-panel { grid-template-rows: minmax(0, 1fr); }

/* ===================================================================
   Final CTA
   =================================================================== */
.cta-final {
  position: relative;
  background: var(--navy-900);
  padding: 110px 0;
  overflow: hidden;
  text-align: center;
  isolation: isolate;
}
.cta-sky {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse 700px 500px at 15% 15%, rgba(239,95,66,.22), transparent 60%),
    radial-gradient(ellipse 700px 550px at 90% 90%, rgba(79,192,214,.2), transparent 60%),
    linear-gradient(180deg, var(--navy-950), var(--navy-800));
}
.cta-sky::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(1.5px 1.5px at 12% 25%, #fff, transparent),
    radial-gradient(1.2px 1.2px at 22% 70%, #fff, transparent),
    radial-gradient(1.7px 1.7px at 33% 40%, #fff, transparent),
    radial-gradient(1.1px 1.1px at 44% 15%, #fff, transparent),
    radial-gradient(1.3px 1.3px at 62% 60%, #fff, transparent),
    radial-gradient(1.6px 1.6px at 71% 30%, #fff, transparent),
    radial-gradient(1.2px 1.2px at 82% 78%, #fff, transparent),
    radial-gradient(1.4px 1.4px at 92% 45%, #fff, transparent);
  opacity: .5;
}
.cta-inner { position: relative; max-width: 640px; margin: 0 auto; }
.cta-final h2 { color: var(--white); font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 16px; }
.cta-final p { color: var(--on-dark-secondary); margin: 0 auto 36px; font-size: 1.1rem; }
.cta-contacts { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; }
.cta-inner .cta-note { margin-top: 44px; color: var(--on-dark-muted); font-size: .88rem; }

/* ===================================================================
   Footer
   =================================================================== */
.site-footer { background: var(--navy-950); color: var(--on-dark-secondary); padding: 80px 0 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-logo { height: 52px; width: auto; margin-bottom: 16px; }
.footer-brand p { font-size: .92rem; color: var(--on-dark-muted); max-width: 32ch; }
.footer-col { display: flex; flex-direction: column; gap: 14px; }
.footer-col h4 {
  font-family: 'Inter', sans-serif;
  color: var(--white);
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 4px;
}
.footer-col a, .footer-col span { font-size: .93rem; color: var(--on-dark-secondary); }
.footer-col a:hover { color: var(--white); }
.footer-muted { color: var(--on-dark-faint) !important; font-size: .86rem !important; }
.footer-bottom {
  display: flex;
  justify-content: center;
  padding: 24px 0 32px;
  font-size: .82rem;
  color: var(--on-dark-faint);
}

/* ===================================================================
   Legal pages (Impressum / Datenschutz)
   =================================================================== */
.legal-page { padding: 140px 0 110px; background: var(--white); }
.legal-page .wrap { max-width: 760px; }
.legal-page h1 { font-size: clamp(2rem, 4vw, 2.6rem); margin-bottom: 10px; }
.legal-updated { color: var(--slate); font-size: .9rem; margin-bottom: 48px; }
.legal-page h2 { font-size: 1.25rem; margin: 42px 0 14px; }
.legal-page section:first-of-type h2 { margin-top: 0; }
.legal-page p, .legal-page li { color: var(--ink); font-size: 1rem; line-height: 1.7; margin-bottom: 14px; }
.legal-page ul { padding-left: 22px; list-style: disc; margin-bottom: 14px; }
.legal-page a.legal-link { color: var(--coral-dark); text-decoration: underline; text-underline-offset: 2px; }

/* ===================================================================
   Scroll reveal
   =================================================================== */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s cubic-bezier(.16,1,.3,1), transform .7s cubic-bezier(.16,1,.3,1); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .stat-badge, .sparkle-deco, .hero-sky::after { animation: none; }
  html { scroll-behavior: auto; }
}

/* ===================================================================
   Responsive
   =================================================================== */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { order: -1; }
  .collage { height: 420px; max-width: 480px; margin: 0 auto; }
  .attraction-grid { grid-template-columns: 1fr; gap: 50px; }
  .attraction-media { order: -1; max-width: 460px; margin: 0 auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  .feature-grid, .testimonial-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .main-nav { display: none; }
  .header-cta { display: none; }
  .nav-toggle { display: block; }
  .site-header .header-inner { position: relative; }
  .main-nav.is-open {
    display: flex;
    position: absolute;
    top: calc(100% + 12px);
    left: 24px;
    right: 24px;
    flex-direction: column;
    background: var(--white);
    border-radius: var(--radius-m);
    box-shadow: var(--shadow-lg);
    padding: 18px 22px;
    gap: 4px;
  }
  .main-nav.is-open a { color: var(--ink); padding: 12px 0; border-bottom: 1px solid var(--line); }
  .main-nav.is-open a:last-child { border-bottom: none; }
  .main-nav.is-open::after { display: none; }

  .hero { padding: 120px 0 48px; }
  .hero-title { max-width: none; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { justify-content: center; }
  .collage { height: 360px; }
  .tile-main { width: 72%; height: 300px; }
  .tile-second { width: 58%; height: 190px; }
  .tile-third { display: none; }
  .badge-a { top: -10px; right: 8%; }
  .badge-b { bottom: 20px; right: -10px; }
  .badge-c { display: none; }

  .trustbar-inner { justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap; padding: 22px 24px; }
  .trust-item { flex-shrink: 0; }

  .attraction { padding: 80px 0; }
  .attraction-number { font-size: 5.5rem; top: -62px; left: -14px; }
  .attraction-number-alt { right: -10px; }
  .veranstalter, .testimonials, .faq { padding: 80px 0; }
  .feature-grid, .testimonial-grid { grid-template-columns: 1fr; }
  .cta-final { padding: 80px 0; }
  .cta-contacts { flex-direction: column; align-items: stretch; }
  .cta-contacts .btn { justify-content: center; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; padding-bottom: 40px; }
  .site-footer { padding-top: 60px; }
}
