/*
 * styles.css — Design System & Layout für Nico Klöffer Website
 * Warm-editorial, cineastisch, ruhig.
 */

/* ==========================================================================
   1. CSS-Variablen & Fonts (DESIGN-SYSTEM.md)
   ========================================================================== */
:root {
  --paper:   #F1EBE0;  /* warmes Off-White — Standard-Hintergrund */
  --paper-2: #E7DECF;  /* etwas tieferes Beige — abgesetzte Flächen */
  --ink:     #1C1A17;  /* warmes Fast-Schwarz — Fließtext & Headlines */
  --text-main: #1C1A17;  /* Haupttextfarbe für Navigation/Overlay */
  --petrol:  #24322F;  /* tiefes Petrol/Teal — dunkle Sektionen, Footer */
  --ochre:   #B9752E;  /* warmes Ocker — Akzent, SPARSAM (Links/Hover/Detail) */
  --muted:   #8A8175;  /* gedämpftes Taupe — Sekundärtext, Credits, Meta */
  --line:    #D8CFC0;  /* feine Trennlinien */

  /* Fonts */
  --font-serif: "Fraunces", "Newsreader", "Times New Roman", serif;
  --font-sans:  "Inter", "Helvetica Neue", -apple-system, sans-serif;

  /* Spacing Scale (rem) */
  --sp-xs:  0.25rem;
  --sp-sm:  0.5rem;
  --sp-md:  0.75rem;
  --sp-1:   1rem;
  --sp-1-5: 1.5rem;
  --sp-2:   2rem;
  --sp-3:   3rem;
  --sp-4:   4rem;
  --sp-6:   6rem;
  --sp-8:   8rem;

  /* Section Spacing */
  --sp-section: clamp(4rem, 10vw, 8rem);
  --container-px: clamp(1.25rem, 5vw, 4rem);
}

@font-face {
  font-family: "Inter";
  src: url("../fonts/inter-latin-400-normal.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("../fonts/inter-latin-500-normal.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("../fonts/inter-latin-600-normal.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Fraunces";
  src: url("../fonts/fraunces-latin-400-normal.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Fraunces";
  src: url("../fonts/fraunces-latin-600-normal.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Fraunces";
  src: url("../fonts/fraunces-latin-400-italic.woff2") format("woff2");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

/* ==========================================================================
   2. Base Reset & Typografie
   ========================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  background-color: var(--paper);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 0.875rem; /* 14px */
  line-height: 1.65;
  letter-spacing: 0.03em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* Prevent scrolling when burger menu is open on mobile */
body.nav-open {
  overflow: hidden;
}

h1, h2, h3, h4, .display-name {
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.15;
  color: var(--ink);
}

.display-name {
  font-size: clamp(2.75rem, 7vw, 6rem);
  line-height: 1.02;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2rem, 4vw, 3.25rem);
  margin-bottom: var(--sp-1-5);
}

h2 {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  margin-top: var(--sp-3);
  margin-bottom: var(--sp-1);
}

h3 {
  font-size: clamp(1.2rem, 1.8vw, 1.5rem);
  margin-bottom: var(--sp-sm);
}

p {
  margin-bottom: var(--sp-1-5);
}

p:last-child {
  margin-bottom: 0;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease, border-color 0.2s ease;
}

/* Text links */
.main-content a:not(.btn-download):not(.ticket-btn):not(.btn-primary) {
  border-bottom: 1px solid var(--ochre);
}

.main-content a:not(.btn-download):not(.ticket-btn):not(.btn-primary):hover {
  color: var(--ochre);
}

ul, ol {
  list-style: none;
}

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

.small-meta, .credit-text {
  font-size: 0.75rem; /* 12px */
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: var(--container-px);
}

/* ==========================================================================
   3. Navigation Header (Hero vs Inner)
   ========================================================================== */
.site-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding-block: var(--sp-1-5);
}

.header-inner {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: var(--container-px);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-name {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  transition: opacity 0.2s ease;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(2rem, 4vw, 3.5rem);
}

.nav-list {
  display: flex;
  align-items: center;
  gap: clamp(1.5rem, 2.5vw, 2.5rem);
}

.nav-link {
  font-size: 0.8125rem; /* 13px */
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding-bottom: 3px;
  border-bottom: 2px solid transparent;
}

.nav-link.active {
  border-bottom-color: var(--ochre);
}

/* Language Switch */
.lang-switch {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.75rem; /* 12px */
  font-weight: 600;
  letter-spacing: 0.08em;
}

.lang-btn {
  background: none;
  border: none;
  color: inherit;
  font: inherit;
  cursor: pointer;
  opacity: 0.5;
  padding: 0.1rem 0.2rem;
  transition: opacity 0.2s ease;
}

.lang-btn.active {
  opacity: 1;
  text-decoration: underline;
  text-decoration-color: var(--ochre);
  text-underline-offset: 3px;
}

.lang-sep {
  opacity: 0.4;
}

/* Burger Button (Hidden on Desktop) */
.burger-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 32px;
  height: 24px;
  position: relative;
  z-index: 110;
}

.burger-bar {
  display: block;
  width: 100%;
  height: 2px;
  background-color: currentColor;
  position: absolute;
  left: 0;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.burger-bar:nth-child(1) { top: 2px; }
.burger-bar:nth-child(2) { top: 11px; }
.burger-bar:nth-child(3) { top: 20px; }

/* Hero header contrast (White text over hero gradient) */
.hero-header {
  color: #FFFFFF;
  text-shadow: 0 1px 16px rgba(0, 0, 0, 0.45);
}

.hero-header .nav-link:hover,
.hero-header .logo-name:hover {
  color: var(--paper-2);
}

.hero-header .burger-bar {
  background-color: #FFFFFF;
}

/* Inner header contrast (Dark text over paper) */
.inner-header {
  position: relative;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  margin-bottom: var(--sp-4);
}

.inner-header .burger-bar {
  background-color: var(--ink);
}

/* ==========================================================================
   4. Startseite Hero (100svh)
   ========================================================================== */
.hero-section {
  position: relative;
  width: 100%;
  height: 100svh;
  min-height: 600px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: clamp(2rem, 5vh, 4rem);
  color: #FFFFFF;
  overflow: hidden;
}

.hero-bg-picture {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
}

/* Top gradient strictly for white nav readability */
.hero-gradient-top {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 40vh;
  background: linear-gradient(rgba(0, 0, 0, 0.55), transparent);
  z-index: 2;
  pointer-events: none;
}

/* Photo credit overlay on hero */
.hero-photo-credit {
  position: absolute;
  bottom: var(--sp-1);
  right: var(--container-px);
  z-index: 3;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.65);
  background: rgba(0, 0, 0, 0.25);
  padding: 2px 8px;
  border-radius: 2px;
}

/* ==========================================================================
   5. Content Sections & Widgets
   ========================================================================== */
.section-space {
  padding-block: var(--sp-section);
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  margin-bottom: var(--sp-2);
  padding-bottom: var(--sp-sm);
  border-bottom: 1px solid var(--line);
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-4);
  align-items: start;
}

.grid-1-2 {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: var(--sp-4);
  align-items: start;
}

/* Photo Box with Credit */
.photo-box {
  position: relative;
  margin-bottom: var(--sp-2);
}

.photo-box img {
  width: 100%;
  height: auto;
  border-radius: 2px;
}

.photo-credit-caption {
  margin-top: var(--sp-xs);
  font-size: 0.8125rem;
  color: var(--muted);
  text-align: right;
}

/* Contact Page — 100% Viewport No-Scroll Layout */
body.page-contact {
  height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden; /* Garantierte 100% Viewport ohne Scrollbalken */
}

body.page-contact #header-placeholder {
  flex-shrink: 0;
}

body.page-contact .inner-header {
  margin-bottom: 0 !important;
}

body.page-contact .main-content.contact-viewport {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--sp-2);
  margin: 0;
  min-height: 0;
}

