/* Lichtkegel — minimales Satzbild, kein Template */

:root {
  --bg: #f3f0e8;
  --ink: #141414;
  --muted: #5c5c5c;
  --line: #d6d1c6;
  --mark: #b11b12;
  --leiste: 3.25rem;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: "IBM Plex Sans", system-ui, sans-serif;
  font-size: 1.0625rem;
  line-height: 1.7;
  min-height: 100vh;
}

::selection { background: var(--ink); color: var(--bg); }

a { color: inherit; }
a:hover { color: var(--mark); }

#leiste {
  position: sticky;
  top: 0;
  z-index: 40;
  height: var(--leiste);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.5rem;
  background: var(--bg);
  border-bottom: 1px solid var(--line);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
#leiste a { text-decoration: none; }
#leiste .marke { font-weight: 500; }
#leiste .mitte {
  font-family: "IBM Plex Mono", monospace;
  letter-spacing: 0.08em;
  color: var(--muted);
  text-transform: none;
}
#leiste .menuknopf {
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
  font: inherit;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink);
}

#inhaltsverzeichnis {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 50;
  background: var(--bg);
  overflow: auto;
  padding: 5rem 8vw 4rem;
}
#inhaltsverzeichnis.offen { display: block; }
#inhaltsverzeichnis h2 {
  font-family: "Newsreader", serif;
  font-weight: 300;
  font-size: 1.25rem;
  margin: 0 0 2.5rem;
  letter-spacing: -0.02em;
}
#inhaltsverzeichnis ol {
  list-style: none;
  margin: 0;
  padding: 0;
  max-width: 36rem;
}
#inhaltsverzeichnis li {
  display: grid;
  grid-template-columns: 2.5rem 1fr auto;
  gap: 1rem;
  padding: 0.7rem 0;
  border-top: 1px solid var(--line);
  font-size: 1rem;
  letter-spacing: 0;
  text-transform: none;
}
#inhaltsverzeichnis li a { text-decoration: none; }
#inhaltsverzeichnis .nr {
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.75rem;
  color: var(--muted);
}
#inhaltsverzeichnis .zu {
  position: fixed;
  top: 0.95rem;
  right: 1.5rem;
  background: none;
  border: 0;
  font: inherit;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 0.72rem;
  cursor: pointer;
}

#blatt { min-height: 70vh; }

.kopf {
  padding: 4.5rem 8vw 3rem;
  max-width: 78rem;
}
.kicker {
  margin: 0 0 1.25rem;
  font-size: 0.68rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
}
h1, h2, h3 {
  font-family: "Newsreader", serif;
  font-weight: 300;
  letter-spacing: -0.03em;
  line-height: 1.08;
}
h1 {
  font-size: clamp(2.4rem, 6.2vw, 5.2rem);
  margin: 0 0 1.5rem;
  max-width: 18ch;
}
h1 em { font-style: italic; }
h2 { font-size: clamp(1.6rem, 2.4vw, 2.1rem); margin: 0 0 1rem; }
h3 { font-size: 1.35rem; margin: 2.4rem 0 0.6rem; }
.lede {
  font-family: "Newsreader", serif;
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  font-weight: 300;
  line-height: 1.4;
  max-width: 34rem;
  color: var(--ink);
  margin: 0;
}

.spalte {
  padding: 0 8vw 4rem;
  max-width: calc(38rem + 16vw);
}
.spalte p { margin: 0 0 1.25rem; }
.spalte p:last-child { margin-bottom: 0; }

.zwei {
  padding: 0 8vw 4.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem 5rem;
  max-width: 86rem;
}
.zwei p { margin: 0 0 1.2rem; }

