/* ═══════════════════════════════════════════════════
   Christine Knorren – Global Stylesheet
   ═══════════════════════════════════════════════════ */

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

:root {
    --white:    #ffffff;
  --cream:      #F9F6F1;
  --warm-white: #FDFBF8;
  --ink:        #1A1714;
  --ink-mid:    #3D3830;
  --ink-soft:   #7A7168;
  --gold:       #B8965A;
  --gold-light: #E8D9BC;
  --gold-pale:  #F5EFE2;
  --red:        #720515;
  --rule:       rgba(26,23,20,0.12);
  --rule-light: rgba(253,251,248,0.18);
  --font-display: 'Playfair Display', 'Cormorant Garamond', Georgia, serif;
  --font-ui:      'Lato', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--warm-white);
  color: var(--ink);
  font-family: var(--font-ui);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

/* ══════════════════════════════════════════════════
   NAV – Desktop
   Auf der Startseite: transparent über Hero-Bild.
   Auf allen anderen Seiten: sofort hell (kein Hero).
   Beim Scrollen: immer hell.
   ══════════════════════════════════════════════════ */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.8rem 4rem;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background .4s, padding .3s, border-color .4s;
}

/* Startseite gescrollt ODER alle anderen Seiten → heller Nav */
nav.scrolled,
body:not(.page-home) nav {
  background: rgba(253,251,248,0.97);
  backdrop-filter: blur(12px);
  border-bottom-color: var(--rule);
  padding: 1.2rem 4rem;
}

/* ── Logo ── */
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  transition: color .3s;
  /* Startseite: weiß (über Hero); wird durch scrolled/not-home überschrieben */
  color: #fff;
}
nav.scrolled .nav-logo,
body:not(.page-home) .nav-logo { color: var(--ink); }

/* ── Links ── Nav-Links immer via Hamburger (Desktop + Mobil) ── */
.nav-links {
  display: none;
  list-style: none;
}
.nav-links a {
  font-family: var(--font-ui);
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  transition: color .2s;
  /* Startseite: weiß */
  color: rgba(255,255,255,0.85);
}
nav.scrolled .nav-links a,
body:not(.page-home) .nav-links a { color: var(--ink-soft); }

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

/* ── Sprach-Button ── */
.nav-lang {
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  border: 1px solid rgba(255,255,255,0.4);
  padding: 0.32rem 0.85rem;
  border-radius: 2px;
  color: rgba(255,255,255,0.75) !important;
  transition: border-color .2s, color .2s;
}
nav.scrolled .nav-lang,
body:not(.page-home) .nav-lang {
  border-color: var(--rule) !important;
  color: var(--ink-soft) !important;
}
.nav-lang:hover { border-color: var(--gold) !important; color: var(--gold) !important; }

/* ── Hamburger ── immer sichtbar, Desktop + Mobil ── */
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 300;
  position: relative;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 1px;
  background: #fff;
  transition: transform .3s, opacity .3s;
}
nav.scrolled .hamburger span,
body:not(.page-home) .hamburger span { background: var(--ink); }
.hamburger.is-open span { background: var(--ink) !important; }

/* ── Mobiler Titel ("Mezzosopran") ── */
.nav-mobile-title {
  display: none;
  font-size: 0.58rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--ink-soft);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

/* ══════════════════════════════════════════════════
   HERO BANNER
   ══════════════════════════════════════════════════ */
.hero-banner {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-banner-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.hero-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10,8,6,0.18) 0%,
    rgba(10,8,6,0.04) 35%,
    rgba(10,8,6,0.35) 100%
  );
}

/* Logo rechts unten */
.hero-banner-logo {
  position: absolute;
  bottom: 6rem;
  right: 3rem;
  z-index: 3;
  text-align: right;
  text-decoration: none;
}
.hero-banner-logo-monogram {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 300;
  font-style: uppercase;
  color: #fff;
  line-height: 1;
  letter-spacing: -0.02em;
  display: block;
  text-shadow: 0 1px 16px rgba(0,0,0,0.35);
}
.hero-banner-logo-name {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 1.2rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: #fff;
  margin-top: 0.25rem;
  display: block;
  text-shadow: 0 1px 10px rgba(0,0,0,0.4);
}
.hero-banner-logo-sub {
  font-family: var(--font-display);
  font-size: 1 rem;
  font-weight: 300;
  font-style: italic;
  color: var(--white);
  display: block;
  margin-top: 0.05rem;
  letter-spacing: 0.04em;
}

