/* ===================================================================
   Marvin Markel – Künstler-Website
   Farbwelt aus den Single-Covern: Himmelblau + Sonnen-Gold
=================================================================== */

:root {
  --blue-900: #0f3a63;
  --blue-700: #1b5e96;
  --blue-500: #2e85c4;
  --blue-300: #6fb2e2;
  --gold-600: #d9962f;
  --gold-500: #ecae45;
  --gold-300: #f6cd7e;
  --cream:    #fdf6ea;
  --sand:     #fbeed6;
  --ink:      #16242f;
  --ink-soft: #46586a;
  --white:    #ffffff;

  --radius:   18px;
  --radius-sm: 12px;
  --shadow:   0 18px 50px -20px rgba(15, 58, 99, .35);
  --shadow-sm: 0 8px 24px -12px rgba(15, 58, 99, .3);
  --maxw:     1180px;
  --ease:     cubic-bezier(.22, 1, .36, 1);

  --f-head: "Poppins", system-ui, sans-serif;
  --f-body: "Inter", system-ui, sans-serif;
  --f-script: "Dancing Script", cursive;
}

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

html { scroll-behavior: smooth; scroll-padding-top: 76px; }

body {
  font-family: var(--f-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

h1, h2, h3, h4 { font-family: var(--f-head); line-height: 1.12; font-weight: 700; }

/* ---------- Layout helpers ---------- */
section { padding: clamp(60px, 9vw, 120px) clamp(20px, 5vw, 40px); }

.section__head { max-width: 760px; margin: 0 auto clamp(40px, 6vw, 70px); text-align: center; }
.section__head h2 { font-size: clamp(1.9rem, 4.5vw, 3rem); color: var(--blue-900); letter-spacing: -.01em; }
.section__sub { margin-top: 18px; color: var(--ink-soft); font-size: 1.08rem; }

.kicker {
  display: inline-block;
  font-family: var(--f-head);
  font-weight: 600;
  font-size: .82rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold-600);
  margin-bottom: 14px;
}
.kicker--light { color: var(--gold-300); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--f-head);
  font-weight: 600;
  font-size: .98rem;
  padding: 14px 30px;
  border-radius: 999px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s, color .25s;
  white-space: nowrap;
}
.btn--primary {
  background: linear-gradient(135deg, var(--gold-500), var(--gold-600));
  color: #2a1c04;
  box-shadow: 0 12px 28px -12px rgba(217, 150, 47, .8);
}
.btn--primary:hover { transform: translateY(-3px); box-shadow: 0 18px 34px -12px rgba(217, 150, 47, .9); }
.btn--ghost {
  background: rgba(255, 255, 255, .12);
  border-color: rgba(255, 255, 255, .7);
  color: var(--white);
  backdrop-filter: blur(4px);
}
.btn--ghost:hover { background: rgba(255, 255, 255, .9); color: var(--blue-900); transform: translateY(-3px); }
.btn--lg { padding: 17px 40px; font-size: 1.05rem; }
.btn--sm { padding: 10px 22px; font-size: .9rem; }
.btn--ghost.btn--dark { border-color: rgba(15, 58, 99, .35); color: var(--blue-900); background: rgba(15, 58, 99, .05); }
.btn--ghost.btn--dark:hover { background: var(--blue-700); color: var(--white); border-color: var(--blue-700); }

/* ---------- Social Icons ---------- */
.social-ico {
  display: inline-grid; place-items: center; width: 44px; height: 44px;
  border-radius: 50%; transition: transform .25s var(--ease), background .25s;
}
.social-ico svg { width: 22px; height: 22px; fill: currentColor; }
.hero__social { display: flex; gap: 12px; margin-top: 30px; }
.hero__social .social-ico {
  background: rgba(255, 255, 255, .14); color: var(--white);
  border: 1px solid rgba(255, 255, 255, .35); backdrop-filter: blur(4px);
}
.hero__social .social-ico:hover { background: var(--white); color: var(--blue-700); transform: translateY(-3px); }
.footer__social { display: flex; gap: 12px; }
.footer__social .social-ico { background: rgba(255, 255, 255, .08); color: rgba(255,255,255,.85); }
.footer__social .social-ico:hover { background: var(--gold-500); color: var(--ink); transform: translateY(-3px); }

