/* ===========================
   CSS VARIABLEN & RESET
=========================== */
:root {
  --beige:       #F5F0E8;
  --offwhite:    #FAF8F4;
  --terracotta:  #B85C3A;
  --sand:        #C9A87C;
  --olive:       #6B7C5C;
  --umbra:       #3D2E1E;
  --text:        #2E2118;
  --text-light:  #6B5A47;
  --border:      rgba(61,46,30,0.12);
  --shadow:      rgba(61,46,30,0.10);
  --nav-h:       70px;
}

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

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

body {
  font-family: 'Lato', sans-serif;
  background: var(--beige);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  line-height: 1.2;
  color: var(--umbra);
}

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

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

section { scroll-margin-top: var(--nav-h); }

/* ===========================
   NAVIGATION
=========================== */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  background: rgba(234,224,210,0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  transition: box-shadow 0.3s;
}

#nav.scrolled { box-shadow: 0 2px 20px var(--shadow); }

.nav-logo {
  display: flex;
  align-items: center;
}

.nav-logo img {
  height: 52px;
  width: auto;
  display: block;
  object-fit: contain;
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-family: 'Lato', sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-light);
  transition: color 0.2s;
  position: relative;
}

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

.nav-links a:hover { color: var(--umbra); }
.nav-links a:hover::after { width: 100%; }

/* Burger */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}

.burger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--umbra);
  transition: all 0.3s;
  transform-origin: center;
}

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

/* Mobile Menu */
#mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: var(--offwhite);
  border-bottom: 1px solid var(--border);
  z-index: 999;
  padding: 24px 40px 32px;
  flex-direction: column;
  gap: 20px;
  box-shadow: 0 8px 30px var(--shadow);
}

#mobile-menu.open { display: flex; }

#mobile-menu a {
  font-size: 1.1rem;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  color: var(--umbra);
  padding: 6px 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s, padding-left 0.2s;
}

#mobile-menu a:hover { color: var(--terracotta); padding-left: 8px; }

/* ===========================
   UTILITY KLASSEN
=========================== */
.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 40px;
}

.section-label {
  font-family: 'Lato', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 12px;
  display: block;
}

.btn {
  display: inline-block;
  padding: 14px 32px;
  font-family: 'Lato', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.25s;
  border: none;
}

.btn-primary {
  background: var(--terracotta);
  color: #fff;
}
.btn-primary:hover {
  background: var(--umbra);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(184,92,58,0.3);
}

.btn-outline {
  background: transparent;
  color: var(--umbra);
  border: 1.5px solid var(--umbra);
}
.btn-outline:hover {
  background: var(--umbra);
  color: var(--beige);
  transform: translateY(-1px);
}

.divider {
  width: 60px;
  height: 2px;
  background: var(--terracotta);
  margin: 20px 0 32px;
}

/* Platzhalter-Bild */
.img-placeholder {
  background: var(--sand);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--umbra);
  font-family: 'Lato', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.img-placeholder {
  overflow: hidden;
}

.img-placeholder img {
  width: 94%;
  height: 94%;
  object-fit: cover;
  object-position: center;
  display: block;
}
/* ===========================
   HERO
=========================== */
#startseite {
  padding-top: var(--nav-h);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Weicher Übergang Hero → dunkle Band */
#startseite .hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 80px;
  background: linear-gradient(to bottom, transparent, rgba(61,46,30,0.08));
  pointer-events: none;
}

.hero {
  position: relative;
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - var(--nav-h));
  background: #EAE0D2;
}

.hero-image {
  position: relative;
  overflow: hidden;
}

.hero-image .img-placeholder {
  width: 100%;
  height: 100%;
  min-height: 400px;
  font-size: 0.75rem;
}

/* Leinentextur-Overlay entfernt – einheitlicher Hintergrund */

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 60px 80px 70px;
  background: transparent;
  position: relative;
}

