/* =========================================================
   Ludwig Balser – Violine | Modern Site 2026
   Mobile-first, dark elegant theme
   ========================================================= */

/* --- Custom Properties --- */
:root {
  --bg:        #100f0d;
  --bg-2:      #181610;
  --bg-3:      #211e16;
  --bg-hover:  #282419;
  --text:      #ede9e4;
  --text-2:    #9a9590;
  --text-3:    #5c5854;
  --accent:    #b8962e;
  --accent-dim: rgba(184,150,46,0.15);
  --border:    rgba(255,255,255,0.07);
  --border-accent: rgba(184,150,46,0.35);
  --nav-h:     68px;
  --page-pad:  clamp(1.25rem, 5vw, 3rem);
  --max-w:     1100px;
  --font-serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-sans:  'Inter', system-ui, -apple-system, sans-serif;
  --ease:      cubic-bezier(0.4, 0, 0.2, 1);
  --dur:       280ms;
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-weight: 300;
  line-height: 1.7;
  min-height: 100dvh;
  overflow-x: hidden;
}
img, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; color: inherit; }
iframe { border: 0; }
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.01em;
}

/* --- Typography Scale --- */
.t-display   { font-size: clamp(2.4rem, 8vw, 5.5rem); letter-spacing: -0.01em; }
.t-headline  { font-size: clamp(1.8rem, 4vw, 2.8rem); }
.t-title     { font-size: clamp(1.3rem, 2.5vw, 1.7rem); }
.t-body      { font-size: 1rem; line-height: 1.75; }
.t-small     { font-size: 0.82rem; letter-spacing: 0.08em; text-transform: uppercase; }
.t-accent    { color: var(--accent); }
.t-muted     { color: var(--text-2); }

/* =========================================================
   NAV
   ========================================================= */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  padding: 0 var(--page-pad);
  background: transparent;
  transition: background var(--dur) var(--ease),
              border-color var(--dur) var(--ease),
              backdrop-filter var(--dur) var(--ease);
  border-bottom: 1px solid transparent;
}
.site-nav.scrolled {
  background: rgba(14,14,14,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom-color: var(--border);
}
/* Kontrast-Scrim hinter der Navleiste über dem Hero (nur Startseite, vor dem Scrollen) */
.home .site-nav::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: linear-gradient(
    to bottom,
    rgba(10,10,10,0.84) 0%,
    rgba(10,10,10,0.68) 60%,
    rgba(10,10,10,0.34) 85%,
    rgba(10,10,10,0) 100%
  );
  opacity: 1;
  transition: opacity var(--dur) var(--ease);
}
.home .site-nav.scrolled::before { opacity: 0; }
/* Bessere Lesbarkeit der Navi-Texte über dem Hero (nur Startseite, vor dem Scrollen) */
.home .site-nav:not(.scrolled) .nav-link { color: #e8e4de; }
.home .site-nav:not(.scrolled) .lang-btn  { color: #e8e4de; }
.home .site-nav:not(.scrolled) .lang-btn.active { color: var(--accent); }
.home .site-nav:not(.scrolled) .nav-logo,
.home .site-nav:not(.scrolled) .nav-link,
.home .site-nav:not(.scrolled) .lang-btn,
.home .site-nav:not(.scrolled) .lang-sep {
  text-shadow: 0 1px 4px rgba(0,0,0,0.65);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--text);
  white-space: nowrap;
  flex-shrink: 0;
  transition: color var(--dur) var(--ease);
}
.nav-logo:hover { color: var(--accent); }
.nav-logo-img {
  height: 36px;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
  filter: brightness(0) invert(1);
  opacity: 0.9;
  transition: opacity var(--dur) var(--ease);
}
.nav-logo:hover .nav-logo-img { opacity: 1; }
.nav-logo-text {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  letter-spacing: 0.04em;
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.nav-logo-text .logo-sub {
  font-family: var(--font-sans);
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-3);
  font-weight: 400;
}

.nav-center { flex: 1; display: flex; justify-content: center; }
.nav-links {
  display: none;
  gap: 0;
}
.nav-link {
  padding: 0.4rem 1rem;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-2);
  transition: color var(--dur) var(--ease);
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 50%; right: 50%;
  height: 1px;
  background: var(--accent);
  transition: left var(--dur) var(--ease), right var(--dur) var(--ease);
}
.nav-link:hover, .nav-link.active { color: var(--text); }
.nav-link:hover::after, .nav-link.active::after { left: 1rem; right: 1rem; }