body.page-contact #footer-placeholder {
  flex-shrink: 0;
}

body.page-contact .site-footer {
  margin-top: 0 !important;
}

/* About Page — 100% Viewport No-Scroll Layout on Desktop */
@media (min-width: 901px) {
  body.page-about {
    height: 100svh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden; /* Garantierte 100% Viewport ohne Scrollbalken auf Desktop */
  }

  body.page-about #header-placeholder {
    flex-shrink: 0;
  }

  body.page-about .inner-header {
    margin-bottom: 0 !important;
  }

  body.page-about .about-page-main {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-block: var(--sp-2);
    margin: 0;
    min-height: 0;
    overflow: hidden;
  }

  body.page-about #footer-placeholder {
    flex-shrink: 0;
  }

  body.page-about .site-footer {
    margin-top: 0 !important;
  }
}

.contact-viewport-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.6rem;
}

.contact-viewport-label {
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
}

.contact-viewport-email {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 400;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 0.15rem;
  line-height: 1.25;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.contact-viewport-email:hover {
  color: var(--ochre);
  border-color: var(--ochre);
}

/* Homepage Gigs Widget */
.home-gigs-list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-1);
}

.home-gig-row {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  padding-block: var(--sp-sm);
  border-bottom: 1px solid var(--line);
  font-size: 1rem;
}

.gig-date {
  font-weight: 600;
  width: 140px;
}

.gig-city {
  flex: 1;
  min-width: 180px;
  color: var(--ink);
}

.gig-proj {
  color: var(--muted);
  font-style: italic;
}

.empty-notice {
  padding-block: var(--sp-1);
  background: transparent;
  color: var(--muted);
  font-style: italic;
  border-top: 1px solid var(--line);
}

/* Projects Teasers on Homepage */
.projects-teaser-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-3);
  margin-top: var(--sp-2);
}

.teaser-card {
  background: transparent;
  padding: 0;
  padding-top: var(--sp-1);
  border-top: none;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.teaser-card h3 {
  font-size: 1.5rem;
  margin-bottom: var(--sp-sm);
}

.teaser-card p {
  color: var(--ink);
  margin-bottom: var(--sp-1-5);
}

.teaser-link {
  font-weight: 600;
  color: var(--ochre);
}

/* ==========================================================================
   6. Releases / Discography Table
   ========================================================================== */
.releases-table {
  display: flex;
  flex-direction: column;
}

.release-row {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: var(--sp-2);
  align-items: baseline;
  padding-block: var(--sp-1);
  border-bottom: 1px solid var(--line);
}

.release-year {
  font-weight: 600;
  color: var(--muted);
}

.release-artist {
  color: var(--ink);
}

.release-title {
  font-style: italic;
}

.release-link {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ochre);
}

/* ==========================================================================
   7. Live Page Table
   ========================================================================== */
.gigs-table {
  display: flex;
  flex-direction: column;
}

.gig-row {
  display: grid;
  grid-template-columns: 140px 1fr 1fr auto;
  gap: var(--sp-2);
  align-items: center;
  padding-block: var(--sp-1-5);
  border-bottom: 1px solid var(--line);
}

.gig-row.sold-out-row {
  opacity: 0.7;
}

.gig-date-cell {
  font-weight: 600;
}

.gig-venue {
  color: var(--muted);
  font-weight: 400;
}

.gig-project-cell {
  font-style: italic;
  color: var(--ink);
}

