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

:root {
  --accent: #f97316;
  --accent-light: #fb923c;
  --accent-dark: #ea6a05;
  --text: #1a1a2e;
  --text-muted: #5a5a7a;
  --bg: #ffffff;
  --bg-alt: #f7f7fc;
  --border: #e0e0f0;
  --radius: 16px;
  --radius-sm: 8px;
  --shadow: 0 4px 24px rgba(249,115,22,.10);
  --shadow-lg: 0 12px 48px rgba(249,115,22,.18);
  --nav-h: 120px;
  --ff-display: 'Bebas Neue', 'Arial Black', sans-serif;
  --ff-body: 'Inter', system-ui, sans-serif;
  --transition: .3s cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; }

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

img { display: block; max-width: 100%; }
a { color: var(--accent); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--accent-dark); }

.container {
  width: min(1160px, 92vw);
  margin-inline: auto;
}

.section {
  padding-block: 100px;
}

/* ── Typography ───────────────────────────────── */
h1, h2, h3 { font-family: var(--ff-display); line-height: 1.1; letter-spacing: .02em; }
h2 { font-size: clamp(2.2rem, 4vw, 3.2rem); margin-bottom: 1.5rem; }

.section-tag {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(249,115,22,.1);
  padding: .3em .9em;
  border-radius: 100px;
  margin-bottom: 1rem;
  font-family: var(--ff-body);
}

.lead {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

/* ── Buttons ──────────────────────────────────── */
.btn {
  display: inline-block;
  padding: .75em 1.8em;
  border-radius: 100px;
  font-weight: 600;
  font-size: .95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
}
.btn-primary:hover {
  background: var(--accent-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(249,115,22,.35);
}

.btn-outline {
  border-color: var(--accent);
  color: var(--accent);
  background: transparent;
}
.btn-outline:hover {
  background: var(--accent);
  color: #fff;
  transform: translateY(-2px);
}

/* ── Nav ──────────────────────────────────────── */
.nav-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  transition: background var(--transition), box-shadow var(--transition), height .4s ease;
}

.nav-header.scrolled {
  height: 100px;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,.08);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.nav-logo {
  font-family: var(--ff-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text);
}
.nav-logo span { color: var(--accent); }

.nav-links {
  display: flex;
  gap: 2rem;
}
.nav-links a {
  font-size: .9rem;
  font-weight: 500;
  color: var(--text);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -3px;
  width: 0; height: 2px;
  background: var(--accent);
  transition: width var(--transition);
}
.nav-links a:hover::after { width: 100%; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all var(--transition);
}
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ── Hero ─────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: var(--nav-h);
  background: var(--accent);
}

/* Riesige Plakat-Wörter */
.hero-billboard {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  pointer-events: none;
  overflow: hidden;
  padding-left: 38vw;
  gap: 0;
}

.hero-billboard span {
  font-family: var(--ff-display);
  font-size: clamp(5rem, 17vw, 17rem);
  font-weight: 400;
  line-height: .88;
  letter-spacing: .02em;
  text-transform: uppercase;
  color: transparent;
  -webkit-text-stroke: 2px rgba(255,255,255,.28);
  white-space: nowrap;
  opacity: 0;
  animation: billboardIn .9s cubic-bezier(.16,1,.3,1) forwards;
}
.hero-billboard span:nth-child(1) { animation-delay: .1s; }
.hero-billboard span:nth-child(2) { animation-delay: .25s; margin-left: 2vw; }
.hero-billboard span:nth-child(3) { animation-delay: .4s;  margin-left: 4vw; }