.nav-lang {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  flex-shrink: 0;
}
.lang-btn {
  padding: 0.25rem 0.5rem;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-3);
  transition: color var(--dur) var(--ease);
  border-radius: 3px;
}
.lang-btn:hover, .lang-btn.active { color: var(--accent); }
.lang-sep { color: var(--text-3); font-size: 0.6rem; }

/* Hamburger */
.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  width: 36px;
  height: 36px;
  margin-left: 1rem;
  padding: 4px;
  flex-shrink: 0;
}
.hamburger span {
  display: block;
  width: 80%;
  height: 1.5px;
  background: var(--text);
  transition: transform var(--dur) var(--ease), opacity var(--dur) var(--ease);
}
.hamburger.open span:nth-child(1) { transform: translateY(5.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-5.5px) rotate(-45deg); }

/* Mobile drawer */
.nav-drawer {
  position: fixed;
  top: 0; left: 0;
  width: min(320px, 85vw);
  height: 100dvh;
  background: var(--bg-2);
  border-right: 1px solid var(--border);
  z-index: 200;
  display: flex;
  flex-direction: column;
  padding: calc(var(--nav-h) + 2rem) 2rem 2rem;
  transform: translateX(-100%);
  transition: transform var(--dur) var(--ease);
}
.nav-drawer.open { transform: translateX(0); }
.nav-drawer-link {
  display: block;
  padding: 0.75rem 0;
  font-size: 1.05rem;
  letter-spacing: 0.06em;
  color: var(--text-2);
  border-bottom: 1px solid var(--border);
  transition: color var(--dur) var(--ease), padding-left var(--dur) var(--ease);
}
.nav-drawer-link:hover { color: var(--text); padding-left: 0.5rem; }
.nav-drawer-lang {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  margin-top: 2rem;
}
.nav-drawer-lang .lang-sep {
  display: flex;
  align-items: center;
  line-height: 1;
}
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 150;
  backdrop-filter: blur(2px);
}
.nav-overlay.open { display: block; }

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: flex-end;
  padding: 0 var(--page-pad);
  padding-bottom: clamp(3rem, 8vw, 6rem);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: var(--bg-2);
  background-image: url('../images/lb_hero.jpg');
  background-size: cover;
  background-position: center 20%;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10,10,10,0.95) 0%,
    rgba(10,10,10,0.55) 50%,
    rgba(10,10,10,0.2) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: var(--max-w);
  width: 100%;
  margin: 0 auto;
}
.hero-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}
.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 10vw, 7rem);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.01em;
  margin-bottom: 1.5rem;
}
.hero-subtitle {
  font-size: clamp(0.9rem, 2vw, 1.05rem);
  color: var(--text-2);
  letter-spacing: 0.04em;
  max-width: 480px;
  line-height: 1.8;
  margin-bottom: 2.5rem;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.scroll-hint {
  position: absolute;
  bottom: 2rem;
  right: var(--page-pad);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-3);
  z-index: 1;
  animation: pulse 2.5s ease-in-out infinite;
}
.scroll-hint::before {
  content: '';
  display: block;
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, transparent, var(--text-3));
}
@keyframes pulse { 0%, 100% { opacity: 0.4; } 50% { opacity: 1; } }

/* =========================================================
   BUTTONS
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all var(--dur) var(--ease);
  border-radius: 2px;
  white-space: nowrap;
  -webkit-tap-highlight-color: transparent;
}
.btn-primary {
  background: var(--accent);
  color: #0e0e0e;
  font-weight: 500;
}
.btn-primary:hover { background: #d4b87e; transform: translateY(-1px); }
.btn-primary:active { background: #d4b87e; outline: none; }
.btn-outline {
  border: 1px solid var(--border-accent);
  color: var(--accent);
}
.btn-outline:hover { background: var(--accent-dim); border-color: var(--accent); }

/* =========================================================
   SECTIONS
   ========================================================= */
