/* ============================================
   ATF — AACHENER TROMPETENFORUM
   Design System v2 — Gold Edition
   ============================================ */

/* --- TOKENS --- */
:root {
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;

  /* Light theme */
  --bg: #FAFAF8;
  --bg-alt: #F3F2EE;
  --bg-alt2: #ECEAE4;
  --surface: rgba(255,255,255,0.8);
  --surface-border: rgba(0,0,0,0.08);
  --text-primary: #0E0D0B;
  --text-secondary: #5C5850;
  --text-tertiary: #9B9690;
  --accent: #0E0D0B;
  --accent-soft: rgba(26,26,26,0.05);
  --gold: #8B6914;
  --gold-light: #C49A2A;
  --gold-subtle: rgba(139,105,20,0.12);
  --stripe-gradient: linear-gradient(135deg, #0E0D0B 0%, #2a2720 100%);

  --nav-bg: rgba(250,250,248,0.88);
  --nav-border: rgba(0,0,0,0.07);
  --radius: 16px;
  --radius-sm: 8px;
  --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
}

[data-theme="dark"] {
  --bg: #0A0908;
  --bg-alt: #111009;
  --bg-alt2: #18160E;
  --surface: rgba(255,255,255,0.04);
  --surface-border: rgba(255,255,255,0.08);
  --text-primary: #F2EFE6;
  --text-secondary: #8A8578;
  --text-tertiary: #5A5648;
  --accent: #F2EFE6;
  --accent-soft: rgba(242,239,230,0.06);
  --gold: #C49A2A;
  --gold-light: #E8C060;
  --gold-subtle: rgba(196,154,42,0.12);
  --stripe-gradient: linear-gradient(135deg, #1a1608 0%, #0A0908 100%);

  --nav-bg: rgba(10,9,8,0.88);
  --nav-border: rgba(196,154,42,0.15);
}

/* --- RESET --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text-primary);
  font-size: 16px;
  line-height: 1.6;
  transition: background var(--transition), color var(--transition);
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: opacity var(--transition); }
a:hover { opacity: 0.65; }

/* --- REVEAL --- */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s cubic-bezier(0.16,1,0.3,1), transform 0.8s cubic-bezier(0.16,1,0.3,1);
}
[data-reveal].revealed { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) { [data-reveal] { opacity:1; transform:none; transition:none; } }

/* --- LAYOUT --- */
.container { max-width: 1160px; margin: 0 auto; padding: 0 40px; }
.section { padding: 84px 0; }

@media (max-width: 768px) {
  .container { padding: 0 20px; }
  .section { padding: 56px 0; }
}

/* --- LABELS --- */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.section-label::before {
  content: '';
  display: block;
  width: 20px;
  height: 1px;
  background: var(--gold);
}

.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 60px;
}
.section-header h2 { margin-bottom: 0; }
.section-link { font-size: 14px; font-weight: 500; color: var(--text-secondary); white-space: nowrap; }

/* --- TYPOGRAPHY --- */
h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 300;
  line-height: 1.03;
  letter-spacing: -0.025em;
  color: var(--text-primary);
}
h1 { font-size: clamp(52px, 8.5vw, 104px); }
h2 { font-size: clamp(38px, 5.5vw, 64px); }
h3 { font-size: 26px; font-weight: 400; }
em { font-style: italic; }

p { color: var(--text-secondary); line-height: 1.8; font-size: 16px; font-weight: 300; }

/* --- BUTTONS --- */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 15px 32px;
  background: var(--text-primary); color: var(--bg);
  font-size: 13px; font-weight: 500; letter-spacing: 0.04em;
  border-radius: 100px; border: none; cursor: pointer;
  transition: opacity var(--transition), transform var(--transition), box-shadow var(--transition);
}
.btn-primary:hover { opacity: 0.85; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.15); }

[data-theme="dark"] .btn-primary {
  background: var(--gold);
  color: #0A0908;
}

.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 15px 32px;
  background: transparent; color: var(--text-primary);
  font-size: 13px; font-weight: 500; letter-spacing: 0.04em;
  border: 1px solid var(--surface-border); border-radius: 100px;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
}
.btn-ghost:hover { background: var(--accent-soft); transform: translateY(-2px); opacity: 1; }

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: var(--nav-bg);
  border-bottom: 1px solid var(--nav-border);
  backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
  transition: background var(--transition), border-color var(--transition);
}

.nav-inner {
  max-width: 1160px; margin: 0 auto; padding: 0 40px;
  height: 68px; display: flex; align-items: center;
  justify-content: space-between; gap: 32px;
}

.nav-logo img {
  height: 30px; width: auto;
  transition: opacity var(--transition);
}
[data-theme="dark"] .nav-logo img { filter: invert(1) sepia(1) saturate(2) hue-rotate(5deg) brightness(1.1); }

.nav-links {
  display: flex; align-items: center; gap: 36px;
  font-size: 13px; font-weight: 400; color: var(--text-secondary);
  letter-spacing: 0.01em;
}
.nav-links a { transition: color var(--transition); }
.nav-links a:hover, .nav-links a.active { color: var(--text-primary); opacity: 1; }
[data-theme="dark"] .nav-links a:hover,
[data-theme="dark"] .nav-links a.active { color: var(--gold-light); }

