/* ══════════════════════════════════════════
   ReChained – Rock Coverband Website
   css/style.css
═══════════════════════════════════════════ */

/* ── Variables ── */
:root {
  --bg:         #0d0d0d;
  --surface:    #141414;
  --surface2:   #1a1a1a;
  --teal:       #29c7c2;
  --teal-dim:   rgba(41, 199, 194, 0.1);
  --teal-mid:   rgba(41, 199, 194, 0.2);
  --teal-glow:  0 0 50px rgba(41, 199, 194, 0.22);
  --white:      #f0f0f0;
  --text:       #b8b8b8;
  --muted:      #666;
  --border:     #242424;
  --nav-h:      144px;
  --r:          3px;
  --ease:       cubic-bezier(0.4, 0, 0.2, 1);
  --t:          0.3s;
  --max-w:      1200px;
  --font-head:  'Oswald', sans-serif;
  --font-body:  'Inter', sans-serif;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

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

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

/* ── Utilities ── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.75rem;
}

.teal { color: var(--teal); }

.section { padding: 110px 0; }

.section-dark { background: var(--surface); }

.section-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 1rem;
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 5rem;
}

.section-sub {
  margin-top: 1.25rem;
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.75;
}

/* ── Typography ── */
h1, h2, h3 {
  font-family: var(--font-head);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.05;
  letter-spacing: 0.02em;
  color: var(--white);
}

h2 { font-size: clamp(2.4rem, 5vw, 3.8rem); }
h3 { font-size: 1.35rem; letter-spacing: 0.05em; }

p  { color: var(--text); }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 2rem;
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 2px solid transparent;
  border-radius: var(--r);
  cursor: pointer;
  transition: background var(--t) var(--ease),
              color var(--t) var(--ease),
              border-color var(--t) var(--ease),
              box-shadow var(--t) var(--ease);
  white-space: nowrap;
}

.btn-primary {
  background: var(--teal);
  color: #0a0a0a;
  border-color: var(--teal);
}
.btn-primary:hover {
  background: transparent;
  color: var(--teal);
  box-shadow: var(--teal-glow);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.25);
}
.btn-ghost:hover {
  border-color: var(--teal);
  color: var(--teal);
}

.btn-large {
  padding: 1.1rem 2.75rem;
  font-size: 1rem;
}

/* ── Scroll Reveal ── */
.reveal-up,
.reveal-left,
.reveal-right {
  opacity: 0;
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
  transition-delay: var(--d, 0s);
}
.reveal-up    { transform: translateY(45px); }
.reveal-left  { transform: translateX(-45px); }
.reveal-right { transform: translateX(45px); }

.reveal-up.visible,
.reveal-left.visible,
.reveal-right.visible {
  opacity: 1;
  transform: none;
}

/* ── Navigation ── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  height: var(--nav-h);
  transition: background var(--t) var(--ease),
              box-shadow var(--t) var(--ease);
}

#navbar.scrolled {
  background: rgba(13, 13, 13, 0.93);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--border);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.75rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  transition: opacity var(--t);
}
.nav-logo:hover { opacity: 0.8; }

.nav-logo-img {
  height: 140px;
  width: auto;
  max-width: 240px;
  object-fit: contain;
  border-radius: 6px;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.25rem;
}

.nav-link {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  position: relative;
  transition: color var(--t);
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--teal);
  transition: width var(--t) var(--ease);
}
.nav-link:hover,
.nav-link[aria-current="true"] {
  color: var(--white);
}
.nav-link:hover::after,
.nav-link[aria-current="true"]::after {
  width: 100%;
}

.nav-cta {
  padding: 0.45rem 1.2rem;
  background: var(--teal);
  color: #0a0a0a !important;
  border-radius: var(--r);
  font-weight: 600;
  transition: background var(--t), color var(--t), box-shadow var(--t);
}
.nav-cta::after { display: none !important; }
.nav-cta:hover {
  background: transparent;
  color: var(--teal) !important;
  box-shadow: 0 0 0 1px var(--teal), var(--teal-glow);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 201;
}
.hamburger-line {
  display: block;
  width: 22px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--t) var(--ease), opacity var(--t);
  transform-origin: center;
}
.hamburger.open .hamburger-line:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open .hamburger-line:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open .hamburger-line:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Hero ── */
#hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(10,10,10,0.88) 0%,
    rgba(10,10,10,0.6) 55%,
    rgba(10,10,10,0.3) 100%
  );
}

