/* ============================================================
   STEH AUF COMEDY – styles.css
   Design: hell · Logo-Farben #29285b / #e20e7e
   Display: Bowlby One SC · Fließtext: Poppins
   ============================================================ */

:root {
  --font-display: 'Bowlby One SC', sans-serif;
  --font-body: 'Poppins', sans-serif;
  --bg: #ffffff;
  --surface: #f8f7fc;
  --surface-2: #f0eef8;
  --border: #e2dff0;
  --text: #1a1830;
  --text-secondary: #5a5875;
  --text-muted: #8b89a8;
  --accent: #e20e7e;
  --accent-rgb: 226, 14, 126;
  --navy: #29285b;
  --navy-rgb: 41, 40, 91;

  --radius-sm: 4px;
  --radius: 8px;
  --radius-lg: 12px;

  --transition-fast: 0.2s ease;
  --transition-smooth: 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-spring: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);

  --section-padding: clamp(80px, 12vw, 160px);
  --container-padding: clamp(20px, 5vw, 60px);
}

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

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

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  font-weight: 400;
  line-height: 1.65;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

ul, ol { list-style: none; }

h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 6vw, 4.5rem);
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1.15;
}

h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.5vw, 2.5rem);
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1.2;
}

h3 {
  font-family: var(--font-body);
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

p {
  color: var(--text-secondary);
  line-height: 1.75;
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 3px; }

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

.section {
  padding: var(--section-padding) 0;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius);
  transition: var(--transition-fast);
  white-space: nowrap;
  min-height: 52px;
}

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

.btn-primary:hover {
  background: var(--navy);
  border-color: var(--navy);
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--border);
}

.btn-secondary:hover {
  border-color: var(--navy);
  transform: translateY(-2px);
}

@media (pointer: fine) {
  .cursor-dot {
    position: fixed;
    width: 10px;
    height: 10px;
    background: var(--accent);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s;
  }

  .cursor-ring {
    position: fixed;
    width: 36px;
    height: 36px;
    border: 1.5px solid rgba(var(--accent-rgb), 0.5);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: transform 0.08s linear, width 0.2s, height 0.2s, opacity 0.3s;
  }
}

#preloader {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.8s cubic-bezier(0.76, 0, 0.24, 1);
}

#preloader.hide {
  transform: translateY(-100%);
}

.preloader-logo {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.preloader-logo.show {
  opacity: 1;
  transform: translateY(0);
}

.preloader-logo img {
  height: 80px;
  width: auto;
  max-width: 240px;
  object-fit: contain;
}

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px var(--container-padding);
  transition: background 0.4s ease, padding 0.3s ease, box-shadow 0.3s ease;
}

.nav.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding-top: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 20px rgba(41, 40, 91, 0.08);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo img {
  height: 44px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  transition: filter var(--transition-fast);
}

.nav.scrolled .nav-logo img {
  filter: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color var(--transition-fast);
  position: relative;
}

.nav.scrolled .nav-links a {
  color: var(--text-secondary);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width var(--transition-fast);
}

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

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

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

.nav-cta {
  background: var(--accent);
  color: #fff;
  padding: 10px 20px;
  border-radius: var(--radius);
  font-size: 0.875rem;
  font-weight: 600;
  transition: background var(--transition-fast), transform var(--transition-fast);
  white-space: nowrap;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.nav-cta:hover {
  background: var(--navy);
  transform: translateY(-1px);
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  cursor: pointer;
  padding: 8px;
  margin: -8px;
}

.nav-hamburger span {
  display: block;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease, width 0.3s ease;
  transform-origin: center;
}

.nav.scrolled .nav-hamburger span {
  background: var(--navy);
}

.nav-hamburger span:nth-child(2) { width: 70%; }
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; width: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-overlay {
  position: fixed;
  inset: 0;
  background: var(--navy);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 0.2rem;
  padding: max(4.5rem, calc(env(safe-area-inset-top) + 3rem)) 1.25rem max(1.5rem, env(safe-area-inset-bottom));
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  clip-path: inset(0 0 100% 0);
  transition: clip-path 0.5s cubic-bezier(0.76, 0, 0.24, 1);
}

.nav-overlay.open {
  clip-path: inset(0 0 0% 0);
}

.nav-overlay a {
  font-size: clamp(1rem, 3.8vw, 1.2rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.35;
  color: rgba(255,255,255,0.9);
  transition: color var(--transition-fast);
  padding: 0.45rem 0.5rem;
  max-width: min(22rem, 100%);
  text-align: center;
}

.nav-overlay a:hover {
  color: var(--accent);
}

.nav-overlay .nav-cta-overlay {
  background: var(--accent);
  color: #fff;
  padding: 0.65rem 1.5rem;
  border-radius: var(--radius);
  font-size: clamp(0.95rem, 3.2vw, 1.05rem);
  font-weight: 700;
  margin-top: 0.6rem;
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity var(--transition-smooth), transform var(--transition-smooth);
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: 140px var(--container-padding) 100px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('assets/hero.JPG');
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  z-index: 0;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    165deg,
    rgba(255, 255, 255, 0.82) 0%,
    rgba(248, 247, 252, 0.88) 35%,
    rgba(255, 255, 255, 0.78) 55%,
    rgba(240, 238, 248, 0.92) 100%
  );
}

.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 90% 70% at 50% 20%, rgba(226, 14, 126, 0.07) 0%, transparent 55%);
  z-index: 0;
  pointer-events: none;
}

