/* ===================================================
   LUMAX PARK – Stylesheet
   Natur. Komfort. Abenteuer.
   =================================================== */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Space+Grotesk:wght@500;600;700&display=swap');

/* ─────────────────────────────────────────────────
   CSS CUSTOM PROPERTIES
───────────────────────────────────────────────── */
:root {
  --green-deep:   #0F2318;
  --green-dark:   #1A3A2A;
  --green-mid:    #2D6A4F;
  --green-light:  #40916C;
  --gold:         #C8A84B;
  --gold-light:   #E2C56A;
  --cream:        #F5F2EC;
  --cream-dark:   #EAE5DB;
  --white:        #FFFFFF;
  --text-dark:    #1C1C1C;
  --text-muted:   #6B7B6E;
  --overlay:      rgba(10, 25, 16, 0.72);
  --glass:        rgba(255,255,255,0.07);
  --glass-border: rgba(255,255,255,0.12);
  --radius-sm:    8px;
  --radius-md:    16px;
  --radius-lg:    24px;
  --radius-xl:    40px;
  --shadow:       0 8px 40px rgba(0,0,0,0.22);
  --shadow-card:  0 4px 24px rgba(0,0,0,0.14);
  --transition:   0.35s cubic-bezier(0.4,0,0.2,1);
  --font-head:    'Space Grotesk', sans-serif;
  --font-body:    'Plus Jakarta Sans', sans-serif;
  --max-width:    1280px;
  --section-pad:  100px 0;
}

/* ─────────────────────────────────────────────────
   RESET & BASE
───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--text-dark);
  overflow-x: hidden;
  line-height: 1.65;
}

img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ─────────────────────────────────────────────────
   TYPOGRAPHY
───────────────────────────────────────────────── */
h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0;
}

h1 { font-size: clamp(2.4rem, 5.5vw, 4.5rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 3rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); }
h4 { font-size: 1.1rem; font-weight: 700; }

p { font-size: 1.08rem; line-height: 1.75; color: var(--text-muted); }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.section-label::before {
  content: '';
  width: 28px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}

.section-title {
  color: var(--white);
  margin-bottom: 16px;
}
.section-title.dark { color: var(--green-deep); }

.section-sub {
  font-size: 1.16rem;
  max-width: 560px;
  margin-bottom: 40px;
}

/* ─────────────────────────────────────────────────
   BUTTONS
───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-xl);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.06rem;
  transition: var(--transition);
  cursor: pointer;
}

.btn-primary {
  background: var(--gold);
  color: var(--green-deep);
  box-shadow: 0 4px 24px rgba(200,168,75,0.35);
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(200,168,75,0.5);
}

.btn-ghost {
  background: var(--glass);
  color: var(--white);
  border: 1.5px solid var(--glass-border);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.3);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--green-deep);
  border: 2px solid var(--green-mid);
}
.btn-outline:hover {
  background: var(--green-mid);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-dark {
  background: var(--green-dark);
  color: var(--white);
}
.btn-dark:hover {
  background: var(--green-mid);
  transform: translateY(-2px);
}

/* ─────────────────────────────────────────────────
   CONTAINER
───────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px;
}

/* ─────────────────────────────────────────────────
   COOKIE BANNER
───────────────────────────────────────────────── */
#cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9999;
  background: var(--green-deep);
  color: var(--white);
  padding: 16px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  border-top: 2px solid var(--gold);
  font-size: 0.98rem;
}
#cookie-banner a { color: var(--gold); text-decoration: underline; }
.cookie-btns { display: flex; gap: 12px; flex-shrink: 0; }
.cookie-btns button {
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 0.94rem;
  font-weight: 600;
}
.cookie-btns .btn-cookie-accept { background: var(--gold); color: var(--green-deep); }
.cookie-btns .btn-cookie-decline { background: transparent; color: var(--white); border: 1px solid rgba(255,255,255,0.3); }