.section {
  padding: clamp(4rem, 10vw, 7rem) var(--page-pad);
}
.section-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.section-inner--wide {
  max-width: 1500px;
}
.section-header { margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section-label {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 400;
}
.section-divider {
  width: 40px;
  height: 1px;
  background: var(--accent);
  margin-top: 1.25rem;
}
.section-alt { background: var(--bg-2); }
.concert-empty { color: var(--text-2); font-size: 0.95rem; }
.concert-empty a { color: var(--accent); }

/* --- Kompakte Kontaktsektion (Startseite) --- */
.contact-mini {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
}
.contact-mini .section-inner { max-width: 720px; }
.contact-mini .section-header {
  text-align: center;
  margin-bottom: clamp(1.75rem, 3.5vw, 2.5rem);
}
.contact-mini .section-divider { margin-left: auto; margin-right: auto; }
.contact-mini-intro {
  text-align: center;
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 300;
  line-height: 1.6;
  color: var(--text);
  max-width: 560px;
  margin: 0 auto 2rem;
}
.contact-form-mini .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.contact-form-mini .form-textarea { min-height: 120px; }
.contact-form-mini .btn-primary { align-self: center; margin-top: 0.25rem; }
@media (max-width: 600px) {
  .contact-form-mini .form-row { grid-template-columns: 1fr; }
}

/* =========================================================
   CONCERTS
   ========================================================= */
.concerts-upcoming {}
.concert-list { display: flex; flex-direction: column; gap: 0; }
.concert-item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border);
  transition: background var(--dur) var(--ease), padding-left var(--dur) var(--ease);
  border-radius: 2px;
}
.concert-item:first-child { border-top: 1px solid var(--border); }
.concert-item:hover { padding-left: 1rem; background: var(--bg-hover); }
.concert-date {
  text-align: center;
  min-width: 3.5rem;
  flex-shrink: 0;
}
.concert-date .day {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 400;
  line-height: 1;
  color: var(--accent);
}
.concert-date .month-year {
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-top: 0.2rem;
}
.concert-info { min-width: 0; }
.concert-title {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 400;
  margin-bottom: 0.25rem;
}
.concert-venue {
  font-size: 0.85rem;
  color: var(--text-2);
}
.concert-venue strong { color: var(--text); font-weight: 400; }
.concert-ticket {
  display: inline-block;
  margin-top: 0.6rem;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid var(--border-accent);
  padding-bottom: 1px;
  transition: color var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.concert-ticket:hover { color: var(--text); border-color: var(--text-2); }
.concert-month-sep {
  padding: 2.5rem 0 0.75rem;
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 300;
  letter-spacing: 0.08em;
  color: var(--accent);
  border-top: 1px solid var(--border);
}
.concert-time {
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  color: var(--text-3);
  text-align: right;
  flex-shrink: 0;
}

.concerts-past-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--border);
}
.past-concert {
  background: var(--bg);
  padding: 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.past-concert-date { font-size: 0.72rem; letter-spacing: 0.08em; color: var(--accent); text-transform: uppercase; }
.past-concert-title { font-family: var(--font-serif); font-size: 1.05rem; }
.past-concert-venue { font-size: 0.82rem; color: var(--text-2); }

.no-concerts {
  border: 1px solid var(--border);
  text-align: center;
  border-radius: 2px;
  padding: 4rem 2rem;
  max-width: 620px;
  margin: 0 auto;
}
.no-concerts-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 1.5rem;
}
.no-concerts-line {
  width: 2rem;
  height: 1px;
  background: var(--border-accent);
  margin: 0 auto 1.5rem;
}
.no-concerts-title {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 300;
  color: var(--text);
  margin-bottom: 1rem;
}
.no-concerts-text {
  color: var(--text-2);
  font-size: 0.88rem;
  line-height: 1.9;
  margin-bottom: 2rem;
}

/* =========================================================
   BIO
   ========================================================= */
.bio-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: start;
}
.bio-image {
  position: relative;
  max-width: 420px;
  margin: 0 auto;
  width: 100%;
}
.bio-image img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: center top;
  border-radius: 2px;
}
.bio-image-caption {
  margin-top: 0.75rem;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  color: var(--text-3);
}
.bio-text p { color: var(--text-2); margin-bottom: 1.25rem; font-size: 0.95rem; line-height: 1.85; }
.bio-text p:last-child { margin-bottom: 0; }
.bio-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  margin-top: 2.5rem;
  border-radius: 2px;
  overflow: hidden;
}
.bio-highlight {
  background: var(--bg-3);
  padding: 1.25rem;
}
.bio-highlight-label { font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--accent); margin-bottom: 0.4rem; }
.bio-highlight-value { font-family: var(--font-serif); font-size: 1rem; }

