/* ========================================
   LOCAL FONTS
   ======================================== */

/* DM Sans – normal */
@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('../fonts/dm-sans-normal-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('../fonts/dm-sans-normal-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* DM Sans – italic */
@font-face {
  font-family: 'DM Sans';
  font-style: italic;
  font-weight: 100 900;
  font-display: swap;
  src: url('../fonts/dm-sans-italic-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'DM Sans';
  font-style: italic;
  font-weight: 100 900;
  font-display: swap;
  src: url('../fonts/dm-sans-italic-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* Syne */
@font-face {
  font-family: 'Syne';
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url('../fonts/syne-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Syne';
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url('../fonts/syne-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* ========================================
   JAZOUM – Funky Dance Grooves
   Light warm theme with crimson (#970c2a) accent
   ======================================== */

:root {
  --bg: #faf8f6;
  --bg-elevated: #ffffff;
  --bg-card: #f0edeb;
  --text: #1a1210;
  --text-muted: #6b5e57;
  --accent: #970c2a;
  --accent-hover: #b81035;
  --accent-dim: rgba(151, 12, 42, 0.08);
  --border: rgba(26, 18, 16, 0.1);
  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --container: 1120px;
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 6rem;
  --radius: 12px;
  --radius-sm: 8px;
}

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

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

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

img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--accent-hover); }
ul { list-style: none; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

/* ========================================
   NAVIGATION
   ======================================== */
.main-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(250, 248, 246, 0.9);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s;
}

.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--space-md);
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.nav-logo-img {
  height: 58px;
  width: auto;
}

.nav-links {
  display: flex;
  gap: var(--space-md);
}

.nav-links a {
  color: var(--text-muted);
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: color 0.2s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

/* Mobile toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  transition: all 0.3s;
}

/* ========================================
   HERO – dark dramatic area with crimson glow
   ======================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: #1a1210;
  color: #fafaf9;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 40%, rgba(151, 12, 42, 0.3) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 70%, rgba(151, 12, 42, 0.15) 0%, transparent 50%);
}

/* Subtle grain overlay */
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  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)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: var(--space-xl) var(--space-md);
  animation: heroFadeIn 1s ease-out;
}

@keyframes heroFadeIn {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-label {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--space-sm);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(4rem, 12vw, 10rem);
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: -0.03em;
  margin-bottom: var(--space-xs);
  background: linear-gradient(135deg, #fafaf9 40%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-title img {
  width: 640px;
  max-width: 100%;
  height: auto;
}

.hero-subtitle {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  font-weight: 400;
  color: #a8a29e;
  margin-bottom: var(--space-md);
}

.hero-quote {
  max-width: 540px;
  margin: 0 auto var(--space-lg);
  font-style: italic;
  font-size: 1.05rem;
  color: #a8a29e;
  border-left: 3px solid var(--accent);
  padding-left: var(--space-sm);
  text-align: left;
}

.hero-quote cite {
  display: block;
  margin-top: var(--space-xs);
  font-size: 0.85rem;
  color: var(--accent);
  font-style: normal;
}

.hero-scroll {
  position: absolute;
  bottom: var(--space-md);
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s ease-in-out infinite;
}

.hero-scroll a { color: #a8a29e; }
.hero-scroll a:hover { color: var(--accent); }

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ========================================
   BUTTONS
   ======================================== */
.btn {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: 50px;
  transition: all 0.25s ease;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
}

.btn-primary:hover {
  background: var(--accent-hover);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(151, 12, 42, 0.25);
}

.btn-outline {
  border: 2px solid var(--border);
  color: var(--text);
  background: transparent;
  margin-left: var(--space-sm);
}

.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* Hero-specific outline button: light text on dark bg */
.hero .btn-outline {
  border-color: rgba(255, 255, 255, 0.3);
  color: #fafaf9;
}

.hero .btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.btn-small {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 10px 20px;
  border-radius: 50px;
  border: 1px solid var(--accent);
  color: var(--accent);
  transition: all 0.2s;
}

.btn-small:hover {
  background: var(--accent);
  color: #fff;
}

/* ========================================
   SECTIONS
   ======================================== */
.section {
  padding: var(--space-xl) 0;
}

.section-label {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--space-xs);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-lg);
  line-height: 1.1;
}

.subsection-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: var(--space-md);
  color: var(--text);
}

/* ========================================
   INFO SECTION
   ======================================== */
.section-info {
  background: var(--bg-elevated);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.info-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: var(--space-lg);
  align-items: start;
}

.info-lead {
  font-size: 1.15rem;
  color: var(--text);
  margin-bottom: var(--space-sm);
}

.info-text p {
  color: var(--text-muted);
  margin-bottom: var(--space-sm);
}

.info-tagline {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--accent) !important;
  font-size: 1.05rem;
}

.ref-block {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: var(--space-md);
  border: 1px solid var(--border);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.ref-block h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: var(--space-md);
}

.ref-category { margin-bottom: var(--space-md); }
.ref-category:last-child { margin-bottom: 0; }

.ref-category h4 {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--space-xs);
}

.ref-category ul li {
  font-size: 0.9rem;
  color: var(--text-muted);
  padding: 3px 0;
}

/* ========================================
   REPERTOIRE
   ======================================== */
.section-repertoire {
  padding: var(--space-lg) 0;
  border-bottom: 1px solid var(--border);
}

.repertoire-inner {
  max-width: 700px;
}

.repertoire-inner h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: var(--space-sm);
}