/* ─────────────────────────────────────────────────
   NAVIGATION
───────────────────────────────────────────────── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 6px 0;
  transition: var(--transition);
}
#navbar.scrolled {
  background: rgba(10, 25, 16, 0.96);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 4px 0;
  box-shadow: 0 4px 32px rgba(0,0,0,0.3);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  height: 168px;
  width: auto;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.4));
  transition: var(--transition);
}
.nav-logo:hover { transform: scale(1.04); }

/* Modern Zoom-Badge (glassmorphism pill) */
.zoom-badge {
  position: absolute;
  bottom: 14px;
  right: 14px;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(18px) saturate(200%);
  -webkit-backdrop-filter: blur(18px) saturate(200%);
  border: 1px solid rgba(200,168,75,0.55);
  border-radius: 40px;
  padding: 8px 18px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 0.06em;
  pointer-events: none;
  box-shadow: 0 4px 24px rgba(0,0,0,0.28), inset 0 1px 0 rgba(255,255,255,0.1);
  transition: transform 0.2s ease;
}
.galerie-item:hover .zoom-badge,
.about-img-main-wrap:hover .zoom-badge {
  transform: scale(1.06);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1rem;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.02em;
  transition: var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: var(--transition);
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }

.nav-cta { margin-left: 16px; }

.hamburger {
  display: none;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border: 1px solid rgba(255,255,255,0.28);
  border-radius: var(--radius-sm);
  color: var(--white);
  font-family: var(--font-head);
  font-size: 0.98rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(10,25,16,0.98);
  backdrop-filter: blur(20px);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
  transition: var(--transition);
}
.mobile-menu a:hover { color: var(--gold); }

/* ─────────────────────────────────────────────────
   HERO SECTION
───────────────────────────────────────────────── */
#hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 700px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

#hero .container {
  height: 100%;
  max-width: none;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-left: 40px;
  padding-right: 24px;
}


#hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: transparent;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(200,168,75,0.18);
  border: 1px solid rgba(200,168,75,0.4);
  backdrop-filter: blur(8px);
  border-radius: 40px;
  padding: 8px 20px;
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--gold-light);
  margin-bottom: 24px;
  animation: fadeSlideDown 0.8s ease both;
}

.hero-title {
  color: var(--white);
  margin-bottom: 20px;
  animation: fadeSlideUp 0.9s ease 0.1s both;
  text-shadow: 0 2px 20px rgba(0,0,0,0.4);
}

.hero-title span { color: var(--gold); }

.hero-sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.82);
  margin-bottom: 36px;
  max-width: 560px;
  animation: fadeSlideUp 0.9s ease 0.2s both;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeSlideUp 0.9s ease 0.3s both;
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.6);
  font-size: 1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: bounce 2s ease infinite;
}
.hero-scroll svg { width: 20px; height: 20px; }

/* Visible icon elements are intentionally suppressed for a quieter, cleaner layout. */
.stat-icon,
.zg-icon,
.pillar-icon,
.download-icon,
.leistung-icon,
.choice-icon,
.success-icon,
.faq-hl-icon,
.fc-icon,
.world-stat-val {
  display: none !important;
}

.footer-stars span {
  display: none;
}

.leistung-feature {
  gap: 0;
}

.leistung-feature::before {
  content: none !important;
}

body img[data-lightbox-image] {
  cursor: zoom-in;
}

/* ─────────────────────────────────────────────────
   STATS BANNER
───────────────────────────────────────────────── */
#stats {
  background: var(--green-dark);
  padding: 0;
  position: relative;
  z-index: 10;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.stat-item {
  padding: 48px 36px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  border-right: 1px solid rgba(255,255,255,0.08);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.stat-item:last-child { border-right: none; }
.stat-item::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 3px;
  background: var(--gold);
  transition: var(--transition);
}
.stat-item:hover::after { width: 100%; }
.stat-item:hover { background: rgba(255,255,255,0.04); }

.stat-number {
  font-family: var(--font-head);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  letter-spacing: 0;
}
.stat-label {
  font-size: 1rem;
  color: rgba(255,255,255,0.65);
  font-weight: 500;
  line-height: 1.4;
}
.stat-icon {
  font-size: 1.6rem;
  margin-bottom: 4px;
}