/* Subtle grain texture for raw/rock feel */
.hero-grain {
  position: absolute;
  inset: 0;
  opacity: 0.06;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.75rem;
  padding-top: var(--nav-h);
}

/* Hero reveal animations */
.hero-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
  transition-delay: var(--d, 0s);
}
.hero-reveal.visible {
  opacity: 1;
  transform: none;
}

.hero-eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 1rem;
}

.hero-title {
  font-size: clamp(4.5rem, 13vw, 11rem);
  font-weight: 700;
  line-height: 0.88;
  color: var(--white);
  margin-bottom: 1.2rem;
  text-shadow: 0 4px 40px rgba(0,0,0,0.5);
}

.hero-tagline {
  font-family: var(--font-head);
  font-size: clamp(0.9rem, 2.2vw, 1.3rem);
  font-weight: 300;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: rgba(240,240,240,0.7);
  margin-bottom: 1.5rem;
}

.hero-sub {
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  color: var(--text);
  max-width: 460px;
  line-height: 1.7;
  margin-bottom: 2.75rem;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.scroll-hint-line {
  display: block;
  width: 1px;
  height: 55px;
  background: linear-gradient(to bottom, transparent, var(--teal));
  animation: scrollPulse 2.2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%   { opacity: 0; transform: scaleY(0); transform-origin: top; }
  50%  { opacity: 1; }
  100% { opacity: 0; transform: scaleY(1); transform-origin: top; }
}

/* ── Story ── */
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.story-text h2 {
  font-size: clamp(2rem, 3.8vw, 3.2rem);
  margin-bottom: 1.75rem;
}

.story-text p {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--text);
  margin-bottom: 1rem;
}

.story-kicker {
  font-style: italic;
  font-size: 0.95rem;
  color: var(--muted);
  border-left: 3px solid var(--teal);
  padding-left: 1.25rem;
  margin-top: 1.75rem;
  line-height: 1.75;
}
.story-kicker strong { color: var(--white); font-style: normal; }

.story-image {
  position: relative;
}

.story-img-frame {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: 2px;
}
.story-img-frame img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.7s var(--ease);
}
.story-img-frame:hover img { transform: scale(1.04); }
.story-img-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 0 1px rgba(41,199,194,0.18);
  pointer-events: none;
  border-radius: 2px;
}

.story-badge {
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;
  width: 92px; height: 92px;
  border-radius: 50%;
  background: var(--teal);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  box-shadow: 0 8px 30px rgba(41,199,194,0.35);
}
.badge-num {
  font-family: var(--font-head);
  font-size: 2.1rem;
  font-weight: 700;
  color: #0a0a0a;
  line-height: 1;
}
.badge-text {
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #0a0a0a;
  text-align: center;
  line-height: 1.3;
}

/* ── Band ── */
.band-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.member-card {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 2px;
  overflow: hidden;
  transition: transform var(--t) var(--ease),
              border-color var(--t),
              box-shadow var(--t) var(--ease);
}
.member-card:hover {
  transform: translateY(-8px);
  border-color: rgba(41,199,194,0.5);
  box-shadow: 0 24px 55px rgba(0,0,0,0.55), var(--teal-glow);
}

.member-img-wrap {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
}
.member-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: grayscale(25%) brightness(0.92);
  transition: transform 0.65s var(--ease), filter 0.4s;
}
.member-card:hover .member-img-wrap img {
  transform: scale(1.06);
  filter: grayscale(0%) brightness(1);
}

.member-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,13,13,0.75) 0%, transparent 55%);
}

.member-info {
  padding: 1.2rem 1.3rem 1.5rem;
}

.member-role {
  display: block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.3rem;
}

.member-name {
  font-size: 1.55rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--white);
  margin-bottom: 0.7rem;
}

.member-bio {
  font-size: 0.83rem;
  color: var(--muted);
  line-height: 1.65;
}

/* ── Live / Gigs ── */
.gigs-list {
  max-width: 820px;
  margin: 0 auto 3.5rem;
  border: 1px solid var(--border);
  border-radius: 2px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: var(--border);
}