@keyframes billboardIn {
  from { opacity: 0; transform: translateX(-30px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* Vordergrund-Inhalt */
.hero-content {
  position: relative;
  max-width: 700px;
  padding-block: 4rem;
}

.hero-eyebrow {
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(0,0,0,.55);
  margin-bottom: .6rem;
  opacity: 0;
  animation: fadeUp .6s .5s forwards;
}

.hero-title {
  font-family: var(--ff-display);
  font-size: clamp(4rem, 11vw, 9.5rem);
  line-height: .9;
  letter-spacing: .02em;
  color: #fff;
  margin-bottom: 1.8rem;
  opacity: 0;
  animation: fadeUp .7s .65s forwards;
  text-transform: uppercase;
}
.hero-title strong {
  font-weight: 400; /* Bebas Neue */
  display: block;
}

.hero-sub {
  font-size: clamp(.9rem, 1.4vw, 1.05rem);
  color: rgba(0,0,0,.6);
  line-height: 1.7;
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fadeUp .7s .8s forwards;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp .7s .95s forwards;
}

/* Buttons auf orangem Hintergrund */
.btn-dark {
  background: #111;
  color: #fff;
  border-radius: 100px;
  padding: .75em 1.8em;
  font-weight: 600;
  font-size: .95rem;
  transition: all var(--transition);
  white-space: nowrap;
  cursor: pointer;
  border: 2px solid transparent;
}
.btn-dark:hover {
  background: #000;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,.3);
}

.btn-outline-dark {
  border: 2px solid rgba(0,0,0,.4);
  color: rgba(0,0,0,.75);
  background: transparent;
  border-radius: 100px;
  padding: .75em 1.8em;
  font-weight: 600;
  font-size: .95rem;
  transition: all var(--transition);
  white-space: nowrap;
  cursor: pointer;
}
.btn-outline-dark:hover {
  border-color: #000;
  color: #000;
  background: rgba(0,0,0,.07);
  transform: translateY(-2px);
}

.hero-scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 25%; /* Mitte der linken Hälfte */
  transform: translateX(-50%);
}
.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, rgba(0,0,0,.5), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: .3; height: 40px; }
  50%       { opacity: .9; height: 60px; }
}

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

/* Nav transparent über Hero */
.nav-header { background: transparent; }
/* Logo-Bild: weiß im Hero */
/* Logo via Mask – exakte Farbsteuerung über background-color */
.nav-logo {
  align-self: flex-start;
  margin-top: 10px;
}
.nav-logo-img {
  display: block;
  height: 150px;
  aspect-ratio: 470 / 476;
  background-color: #fff; /* Hero: weiß */
  -webkit-mask: url('B-WareLogo.svg') no-repeat center / contain;
  mask: url('B-WareLogo.svg') no-repeat center / contain;
  transition: background-color .4s ease, height .4s ease;
}

/* Nach dem Scrollen: exakt dasselbe Orange wie die Hintergründe */
.nav-header.scrolled .nav-logo-img {
  height: 84px;
  background-color: var(--accent);
}

.nav-links a { color: rgba(255,255,255,.9); white-space: nowrap; }
.nav-links a::after { background: #fff; }
.nav-toggle span { background: #fff; }
.nav-header.scrolled .nav-links a { color: var(--text); }
.nav-header.scrolled .nav-links a::after { background: var(--accent); }
.nav-header.scrolled .nav-toggle span { background: var(--text); }

/* ── About ────────────────────────────────────── */
.about { background: var(--bg-alt); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-text p { color: var(--text-muted); margin-bottom: .8rem; }

.about-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.stat-num {
  display: block;
  font-family: var(--ff-display);
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
}
.stat-label { font-size: .8rem; font-weight: 500; color: var(--text-muted); }

.about-visual {
  position: relative;
  height: 420px;
}

.about-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--radius);
}

.about-card {
  position: absolute;
  background: #fff;
  border-radius: var(--radius-sm);
  padding: 1rem 1.25rem;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: .75rem;
  font-weight: 600;
  font-size: .9rem;
  z-index: 1;
  animation: cardFloat 6s ease-in-out infinite;
}
.note-icon { font-size: 1.5rem; color: var(--accent); }
.card-1 { top: 1rem; right: -1.5rem; animation-delay: 0s; }
.card-2 { top: 50%; left: -1.5rem; transform: translateY(-50%); animation-delay: 2s; }
.card-3 { bottom: 1rem; right: -1rem; animation-delay: 4s; }

@keyframes cardFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}
.card-2 {
  top: 50%; left: -1.5rem;
}
@keyframes cardFloat2 {
  0%, 100% { transform: translateY(-50%); }
  50%       { transform: translateY(calc(-50% - 8px)); }
}
.card-2 { animation-name: cardFloat2; }

/* ── About Alternativen ───────────────────────── */

/* Varianten-Label */
.alt-label {
  position: absolute;
  top: 1rem; left: 1rem;
  background: rgba(0,0,0,.15);
  color: rgba(0,0,0,.5);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .3em .8em;
  border-radius: 100px;
  z-index: 10;
  pointer-events: none;
}
.alt-label--light { background: rgba(255,255,255,.15); color: rgba(255,255,255,.6); }

.about-alt { position: relative; }