/* Dekorelement */
.hero-content::before {
  content: '"';
  position: absolute;
  top: 40px;
  left: 50px;
  font-family: 'Playfair Display', serif;
  font-size: 14rem;
  color: var(--sand);
  opacity: 0.10;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.hero-content .section-label { margin-bottom: 24px; }

.hero-name {
  margin-bottom: 20px;
  position: relative;
}

.hero-name img {
  width: 100%;
  max-width: 540px;
  height: auto;
  display: block;
  -webkit-mask-image: radial-gradient(
    ellipse 85% 80% at 50% 48%,
    black 38%,
    rgba(0,0,0,0.9) 52%,
    rgba(0,0,0,0.55) 67%,
    rgba(0,0,0,0.15) 82%,
    transparent 100%
  );
  mask-image: radial-gradient(
    ellipse 85% 80% at 50% 48%,
    black 38%,
    rgba(0,0,0,0.9) 52%,
    rgba(0,0,0,0.55) 67%,
    rgba(0,0,0,0.15) 82%,
    transparent 100%
  );
}

.hero-tagline {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-style: italic;
  color: var(--text-light);
  margin-bottom: 32px;
  max-width: 380px;
  line-height: 1.6;
}

.hero-genres {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 40px;
}

.genre-tag {
  background: rgba(234,224,210,0.6);
  border: 1px solid var(--border);
  color: var(--text-light);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 2px;
  font-weight: 700;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Kurz-Intro Banner */
.hero-intro-band {
  background: var(--umbra);
  color: rgba(245,240,232,0.85);
  padding: 40px 0;
}

.hero-intro-band .container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.intro-text {
  grid-column: 1 / 3;
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(245,240,232,0.8);
}

.intro-text em {
  color: var(--sand);
  font-style: normal;
  font-weight: 700;
}

.intro-cta-area {
  text-align: right;
}

/* ===========================
   AUFTRITTE TEASER
=========================== */
.auftritte-teaser {
  background: var(--beige);
  padding: 60px 0;
  border-top: 1px solid var(--border);
}

.auftritte-teaser .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

.auftritte-info h3 {
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.auftritte-info p {
  color: var(--text-light);
  font-style: italic;
  font-family: 'Playfair Display', serif;
}

.termine-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.termin-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 16px 24px;
  background: var(--offwhite);
  border: 1px solid var(--border);
  border-radius: 2px;
  font-size: 0.9rem;
}

.termin-date {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--terracotta);
  min-width: 80px;
  text-align: center;
  line-height: 1.4;
  flex-shrink: 0;         /* NEU – Datum behält feste Breite */
}

.termin-info {
  color: var(--text-light);
  line-height: 1.2;        /* verkleinert von 1.5 */
  flex: 1;                 /* NEU – nimmt verfügbaren Platz ein, fixe linke Kante */
}

.termin-info strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  color: var(--umbra);
  margin-bottom: -2px;      /* verkleinert von 4px */
}
.termin-item--clickable {
  cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='28' viewBox='0 0 28 28'%3E%3Ctext x='2' y='22' font-size='24' fill='%23B85C3A'%3E%E2%99%AA%3C/text%3E%3C/svg%3E") 14 14, pointer;
}
/* ===========================
   HÖRPROBEN TEASER
=========================== */
.hoerproben-teaser {
  background: var(--offwhite);
  padding: 80px 0;
  border-top: 1px solid var(--border);
}

.hoerproben-teaser .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.audio-preview-wrap h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.audio-preview-wrap p {
  color: var(--text-light);
  margin-bottom: 28px;
}

.mini-player {
  background: var(--beige);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 20px 24px;
  margin-bottom: 24px;
}

.mini-player-title {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-style: italic;
  margin-bottom: 4px;
  color: var(--umbra);
}

.mini-player-tag {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 14px;
  display: block;
}

audio {
  width: 100%;
  height: 36px;
  accent-color: var(--terracotta);
  border-radius: 2px;
}

audio::-webkit-media-controls-panel { background: var(--offwhite); }