/* ─────────────────────────────────────────────────
   ZIELGRUPPEN
───────────────────────────────────────────────── */
#zielgruppen {
  background: var(--green-deep);
  padding: 32px 0;
  overflow: hidden;
}

.zg-label {
  text-align: center;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.zg-track {
  display: flex;
  gap: 24px;
  animation: scrollLeft 22s linear infinite;
  width: max-content;
}

.zg-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 40px;
  padding: 10px 24px;
  white-space: nowrap;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1rem;
  color: rgba(255,255,255,0.8);
  transition: var(--transition);
}
.zg-chip .zg-icon { font-size: 1.1rem; }

/* ─────────────────────────────────────────────────
   ABOUT / POSITIONIERUNG
───────────────────────────────────────────────── */
#about {
  padding: var(--section-pad);
  background: var(--cream);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-image-stack {
  position: relative;
  height: 520px;
}
.about-img-main {
  width: 75%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  position: absolute;
  top: 0; left: 0;
  box-shadow: var(--shadow);
}
.about-img-float {
  width: 55%;
  height: 260px;
  object-fit: cover;
  border-radius: var(--radius-md);
  position: absolute;
  bottom: 0; right: 0;
  box-shadow: var(--shadow);
  border: 4px solid var(--cream);
}
.about-badge-float {
  position: absolute;
  top: 320px; left: 55%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--green-deep);
  border-radius: var(--radius-md);
  padding: 12px 20px;
  text-align: center;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1rem;
  box-shadow: 0 8px 24px rgba(200,168,75,0.35);
  white-space: nowrap;
  z-index: 2;
}
.about-badge-float span { display: block; font-size: 1.4rem; font-weight: 900; }

.about-text .section-label { color: var(--green-mid); }
.about-text .section-label::before { background: var(--green-mid); }
.about-text .section-title { color: var(--green-deep); }
.about-text p { margin-bottom: 20px; }

.about-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 32px;
}
.pillar-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 20px 16px;
  text-align: center;
  box-shadow: var(--shadow-card);
  border-top: 3px solid var(--green-mid);
  transition: var(--transition);
}
.pillar-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.pillar-icon { font-size: 1.8rem; margin-bottom: 8px; }
.pillar-title { font-family: var(--font-head); font-size: 1.05rem; font-weight: 700; color: var(--green-deep); margin-bottom: 6px; }
.pillar-text { font-size: 0.96rem; color: var(--text-muted); line-height: 1.6; }

/* ─────────────────────────────────────────────────
   ÜBERNACHTUNGSWELTEN
───────────────────────────────────────────────── */
#uebernachten {
  padding: var(--section-pad);
  background: var(--green-deep);
}

.worlds-header {
  text-align: center;
  margin-bottom: 64px;
}
.worlds-header .section-sub { color: rgba(255,255,255,0.6); margin: 0 auto; }

.worlds-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.worlds-feature-image {
  width: min(1120px, 100%);
  margin: 0 auto 34px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0,0,0,0.34);
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.04);
}

.worlds-feature-image img {
  width: 100%;
  height: clamp(300px, 42vw, 560px);
  object-fit: cover;
  object-position: center;
}

.world-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  position: relative;
}
.world-card:hover {
  transform: translateY(-6px);
  border-color: rgba(200,168,75,0.35);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.world-card-img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: var(--transition);
}
.world-card:hover .world-card-img { transform: scale(1.04); }
.world-card-img-wrap { overflow: hidden; position: relative; }