/* ---------- Navigation ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background .3s, box-shadow .3s, padding .3s;
  padding: 18px 0;
}
.nav--scrolled {
  background: rgba(253, 246, 234, .92);
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 24px -16px rgba(15, 58, 99, .5);
  padding: 10px 0;
}
.nav__inner {
  max-width: var(--maxw); margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 40px);
  display: flex; align-items: center; justify-content: space-between;
}
.nav__brand {
  font-family: var(--f-head); font-weight: 800; font-size: 1.3rem;
  color: var(--white); letter-spacing: -.01em;
  transition: color .3s;
}
.nav--scrolled .nav__brand { color: var(--blue-900); }
.nav__links { display: flex; align-items: center; gap: 30px; }
.nav__links a {
  font-family: var(--f-head); font-weight: 500; font-size: .96rem;
  color: rgba(255, 255, 255, .9); position: relative; transition: color .25s;
}
.nav__links a:not(.nav__cta)::after {
  content: ""; position: absolute; left: 0; bottom: -6px; width: 0; height: 2px;
  background: var(--gold-500); transition: width .25s var(--ease);
}
.nav__links a:not(.nav__cta):hover::after { width: 100%; }
.nav--scrolled .nav__links a { color: var(--ink); }
.nav__cta {
  background: linear-gradient(135deg, var(--gold-500), var(--gold-600));
  color: #2a1c04 !important; padding: 9px 22px; border-radius: 999px; font-weight: 600;
  transition: transform .25s var(--ease);
}
.nav__cta:hover { transform: translateY(-2px); }
.nav__toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 6px; }
.nav__toggle span { width: 26px; height: 3px; border-radius: 3px; background: var(--white); transition: .3s; }
.nav--scrolled .nav__toggle span { background: var(--blue-900); }

/* ---------- Hero ---------- */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; padding-top: 110px; padding-bottom: 60px; overflow: hidden; }
.hero__bg {
  position: absolute; inset: 0; z-index: -2;
  background:
    radial-gradient(120% 90% at 85% 10%, rgba(246, 205, 126, .55), transparent 55%),
    linear-gradient(165deg, var(--blue-700) 0%, var(--blue-500) 38%, var(--blue-300) 64%, var(--sand) 100%);
}
.hero__bg::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 80% 75%, rgba(255, 255, 255, .35), transparent 40%);
}
.hero__content {
  max-width: var(--maxw); margin: 0 auto; width: 100%;
  display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(30px, 5vw, 70px); align-items: center;
}
.hero__eyebrow {
  font-family: var(--f-head); font-weight: 600; letter-spacing: .25em; text-transform: uppercase;
  font-size: .8rem; color: rgba(255, 255, 255, .9); margin-bottom: 16px;
}
.hero__title {
  font-size: clamp(3rem, 8vw, 5.6rem); font-weight: 800; color: var(--white);
  letter-spacing: -.02em; text-shadow: 0 6px 30px rgba(15, 58, 99, .35);
}
.hero__script {
  font-family: var(--f-script); font-weight: 700;
  font-size: clamp(1.8rem, 4.5vw, 2.8rem); color: var(--gold-300);
  margin: 2px 0 22px; text-shadow: 0 4px 18px rgba(15, 58, 99, .3);
}
.hero__song {
  display: inline-flex; align-items: center; gap: 12px; margin-bottom: 24px;
  background: rgba(255, 255, 255, .15); border: 1px solid rgba(255, 255, 255, .4);
  backdrop-filter: blur(6px); padding: 10px 20px 10px 14px; border-radius: 999px;
}
.hero__song-label {
  font-family: var(--f-head); font-weight: 600; font-size: .72rem; letter-spacing: .12em;
  text-transform: uppercase; color: #2a1c04; background: var(--gold-300);
  padding: 5px 12px; border-radius: 999px;
}
.hero__song-title { font-family: var(--f-head); font-weight: 600; color: var(--white); font-size: 1.05rem; }
.hero__lead { color: rgba(255, 255, 255, .95); font-size: 1.12rem; max-width: 520px; margin-bottom: 32px; }
.hero__lead strong { color: var(--white); }
.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; }

