/* =========================================================
   GRÜENFÄGER GUGGE — Stylesheet
   Palette: Grüen-Wiiss-Basis + Konfetti-Akzente
   ========================================================= */

:root {
  /* Grün-Basis – exakt am Marken-Logo (#2bb460) ausgerichtet */
  --green-900: #0a3d1f;
  --green-800: #11512a;
  --green-700: #1a7a40;  /* dunkles Grün für Text auf Weiß (guter Kontrast) */
  --green-600: #23994f;
  --green-500: #2bb460;  /* MARKEN-GRÜN (Logo) */
  --green-400: #5fce8c;

  /* Konfetti-Akzente */
  --magenta: #ff4d97;
  --yellow:  #ffcb2b;
  --orange:  #ff7a33;
  --violet:  #8a5cf6;
  --teal:    #1fc4c4;
  --blue:    #2b6fd6;

  /* Neutral */
  --white:   #ffffff;
  --paper:   #f3fbf6;
  --ink:     #173527;
  --ink-soft:#3c5b4b;

  --font-display: "Fredoka", "Trebuchet MS", system-ui, sans-serif;
  --font-body: "Nunito", system-ui, -apple-system, sans-serif;

  --nav-h: 72px;
  --radius: 28px;
  --shadow: 0 18px 50px -18px rgba(10, 61, 31, 0.45);
  --container: 980px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 14px);
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.skip-link {
  position: absolute; left: 12px; top: -60px;
  background: var(--green-700); color: #fff;
  padding: 10px 16px; border-radius: 12px; z-index: 1000;
  transition: top .2s ease;
}
.skip-link:focus { top: 12px; }

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

/* =========================================================
   AMBIENT — schwebende Noten & Konfetti (weiße Zone)
   ========================================================= */
.ambient {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}
.particle {
  position: absolute;
  top: 0;
  will-change: transform, opacity;
  animation: drift linear infinite;
  opacity: 0;
}
.particle--note {
  font-family: var(--font-body);
  font-weight: 700;
  line-height: 1;
  text-shadow: 0 2px 6px rgba(10, 61, 31, 0.18);
}
.particle--confetti {
  border-radius: 3px;
}

@keyframes drift {
  0%   { transform: translateY(112vh) translateX(0) rotate(0deg);   opacity: 0; }
  8%   { opacity: var(--op, 0.8); }
  92%  { opacity: var(--op, 0.8); }
  100% { transform: translateY(-18vh) translateX(var(--sway, 30px)) rotate(420deg); opacity: 0; }
}

/* =========================================================
   NAVBAR — fix oben
   ========================================================= */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 100;
  background: linear-gradient(120deg, rgba(26, 122, 64, 0.62), rgba(16, 81, 42, 0.5) 55%, rgba(35, 153, 79, 0.55));
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 10px 34px -16px rgba(10, 61, 31, 0.55);
  transition: background .3s ease, box-shadow .3s ease, height .3s ease;
}
/* feiner Glanz oben */
.navbar::before {
  content: "";
  position: absolute; left: 0; right: 0; top: 0; height: 50%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.22), transparent);
  pointer-events: none;
}
/* animierte Konfetti-Leiste unten */
.navbar::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: 0; height: 3px;
  background: linear-gradient(90deg,
    var(--yellow), var(--orange), var(--magenta), var(--violet), var(--teal), var(--green-400), var(--yellow));
  background-size: 200% 100%;
  animation: navshimmer 7s linear infinite;
}
@keyframes navshimmer { to { background-position: 200% 0; } }

/* kompakter & solider beim Scrollen */
.navbar.is-scrolled {
  height: calc(var(--nav-h) - 12px);
  background: linear-gradient(120deg, rgba(16, 81, 42, 0.9), rgba(26, 122, 64, 0.82));
  box-shadow: 0 14px 38px -16px rgba(10, 61, 31, 0.7);
}
.navbar.is-scrolled .nav-logo img { height: 40px; width: 40px; }
.nav-inner {
  max-width: 1180px;
  height: 100%;
  margin: 0 auto;
  padding: 0 22px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 14px;
  position: relative;
  z-index: 1;
}
.nav-logo {
  justify-self: start;
  display: flex;
  transition: transform .3s ease;
}
.nav-logo:hover { transform: translateY(-1px); }