.world-badge {
  position: absolute;
  top: 16px; left: 16px;
  background: var(--gold);
  color: var(--green-deep);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 0.86rem;
  padding: 4px 12px;
  border-radius: 20px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.world-card-body { padding: 28px; }
.world-card-name {
  font-size: 1rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.world-card-title {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.2;
}
.world-card-desc {
  font-size: 1rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 20px;
  line-height: 1.65;
}

.world-stats {
  display: flex;
  gap: 20px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.world-stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.world-stat-val {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}
.world-stat-lbl {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
}

.world-quote {
  font-size: 0.98rem;
  font-style: italic;
  color: rgba(255,255,255,0.55);
  border-left: 3px solid var(--gold);
  padding-left: 14px;
  margin-bottom: 24px;
  line-height: 1.6;
}

.world-link {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.98rem;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}
.world-link:hover { gap: 12px; }

/* ─────────────────────────────────────────────────
   DOWNLOAD CTA BANNER
───────────────────────────────────────────────── */
#download-cta {
  background: linear-gradient(135deg, var(--green-mid) 0%, var(--green-dark) 100%);
  padding: 64px 0;
}
.download-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.download-icon {
  font-size: 3rem;
  flex-shrink: 0;
  background: rgba(255,255,255,0.12);
  width: 72px; height: 72px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
}
.download-text h3 {
  color: var(--white);
  font-size: 1.3rem;
  margin-bottom: 6px;
}
.download-text p {
  color: rgba(255,255,255,0.7);
  font-size: 1rem;
  max-width: 500px;
}

/* ─────────────────────────────────────────────────
   LEISTUNGEN / ANGEBOTE
───────────────────────────────────────────────── */
#leistungen {
  padding: var(--section-pad);
  background: var(--cream);
}
.leistungen-header {
  margin-bottom: 64px;
}
.leistungen-header .section-title { color: var(--green-deep); }
.leistungen-header .section-label::before { background: var(--green-mid); }
.leistungen-header .section-label { color: var(--green-mid); }
.leistungen-header .section-sub { color: var(--text-muted); }

.leistungen-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.leistung-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
  border-bottom: 3px solid transparent;
  position: relative;
  overflow: hidden;
}
.leistung-card::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 80px; height: 80px;
  background: radial-gradient(circle, rgba(45,106,79,0.08) 0%, transparent 70%);
  border-radius: 50%;
}
.leistung-card:hover {
  transform: translateY(-6px);
  border-bottom-color: var(--green-mid);
  box-shadow: var(--shadow);
}
.leistung-card.featured {
  background: var(--green-dark);
  color: var(--white);
  border-bottom-color: var(--gold);
}
.leistung-card.featured .leistung-title { color: var(--white); }
.leistung-card.featured .leistung-desc { color: rgba(255,255,255,0.65); }
.leistung-card.featured .leistung-feature { color: rgba(255,255,255,0.7); }
.leistung-card.featured .leistung-feature::before { color: var(--gold); }

.leistung-card > .galerie-item {
  width: 100%;
  height: 220px !important;
  aspect-ratio: auto;
  border-radius: 0 !important;
  min-height: 0 !important;
  position: relative;
}

.leistung-card > .galerie-item img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
}

.leistung-card > .galerie-item .galerie-overlay {
  display: none;
}

.leistung-icon {
  font-size: 2.4rem;
  margin-bottom: 20px;
  display: block;
}
.leistung-tag {
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green-mid);
  margin-bottom: 8px;
}
.leistung-card.featured .leistung-tag { color: var(--gold); }
.leistung-title {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--green-deep);
  margin-bottom: 12px;
}
.leistung-desc {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.65;
}
.leistung-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.leistung-feature {
  font-size: 0.96rem;
  color: var(--text-muted);
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.leistung-feature::before {
  content: '✓';
  color: var(--green-mid);
  font-weight: 700;
  flex-shrink: 0;
}

/* ─────────────────────────────────────────────────
   GALERIE
───────────────────────────────────────────────── */
/* Spielepark panorama */
#spielepark-panorama,
#rezeption-panorama {
  width: 100%;
  background: var(--green-deep);
  overflow: hidden;
}

#spielepark-panorama img,
#rezeption-panorama img {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
}

#galerie {
  padding: var(--section-pad);
  background: var(--green-deep);
}
.galerie-header {
  text-align: center;
  margin-bottom: 56px;
}
.galerie-header .section-sub { color: rgba(255,255,255,0.55); margin: 0 auto 40px; }