.teaser-img {
  border-radius: 4px;
  overflow: hidden;
}

.teaser-img .img-placeholder {
  height: 340px;
  border-radius: 4px;
}

/* ===========================
   ABSCHLUSS CTA
=========================== */
.hero-cta-footer {
  background: linear-gradient(135deg, var(--terracotta) 0%, #8B3A20 100%);
  padding: 80px 0;
  text-align: center;
  color: #fff;
}

.hero-cta-footer h2 {
  font-size: 2.2rem;
  color: #fff;
  margin-bottom: 12px;
}

.hero-cta-footer p {
  opacity: 0.85;
  margin-bottom: 32px;
  font-size: 1.05rem;
}

.hero-cta-footer .btn-outline {
  color: #fff;
  border-color: rgba(255,255,255,0.6);
}

.hero-cta-footer .btn-outline:hover {
  background: #fff;
  color: var(--terracotta);
}

/* ===========================
   ÜBER MICH
=========================== */
#ueber-mich {
  background: var(--offwhite);
  padding: 110px 0;
  border-top: 1px solid var(--border);
}

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

.ueber-portrait {
  position: sticky;
  top: calc(var(--nav-h) + 30px);
}

.portrait-frame {
  border-radius: 3px;
  overflow: hidden;
  position: relative;
}

.portrait-frame .img-placeholder {
  height: 600px;
}

/* Dekor-Rahmen */
.portrait-frame::before {
  content: '';
  position: absolute;
  top: -10px; left: -10px;
  right: 10px; bottom: 10px;
  border: 2px solid var(--sand);
  border-radius: 3px;
  z-index: -1;
  pointer-events: none;
}

.portrait-caption {
  margin-top: 20px;
  font-size: 0.8rem;
  color: var(--text-light);
  font-style: italic;
  text-align: center;
}

.ueber-text .section-label { margin-bottom: 8px; }

.ueber-text h2 {
  font-size: 2.4rem;
  margin-bottom: 6px;
}

.ueber-text .divider { margin: 16px 0 28px; }

.ueber-text p {
  color: var(--text-light);
  margin-bottom: 20px;
  font-size: 1.02rem;
  line-height: 1.85;
}

.ueber-zitat {
  border-left: 3px solid var(--terracotta);
  padding: 20px 28px;
  background: var(--beige);
  margin: 36px 0;
  border-radius: 0 3px 3px 0;
}

.ueber-zitat p {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-style: italic;
  color: var(--umbra);
  line-height: 1.6;
  margin-bottom: 0;
}

.ueber-live {
  background: var(--beige);
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: 28px 32px;
  margin: 28px 0;
}

.ueber-live h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.ueber-live p {
  margin-bottom: 0;
  font-size: 0.97rem;
}

.ueber-ctas {
  display: flex;
  gap: 16px;
  margin-top: 36px;
  flex-wrap: wrap;
}

/* ===========================
   REPERTOIRE
=========================== */
#repertoire {
  background: var(--beige);
  padding: 110px 0;
  border-top: 1px solid var(--border);
}

.repertoire-header {
  max-width: 700px;
  margin-bottom: 60px;
}

.repertoire-header h2 { font-size: 2.4rem; margin-bottom: 10px; }
.repertoire-header p { color: var(--text-light); margin-top: 20px; font-size: 1.02rem; }

.repertoire-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.genre-block {
  background: var(--offwhite);
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: 32px 36px;
  position: relative;
  overflow: hidden;
}

.genre-block::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 100%;
  background: var(--terracotta);
}

.genre-block h3 {
  font-size: 1.1rem;
  margin-bottom: 18px;
  padding-left: 4px;
}

.genre-block ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.genre-block li {
  font-size: 0.95rem;
  color: var(--text-light);
  padding: 9px 14px;
  background: var(--beige);
  border-radius: 2px;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: background 0.2s, color 0.2s;
}

.genre-block li:hover {
  background: var(--sand);
  color: var(--umbra);
}