.repertoire-inner p {
  color: var(--text-muted);
  margin-bottom: var(--space-md);
}

/* ========================================
   TERMINE / GIGS
   ======================================== */
.section-termine {
  background: var(--bg);
}

.gigs-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.gig-card {
  display: flex;
  gap: var(--space-md);
  padding: var(--space-md);
  background: var(--bg-elevated);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.gig-card:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(151, 12, 42, 0.08);
}

.gig-future {
  border-left: 4px solid var(--accent);
}

.gig-date-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 70px;
  text-align: center;
}

.gig-day {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
  color: var(--accent);
}

.gig-month {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text);
}

.gig-year {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.gig-venue {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.gig-venue a {
  color: var(--text);
}

.gig-venue a:hover {
  color: var(--accent);
}

.gig-meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.gig-meta span::before {
  content: '';
}

.gig-time { color: var(--accent); font-weight: 500; }
.gig-enddate { color: var(--accent); font-weight: 500; }
.gig-address { font-weight: 700; }

.gig-description {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.past-gigs-toggle {
  margin-top: var(--space-lg);
}

.past-gigs-toggle summary {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  cursor: pointer;
  padding: var(--space-sm) 0;
  transition: color 0.2s;
}

.past-gigs-toggle summary:hover {
  color: var(--accent);
}

.gigs-past {
  margin-top: var(--space-sm);
}

.gig-past-card {
  opacity: 0.6;
  border-left: 4px solid var(--border);
}

.gig-past-card:hover {
  opacity: 0.85;
}

.no-gigs {
  color: var(--text-muted);
  font-size: 1.1rem;
  padding: var(--space-lg) 0;
  text-align: center;
}

/* ========================================
   BAND MEMBERS
   ======================================== */
.section-band {
  background: var(--bg-elevated);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.band-formations {
  color: var(--text-muted);
  max-width: 640px;
  margin-bottom: var(--space-lg);
}

.members-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: var(--space-md);
}

.member-card {
  text-align: center;
}

.member-photo {
  width: 100%;
  aspect-ratio: 2/3;
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: var(--space-sm);
  position: relative;
}

.member-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  filter: grayscale(30%);
}

.member-card:hover .member-photo img {
  transform: scale(1.05);
  filter: grayscale(0%);
}

.member-name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 2px;
}

.member-instrument {
  font-size: 0.85rem;
  color: var(--accent);
  font-weight: 500;
}

/* ========================================
   MEDIEN / VIDEOS
   ======================================== */
.section-medien {
  background: var(--bg);
}

.videos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--space-md);
  margin-bottom: var(--space-md);
}