.hero__image { position: relative; justify-self: center; }
.hero__image img {
  width: clamp(260px, 32vw, 420px); border-radius: 24px;
  box-shadow: 0 40px 80px -30px rgba(15, 58, 99, .6);
}
.hero__image::before {
  content: ""; position: absolute; inset: -18px -18px 18px 18px; border-radius: 28px;
  border: 2px solid rgba(255, 255, 255, .4); z-index: -1;
}

.hero__scroll { position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); }
.hero__scroll span {
  display: block; width: 26px; height: 44px; border: 2px solid rgba(255, 255, 255, .8);
  border-radius: 14px; position: relative;
}
.hero__scroll span::after {
  content: ""; position: absolute; top: 8px; left: 50%; transform: translateX(-50%);
  width: 4px; height: 8px; border-radius: 3px; background: var(--white);
  animation: scrolldot 1.6s infinite;
}
@keyframes scrolldot { 0% { opacity: 0; top: 8px; } 40% { opacity: 1; } 80% { opacity: 0; top: 22px; } 100% { opacity: 0; } }

/* ---------- Stats ---------- */
.stats {
  max-width: var(--maxw); margin: -50px auto 0; position: relative; z-index: 5;
  background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow);
  padding: clamp(28px, 4vw, 44px); display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}
.stats__item { text-align: center; position: relative; }
.stats__item:not(:last-child)::after {
  content: ""; position: absolute; right: -10px; top: 15%; height: 70%; width: 1px;
  background: linear-gradient(transparent, rgba(15, 58, 99, .15), transparent);
}
.stats__num {
  display: block; font-family: var(--f-head); font-weight: 800;
  font-size: clamp(2rem, 5vw, 3rem); color: var(--blue-700); line-height: 1;
  background: linear-gradient(135deg, var(--blue-700), var(--gold-600));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.stats__label { display: block; margin-top: 8px; font-size: .9rem; color: var(--ink-soft); font-weight: 500; }

/* ---------- Über mich ---------- */
.about__grid {
  max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(34px, 5vw, 70px); align-items: center;
}
.about__media { position: relative; }
.about__media img { width: 100%; border-radius: var(--radius); box-shadow: var(--shadow); }
.about__badge {
  position: absolute; bottom: 18px; left: 18px;
  background: rgba(255, 255, 255, .94); backdrop-filter: blur(6px);
  font-family: var(--f-head); font-weight: 600; font-size: .82rem; color: var(--blue-900);
  padding: 9px 16px; border-radius: 999px; box-shadow: var(--shadow-sm);
}
.about__text p { margin-bottom: 18px; color: var(--ink-soft); font-size: 1.06rem; }
.about__text strong { color: var(--ink); }
.about__facts {
  list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 12px 24px; margin-top: 26px;
}
.about__facts li {
  font-size: .96rem; color: var(--ink-soft); padding-left: 22px; position: relative;
}
.about__facts li::before {
  content: "♪"; position: absolute; left: 0; color: var(--gold-600); font-weight: 700;
}
.about__facts strong { color: var(--blue-900); }

/* ---------- Musik / Diskografie ---------- */
.music { background: linear-gradient(180deg, var(--cream), var(--sand)); }
.music__grid {
  max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
}
.cover { text-align: center; }
.cover__art {
  position: relative; border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-sm); aspect-ratio: 1; margin-bottom: 16px;
}
.cover__art img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.cover:hover .cover__art img { transform: scale(1.06); }
.cover h3 { font-size: 1.15rem; color: var(--blue-900); }
.cover__meta { display: block; margin-top: 4px; font-size: .85rem; color: var(--ink-soft); }
.cover__tag {
  position: absolute; top: 14px; left: 14px;
  background: linear-gradient(135deg, var(--gold-500), var(--gold-600)); color: #2a1c04;
  font-family: var(--f-head); font-weight: 600; font-size: .76rem;
  padding: 6px 14px; border-radius: 999px; box-shadow: var(--shadow-sm);
}
.cover__tag--alt { background: rgba(255, 255, 255, .92); color: var(--blue-900); }