.hero-spotlight {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 55% 60% at 50% 45%, rgba(41, 40, 91, 0.06) 0%, transparent 65%);
  pointer-events: none;
  z-index: 1;
  animation: spotlight-pulse 6s ease-in-out infinite;
}

@keyframes spotlight-pulse {
  0%, 100% { opacity: 0.8; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.05); }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 960px;
}

.hero-eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 24px;
  display: block;
}

.hero-title {
  margin-bottom: 0;
  font-family: var(--font-display);
  font-weight: 400;
}

.hero-title .line-1 {
  display: block;
  color: var(--navy);
}

.hero-title .line-2 {
  display: block;
  color: var(--accent);
}

.word-wrapper {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
  padding-bottom: 0.1em;
}

.word {
  display: inline-block;
  opacity: 0;
  transform: translateY(110%);
  animation: word-in 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes word-in {
  to { opacity: 1; transform: translateY(0); }
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--text-secondary);
  margin-top: 24px;
  margin-bottom: 40px;
  font-weight: 400;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-actions .btn-secondary {
  color: var(--navy);
  border-color: var(--border);
  background: rgba(255, 255, 255, 0.6);
}

.hero-actions .btn-secondary:hover {
  border-color: var(--navy);
  color: var(--navy);
}

.btn-primary.pulse {
  animation: btn-pulse 2.5s ease-in-out infinite;
}

@keyframes btn-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(var(--accent-rgb), 0.4); }
  50% { box-shadow: 0 0 0 12px rgba(var(--accent-rgb), 0); }
}

.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: var(--text-muted);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  z-index: 2;
  animation: bounce 2s ease-in-out infinite;
}

.scroll-indicator svg {
  animation: scroll-arrow 2s ease-in-out infinite;
}

@keyframes scroll-arrow {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(6px); opacity: 0.5; }
}

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

.stats-bar {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 48px 0;
  background: var(--surface);
}

.stats-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--container-padding);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  font-weight: 400;
  color: var(--accent);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 8px;
  display: block;
}

.stat-label {
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 400;
}

.shows-section {
  padding: var(--section-padding) 0;
}

.next-show-countdown {
  text-align: center;
  margin-bottom: clamp(40px, 6vw, 56px);
  padding: clamp(28px, 4vw, 40px) clamp(20px, 4vw, 32px);
  background: linear-gradient(135deg, rgba(var(--accent-rgb), 0.08) 0%, rgba(var(--navy-rgb), 0.06) 100%);
  border: 1px solid rgba(var(--accent-rgb), 0.2);
  border-radius: var(--radius-lg);
}

.countdown-eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 8px;
}

.countdown-show-title {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3.5vw, 1.85rem);
  font-weight: 400;
  color: var(--navy);
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin: 0 0 8px;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}

.countdown-datetime {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin: 0 0 24px;
}

.countdown-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(12px, 3vw, 24px);
  margin-bottom: 28px;
}

.countdown-unit {
  min-width: clamp(4.5rem, 18vw, 5.5rem);
  padding: 16px 12px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 4px 20px rgba(var(--navy-rgb), 0.06);
}

.countdown-value {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 5vw, 2.5rem);
  font-weight: 400;
  font-variant-numeric: tabular-nums;
  color: var(--accent);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.countdown-unit-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-secondary);
  margin-top: 6px;
}

.countdown-done-msg {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy);
  margin: 0 0 24px;
}

.countdown-cta {
  min-width: 200px;
}