.video-card {
  display: block;
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.video-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(151, 12, 42, 0.1);
}

.video-thumb {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}

.video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.video-card:hover .video-thumb img {
  transform: scale(1.05);
}

.video-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(26, 18, 16, 0.3);
  color: white;
  opacity: 0.8;
  transition: opacity 0.3s;
}

.video-card:hover .video-play {
  opacity: 1;
  color: var(--accent);
}

.video-title {
  display: block;
  padding: var(--space-sm);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  background: var(--bg-card);
}

.more-link {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: var(--space-xl);
}

/* Album */
.album-block {
  display: flex;
  gap: var(--space-md);
  align-items: start;
  background: var(--bg-elevated);
  border-radius: var(--radius);
  padding: var(--space-md);
  border: 1px solid var(--border);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.album-cover {
  flex-shrink: 0;
  width: 200px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.album-info h4 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: var(--space-sm);
}

.album-type {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  vertical-align: middle;
}

.tracklist {
  list-style: decimal;
  padding-left: 1.5rem;
  margin-bottom: var(--space-sm);
}

.tracklist li {
  padding: 4px 0;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.album-info p {
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* ========================================
   GALLERY
   ======================================== */
.section-fotos {
  background: var(--bg-elevated);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: var(--space-sm);
}

.gallery-item {
  border-radius: var(--radius-sm);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-item figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--space-sm);
  background: linear-gradient(transparent, rgba(26, 18, 16, 0.85));
  font-size: 0.8rem;
  color: #e7e5e4;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.gallery-item:hover figcaption {
  transform: translateY(0);
}

.photo-credit {
  color: var(--accent);
}

/* ========================================
   KONTAKT
   ======================================== */
.section-kontakt {
  background: var(--bg);
}

.kontakt-grid {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: var(--space-lg);
  margin-bottom: var(--space-lg);
}

.kontakt-tagline {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: var(--space-md);
  line-height: 1.4;
}

.kontakt-channels {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.kontakt-item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  color: var(--text-muted);
  padding: var(--space-sm);
  border-radius: var(--radius-sm);
  transition: background 0.2s, color 0.2s;
}

.kontakt-item:hover {
  background: var(--bg-card);
  color: var(--text);
}

.kontakt-item svg {
  flex-shrink: 0;
  color: var(--accent);
}

.kontakt-downloads h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: var(--space-sm);
}

.download-link {
  display: block;
  padding: 10px var(--space-sm);
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
  transition: color 0.2s, padding-left 0.2s;
  font-size: 0.9rem;
}

.download-link:hover {
  color: var(--accent);
  padding-left: var(--space-md);
}

.kontakt-cta {
  text-align: center;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-muted);
}

/* ========================================
   FOOTER
   ======================================== */
.site-footer {
  padding: var(--space-lg) 0 var(--space-md);
  border-top: 1px solid var(--border);
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: var(--space-md);
  margin-bottom: var(--space-md);
}

.footer-logo {
  display: block;
  margin-bottom: 4px;
  width: 200px;
  height: auto;
}

.footer-brand p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-links {
  display: flex;
  gap: var(--space-md);
}

.footer-links a {
  color: var(--text-muted);
  font-size: 0.85rem;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--accent);
}

.footer-legal {
  display: flex;
  gap: var(--space-md);
}

.footer-legal a {
  color: var(--text-muted);
  font-size: 0.85rem;
  transition: color 0.2s;
}

.footer-legal a:hover {
  color: var(--accent);
}

.footer-copy {
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-muted);
  padding-top: var(--space-md);
  border-top: 1px solid var(--border);
}

