/* ═══════════════════════════════════════════════════════════════
   Pannonisches Forum Kittsee — Shared Stylesheet
   ═══════════════════════════════════════════════════════════════ */

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

:root {
  --gold:       #C4973C;
  --gold-light: #D4AD5A;
  --gold-pale:  #EDD89A;
  --kastanie:   #1E0F0F;
  --burgunder:  #5C1A1A;
  --pergament:  #F8F0E0;
  --pergament2: #F0E4C8;
  --sandstein:  #8B7355;
  --weiss:      #FFFFFF;
  --grau:       #6B6B6B;
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Lato', sans-serif;
  background: var(--pergament);
  color: var(--kastanie);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ── NAVIGATION ── */
.nav {
  background: var(--kastanie);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(196,151,60,0.2);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo { height: 56px; width: auto; }

/* Brand block in nav: original logo + text wordmark */
.nav-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  height: 100%;
}
.nav-crest {
  width: 56px;
  height: 56px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 1px 4px rgba(196,151,60,0.2));
}
.nav-brand-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
  line-height: 1;
}
.nav-brand-text::before {
  content: '';
  width: 36px;
  height: 1px;
  background: var(--gold);
  margin-bottom: 2px;
}
.nav-brand-title {
  font-family: 'Playfair Display', serif;
  color: var(--gold-pale);
  font-size: 1.15rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.nav-brand-sub {
  font-family: 'Lato', sans-serif;
  color: var(--sandstein);
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
@media (max-width: 640px) {
  .nav-crest { width: 40px; height: 40px; }
  .nav-brand-title { font-size: 0.95rem; }
  .nav-brand-text::before { display: none; }
  .nav-brand-sub { display: none; }
}
.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--pergament);
  transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-cta {
  background: var(--gold);
  color: var(--kastanie);
  padding: 10px 22px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: background 0.2s;
}
.nav-cta:hover { background: var(--gold-light); }
.nav-burger {
  display: none;
  color: var(--gold);
  font-size: 1.6rem;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;
  line-height: 1;
  transition: color 0.2s;
}
.nav-burger:hover { color: var(--gold-light); }

/* ── BREADCRUMB ── */
.breadcrumb {
  background: var(--pergament2);
  padding: 14px 32px;
  font-size: 0.75rem;
  color: var(--sandstein);
  letter-spacing: 0.05em;
}
.breadcrumb-inner { max-width: 1200px; margin: 0 auto; }
.breadcrumb a { color: var(--sandstein); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--burgunder); }
.breadcrumb .sep { margin: 0 8px; color: var(--gold); }
.breadcrumb .current { color: var(--kastanie); }

/* ── HERO (Homepage) ── */
.hero {
  position: relative;
  min-height: 720px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 32px;
  overflow: hidden;
  background: var(--kastanie);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.45);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(30,15,15,0.5) 0%, rgba(30,15,15,0.75) 100%);
}
.hero-inner { position: relative; z-index: 2; max-width: 900px; }
.hero-crest {
  width: 240px;
  height: auto;
  display: block;
  margin: 0 auto 32px;
  filter: drop-shadow(0 4px 16px rgba(196,151,60,0.25));
}
.hero-overline {
  font-family: 'Lato', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.hero-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: 400px;
  margin: 0 auto 24px;
}
.hero-divider::before, .hero-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-pale), transparent);
}
.hero-divider span { color: var(--gold); font-size: 1rem; }
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 5.5vw, 4.4rem);
  font-weight: 400;
  color: var(--pergament);
  line-height: 1.1;
  letter-spacing: 0.01em;
}
.hero-sub {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.1rem, 2vw, 1.7rem);
  font-style: italic;
  color: var(--gold-pale);
  margin-top: 12px;
  margin-bottom: 32px;
}
.hero-tagline {
  font-family: 'Lato', sans-serif;
  font-size: 1rem;
  color: rgba(248,240,224,0.8);
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.8;
}