/* CTAs links unten */
.hero-banner-cta {
  position: absolute;
  bottom: 3rem;
  left: 3.5rem;
  z-index: 3;
  display: flex;
  gap: 1rem;
}

/* Scroll-Hinweis */
.hero-scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.4);
  font-size: 0.55rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.hero-scroll-hint::after {
  content: '';
  display: block;
  width: 1px;
  height: 2.5rem;
  background: rgba(255,255,255,0.28);
  animation: scrollline 1.8s ease-in-out infinite;
}
@keyframes scrollline {
  0%   { opacity: 0; transform: scaleY(0); transform-origin: top; }
  50%  { opacity: 1; transform: scaleY(1); }
  100% { opacity: 0; transform: scaleY(1); transform-origin: bottom; }
}

/* ══════════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════════ */
footer {
  background: #720515;
  color: rgba(255,255,255,0.6);
  padding: 2.5rem 4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
}
footer a { color: rgba(255,255,255,0.6); text-decoration: none; }
footer a:hover { color: var(--gold); }
.footer-logo {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 400;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* ══════════════════════════════════════════════════
   SECTION SYSTEM
   ══════════════════════════════════════════════════ */
section { padding: 7rem 4rem; }

.section-label {
  font-size: 0.6rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 3.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.section-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--rule);
  max-width: 12rem;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--red);
  margin-bottom: 1.5rem;
}
.section-title em { font-style: italic; color: var(--gold); }
.section-body {
  font-size: 1.05rem;
  color: var(--ink-soft);
  max-width: 54ch;
  line-height: 1.9;
}

/* Page Hero (Unterseiten) */
.page-hero {
  padding: 10rem 4rem 5rem;
  background: var(--cream);
  border-bottom: 1px solid var(--rule);
}
.page-hero .section-label { margin-bottom: 1rem; }
.page-hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 300;
  line-height: 1.0;
  color: var(--ink);
}
.page-hero-title em { font-style: italic; color: var(--gold); }

/* ══════════════════════════════════════════════════
   BUTTONS
   ══════════════════════════════════════════════════ */
.btn-primary {
  display: inline-block;
  padding: 0.9rem 2.2rem;
  background: var(--gold);
  color: #fff;
  font-family: var(--font-ui);
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background .2s;
}
.btn-primary:hover { background: var(--ink); }

.btn-ghost {
  display: inline-block;
  padding: 0.9rem 2.2rem;
  border: 1px solid rgba(255,255,255,0.45);
  color: rgba(255,255,255,0.85);
  font-family: var(--font-ui);
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  transition: border-color .2s, color .2s;
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }

.btn-ghost-dark {
  display: inline-block;
  padding: 0.9rem 2.2rem;
  border: 1px solid var(--rule);
  color: var(--ink-soft);
  font-family: var(--font-ui);
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  transition: border-color .2s, color .2s;
}
.btn-ghost-dark:hover { border-color: var(--gold); color: var(--gold); }

/* ══════════════════════════════════════════════════
   PRODUCTIONS
   ══════════════════════════════════════════════════ */
.productions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
.prod-card { overflow: hidden; }
.prod-card img {
  width: 100%; aspect-ratio: 16/10;
  object-fit: cover; display: block;
  filter: grayscale(20%);
  transition: filter .4s, transform .5s;
}
.prod-card:hover img { filter: grayscale(0%); transform: scale(1.03); }
.prod-card-info { padding: 1.2rem 0; }
.prod-role {
  font-size: 0.6rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 0.4rem;
}
.prod-title {
  font-family: var(--font-display);
  font-size: 1.4rem; font-weight: 400;
  color: var(--ink); margin-bottom: 0.3rem;
}
.prod-meta { font-size: 0.75rem; color: var(--ink-soft); }

/* ══════════════════════════════════════════════════
   REVIEWS
   ══════════════════════════════════════════════════ */