.gig-item {
  display: grid;
  grid-template-columns: 90px 1fr auto;
  align-items: center;
  gap: 2.5rem;
  padding: 2rem 2.5rem;
  background: var(--bg);
  transition: background var(--t);
  cursor: default;
}
.gig-item:hover { background: var(--surface2); }

.gig-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
}
.gig-day {
  font-family: var(--font-head);
  font-size: 3.2rem;
  font-weight: 700;
  color: var(--teal);
  line-height: 1;
}
.gig-month {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 2px;
}
.gig-year {
  font-size: 0.65rem;
  color: var(--muted);
  opacity: 0.4;
}

.gig-venue {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.03em;
  margin-bottom: 0.3rem;
}

.gig-location {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.83rem;
  color: var(--muted);
}
.gig-location svg { flex-shrink: 0; color: var(--teal); }

.gig-tag {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
  border: 1px solid rgba(41,199,194,0.4);
  padding: 0.3rem 0.75rem;
  border-radius: 100px;
  white-space: nowrap;
}

.booking-teaser {
  max-width: 580px;
  margin: 0 auto;
  text-align: center;
  padding: 2.75rem;
  border: 1px dashed var(--border);
  border-radius: 2px;
}
.booking-teaser p {
  font-size: 1.05rem;
  color: var(--muted);
  margin-bottom: 1.75rem;
  line-height: 1.7;
}

/* ── Gallery ── */
@keyframes gallery-float {
  0%, 100% { transform: scale(1.03) translate( 0px,  0px); }
  25%       { transform: scale(1.05) translate( 3px, -4px); }
  50%       { transform: scale(1.05) translate(-2px,  3px); }
  75%       { transform: scale(1.04) translate( 2px,  1px); }
}

/* CSS columns → volle natürliche Bildproportionen, kein Anschnitt */
.gallery-grid {
  columns: 3;
  column-gap: 6px;
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: 6px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border-radius: 2px;
  background: var(--surface2);
  border: none;
  padding: 0;
  display: block;
  width: 100%;
}

/* Drift-Animation – jedes Tile läuft in eigenem Rhythmus */
.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  filter: brightness(0.88);
  animation: gallery-float 14s ease-in-out infinite;
  transition: transform 0.55s var(--ease), filter 0.4s;
}
.gallery-item:nth-child(1)  img { animation-duration: 15s; animation-delay:   0s; }
.gallery-item:nth-child(2)  img { animation-duration: 17s; animation-delay:  -3s; }
.gallery-item:nth-child(3)  img { animation-duration: 13s; animation-delay:  -6s; }
.gallery-item:nth-child(4)  img { animation-duration: 18s; animation-delay:  -1s; }
.gallery-item:nth-child(5)  img { animation-duration: 12s; animation-delay:  -9s; }
.gallery-item:nth-child(6)  img { animation-duration: 16s; animation-delay:  -4s; }
.gallery-item:nth-child(7)  img { animation-duration: 14s; animation-delay:  -7s; }
.gallery-item:nth-child(8)  img { animation-duration: 19s; animation-delay:  -2s; }
.gallery-item:nth-child(9)  img { animation-duration: 11s; animation-delay:  -5s; }
.gallery-item:nth-child(10) img { animation-duration: 16s; animation-delay:  -8s; }

/* Hover überschreibt Animation sanft per Transition */
.gallery-item:hover img,
.gallery-item:focus-visible img {
  transform: scale(1.06);
  filter: brightness(1);
  animation-play-state: paused;
}

.gallery-hover {
  position: absolute;
  inset: 0;
  background: rgba(41, 199, 194, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--t);
  color: white;
}
.gallery-item:hover .gallery-hover,
.gallery-item:focus-visible .gallery-hover {
  opacity: 1;
}
.gallery-item:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 2px;
}

/* Reduced-motion: Animation deaktivieren */
@media (prefers-reduced-motion: reduce) {
  .gallery-item img { animation: none; }
}

/* ── Booking Section ── */
.booking-section {
  border-top: 1px solid var(--border);
  background: radial-gradient(ellipse at 50% 100%, rgba(41,199,194,0.06) 0%, transparent 65%);
}