/* ── PAGE HEADER (für Detailseiten) ── */
.page-header {
  background: var(--kastanie);
  color: var(--pergament);
  padding: 80px 32px 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(45deg, rgba(196,151,60,0.04) 0px, rgba(196,151,60,0.04) 1px, transparent 1px, transparent 60px);
  pointer-events: none;
}
.page-header-inner { position: relative; max-width: 900px; margin: 0 auto; }
.page-crest {
  width: 110px;
  height: auto;
  display: block;
  margin: 0 auto 28px;
  filter: drop-shadow(0 2px 8px rgba(196,151,60,0.2));
}
.page-eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.page-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: 280px;
  margin: 0 auto 20px;
}
.page-divider::before, .page-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-pale), transparent);
}
.page-divider span { color: var(--gold); }
.page-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  color: var(--pergament);
  line-height: 1.15;
}
.page-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-style: italic;
  color: var(--gold-pale);
  margin-top: 12px;
}

/* ── BUTTONS ── */
.btn-primary, .btn-outline {
  display: inline-block;
  font-family: 'Lato', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 16px 32px;
  cursor: pointer;
  transition: all 0.25s;
  border: none;
}
.btn-primary { background: var(--gold); color: var(--kastanie); }
.btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); }
.btn-outline {
  background: transparent;
  color: var(--pergament);
  border: 1.5px solid rgba(248,240,224,0.5);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.btn-outline.dark {
  color: var(--kastanie);
  border-color: var(--kastanie);
}
.btn-outline.dark:hover { color: var(--burgunder); border-color: var(--burgunder); }
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-top: 16px; }

/* ── SECTIONS ── */
section { padding: 96px 32px; }
.container { max-width: 1200px; margin: 0 auto; }
.container-narrow { max-width: 860px; margin: 0 auto; }
.section-head { text-align: center; margin-bottom: 64px; }
.section-eyebrow {
  font-family: 'Lato', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 400;
  color: var(--kastanie);
  margin-bottom: 12px;
}
.section-lead {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-style: italic;
  color: var(--sandstein);
  max-width: 600px;
  margin: 0 auto;
}

/* ── KONZERT-KARTEN (Grid auf Homepage und Programm-Seite) ── */
.konzerte-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.konzert-card {
  background: white;
  border-top: 3px solid var(--gold);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s, box-shadow 0.25s;
  box-shadow: 0 2px 12px rgba(30,15,15,0.06);
}
.konzert-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(30,15,15,0.12);
}
.konzert-date {
  font-family: 'Lato', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.konzert-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--kastanie);
  margin-bottom: 4px;
  line-height: 1.25;
}
.konzert-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  font-style: italic;
  color: var(--sandstein);
  margin-bottom: 20px;
}
.konzert-artists { list-style: none; margin-bottom: 20px; flex: 1; }
.konzert-artists li {
  font-size: 0.88rem;
  color: var(--kastanie);
  padding: 6px 0;
  border-bottom: 1px solid var(--pergament2);
}
.konzert-artists li:last-child { border-bottom: none; }
.konzert-artists li strong { font-weight: 600; display: block; font-size: 0.92rem; }
.konzert-artists li span { font-size: 0.75rem; color: var(--grau); font-style: italic; }
.konzert-works {
  font-size: 0.78rem;
  color: var(--grau);
  line-height: 1.6;
  padding: 14px 0 18px;
  border-top: 1px dashed var(--pergament2);
  margin-top: 8px;
}
.konzert-works strong { color: var(--burgunder); font-weight: 500; }
.konzert-action {
  background: var(--kastanie);
  color: var(--gold);
  text-align: center;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 14px;
  transition: background 0.2s;
  margin-top: auto;
}
.konzert-action:hover { background: var(--burgunder); }

/* ── KONZERT DETAIL ── */
.konzert-meta-bar {
  background: white;
  padding: 32px;
  border-left: 4px solid var(--gold);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 24px;
  margin-bottom: 64px;
  box-shadow: 0 2px 12px rgba(30,15,15,0.05);
}
.meta-item-label {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sandstein);
  margin-bottom: 6px;
}
.meta-item-value {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  color: var(--kastanie);
}