.ticket-btn {
  display: inline-block;
  padding: 0.4rem 0.9rem;
  background-color: var(--ink);
  color: var(--paper);
  border-radius: 2px;
  font-size: 0.85rem;
  font-weight: 500;
  transition: background-color 0.2s ease;
}

.ticket-btn:hover {
  background-color: var(--ochre);
  color: #FFFFFF;
}

.badge-soldout {
  font-size: 0.85rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}

/* Details / Summary Accordion (<details> native) */
details.archive-details {
  margin-top: var(--sp-3);
  border: none;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  padding: var(--sp-1) 0;
  background: transparent;
}

details.archive-details summary {
  cursor: pointer;
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--ink);
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 0.25rem;
}

details.archive-details summary::-webkit-details-marker {
  display: none;
}

details.archive-details summary::after {
  content: "+";
  font-family: var(--font-sans);
  font-size: 1.25rem;
  font-weight: 300;
  color: var(--ochre);
}

details.archive-details[open] summary::after {
  content: "−";
}

/* ==========================================================================
   8. Press Kit Page & Downloads (Editorial EPK System)
   ========================================================================== */

/* --- 1. Editorial Monograph Header --- */
.press-monograph-header {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: flex-start;
  margin-bottom: clamp(3rem, 6vh, 5rem);
  padding-bottom: clamp(2rem, 4vh, 3.5rem);
  border-bottom: 1px solid var(--line);
}

.press-header-main {
  display: flex;
  flex-direction: column;
}

.press-hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  line-height: 1.12;
  font-weight: 400;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-top: 0;
  margin-bottom: clamp(1rem, 2vh, 1.5rem);
}

.press-hero-lead {
  font-size: clamp(1.05rem, 1.5vh, 1.2rem);
  line-height: 1.7;
  color: var(--ink);
  max-width: 600px;
}

.press-header-notice {
  display: flex;
  justify-content: flex-end;
}

.press-notice-badge {
  background: transparent;
  padding: 0;
  border: none;
  max-width: 380px;
}

.press-notice-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-bottom: 0.3rem;
}

.press-notice-badge p {
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--ink);
  margin-bottom: 0;
}

/* --- 2. Section Spacing --- */
.press-section {
  margin-bottom: clamp(4rem, 8vh, 6.5rem);
}

/* --- 3. High-Res Photo Gallery (Pure Photographic Display) --- */
.press-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: start;
}

.press-gallery-card {
  display: flex;
  flex-direction: column;
  background: transparent;
}

.press-gallery-thumb {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 2;
  background: transparent !important;
  padding: 0 !important;
  border: none !important;
  border-radius: 2px;
  margin-bottom: var(--sp-1);
  overflow: hidden;
  text-decoration: none;
  box-shadow: none !important;
}

.press-gallery-thumb:hover {
  transform: translateY(-3px);
}

.press-gallery-thumb img {
  width: 100%;
  height: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: 2px;
  transition: transform 0.4s ease;
}

.press-gallery-thumb:hover img {
  transform: scale(1.02);
}

.press-gallery-info {
  display: flex;
  flex-direction: column;
  padding-top: var(--sp-xs);
}

.press-gallery-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: var(--sp-sm);
  margin-bottom: 0.2rem;
}

.press-gallery-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--ink);
  margin: 0;
  line-height: 1.25;
}

.press-gallery-size {
  font-size: 0.8rem;
  font-family: var(--font-sans);
  color: var(--muted);
  white-space: nowrap;
}

.press-gallery-credit {
  font-size: 0.82rem;
  color: var(--muted);
  margin-bottom: var(--sp-1);
}

.press-gallery-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--line);
  padding-bottom: 0.15rem;
  width: fit-content;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.press-gallery-link:hover {
  color: var(--ochre);
  border-color: var(--ochre);
}

/* --- 4. Biographies (2-Column Editorial Grid) --- */
.press-bios-grid {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: clamp(2.5rem, 5vw, 4.5rem);
  align-items: start;
}

.press-bio-col {
  display: flex;
  flex-direction: column;
  border-top: none;
  padding-top: 0;
}

.press-bio-col .copy-bio-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--sp-1);
}

.press-bio-col .bio-heading {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--ink);
}

.press-copy-btn {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
  padding: 0.35rem 0.85rem;
  font-size: 0.82rem;
  font-weight: 500;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.press-copy-btn:hover {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}

.press-copy-btn.copied {
  background: #2D6A4F;
  border-color: #2D6A4F;
  color: #FFFFFF;
}

/* --- 5. Quick Facts (Editorial Table / Fact Sheet) --- */
.press-facts-list {
  display: flex;
  flex-direction: column;
  border-top: none;
  margin: 0;
  padding: var(--sp-sm) 0 0 0;
}

.press-fact-row {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: var(--sp-2);
  padding: var(--sp-md) 0;
  border-bottom: none;
  align-items: baseline;
}

.press-fact-label {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
}

.press-fact-value {
  font-size: 1.05rem;
  color: var(--ink);
  margin-left: 0;
  line-height: 1.6;
}

/* --- Fallbacks & Common Button Definitions --- */
.press-intro-box {
  background: transparent;
  padding: var(--sp-1-5) 0;
  border: none;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  margin-bottom: var(--sp-4);
}

.credit-warning {
  font-weight: 600;
  color: var(--ochre);
  margin-top: var(--sp-1);
}

.press-downloads-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: var(--sp-3);
}