.nav-lang {
  display: flex; align-items: center; gap: 4px;
  font-size: 12px; letter-spacing: 0.08em;
  color: var(--text-tertiary);
}
.nav-lang a { padding: 4px 6px; border-radius: 4px; transition: color var(--transition), background var(--transition); }
.nav-lang a:hover, .nav-lang a.active { color: var(--gold); opacity: 1; }
.nav-lang span { color: var(--text-tertiary); opacity: 0.4; }

.nav-actions { display: flex; align-items: center; gap: 10px; }

.theme-toggle {
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid var(--surface-border); background: var(--surface);
  color: var(--text-secondary); font-size: 15px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition); backdrop-filter: blur(10px);
}
.theme-toggle:hover { transform: scale(1.1); border-color: var(--gold); color: var(--gold); }

.icon-sun { display: none; }
.icon-moon { display: block; }
[data-theme="light"] .icon-sun { display: block; }
[data-theme="light"] .icon-moon { display: none; }

.nav-burger {
  display: none; flex-direction: column; gap: 5px;
  width: 38px; height: 38px; align-items: center; justify-content: center;
  background: transparent; border: 1px solid var(--surface-border); border-radius: 8px; cursor: pointer;
}
.nav-burger span { display: block; width: 18px; height: 1.5px; background: var(--text-primary); transition: all var(--transition); }

.nav-mobile {
  display: none; flex-direction: column;
  padding: 16px 40px 24px; gap: 18px; font-size: 15px;
  border-top: 1px solid var(--surface-border);
}
.nav-mobile.open { display: flex; }

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-lang { display: none; }
  .nav-burger { display: flex; }
  .nav-inner { padding: 0 20px; }
  .nav-mobile { padding: 16px 20px 24px; }
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative; min-height: 100svh;
  display: flex; align-items: center; overflow: hidden;
}

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

.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(8,7,5,0.92) 0%, rgba(8,7,5,0.65) 55%, rgba(8,7,5,0.25) 100%);
}

/* Gold shimmer line across hero */
.hero-gold-line {
  position: absolute; bottom: 0; left: 0; right: 0; height: 1px; z-index: 2;
  background: linear-gradient(90deg, transparent 0%, var(--gold) 40%, var(--gold-light) 60%, transparent 100%);
  opacity: 0.5;
}

.hero-content {
  position: relative; z-index: 1;
  max-width: 1160px; margin: 0 auto;
  padding: 130px 40px 100px; width: 100%;
}

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px; font-weight: 500; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 32px;
}
.hero-eyebrow::before { content: ''; display: block; width: 24px; height: 1px; background: var(--gold); }

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(64px, 11vw, 136px);
  font-weight: 300; line-height: 0.93;
  letter-spacing: -0.03em; color: #F2EFE6;
  margin-bottom: 36px;
}
.hero-headline em {
  font-style: italic;
  background: linear-gradient(135deg, #E8C060 0%, #C49A2A 50%, #F2EFE6 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

.hero-sub {
  max-width: 500px; font-size: 17px; font-weight: 300;
  color: rgba(242,239,230,0.6); line-height: 1.75; margin-bottom: 48px;
}

.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }

/* Hero CTA buttons always dark-style since hero is always dark */
.hero .btn-primary { background: var(--gold); color: #0A0908; }
.hero .btn-ghost { border-color: rgba(242,239,230,0.25); color: #F2EFE6; }
.hero .btn-ghost:hover { background: rgba(242,239,230,0.08); }

.hero-scroll-hint {
  position: absolute; bottom: 44px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  color: rgba(242,239,230,0.3); font-size: 10px; letter-spacing: 0.14em;
  text-transform: uppercase; z-index: 1;
}
.scroll-line {
  width: 1px; height: 44px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2.2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%,100% { opacity:0.4; transform:scaleY(1); }
  50% { opacity:0.9; transform:scaleY(1.08); }
}

@media (max-width: 768px) {
  .hero-content { padding: 110px 20px 90px; }
  .hero-scroll-hint { display: none; }
}

/* ============================================
   TICKER / LOGO BAND
   ============================================ */
.ticker-section {
  background: var(--bg-alt2);
  border-top: 1px solid var(--surface-border);
  border-bottom: 1px solid var(--surface-border);
  padding: 0;
  overflow: hidden;
}
[data-theme="dark"] .ticker-section {
  background: var(--bg-alt);
  border-color: rgba(196,154,42,0.12);
}

.ticker-label-bar {
  display: flex; align-items: stretch;
}

.ticker-tag {
  flex-shrink: 0;
  display: flex; align-items: center;
  padding: 0 28px;
  font-size: 10px; font-weight: 600; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--gold);
  border-right: 1px solid var(--surface-border);
  white-space: nowrap;
}

.ticker-track-wrap {
  overflow: hidden; flex: 1;
  mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
}

.ticker-track {
  display: flex; align-items: center; gap: 0;
  animation: ticker 28s linear infinite;
  width: max-content;
}
.ticker-track:hover { animation-play-state: paused; }

@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

.ticker-item {
  display: flex; align-items: center;
  padding: 18px 40px;
  border-right: 1px solid var(--surface-border);
  white-space: nowrap;
  font-size: 13px; font-weight: 500;
  color: var(--text-secondary);
  letter-spacing: 0.02em;
  transition: color var(--transition);
}
.ticker-item:hover { color: var(--text-primary); }
[data-theme="dark"] .ticker-item:hover { color: var(--gold-light); }

.ticker-dot {
  display: inline-block; width: 4px; height: 4px;
  border-radius: 50%; background: var(--gold); margin-right: 12px; flex-shrink: 0;
  opacity: 0.6;
}

/* ============================================
   ABOUT
   ============================================ */
.about-section { background: var(--bg); }

.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 100px; align-items: center; margin-bottom: 56px;
}

.about-text h2 { margin-bottom: 28px; }
.about-text p { margin-bottom: 18px; }
.about-text p:last-child { margin-bottom: 0; }

.about-image {
  position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/5;
}
.about-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.9s ease; }
.about-image:hover img { transform: scale(1.04); }