.programm-block {
  background: white;
  padding: 48px;
  margin-bottom: 64px;
  box-shadow: 0 2px 12px rgba(30,15,15,0.05);
}
.programm-block h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--burgunder);
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--gold-pale);
}
.programm-werk {
  padding: 18px 0;
  border-bottom: 1px solid var(--pergament2);
}
.programm-werk:last-child { border-bottom: none; }
.programm-werk-komponist {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--kastanie);
  margin-bottom: 2px;
}
.programm-werk-titel {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  font-style: italic;
  color: var(--sandstein);
}
.programm-werk-besetzung {
  font-size: 0.8rem;
  color: var(--grau);
  margin-top: 4px;
}

.programm-text {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--kastanie);
}
.programm-text p { margin-bottom: 18px; }
.programm-text p strong { color: var(--burgunder); font-weight: 600; }

/* Künstler-Tile auf Konzertdetail */
.kuenstler-tiles {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}
.kuenstler-tile {
  background: white;
  text-align: center;
  padding: 24px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.kuenstler-tile:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(30,15,15,0.1);
}
.kuenstler-tile-photo {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 16px;
  border: 3px solid var(--gold-pale);
  background: var(--pergament2);
  display: block;
}
.kuenstler-tile-photo-placeholder {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  margin: 0 auto 16px;
  background: linear-gradient(135deg, var(--pergament2), var(--gold-pale));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  color: var(--burgunder);
  border: 3px solid var(--gold-pale);
}
.kuenstler-tile-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--kastanie);
  margin-bottom: 4px;
}
.kuenstler-tile-role {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.95rem;
  font-style: italic;
  color: var(--sandstein);
}
.kuenstler-tile-orchester {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-top: 8px;
  text-transform: uppercase;
}

/* ── KÜNSTLER DETAIL ── */
.kuenstler-detail-grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 64px;
  align-items: start;
}
.kuenstler-photo-large {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  box-shadow: 0 12px 40px rgba(30,15,15,0.18);
  background: var(--pergament2);
}
.kuenstler-photo-placeholder-large {
  width: 100%;
  aspect-ratio: 3/4;
  background: linear-gradient(135deg, var(--pergament2), var(--gold-pale));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 6rem;
  color: var(--burgunder);
  box-shadow: 0 12px 40px rgba(30,15,15,0.12);
}
.kuenstler-photo-credit {
  font-size: 0.7rem;
  color: var(--sandstein);
  font-style: italic;
  text-align: right;
  margin-top: 8px;
}
.kuenstler-instrument {
  font-family: 'Lato', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.kuenstler-name {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 400;
  color: var(--kastanie);
  line-height: 1.1;
  margin-bottom: 8px;
}
.kuenstler-orchester {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-style: italic;
  color: var(--burgunder);
  margin-bottom: 32px;
}
.kuenstler-bio {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--kastanie);
}
.kuenstler-bio p { margin-bottom: 18px; }
.kuenstler-highlights {
  background: var(--pergament2);
  padding: 28px 32px;
  margin: 32px 0;
  border-left: 3px solid var(--gold);
}
.kuenstler-highlights h4 {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--burgunder);
  margin-bottom: 16px;
}
.kuenstler-highlights ul { list-style: none; }
.kuenstler-highlights li {
  font-size: 0.92rem;
  color: var(--kastanie);
  padding: 8px 0 8px 24px;
  position: relative;
  line-height: 1.5;
}
.kuenstler-highlights li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.8rem;
}
.kuenstler-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 24px;
}
.kuenstler-link {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  color: var(--burgunder);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
  transition: color 0.2s;
}
.kuenstler-link:hover { color: var(--gold); }

/* Konzert-Auftritte im Künstler-Profil */
.auftritte {
  background: white;
  padding: 32px;
  margin-top: 48px;
  border-left: 3px solid var(--burgunder);
}
.auftritte h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: var(--kastanie);
  margin-bottom: 16px;
}
.auftritte-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--pergament2);
}
.auftritte-item:last-child { border-bottom: none; }
.auftritte-item-date {
  font-family: 'Lato', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}
.auftritte-item-title {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: var(--kastanie);
  font-size: 1rem;
}