/* Feature-Karte (aktuelle Single) spannt 2 Spalten */
.cover--feature {
  grid-column: span 2; display: grid; grid-template-columns: 280px 1fr; gap: 30px;
  text-align: left; align-items: center;
  background: var(--white); border-radius: var(--radius); padding: 22px; box-shadow: var(--shadow);
}
.cover--feature .cover__art { margin-bottom: 0; }
.cover--feature h3 { font-size: 1.7rem; margin-bottom: 12px; }
.cover--feature .cover__info p { color: var(--ink-soft); margin-bottom: 14px; }
.cover__links { margin-top: 4px; }

.music__cta { text-align: center; margin-top: 56px; }
.music__cta p { color: var(--ink-soft); margin-bottom: 18px; font-size: 1.05rem; }

/* ---------- Termine ---------- */
.dates__list { max-width: 880px; margin: 0 auto; }
.date__row {
  display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 24px;
  background: var(--white); border-radius: var(--radius-sm); padding: 18px 24px;
  box-shadow: var(--shadow-sm); margin-bottom: 14px;
  transition: transform .25s var(--ease), box-shadow .25s;
}
.date__row:hover { transform: translateX(4px); box-shadow: var(--shadow); }
.date__date {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  min-width: 76px; padding: 10px 6px; border-radius: var(--radius-sm);
  background: linear-gradient(160deg, var(--blue-700), var(--blue-500)); color: var(--white); line-height: 1.1;
}
.date__day { font-family: var(--f-head); font-weight: 800; font-size: 1.7rem; }
.date__mon { font-size: .82rem; text-transform: uppercase; letter-spacing: .08em; color: var(--gold-300); }
.date__year { font-size: .72rem; opacity: .85; }
.date__info h3 { color: var(--blue-900); font-size: 1.15rem; }
.date__info p { color: var(--ink-soft); font-size: .95rem; margin-top: 2px; }