/* =========================================================
   MEDIA
   ========================================================= */
.media-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
.media-item { display: flex; flex-direction: column; gap: 0.75rem; }
.media-frame {
  position: relative;
  padding-bottom: 56.25%;
  background: var(--bg-3);
  border-radius: 2px;
  overflow: hidden;
}
.media-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.media-caption {
  font-size: 0.82rem;
  color: var(--text-2);
}
.media-caption strong { color: var(--text); font-weight: 400; }

.spotify-card {
  background: var(--bg-3);
  border-radius: 2px;
  overflow: hidden;
}

/* =========================================================
   REPERTOIRE
   ========================================================= */
.repertoire-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}
.rep-category { }
.rep-category-title {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--accent);
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 1rem;
}
.rep-list { display: flex; flex-direction: column; gap: 0.4rem; }
.rep-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  font-size: 0.9rem;
  color: var(--text-2);
  padding: 0.3rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.03);
}
.rep-item-composer { font-weight: 400; color: var(--text); font-family: var(--font-serif); font-size: 0.95rem; }
.rep-item-piece { flex: 1; }

/* =========================================================
   CONTACT
   ========================================================= */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2.5rem, 6vw, 5rem);
}
.contact-info { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-block-label { font-size: 0.68rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--accent); margin-bottom: 0.4rem; }
.contact-block-value { font-size: 0.95rem; color: var(--text-2); }
.contact-block-value a:hover { color: var(--accent); }

.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-label {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-3);
}
.form-input, .form-textarea {
  background: var(--bg-3);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 0.85rem 1rem;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 300;
  border-radius: 2px;
  outline: none;
  transition: border-color var(--dur) var(--ease);
  width: 100%;
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--text-3); }
.form-input:focus, .form-textarea:focus { border-color: var(--accent); }
.form-textarea { resize: vertical; min-height: 140px; }
.form-error {
  font-size: 0.82rem;
  color: #f87171;
  margin-top: -0.25rem;
}

/* --- Contact success animation --- */
.contact-success[hidden] { display: none; }
.contact-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 3rem 1rem;
  animation: fadeUp 0.45s var(--ease) both;
}
.success-icon { margin-bottom: 1.5rem; }
.success-icon svg { width: 72px; height: 72px; display: block; }
.success-circle {
  fill: none;
  stroke: #22c55e;
  stroke-width: 2;
  stroke-dasharray: 151;
  stroke-dashoffset: 151;
  animation: drawCircle 0.55s cubic-bezier(0.65,0,0.45,1) 0.1s forwards;
}
.success-check {
  fill: none;
  stroke: #22c55e;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 40;
  stroke-dashoffset: 40;
  animation: drawCheck 0.35s cubic-bezier(0.65,0,0.45,1) 0.6s forwards;
}
@keyframes drawCircle { to { stroke-dashoffset: 0; } }
@keyframes drawCheck  { to { stroke-dashoffset: 0; } }
.success-title {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--text);
  margin-bottom: 0.6rem;
  animation: fadeUp 0.4s var(--ease) 0.75s both;
}
.success-text {
  font-size: 0.9rem;
  color: var(--text-2);
  line-height: 1.7;
  animation: fadeUp 0.4s var(--ease) 0.9s both;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* =========================================================
   IMPRESSUM / TEXT PAGES
   ========================================================= */
.text-page { max-width: 680px; }
.text-page h2 { font-family: var(--font-serif); font-size: 1.1rem; margin: 2rem 0 0.5rem; color: var(--text); font-weight: 400; }
.text-page p, .text-page address { font-size: 0.9rem; color: var(--text-2); line-height: 1.8; font-style: normal; }
.text-page a { color: var(--accent); }
.text-page a:hover { text-decoration: underline; }

/* =========================================================
   PAGE HEADER (inner pages)
   ========================================================= */
.page-header {
  padding-top: calc(var(--nav-h) + clamp(3rem, 8vw, 5rem));
  padding-bottom: clamp(2.5rem, 5vw, 4rem);
  padding-left: var(--page-pad);
  padding-right: var(--page-pad);
  background: var(--bg-2);
  border-bottom: 1px solid var(--border);
}
.page-header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.page-header .section-label { margin-bottom: 0.5rem; }
.page-header h1 { font-family: var(--font-serif); font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 300; }

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  padding: clamp(2.5rem, 5vw, 4rem) var(--page-pad);
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.footer-top {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.footer-logo {
  height: 40px;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
  filter: brightness(0) invert(1);
  opacity: 0.5;
}
.footer-brand .footer-name {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  letter-spacing: 0.03em;
}
.footer-brand .footer-tagline {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-top: 0.25rem;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
}
.footer-link {
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  color: var(--text-2);
  transition: color var(--dur) var(--ease);
}
.footer-link:hover { color: var(--accent); }
.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}
.footer-copy { font-size: 0.78rem; color: var(--text-3); }

/* =========================================================
   UTILITY
   ========================================================= */
.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
}
.mt-4 { margin-top: 2rem; }
.mt-6 { margin-top: 3rem; }