/* ── SCHLOSS-SEKTION ── */
.schloss-section { background: white; }
.schloss-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: center;
}
.schloss-image {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(30,15,15,0.18);
}
.schloss-image img { width: 100%; height: 100%; object-fit: cover; }
.schloss-image-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(0deg, rgba(30,15,15,0.85), transparent);
  color: var(--gold-pale);
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 0.9rem;
  padding: 32px 20px 14px;
}
.schloss-text p {
  margin-bottom: 20px;
  font-size: 1rem;
  line-height: 1.85;
  color: var(--kastanie);
}
.schloss-text p strong { color: var(--burgunder); font-weight: 600; }
.schloss-facts {
  margin-top: 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.schloss-fact { border-left: 2px solid var(--gold); padding: 4px 0 4px 16px; }
.schloss-fact-label {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sandstein);
  margin-bottom: 4px;
}
.schloss-fact-value {
  font-family: 'Playfair Display', serif;
  font-size: 0.95rem;
  color: var(--kastanie);
}

/* ── ÜBER UNS (dark) ── */
.ueber-uns { background: var(--kastanie); color: var(--pergament); position: relative; }
.ueber-uns::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(45deg, rgba(196,151,60,0.03) 0px, rgba(196,151,60,0.03) 1px, transparent 1px, transparent 60px);
  pointer-events: none;
}
.ueber-uns .section-title { color: var(--gold-pale); }
.ueber-uns .section-lead { color: rgba(237,216,154,0.7); }
.ueber-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
}
.ueber-text p {
  margin-bottom: 20px;
  font-size: 1rem;
  line-height: 1.85;
  color: rgba(248,240,224,0.85);
}
.ueber-text p strong { color: var(--gold); font-weight: 500; }
.ueber-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 32px; }
.stat { border-top: 1px solid rgba(196,151,60,0.3); padding-top: 16px; }
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  color: var(--gold);
  line-height: 1;
}
.stat-label {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(237,216,154,0.6);
  margin-top: 6px;
}
.ueber-image-wrap {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  border: 1px solid rgba(196,151,60,0.3);
}
.ueber-image-wrap img { width: 100%; height: 100%; object-fit: cover; }
.ueber-image-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 60%, rgba(30,15,15,0.4));
  pointer-events: none;
}

/* ── INFO-CARDS ── */
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 32px;
}
.info-card {
  background: white;
  padding: 36px 24px 32px;
  text-align: center;
  border-top: 2px solid var(--gold);
  position: relative;
  transition: transform 0.25s, box-shadow 0.25s;
  box-shadow: 0 2px 8px rgba(30,15,15,0.04);
}
.info-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(30,15,15,0.08);
}
.info-icon-svg {
  width: 44px;
  height: 44px;
  margin: 0 auto 18px;
  color: var(--gold);
  display: block;
}
.info-icon-svg svg { width: 100%; height: 100%; }
.info-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  margin-bottom: 12px;
  color: var(--kastanie);
}
.info-card p { font-size: 0.88rem; color: var(--grau); line-height: 1.7; }

/* ── NEWSLETTER ── */
.newsletter { background: var(--burgunder); color: white; position: relative; overflow: hidden; }
.newsletter::before {
  content: '♩';
  position: absolute;
  font-size: 280px;
  color: var(--gold);
  opacity: 0.04;
  right: -20px;
  top: -40px;
}
.newsletter-inner { max-width: 720px; margin: 0 auto; text-align: center; position: relative; }
.newsletter .section-eyebrow { color: var(--gold); }
.newsletter .section-title { color: var(--gold-pale); }
.newsletter .section-lead { color: rgba(248,240,224,0.7); }
.newsletter-form { display: flex; gap: 12px; margin: 40px auto 0; max-width: 520px; }
.newsletter-form input {
  flex: 1;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(237,216,154,0.3);
  color: white;
  font-family: 'Lato', sans-serif;
  font-size: 0.9rem;
  padding: 16px 20px;
  outline: none;
}
.newsletter-form input::placeholder { color: rgba(237,216,154,0.5); }
.newsletter-form input:focus { border-color: var(--gold); }
.newsletter-form button {
  background: var(--gold);
  color: var(--kastanie);
  border: none;
  font-family: 'Lato', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0 28px;
  cursor: pointer;
  transition: background 0.2s;
}
.newsletter-form button:hover { background: var(--gold-light); }
.newsletter-note { font-size: 0.75rem; color: rgba(237,216,154,0.5); margin-top: 20px; }