.foto {
  margin: 0 8vw 4rem;
  max-width: 70rem;
}
.foto img {
  display: block;
  width: 100%;
  height: auto;
}
.foto-band {
  margin: 0 0 4.5rem;
}
.foto-band img {
  display: block;
  width: 100%;
  height: min(78vh, 820px);
  object-fit: cover;
}
figcaption {
  margin-top: 0.55rem;
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.datenleiste {
  margin: 0 8vw 4.5rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  max-width: 70rem;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.82rem;
}
.datenleiste div {
  padding: 1rem 1.1rem 1.1rem 0;
  border-right: 1px solid var(--line);
}
.datenleiste div:last-child { border-right: 0; padding-right: 0; }
.datenleiste span {
  display: block;
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.35rem;
}

.buch {
  width: 100%;
  border-collapse: collapse;
}
.buch th, .buch td {
  text-align: left;
  vertical-align: top;
  padding: 0.95rem 1rem 0.95rem 0;
  border-bottom: 1px solid var(--line);
}
.buch th {
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--muted);
}
.buch a { text-decoration: none; }
.buch .km {
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.82rem;
  white-space: nowrap;
}

.auszug {
  font-family: "Newsreader", serif;
  font-weight: 300;
  font-style: italic;
  font-size: clamp(1.5rem, 3vw, 2.15rem);
  line-height: 1.25;
  max-width: 22ch;
  margin: 0 8vw 4.5rem;
}

.liste {
  margin: 0;
  padding: 0;
  list-style: none;
}
.liste li {
  padding: 1rem 0;
  border-top: 1px solid var(--line);
}
.liste li:last-child { border-bottom: 1px solid var(--line); }
.liste strong { display: block; font-weight: 500; margin-bottom: 0.2rem; }

.weiter {
  margin: 0 8vw 5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--ink);
  max-width: 40rem;
  font-size: 0.92rem;
}
.weiter a { margin-right: 1.4rem; }

#stempel {
  border-top: 1px solid var(--ink);
  padding: 2.2rem 8vw 2.8rem;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 2rem;
  font-size: 0.82rem;
  line-height: 1.55;
}
#stempel a { text-decoration: none; display: inline-block; margin-bottom: 0.25rem; }
#stempel .brand {
  font-family: "Newsreader", serif;
  font-size: 1.35rem;
  font-weight: 300;
  margin-bottom: 0.4rem;
}
#stempel .mini { color: var(--muted); }
#stempel nav { display: flex; flex-direction: column; }

#vignette {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  background: var(--bg);
  border-top: 1px solid var(--ink);
  padding: 0.9rem 8vw;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
#vignette.sichtbar { display: flex; }
#vignette p {
  margin: 0;
  font-size: 0.82rem;
  max-width: 42rem;
  line-height: 1.4;
}
#vignette a { text-decoration: underline; text-underline-offset: 2px; }
#vignette .aktionen { display: flex; gap: 0.6rem; flex-shrink: 0; }
#vignette button {
  background: none;
  border: 1px solid var(--ink);
  padding: 0.4rem 0.75rem;
  font: inherit;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
}
#vignette .kleben { background: var(--ink); color: var(--bg); }

label {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 1.4rem 0 0.35rem;
}
input, textarea, select {
  width: 100%;
  max-width: 28rem;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--ink);
  font: inherit;
  padding: 0.4rem 0;
  color: var(--ink);
  border-radius: 0;
}
textarea {
  min-height: 8rem;
  border: 1px solid var(--ink);
  padding: 0.7rem;
  max-width: 34rem;
}
button.send {
  margin-top: 1.5rem;
  background: var(--ink);
  color: var(--bg);
  border: 0;
  padding: 0.65rem 1.2rem;
  font: inherit;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
}

.legal h2 { margin-top: 2.4rem; }
.legal ul { padding-left: 1.1rem; }

@media (max-width: 900px) {
  .kopf, .spalte, .zwei, .foto, .datenleiste, .auszug, .weiter, #stempel, #vignette, #inhaltsverzeichnis {
    padding-left: 1.4rem;
    padding-right: 1.4rem;
  }
  .zwei, .datenleiste, #stempel { grid-template-columns: 1fr; }
  #vignette { flex-direction: column; align-items: stretch; }
  #leiste .mitte { display: none; }
}