.reviews-section {
  background: var(--red);
  color: var(--cream);
  padding: 7rem 4rem;
}
.reviews-section .section-label { color: var(--gold); }
.reviews-section .section-label::after { background: rgba(255,255,255,0.12); }
.reviews-section .section-title { color: var(--warm-white); }
.review-track {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  margin-top: 3.5rem;
  align-items: start;   /* ← verhindert Strecken auf gleiche Höhe */
}
.review-item { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 2rem; }
.review-source {
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 0.8rem;
}
.review-quote {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 300;
  font-style: italic;
  line-height: 1.75;
  color: #ffffff;
  margin-bottom: 0.8rem;
}
.review-translation {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.88);
  background: rgba(255,255,255,0.06);
  line-height: 1.7;
  margin-bottom: 1.2rem;
  border-left: 2px solid rgba(184,150,90,0.5);
  padding: 0.6rem 0.9rem;
  border-radius: 0 3px 3px 0;
}
.review-meta {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
}
.review-meta strong { color: #fff; font-weight: 500; }

/* ══════════════════════════════════════════════════
   REPERTOIRE
   ══════════════════════════════════════════════════ */
.repertoire-cols {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 3rem;
  margin-top: 3rem;
}
.rep-col-title {
  font-size: 1.5rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  border-bottom: 1px solid var(--rule);
  padding-bottom: 0.8rem;
  margin-bottom: 1.2rem;
}
.rep-list { list-style: none; }
.rep-list li {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 400;
  color: var(--ink-mid);
  padding: 0.45rem 0;
  border-bottom: 1px solid rgba(26,23,20,0.06);
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
.rep-list li span {
  font-size: 0.65rem;
  font-family: var(--font-ui);
  color: var(--ink-soft);
  letter-spacing: 0.08em;
}
.rep-pullquote {
  margin-top: 2rem;
  padding: 1.5rem;
  background: var(--gold-pale);
  border-left: 2px solid var(--gold);
}
.rep-pullquote p {
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: var(--ink-mid);
  line-height: 1.6;
  font-style: italic;
}
.rep-pullquote cite {
  font-size: 0.62rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: .8rem;
  display: block;
}

/* ══════════════════════════════════════════════════
   VIDEO / MEDIA
   ══════════════════════════════════════════════════ */
.video-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-top: 3rem; }
.video-wrapper {
  background: var(--cream);
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  justify-content: center;
}
.video-placeholder { text-align: center; }
.play-circle {
  width: 4.5rem; height: 4.5rem;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  cursor: pointer;
  transition: background .2s;
}
.play-circle:hover { background: var(--gold); }
.play-circle svg { fill: var(--gold); transition: fill .2s; margin-left: 3px; }
.play-circle:hover svg { fill: white; }
.video-caption { font-size: 0.75rem; color: var(--ink-soft); letter-spacing: 0.05em; }

/* ══════════════════════════════════════════════════
   CONTACT
   ══════════════════════════════════════════════════ */
.contact-section {
  background: var(--gold-pale);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
  padding: 7rem 4rem;
}
.form-row { margin-bottom: 1.5rem; }
.form-row label {
  display: block;
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 0.5rem;
}
.form-row input,
.form-row textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--rule);
  padding: 0.6rem 0;
  font-family: var(--font-ui);
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--ink);
  outline: none;
  transition: border-color .2s;
  resize: none;
}
.form-row input:focus,
.form-row textarea:focus { border-color: var(--gold); }
.form-row textarea { min-height: 6rem; }
.form-submit {
  margin-top: 0.5rem;
  display: inline-block;
  padding: 0.9rem 2.8rem;
  background: var(--ink);
  color: var(--warm-white);
  font-family: var(--font-ui);
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background .2s;
}
.form-submit:hover { background: var(--gold); }
.contact-item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 1.5rem 0;
  border-top: 1px solid var(--rule);
}
.contact-item-label {
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  min-width: 5rem;
  padding-top: 0.1rem;
}
.contact-item-value {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--ink-mid);
  line-height: 1.4;
}

/* ══════════════════════════════════════════════════
   LEGAL
   ══════════════════════════════════════════════════ */
.legal-wrap {
  padding: 9rem 4rem 7rem;
  max-width: 780px;
  margin: 0 auto;
}
.legal-wrap h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--ink);
  margin: 2.5rem 0 0.8rem;
}
.legal-wrap p { font-size: 0.9rem; color: var(--ink-soft); line-height: 1.85; margin-bottom: 0.6rem; }
.legal-wrap a { color: var(--gold); }

/* ══════════════════════════════════════════════════
   ANIMATIONS
   ══════════════════════════════════════════════════ */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s ease, transform .8s ease;
}
.fade-up.visible { opacity: 1; transform: none; }
.fade-up:nth-child(2) { transition-delay: .1s; }
.fade-up:nth-child(3) { transition-delay: .2s; }
.fade-up:nth-child(4) { transition-delay: .3s; }