.download-card {
  background: transparent;
  border: none;
  border-radius: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.download-thumb-wrapper {
  aspect-ratio: 3/2;
  overflow: hidden;
  background: var(--paper-2);
}

.download-thumb-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.download-info {
  padding: var(--sp-1-5);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
}

.download-title {
  font-size: 1.15rem;
  margin-bottom: var(--sp-xs);
}

.download-credit {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: var(--sp-1-5);
}

.btn-download, .btn-primary {
  display: inline-block;
  padding: 0.6rem 1.2rem;
  background-color: var(--ink);
  color: var(--paper);
  text-align: center;
  border-radius: 2px;
  font-size: 0.9rem;
  font-weight: 500;
  transition: background-color 0.2s ease;
}

.btn-download:hover, .btn-primary:hover {
  background-color: var(--ochre);
  color: #FFFFFF;
}

.copy-bio-box {
  background: transparent;
  padding: 0;
  padding-top: var(--sp-1);
  border-top: none;
  border-radius: 0;
  position: relative;
  margin-bottom: var(--sp-3);
}

.copy-bio-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--sp-1);
}

.copy-bio-btn {
  background: var(--ink);
  color: var(--paper);
  border: none;
  padding: 0.3rem 0.8rem;
  font-size: 0.8rem;
  border-radius: 2px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.copy-bio-btn:hover {
  background: var(--ochre);
}

.copy-bio-btn.copied {
  background: #2D6A4F;
}

.copy-text-area {
  white-space: pre-wrap;
  font-size: 0.95rem;
  color: var(--ink);
  line-height: 1.7;
}

.facts-list {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: var(--sp-1) var(--sp-2);
  padding: 0;
  padding-top: var(--sp-1-5);
  background: transparent;
  border-top: 1px solid var(--line);
  border-radius: 0;
}

.facts-list dt {
  font-weight: 600;
  color: var(--muted);
}

.facts-list dd {
  color: var(--ink);
  margin-left: 0;
}

/* ==========================================================================
   9. Footer
   ========================================================================== */
.site-footer {
  background-color: var(--petrol);
  color: var(--paper);
  padding-block: clamp(1.15rem, 2.5vh, 1.75rem); /* halb so hoch & slick */
  margin-top: clamp(3rem, 6vw, 5rem);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-inner {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: var(--container-px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.footer-left {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.footer-name {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 600;
  color: #FFFFFF;
}

.footer-meta {
  font-size: 0.75rem;
  color: rgba(241, 235, 224, 0.65);
  letter-spacing: 0.04em;
}

.footer-right {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2vw, 1.75rem);
  flex-wrap: wrap;
}

.footer-link {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
  color: rgba(241, 235, 224, 0.85);
  transition: color 0.2s ease;
  border-bottom: none !important;
}

.footer-link:hover {
  color: var(--ochre);
}

.footer-sep {
  color: rgba(241, 235, 224, 0.25);
  font-size: 0.85rem;
}

/* On Desktop, Imprint is inside the Footer right column */
.imprint-nav-link {
  display: none;
}

/* By default on Desktop (> 900px), hide mobile page titles */
.mobile-page-title {
  display: none !important;
}

/* ==========================================================================
   10. Responsives Design & Mobile Burger Menü
   ========================================================================== */
@media (max-width: 900px) {
  /* Show Mobile Page Title prominently */
  .mobile-page-title {
    display: block !important;
    font-family: var(--font-serif);
    font-size: clamp(1.75rem, 6vw, 2.3rem);
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: var(--sp-3);
    line-height: 1.2;
  }

  /* Layout Grids Collapse */
  .grid-2, .grid-1-2, .projects-teaser-grid {
    grid-template-columns: 1fr;
    gap: var(--sp-3);
  }

  body.page-contact {
    height: 100svh;
  }

  .contact-viewport-email {
    word-break: break-all;
    font-size: clamp(1.4rem, 5vw, 1.8rem);
  }

  /* Mobile Footer: Navigation links gone, copyright centered cleanly at very bottom */
  .footer-right {
    display: none !important;
  }

  .footer-inner {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 0;
    padding-block: 0.5rem;
  }

  .footer-left {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .footer-meta {
    font-size: 0.75rem;
    opacity: 0.85;
  }

  /* Show Imprint in mobile burger menu: keep sans-serif typography, make smaller, push to bottom below lang switch */
  .imprint-nav-link {
    display: block !important;
    font-family: var(--font-sans) !important;
    text-transform: uppercase !important;
    letter-spacing: 0.08em !important;
    font-weight: 500 !important;
    font-size: clamp(0.75rem, 2.5vw, 0.82rem) !important;
    opacity: 0.75 !important;
    margin-top: clamp(2rem, 6vh, 4rem) !important;
  }

  .release-row {
    grid-template-columns: 60px 1fr;
    gap: 0.6rem;
  }

  .release-action {
    grid-column: 2 / -1;
    margin-top: 0.2rem;
  }

  .gig-row {
    grid-template-columns: 1fr;
    gap: 0.4rem;
    padding-block: var(--sp-1-5);
  }

  .gig-action-cell {
    margin-top: 0.4rem;
  }

  .facts-list {
    grid-template-columns: 1fr;
    gap: 0.4rem;
  }

  .facts-list dt {
    margin-top: var(--sp-1);
  }

  .press-downloads-grid {
    grid-template-columns: 1fr;
  }

  /* Responsive Rules for Editorial EPK Layout */
  .press-monograph-header {
    grid-template-columns: 1fr;
    gap: var(--sp-2);
  }

  .press-header-notice {
    justify-content: flex-start;
    width: 100%;
  }

  .press-notice-badge {
    max-width: 100%;
  }

  .press-gallery-grid {
    grid-template-columns: 1fr;
    gap: var(--sp-3);
  }

  /* Eliminate hover artifacts and jump transforms on touch devices for all Press gallery cards */
  .press-gallery-thumb:hover,
  .press-gallery-thumb:active,
  .press-gallery-thumb:focus {
    transform: none !important;
  }

  .press-gallery-thumb img,
  .press-gallery-thumb:hover img,
  .press-gallery-thumb:active img,
  .press-gallery-thumb:focus img {
    transform: none !important;
    transition: none !important;
  }

  .press-gallery-link:hover,
  .press-gallery-link:active {
    transform: none !important;
  }

  .press-bios-grid {
    grid-template-columns: 1fr;
    gap: var(--sp-3);
  }

  .press-fact-row {
    grid-template-columns: 1fr;
    gap: 0.35rem;
    padding: var(--sp-1) 0;
  }

  .press-fact-label {
    margin-top: 0;
  }

  /* Burger Menu Visible for all Screens <= 900px */
  .burger-btn {
    display: block;
  }

  /* Main Navigation Overlay (Warm white paper background, dark text) */
  .main-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    background-color: var(--paper);
    color: var(--text-main);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: var(--sp-3);
    z-index: 105;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    padding: 2rem;
    overflow-y: auto;
  }

  .main-nav.menu-open {
    opacity: 1;
    pointer-events: auto;
  }

  /* ABSOLUTE MASTER OVERRIDE WHEN MENU IS OPEN ON ANY PAGE (index.html, projects.html, about.html, etc.) */
  body.nav-open .site-header,
  body.nav-open .hero-header,
  body.nav-open .inner-header,
  .site-header .main-nav,
  .hero-header .main-nav,
  .inner-header .main-nav,
  .main-nav {
    background-color: var(--paper) !important;
    color: var(--text-main) !important;
    text-shadow: none !important;
  }

  .nav-list {
    flex-direction: column;
    align-items: center;
    gap: var(--sp-2-5);
  }

  /* Force mobile menu links (except Imprint) to use exact Nico Klöffer serif title typography */
  body.nav-open .main-nav .nav-link:not(.imprint-nav-link),
  body.nav-open .site-header .main-nav .nav-link:not(.imprint-nav-link),
  body.nav-open .hero-header .main-nav .nav-link:not(.imprint-nav-link),
  .site-header .main-nav .nav-link:not(.imprint-nav-link),
  .hero-header .main-nav .nav-link:not(.imprint-nav-link),
  .inner-header .main-nav .nav-link:not(.imprint-nav-link),
  .main-nav .nav-link:not(.imprint-nav-link) {
    font-family: var(--font-serif);
    font-weight: 600;
    letter-spacing: -0.02em;
    text-transform: none;
    font-size: clamp(1.6rem, 5vw, 2.2rem);
    color: var(--ink) !important;
    text-shadow: none !important;
    padding-block: 0.2rem;
  }

  body.nav-open .main-nav .nav-link.active,
  body.nav-open .site-header .main-nav .nav-link.active,
  body.nav-open .hero-header .main-nav .nav-link.active,
  .site-header .main-nav .nav-link.active,
  .hero-header .main-nav .nav-link.active,
  .inner-header .main-nav .nav-link.active,
  .main-nav .nav-link.active {
    color: var(--ochre) !important;
    border-bottom-color: var(--ochre) !important;
  }

  /* Position DE / EN switch top-left (oben links) in mobile burger menu */
  body.nav-open .main-nav .lang-switch,
  body.nav-open .site-header .main-nav .lang-switch,
  body.nav-open .hero-header .main-nav .lang-switch,
  .site-header .main-nav .lang-switch,
  .hero-header .main-nav .lang-switch,
  .inner-header .main-nav .lang-switch,
  .main-nav .lang-switch {
    position: absolute !important;
    top: clamp(1.4rem, 3.5vh, 2rem) !important;
    left: var(--container-px) !important;
    margin-top: 0 !important;
    font-size: clamp(1rem, 2.8vw, 1.2rem) !important;
    color: var(--ink) !important;
    text-shadow: none !important;
    z-index: 10 !important;
  }

  body.nav-open .main-nav .lang-btn,
  body.nav-open .site-header .main-nav .lang-btn,
  body.nav-open .hero-header .main-nav .lang-btn,
  .site-header .main-nav .lang-btn,
  .hero-header .main-nav .lang-btn,
  .inner-header .main-nav .lang-btn,
  .main-nav .lang-btn {
    color: var(--ink) !important;
    text-shadow: none !important;
  }

  body.nav-open .main-nav .lang-btn.active,
  body.nav-open .site-header .main-nav .lang-btn.active,
  body.nav-open .hero-header .main-nav .lang-btn.active,
  .site-header .main-nav .lang-btn.active,
  .hero-header .main-nav .lang-btn.active,
  .inner-header .main-nav .lang-btn.active,
  .main-nav .lang-btn.active {
    color: var(--ochre) !important;
  }

  /* When menu is open, force Logo and Burger X to be crisp dark ink across ALL header types */
  body.nav-open .site-header .logo-name,
  body.nav-open .hero-header .logo-name,
  body.nav-open .inner-header .logo-name,
  body.nav-open .site-header a,
  body.nav-open .hero-header a {
    color: var(--ink) !important;
    text-shadow: none !important;
  }

  body.nav-open .burger-btn,
  .burger-btn.active {
    z-index: 200 !important;
    position: relative !important;
  }

  body.nav-open .site-header .burger-bar,
  body.nav-open .hero-header .burger-bar,
  body.nav-open .inner-header .burger-bar,
  body.nav-open .burger-btn .burger-bar,
  .burger-btn.active .burger-bar {
    background-color: var(--ink) !important;
  }

  .burger-btn.active .burger-bar:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
    opacity: 1 !important;
  }

  .burger-btn.active .burger-bar:nth-child(2) {
    opacity: 0 !important;
  }

  .burger-btn.active .burger-bar:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
    opacity: 1 !important;
  }
}

@media (max-width: 600px) {
  :root {
    --container-px: 1rem;
    --sp-6: 3rem;
    --sp-5: 2.25rem;
    --sp-4: 1.75rem;
  }

  .hero-section {
    min-height: 520px;
  }

  .hero-bg-img {
    object-position: center 20%;
  }
}

/* ==========================================================================
   Projects 100svh Hovering Showcase & Floating Cursor Layout ("an der maus klebt")
   ========================================================================== */
.projects-hover-showcase {
  position: relative;
  width: 100%;
  height: 100svh;
  min-height: 580px;
  max-height: 1400px;
  overflow: hidden;
  background: #0D0C0A;
  color: #FFFFFF;
  display: flex;
}

.showcase-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1), transform 1.5s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}