/* Gold corner accent */
.about-image::after {
  content: '';
  position: absolute; top: 16px; right: 16px;
  width: 40px; height: 40px;
  border-top: 1.5px solid var(--gold); border-right: 1.5px solid var(--gold);
  border-radius: 0 4px 0 0; opacity: 0.6;
}

/* Stats */
.stats-row {
  display: grid; grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--surface-border); border-radius: var(--radius); overflow: hidden;
}
[data-theme="dark"] .stats-row { border-color: rgba(196,154,42,0.2); }

.stat {
  display: flex; flex-direction: column; align-items: center;
  padding: 44px 24px; background: var(--bg); gap: 8px; text-align: center;
  border-right: 1px solid var(--surface-border); position: relative;
}
.stat:last-child { border-right: none; }
[data-theme="dark"] .stat { border-color: rgba(196,154,42,0.12); }

.stat-number {
  font-family: var(--font-display); font-size: 56px; font-weight: 300;
  color: var(--text-primary); line-height: 1;
}
[data-theme="dark"] .stat-number { color: var(--gold-light); }
.stat-label { font-size: 12px; font-weight: 400; color: var(--text-tertiary); letter-spacing: 0.08em; }

@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 56px; }
  .about-image { aspect-ratio: 16/9; }
  .stats-row { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 480px) { .stats-row { grid-template-columns: 1fr; } }

/* ============================================
   FULLWIDTH IMAGE
   ============================================ */
.fullwidth-image { position: relative; height: 60vh; min-height: 380px; overflow: hidden; }
.fullwidth-image img { width: 100%; height: 100%; object-fit: cover; object-position: center 40%; }
.fullwidth-caption {
  position: absolute; bottom: 20px; right: 28px;
  font-size: 10px; letter-spacing: 0.14em; color: rgba(242,239,230,0.4); text-transform: uppercase;
}
/* Gold overlay strip */
.fullwidth-image::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

/* ============================================
   CONCERTS / NEWS
   ============================================ */
.news-section { background: var(--bg-alt); }

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

.news-card {
  background: var(--surface);
  border: 1px solid var(--surface-border);
  border-radius: var(--radius); padding: 36px;
  backdrop-filter: blur(12px);
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
  position: relative; overflow: hidden;
}
.news-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s ease;
}
.news-card:hover { transform: translateY(-4px); border-color: var(--gold); box-shadow: 0 12px 40px rgba(0,0,0,0.1); }
.news-card:hover::before { transform: scaleX(1); }
[data-theme="dark"] .news-card:hover { box-shadow: 0 12px 40px rgba(196,154,42,0.08); }

.news-date { display: block; font-size: 11px; font-weight: 400; color: var(--gold); letter-spacing: 0.08em; margin-bottom: 14px; }
.news-card h3 { font-size: 22px; font-weight: 400; margin-bottom: 12px; line-height: 1.2; }
.news-card p { font-size: 14px; line-height: 1.7; }

@media (max-width: 900px) { .news-grid { grid-template-columns: 1fr; } }

/* ============================================
   MEMBERS
   ============================================ */
.members-section {
  background: var(--bg);
  position: relative; overflow: hidden;
}
.members-section::before {
  content: '🎺';
  position: absolute; right: -40px; top: 50%; transform: translateY(-50%) rotate(-20deg);
  font-size: 320px; opacity: 0.02; pointer-events: none; user-select: none;
}

.members-inner { max-width: 600px; margin: 0 auto; text-align: center; }
.members-inner h2 { margin-bottom: 16px; }
.members-sub { font-size: 18px; color: var(--text-secondary); margin-bottom: 28px; }
.members-hint {
  display: inline-block; font-size: 13px; color: var(--text-tertiary);
  border: 1px solid var(--surface-border); padding: 12px 24px; border-radius: 100px;
}
[data-theme="dark"] .members-hint { border-color: rgba(196,154,42,0.2); }

/* ============================================
   ENSEMBLE TEASER / BOOKING
   ============================================ */
.piccolo-section { background: var(--bg-alt); }

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

