:root {
  --ink: #151515;
  --paper: #f4f0e8;
  --paper-soft: #fffaf0;
  --signal: #ff4d2e;
  --blue: #2457ff;
  --green: #0b8f69;
  --muted: #746f67;
  --line: rgba(21, 21, 21, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(21, 21, 21, 0.045) 1px, transparent 1px) 0 0 / 7.5vw 100%,
    radial-gradient(circle at 78% 18%, rgba(255, 77, 46, 0.12), transparent 25rem),
    var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.45;
}

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

h1,
h2,
p {
  margin-top: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  min-height: 76px;
  padding: 1rem clamp(1rem, 4vw, 3.5rem);
  border-bottom: 1px solid var(--line);
  background: rgba(244, 240, 232, 0.86);
  backdrop-filter: blur(18px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.brand-mark {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  color: var(--paper-soft);
  background: var(--ink);
  border-radius: 50%;
  font-size: 0.78rem;
}

.hero {
  min-height: calc(100svh - 76px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  align-items: center;
  gap: clamp(2rem, 6vw, 7rem);
  padding: clamp(3rem, 8vw, 7rem) clamp(1rem, 4vw, 3.5rem) clamp(2rem, 4vw, 3rem);
  border-bottom: 1px solid var(--line);
}

.kicker {
  margin: 0 0 1.1rem;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

h1 {
  max-width: 12ch;
  margin-bottom: 1.5rem;
  font-size: clamp(2.7rem, 8vw, 7rem);
  line-height: 0.86;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-text {
  max-width: 720px;
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  line-height: 1.2;
}

.hero-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: min(58vw, 620px);
}

/* Zeichnet eine lokale, musikalische Bühne ohne externe Bildquellen. */



.logo-placeholder {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: min(100%, 640px);
  aspect-ratio: 2 / 1;
 
}

.logo-placeholder span {
  font-size: clamp(1.4rem, 4vw, 3.2rem);
  font-weight: 800;
  text-transform: uppercase;
}

.logo-placeholder strong {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.site-footer {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
}

.site-footer section {
  padding: 10px;
  background: var(--ink);
  color: var(--paper-soft);
}

.site-footer h2 {
  margin-bottom: 10px;
  font-size: clamp(0.9rem, 1vw, 1.1rem);
  line-height: 1.15;
  letter-spacing: 0;
  text-transform: uppercase;
}

.site-footer p {
  margin-bottom: 0;
  color: rgba(255, 250, 240, 0.72);
}

@media (max-width: 900px) {
  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: auto;
    padding: 2.5rem 0;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .site-header {
    position: static;
    align-items: flex-start;
  }

  .brand {
    align-items: flex-start;
  }

  h1 {
    font-size: clamp(3rem, 17vw, 5.1rem);
  }

  .logo-placeholder {
    box-shadow: 10px 10px 0 var(--blue);
  }
}