.showcase-bg picture,
.showcase-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.showcase-bg.active {
  opacity: 0.65;
  transform: scale(1);
}

.showcase-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(13, 12, 10, 0.38) 0%, rgba(13, 12, 10, 0.68) 100%);
  z-index: 2;
  pointer-events: none;
  transition: background-color 0.5s ease;
}

.showcase-zones {
  position: relative;
  z-index: 10;
  display: flex;
  width: 100%;
  height: 100%;
}

.showcase-zone {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(2rem, 6vw, 7rem) clamp(2rem, 5vw, 6rem);
  text-decoration: none;
  color: #FFFFFF;
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}

.showcase-zone:hover {
  opacity: 1 !important;
}

.showcase-zones.hovering .showcase-zone:not(:hover) {
  opacity: 0.35;
}

.zone-content {
  max-width: 520px;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.75);
}

.showcase-zone:hover .zone-content {
  transform: translateY(-8px);
}

.zone-title {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 4.8vw, 4.8rem);
  font-weight: 400;
  line-height: 1.08;
  margin-bottom: var(--sp-1-5);
  letter-spacing: -0.02em;
  color: #FFFFFF;
}

.zone-desc {
  font-size: 1.05rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: var(--sp-2-5);
}

.btn-showcase {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  color: #FFFFFF;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  padding-bottom: 4px;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.showcase-zone:hover .btn-showcase {
  color: var(--ochre);
  border-color: var(--ochre);
}