.nav-menu {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 5px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.18);
}
.nav-link {
  color: #fff;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.02rem;
  padding: 9px 14px;
  border-radius: 999px;
  position: relative;
  transition: background .2s ease, transform .2s ease;
}
.nav-link:hover { background: rgba(255, 255, 255, 0.16); transform: translateY(-1px); }
.nav-link.is-active {
  background: #fff;
  color: var(--green-700);
}

.nav-end {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-self: end;
}
.nav-logo img {
  height: 46px;
  width: 46px;
  transition: transform .3s ease;
}
/* drop-shadow Filter nur auf Desktop – mobil deaktiviert wegen SVG-Rendering-Problemen */
@media (min-width: 761px) {
  .nav-logo img {
    filter: drop-shadow(0 3px 7px rgba(0, 0, 0, 0.4));
  }
}
.nav-logo:hover img { transform: rotate(-8deg) scale(1.06); }

.nav-social { display: flex; align-items: center; gap: 8px; }
.social {
  width: 38px; height: 38px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  transition: transform .2s ease, background .2s ease;
}
.social svg { width: 20px; height: 20px; fill: #fff; }
.social:hover { transform: translateY(-2px) scale(1.08); }
.social--ig:hover { background: linear-gradient(45deg, #f9ce34, #ee2a7b, #6228d7); }
.social--fb:hover { background: #1877f2; }
.social--yt:hover { background: #ff0000; }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 50px; height: 50px;
  background: rgba(255,255,255,0.16);
  border: none; border-radius: 12px;
  cursor: pointer;
  padding: 4px;
  z-index: 101;
  position: relative;
  transition: background .2s ease;
}
.nav-toggle span {
  display: block; height: 3px; width: 22px;
  margin: 0 auto;
  background: #fff; border-radius: 3px;
  transition: transform .3s ease, opacity .2s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* =========================================================
   HERO / LOGO
   ========================================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: calc(var(--nav-h) + 40px) 20px 60px;
  color: #fff;
  background:
    radial-gradient(85% 60% at 50% 30%, rgba(43, 180, 96, 0.20), transparent 62%),
    radial-gradient(circle at 16% 18%, rgba(255, 203, 43, 0.09), transparent 42%),
    radial-gradient(circle at 84% 82%, rgba(255, 77, 151, 0.09), transparent 42%),
    linear-gradient(165deg, #114e29 0%, #0a3d1f 52%, #052a13 100%);
  z-index: 1;
}
.hero-glow {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle, rgba(255,255,255,0.14) 2px, transparent 2.6px),
    radial-gradient(circle, rgba(255,255,255,0.10) 2px, transparent 2.6px);
  background-size: 34px 34px, 34px 34px;
  background-position: 0 0, 17px 17px;
  mask-image: radial-gradient(circle at 50% 40%, #000 30%, transparent 80%);
  opacity: .6;
}
.hero-content { position: relative; max-width: 760px; }
.hero-logo {
  width: clamp(160px, 28vw, 248px);
  margin: 0 auto 22px;
  animation: bob 5s ease-in-out infinite;
}
/* drop-shadow Filter nur auf Desktop – mobil deaktiviert wegen SVG-Rendering-Problemen */
@media (min-width: 761px) {
  .hero-logo {
    filter: drop-shadow(0 18px 34px rgba(0, 0, 0, 0.45));
  }
}
@keyframes bob {
  0%,100% { transform: translateY(0) rotate(0); }
  50%     { transform: translateY(-12px) rotate(2deg); }
}
.hero-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.1rem, 6.4vw, 4.4rem);
  line-height: 1.06;
  letter-spacing: -0.5px;
  overflow-wrap: anywhere;
  margin-bottom: 8px;
  text-shadow: 0 6px 18px rgba(0,0,0,0.3);
}
.hero-title span {
  display: block;
  line-height: 1.14;
  padding-bottom: 0.16em;
  background: linear-gradient(90deg, var(--yellow), var(--orange), var(--magenta));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-motto {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.2rem, 3.6vw, 1.9rem);
  line-height: 1.25;
  padding-bottom: 0.12em;
  margin-top: 16px;
  background: linear-gradient(90deg, var(--yellow), var(--orange), var(--magenta));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: none;
}
.hero-tagline {
  font-size: clamp(1.05rem, 2.4vw, 1.35rem);
  margin: 10px auto 30px;
  max-width: 540px;
  color: rgba(255,255,255,0.92);
}
.hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

.scroll-cue {
  position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%);
  width: 28px; height: 46px;
  border: 3px solid rgba(255,255,255,0.7);
  border-radius: 20px;
}
.scroll-cue span {
  position: absolute; left: 50%; top: 8px;
  width: 5px; height: 9px; border-radius: 3px;
  background: #fff; transform: translateX(-50%);
  animation: cue 1.6s ease-in-out infinite;
}
@keyframes cue { 0%{opacity:0;top:8px} 50%{opacity:1;top:18px} 100%{opacity:0;top:26px} }

/* =========================================================
   BUTTONS
   ========================================================= */
.btn {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  padding: 13px 26px;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
  display: inline-block;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn--solid {
  background: #fff; color: var(--green-700);
  box-shadow: 0 10px 24px -10px rgba(0,0,0,0.45);
}
.btn--solid:hover { box-shadow: 0 14px 30px -10px rgba(0,0,0,0.55); }
.btn--ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,0.7); }
.btn--ghost:hover { background: rgba(255,255,255,0.15); }
.btn--full { width: 100%; }
.btn--mini { padding: 8px 16px; font-size: .9rem; background: var(--ink); color: #fff; }
.btn--mini:hover { background: var(--green-700); }

/* =========================================================
   SECTIONS — gemeinsame Karte
   ========================================================= */
main { position: relative; z-index: 1; }

.section {
  position: relative;
  max-width: var(--container);
  margin: 26px auto;
  padding: clamp(38px, 6vw, 70px) clamp(24px, 5vw, 60px);
  border-radius: var(--radius);
  color: #fff;
  overflow: hidden;
  box-shadow: var(--shadow);
  isolation: isolate;
}
/* Konfetti-Punkt-Textur als „Hintergrundbild" — über alle Sektionen */
.section::before {
  content: "";
  position: absolute; inset: 0; z-index: -1;
  background-image:
    radial-gradient(circle, rgba(255,255,255,0.16) 2px, transparent 2.6px),
    radial-gradient(circle, rgba(255,255,255,0.10) 2px, transparent 2.6px);
  background-size: 30px 30px, 30px 30px;
  background-position: 0 0, 15px 15px;
  opacity: .55;
}

/* je Menüpunkt eine eigene, abgestimmte Hintergrundfarbe */
.section--auftritte { background: linear-gradient(140deg, var(--green-500), var(--teal)); }
.section--band      { background: linear-gradient(140deg, var(--green-600), var(--violet)); }
.section--timeline  { background: linear-gradient(140deg, var(--green-500), var(--orange)); }
.section--medien    { background: linear-gradient(140deg, #14a08f, var(--blue)); }
.section--merch     { background: linear-gradient(140deg, var(--green-500), var(--magenta)); }
.section--kontakt   { background: linear-gradient(140deg, var(--green-600), var(--green-900)); }

/* Sticker-Eyebrow */
.sticker {
  display: inline-block;
  background: var(--yellow);
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .95rem;
  padding: 7px 16px;
  border-radius: 12px;
  transform: rotate(-3deg);
  box-shadow: 0 8px 18px -8px rgba(0,0,0,0.4);
}
.section-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 5.5vw, 3.2rem);
  line-height: 1.02;
  margin: 16px 0 10px;
  text-shadow: 0 4px 14px rgba(0,0,0,0.18);
}
.section-intro {
  max-width: 620px;
  font-size: 1.08rem;
  color: rgba(255,255,255,0.94);
  margin-bottom: 34px;
}

/* helle Inhaltskarte für Lesbarkeit */
.panel {
  background: rgba(255,255,255,0.96);
  color: var(--ink);
  border-radius: 20px;
  padding: 26px 28px;
  box-shadow: 0 14px 34px -18px rgba(0,0,0,0.4);
}

/* =========================================================
   AUFTRITTE
   ========================================================= */
.gig-list { list-style: none; display: grid; gap: 16px; }
.gig {
  display: flex;
  align-items: center;
  gap: 20px;
  background: rgba(255,255,255,0.96);
  color: var(--ink);
  border-radius: 18px;
  padding: 18px 22px;
  box-shadow: 0 14px 30px -20px rgba(0,0,0,0.5);
  transition: transform .2s ease, box-shadow .2s ease;
}
.gig:hover { transform: translateX(6px); box-shadow: 0 18px 34px -18px rgba(0,0,0,0.55); }
.gig-date {
  flex: 0 0 auto;
  width: 66px; height: 66px;
  border-radius: 16px;
  background: linear-gradient(150deg, var(--green-500), var(--teal));
  color: #fff;
  display: grid; place-items: center; align-content: center;
  font-family: var(--font-display);
}
.gig-day { font-size: 1.5rem; font-weight: 700; line-height: 1; }
.gig-month { font-size: .8rem; text-transform: uppercase; letter-spacing: 1px; }
.gig-body { flex: 1; }
.gig-body h3 { font-family: var(--font-display); font-size: 1.2rem; }
.gig-meta { color: var(--ink-soft); font-weight: 700; font-size: .9rem; margin: 2px 0 6px; }
.gig-tag {
  flex: 0 0 auto;
  align-self: flex-start;
  background: var(--ink); color: #fff;
  font-size: .78rem; font-weight: 700;
  padding: 5px 12px; border-radius: 999px;
}

/* =========================================================
   BAND
   ========================================================= */
.band-text { margin-bottom: 22px; }
.band-text p + p { margin-top: 12px; }
.register-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 14px;
}
.register {
  background: rgba(255,255,255,0.16);
  border: 2px solid rgba(255,255,255,0.35);
  border-radius: 16px;
  padding: 20px 14px;
  text-align: center;
}
.register-num {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2.2rem;
  line-height: 1;
}
.register-name { font-weight: 700; font-size: .95rem; }

/* =========================================================
   TIMELINE
   ========================================================= */
.timeline { list-style: none; position: relative; padding-left: 8px; }
.timeline::before {
  content: ""; position: absolute;
  left: 78px; top: 8px; bottom: 8px; width: 4px;
  background: rgba(255,255,255,0.5); border-radius: 4px;
}
.tl-item {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 24px;
  align-items: start;
  position: relative;
  padding: 12px 0;
}
.tl-item::before {
  content: ""; position: absolute;
  left: 72px; top: 22px;
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--yellow);
  border: 4px solid #fff;
  box-shadow: 0 0 0 3px rgba(255,203,43,0.4);
}
.tl-year {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.3rem;
  text-align: right;
  padding-top: 12px;
}
.tl-card {
  background: rgba(255,255,255,0.96);
  color: var(--ink);
  border-radius: 16px;
  padding: 16px 20px;
  margin-left: 26px;
  box-shadow: 0 14px 30px -22px rgba(0,0,0,0.5);
}
.tl-card h3 { font-family: var(--font-display); font-size: 1.15rem; margin-bottom: 4px; }