/* ── Variante A: Vollbild-Foto mit Text-Overlay ── */
.about-alt-a {
  padding: 0;
  min-height: 85vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.about-a-img {
  position: absolute;
  inset: 0;
}
.about-a-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
}
.about-a-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.85) 0%, rgba(0,0,0,.3) 50%, rgba(0,0,0,.1) 100%);
}

.about-a-content {
  position: relative;
  padding-bottom: 5rem;
  color: #fff;
}
.about-a-content h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  color: #fff;
  margin-bottom: .75rem;
}
.about-a-content p { color: rgba(255,255,255,.75); max-width: 560px; margin-bottom: 2rem; }

.about-a-stats {
  display: flex;
  gap: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,.2);
}
.about-a-stat span {
  display: block;
  font-family: var(--ff-display);
  font-size: 3rem;
  color: var(--accent);
  line-height: 1;
}
.about-a-stat { font-size: .8rem; color: rgba(255,255,255,.6); font-weight: 500; }

.section-tag--light {
  background: rgba(255,255,255,.15);
  color: rgba(255,255,255,.9);
}

/* ── Variante B: Split Foto links, Text rechts ── */
.about-alt-b {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 70vh;
}

.about-b-photo {
  overflow: hidden;
}
.about-b-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform .6s ease;
}
.about-b-photo:hover img { transform: scale(1.04); }

.about-b-text {
  background: #fff;
  padding: 5rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start; /* verhindert das Strecken der Pille / Inhalte */
  gap: 1rem;
}
.about-b-text > * { max-width: 480px; } /* angenehme Textbreite */
.about-b-text h2 { font-size: clamp(1.8rem, 3vw, 2.8rem); color: var(--text); }
.about-b-text .lead { color: var(--text-muted); font-size: 1.05rem; }
.about-b-text p { color: var(--text-muted); font-size: .95rem; }

.about-b-pills {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-top: .5rem;
}
.about-b-pills span {
  background: rgba(249,115,22,.1);
  color: var(--accent-dark);
  padding: .3em 1em;
  border-radius: 100px;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .05em;
}

/* ── Variante C: Zentriert mit Zitat ── */
.about-alt-c { background: var(--bg); }

.about-c-inner { text-align: center; }

.about-c-quote {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 4.5vw, 4rem);
  line-height: 1.15;
  letter-spacing: .02em;
  color: var(--text);
  margin: 1.5rem auto 3.5rem;
  max-width: 820px;
  quotes: none;
}
.about-c-quote em { color: var(--accent); font-style: normal; }

.about-c-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  text-align: left;
  align-items: center;
}

.about-c-photo {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
}
.about-c-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
}

.about-c-text p { color: var(--text-muted); line-height: 1.7; margin-bottom: 2rem; }

.about-c-stats {
  display: flex;
  gap: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}
.about-c-stats div { text-align: center; }
.about-c-stats strong {
  display: block;
  font-family: var(--ff-display);
  font-size: 2.5rem;
  color: var(--accent);
  line-height: 1;
}
.about-c-stats span { font-size: .78rem; color: var(--text-muted); font-weight: 500; }

/* ── Variante D: Dunkel mit Karten-Layout ── */
.about-alt-d {
  background: #111;
  color: #fff;
}
.about-alt-d h2 { color: #fff; }
.about-alt-d p { color: rgba(255,255,255,.6); max-width: 500px; }

.about-d-head {
  margin-bottom: 3rem;
}

.about-d-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 1rem;
}

.about-d-photo {
  grid-row: 1 / 3;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 380px;
}
.about-d-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
}

.about-d-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: .4rem;
}
.about-d-card--accent {
  background: var(--accent);
  border-color: var(--accent);
}

.about-d-num {
  font-family: var(--ff-display);
  font-size: 3.5rem;
  line-height: 1;
  color: #fff;
}
.about-d-label {
  font-size: .8rem;
  font-weight: 600;
  color: rgba(255,255,255,.6);
  letter-spacing: .05em;
}

.about-d-taglist {
  grid-column: 2 / 4;
  flex-direction: row;
  flex-wrap: wrap;
  gap: .5rem;
  align-items: center;
  padding: 1.5rem;
}
.about-d-taglist span {
  background: rgba(255,255,255,.1);
  color: rgba(255,255,255,.8);
  padding: .35em 1em;
  border-radius: 100px;
  font-size: .8rem;
  font-weight: 600;
}

/* ── Zitat ────────────────────────────────────── */
.zitat-section {
  background: var(--accent);
  padding-block: 7rem;
  text-align: center;
}