.showcase-divider {
  width: 1px;
  background: rgba(255, 255, 255, 0.15);
  margin-block: clamp(3rem, 12vh, 9rem);
  transition: opacity 0.4s ease;
}

.showcase-zones.hovering .showcase-divider {
  opacity: 0.4;
}

/* Mobile-only Normal Stacked Projects Cards (Default hidden on desktop) */
.projects-mobile-cards {
  display: none;
}

/* Mobile & Tablet Responsiveness for Projects Page */
@media (max-width: 900px) {
  .projects-hover-showcase {
    display: none !important;
  }

  .projects-mobile-cards {
    display: block;
    padding-top: var(--sp-1);
  }

  /* Make header on projects.html mobile act exactly as inner-header with dark text over paper */
  .page-showcase .site-header {
    position: relative !important;
    color: var(--ink) !important;
    text-shadow: none !important;
    border-bottom: 1px solid var(--line) !important;
    margin-bottom: var(--sp-4) !important;
  }

  .page-showcase .site-header .logo-name,
  .page-showcase .site-header .nav-link {
    color: var(--ink) !important;
  }

  .page-showcase .site-header .burger-bar {
    background-color: var(--ink) !important;
  }

  .mobile-project-list {
    display: flex;
    flex-direction: column;
    gap: 4.75rem; /* ~76px: Huge separation so each card stands as an independent element */
    margin-bottom: var(--sp-6);
  }

  .mobile-project-card {
    display: flex;
    flex-direction: column;
    background: transparent;
  }

  .mobile-project-img-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 16/10;
    overflow: hidden;
    background: var(--paper-2);
    margin-bottom: 0.75rem; /* ~12px: Tight proximity to text so image + text form 1 visual block */
  }

  .mobile-project-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 25%;
  }

  .mobile-project-card .photo-credit-badge {
    position: absolute;
    bottom: 8px;
    left: 8px;
    background: rgba(13, 12, 10, 0.75);
    color: #FFFFFF;
    font-size: 0.72rem;
    padding: 3px 8px;
    letter-spacing: 0.03em;
    pointer-events: none;
  }

  .mobile-project-title {
    font-family: var(--font-serif);
    font-size: clamp(1.65rem, 5.5vw, 2.2rem);
    margin-bottom: 0.35rem; /* Tight proximity between title and description */
    color: var(--text-main);
  }

  .mobile-project-desc {
    font-size: clamp(1rem, 2.5vw, 1.1rem);
    line-height: 1.65;
    color: var(--ink);
    margin-bottom: 1.15rem; /* Direct flow into CTA button */
  }

  .btn-project-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--ochre);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-bottom: 1px solid var(--ochre);
    padding-bottom: 3px;
    width: fit-content;
  }
}

/* ==========================================================================
   100svh Non-Scrollable Project Showcase (Trio & Septet)
   ========================================================================== */
.page-fixed-project {
  height: 100svh;
  max-height: 100svh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.page-fixed-project .site-header {
  position: relative;
  flex-shrink: 0;
}

.page-fixed-project .main-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  padding-block: var(--sp-1);
}

.project-exhibition-header {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: clamp(0.5rem, 1.5vh, 1.2rem);
  flex-shrink: 0;
}

.project-exhibition-layout {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: clamp(2rem, 5vw, 5.5rem);
  width: 100%;
  height: 100%;
  max-height: calc(100svh - 160px);
  align-items: center;
}