.piccolo-image {
  border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/3; position: relative;
}
.piccolo-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.9s ease; }
.piccolo-image:hover img { transform: scale(1.04); }
.piccolo-image::before {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to top, rgba(8,7,5,0.5) 0%, transparent 50%);
}

.piccolo-text h2 { margin-bottom: 20px; }
.piccolo-text p { margin-bottom: 36px; }

@media (max-width: 900px) {
  .piccolo-grid { grid-template-columns: 1fr; gap: 56px; }
  .piccolo-image { aspect-ratio: 16/9; }
}

/* ============================================
   DIVIDER / DECORATIVE
   ============================================ */
.gold-divider {
  width: 100%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.3;
}

/* ============================================
   SUBPAGES
   ============================================ */
.page-hero { padding: 148px 0 64px; background: var(--bg); }
.page-hero h1 { margin-bottom: 0; }
.page-hero-sub { max-width: 520px; margin-top: 20px; font-size: 17px; font-weight: 300; }

.nav-links a.active { color: var(--text-primary) !important; opacity: 1; }
[data-theme="dark"] .nav-links a.active { color: var(--gold-light) !important; }

/* NEWS LIST */
.news-list-section { background: var(--bg); padding-top: 0; }
.news-list { display: flex; flex-direction: column; }
.news-list-item {
  display: grid; grid-template-columns: 200px 1fr;
  gap: 48px; align-items: start;
  padding: 52px 0; border-top: 1px solid var(--surface-border);
  transition: background var(--transition);
}
.news-list-item:last-child { border-bottom: 1px solid var(--surface-border); }
.news-list-content h2 { font-size: 32px; font-weight: 400; margin-bottom: 14px; line-height: 1.15; }
.news-list-content p { font-size: 15px; }
@media (max-width: 700px) { .news-list-item { grid-template-columns: 1fr; gap: 12px; } }

/* CONCERT TAG */
.news-tag {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 10px; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--gold);
  border: 1px solid var(--gold); border-radius: 100px;
  padding: 4px 10px; margin-bottom: 10px;
}

/* ENSEMBLES */
.ensembles-section { background: var(--bg); padding-top: 0; }
.ensemble-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin: 24px 0 48px; }
.ensemble-card {
  background: var(--surface); border: 1px solid var(--surface-border);
  border-radius: var(--radius); padding: 40px 32px;
  backdrop-filter: blur(12px);
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}
.ensemble-card:hover {
  transform: translateY(-4px); border-color: var(--gold);
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}
[data-theme="dark"] .ensemble-card:hover { box-shadow: 0 12px 40px rgba(196,154,42,0.1); }
.ensemble-number {
  font-family: var(--font-display); font-size: 60px; font-weight: 300;
  color: var(--gold); line-height: 1; margin-bottom: 16px; opacity: 0.7;
}
.ensemble-card h3 { font-size: 24px; margin-bottom: 10px; }
.ensemble-card p { font-size: 14px; line-height: 1.7; }

.occasions-block { margin-bottom: 48px; }
.occasions-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }
.occasions-tags span {
  border: 1px solid var(--surface-border); padding: 8px 20px;
  border-radius: 100px; font-size: 13px; color: var(--text-secondary);
  transition: all var(--transition);
}
.occasions-tags span:hover { border-color: var(--gold); color: var(--gold); }

.booking-cta { border-top: 1px solid var(--surface-border); padding-top: 72px; max-width: 560px; }
.booking-cta h2 { margin-bottom: 16px; }
.booking-cta p { margin-bottom: 36px; }

@media (max-width: 768px) { .ensemble-grid { grid-template-columns: 1fr; } }

/* CONTACT */
.contact-section { background: var(--bg); padding-top: 0; }
.contact-grid { display: grid; grid-template-columns: 300px 1fr; gap: 80px; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 40px; }
.contact-label {
  display: block; font-size: 10px; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 8px;
}
.contact-value { font-family: var(--font-display); font-size: 20px; font-weight: 300; color: var(--text-primary); line-height: 1.45; }

.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-field { display: flex; flex-direction: column; gap: 8px; }
.form-field label { font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-tertiary); }
.form-field input, .form-field textarea {
  background: var(--surface); border: 1px solid var(--surface-border);
  border-radius: var(--radius-sm); padding: 14px 18px;
  font-family: var(--font-body); font-size: 15px; font-weight: 300;
  color: var(--text-primary); transition: border-color var(--transition);
  resize: vertical; -webkit-appearance: none;
}
.form-field input::placeholder, .form-field textarea::placeholder { color: var(--text-tertiary); }
.form-field input:focus, .form-field textarea:focus { outline: none; border-color: var(--gold); }
.form-submit { align-self: flex-start; margin-top: 4px; }
.form-note { font-size: 12px; color: var(--text-tertiary); margin-top: -4px; }

.form-success {
  padding: 28px 32px; background: var(--gold-subtle);
  border: 1px solid var(--gold); border-radius: var(--radius); margin-bottom: 16px;
}
.form-success p { color: var(--text-primary); font-size: 16px; }
.form-error-msg {
  padding: 16px 20px; background: rgba(200,50,50,0.07);
  border: 1px solid rgba(200,50,50,0.2); border-radius: var(--radius-sm); margin-bottom: 16px;
}
.form-error-msg p { color: var(--text-secondary); font-size: 14px; }

