:root {
  --ink: #0a0a0a;
  --paper: #e9e5dd;
  --muted: rgba(233, 229, 221, 0.55);
  --rule: rgba(233, 229, 221, 0.35);
}

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

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

body {
  margin: 0;
  min-height: 100svh;
  background: var(--ink);
  color: var(--paper);
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  font-weight: 300;
  overflow-x: hidden;
}

/* Light sweeps of the original print */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(60% 45% at 96% 18%, rgba(233, 229, 221, 0.16), transparent 70%),
    radial-gradient(75% 55% at 104% 92%, rgba(233, 229, 221, 0.20), transparent 68%),
    radial-gradient(45% 40% at -8% 6%, rgba(233, 229, 221, 0.13), transparent 70%);
}

.grain {
  position: fixed;
  inset: -50%;
  pointer-events: none;
  opacity: 0.20;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='220' height='220' filter='url(%23n)'/%3E%3C/svg%3E");
}

.poster {
  position: relative;
  z-index: 1;
  min-height: 100svh;
  padding: clamp(1.75rem, 4vw, 3.5rem);
  display: flex;
  flex-direction: column;
}

.mark {
  text-align: center;
  color: var(--paper);
  opacity: 0.9;
}

.mark svg { width: clamp(44px, 5vw, 64px); height: auto; }

.identity {
  margin-top: auto;
  padding-bottom: clamp(2.5rem, 7vh, 6rem);
}

h1 {
  margin: 0;
  font-family: "Anton", "Arial Narrow", Impact, sans-serif;
  font-weight: 400;
  font-size: clamp(3.2rem, 13.5vw, 11rem);
  line-height: 0.95;
  letter-spacing: -0.005em;
  text-transform: uppercase;
}

hr {
  width: 3.5rem;
  margin: clamp(1.5rem, 3vh, 2.5rem) 0 clamp(1.1rem, 2vh, 1.75rem);
  border: 0;
  border-top: 1px solid var(--rule);
}

.role {
  margin: 0;
  font-size: clamp(0.75rem, 1.3vw, 0.95rem);
  letter-spacing: 0.42em;
  text-transform: uppercase;
}

.status {
  margin-top: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 2rem;
  align-items: baseline;
  justify-content: space-between;
}

.status p,
.status a {
  margin: 0;
  font-size: clamp(0.7rem, 1.1vw, 0.8rem);
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--muted);
}

.status a {
  text-decoration: none;
  border-bottom: 1px solid transparent;
  padding-bottom: 0.15em;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.status a:hover,
.status a:focus-visible {
  color: var(--paper);
  border-bottom-color: var(--rule);
}

/* --- Impressum --- */

.legal .page {
  position: relative;
  z-index: 1;
  min-height: 100svh;
  padding: clamp(1.75rem, 4vw, 3.5rem);
  display: flex;
  flex-direction: column;
}

.legal .mark a {
  display: inline-block;
  color: inherit;
}

.doc {
  width: 100%;
  max-width: 46rem;
  margin: clamp(3rem, 9vh, 6rem) auto 0;
}

.doc h1 {
  font-size: clamp(2.5rem, 8vw, 5rem);
  line-height: 0.95;
}

.doc .lede {
  margin: 1.25rem 0 0;
  font-size: clamp(0.7rem, 1.1vw, 0.8rem);
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--muted);
}

.doc section {
  margin-top: clamp(2.25rem, 5vh, 3.25rem);
}

.doc h2 {
  margin: 0 0 0.75rem;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--muted);
}

.doc p,
.doc address {
  margin: 0;
  font-size: 0.95rem;
  font-style: normal;
  line-height: 1.75;
  color: rgba(233, 229, 221, 0.85);
}

.doc a {
  color: var(--paper);
  text-decoration: none;
  border-bottom: 1px solid var(--rule);
}

.doc a:hover,
.doc a:focus-visible {
  border-bottom-color: var(--paper);
}

.doc-footer {
  width: 100%;
  max-width: 46rem;
  margin: clamp(3.5rem, 10vh, 6rem) auto 0;
  padding-top: clamp(1.5rem, 3vh, 2rem);
  border-top: 1px solid rgba(233, 229, 221, 0.12);
}

.doc-footer a {
  font-size: clamp(0.7rem, 1.1vw, 0.8rem);
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
}

.doc-footer a:hover,
.doc-footer a:focus-visible { color: var(--paper); }

@media (max-width: 480px) {
  .role, .status p, .status a { letter-spacing: 0.3em; }
}