.shows-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
  gap: 24px;
  flex-wrap: wrap;
}

.shows-lead {
  margin-top: 12px;
  max-width: 640px;
  font-size: 0.98rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

.shows-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}

.shows-more-wrap {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.shows-more-wrap[hidden] {
  display: none !important;
}

.shows-more-btn {
  min-width: 200px;
  padding: 14px 28px;
  font-weight: 600;
}

.show-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.3s ease;
  display: flex;
  flex-direction: column;
}

.show-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(var(--accent-rgb), 0.12);
  border-color: rgba(var(--accent-rgb), 0.3);
}

.show-card-image {
  aspect-ratio: 2420 / 900;
  overflow: hidden;
  background: var(--surface-2);
  position: relative;
}

.show-card-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  background: var(--surface-2);
  display: block;
  transition: transform 0.5s ease;
}

.show-card:hover .show-card-image img {
  transform: scale(1.02);
}

.show-card-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  background: linear-gradient(135deg, var(--surface) 0%, var(--surface-2) 100%);
}

.show-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
}

.badge-soldout {
  background: rgba(255, 60, 60, 0.1);
  color: #cc3333;
  border: 1px solid rgba(255, 60, 60, 0.3);
}

.badge-today {
  background: var(--accent);
  color: #fff;
}

.show-source-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--navy);
  border: 1px solid var(--border);
  box-shadow: 0 2px 10px rgba(41, 40, 91, 0.08);
  z-index: 2;
}

.show-card-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.show-date {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.5vw, 1.5rem);
  font-weight: 400;
  color: var(--text);
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}

.show-time {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.show-name {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.show-location {
  font-size: 0.85rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 20px;
  margin-top: auto;
}

.show-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  gap: 12px;
}

.show-price {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
}

.show-price span {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 400;
}

.show-price-free {
  color: var(--accent);
}

.show-cta {
  background: var(--accent);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  transition: background var(--transition-fast), transform var(--transition-fast);
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
}

.show-cta:hover {
  background: var(--navy);
  transform: translateY(-1px);
}

button.show-cta {
  font-family: inherit;
  border: none;
  cursor: pointer;
}

.skeleton-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.skeleton {
  background: linear-gradient(90deg, var(--surface) 25%, var(--surface-2) 50%, var(--surface) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

.skeleton-img { height: 200px; }
.skeleton-body { padding: 24px; display: flex; flex-direction: column; gap: 12px; }
.skeleton-line { height: 14px; border-radius: 4px; }
.skeleton-line.short { width: 50%; }
.skeleton-line.medium { width: 75%; }
.skeleton-line.full { width: 100%; }

.shows-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 80px 20px;
}

.shows-empty p {
  font-size: 1.1rem;
  margin-bottom: 24px;
}

.shows-empty a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.shows-debug {
  margin-top: 20px;
  padding: 16px 20px;
  text-align: left;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.88rem;
  color: var(--text-secondary);
}

.shows-debug ul {
  margin: 8px 0 0 1.1rem;
  list-style: disc;
}

.shows-debug li {
  margin-bottom: 6px;
}

.shows-debug-meta {
  margin-top: 10px;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.shows-empty code {
  font-size: 0.85em;
  background: var(--surface-2);
  padding: 2px 6px;
  border-radius: 4px;
}

.shows-empty-ig {
  display: inline-block;
  margin-top: 1.25rem;
}

.about-section {
  padding: var(--section-padding) 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  align-items: start;
}

.about-quote-wrap {
  display: flex;
  align-items: flex-start;
  padding-top: 40px;
}

.about-quote-mark {
  font-size: clamp(8rem, 18vw, 14rem);
  font-weight: 800;
  color: var(--accent);
  line-height: 0.8;
  opacity: 0.12;
  font-family: Georgia, serif;
  user-select: none;
}

.about-content h2 {
  margin-bottom: 28px;
  color: var(--navy);
}

.about-content p {
  font-size: clamp(1rem, 1.5vw, 1.1rem);
  line-height: 1.8;
  margin-bottom: 16px;
  color: var(--text-secondary);
}

.about-features {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text);
}

.feature-icon {
  width: 40px;
  height: 40px;
  background: rgba(var(--accent-rgb), 0.08);
  border: 1px solid rgba(var(--accent-rgb), 0.2);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--accent);
}

/* PAST SHOWS SECTION */
.past-section {
  padding: var(--section-padding) 0;
}

.past-section h2 {
  color: var(--navy);
  margin-bottom: 16px;
}

.past-intro {
  color: var(--text-secondary);
  font-size: 1.05rem;
  margin-bottom: 64px;
  max-width: 600px;
}

.past-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.past-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.past-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(var(--navy-rgb), 0.08);
  border-color: rgba(var(--navy-rgb), 0.2);
}