.exhibition-col-photo {
  position: relative;
  width: 100%;
  height: 100%;
  max-height: calc(100svh - 165px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.exhibition-photo-wrap {
  position: relative;
  display: inline-block;
  max-width: 100%;
  max-height: calc(100svh - 195px);
}

.exhibition-col-photo picture {
  display: block;
  max-width: 100%;
  max-height: calc(100svh - 195px);
}

.exhibition-col-photo img {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: calc(100svh - 195px);
  object-fit: contain;
  border-radius: 2px;
}

.exhibition-photo-credit {
  position: absolute;
  bottom: 0.8rem;
  left: 0.8rem;
  z-index: 3;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.85);
  background: rgba(0, 0, 0, 0.45);
  padding: 3px 8px;
  border-radius: 2px;
  backdrop-filter: blur(4px);
}

.exhibition-col-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: clamp(1.4rem, 3vh, 2.4rem);
  height: 100%;
  max-height: calc(100svh - 165px);
}

.exhibition-lineup {
  font-size: clamp(1.05rem, 1.45vh, 1.22rem);
  font-weight: 500;
  line-height: 1.65;
  color: var(--text-main);
  white-space: pre-line;
}

.exhibition-desc {
  font-size: clamp(0.95rem, 1.3vh, 1.05rem);
  line-height: 1.65;
  color: var(--text-main);
  opacity: 0.88;
  white-space: pre-line;
}

.exhibition-actions {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.page-fixed-project .site-footer {
  flex-shrink: 0;
  margin-top: auto;
}

@media (max-width: 900px) {
  .page-fixed-project {
    height: auto;
    max-height: none;
    overflow: auto;
  }
  .project-exhibition-layout {
    grid-template-columns: 1fr;
    max-height: none;
    gap: 0;
  }
  .exhibition-col-photo {
    max-height: none;
    text-align: center;
    margin-bottom: 0.85rem; /* ~14px: Tight cohesion between stage photo and lineup/title text below */
  }
  .exhibition-photo-wrap {
    max-height: 46vh;
    max-width: 100%;
    display: inline-block;
  }
  .exhibition-col-photo picture,
  .exhibition-col-photo img {
    max-height: 46vh;
    width: auto;
    max-width: 100%;
  }
  .exhibition-col-info {
    max-height: none;
    padding-bottom: var(--sp-4);
  }
  .exhibition-lineup {
    margin-bottom: 0.65rem;
  }
  .exhibition-desc {
    margin-bottom: 1.35rem;
  }
  body.page-about {
    min-height: 100svh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  body.page-about #footer-placeholder {
    margin-top: auto;
  }
  .about-page-main {
    padding-top: var(--sp-1) !important;
    padding-bottom: var(--sp-4) !important;
  }
  .about-statement-layout {
    min-height: 0;
    max-height: none;
    padding-block: 0;
  }
}

/* ==========================================================================
   Natural Spaced About Statement Layout (Oriented on projects.html)
   ========================================================================== */
.about-page-main {
  padding-block: clamp(3.5rem, 8vh, 6.5rem);
}

.about-statement-layout {
  display: block;
  width: 100%;
  height: auto;
  text-align: left;
  padding-inline: 0;
}

.about-statement-box {
  max-width: 780px;
  margin: 0;
}

.about-statement-lead {
  font-family: var(--font-sans);
  font-size: clamp(1.05rem, 1.8vh, 1.35rem);
  line-height: 1.7;
  font-weight: 400;
  color: var(--text-main);
  letter-spacing: 0.01em;
  white-space: pre-line;
}

/* ==========================================================================
   100svh Live Tour Ledger Layout
   ========================================================================== */
.live-ledger-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 4vw, 5rem);
  width: 100%;
  height: 100%;
  max-height: calc(100svh - 150px);
  align-items: center;
}

.live-ledger-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  max-height: calc(100svh - 165px);
  overflow-y: auto;
  padding-right: 0.5rem;
}

.live-ledger-col::-webkit-scrollbar {
  width: 4px;
}
.live-ledger-col::-webkit-scrollbar-thumb {
  background-color: var(--line);
  border-radius: 2px;
}

.live-ledger-header {
  display: grid;
  grid-template-columns: 120px 1.1fr 1fr auto;
  gap: 1rem;
  border-bottom: 2px solid var(--ink);
  padding-bottom: 0.6rem;
  font-size: 0.8rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
  margin-bottom: 0.2rem;
}

.live-ledger-col .gig-row {
  grid-template-columns: 120px 1.1fr 1fr auto;
  gap: 1rem;
  padding-block: 0.9rem;
  border-bottom: 1px solid var(--line);
  font-size: 0.95rem;
}

@media (max-width: 900px) {
  .live-ledger-layout {
    grid-template-columns: 1fr;
    max-height: none;
    gap: var(--sp-3);
  }
  .live-ledger-col {
    max-height: none;
    overflow-y: visible;
  }
  .live-ledger-header {
    display: none;
  }
}

/* ==========================================================================
   Live Roster Monograph Layout (Scrollable, Single Photo Header)
   ========================================================================== */
.live-monograph-header {
  display: grid;
  grid-template-columns: 1fr 440px;
  gap: clamp(2.5rem, 5vw, 6rem);
  align-items: center;
  margin-bottom: clamp(3rem, 6vh, 5rem);
}

.live-hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  line-height: 1.12;
  font-weight: 400;
  letter-spacing: -0.02em;
  color: var(--text-main);
  margin-top: 0;
  margin-bottom: clamp(1rem, 2vh, 1.5rem);
}

.live-hero-sub {
  font-size: clamp(1.05rem, 1.5vh, 1.2rem);
  line-height: 1.65;
  color: var(--muted);
  max-width: 580px;
}

.live-monograph-photo {
  position: relative;
  width: 100%;
  max-width: 440px;
  display: inline-block;
}

.live-monograph-photo img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  border-radius: 2px;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.08);
}