/* =========================================================
   MEDIEN
   ========================================================= */
.media-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 16px;
}
.media-tile {
  background: rgba(255,255,255,0.96);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 14px 30px -22px rgba(0,0,0,0.5);
  transition: transform .2s ease;
}
.media-tile:hover { transform: translateY(-4px); }
.media-thumb {
  aspect-ratio: 4 / 3;
  position: relative;
  background: linear-gradient(135deg, var(--teal), var(--blue));
}
.media-thumb--a { background: linear-gradient(135deg, var(--magenta), var(--orange)); }
.media-thumb--b { background: linear-gradient(135deg, var(--violet), var(--blue)); }
.media-thumb--c { background: linear-gradient(135deg, var(--green-500), var(--teal)); }
.media-thumb--d { background: linear-gradient(135deg, var(--orange), var(--yellow)); }
.media-thumb--e { background: linear-gradient(135deg, var(--green-600), var(--green-400)); }
.media-thumb .play {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  font-size: 1.6rem; color: #fff;
  text-shadow: 0 4px 12px rgba(0,0,0,0.4);
}
.media-tile figcaption {
  padding: 12px 14px;
  color: var(--ink);
  font-weight: 700;
  font-size: .95rem;
}
.media-note {
  margin-top: 18px;
  font-size: .92rem;
  color: rgba(255,255,255,0.88);
}