.genre-block li::before {
  content: '♩';
  font-size: 0.75rem;
  color: var(--terracotta);
  flex-shrink: 0;
}

.repertoire-hinweis {
  margin-top: 48px;
  background: var(--umbra);
  color: rgba(245,240,232,0.85);
  border-radius: 3px;
  padding: 32px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

.repertoire-hinweis p {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-style: italic;
  line-height: 1.6;
}

/* ===========================
   HÖRPROBEN
=========================== */
#hoerproben {
  background: var(--offwhite);
  padding: 110px 0;
  border-top: 1px solid var(--border);
}

.hoerproben-header {
  max-width: 600px;
  margin-bottom: 56px;
}

.hoerproben-header h2 { font-size: 2.4rem; margin-bottom: 10px; }
.hoerproben-header p { color: var(--text-light); margin-top: 18px; font-size: 1.05rem; font-style: italic; font-family: 'Playfair Display', serif; }

.tracks-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 56px;
}

.track-card {
  background: var(--beige);
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: 24px 32px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: center;
  transition: border-color 0.2s;
}

.track-card:hover { border-color: var(--sand); }

.track-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  margin-bottom: 4px;
  color: var(--umbra);
}

.track-genre-tag {
  display: inline-block;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--terracotta);
  border: 1px solid var(--terracotta);
  padding: 3px 10px;
  border-radius: 2px;
  margin-bottom: 10px;
}

.track-desc {
  font-size: 0.88rem;
  color: var(--text-light);
  font-style: italic;
}

.track-player { min-width: 280px; }
.track-player audio { width: 100%; }

.plattformen {
  background: var(--beige);
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: 32px 40px;
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.plattformen p {
  font-size: 0.9rem;
  color: var(--text-light);
  font-style: italic;
}

.plattform-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.plattform-btn {
  padding: 10px 22px;
  border: 1.5px solid var(--border);
  border-radius: 2px;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-light);
  font-weight: 700;
  transition: all 0.2s;
  cursor: pointer;
  background: var(--offwhite);
}

.plattform-btn:hover {
  border-color: var(--umbra);
  color: var(--umbra);
  background: var(--beige);
}

.hoerproben-ctas {
  display: flex;
  gap: 16px;
  margin-top: 40px;
  flex-wrap: wrap;
}

/* ===========================
   KONTAKT
=========================== */
#kontakt {
  background: var(--beige);
  padding: 110px 0;
  border-top: 1px solid var(--border);
}

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

.kontakt-left h2 { font-size: 2.4rem; margin-bottom: 10px; }
.kontakt-left .divider { margin: 16px 0 28px; }
.kontakt-left p { color: var(--text-light); margin-bottom: 16px; font-size: 1.02rem; line-height: 1.8; }

.kontakt-info {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.kontakt-info-item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.95rem;
  color: var(--text-light);
}

.kontakt-info-item .icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--offwhite);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.kontakt-hinweis {
  margin-top: 32px;
  padding: 20px 24px;
  background: var(--offwhite);
  border: 1px solid var(--border);
  border-radius: 3px;
  font-size: 0.88rem;
  color: var(--text-light);
  font-style: italic;
  line-height: 1.7;
}

/* Formular */
.kontakt-form {
  background: var(--offwhite);
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: 40px 40px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-light);
  font-weight: 700;
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  background: var(--beige);
  border: 1.5px solid var(--border);
  border-radius: 2px;
  font-family: 'Lato', sans-serif;
  font-size: 0.95rem;
  color: var(--text);
  transition: border-color 0.2s;
  outline: none;
  appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--terracotta);
}

.form-group textarea {
  min-height: 130px;
  resize: vertical;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236B5A47' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
}

.form-submit {
  width: 100%;
  padding: 15px;
  font-family: 'Lato', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--terracotta);
  color: #fff;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.25s;
  margin-top: 8px;
}

.form-submit:hover {
  background: var(--umbra);
  transform: translateY(-1px);
}