@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; gap: 48px; } .form-row { grid-template-columns: 1fr; } }

/* LEGAL */
.legal-section { background: var(--bg); padding-top: 0; }
.legal-content { max-width: 700px; }
.legal-content h2 {
  font-size: 20px; font-weight: 500; font-family: var(--font-body);
  margin-top: 44px; margin-bottom: 12px; letter-spacing: -0.01em;
  color: var(--text-primary);
}
.legal-content h2:first-child { margin-top: 0; }
.legal-content p { margin-bottom: 12px; font-size: 15px; }
.legal-content a { text-decoration: underline; text-underline-offset: 3px; }
.legal-note {
  margin-top: 48px; padding: 16px 20px;
  background: var(--gold-subtle); border-left: 2px solid var(--gold);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 13px; color: var(--text-tertiary);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--bg-alt);
  border-top: 1px solid var(--surface-border);
  padding: 56px 0 40px;
}
[data-theme="dark"] .footer { border-color: rgba(196,154,42,0.15); }

.footer-top {
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  gap: 48px; padding-bottom: 48px;
  border-bottom: 1px solid var(--surface-border); margin-bottom: 32px;
}
[data-theme="dark"] .footer-top { border-color: rgba(196,154,42,0.1); }

.footer-brand {}
.footer-logo { height: 28px; width: auto; margin-bottom: 16px; }
[data-theme="dark"] .footer-logo { filter: invert(1) sepia(1) saturate(2) hue-rotate(5deg) brightness(1.1); }
.footer-tagline { font-family: var(--font-display); font-style: italic; font-size: 16px; color: var(--text-tertiary); }

.footer-col h4 {
  font-size: 11px; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 16px;
}
.footer-col a {
  display: block; font-size: 14px; color: var(--text-secondary);
  margin-bottom: 10px; transition: color var(--transition);
}
.footer-col a:hover { color: var(--text-primary); opacity: 1; }
[data-theme="dark"] .footer-col a:hover { color: var(--gold-light); }

.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  font-size: 12px; color: var(--text-tertiary); flex-wrap: wrap; gap: 12px;
}

@media (max-width: 768px) {
  .footer-top { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* ============================================
   LOGO TICKER (image logos)
   ============================================ */
.ticker-item.is-logo-img {
  padding: 14px 44px;
  display: flex; align-items: center; justify-content: center;
}
.ticker-item.is-logo-img img {
  height: 30px; width: auto; max-width: 130px;
  object-fit: contain;
  filter: grayscale(100%) opacity(0.55);
  transition: filter var(--transition), transform var(--transition);
}
[data-theme="dark"] .ticker-item.is-logo-img img {
  filter: grayscale(100%) opacity(0.5) invert(1) brightness(1.5);
}
.ticker-item.is-logo-img:hover img {
  filter: grayscale(0%) opacity(1);
  transform: scale(1.06);
}
[data-theme="dark"] .ticker-item.is-logo-img:hover img {
  filter: grayscale(0%) opacity(1) invert(0);
}

/* ============================================
   GALLERY — CONTINUOUS MARQUEE
   ============================================ */
.gallery-section { background: var(--bg); overflow: hidden; }

.gallery-marquee-wrap {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, black 5%, black 95%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 5%, black 95%, transparent);
}

.gallery-marquee {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: galleryScroll 42s linear infinite;
}
.gallery-marquee:hover { animation-play-state: paused; }

@keyframes galleryScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  width: 340px;
  height: 420px;
  flex-shrink: 0;
  cursor: pointer;
}
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.16,1,0.3,1), filter 0.4s ease;
  filter: grayscale(15%);
}
.gallery-item:hover img { transform: scale(1.06); filter: grayscale(0%); }
.gallery-item::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(8,7,5,0.35) 0%, transparent 40%);
  pointer-events: none;
}

@media (max-width: 768px) {
  .gallery-item { width: 260px; height: 320px; }
}

/* ============================================
   NEWS — CONTINUOUS MARQUEE
   ============================================ */
.news-marquee-wrap {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, black 5%, black 95%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 5%, black 95%, transparent);
}
.news-marquee {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: newsScroll 50s linear infinite;
}
.news-marquee:hover { animation-play-state: paused; }
@keyframes newsScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.news-marquee .news-card { width: 360px; flex-shrink: 0; }

@media (max-width: 768px) {
  .news-marquee .news-card { width: 300px; }
}

/* ============================================
   MEMBERS LOGIN (placeholder)
   ============================================ */
.members-section {
  background: var(--bg-alt2);
  position: relative;
  overflow: hidden;
  padding: 0;
}

.members-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
}

.members-visual {
  position: relative;
  overflow: hidden;
}
.members-visual img {
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(40%) brightness(0.75);
}
.members-visual::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(8,7,5,0.5), rgba(139,105,20,0.25));
}

.members-form-side {
  display: flex; flex-direction: column; justify-content: center;
  padding: 80px;
}

.login-card {
  max-width: 380px;
}