.galerie-stats {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.galerie-stat {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 40px;
  padding: 8px 20px;
  font-family: var(--font-head);
  font-size: 0.98rem;
  color: rgba(255,255,255,0.75);
}
.galerie-stat strong { color: var(--gold); }

.galerie-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-flow: dense;
  gap: 16px;
  align-items: start;
}
#galerie .galerie-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  background: rgba(255,255,255,0.03);
  aspect-ratio: 1 / 1;
}
#galerie .galerie-item:nth-child(1) { order: 1; grid-column: auto; grid-row: auto; }
#galerie .galerie-item:nth-child(6) { order: 2; }
#galerie .galerie-item:nth-child(10) { order: 3; }
#galerie .galerie-item:nth-child(2) { order: 4; }
#galerie .galerie-item:nth-child(12) { order: 5; }
#galerie .galerie-item:nth-child(7) { order: 6; }
#galerie .galerie-item:nth-child(3) { order: 7; }
#galerie .galerie-item:nth-child(11) { order: 8; }
#galerie .galerie-item:nth-child(9) { order: 9; }
#galerie .galerie-item:nth-child(8) { order: 10; }
#galerie .galerie-item:nth-child(4) { order: 11; }
#galerie .galerie-item:nth-child(5) { order: 12; }
#galerie .galerie-item:nth-child(13) { order: 13; }

#galerie .galerie-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}
#galerie .galerie-item:hover img { transform: scale(1.06); }

.galerie-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,25,16,0.85) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  opacity: 0;
  transition: var(--transition);
}
.galerie-item:hover .galerie-overlay { opacity: 1; }
.galerie-tag {
  font-size: 0.86rem;
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.galerie-name {
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--white);
  font-size: 1.08rem;
}

.galerie-cta {
  text-align: center;
  margin-top: 48px;
}

/* ─────────────────────────────────────────────────
   ABLAUF / PROZESS
───────────────────────────────────────────────── */
#ablauf {
  padding: var(--section-pad);
  background: var(--cream);
}
.ablauf-header { margin-bottom: 64px; }
.ablauf-header .section-title { color: var(--green-deep); }
.ablauf-header .section-label { color: var(--green-mid); }
.ablauf-header .section-label::before { background: var(--green-mid); }
.ablauf-header .section-sub { color: var(--text-muted); }

.ablauf-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
}
.ablauf-steps::before {
  content: '';
  position: absolute;
  top: 56px;
  left: calc(16.66% + 28px);
  right: calc(16.66% + 28px);
  height: 2px;
  background: linear-gradient(90deg, var(--green-mid), var(--gold));
  z-index: 0;
}

.ablauf-step {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  box-shadow: var(--shadow-card);
  position: relative;
  z-index: 1;
  transition: var(--transition);
}
.ablauf-step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.step-num {
  width: 56px; height: 56px;
  background: var(--green-dark);
  color: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 1.2rem;
  margin-bottom: 16px;
}
.step-phase {
  font-size: 0.88rem;
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.step-title {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--green-deep);
  margin-bottom: 12px;
}
.step-desc {
  font-size: 0.98rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 20px;
}
.step-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.step-tag {
  background: var(--cream);
  border: 1px solid var(--cream-dark);
  border-radius: 20px;
  padding: 4px 12px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--green-mid);
}

/* ─────────────────────────────────────────────────
   BUCHUNGSFORMULAR
───────────────────────────────────────────────── */
#buchung {
  padding: var(--section-pad);
  background: var(--green-dark);
  position: relative;
  overflow: hidden;
}
#buchung::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(200,168,75,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.buchung-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.buchung-left .section-title { color: var(--white); }
.buchung-left .section-label { color: var(--gold); }
.buchung-left .section-label::before { background: var(--gold); }
.buchung-left p { color: rgba(255,255,255,0.65); margin-bottom: 32px; }