/* Grunge-Variante: gerissene Kanten oben & unten */
.zitat-section--grunge {
  position: relative;
  /* extra Abstand, damit die Risse nicht in den Text ragen */
  padding-block: 8.5rem;
}

/* Grunge-Kanten via echtem Brush-SVG (als Maske, orange eingefärbt) */
.grunge-band {
  position: absolute;
  left: 0;
  width: 100%;
  height: 70px;
  background: var(--accent);
  -webkit-mask: url('grunge.svg') no-repeat center / 100% 100%;
  mask: url('grunge.svg') no-repeat center / 100% 100%;
  z-index: 2;
  pointer-events: none;
}
/* Oberkante: Brush vertikal spiegeln */
.grunge-band--top {
  top: -45px;
  transform: scaleY(-1);
}
/* Unterkante: horizontal spiegeln für Abwechslung */
.grunge-band--bottom {
  bottom: -45px;
  transform: scaleX(-1);
}

/* Grunge-Kante am Fuß des Heros (gehostet im About-Bereich) */
.about-alt-b { position: relative; }
.grunge-band--hero-foot {
  position: absolute;
  top: -45px;
  left: 0;
  width: 100%;
  height: 70px;
  background: var(--accent);
  -webkit-mask: url('grunge.svg') no-repeat center / 100% 100%;
  mask: url('grunge.svg') no-repeat center / 100% 100%;
  z-index: 3;
  pointer-events: none;
}

.zitat-block {
  position: relative;
  font-family: var(--ff-display);
  font-size: clamp(2rem, 5vw, 4.5rem);
  line-height: 1.2;
  letter-spacing: .02em;
  color: #fff;
  max-width: 900px;
  margin: 0 auto;
  quotes: none;
}

.zitat-block em {
  font-style: normal;
  color: rgba(0,0,0,.45);
}

.zitat-mark {
  font-family: Georgia, serif;
  font-size: 1.2em;
  line-height: 0;
  vertical-align: -.15em;
  color: rgba(255,255,255,.3);
  margin-right: .1em;
}
.zitat-mark--close {
  margin-right: 0;
  margin-left: .1em;
}

/* ── Konzerte ─────────────────────────────────── */
.konzert-filter {
  display: flex;
  gap: .5rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.filter-btn {
  padding: .45em 1.2em;
  border-radius: 100px;
  border: 2px solid var(--border);
  background: none;
  font-size: .85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition);
  color: var(--text-muted);
}
.filter-btn.active, .filter-btn:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.konzert-list {
  display: grid;
  gap: 1px;
}

.konzert-item {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem;
  background: var(--bg-alt);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  cursor: default;
}
.konzert-item:hover {
  background: #fff;
  box-shadow: var(--shadow);
  transform: translateX(4px);
}

.konzert-date {
  text-align: center;
  background: var(--accent);
  color: #fff;
  border-radius: var(--radius-sm);
  padding: .6rem .4rem;
  line-height: 1.2;
}
.konzert-date .day { font-size: 1.8rem; font-weight: 700; font-family: var(--ff-display); }
.konzert-date .month { font-size: .7rem; text-transform: uppercase; letter-spacing: .08em; opacity: .85; }

.konzert-info h3 { font-size: 1rem; font-weight: 600; margin-bottom: .2rem; }
.konzert-info p { font-size: .85rem; color: var(--text-muted); }

.konzert-badge {
  font-size: .75rem;
  font-weight: 600;
  padding: .25em .8em;
  border-radius: 100px;
  text-transform: capitalize;
}
.badge-konzert { background: rgba(249,115,22,.1); color: var(--accent); }
.badge-festival { background: rgba(255,140,0,.1); color: #e07800; }
.badge-benefiz { background: rgba(0,180,100,.1); color: #00a060; }

.konzert-hint {
  margin-top: 2rem;
  color: var(--text-muted);
  font-size: .9rem;
  text-align: center;
}

/* ── Galerie ──────────────────────────────────── */
.galerie { background: var(--bg-alt); }

.galerie-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1rem;
}

.galerie-item {
  aspect-ratio: 4/3;
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  position: relative;
  background: linear-gradient(135deg, #ede9ff, #d8d0ff);
}

.galerie-item-inner {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: .5rem;
  color: var(--accent);
  font-size: 2.5rem;
  transition: transform var(--transition);
}
.galerie-item:hover .galerie-item-inner {
  transform: scale(1.05);
}

.galerie-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--transition);
}
.galerie-item:hover img { transform: scale(1.05); }