.login-card .section-label { margin-bottom: 20px; }
.login-card h2 { font-size: 40px; margin-bottom: 12px; }
.login-card .login-sub { font-size: 15px; color: var(--text-secondary); margin-bottom: 36px; }

.login-form { display: flex; flex-direction: column; gap: 16px; }
.login-form input {
  background: var(--surface); border: 1px solid var(--surface-border);
  border-radius: var(--radius-sm); padding: 14px 18px;
  font-family: var(--font-body); font-size: 15px; font-weight: 300;
  color: var(--text-primary); transition: border-color var(--transition);
}
.login-form input::placeholder { color: var(--text-tertiary); }
.login-form input:focus { outline: none; border-color: var(--gold); }

.login-btn {
  margin-top: 8px;
  padding: 15px 32px;
  background: var(--text-primary); color: var(--bg);
  font-size: 13px; font-weight: 500; letter-spacing: 0.04em;
  border-radius: 100px; border: none; cursor: pointer;
  transition: opacity var(--transition), transform var(--transition);
}
[data-theme="dark"] .login-btn { background: var(--gold); color: #0A0908; }
.login-btn:hover { opacity: 0.85; transform: translateY(-2px); }

.login-note {
  margin-top: 20px;
  font-size: 12px;
  color: var(--text-tertiary);
  display: flex; align-items: center; gap: 8px;
}
.login-note::before { content: '🔒'; font-size: 11px; }

.login-form-footer {
  margin-top: 18px;
  display: flex; align-items: center; justify-content: space-between;
  font-size: 12px;
}
.login-form-footer a { color: var(--gold); }

@media (max-width: 900px) {
  .members-split { grid-template-columns: 1fr; }
  .members-visual { min-height: 280px; }
  .members-form-side { padding: 56px 32px; }
}

/* ============================================
   PREMIUM TOUCHES
   ============================================ */

/* Subtle grain texture overlay for depth */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}

/* Gold ambient glow behind hero headline */
.hero-content::before {
  content: '';
  position: absolute;
  top: 10%; left: -10%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(196,154,42,0.15) 0%, transparent 70%);
  pointer-events: none;
  z-index: -1;
}

/* Refined stat number with subtle glow in dark mode */
[data-theme="dark"] .stat-number {
  text-shadow: 0 0 24px rgba(196,154,42,0.25);
}

/* Section labels with subtle letter animation on hover for interactive elements */
.footer-col h4 {
  position: relative;
}

/* Gold accent scrollbar */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb {
  background: var(--surface-border);
  border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover { background: var(--gold); }

/* Selection color */
::selection {
  background: var(--gold-subtle);
  color: var(--text-primary);
}

/* Subtle vignette on gallery/news marquee edges already handled by mask-image */

/* Navbar subtle bottom glow when scrolled */
.navbar.scrolled {
  box-shadow: 0 1px 0 var(--gold-subtle);
}

/* CTA button shine sweep effect */
.btn-primary {
  position: relative;
  overflow: hidden;
}
.btn-primary::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%; height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.25), transparent);
  transition: left 0.6s ease;
}
.btn-primary:hover::before { left: 130%; }

/* Login card refined focus glow */
.login-form input:focus {
  box-shadow: 0 0 0 3px var(--gold-subtle);
}
.form-field input:focus, .form-field textarea:focus {
  box-shadow: 0 0 0 3px var(--gold-subtle);
}
.barock-hero {
  position: relative;
  min-height: 70vh;
  display: flex; align-items: flex-end;
  overflow: hidden;
  padding-bottom: 80px;
}
.barock-hero-bg {
  position: absolute; inset: 0; z-index: 0;
}
.barock-hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.barock-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(8,7,5,0.3) 0%, rgba(8,7,5,0.85) 100%);
}
.barock-hero-content {
  position: relative; z-index: 1;
  max-width: 1160px; margin: 0 auto; padding: 0 40px; width: 100%;
}
.barock-hero-content h1 { color: #F2EFE6; font-size: clamp(48px, 7vw, 84px); }
.barock-hero-content .hero-eyebrow { color: var(--gold-light); }
.barock-hero-content p {
  color: rgba(242,239,230,0.7); max-width: 560px; margin-top: 20px; font-size: 17px;
}

.barock-intro { background: var(--bg); }
.barock-intro-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: start;
}
.barock-intro-grid p { margin-bottom: 18px; }

.barock-facts {
  display: flex; flex-direction: column; gap: 24px;
  padding: 32px; background: var(--surface); border: 1px solid var(--surface-border);
  border-radius: var(--radius);
}
.barock-fact { display: flex; flex-direction: column; gap: 4px; }
.barock-fact-label { font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); }
.barock-fact-value { font-family: var(--font-display); font-size: 20px; font-weight: 400; }

@media (max-width: 900px) {
  .barock-intro-grid { grid-template-columns: 1fr; gap: 48px; }
}

/* ============================================
   AMBIENT GLOW EFFECTS
   ============================================ */