/* Vergangene Termine */
.date__row--past { opacity: .62; }
.date__row--past:hover { transform: none; box-shadow: var(--shadow-sm); }
.date__row--past .date__date { background: linear-gradient(160deg, #9aa6b2, #c3cdd7); }
.date__row--past .date__info h3 { text-decoration: line-through; text-decoration-thickness: 1px; }
.date__row--past .date__btn { display: none; }
.date__badge {
  display: inline-block; margin-top: 8px; font-size: .7rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .07em;
  background: #e6ebf0; color: #5b6b7b; padding: 4px 11px; border-radius: 999px;
}

.dates__empty {
  text-align: center; background: var(--white); border-radius: var(--radius);
  padding: clamp(34px, 5vw, 56px); box-shadow: var(--shadow-sm);
  border: 1px dashed rgba(15, 58, 99, .2);
}
.dates__empty-ico { font-size: 2.6rem; display: block; margin-bottom: 14px; }
.dates__empty h3 { color: var(--blue-900); font-size: 1.4rem; max-width: 520px; margin: 0 auto 12px; }
.dates__empty p { color: var(--ink-soft); max-width: 480px; margin: 0 auto 24px; }
.dates__empty-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

.dates__events { max-width: var(--maxw); margin: 48px auto 0; text-align: center; }
.dates__events-title { font-family: var(--f-head); font-weight: 600; color: var(--blue-900); margin-bottom: 18px; }
.dates__events-grid {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 12px;
}
.dates__events-grid span {
  background: var(--white); border-radius: 999px; padding: 10px 20px; font-size: .95rem;
  color: var(--ink); box-shadow: var(--shadow-sm); font-weight: 500;
}

/* ---------- News ---------- */
.news { background: linear-gradient(180deg, var(--sand), var(--cream)); }
.news__grid {
  max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px;
}
.news__card {
  background: var(--white); border-radius: var(--radius); padding: 30px 32px;
  box-shadow: var(--shadow-sm); border-left: 4px solid var(--gold-500);
  transition: transform .25s var(--ease), box-shadow .25s;
}
.news__card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.news__date {
  display: inline-block; font-family: var(--f-head); font-weight: 600; font-size: .78rem;
  letter-spacing: .1em; text-transform: uppercase; color: var(--gold-600); margin-bottom: 10px;
}
.news__card h3 { color: var(--blue-900); font-size: 1.25rem; margin-bottom: 10px; }
.news__card p { color: var(--ink-soft); font-size: 1rem; }
.news__link {
  display: inline-block; margin-top: 14px; font-family: var(--f-head); font-weight: 600;
  color: var(--blue-700); font-size: .95rem; transition: color .2s;
}
.news__link:hover { color: var(--gold-600); }

/* ---------- Galerie ---------- */
.gallery__grid {
  max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
}
.gallery__item {
  border: 0; padding: 0; cursor: pointer; background: none;
  border-radius: var(--radius-sm); overflow: hidden; aspect-ratio: 3 / 4;
  box-shadow: var(--shadow-sm); position: relative;
}
.gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s var(--ease); }
.gallery__item::after {
  content: "🔍"; position: absolute; inset: 0; display: grid; place-items: center;
  font-size: 1.6rem; background: rgba(15, 58, 99, .35); opacity: 0; transition: opacity .3s;
}
.gallery__item:hover img { transform: scale(1.08); }
.gallery__item:hover::after { opacity: 1; }
/* Aufklappbare Galerie: Extra-Bilder erst nach Klick sichtbar */
.gallery__grid:not(.expanded) .gallery__item--extra { display: none; }
.gallery__more { text-align: center; margin-top: 30px; }
.gallery__count { opacity: .7; font-weight: 500; }

/* ---------- Kontakt ---------- */
.contact { background: linear-gradient(160deg, var(--blue-900), var(--blue-700)); color: var(--white); }
.contact__inner { max-width: var(--maxw); margin: 0 auto; text-align: center; }
.contact__head h2 { color: var(--white); font-size: clamp(1.9rem, 4.5vw, 3rem); }
.contact__head p { color: rgba(255, 255, 255, .85); max-width: 640px; margin: 16px auto 0; font-size: 1.08rem; }
.contact__cards {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
  margin: 48px 0 40px; text-align: left;
}
.contact__card {
  background: rgba(255, 255, 255, .08); border: 1px solid rgba(255, 255, 255, .15);
  border-radius: var(--radius); padding: 28px; backdrop-filter: blur(6px);
}
.contact__card h3 { color: var(--gold-300); font-size: 1.1rem; margin-bottom: 14px; }
.contact__card p { color: rgba(255, 255, 255, .9); margin-bottom: 8px; font-size: 1rem; }
.contact__card a { color: var(--white); border-bottom: 1px solid rgba(246, 205, 126, .5); transition: color .2s; }
.contact__card a:hover { color: var(--gold-300); }
.contact__note {
  margin-top: 16px; padding-top: 14px; border-top: 1px solid rgba(255, 255, 255, .15);
  font-size: .9rem; line-height: 1.6; color: rgba(255, 255, 255, .82);
}
.contact__note a { border-bottom: none; }

/* ---------- Footer ---------- */
.footer { background: var(--ink); color: rgba(255, 255, 255, .8); padding: 60px clamp(20px, 5vw, 40px) 0; }
.footer__inner {
  max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 40px; padding-bottom: 40px;
}
.footer__logo { font-family: var(--f-head); font-weight: 800; font-size: 1.5rem; color: var(--white); display: block; margin-bottom: 12px; }
.footer__brand p { max-width: 360px; margin-bottom: 16px; }
.footer__social {
  display: inline-block; font-family: var(--f-head); font-weight: 600; color: var(--gold-300);
  border: 1px solid rgba(246, 205, 126, .4); padding: 8px 20px; border-radius: 999px; transition: .25s;
}
.footer__social:hover { background: var(--gold-500); color: var(--ink); }
.footer__impressum h4 { color: var(--white); margin-bottom: 14px; font-size: 1.05rem; }
.footer__impressum p { margin-bottom: 12px; font-size: .94rem; line-height: 1.7; }
.footer__impressum a { color: var(--gold-300); }
.footer__bottom {
  max-width: var(--maxw); margin: 0 auto; border-top: 1px solid rgba(255, 255, 255, .12);
  padding: 22px 0; display: flex; justify-content: space-between; align-items: center;
  font-size: .85rem; flex-wrap: wrap; gap: 10px;
}
.footer__bottom a { color: var(--gold-300); transition: color .2s; }
.footer__bottom a:hover { color: var(--white); }
.footer__legal { display: flex; gap: 22px; flex-wrap: wrap; }

/* ---------- Rechtstext-Seite (Datenschutz) ---------- */
.legal {
  max-width: 820px; margin: 0 auto; padding: clamp(110px, 14vh, 150px) clamp(20px, 5vw, 40px) 80px;
}
.legal__back {
  display: inline-flex; align-items: center; gap: 6px; font-family: var(--f-head);
  font-weight: 600; color: var(--blue-700); margin-bottom: 26px;
}
.legal__back:hover { color: var(--gold-600); }
.legal h1 { color: var(--blue-900); font-size: clamp(1.9rem, 5vw, 2.8rem); margin-bottom: 8px; }
.legal__intro { color: var(--ink-soft); margin-bottom: 36px; }
.legal h2 {
  color: var(--blue-900); font-size: 1.4rem; margin: 38px 0 12px;
  padding-top: 22px; border-top: 1px solid rgba(15, 58, 99, .12);
}
.legal h3 { color: var(--blue-700); font-size: 1.1rem; margin: 22px 0 8px; }
.legal p { color: var(--ink-soft); margin-bottom: 14px; }
.legal ul { color: var(--ink-soft); margin: 0 0 16px 22px; }
.legal li { margin-bottom: 7px; }
.legal a { color: var(--blue-700); text-decoration: underline; }
.legal strong { color: var(--ink); }
.legal__note {
  background: var(--sand); border-left: 4px solid var(--gold-500); border-radius: 8px;
  padding: 16px 20px; font-size: .92rem; color: var(--ink-soft); margin: 30px 0;
}

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed; inset: 0; z-index: 200; display: none;
  background: rgba(10, 24, 38, .92); align-items: center; justify-content: center; padding: 30px;
}
.lightbox.open { display: flex; animation: fade .3s; }
.lightbox img { max-width: 90vw; max-height: 88vh; border-radius: 12px; box-shadow: 0 30px 80px rgba(0,0,0,.6); }
.lightbox__close {
  position: absolute; top: 22px; right: 30px; font-size: 2.6rem; color: var(--white);
  background: none; border: 0; cursor: pointer; line-height: 1;
}
@keyframes fade { from { opacity: 0; } to { opacity: 1; } }

