/* ================================================================
   KLANGZENTRALE — Page-specific overrides
   ================================================================ */

/* ----------------------------------------------------------------
   PROSE WRAPPERS — narrow content columns within full-bleed sections
   ---------------------------------------------------------------- */
.prose        { max-width: 720px; }
.prose--narrow { max-width: 580px; }

/* ----------------------------------------------------------------
   kontakt.html — Formular-/Adress-Layout
   Responsive Anpassung für das 2-Spalten-Layout
   (form + aside nebeneinander)
   ---------------------------------------------------------------- */
.kontakt-layout {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: var(--s-12);
  align-items: start;
}

@media (max-width: 900px) {
  .kontakt-layout {
    grid-template-columns: 1fr;
    gap: var(--s-8);
  }
}

/* ----------------------------------------------------------------
   bauprojekt.html — symmetrisches 2-Spalten-Layout (Tabelle + Tabelle,
   oder Tabelle + Stats)
   ---------------------------------------------------------------- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-8);
  align-items: start;
}

@media (max-width: 768px) {
  .two-col { grid-template-columns: 1fr; }
}

/* ----------------------------------------------------------------
   error.html — 404 Not Found
   ---------------------------------------------------------------- */
.error-hero {
  position: relative;
  min-height: calc(100vh - 80px);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--dark);
  overflow: hidden;
  padding: var(--s-12) var(--pad-x);
}

.error-hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s-5);
  text-align: center;
  max-width: 580px;
  width: 100%;
}

.error-kicker {
  font-family: var(--f-body);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(242,240,236,0.35);
}

/* Setlist paper */
.error-setlist {
  background: #F8F4EB;
  color: #1a1a1a;
  font-family: var(--f-mono);
  font-size: 0.8rem;
  line-height: 1.9;
  padding: var(--s-5) var(--s-5) var(--s-4);
  border-radius: 1px;
  transform: rotate(-1.8deg);
  box-shadow: 5px 8px 32px rgba(0,0,0,0.55), 0 1px 4px rgba(0,0,0,0.25);
  text-align: left;
  width: 100%;
  max-width: 380px;
  position: relative;
}

/* Masking-tape strip at the top */
.error-setlist::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%) rotate(0.5deg);
  width: 72px;
  height: 18px;
  background: rgba(245,197,24,0.55);
  border-radius: 1px;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,0.06);
}

.error-setlist__header {
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  text-align: center;
  color: #666;
  border-bottom: 1px solid #d4cebc;
  padding-bottom: 0.6rem;
  margin-bottom: 0.4rem;
  line-height: 1.5;
}

.error-setlist__row {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}

.error-setlist__num {
  color: #aaa;
  min-width: 1.8rem;
  flex-shrink: 0;
}

.error-setlist__title {
  flex: 1;
  letter-spacing: 0.04em;
}

.error-setlist__check {
  font-weight: 600;
  flex-shrink: 0;
}

.error-setlist__check.ok   { color: #2E7D4F; }
.error-setlist__check.miss { color: var(--c-danger); font-size: 1rem; }

.error-setlist__divider {
  border-top: 1px dashed #ccc;
  margin: 0.4rem 0;
}

.error-setlist__row--miss .error-setlist__num,
.error-setlist__row--miss .error-setlist__title {
  text-decoration: line-through;
  text-decoration-color: rgba(199,58,58,0.6);
  text-decoration-thickness: 1.5px;
  color: #bbb;
}

.error-heading {
  font-family: var(--f-head);
  font-weight: 900;
  font-size: clamp(1.4rem, 4vw, 2rem);
  color: var(--text-inv);
  line-height: 1.2;
}

.error-sub {
  font-family: var(--f-body);
  font-size: 0.975rem;
  color: rgba(242,240,236,0.55);
  max-width: 460px;
  line-height: 1.65;
}

@media (max-width: 480px) {
  .error-setlist {
    font-size: 0.72rem;
    transform: rotate(-1deg);
  }
}