.live-schedule-container {
  max-width: 1040px;
  margin: 0 auto;
}

.gigs-table-header {
  display: grid;
  grid-template-columns: 140px 1.2fr 1fr auto;
  gap: var(--sp-2);
  border-bottom: 1px solid var(--line);
  padding-bottom: 0.75rem;
  font-size: 0.78rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  margin-bottom: 0;
}

.live-schedule-container .gig-row {
  grid-template-columns: 140px 1.2fr 1fr auto;
  gap: var(--sp-2);
  padding-block: 1.15rem;
  border-bottom: 1px solid var(--line);
  font-size: clamp(1rem, 1.4vh, 1.1rem);
  transition: background-color 0.15s ease;
}

.live-schedule-container .gig-row:hover {
  background-color: rgba(0, 0, 0, 0.02);
}

@media (max-width: 900px) {
  .live-page-content.section-space {
    padding-top: var(--sp-1) !important;
  }
  .live-monograph-header {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 0 !important;
    margin-bottom: var(--sp-4) !important;
  }
  .live-hero-text {
    display: contents !important;
  }
  .live-hero-title {
    order: 1 !important;
    width: 100%;
    margin-top: 0 !important;
    margin-bottom: var(--sp-4) !important;
  }
  .live-monograph-photo {
    order: 2 !important;
    width: 100% !important;
    max-width: 100% !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .live-monograph-photo img {
    width: 100% !important;
    height: auto !important;
    max-height: 55vh !important;
    object-fit: contain !important;
    object-position: left center !important;
  }
  .gigs-table-header {
    display: none;
  }
  .live-schedule-container .gig-row {
    grid-template-columns: 1fr;
    gap: 0.35rem;
    padding-block: var(--sp-2);
    border-bottom: 1px solid var(--line);
  }
  .live-schedule-container .gig-date-cell {
    font-size: 0.95rem;
    color: var(--ochre);
    font-weight: 700;
  }
  .live-schedule-container .gig-city-cell strong {
    font-size: 1.15rem;
    display: block;
    margin-top: 0.1rem;
  }
  .live-schedule-container .gig-venue {
    display: block;
    font-size: 0.92rem;
    color: var(--muted);
  }
  .live-schedule-container .gig-project-cell {
    font-size: 0.95rem;
    margin-top: 0.15rem;
  }
}

/* ============================================================
   Polish-Session (2026-07-10) — Claude Code
   Ergänzungen für: a11y, noscript, Rechtstexte, Video-Boxen
   ============================================================ */

/* Für Screenreader sichtbar, visuell entfernt (H1 im Foto-Hero). */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

/* Notnavigation, wenn JavaScript deaktiviert ist (Header/Footer werden per JS injiziert). */
.noscript-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  padding: 1rem clamp(1.25rem, 5vw, 4rem);
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  font-family: "Inter", system-ui, sans-serif;
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.noscript-bar strong { font-family: "Fraunces", Georgia, serif; text-transform: none; letter-spacing: 0; }
.noscript-bar a { color: var(--ink); text-decoration: none; }
.noscript-bar a:hover { color: var(--ochre); }

/* Kontaktseite: Label ist jetzt eine H1 — Browser-Defaults neutralisieren. */
h1.contact-viewport-label { margin: 0; }

/* Presse-Galerie: <picture> muss die Kachelhöhe füllen. */
.press-gallery-thumb picture {
  display: block;
  width: 100%;
  height: 100%;
}

/* Video-Boxen auf /projects (dynamisch gerendert). */
.video-box-title {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.video-box-link {
  display: inline-block;
  margin-top: 0.5rem;
}

/* Impressum & Datenschutz — ruhiger, gut lesbarer Fließsatz. */
.legal-container { max-width: 760px; }
.legal-section { margin-bottom: var(--sp-4); }
.legal-section p {
  color: var(--ink);
  line-height: 1.7;
  margin-bottom: var(--sp-1);
}
.legal-address { font-style: normal; }
.legal-subtitle {
  font-family: "Inter", system-ui, sans-serif;
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-bottom: var(--sp-1);
}
.legal-list {
  margin: 0 0 var(--sp-1) 1.1rem;
  padding: 0;
  color: var(--ink);
  line-height: 1.7;
}
.legal-list li { margin-bottom: 0.25rem; }
.legal-privacy-start {
  border-top: 1px solid var(--line);
  padding-top: var(--sp-5);
  margin-top: var(--sp-6);
}
.legal-section code {
  font-size: 0.9em;
  background: var(--paper-2);
  padding: 0.05em 0.3em;
  border-radius: 2px;
}

/* Presse-Galerie: gleich breite Spalten.
   `1fr` == `minmax(auto, 1fr)` — lange, unbrechbare Wörter wie
   "atelierrondino_photography" drücken die Spalte sonst auf.
   Nur ab 901px — darunter gilt die einspaltige Regel aus der Mobile-Query,
   die weiter oben steht und sonst von dieser hier überschrieben würde. */
@media (min-width: 901px) {
  .press-gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
.press-gallery-header {
  flex-direction: column;
  align-items: flex-start;
  gap: 0.15rem;
}
.press-gallery-title {
  overflow-wrap: anywhere;
}
.press-gallery-credit {
  overflow-wrap: anywhere;
}
.press-gallery-size {
  white-space: nowrap;
}

/* Rechtstexte: Überschriften zurücknehmen. Die globale .section-title ist
   ein Display-Grad (~40px) — über 14px-Fließtext wirkt das wie ein Aufmacher. */
.legal-section .section-title {
  font-size: clamp(1.125rem, 1.6vw, 1.375rem);
  line-height: 1.35;
  margin-bottom: var(--sp-1);
}
.legal-privacy-start .page-title {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
}