/* =========================================================
   RESPONSIVE – Tablet (≥ 640px)
   ========================================================= */
@media (max-width: 639px) {
  .concert-item {
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
    grid-template-areas:
      "date info"
      "time info";
    align-items: start;
    row-gap: 0;
  }
  .concert-date { grid-area: date; }
  .concert-info { grid-area: info; grid-row: 1 / 3; }
  .concert-time {
    grid-area: time;
    text-align: center;
    font-size: 0.72rem;
    padding-top: 0.2rem;
  }
}

@media (min-width: 640px) {
  .concerts-past-grid { grid-template-columns: 1fr 1fr; }
  .media-grid { grid-template-columns: 1fr 1fr; }
  .repertoire-grid { grid-template-columns: 1fr 1fr; }
  .footer-top { flex-direction: row; justify-content: space-between; align-items: flex-start; }
}

/* =========================================================
   RESPONSIVE – Desktop (≥ 768px)
   ========================================================= */
@media (hover: none) {
  .btn-primary:hover {
    background: var(--accent);
    transform: none;
  }
  .btn-outline:hover {
    background: transparent;
    transform: none;
  }
}

@media (min-width: 768px) {
  .hamburger { display: none; }
  .nav-links { display: flex; }
  .bio-grid { grid-template-columns: 1fr 1.4fr; }
  .contact-grid { grid-template-columns: 1fr 1.6fr; }
  .footer-bottom { flex-direction: row; justify-content: space-between; align-items: center; }
}

/* =========================================================
   RESPONSIVE – Wide (≥ 1024px)
   ========================================================= */
@media (min-width: 1024px) {
  .media-grid { grid-template-columns: 1fr 1fr 1fr; }
  .concerts-past-grid { grid-template-columns: repeat(3, 1fr); }
  .repertoire-grid { grid-template-columns: 1fr 1fr 1fr; }
}

/* =========================================================
   RESPONSIVE – Extra Wide (≥ 1280px)
   ========================================================= */
@media (min-width: 1280px) {
  .repertoire-grid { grid-template-columns: repeat(4, 1fr); gap: 1.75rem; }
}

/* =========================================================
   ANIMATIONS / REVEALS
   ========================================================= */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
  }
  .reveal.visible { opacity: 1; transform: translateY(0); }
}

/* =========================================================
   COOKIE BANNER
   ========================================================= */
@keyframes cookie-slide-up {
  from { transform: translateY(100%); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--bg-3);
  border-top: 1px solid var(--border-accent);
  padding: 1rem var(--page-pad);
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  font-size: 0.82rem;
  color: var(--text-2);
  line-height: 1.5;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.4);
  animation: cookie-slide-up 0.5s cubic-bezier(0.4, 0, 0.2, 1) 0.8s both;
}
.cookie-banner p {
  margin: 0;
  flex: 1 1 280px;
}
.cookie-banner a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.cookie-banner a:hover { color: var(--text); }
.cookie-banner__btn {
  flex-shrink: 0;
  background: var(--accent);
  color: #100f0d;
  border: none;
  padding: 0.45rem 1.2rem;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: opacity var(--dur) var(--ease);
}
.cookie-banner__btn:hover { opacity: 0.85; }
.cookie-banner.hidden { display: none; }