/* =========================================================
   MERCHANDISE
   ========================================================= */
.shop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 18px;
}
.product {
  background: rgba(255,255,255,0.97);
  color: var(--ink);
  border-radius: 18px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 14px 30px -22px rgba(0,0,0,0.5);
  transition: transform .2s ease;
}
.product:hover { transform: translateY(-5px); }
.product-img {
  aspect-ratio: 1 / 1;
  border-radius: 14px;
  display: grid; place-items: center;
  font-size: 3.4rem;
  margin-bottom: 14px;
  background: linear-gradient(135deg, var(--green-400), var(--teal));
}
.product-img--hoodie { background: linear-gradient(135deg, var(--violet), var(--magenta)); }
.product-img--cap    { background: linear-gradient(135deg, var(--orange), var(--yellow)); }
.product-img--cd     { background: linear-gradient(135deg, var(--blue), var(--teal)); }
.product h3 { font-family: var(--font-display); font-size: 1.1rem; }
.product-desc { font-size: .9rem; color: var(--ink-soft); margin: 4px 0 14px; flex: 1; }
.product-foot { display: flex; align-items: center; justify-content: space-between; }
.price { font-family: var(--font-display); font-weight: 700; font-size: 1.3rem; color: var(--green-700); }

/* =========================================================
   KONTAKT
   ========================================================= */