.past-card-cta {
  background: var(--surface-2);
  border-color: rgba(var(--accent-rgb), 0.2);
}

.past-card-cta:hover {
  border-color: rgba(var(--accent-rgb), 0.5);
  box-shadow: 0 12px 40px rgba(var(--accent-rgb), 0.1);
}

.past-card-icon {
  width: 48px;
  height: 48px;
  background: rgba(var(--navy-rgb), 0.06);
  border: 1px solid rgba(var(--navy-rgb), 0.12);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  margin-bottom: 20px;
}

.past-card-cta .past-card-icon {
  background: rgba(var(--accent-rgb), 0.08);
  border-color: rgba(var(--accent-rgb), 0.2);
  color: var(--accent);
}

.past-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.past-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 20px;
}

.past-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
  background: rgba(var(--navy-rgb), 0.06);
  color: var(--navy);
  border: 1px solid rgba(var(--navy-rgb), 0.12);
}

.past-card-link {
  display: inline-flex;
  align-items: center;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--accent);
  gap: 4px;
  transition: gap var(--transition-fast);
}

.past-card-link:hover {
  gap: 8px;
}

/* TEAM SECTION */
.team-section {
  padding: var(--section-padding) 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.team-section h2 {
  color: var(--navy);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-top: 64px;
}

.team-card {
  display: flex;
  flex-direction: column;
}

.team-photo-wrap {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  aspect-ratio: 3/4;
  background: var(--surface-2);
  margin-bottom: 24px;
}

.team-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.team-card:hover .team-photo-wrap img {
  transform: scale(1.04);
}

.team-photo-overlay {
  position: absolute;
  inset: 0;
  background: rgba(var(--navy-rgb), 0);
  transition: background 0.4s ease;
  pointer-events: none;
}

.team-card:hover .team-photo-overlay {
  background: rgba(var(--navy-rgb), 0.06);
}

.team-name {
  font-family: var(--font-body);
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
  color: var(--navy);
}

.team-role {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.team-bio {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 20px;
}

.team-social {
  display: flex;
  gap: 12px;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: color var(--transition-fast);
}

.social-link:hover {
  color: var(--accent);
}

/* GALLERY SECTION */
.gallery-section {
  padding: var(--section-padding) 0;
}

.gallery-header {
  margin-bottom: 48px;
}

.gallery-section h2 {
  color: var(--navy);
}

.gallery-sub {
  color: var(--text-secondary);
  margin-top: 12px;
}

.gallery-masonry {
  columns: 3;
  column-gap: 16px;
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: 16px;
  overflow: hidden;
  border-radius: var(--radius-sm);
  cursor: pointer;
  position: relative;
}

.gallery-item img {
  width: 100%;
  display: block;
  transition: transform 0.4s ease;
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(var(--navy-rgb), 0);
  transition: background 0.3s ease;
}

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

.gallery-item:hover .gallery-overlay {
  background: rgba(var(--navy-rgb), 0.08);
}

.gallery-item:focus {
  outline: none;
}

.gallery-item:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.gallery-cta {
  text-align: center;
  margin-top: 48px;
}

/* SUPPORTER SECTION */
.supporter-section {
  padding: var(--section-padding) 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.supporter-header {
  max-width: 720px;
  margin-bottom: 48px;
}

.supporter-section h2 {
  color: var(--navy);
}

.supporter-lead {
  margin-top: 12px;
  font-size: 0.98rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

.supporter-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  align-items: stretch;
}

.supporter-card {
  display: flex;
  flex-direction: column;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px 24px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.supporter-card:hover {
  border-color: rgba(var(--accent-rgb), 0.35);
  box-shadow: 0 12px 40px rgba(var(--navy-rgb), 0.06);
}

.supporter-logo-link {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 120px;
  margin-bottom: 20px;
  padding: 8px 4px;
}

.supporter-logo-link img {
  max-width: 100%;
  max-height: 96px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.supporter-name {
  font-family: var(--font-body);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 12px;
  letter-spacing: -0.02em;
}

.supporter-text {
  flex: 1;
  margin: 0 0 16px;
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

.supporter-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent);
  align-self: flex-start;
  transition: color var(--transition-fast);
}

.supporter-link:hover {
  color: var(--navy);
}

.supporter-cta {
  margin-top: 56px;
  padding: 32px 28px;
  text-align: center;
  border-radius: var(--radius-lg);
  border: 1px dashed rgba(var(--accent-rgb), 0.45);
  background: linear-gradient(135deg, rgba(var(--accent-rgb), 0.06) 0%, rgba(var(--navy-rgb), 0.04) 100%);
}

.supporter-cta-text {
  margin: 0 auto 20px;
  max-width: 520px;
  font-size: 1rem;
  color: var(--text);
  line-height: 1.6;
}

.supporter-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  align-items: center;
}

/* JOIN SECTION */
.join-section {
  padding: var(--section-padding) 0;
  background: linear-gradient(160deg, var(--surface) 0%, rgba(226, 14, 126, 0.06) 45%, var(--surface-2) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.join-section .section-label {
  color: var(--accent);
}

.join-section h2 {
  color: var(--navy);
  margin-bottom: 24px;
}

.join-section p {
  color: var(--text-secondary);
}

.join-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.join-actions {
  margin-top: 40px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.join-instagram {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.join-instagram-label {
  width: 100%;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.join-instagram a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: var(--radius);
  background: var(--bg);
  border: 1px solid var(--border);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--navy);
  transition: border-color var(--transition-fast), color var(--transition-fast), box-shadow var(--transition-fast);
}

.join-instagram a:hover {
  border-color: rgba(var(--accent-rgb), 0.45);
  color: var(--accent);
  box-shadow: 0 4px 16px rgba(var(--accent-rgb), 0.1);
}

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

.join-section .btn-primary:hover {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}

.join-features {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.join-feature {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.join-feature-icon {
  width: 48px;
  height: 48px;
  background: rgba(41, 40, 91, 0.06);
  border: 1px solid rgba(41, 40, 91, 0.1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}

.join-feature strong {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}

.join-feature p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  margin: 0;
}

/* FAQ SECTION */
.faq-section {
  padding: var(--section-padding) 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.faq-section h2 {
  color: var(--navy);
}

.faq-header {
  margin-bottom: 64px;
}

.faq-list {
  max-width: 780px;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 0;
  cursor: pointer;
  transition: color var(--transition-fast);
  font-size: clamp(0.95rem, 1.5vw, 1.05rem);
  font-weight: 500;
  color: var(--text);
  width: 100%;
  text-align: left;
  background: none;
  border: none;
}

.faq-question:hover {
  color: var(--accent);
}

.faq-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--text-muted);
  transition: transform 0.35s ease, color 0.2s ease;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  color: var(--accent);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s cubic-bezier(0.16, 1, 0.3, 1), padding 0.3s ease;
}

.faq-item.open .faq-answer {
  max-height: 300px;
}

.faq-answer p {
  padding-bottom: 24px;
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--text-secondary);
}

/* CONTACT SECTION */
.contact-section {
  padding: var(--section-padding) 0;
  text-align: center;
}

.contact-section h2 {
  margin-bottom: 20px;
  color: var(--navy);
}

.contact-section > .container > p {
  margin-bottom: 40px;
  font-size: 1.05rem;
}

.contact-email {
  display: inline-block;
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -0.02em;
  transition: opacity var(--transition-fast);
  margin-bottom: 32px;
}

.contact-email:hover {
  opacity: 0.75;
}

.contact-socials {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 8px;
}

.contact-social-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color var(--transition-fast);
  padding: 10px 0;
  min-height: 44px;
}

.contact-social-link:hover {
  color: var(--accent);
}

/* FOOTER */
.footer {
  border-top: 1px solid var(--border);
  padding: 40px 0;
  background: var(--surface);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-logo img {
  height: 36px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
  opacity: 0.95;
  transition: opacity var(--transition-fast);
}

.footer-logo:hover img {
  opacity: 1;
}

.footer-center {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-align: center;
}

.footer-center a {
  color: var(--text-secondary);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.footer-links a {
  font-size: 0.8rem;
  color: var(--text-muted);
  transition: color var(--transition-fast);
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

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

.footer-instagram {
  color: var(--text-muted);
  transition: color var(--transition-fast);
}

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

/* INNER PAGES */
.inner-hero {
  padding: clamp(120px, 16vw, 200px) 0 clamp(60px, 8vw, 100px);
}

.inner-hero h1 {
  font-size: clamp(2.2rem, 5vw, 4rem);
  margin-bottom: 16px;
  color: var(--navy);
}

.inner-hero p {
  font-size: 1.05rem;
}

.prose {
  max-width: 760px;
  padding: 0 0 var(--section-padding);
}

.prose h2 {
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  margin-top: 48px;
  margin-bottom: 16px;
  color: var(--navy);
}

.prose h3 {
  font-size: clamp(1rem, 2vw, 1.3rem);
  margin-top: 32px;
  margin-bottom: 12px;
  color: var(--text);
}

.prose p {
  margin-bottom: 16px;
}

.prose a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.prose ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 16px;
  color: var(--text-secondary);
}

.prose ul li {
  margin-bottom: 8px;
  font-size: 0.95rem;
  line-height: 1.7;
}

/* GALERIE PAGE */
.gallery-page-grid {
  columns: 3;
  column-gap: 16px;
  padding-bottom: var(--section-padding);
}

.gallery-page-item {
  break-inside: avoid;
  margin-bottom: 16px;
  overflow: hidden;
  border-radius: var(--radius-sm);
  cursor: pointer;
  position: relative;
}

.gallery-page-item img {
  width: 100%;
  display: block;
  transition: transform 0.4s ease;
}

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

.gallery-page-overlay {
  position: absolute;
  inset: 0;
  background: rgba(var(--navy-rgb), 0);
  transition: background 0.3s ease;
  pointer-events: none;
}

.gallery-page-item:hover .gallery-page-overlay {
  background: rgba(var(--navy-rgb), 0.1);
}

/* LIGHTBOX */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(26, 24, 48, 0.88);
  backdrop-filter: blur(6px);
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.lightbox.open {
  opacity: 1;
  pointer-events: all;
}

.lightbox-img-wrap {
  max-width: 90vw;
  max-height: 90vh;
  position: relative;
}

.lightbox-img-wrap img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: var(--radius-sm);
}

.lightbox-close {
  position: fixed;
  top: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #fff;
  transition: background var(--transition-fast);
  border: none;
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.2);
}

.lightbox-prev,
.lightbox-next {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #fff;
  transition: background var(--transition-fast);
  border: none;
  min-height: 44px;
}

.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }

.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(var(--accent-rgb), 0.3);
}

/* COOKIE BANNER */
.cookie-overlay {
  position: fixed;
  inset: 0;
  background: rgba(41, 40, 91, 0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 8000;
}

.cookie-banner {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -46%) scale(0.96);
  z-index: 8001;
  width: min(520px, calc(100vw - 40px));
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 40px;
  opacity: 0;
  transition: opacity 0.35s ease, transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 20px 60px rgba(41, 40, 91, 0.15);
}

.cookie-banner.visible {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.cookie-emoji {
  font-size: 2.8rem;
  margin-bottom: 16px;
  line-height: 1;
}

.cookie-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: var(--navy);
  margin-bottom: 14px;
}

.cookie-desc {
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 28px;
}

.cookie-desc strong {
  color: var(--text);
  font-weight: 600;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-btn {
  flex: 1;
  padding: 13px 20px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease, opacity 0.15s ease;
  min-height: 48px;
  white-space: nowrap;
  border: none;
}

.cookie-btn:hover {
  transform: translateY(-2px);
}

.cookie-accept {
  background: var(--accent);
  color: #fff;
}

.cookie-accept:hover {
  background: var(--navy);
}

.cookie-decline {
  background: transparent;
  color: var(--text-secondary);
  border: 1px solid var(--border) !important;
}

.cookie-decline:hover {
  color: var(--text);
  border-color: var(--navy) !important;
}

/* REDUCED MOTION */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
  .word { opacity: 1; transform: none; }
  .cursor-dot, .cursor-ring { display: none; }
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .about-quote-wrap { display: none; }

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

  .join-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .supporter-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }

  .stats-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

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

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

  .gallery-masonry, .gallery-page-grid {
    columns: 2;
  }

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

  .shows-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-links {
    justify-content: center;
    flex-wrap: wrap;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .hero-actions .btn {
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .gallery-masonry, .gallery-page-grid { columns: 1; }
  .lightbox-prev { left: 12px; }
  .lightbox-next { right: 12px; }
  .cookie-banner { padding: 28px 24px; }
  .cookie-actions { flex-direction: column; }
  .cookie-btn { flex: unset; width: 100%; }
}

@media (max-width: 375px) {
  .nav { padding: 16px 20px; }
}