.buchung-form {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 40px;
  backdrop-filter: blur(8px);
}

.form-progress {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 36px;
}
.progress-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  flex: 1;
  position: relative;
}
.progress-step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 14px;
  left: 50%;
  width: 100%;
  height: 2px;
  background: rgba(255,255,255,0.15);
  z-index: 0;
}
.progress-step.active:not(:last-child)::after,
.progress-step.done:not(:last-child)::after {
  background: var(--gold);
}
.progress-dot {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 2px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.86rem;
  font-weight: 700;
  color: rgba(255,255,255,0.4);
  z-index: 1;
  transition: var(--transition);
}
.progress-step.active .progress-dot {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--green-deep);
}
.progress-step.done .progress-dot {
  background: var(--green-mid);
  border-color: var(--green-mid);
  color: var(--white);
}
.progress-lbl {
  font-size: 0.84rem;
  color: rgba(255,255,255,0.4);
  font-weight: 600;
  text-align: center;
  white-space: nowrap;
}
.progress-step.active .progress-lbl { color: var(--gold); }

.form-percent {
  font-family: var(--font-head);
  font-size: 0.94rem;
  color: rgba(255,255,255,0.4);
  margin-bottom: 24px;
  text-align: right;
}

.form-step { display: none; }
.form-step.active { display: block; }

.form-question {
  font-family: var(--font-head);
  font-size: 1.12rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
}

.choice-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 28px;
}
.choice-btn {
  background: rgba(255,255,255,0.05);
  border: 1.5px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-md);
  padding: 16px 14px;
  text-align: left;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1rem;
  color: rgba(255,255,255,0.75);
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 10px;
}
.choice-btn:hover, .choice-btn.selected {
  background: rgba(200,168,75,0.15);
  border-color: var(--gold);
  color: var(--white);
}
.choice-btn .choice-icon { font-size: 1.3rem; }

.form-input {
  width: 100%;
  background: rgba(255,255,255,0.06);
  border: 1.5px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 1.02rem;
  transition: var(--transition);
  margin-bottom: 14px;
}
.form-input:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(200,168,75,0.08);
}
.form-input::placeholder { color: rgba(255,255,255,0.35); }
.form-input[type="date"] { color-scheme: dark; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-actions {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}
.btn-back {
  padding: 12px 20px;
  border-radius: var(--radius-xl);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.6);
  border: 1px solid rgba(255,255,255,0.1);
  transition: var(--transition);
}
.btn-back:hover { background: rgba(255,255,255,0.12); color: var(--white); }
.btn-next {
  flex: 1;
  padding: 14px 28px;
  border-radius: var(--radius-xl);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.08rem;
  background: var(--gold);
  color: var(--green-deep);
  transition: var(--transition);
}
.btn-next:hover { background: var(--gold-light); transform: translateY(-2px); }

.form-success {
  text-align: center;
  padding: 40px 20px;
  display: none;
}
.form-success.visible { display: block; }
.success-icon { font-size: 4rem; margin-bottom: 16px; }
.form-success h3 { color: var(--white); font-size: 1.4rem; margin-bottom: 12px; }
.form-success p { color: rgba(255,255,255,0.65); font-size: 1.02rem; }

/* ─────────────────────────────────────────────────
   FAQ
───────────────────────────────────────────────── */
#faq {
  padding: var(--section-pad);
  background: var(--cream);
}
.faq-header {
  text-align: center;
  margin-bottom: 56px;
}
.faq-header .section-title { color: var(--green-deep); }
.faq-header .section-label { color: var(--green-mid); }
.faq-header .section-label::before { background: var(--green-mid); }
.faq-header .section-sub { color: var(--text-muted); margin: 0 auto; }

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  max-width: 1000px;
  margin: 0 auto 64px;
}
.faq-item {
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  transition: var(--transition);
}
.faq-item:hover { box-shadow: var(--shadow); }

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  text-align: left;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.08rem;
  color: var(--green-deep);
  cursor: pointer;
  transition: var(--transition);
  background: none;
}
.faq-q:hover { color: var(--green-mid); }
.faq-q.open { color: var(--green-mid); }
.faq-icon {
  font-size: 1.4rem;
  color: var(--green-mid);
  transition: var(--transition);
  flex-shrink: 0;
}
.faq-q.open .faq-icon { transform: rotate(45deg); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1), padding 0.3s;
  padding: 0 24px;
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
}
.faq-a.open {
  max-height: 300px;
  padding: 0 24px 20px;
}