.about-section {
  position: relative;
}
.about-section::before {
  content: '';
  position: absolute;
  top: 10%; right: -10%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, var(--gold-subtle) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.about-section .container { position: relative; z-index: 1; }

.piccolo-section {
  position: relative;
  overflow: hidden;
}
.piccolo-section::before {
  content: '';
  position: absolute;
  bottom: -15%; left: -8%;
  width: 460px; height: 460px;
  background: radial-gradient(circle, var(--gold-subtle) 0%, transparent 70%);
  pointer-events: none;
}
.piccolo-section .container { position: relative; z-index: 1; }

.news-section { position: relative; overflow: hidden; }
.news-section::before {
  content: '';
  position: absolute;
  top: -10%; left: 50%; transform: translateX(-50%);
  width: 700px; height: 300px;
  background: radial-gradient(ellipse, var(--gold-subtle) 0%, transparent 70%);
  pointer-events: none;
}
.news-section .container { position: relative; z-index: 1; }

/* Subtle noise/grain texture overlay for premium feel */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.015;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* Gold glow on hero headline */
.hero-headline {
  filter: drop-shadow(0 0 40px rgba(196,154,42,0.15));
}

/* ============================================
   WORLD MAP — Tour Locations
   ============================================ */
.map-section { background: var(--bg-alt); position: relative; overflow: hidden; }

.map-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-alt2);
  border: 1px solid var(--surface-border);
  padding: 32px 24px 24px;
}
[data-theme="dark"] .map-wrap { border-color: rgba(196,154,42,0.15); }

.map-tabs {
  display: flex; gap: 8px; margin-bottom: 20px;
}
.map-tab {
  padding: 8px 20px;
  font-size: 12px; font-weight: 500; letter-spacing: 0.04em;
  color: var(--text-tertiary);
  background: transparent;
  border: 1px solid var(--surface-border);
  border-radius: 100px;
  cursor: pointer;
  transition: all var(--transition);
}
.map-tab:hover { color: var(--text-primary); }
.map-tab.active {
  color: var(--bg);
  background: var(--text-primary);
  border-color: var(--text-primary);
}
[data-theme="dark"] .map-tab.active {
  background: var(--gold);
  color: #0A0908;
  border-color: var(--gold);
}

.map-view { display: none; }
.map-view.active { display: block; }

.world-map-svg-wrap {
  position: relative;
  width: 100%;
  color: var(--text-secondary);
}

.world-map-svg-wrap svg { width: 100%; height: auto; display: block; }

.map-dot {
  fill: var(--gold);
  cursor: pointer;
  transition: r 0.2s ease, fill 0.2s ease;
}
.map-dot:hover { fill: var(--gold-light); }

.map-dot-pulse {
  fill: none;
  stroke: var(--gold);
  stroke-width: 1;
  opacity: 0;
  animation: mapPulse 3s ease-out infinite;
  pointer-events: none;
}
@keyframes mapPulse {
  0% { r: 3.5; opacity: 0.6; }
  100% { r: 16; opacity: 0; }
}

.map-tooltip {
  position: absolute;
  padding: 6px 12px;
  background: var(--text-primary);
  color: var(--bg);
  font-size: 12px;
  font-weight: 500;
  border-radius: 6px;
  pointer-events: none;
  opacity: 0;
  transform: translate(-50%, -130%);
  transition: opacity 0.15s ease;
  white-space: nowrap;
  z-index: 10;
}
.map-tooltip.visible { opacity: 1; }
[data-theme="dark"] .map-tooltip {
  background: var(--gold);
  color: #0A0908;
}

.map-caption {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--surface-border);
}
[data-theme="dark"] .map-caption { border-color: rgba(196,154,42,0.12); }

.map-caption-text { font-size: 13px; color: var(--text-tertiary); }
.map-caption-count {
  font-family: var(--font-display);
  font-size: 15px;
  color: var(--gold);
}

@media (max-width: 640px) {
  .map-wrap { padding: 16px 12px 12px; }
  .map-tabs { flex-wrap: wrap; }
  .d3-map-container { min-height: 0; }
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-section { background: var(--bg); position: relative; }

.testimonial-carousel {
  max-width: 720px;
  margin: 0 auto;
  position: relative;
  min-height: 200px;
}

.testimonial-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  pointer-events: none;
  text-align: center;
}
.testimonial-slide.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  position: relative;
}

.testimonial-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 300;
  line-height: 1.4;
  color: var(--text-primary);
  margin-bottom: 24px;
}
.testimonial-quote::before { content: '„'; color: var(--gold); }
.testimonial-quote::after { content: '"'; color: var(--gold); }

.testimonial-author {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-tertiary);
  letter-spacing: 0.03em;
}
.testimonial-author span { color: var(--gold); }

.testimonial-dots {
  display: flex; justify-content: center; gap: 8px;
  margin-top: 40px;
}
.testimonial-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--surface-border);
  border: none; cursor: pointer;
  transition: all var(--transition);
  padding: 0;
}
.testimonial-dot.active { background: var(--gold); width: 20px; border-radius: 4px; }

.feedback-cta {
  text-align: center;
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid var(--surface-border);
}
[data-theme="dark"] .feedback-cta { border-color: rgba(196,154,42,0.12); }
.feedback-cta p { margin-bottom: 20px; font-size: 15px; }

/* ============================================
   FÖRDERER / SPONSORS PAGE
   ============================================ */
