@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/Montserrat-Regular.ttf') format('truetype');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/Montserrat-Black.ttf') format('truetype');
  font-weight: 900; font-style: normal; font-display: swap;
}

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

:root {
  --black: #0a0a0a;
  --white: #f5f5f0;
  --grey: #888;
}

html { font-size: 16px; scroll-behavior: smooth; }
body {
  background: var(--black);
  color: var(--white);
  font-family: 'Montserrat', Helvetica, Arial, sans-serif;
  font-weight: 400;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }

/* ─── CONTENT ─── */
.page-wrap {
  max-width: 720px;
  margin: 0 auto;
  padding: 10rem 3rem 8rem;
}
.page-title {
  font-weight: 900;
  font-size: clamp(2.5rem, 5vw, 4rem);
  letter-spacing: -.02em;
  margin-bottom: 4rem;
  text-transform: uppercase;
}
.section {
  margin-bottom: 3rem;
}
.section-heading {
  font-size: .7rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .2em;
  opacity: .4;
  margin-bottom: 1rem;
}
.section p,
.section address {
  font-size: .9rem;
  line-height: 1.8;
  opacity: .7;
  font-style: normal;
}
.section a {
  opacity: 1;
  border-bottom: 1px solid rgba(255,255,255,.2);
  transition: border-color .3s;
}
.section a:hover { border-color: var(--white); }
.section ul {
  list-style: disc;
  padding-left: 1.3rem;
  margin: .4rem 0 0;
}
.section li {
  font-size: .9rem;
  line-height: 1.8;
  opacity: .7;
  margin-bottom: .3rem;
}
.section p + p { margin-top: 1rem; }
.section h3 {
  font-size: .95rem;
  font-weight: 700;
  margin: 1.6rem 0 .4rem;
}
.divider {
  border: none;
  border-top: 1px solid rgba(255,255,255,.08);
  margin: 3rem 0;
}

/* Datenschutz placeholder */
.placeholder-badge {
  display: inline-block;
  padding: .4rem 1rem;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 50px;
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: .15em;
  opacity: .4;
  margin-bottom: 4rem;
}
.placeholder-box {
  border: 1px dashed rgba(255,255,255,.12);
  border-radius: 12px;
  padding: 4rem 3rem;
  text-align: center;
}
.placeholder-box p {
  font-size: .9rem;
  opacity: .35;
  line-height: 1.8;
  max-width: 36rem;
  margin: 0 auto;
}
.placeholder-box p + p {
  margin-top: 1rem;
}