.booking-content {
  text-align: center;
  max-width: 580px;
  margin: 0 auto;
}
.booking-content h2 {
  font-size: clamp(2.5rem, 5vw, 4.2rem);
  margin-bottom: 1.5rem;
}
.booking-intro {
  font-size: 1.1rem;
  color: var(--muted);
  margin-bottom: 2.25rem;
  line-height: 1.7;
}
.booking-tags {
  margin-top: 1.5rem;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  opacity: 0.55;
}

/* ── Footer ── */
#footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 3.5rem 0;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  transition: opacity var(--t);
}
.footer-logo:hover { opacity: 0.75; }

.footer-logo-img {
  height: 140px;
  width: auto;
  max-width: 240px;
  object-fit: contain;
  border-radius: 6px;
  display: block;
}

.footer-sub {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.footer-nav {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 0.25rem;
}
.footer-nav a {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color var(--t);
}
.footer-nav a:hover { color: var(--teal); }
.footer-sep { color: var(--border); }

.footer-copy {
  font-size: 0.7rem;
  color: var(--muted);
  opacity: 0.35;
  margin-top: 0.5rem;
}

.footer-social {
  display: flex;
  gap: 1.25rem;
  align-items: center;
  margin-top: 0.25rem;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--muted);
  font-size: 0.82rem;
  letter-spacing: 0.05em;
  transition: color var(--t), transform var(--t);
  text-decoration: none;
}
.social-link svg { flex-shrink: 0; }
.social-link:hover {
  color: var(--teal);
  transform: translateY(-2px);
}

/* ── Repertoire ── */
.repertoire-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3.5rem;
}

.repertoire-block {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 2rem 1.75rem 2.25rem;
  transition: border-color var(--t), box-shadow var(--t);
}
.repertoire-block:hover {
  border-color: rgba(41,199,194,0.35);
  box-shadow: 0 16px 40px rgba(0,0,0,0.4);
}

.repertoire-era {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal);
  border: 1px solid rgba(41,199,194,0.35);
  padding: 0.2rem 0.65rem;
  border-radius: 100px;
  margin-bottom: 1rem;
}

.repertoire-genre {
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--white);
  margin-bottom: 0.85rem;
}

.repertoire-desc {
  font-size: 0.88rem;
  line-height: 1.75;
  color: var(--muted);
  margin-bottom: 1.25rem;
}

.repertoire-tracks {
  list-style: none;
  border-top: 1px solid var(--border);
  padding-top: 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
.repertoire-tracks li {
  font-size: 0.82rem;
  color: var(--text);
  padding-left: 1.1rem;
  position: relative;
}
.repertoire-tracks li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: var(--teal);
}

.repertoire-note {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  padding: 2.5rem;
  border: 1px dashed var(--border);
  border-radius: 2px;
}
.repertoire-note p {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--muted);
}
.repertoire-note strong { color: var(--white); }

/* ── Presse / Downloads ── */
.press-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.press-card {
  display: flex;
  flex-direction: column;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 2rem 1.75rem 1.75rem;
  text-decoration: none;
  color: inherit;
  transition: border-color var(--t), box-shadow var(--t), transform var(--t) var(--ease);
  cursor: pointer;
}
.press-card:hover {
  border-color: rgba(41,199,194,0.45);
  box-shadow: 0 20px 50px rgba(0,0,0,0.5), var(--teal-glow);
  transform: translateY(-6px);
}

.press-card-icon {
  color: var(--teal);
  margin-bottom: 1.5rem;
}

.press-card-body {
  flex: 1;
}

.press-card-label {
  display: block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.5rem;
}

.press-card-title {
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--white);
  margin-bottom: 0.7rem;
  text-transform: uppercase;
}

.press-card-desc {
  font-size: 0.85rem;
  line-height: 1.7;
  color: var(--muted);
}

.press-card-dl {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  border-top: 1px solid var(--border);
  padding-top: 1.25rem;
  width: 100%;
  transition: gap 0.2s;
}
.press-card:hover .press-card-dl { gap: 0.8rem; }

/* ── Lightbox ── */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox[hidden] { display: none; }

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 5, 5, 0.96);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.lightbox-stage {
  position: relative;
  z-index: 1;
  max-width: min(90vw, 1100px);
  max-height: 88vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox-stage img {
  max-width: 100%;
  max-height: 88vh;
  object-fit: contain;
  border: 1px solid var(--border);
  border-radius: 2px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.7);
}