.sponsors-hero-note {
  max-width: 600px;
}

.sponsors-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 24px;
}

.sponsor-card {
  background: var(--surface);
  border: 1px solid var(--surface-border);
  border-radius: var(--radius);
  padding: 40px;
  backdrop-filter: blur(12px);
}
[data-theme="dark"] .sponsor-card { border-color: rgba(196,154,42,0.15); }

.sponsor-card h3 {
  font-size: 22px;
  margin-bottom: 20px;
  display: flex; align-items: center; gap: 10px;
}

.qr-box {
  display: flex; flex-direction: column; align-items: center;
  gap: 16px;
  text-align: center;
}

.qr-code-wrap {
  background: #fff;
  padding: 16px;
  border-radius: 12px;
  display: inline-block;
}
.qr-code-wrap img { width: 160px; height: 160px; display: block; }

.bank-details {
  display: flex; flex-direction: column; gap: 14px;
}
.bank-row {
  display: flex; justify-content: space-between; align-items: baseline;
  gap: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--surface-border);
}
[data-theme="dark"] .bank-row { border-color: rgba(196,154,42,0.1); }
.bank-row:last-child { border-bottom: none; padding-bottom: 0; }
.bank-label {
  font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--text-tertiary); white-space: nowrap;
}
.bank-value {
  font-family: var(--font-display);
  font-size: 16px;
  color: var(--text-primary);
  text-align: right;
  word-break: break-all;
}

.sponsor-contact-note {
  margin-top: 20px;
  font-size: 13px;
  color: var(--text-tertiary);
}
.sponsor-contact-note a { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }

.thanks-section {
  background: var(--bg-alt);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.thanks-section::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, var(--gold-subtle) 0%, transparent 70%);
  pointer-events: none;
}
.thanks-content {
  position: relative; z-index: 1;
  max-width: 640px;
  margin: 0 auto;
}
.thanks-content h2 { margin-bottom: 20px; }
.thanks-content p { font-size: 17px; }

@media (max-width: 900px) {
  .sponsors-grid { grid-template-columns: 1fr; }
}

/* ============================================
   D3 WORLD MAP (real geography)
   ============================================ */
.d3-map-container {
  position: relative;
  width: 100%;
  min-height: 400px;
}

.d3-world-svg {
  width: 100%;
  height: auto;
  display: block;
}

.map-loading {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-size: 13px;
  color: var(--text-tertiary);
}

.country-path {
  fill: var(--bg-alt2);
  stroke: var(--text-tertiary);
  stroke-width: 1.1;
  transition: fill var(--transition);
}
[data-theme="dark"] .country-path {
  fill: #16140d;
  stroke: rgba(196,154,42,0.4);
  stroke-width: 1.1;
}

.city-dot .map-dot {
  fill: var(--gold);
  cursor: pointer;
  transition: r 0.2s ease, fill 0.2s ease;
}
.city-dot:hover .map-dot { fill: var(--gold-light); r: 5; }

.city-dot .map-dot-pulse {
  fill: none;
  stroke: var(--gold);
  stroke-width: 1;
  opacity: 0;
  animation: mapPulseD3 3s ease-out infinite;
  pointer-events: none;
}
@keyframes mapPulseD3 {
  0% { r: 3.5; opacity: 0.6; }
  100% { r: 14; opacity: 0; }
}

/* ============================================
   MEMBER ORCHESTRAS
   ============================================ */
.orchestras-section { background: var(--bg-alt); position: relative; overflow: hidden; }
.orchestras-section::before {
  content: '';
  position: absolute;
  top: -10%; right: -5%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, var(--gold-subtle) 0%, transparent 70%);
  pointer-events: none;
}
.orchestras-section .container { position: relative; z-index: 1; }

.orchestras-intro { max-width: 640px; margin-bottom: 44px; }
.orchestras-intro p { margin-top: 12px; }

.orchestras-grid {
  display: flex; flex-wrap: wrap; gap: 12px;
}
.orchestra-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 22px;
  border: 1px solid var(--surface-border);
  border-radius: 100px;
  background: var(--surface);
  backdrop-filter: blur(12px);
  font-size: 14px; font-weight: 400; color: var(--text-primary);
  transition: all var(--transition);
}
[data-theme="dark"] .orchestra-badge { border-color: rgba(196,154,42,0.15); }
.orchestra-badge:hover {
  border-color: var(--gold); color: var(--gold); opacity: 1;
  transform: translateY(-2px);
}
.orchestra-badge svg { flex-shrink: 0; opacity: 0.6; }
.orchestra-badge:hover svg { opacity: 1; }

.orchestras-more {
  margin-top: 20px;
  font-size: 16px;
  color: var(--text-secondary);
  font-family: var(--font-body);
  font-weight: 300;
}

/* Fallback state: subtle dot-grid background when country borders can't load */
.d3-map-container {
  background-image: radial-gradient(circle, var(--surface-border) 1px, transparent 1px);
  background-size: 24px 24px;
  border-radius: var(--radius-sm);
}
[data-theme="dark"] .d3-map-container {
  background-image: radial-gradient(circle, rgba(196,154,42,0.08) 1px, transparent 1px);
}