/* ===========================
   IMPRESSUM
=========================== */
#impressum {
  background: var(--offwhite);
  padding: 110px 0;
  border-top: 1px solid var(--border);
}

.impressum-inner {
  max-width: 720px;
}

.impressum-inner h2 { font-size: 2rem; margin-bottom: 10px; }
.impressum-inner .divider { margin: 16px 0 36px; }

.impressum-block {
  margin-bottom: 36px;
}

.impressum-block h3 {
  font-size: 1rem;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}

.impressum-block p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.8;
}

.impressum-block .placeholder {
  color: var(--sand);
  font-style: italic;
}

.impressum-hinweis {
  margin-top: 40px;
  padding: 20px 24px;
  background: var(--beige);
  border: 1px solid var(--border);
  border-radius: 3px;
  font-size: 0.85rem;
  color: var(--text-light);
  font-style: italic;
  line-height: 1.7;
}

/* ===========================
   FOOTER
=========================== */
footer {
  background: var(--umbra);
  color: rgba(245,240,232,0.6);
  padding: 40px 0;
  text-align: center;
}

footer .footer-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: rgba(245,240,232,0.9);
  margin-bottom: 8px;
}

footer p {
  font-size: 0.82rem;
  line-height: 1.6;
}

footer a {
  color: var(--sand);
  transition: opacity 0.2s;
}

footer a:hover { opacity: 0.7; }

footer .footer-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 16px;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ===========================
   FADE-IN ANIMATION
=========================== */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===========================
   RESPONSIVE
=========================== */

/* Tablet: Hero-Bilder waren hier genauso hoch wie am Desktop (100vh),
   dadurch auf schmaleren Tablet-Breiten viel zu groß und die Seite
   wirkte "zerschnitten". Hier wird die Höhe begrenzt, Layout bleibt
   zweispaltig, solange genug Breite vorhanden ist. */
@media (min-width: 901px) and (max-width: 1300px) {
  .hero { min-height: auto; }
  .hero-image .img-placeholder {
    height: 60vh !important;
    min-height: 360px !important;
    max-height: 560px !important;
  }
  .hero-content { padding: 60px 40px; }
  .hero-content::before { font-size: 10rem; top: 24px; left: 30px; }
  .hero-name img { max-width: 420px; }

  #nav { padding: 0 24px; }
  .nav-links { gap: 20px; }
  .nav-links a { font-size: 0.8rem; }
}

@media (max-width: 900px) {
  .nav-links { display: none; }
  .burger { display: flex; }

  :root { --nav-h: 60px; }

  #nav { padding: 0 24px; }

  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-image { display: block; }
  .hero-image .img-placeholder { height: 340px !important; min-height: 340px !important; }
  .hero-name { display: none; }
  .hero-content { padding: 60px 24px; }
  .hero-content::before { font-size: 8rem; top: 10px; left: 10px; }

  .hero-intro-band .container { grid-template-columns: 1fr; }
  .intro-cta-area { text-align: left; }
  .intro-text { grid-column: 1; }

  .auftritte-teaser .container { flex-direction: column; }

  .hoerproben-teaser .container { grid-template-columns: 1fr; }
  .teaser-img { display: none; }

  .ueber-grid { grid-template-columns: 1fr; }
  .ueber-portrait { position: static; }
  .portrait-frame .img-placeholder { height: 320px; }
  .portrait-frame::before { display: none; }

  .repertoire-grid { grid-template-columns: 1fr; }
  .repertoire-hinweis { flex-direction: column; }

  .track-card { grid-template-columns: 1fr; }
  .track-player { min-width: auto; }

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

  .container { padding: 0 24px; }

  h2 { font-size: 1.8rem !important; }
}

@media (max-width: 600px) {
  .hero-ctas { flex-direction: column; }
  .ueber-ctas { flex-direction: column; }
  .hoerproben-ctas { flex-direction: column; }
  .kontakt-form { padding: 28px 24px; }
  .plattformen { flex-direction: column; align-items: flex-start; }
}