.faq-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}
.faq-highlight {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 28px;
  box-shadow: var(--shadow-card);
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.faq-hl-icon {
  font-size: 2rem;
  flex-shrink: 0;
  background: var(--cream);
  width: 52px; height: 52px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}
.faq-hl-title {
  font-family: var(--font-head);
  font-weight: 800;
  color: var(--green-deep);
  font-size: 1.08rem;
  margin-bottom: 6px;
}
.faq-hl-text { font-size: 0.98rem; color: var(--text-muted); line-height: 1.65; }

/* ─────────────────────────────────────────────────
   FINAL CTA
───────────────────────────────────────────────── */
#final-cta {
  padding: 120px 0;
  background: var(--green-deep);
  text-align: center;
  position: relative;
  overflow: hidden;
}
#final-cta::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(45,106,79,0.25) 0%, transparent 70%);
  pointer-events: none;
}
.final-title {
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3.5rem);
  margin-bottom: 16px;
  position: relative;
}
.final-title span { color: var(--gold); }
.final-sub {
  color: rgba(255,255,255,0.6);
  font-size: 1.2rem;
  max-width: 520px;
  margin: 0 auto 40px;
  position: relative;
}
.final-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  position: relative;
}

/* ─────────────────────────────────────────────────
   FOOTER
───────────────────────────────────────────────── */
#footer {
  background: var(--green-deep);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 80px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 56px;
  padding-bottom: 60px;
}
.footer-brand img {
  height: 56px;
  width: auto;
  margin-bottom: 16px;
}
.footer-brand p {
  font-size: 0.98rem;
  color: rgba(255,255,255,0.45);
  max-width: 260px;
  line-height: 1.7;
  margin-bottom: 24px;
}
.footer-stars {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.94rem;
  color: rgba(255,255,255,0.5);
}
.footer-stars span { color: var(--gold); font-size: 1rem; }

.footer-col-title {
  font-family: var(--font-head);
  font-weight: 800;
  color: var(--white);
  font-size: 1.02rem;
  margin-bottom: 20px;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  font-size: 0.98rem;
  color: rgba(255,255,255,0.45);
  transition: var(--transition);
}
.footer-links a:hover { color: var(--gold); padding-left: 4px; }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
}
.fc-icon {
  width: 32px; height: 32px;
  background: rgba(255,255,255,0.06);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.fc-text {
  font-size: 0.96rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.6;
}
.fc-text a { color: rgba(255,255,255,0.45); transition: var(--transition); }
.fc-text a:hover { color: var(--gold); }
.fc-label { color: rgba(255,255,255,0.25); font-size: 0.84rem; text-transform: uppercase; letter-spacing: 0.08em; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom p {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.25);
}
.footer-bottom-links {
  display: flex;
  gap: 24px;
}
.footer-bottom-links a {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.25);
  transition: var(--transition);
}
.footer-bottom-links a:hover { color: var(--gold); }
.footer-cities {
  font-size: 0.86rem;
  color: rgba(255,255,255,0.18);
}

