/* ============================================================
   Lucie & Band — Stylesheet  (v2 – "electric night")
   Basis: kühles Fast-Schwarz · Akzente: Türkis + Pink (+ etwas Violett)
   Fonts: Fraunces (Display) · Outfit (Text)
   ============================================================ */

:root {
  --bg:        #090b11;   /* kühles Fast-Schwarz */
  --bg-2:      #0d1018;
  --surface:   #11141d;
  --card:      #141824;
  --card-hi:   #1a1f2d;
  --text:      #f2f5fa;
  --muted:     #98a2b6;

  --teal:        #22d3ee;   /* elektrisches Türkis (Flügel) */
  --teal-bright: #57e7dc;
  --pink:        #ff4d8d;   /* Pink (Splash) */
  --violet:      #8b6cf0;   /* Violett (nur als Akzent) */
  --ink-on-teal: #04141b;

  --line:      rgba(242, 245, 250, 0.10);
  --line-soft: rgba(242, 245, 250, 0.06);

  --grad:     linear-gradient(120deg, #22d3ee 0%, #8b6cf0 50%, #ff4d8d 100%);
  --grad-btn: linear-gradient(135deg, #4fe6d7 0%, #22c3ee 100%);

  --maxw: 1160px;
  --radius: 18px;
  --radius-lg: 28px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);

  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Outfit", system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* dezenter Grundschimmer */
body::before {
  content: ""; position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(50% 35% at 78% 6%, rgba(34, 211, 238, 0.10), transparent 70%),
    radial-gradient(45% 35% at 12% 96%, rgba(255, 77, 141, 0.09), transparent 70%);
}
/* feines Filmkorn über allem */
body::after {
  content: ""; position: fixed; inset: 0; z-index: 2; pointer-events: none; opacity: 0.05;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

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

.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* ---------- Typo ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-size: 0.76rem; letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--teal); font-weight: 600;
}
.eyebrow::before { content: ""; width: 26px; height: 1px; background: var(--teal); opacity: 0.7; }

.section-title {
  font-family: var(--font-display); font-weight: 900;
  font-size: clamp(2.1rem, 5.2vw, 3.6rem); line-height: 1.02; letter-spacing: -0.015em; margin-top: 0.5rem;
}
.hl { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.section-sub { color: var(--muted); max-width: 48ch; margin-top: 1rem; font-size: 1.05rem; }

.section { position: relative; z-index: 1; max-width: var(--maxw); margin: 0 auto; padding: clamp(4.5rem, 9vw, 8rem) 1.5rem; }
.section-head { margin-bottom: 3rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 0.55rem;
  font-weight: 700; font-size: 1rem; padding: 0.9rem 1.6rem; border-radius: 100px;
  border: 1px solid transparent; cursor: pointer;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s, color 0.25s, background 0.25s;
}
.btn-primary { color: var(--ink-on-teal); background: var(--grad-btn); box-shadow: 0 10px 34px -10px rgba(34, 211, 238, 0.6); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 18px 46px -12px rgba(34, 211, 238, 0.85); }
.btn-ghost { color: var(--text); border-color: var(--line); background: rgba(242, 245, 250, 0.03); }
.btn-ghost:hover { border-color: var(--teal); color: var(--teal); transform: translateY(-2px); }
.btn-block { display: flex; justify-content: center; width: 100%; margin-top: 1.4rem; }
.play-dot { font-size: 0.7rem; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.65rem clamp(1rem, 4vw, 2.5rem);
  background: rgba(9, 11, 17, 0.6); backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line-soft);
}
.brand { display: inline-flex; align-items: center; gap: 0.6rem; }
.brand-logo { height: 52px; width: auto; }
.brand-logo.is-missing { display: none; }
.brand-logo.is-missing + .brand-wordmark { display: inline; }
.brand-wordmark { font-family: var(--font-display); font-weight: 900; font-size: 1.5rem; letter-spacing: -0.01em; color: var(--text); }
.brand-wordmark em { color: var(--teal); font-style: italic; }
.brand-wordmark.small { font-size: 1.7rem; }
.brand-logo:not(.is-missing) + .brand-wordmark { display: none; }

.nav { display: flex; align-items: center; }
.nav-menu { list-style: none; display: flex; align-items: center; gap: 1.7rem; }
.nav-menu a { font-weight: 500; font-size: 0.97rem; color: var(--muted); transition: color 0.2s; }
.nav-menu a:hover { color: var(--text); }
.nav-cta { color: var(--ink-on-teal) !important; background: var(--grad-btn); padding: 0.5rem 1.2rem; border-radius: 100px; font-weight: 700; }
.nav-cta:hover { transform: translateY(-1px); }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 6px; }
.nav-toggle span { width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: transform 0.3s var(--ease), opacity 0.2s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative; z-index: 1; min-height: 100vh;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 5rem 1.5rem 4rem; overflow: hidden;
}
/* Aurora-Lichter */
.aurora { position: absolute; inset: 0; z-index: -1; overflow: hidden; pointer-events: none; }
.blob { position: absolute; border-radius: 50%; filter: blur(70px); opacity: 0.55; will-change: transform; }
.b1 { width: 46vw; height: 46vw; max-width: 620px; max-height: 620px; top: -8%; left: 8%; background: radial-gradient(circle, #22d3ee, transparent 65%); animation: drift1 18s ease-in-out infinite; }
.b2 { width: 42vw; height: 42vw; max-width: 560px; max-height: 560px; bottom: -10%; right: 6%; background: radial-gradient(circle, #ff4d8d, transparent 65%); animation: drift2 22s ease-in-out infinite; }
.b3 { width: 34vw; height: 34vw; max-width: 460px; max-height: 460px; top: 30%; left: 40%; background: radial-gradient(circle, #8b6cf0, transparent 65%); opacity: 0.4; animation: drift3 26s ease-in-out infinite; }
@keyframes drift1 { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(6%, 8%) scale(1.12); } }
@keyframes drift2 { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(-8%, -6%) scale(1.1); } }
@keyframes drift3 { 0%,100% { transform: translate(-50%,0) scale(1); } 50% { transform: translate(-42%, 6%) scale(1.15); } }

.hero-inner { position: relative; max-width: 820px; display: flex; flex-direction: column; align-items: center; }
.hero .eyebrow { margin-bottom: 1.6rem; }

.hero-logo-wrap { position: relative; display: grid; place-items: center; }
.hero-halo {
  position: absolute; width: 118%; aspect-ratio: 1; border-radius: 50%;
  background: conic-gradient(from 0deg, #22d3ee, #8b6cf0, #ff4d8d, #22d3ee);
  filter: blur(48px); opacity: 0.38; z-index: -1; animation: spin 24s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.hero-logo { position: relative; width: min(540px, 84vw); height: auto; filter: drop-shadow(0 12px 40px rgba(34, 211, 238, 0.25)); animation: floaty 8s ease-in-out infinite; }
.hero-logo.is-missing { display: none; }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

.hero-fallback { display: none; font-family: var(--font-display); font-weight: 900; line-height: 0.9; }
.hero-logo.is-missing ~ .hero-fallback { display: block; }
.hero-fallback .line-1 { display: block; font-size: clamp(4rem, 16vw, 9rem); font-style: italic; }
.hero-fallback .line-1, .hero-fallback .line-2 { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero-fallback .line-2 { display: block; font-size: clamp(1.8rem, 6vw, 3.6rem); letter-spacing: 0.04em; }

/* Equalizer */
.equalizer { display: flex; align-items: flex-end; gap: 5px; height: 26px; margin-top: 2rem; }
.equalizer span { width: 5px; height: 100%; border-radius: 3px; background: var(--grad); transform-origin: bottom; animation: eq 1.1s ease-in-out infinite; }
.equalizer span:nth-child(2) { animation-delay: 0.2s; }
.equalizer span:nth-child(3) { animation-delay: 0.4s; }
.equalizer span:nth-child(4) { animation-delay: 0.1s; }
.equalizer span:nth-child(5) { animation-delay: 0.3s; }
@keyframes eq { 0%,100% { transform: scaleY(0.3); } 50% { transform: scaleY(1); } }

.hero-tag { margin: 1.6rem auto 0; max-width: 36ch; font-size: clamp(1.1rem, 2.3vw, 1.35rem); color: var(--muted); }
.hero-actions { display: flex; gap: 0.9rem; justify-content: center; flex-wrap: wrap; margin-top: 2.2rem; }
.hero-tags { list-style: none; display: flex; gap: 0.6rem; justify-content: center; flex-wrap: wrap; margin-top: 2.4rem; }
.hero-tags li { font-size: 0.8rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); padding: 0.35rem 0.95rem; border: 1px solid var(--line); border-radius: 100px; }
.scroll-hint { position: absolute; bottom: 1.6rem; left: 50%; transform: translateX(-50%); font-size: 1.3rem; color: var(--teal); animation: bob 2.4s ease-in-out infinite; z-index: 2; }
@keyframes bob { 0%,100% { transform: translate(-50%, 0); } 50% { transform: translate(-50%, 8px); } }

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee { position: relative; z-index: 1; overflow: hidden; border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); padding: 1.4rem 0; background: var(--bg-2); }
.marquee-track { display: flex; gap: 2.5rem; white-space: nowrap; width: max-content; animation: marquee 28s linear infinite; }
.marquee-track span { font-family: var(--font-display); font-weight: 900; font-size: clamp(1.6rem, 4vw, 2.6rem); letter-spacing: 0.01em; }
.marquee-track .m-word { color: var(--text); }
.marquee-track .m-dot { color: var(--teal); }
.marquee-track .m-word.alt { color: transparent; -webkit-text-stroke: 1px var(--muted); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ============================================================
   BAND
   ============================================================ */
.band-grid { display: grid; grid-template-columns: 1.6fr 1fr; gap: 2.5rem; align-items: start; }
.band-copy .lead { font-size: 1.35rem; color: var(--text); font-family: var(--font-display); font-weight: 400; line-height: 1.4; margin-bottom: 1.2rem; }
.band-copy p { color: var(--muted); margin-bottom: 1.1rem; }

.voice-note { display: flex; align-items: center; gap: 0.75rem; margin-top: 1.6rem !important; padding: 0.9rem 1.1rem; background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); color: var(--text) !important; }
.voice-note em { color: var(--teal); font-style: italic; }
.voice-badge { flex: none; font-size: 0.7rem; font-weight: 800; letter-spacing: 0.1em; color: var(--ink-on-teal); background: var(--grad-btn); padding: 0.25rem 0.5rem; border-radius: 6px; }

.band-card { position: relative; background: linear-gradient(165deg, var(--card-hi), var(--card)); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 1.9rem; overflow: hidden; }
.band-card::before { content: ""; position: absolute; inset: 0 0 auto 0; height: 3px; background: var(--grad); }
.band-card h3 { font-family: var(--font-display); font-size: 1.4rem; margin-bottom: 1.2rem; }
.band-card dl { display: grid; gap: 0.9rem; }
.band-card dl div { display: flex; justify-content: space-between; gap: 1rem; padding-bottom: 0.9rem; border-bottom: 1px solid var(--line-soft); }
.band-card dt { color: var(--muted); font-size: 0.9rem; }
.band-card dd { text-align: right; font-weight: 500; }

/* ============================================================
   ANLÄSSE
   ============================================================ */
.occasion-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem; }
.occasion { position: relative; background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.7rem; transition: transform 0.3s var(--ease), border-color 0.3s, background 0.3s; overflow: hidden; }
.occasion::after { content: ""; position: absolute; inset: 0; border-radius: inherit; padding: 1px; background: var(--grad); -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); -webkit-mask-composite: xor; mask-composite: exclude; opacity: 0; transition: opacity 0.3s; pointer-events: none; }
.occasion:hover { transform: translateY(-5px); background: var(--card-hi); }
.occasion:hover::after { opacity: 1; }
.occ-ico { font-size: 1.8rem; display: block; margin-bottom: 0.7rem; }
.occasion h3 { font-family: var(--font-display); font-size: 1.28rem; margin-bottom: 0.4rem; }
.occasion p { color: var(--muted); font-size: 0.95rem; }

/* ============================================================
   BESETZUNG
   ============================================================ */
.lineup-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.lineup { position: relative; background: linear-gradient(165deg, var(--card-hi), var(--card)); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 2.1rem; transition: transform 0.3s var(--ease), border-color 0.3s; overflow: hidden; }
.lineup::before { content: ""; position: absolute; inset: 0 0 auto 0; height: 3px; background: var(--grad); opacity: 0.8; }
.lineup:hover { transform: translateY(-5px); border-color: var(--teal); }
.lineup-size { display: block; font-family: var(--font-display); font-weight: 900; font-size: clamp(2.6rem, 6vw, 3.6rem); line-height: 1; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.lineup h3 { font-family: var(--font-display); font-size: 1.5rem; margin-top: 0.5rem; }
.lineup-for { color: var(--teal); font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase; margin: 0.25rem 0 0.9rem; }
.lineup-desc { color: var(--muted); }

.tech-bar { margin-top: 1.1rem; display: flex; align-items: center; gap: 1.2rem; padding: 1.5rem 1.7rem; border: 1px solid var(--line); border-radius: var(--radius-lg); background: linear-gradient(120deg, rgba(34,211,238,0.08), rgba(255,77,141,0.06)); }
.tech-ico { font-size: 2rem; flex: none; }
.tech-bar strong { display: block; font-size: 1.08rem; margin-bottom: 0.2rem; }
.tech-bar p { color: var(--muted); font-size: 0.95rem; }

/* ============================================================
   MUSIK / GENRES
   ============================================================ */
.genre-cloud { display: flex; flex-wrap: wrap; gap: 0.8rem; }
.genre { font-family: var(--font-display); font-weight: 600; font-size: clamp(1.05rem, 2.6vw, 1.55rem); padding: 0.5rem 1.35rem; border: 1px solid var(--line); border-radius: 100px; color: var(--text); background: transparent; cursor: pointer; transition: background 0.25s, color 0.25s, border-color 0.25s, transform 0.25s var(--ease), box-shadow 0.25s; }
.genre:hover { transform: translateY(-3px) rotate(-1.5deg); border-color: var(--teal); color: var(--teal); }
.genre[aria-pressed="true"] { background: var(--grad-btn); color: var(--ink-on-teal); border-color: transparent; transform: translateY(-2px); box-shadow: 0 10px 30px -12px rgba(34,211,238,0.6); }

.genre-panel { margin-top: 2rem; border: 1px solid var(--line); border-radius: var(--radius-lg); background: linear-gradient(165deg, var(--card-hi), var(--card)); overflow: hidden; }
.genre-panel-head { display: flex; align-items: baseline; gap: 0.6rem; flex-wrap: wrap; padding: 1.4rem 1.6rem 0.6rem; }
.genre-panel-head h3 { font-family: var(--font-display); font-size: 1.5rem; }
.genre-panel-head span { color: var(--muted); font-size: 0.9rem; }
.genre-empty { padding: 1.6rem; color: var(--muted); }
.song-list { list-style: none; padding: 0.4rem 0.7rem 1.1rem; display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.2rem; }
.song { display: flex; align-items: baseline; gap: 0.7rem; padding: 0.75rem 0.95rem; border-radius: 12px; transition: background 0.2s; }
.song:hover { background: rgba(242,245,250,0.04); }
.song .note { color: var(--teal); font-size: 0.9rem; }
.song .title { font-weight: 600; }
.song .artist { color: var(--muted); font-size: 0.92rem; }
.song .sep { color: var(--muted); }
.song-list.swap { animation: fadeUp 0.35s var(--ease); }
@keyframes fadeUp { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

/* ============================================================
   VIDEO
   ============================================================ */
.video-frame { position: relative; aspect-ratio: 16 / 9; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); background: radial-gradient(circle at 50% 40%, rgba(34,211,238,0.16), transparent 60%), linear-gradient(160deg, var(--card-hi), var(--bg)); }
.video-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.video-facade { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1rem; background: transparent; border: 0; cursor: pointer; color: var(--text); }
.video-play { width: 88px; height: 88px; display: grid; place-items: center; border-radius: 50%; background: var(--grad-btn); color: var(--ink-on-teal); font-size: 1.9rem; padding-left: 6px; box-shadow: 0 14px 44px -12px rgba(34,211,238,0.85); transition: transform 0.3s var(--ease); }
.video-facade:hover .video-play { transform: scale(1.08); }
.video-hint { letter-spacing: 0.12em; text-transform: uppercase; font-size: 0.85rem; color: var(--muted); }
.video-consent { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.9rem; text-align: center; padding: 1.5rem; }
.video-consent-title { font-family: var(--font-display); font-size: 1.3rem; }

/* ============================================================
   GALERIE
   ============================================================ */
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 200px; gap: 1rem; }
.shot { position: relative; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); background: linear-gradient(160deg, var(--card-hi), var(--card)); }
.shot-wide { grid-column: span 2; grid-row: span 2; }
.shot-tall { grid-row: span 2; }
.shot img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.shot:hover img { transform: scale(1.06); }
.shot-ph { position: absolute; inset: 0; display: none; align-items: center; justify-content: center; color: var(--muted); font-size: 0.85rem; letter-spacing: 0.15em; text-transform: uppercase; }
.shot-ph::before { content: "♪"; position: absolute; font-size: 3rem; color: rgba(34, 211, 238, 0.22); font-family: var(--font-display); }
.shot.is-missing img { display: none; }
.shot.is-missing .shot-ph { display: flex; }

/* ============================================================
   KONTAKT
   ============================================================ */
.kontakt { max-width: var(--maxw); }
.kontakt-inner { position: relative; background: linear-gradient(165deg, var(--card-hi), var(--card)); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(2rem, 5vw, 3.5rem); overflow: hidden; }
.kontakt-inner::before { content: ""; position: absolute; inset: 0 0 auto 0; height: 3px; background: var(--grad); }
.kontakt .section-head { margin-bottom: 2rem; }
.contact-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.contact-card { display: flex; align-items: center; gap: 0.9rem; padding: 1.2rem 1.3rem; background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--radius); transition: transform 0.28s var(--ease), border-color 0.28s; }
.contact-card:hover { transform: translateY(-3px); border-color: var(--teal); }
.cc-ico { font-size: 1.5rem; }
.cc-body { display: flex; flex-direction: column; line-height: 1.3; flex: 1; }
.cc-body strong { font-size: 1.02rem; }
.cc-sub { color: var(--muted); font-size: 0.88rem; }
.cc-arrow { color: var(--teal); transition: transform 0.25s var(--ease); }
.contact-card:hover .cc-arrow { transform: translateX(4px); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { position: relative; z-index: 1; text-align: center; padding: 3.5rem 1.5rem 2.5rem; border-top: 1px solid var(--line-soft); }
.footer-tag { color: var(--muted); margin-top: 0.4rem; }
.social { display: flex; gap: 0.7rem; justify-content: center; flex-wrap: wrap; margin: 1.8rem 0; }
.social a { display: inline-flex; align-items: center; gap: 0.4rem; font-size: 0.92rem; font-weight: 500; color: var(--muted); padding: 0.55rem 1.1rem; border: 1px solid var(--line); border-radius: 100px; transition: color 0.2s, border-color 0.2s, background 0.2s; }
.social a:hover { color: var(--text); border-color: var(--teal); background: rgba(34,211,238,0.08); }
.copyright { color: var(--muted); font-size: 0.85rem; }
.legal-links { margin-top: 1rem; font-size: 0.85rem; color: var(--muted); }
.legal-links a { color: var(--muted); text-decoration: underline; }
.legal-links a:hover { color: var(--text); }

/* ============================================================
   COOKIE-BANNER
   ============================================================ */
.cookie-banner { position: fixed; inset: auto 1rem 1rem 1rem; z-index: 200; max-width: 660px; margin-inline: auto; background: rgba(17, 20, 29, 0.97); backdrop-filter: blur(16px); border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: 0 24px 70px -22px rgba(0, 0, 0, 0.8); animation: cookieIn 0.4s var(--ease); }
.cookie-banner[hidden] { display: none; }
@keyframes cookieIn { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }
.cookie-inner { padding: 1.3rem 1.4rem; }
.cookie-text strong { display: block; font-size: 1.05rem; margin-bottom: 0.35rem; }
.cookie-text p { color: var(--muted); font-size: 0.92rem; }
.cookie-text a { color: var(--teal); text-decoration: underline; }
.cookie-options { margin-top: 0.9rem; display: grid; gap: 0.5rem; }
.cookie-options[hidden] { display: none; }
.cookie-opt { display: flex; align-items: center; gap: 0.5rem; font-size: 0.92rem; color: var(--text); }
.cookie-opt span { color: var(--muted); }
.cookie-opt input { width: 16px; height: 16px; accent-color: var(--teal); }
.cookie-actions { margin-top: 1.1rem; display: flex; gap: 0.6rem; flex-wrap: wrap; justify-content: flex-end; }
.cookie-actions .btn { padding: 0.6rem 1.1rem; font-size: 0.92rem; }
#cookie-save[hidden] { display: none; }

/* ============================================================
   SCROLL-REVEAL
   ============================================================ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .band-grid { grid-template-columns: 1fr; }
  .occasion-grid { grid-template-columns: repeat(2, 1fr); }
  .lineup-grid { grid-template-columns: 1fr; }
  .tech-bar { align-items: flex-start; }
  .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 170px; }
  .shot-wide { grid-column: span 2; grid-row: span 1; }
  .shot-tall { grid-row: span 1; }
  .contact-cards { grid-template-columns: 1fr; }
  .song-list { grid-template-columns: 1fr; }

  .nav-toggle { display: flex; z-index: 60; }
  .nav-menu { position: fixed; inset: 0 0 0 auto; width: min(78vw, 320px); flex-direction: column; align-items: flex-start; justify-content: center; gap: 1.6rem; padding: 2rem 2.2rem; background: var(--surface); border-left: 1px solid var(--line); transform: translateX(100%); transition: transform 0.35s var(--ease); }
  .nav-menu.open { transform: translateX(0); }
  .nav-menu a { font-size: 1.15rem; }
}
@media (max-width: 560px) {
  .occasion-grid { grid-template-columns: 1fr; }
  .hero { min-height: 92vh; }
  .cookie-actions { justify-content: stretch; }
  .cookie-actions .btn { flex: 1 1 auto; justify-content: center; }
}

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