.galerie-overlay {
  position: absolute;
  inset: 0;
  background: rgba(249,115,22,.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
  color: #fff;
  font-size: 1.5rem;
}
.galerie-item:hover .galerie-overlay { opacity: 1; }

.galerie-label {
  font-size: .75rem;
  font-weight: 500;
  color: var(--accent);
}

/* ── Lightbox ─────────────────────────────────── */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(10,5,30,.92);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.lightbox.open { display: flex; }

.lightbox-img-wrap {
  max-width: 900px;
  width: 100%;
  text-align: center;
}
.lightbox-img-wrap img {
  border-radius: var(--radius-sm);
  max-height: 75vh;
  margin: 0 auto;
}

.lightbox-caption {
  margin-top: 1rem;
  color: rgba(255,255,255,.7);
  font-size: .9rem;
}

.lightbox-close, .lightbox-prev, .lightbox-next {
  position: fixed;
  background: rgba(255,255,255,.12);
  border: none;
  color: #fff;
  cursor: pointer;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
  font-size: 1.4rem;
}
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover {
  background: rgba(255,255,255,.25);
}
.lightbox-close { top: 1.5rem; right: 1.5rem; width: 44px; height: 44px; }
.lightbox-prev  { left: 1.5rem; top: 50%; transform: translateY(-50%); width: 52px; height: 52px; }
.lightbox-next  { right: 1.5rem; top: 50%; transform: translateY(-50%); width: 52px; height: 52px; }

/* ── Kontakt ──────────────────────────────────── */
.kontakt-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: start;
}

.kontakt-info h2 { margin-bottom: 1rem; }
.kontakt-info p { color: var(--text-muted); margin-bottom: 1.5rem; }

.kontakt-details {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .85rem;
}
.kontakt-details li {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-size: .95rem;
  color: var(--text-muted);
}
.kontakt-details .icon { font-size: 1.1rem; flex-shrink: 0; }

/* Form */
.kontakt-form {
  background: var(--bg-alt);
  border-radius: var(--radius);
  padding: 2.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: .35rem;
  margin-bottom: 1.2rem;
}

.form-group label {
  font-size: .85rem;
  font-weight: 600;
  color: var(--text);
}

.form-group input,
.form-group select,
.form-group textarea {
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  padding: .7em 1em;
  font-family: var(--ff-body);
  font-size: .95rem;
  color: var(--text);
  background: #fff;
  transition: border-color var(--transition);
  outline: none;
  resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(249,115,22,.12);
}

.form-group input.error,
.form-group textarea.error {
  border-color: #e02c2c;
}

.form-error {
  font-size: .78rem;
  color: #e02c2c;
  min-height: 1em;
}

.form-success {
  margin-top: 1rem;
  padding: 1em 1.25em;
  background: rgba(0,180,100,.1);
  color: #00823a;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: .95rem;
}

/* ── Footer ───────────────────────────────────── */
.footer {
  background: var(--text);
  color: rgba(255,255,255,.6);
  padding-block: 2.5rem;
}

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

.footer-logo {
  font-family: var(--ff-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
}
.footer-logo span { color: var(--accent-light); }

.footer-nav {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-nav a {
  color: rgba(255,255,255,.6);
  font-size: .85rem;
}
.footer-nav a:hover { color: #fff; }

.footer-copy { font-size: .8rem; }

/* ── Responsive ───────────────────────────────── */
@media (max-width: 900px) {
  .about-grid,
  .kontakt-grid { grid-template-columns: 1fr; gap: 3rem; }

  .about-visual { height: 320px; }
  .card-1 { right: 0; }
  .card-2 { left: 0; }
  .card-3 { right: 0; }
}


@media (max-width: 640px) {
  .section { padding-block: 70px; }

  .nav-links {
    display: none;
    position: fixed;
    top: var(--nav-h); left: 0; right: 0;
    background: #fff;
    flex-direction: column;
    gap: 0;
    box-shadow: 0 8px 24px rgba(0,0,0,.1);
    padding-bottom: 1rem;
  }
  .nav-links.open { display: flex; }
  .nav-links a {
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--border);
  }
  .nav-links a::after { display: none; }
  .nav-toggle { display: flex; }

  .konzert-item {
    grid-template-columns: 70px 1fr;
  }
  .konzert-badge { display: none; }

  .form-row { grid-template-columns: 1fr; }
  .kontakt-form { padding: 1.5rem; }

  .hero-actions { flex-direction: column; align-items: flex-start; }
  .about-stats { gap: 1.5rem; }
}