/* ========================================
   LEGAL
   ======================================== */
.section-legal {
  display: none;
  background:
    radial-gradient(circle at top right, rgba(176, 97, 68, 0.08), transparent 32%),
    linear-gradient(180deg, #f7f2ee 0%, #f3ece7 100%);
}

.section-legal.visible {
  display: block;
}

.legal-stack {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-md);
}

.legal-card {
  scroll-margin-top: 110px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(146, 111, 86, 0.2);
  border-radius: var(--radius);
  padding: var(--space-lg);
  box-shadow: 0 24px 64px rgba(37, 26, 23, 0.08);
}

.section-legal .section-title {
  font-size: clamp(1.6rem, 3vw, 2rem);
}

.legal-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: var(--space-xs);
}

.legal-meta {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: var(--space-md);
}

.legal-card h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--accent);
  margin-top: var(--space-md);
  margin-bottom: var(--space-xs);
}

.legal-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: var(--space-sm);
}

.legal-card a {
  color: var(--accent);
}

/* ========================================
   LIGHTBOX
   ======================================== */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: rgba(15, 10, 10, 0.93);
  display: none;
  align-items: center;
  justify-content: center;
  padding: var(--space-md);
  cursor: zoom-out;
}

.lightbox.active {
  display: flex;
}

.lightbox-inner {
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  cursor: default;
}

.lightbox-img {
  max-width: 100%;
  max-height: 82vh;
  object-fit: contain;
  border-radius: var(--radius-sm);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.5);
}

.lightbox-caption {
  color: #e7e5e4;
  font-size: 0.85rem;
  text-align: center;
  margin: 0;
}

.lightbox-close {
  position: fixed;
  top: var(--space-md);
  right: var(--space-md);
  background: none;
  border: none;
  color: #e7e5e4;
  font-size: 2rem;
  cursor: pointer;
  transition: color 0.2s;
  line-height: 1;
  z-index: 301;
}

.lightbox-close:hover {
  color: #fff;
}

.lightbox-prev,
.lightbox-next {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #e7e5e4;
  font-size: 4rem;
  line-height: 1;
  cursor: pointer;
  padding: 0 var(--space-sm);
  transition: color 0.2s;
  z-index: 301;
  user-select: none;
}

.lightbox-prev { left: var(--space-md); }
.lightbox-next { right: var(--space-md); }

.lightbox-prev:hover,
.lightbox-next:hover {
  color: #fff;
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 900px) {
  .info-grid {
    grid-template-columns: 1fr;
  }

  .kontakt-grid {
    grid-template-columns: 1fr;
  }

  .members-grid {
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  }

  .album-block {
    flex-direction: column;
  }

  .album-cover {
    width: 160px;
  }

  .legal-stack {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: rgba(250, 248, 246, 0.97);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: var(--space-md);
    gap: 0;
    transform: translateY(-120%);
    transition: transform 0.35s ease;
  }

  .nav-links.open {
    transform: translateY(0);
  }

  .nav-links a {
    display: block;
    padding: var(--space-sm) 0;
    border-bottom: 1px solid var(--border);
    font-size: 1rem;
  }

  .nav-links a::after {
    display: none;
  }

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

  .btn-outline {
    margin-left: 0;
    margin-top: var(--space-sm);
  }

  .hero-content .btn {
    display: block;
    text-align: center;
  }

  .gig-card {
    flex-direction: column;
    gap: var(--space-sm);
  }

  .gig-date-block {
    flex-direction: row;
    gap: var(--space-xs);
    justify-content: flex-start;
  }

  .videos-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    flex-direction: column;
    gap: var(--space-sm);
  }

  .footer-links,
  .footer-legal {
    flex-wrap: wrap;
    gap: var(--space-sm);
  }

  .members-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-sm);
  }
}

/* ========================================
   SCROLL REVEAL ANIMATION
   ======================================== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