/* ---------- Reveal-Animation ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.visible { opacity: 1; transform: none; }

/* ===================================================================
   Responsive
=================================================================== */
@media (max-width: 920px) {
  .hero__content { grid-template-columns: 1fr; text-align: center; }
  .hero__text { order: 2; }
  .hero__image { order: 1; }
  .hero__lead { margin-left: auto; margin-right: auto; }
  .hero__actions { justify-content: center; }
  .about__grid { grid-template-columns: 1fr; }
  .about__media { max-width: 440px; margin: 0 auto; }
  .music__grid { grid-template-columns: repeat(2, 1fr); }
  .cover--feature { grid-column: span 2; }
  .news__grid { grid-template-columns: 1fr; }
  .contact__cards { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .nav__toggle { display: flex; }
  .nav__links {
    position: fixed; inset: 0 0 auto 0; top: 0; flex-direction: column; gap: 8px;
    background: var(--blue-900); padding: 90px 30px 30px; transform: translateY(-110%);
    transition: transform .4s var(--ease); align-items: stretch; text-align: center;
  }
  .nav__links.open { transform: translateY(0); }
  .nav__links a { color: var(--white); padding: 12px; font-size: 1.1rem; }
  .nav--scrolled .nav__links a { color: var(--white); }
  .nav__links a:not(.nav__cta)::after { display: none; }

  .stats { grid-template-columns: repeat(2, 1fr); gap: 28px 12px; }
  .stats__item:nth-child(2)::after { display: none; }
  .about__facts { grid-template-columns: 1fr; }
  .music__grid { grid-template-columns: 1fr; }
  .cover--feature { grid-column: span 1; grid-template-columns: 1fr; text-align: center; }
  .cover--feature .cover__art { max-width: 260px; margin: 0 auto; }
  .gallery__grid { grid-template-columns: repeat(2, 1fr); }
  .date__row { grid-template-columns: auto 1fr; }
  .date__btn { display: none; }
  .footer__bottom { justify-content: center; text-align: center; flex-direction: column; }
  .footer__legal { justify-content: center; }
}

@media (max-width: 420px) {
  .stats { grid-template-columns: 1fr; }
  .stats__item::after { display: none !important; }
  .gallery__grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
}