/* ══════════════════════════════════════════════════
   RESPONSIVE – MOBIL (≤ 900px)
   Strategie: Nav immer hell, Hamburger immer dunkel.
   Kein transparenter Nav auf Mobil.
   ══════════════════════════════════════════════════ */
@media (max-width: 900px) {

  /* Nav auf Mobil: immer hell, unabhängig von Seite und Scroll */
  nav,
  nav.scrolled,
  body:not(.page-home) nav {
    padding: 1.1rem 1.5rem;
    background: rgba(253,251,248,0.97);
    backdrop-filter: blur(12px);
    border-bottom-color: var(--rule);
    position: fixed;
  }

  /* Logo verstecken, mobiler Titel zentriert */
  .nav-logo { display: none; }
  .nav-mobile-title { display: block; color: var(--ink-soft); }

  /* Auf Mobil sind die Links im geschlossenen Zustand nicht sichtbar (display:none),
     aber die Farbe muss trotzdem dunkel sein für wenn das Menü aufgeht */
  .nav-links a,
  .nav-links a:hover,
  body.page-home .nav-links a,
  body.page-home .nav-links a.active { color: var(--ink-soft); }
  .nav-links a.active { color: var(--gold); }

  /* Hamburger bleibt immer flex – bereits oben gesetzt */

  /* Restliche Layout-Anpassungen */
  .hero-banner { height: 100svh; }
  .hero-banner-logo { bottom: 5rem; right: 1.5rem; }
  .hero-banner-logo-monogram { font-size: 2.4rem; }
  .hero-banner-cta { left: 1.5rem; bottom: 1.5rem; }
  .hero-scroll-hint { display: none; }

  section { padding: 5rem 2rem; }
  .page-hero { padding: 8rem 2rem 4rem; }

  .productions-grid { grid-template-columns: 1fr; }
  .review-track { grid-template-columns: 1fr; }
  .repertoire-cols { grid-template-columns: 1fr; gap: 2rem; }
  .contact-section { grid-template-columns: 1fr; padding: 5rem 2rem; }
  .video-grid { grid-template-columns: 1fr; }
  .legal-wrap { padding: 7rem 2rem 4rem; }

  footer { flex-direction: column; gap: 1rem; text-align: center; padding: 2rem; }
}

/* ══════════════════════════════════════════════════
   MOBILES VOLLBILD-MENÜ
   Wird per JS mit Klasse .mobile-open aktiviert.
   Kein inline-style aus JS – alles hier geregelt.
   ══════════════════════════════════════════════════ */
.nav-links.mobile-open {
  display: flex !important;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.2rem;
  /* Ganzer Bildschirm */
  position: fixed;
  inset: 0;
  z-index: 150;
  /* Reines Weiß – kein Cream-Ton, auch auf der Home-Seite */
  height: 100vh;
  background: #fff;
  padding: 2.5rem 2rem;
}
.nav-links.mobile-open li { list-style: none; }
/* Links immer in --ink, auch auf body.page-home */
.nav-links.mobile-open a,
body.page-home .nav-links.mobile-open a {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 400;
  font-style: italic;
  letter-spacing: 0.04em;
  color: var(--ink) !important;
  text-decoration: none;
  transition: color .2s;
}
.nav-links.mobile-open a:hover,
body.page-home .nav-links.mobile-open a:hover,
.nav-links.mobile-open a.active,
body.page-home .nav-links.mobile-open a.active { color: var(--gold) !important; }
.nav-links.mobile-open .nav-lang {
  font-family: var(--font-ui);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  color: var(--ink-soft) !important;
  border-color: var(--rule) !important;
  margin-top: 0.5rem;
}

/* Hamburger-X wenn Menü offen */
.hamburger.is-open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; }
.hamburger.is-open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Hamburger-Button über dem Vollbild-Menü */
.hamburger { z-index: 300; }

/* Nav wird beim Öffnen weiß – Desktop + Mobil */
nav.menu-open,
body.page-home nav.menu-open {
  background: #fff !important;
  border-bottom-color: transparent !important;
  padding: 1.2rem 4rem;
}
@media (max-width: 900px) {
  nav.menu-open { padding: 1.1rem 1.5rem !important; }
}

/* ══════════════════════════════════════════════════
   HOME KACHELN – zwei thematische Einstiegspunkte
   direkt unter dem Hero Banner
   ══════════════════════════════════════════════════ */
.home-tiles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 55vh;
  align-items: start; /* neu */
}