/* ── DANKSAGUNG ── */
.danksagung {
  background: var(--pergament2);
  position: relative;
  overflow: hidden;
}
.danksagung::before {
  content: '✦';
  position: absolute;
  font-size: 220px;
  color: var(--gold);
  opacity: 0.04;
  right: -20px;
  top: 40px;
}
.danksagung-crest {
  width: 130px;
  height: auto;
  display: block;
  margin: 0 auto 24px;
  opacity: 0.85;
}
.danksagung-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  position: relative;
  margin-top: 24px;
}
.danksagung-col {
  padding: 24px 0;
  border-top: 2px solid var(--gold);
}
.danksagung-col h4 {
  font-family: 'Lato', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  font-weight: 600;
}
.danksagung-col ul { list-style: none; }
.danksagung-col li {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: var(--kastanie);
  line-height: 1.4;
  padding: 8px 0;
  border-bottom: 1px solid rgba(196,151,60,0.15);
}
.danksagung-col li:last-child { border-bottom: none; }
@media (max-width: 800px) {
  .danksagung-grid { grid-template-columns: 1fr; gap: 0; }
  .danksagung-col { margin-top: 24px; }
}

/* ── PARTNER ── */
.partner-bar { background: var(--pergament2); padding: 48px 32px; text-align: center; }
.partner-label {
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--sandstein);
  margin-bottom: 24px;
}
.partner-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 64px;
  flex-wrap: wrap;
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--kastanie);
  opacity: 0.75;
}

/* ── FOOTER ── */
footer { background: var(--kastanie); color: rgba(248,240,224,0.7); padding: 64px 32px 32px; }
.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(196,151,60,0.15);
}
.footer-brand h4 {
  font-family: 'Playfair Display', serif;
  color: var(--gold);
  font-size: 1.2rem;
  margin-bottom: 8px;
  font-weight: 400;
}
.footer-brand p {
  font-size: 0.85rem;
  line-height: 1.7;
  max-width: 320px;
  margin-bottom: 20px;
}
.social-row { display: flex; gap: 10px; }
.social-icon {
  width: 38px; height: 38px;
  border: 1px solid rgba(196,151,60,0.4);
  color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.72rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}
.social-icon:hover { background: var(--gold); color: var(--kastanie); }
.footer-col h5 {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; }
.footer-col li { padding: 6px 0; font-size: 0.85rem; }
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  max-width: 1200px;
  margin: 24px auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.72rem;
  color: rgba(237,216,154,0.4);
}
.footer-bottom a:hover { color: var(--gold); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .ueber-grid, .schloss-grid, .kuenstler-detail-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  section { padding: 64px 24px; }
  .schloss-facts { grid-template-columns: 1fr; }
  .programm-block { padding: 32px 24px; }
}
@media (max-width: 640px) {
  /* Nav-Links + CTA aus normalem Layout entfernen, als Overlay-Drawer neu positionieren */
  .nav-links, .nav-cta { display: none; }
  .nav-burger { display: block; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; }
  .newsletter-form { flex-direction: column; }
  .newsletter-form button { padding: 16px; }
  .ueber-stats { grid-template-columns: 1fr; }
  .nav-logo { height: 44px; }
  .nav-inner { height: 72px; }
  .konzert-meta-bar { padding: 24px; }

  /* Mobile Menu Drawer — bei .nav.open: Nav-Inner wird Column, Links + CTA klappen aus */
  .nav.open .nav-inner {
    flex-wrap: wrap;
    height: auto;
    padding-bottom: 16px;
  }
  .nav.open .nav-links {
    display: flex;
    flex-direction: column;
    gap: 0;
    width: 100%;
    order: 3;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(196,151,60,0.25);
  }
  .nav.open .nav-links li { border-bottom: 1px solid rgba(196,151,60,0.12); }
  .nav.open .nav-links li:last-child { border-bottom: none; }
  .nav.open .nav-links a {
    display: block;
    padding: 16px 0;
    font-size: 0.85rem;
    letter-spacing: 0.2em;
  }
  .nav.open .nav-cta {
    display: inline-block;
    width: 100%;
    order: 4;
    margin-top: 12px;
    text-align: center;
    padding: 14px 22px;
  }
}