.lb-close {
  position: absolute;
  top: 1.25rem; right: 1.25rem;
  z-index: 2;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  color: var(--white);
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--t), border-color var(--t);
}
.lb-close:hover {
  background: rgba(41,199,194,0.15);
  border-color: var(--teal);
}

.lb-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  color: var(--white);
  width: 52px; height: 52px;
  border-radius: var(--r);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--t), border-color var(--t);
}
.lb-nav:hover {
  background: var(--teal-dim);
  border-color: var(--teal);
}
.lb-prev { left: 1.25rem; }
.lb-next { right: 1.25rem; }

.lb-counter {
  position: absolute;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: var(--muted);
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .band-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 700px;
    margin: 0 auto;
  }

  .story-grid {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }

  .story-image {
    max-width: 480px;
    margin: 0 auto;
  }

  .repertoire-grid {
    grid-template-columns: 1fr;
    max-width: 580px;
    margin: 0 auto 3.5rem;
  }

  .press-grid {
    grid-template-columns: 1fr;
    max-width: 580px;
    margin: 0 auto;
  }
}

/* ── Mobile Hero: Bild oben, alle Musiker sichtbar ── */
@media (max-width: 768px) {
  #hero {
    flex-direction: column;
    height: auto;
    min-height: unset;
  }

  .hero-bg {
    position: relative;
    width: 100%;
    margin-top: var(--nav-h);
    aspect-ratio: 4 / 3;
    flex-shrink: 0;
  }

  .hero-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
  }

  .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
      to bottom,
      rgba(10,10,10,0.05) 0%,
      rgba(10,10,10,0.15) 70%,
      rgba(10,10,10,0.85) 100%
    );
  }

  .hero-grain { position: absolute; }

  .hero-content {
    position: relative;
    z-index: 1;
    padding-top: 2rem;
    padding-bottom: 4rem;
    background: var(--bg);
  }

  .hero-title {
    font-size: clamp(3rem, 18vw, 5.5rem);
  }

  .scroll-hint { display: none; }
}

@media (max-width: 768px) {
  :root { --nav-h: 68px; }

  .nav-logo-img {
    height: 56px;
  }

  .hamburger { display: flex; }

  .nav-links {
    position: fixed;
    top: var(--nav-h); left: 0; right: 0;
    background: rgba(10,10,10,0.97);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    flex-direction: column;
    gap: 0;
    padding: 0.75rem 0 1.5rem;
    transform: translateY(-105%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.35s var(--ease), opacity 0.35s;
    border-bottom: 1px solid var(--border);
  }
  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-link {
    display: block;
    padding: 0.9rem 2rem;
    font-size: 0.9rem;
    color: var(--text);
  }
  .nav-link::after { display: none; }

  .nav-cta {
    display: block;
    margin: 0.75rem 2rem 0;
    text-align: center;
  }

  .section { padding: 75px 0; }

  .band-grid {
    grid-template-columns: 1fr;
    max-width: 380px;
  }

  .gallery-grid {
    columns: 2;
  }

  .gig-item {
    grid-template-columns: 70px 1fr;
    gap: 1.25rem;
    padding: 1.5rem;
  }
  .gig-tag { grid-column: 2; }
  .gig-day { font-size: 2.5rem; }

  .hero-buttons {
    flex-direction: column;
    align-items: flex-start;
  }

  .story-badge {
    width: 76px; height: 76px;
    bottom: -1rem; left: -1rem;
  }
  .badge-num { font-size: 1.75rem; }

  .lb-prev { left: 0.5rem; }
  .lb-next { right: 0.5rem; }
}

@media (max-width: 480px) {
  .gallery-grid {
    columns: 1;
  }

  .booking-teaser { padding: 2rem 1.25rem; }

  .gig-item {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
  .gig-date {
    flex-direction: row;
    gap: 0.5rem;
    align-items: baseline;
  }
  .gig-day { font-size: 2rem; }
}

/* ── Reduced motion ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal-up, .reveal-left, .reveal-right,
  .hero-reveal {
    opacity: 1;
    transform: none;
  }
}