.home-tile {
  padding: 6rem 5rem;
  display: flex;
  flex-direction: column;
  justify-content: start; /* statt center */
  gap: 1.5rem;
}
.home-tile--light { background: var(--warm-white); }
.home-tile--dark  { background: var(--red); }

.home-tile-label {
  font-size: 0.6rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 1rem;
}
.home-tile-label::before {
  content: '';
  display: inline-block;
  width: 2rem;
  height: 1px;
  background: var(--gold);
}
.home-tile--light .home-tile-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--ink);
}
.home-tile--dark .home-tile-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--warm-white);
}
.home-tile-title em { font-style: italic; color: var(--gold); }
.home-tile-body { font-size: 1.05rem; line-height: 1.85; max-width: 44ch; }
.home-tile--light .home-tile-body { color: var(--ink-soft); }
.home-tile--dark  .home-tile-body { color: #ffffff; }

/* ══════════════════════════════════════════════════
   MENUHIN-ZITAT – elegante Zwischenzone
   ══════════════════════════════════════════════════ */
.menuhin-quote {
  background: var(--red);
  padding: 7rem 4rem;
}
.menuhin-quote-inner {
  max-width: 780px;
  margin: 0 auto;
  padding-left: 3rem;
  border-left: 2px solid var(--gold);
}
.menuhin-quote-text {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.5vw, 1.9rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.6;
  color: var(--warm-white);
  margin-bottom: 2rem;
}
.menuhin-quote-cite {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-style: normal;
}
.menuhin-quote-cite strong {
  font-family: var(--font-ui);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}
.menuhin-quote-cite span {
  font-family: var(--font-ui);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  color: rgba(253,251,248,0.38);
}

@media (max-width: 900px) {
  .home-tiles { grid-template-columns: 1fr; }
  .home-tile  { padding: 4rem 2rem; }
  .menuhin-quote { padding: 5rem 2rem; }
  .menuhin-quote-inner { padding-left: 1.5rem; }
}

/* ══════════════════════════════════════════════════
   FOOTER – Social Buttons
   ══════════════════════════════════════════════════ */
footer {
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-social {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}
.footer-social-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.35rem 0.9rem;
  border: 1px solid rgba(253,251,248,0.18);
  border-radius: 2px;
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(253,251,248,0.45) !important;
  text-decoration: none;
  transition: border-color .2s, color .2s;
}
.footer-social-btn:hover {
  border-color: var(--gold) !important;
  color: var(--gold) !important;
}
.footer-social-btn svg { flex-shrink: 0; }

/* ══════════════════════════════════════════════════
   GALERIE
   ══════════════════════════════════════════════════ */
.galerie-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.galerie-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border: none;
  padding: 0;
  background: none;
  border-radius: 2px;
  aspect-ratio: 16/10;
  display: block;
}

.galerie-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease, filter .35s ease;
  display: block;
}

.galerie-item:hover img {
  transform: scale(1.06);
  filter: brightness(.75);
}

.galerie-item-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem 1rem .9rem;
  background: linear-gradient(to top, rgba(26,23,20,0.82), transparent);
  display: flex;
  flex-direction: column;
  gap: .15rem;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .3s ease, transform .3s ease;
}

.galerie-item:hover .galerie-item-caption {
  opacity: 1;
  transform: translateY(0);
}

.galerie-item-role {
  font-family: var(--font-display);
  font-size: .95rem;
  font-weight: 400;
  font-style: italic;
  color: #fff;
}

.galerie-item-werk {
  font-size: .6rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.lightbox[hidden] { display: none; }

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(26,23,20,0.95);
  backdrop-filter: blur(8px);
  cursor: pointer;
}

.lightbox-img {
  position: relative;
  z-index: 1;
  max-width: 90vw;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 2px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
}

.lightbox-caption {
  position: relative;
  z-index: 1;
  margin-top: 1rem;
  font-family: var(--font-display);
  font-size: 1rem;
  font-style: italic;
  color: rgba(253,251,248,0.65);
  letter-spacing: .04em;
}

.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  z-index: 2;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  color: #fff;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .2s;
}
.lightbox-close:hover { background: rgba(255,255,255,0.18); }

@media (max-width: 900px) {
  .galerie-grid { grid-template-columns: repeat(2, 1fr); gap: .6rem; }
}
@media (max-width: 500px) {
  .galerie-grid { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
  .hamburger span {
    background: var(--ink);
  }
}

@media (max-width: 900px){
    .hero-banner-img {
        margin-top: 55px;
      
    }
}