/* ─────────────────────────────────────────────────
   ANIMATIONS
───────────────────────────────────────────────── */
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeSlideDown {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(10px); }
}
@keyframes scrollLeft {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered delays */
.delay-1 { transition-delay: 0.1s !important; }
.delay-2 { transition-delay: 0.2s !important; }
.delay-3 { transition-delay: 0.3s !important; }
.delay-4 { transition-delay: 0.4s !important; }
.delay-5 { transition-delay: 0.5s !important; }

/* ─────────────────────────────────────────────────
   LIGHTBOX
───────────────────────────────────────────────── */
#lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 9000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px;
}
#lightbox.open { display: flex; }
#lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius-md);
  box-shadow: 0 0 60px rgba(0,0,0,0.8);
}
#lightbox-close {
  position: absolute;
  top: 20px; right: 20px;
  font-size: 0.9rem;
  font-family: var(--font-head);
  font-weight: 800;
  color: var(--white);
  cursor: pointer;
  background: rgba(255,255,255,0.1);
  min-width: 104px;
  height: 44px;
  padding: 0 16px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
#lightbox-close:hover { background: var(--gold); color: var(--green-deep); }

/* ─────────────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .worlds-grid { grid-template-columns: 1fr 1fr; }
  .leistungen-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .galerie-grid { grid-template-columns: repeat(3, 1fr); }
  #galerie .galerie-item {
    grid-column: auto; grid-row: auto;
  }
}
@media (max-width: 900px) {
  :root { --section-pad: 72px 0; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-image-stack { height: 300px; }
  .about-img-main { width: 70%; height: 280px; }
  .about-img-float { width: 50%; height: 180px; }
  .about-badge-float { top: 210px; }
  .buchung-grid { grid-template-columns: 1fr; gap: 40px; }
  .faq-grid { grid-template-columns: 1fr; }
  .faq-bottom { grid-template-columns: 1fr; }
  .ablauf-steps { grid-template-columns: 1fr; }
  .ablauf-steps::before { display: none; }
  .worlds-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .container { padding: 0 20px; }
  .nav-logo { height: 92px !important; }
  #navbar { padding: 4px 0; }
  #hero {
    min-height: 720px;
    height: 100svh;
  }
  #hero .container {
    justify-content: flex-start !important;
    align-items: flex-end !important;
    padding-right: 20px !important;
    padding-bottom: 72px;
  }
  #hero-video {
    object-position: 42% center;
  }
  .hero-overlay {
    background: transparent;
  }
  .hero-opening-badge {
    display: none !important;
  }
  .hero-content {
    max-width: 100% !important;
    text-align: left !important;
  }
  .hero-badge {
    margin-left: 0 !important;
    justify-content: flex-start !important;
    border-radius: var(--radius-sm);
    padding: 7px 12px;
    font-size: 0.88rem;
    line-height: 1.35;
  }
  .hero-title {
    font-size: clamp(2.15rem, 12vw, 3.45rem);
    margin-bottom: 16px;
    text-shadow: 0 3px 24px rgba(0,0,0,0.8);
  }
  .hero-open-note {
    margin-bottom: 18px !important;
    border-radius: var(--radius-sm) !important;
    padding: 9px 12px !important;
  }
  .hero-actions {
    flex-direction: column;
    justify-content: flex-start !important;
    gap: 12px;
  }
  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }
  #opening-banner .container {
    gap: 10px !important;
  }
  #opening-banner {
    padding: 18px 0 !important;
  }
  #opening-banner .container > div:first-child,
  #opening-banner .container > span,
  #opening-banner .container > a {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
  #opening-banner .container > div:first-child span {
    font-size: 2rem !important;
  }
  #opening-banner .container > span {
    font-size: 1.25rem !important;
  }
  #opening-banner .container > a {
    font-size: 1.2rem !important;
    padding: 12px 24px !important;
  }
  #opening-banner .container > div:nth-child(2) {
    display: none;
  }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .leistungen-grid { grid-template-columns: 1fr; }
  .galerie-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .choice-grid { grid-template-columns: 1fr; }
  .about-pillars { grid-template-columns: 1fr; }
  .download-inner { flex-direction: column; text-align: center; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-bottom-links { flex-wrap: wrap; justify-content: center; }
}
@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr; }
  .galerie-grid { grid-template-columns: 1fr; }
  #galerie .galerie-item:nth-child(1) { grid-column: auto; grid-row: auto; }
  #galerie .galerie-item:nth-child(4) { grid-column: auto; grid-row: auto; }
}