.contact-wrap {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 20px;
}
.contact-form .field { margin-bottom: 14px; }
.contact-form label {
  display: block;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--ink);
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 12px 14px;
  border: 2px solid #d9e8df;
  border-radius: 12px;
  background: #fff;
  color: var(--ink);
  transition: border-color .2s ease;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--green-500);
}
.contact-form textarea { resize: vertical; }
.form-status { margin-top: 12px; font-weight: 700; color: var(--green-700); min-height: 1.2em; }

.contact-info h3 { font-family: var(--font-display); font-size: 1.3rem; margin-bottom: 14px; color: var(--green-700); }
.contact-info p { margin-bottom: 14px; }
.contact-info a { color: var(--green-700); font-weight: 700; }
.contact-social { display: flex; gap: 10px; margin-top: 8px; }
.contact-social .social { background: var(--green-600); }

/* =========================================================
   FOOTER
   ========================================================= */
.footer {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 46px 20px 40px;
  color: var(--ink-soft);
}
.footer-logo { width: 56px; margin: 0 auto 10px; opacity: .9; }
.footer-name { font-family: var(--font-display); font-weight: 700; font-size: 1.3rem; color: var(--green-700); }
.footer-motto { font-family: var(--font-display); font-weight: 600; font-size: 1rem; color: var(--ink-soft); margin-top: 2px; }
.footer-copy { font-size: .9rem; margin-top: 8px; }
.footer-copy a { color: var(--green-700); font-weight: 700; text-decoration: none; border-bottom: 1px solid rgba(26,122,64,.35); transition: border-color .2s ease; }
.footer-copy a:hover { border-color: var(--green-700); }

/* =========================================================
   RESPONSIVE — Tablet / Handy
   ========================================================= */
@media (max-width: 900px) {
  .contact-wrap { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .nav-toggle { display: flex; }
  .nav-menu {
    position: fixed;
    top: var(--nav-h); left: 0; right: 0;
    justify-self: stretch;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 12px 16px 18px;
    border: none;
    border-radius: 0 0 18px 18px;
    background: linear-gradient(160deg, rgba(47,122,58,0.96), rgba(31,94,39,0.97));
    backdrop-filter: blur(18px) saturate(160%);
    -webkit-backdrop-filter: blur(18px) saturate(160%);
    box-shadow: 0 18px 30px -16px rgba(0,0,0,0.5);
    max-height: 0;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transition: max-height .32s ease, opacity .32s ease, visibility .32s ease;
    z-index: 99;
  }
  .navbar.is-scrolled .nav-menu { top: calc(var(--nav-h) - 12px); }
  .nav-menu.is-open { max-height: calc(100vh - var(--nav-h)); opacity: 1; visibility: visible; }
  .nav-link { font-size: 1.15rem; padding: 12px 16px; }
  .nav-logo img { height: 36px; width: 36px; }
  .social { width: 34px; height: 34px; }
  .social svg { width: 18px; height: 18px; }

  .section { margin: 16px 12px; border-radius: 22px; }
  .tl-item { grid-template-columns: 52px 1fr; gap: 14px; }
  .timeline::before { left: 60px; }
  .tl-item::before { left: 54px; }
  .tl-card { margin-left: 14px; }
  .tl-year { font-size: 1.05rem; }

  .gig { flex-wrap: wrap; }
  .gig-tag { order: 3; }
}

@media (max-width: 420px) {
  :root { --nav-h: 64px; }
  .nav-inner { padding: 0 12px; gap: 8px; }
  .nav-social { gap: 5px; }
  .hero-logo { width: clamp(120px, 24vw, 160px); margin-bottom: 16px; }
  .hero-actions { flex-direction: column; width: 100%; max-width: 280px; margin: 0 auto; }
  .hero-actions .btn { width: 100%; padding: 11px 18px; font-size: 0.95rem; }
  .hero { padding: calc(var(--nav-h) + 24px) 16px 40px; }
}

/* Bewegung reduzieren */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .particle { display: none; }
  .hero-logo, .scroll-cue span, .navbar::after { animation: none; }
  * { transition: none !important; }
}
