/* milanbourbeck.de
   Konzept: Produktionsblatt. Monochrom, Haarlinien, Mono-Labels,
   ein Akzent: Pylonen-Orange. Keine Pills, keine runden Ecken.
   Dark Mode: warmes Grau mit leichtem Grain, Akzent bleibt. */

@font-face {
  font-family: "Archivo";
  src: url("../assets/fonts/archivo-var-latin.woff2") format("woff2");
  font-weight: 100 900;
  font-stretch: 62% 125%;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Archivo";
  src: url("../assets/fonts/archivo-var-latin-ext.woff2") format("woff2");
  font-weight: 100 900;
  font-stretch: 62% 125%;
  font-display: swap;
  unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: "IBM Plex Mono";
  src: url("../assets/fonts/plexmono-400-latin.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "IBM Plex Mono";
  src: url("../assets/fonts/plexmono-400-latin-ext.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
  unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: "IBM Plex Mono";
  src: url("../assets/fonts/plexmono-500-latin.woff2") format("woff2");
  font-weight: 500;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "IBM Plex Mono";
  src: url("../assets/fonts/plexmono-500-latin-ext.woff2") format("woff2");
  font-weight: 500;
  font-display: swap;
  unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

:root {
  --paper: #FAFAF8;
  --ink: #141414;
  --ink-60: #5C5C58;
  --ink-30: #B4B4AE;
  --hairline: #E3E3DD;
  --accent: #E84E1B;
  --accent-ink: #C23A0F;
  --night: #0E0E0C;
  --paper-night: #F2F0EA;
  --grain: 0;
  --img-filter: grayscale(1) contrast(1.04);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --font-sans: "Archivo", "Helvetica Neue", Arial, sans-serif;
  --font-mono: "IBM Plex Mono", "Consolas", monospace;
}

html[data-theme="dark"] {
  --paper: #1B1B1E;
  --ink: #ECEBE6;
  --ink-60: #A6A59E;
  --ink-30: #6B6B64;
  --hairline: rgba(236, 235, 230, 0.14);
  --accent: #FF5E33;
  --accent-ink: #FF8A5C;
  --paper-night: #F2F0EA;
  --grain: 0.5;
  --img-filter: grayscale(1) contrast(1.02) brightness(0.92);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 5.5rem;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 1.0625rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  transition: background 0.4s var(--ease), color 0.4s var(--ease);
}

/* Grain-Overlay, nur im Dark Mode sichtbar */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 9990;
  pointer-events: none;
  opacity: var(--grain);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.82' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 140px 140px;
  mix-blend-mode: overlay;
  transition: opacity 0.4s var(--ease);
}

img { max-width: 100%; height: auto; display: block; }
figure { margin: 0; }
h1, h2, h3, p, dl, ol { margin: 0; }
ol { list-style: none; padding: 0; }
a { color: inherit; }

::selection { background: var(--accent); color: #fff; }

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.container {
  width: min(1140px, calc(100% - 2.5rem));
  margin-inline: auto;
}

.mono {
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  letter-spacing: 0.02em;
}

/* ---------- Header ---------- */

.site-head {
  position: sticky;
  top: 0;
  z-index: 20;
  background: color-mix(in srgb, var(--paper) 88%, transparent);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--hairline);
}

.head-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding-block: 0.95rem;
}

.wordmark {
  font-family: var(--font-sans);
  font-weight: 640;
  font-stretch: 115%;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-decoration: none;
  white-space: nowrap;
}

.site-nav { display: flex; gap: 1.6rem; }

@media (max-width: 819px) {
  .site-nav { display: none; }
}

.site-nav a {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ink-60);
  padding: 0.7rem 0.2rem;
  margin: -0.7rem -0.2rem;
  transition: color 0.2s var(--ease);
}

.site-nav a:hover { color: var(--accent-ink); }

.head-tools { display: flex; align-items: center; gap: 1rem; }

.lang-toggle {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
}

.lang-toggle button {
  appearance: none;
  background: none;
  border: 0;
  padding: 0.85rem 0.45rem;
  margin: -0.6rem -0.2rem;
  font: inherit;
  letter-spacing: inherit;
  color: var(--ink-60);
  cursor: pointer;
  transition: color 0.2s var(--ease);
}

.lang-toggle button:hover { color: var(--accent-ink); }
.lang-toggle button[aria-pressed="true"] {
  color: var(--ink);
  text-decoration: underline;
  text-decoration-color: var(--accent);
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}
.lang-sep { color: var(--ink-30); }

.theme-toggle {
  appearance: none;
  background: none;
  border: 1px solid var(--hairline);
  color: var(--ink-60);
  width: 2.2rem;
  height: 2.2rem;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: color 0.2s var(--ease), border-color 0.2s var(--ease);
}

.theme-toggle:hover { color: var(--accent-ink); border-color: var(--accent); }
.theme-toggle svg { display: block; transition: transform 0.5s var(--ease); }
html[data-theme="dark"] .theme-toggle svg { transform: rotate(180deg); }

/* ---------- Typografie ---------- */

.display-xl {
  font-weight: 640;
  font-stretch: 118%;
  font-size: clamp(2.8rem, 8.6vw, 6.6rem);
  line-height: 0.92;
  letter-spacing: -0.015em;
  text-transform: uppercase;
}

.display-l {
  font-weight: 600;
  font-stretch: 115%;
  font-size: clamp(1.9rem, 4.5vw, 3.4rem);
  line-height: 1.05;
  letter-spacing: -0.01em;
}

.kicker {
  color: var(--accent-ink);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 500;
  margin-bottom: clamp(1.2rem, 3vw, 2rem);
}

.lede {
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  line-height: 1.55;
  max-width: 34em;
}

/* ---------- Hero ---------- */

.hero { padding-block: clamp(3rem, 7vh, 5.5rem) 0; }

.hero-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; }

@media (min-width: 820px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1fr) clamp(270px, 30%, 360px);
    gap: clamp(2rem, 4vw, 4rem);
    align-items: stretch;
  }
}

.hero-lead { display: flex; flex-direction: column; justify-content: center; min-width: 0; }

.display-xl .line { display: block; }
.display-xl .line-indent { margin-left: clamp(1rem, 4vw, 3rem); }

.hero-sub {
  margin-top: clamp(1.4rem, 2.5vw, 2rem);
  font-size: clamp(1.05rem, 1.7vw, 1.3rem);
  color: var(--ink-60);
  max-width: 30em;
}

.hero-cta {
  margin-top: clamp(1.6rem, 3vw, 2.4rem);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.25rem;
}

.btn {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid var(--ink);
  color: var(--ink);
  padding: 0.95rem 1.5rem;
  transition: background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease);
}

.btn:hover { background: var(--ink); color: var(--paper); }

.btn-solid {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  font-weight: 500;
  letter-spacing: 0.04em;
}

.btn-solid:hover { background: var(--accent-ink); border-color: var(--accent-ink); color: #fff; }

.link-quiet {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ink-60);
  border-bottom: 1px solid var(--hairline);
  padding-bottom: 0.2rem;
  transition: color 0.2s var(--ease), border-color 0.2s var(--ease);
}

.link-quiet:hover { color: var(--ink); border-color: var(--accent); }

.hero-portrait { display: flex; flex-direction: column; }

.hero-portrait img {
  width: 100%;
  flex: 1 1 auto;
  min-height: clamp(340px, 46vh, 500px);
  object-fit: cover;
  border: 1px solid var(--hairline);
  filter: var(--img-filter);
  transition: filter 0.6s var(--ease);
}

.hero-portrait:hover img { filter: none; }

.hero-portrait figcaption { margin-top: 0.7rem; color: var(--ink-60); }

@media (max-width: 819px) {
  .hero-portrait { max-width: 320px; }
  .hero-portrait img { min-height: 0; flex: 0 0 auto; height: auto; object-fit: contain; }
}

.facts { margin-top: clamp(3rem, 7vw, 5rem); position: relative; }

.facts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  padding-top: 1.4rem;
}

@media (max-width: 640px) {
  .facts-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 0.5rem; }
}

.fact { display: flex; flex-direction: column; gap: 0.3rem; }

.fact-value {
  font-weight: 620;
  font-stretch: 112%;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.fact-label { color: var(--ink-60); text-transform: uppercase; letter-spacing: 0.1em; font-size: 0.72rem; }

/* ---------- Sektionen ---------- */

.section { padding-top: clamp(4.5rem, 9vw, 7.5rem); }

.section-head {
  display: flex;
  align-items: baseline;
  gap: 1.1rem;
  padding-top: 1.1rem;
  margin-bottom: clamp(2.2rem, 5vw, 3.6rem);
  position: relative;
}

.rule {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--hairline);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1s var(--ease) 0.1s;
}

.is-in .rule, .rule.is-in { transform: scaleX(1); }
.facts .rule { top: 0; }

.sec-no { color: var(--accent-ink); font-weight: 500; }

.sec-label {
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 500;
}

/* ---------- Credits ---------- */

.credits { border-top: 1px solid var(--hairline); }

.credit-row {
  display: grid;
  grid-template-columns: 4rem 1fr 11rem 14rem;
  gap: 1.25rem;
  align-items: baseline;
  padding: 1.05rem 0;
  border-bottom: 1px solid var(--hairline);
  transition: transform 0.3s var(--ease);
}

.credit-head {
  color: var(--ink-60);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.68rem;
  padding: 0.7rem 0;
}

.credit-row:not(.credit-head):hover { transform: translateX(6px); }

.c-year { color: var(--ink-60); }

.c-title {
  font-weight: 540;
  font-stretch: 108%;
  font-size: 1.12rem;
  line-height: 1.3;
}

.c-format { color: var(--ink-60); font-size: 0.92rem; }
.c-role { color: var(--ink-60); transition: color 0.25s var(--ease); }
.credit-row:not(.credit-head):hover .c-role { color: var(--accent-ink); }

@media (max-width: 760px) {
  .credit-head { display: none; }
  .credit-row {
    grid-template-columns: 1fr auto;
    grid-template-areas:
      "year format"
      "title title"
      "role role";
    gap: 0.15rem 1rem;
    padding: 1rem 0;
    align-items: baseline;
  }
  .c-year { grid-area: year; justify-self: start; }
  .c-format { grid-area: format; justify-self: end; text-align: right; font-size: 0.78rem; font-family: var(--font-mono); }
  .c-title { grid-area: title; font-size: 1.1rem; margin-top: 0.2rem; }
  .c-role { grid-area: role; font-size: 0.75rem; }
  .credit-row:not(.credit-head):hover { transform: none; }
}

.credits-note {
  margin-top: 1.6rem;
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  color: var(--ink-60);
}

.credits-note a {
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--accent);
  transition: color 0.2s var(--ease);
}

.credits-note a:hover { color: var(--accent-ink); }

/* ---------- Profil ---------- */

.profil-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

@media (min-width: 860px) {
  .profil-grid { grid-template-columns: 1.4fr 1fr; gap: 5rem; align-items: start; }
}

.datasheet { border-top: 1px solid var(--hairline); }

.ds-row {
  display: grid;
  grid-template-columns: 9rem 1fr;
  gap: 1rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--hairline);
}

.ds-row dt { color: var(--ink-60); text-transform: uppercase; letter-spacing: 0.1em; font-size: 0.72rem; }
.ds-row dd { margin: 0; color: var(--ink); }

.vita-btn { margin-top: 1.8rem; }

/* ---------- Full-Bleed ---------- */

.bleed {
  position: relative;
  margin-top: clamp(4.5rem, 9vw, 7.5rem);
  height: min(82vh, 700px);
  overflow: hidden;
  background: var(--night);
}

.bleed img {
  position: absolute;
  inset: -8% 0;
  width: 100%;
  height: 116%;
  object-fit: cover;
  will-change: transform;
}

.bleed figcaption {
  position: absolute;
  inset: auto 0 0 0;
  padding: clamp(1.5rem, 4vw, 3rem);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  background: linear-gradient(to top, rgba(10, 10, 8, 0.72), rgba(10, 10, 8, 0));
}

.bleed-quote {
  color: var(--paper-night);
  font-weight: 540;
  font-stretch: 112%;
  font-size: clamp(1.35rem, 3.2vw, 2.6rem);
  line-height: 1.15;
  max-width: 20em;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.55), 0 1px 3px rgba(0, 0, 0, 0.5);
}

.bleed-meta {
  color: var(--paper-night);
  opacity: 0.85;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
  white-space: nowrap;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.5);
}

@media (max-width: 640px) {
  .bleed { height: 70vh; }
  .bleed figcaption { flex-direction: column; align-items: flex-start; gap: 0.8rem; }
}

/* ---------- Leistungen ---------- */

.services {
  border-top: 1px solid var(--hairline);
  display: grid;
  grid-template-columns: 1fr;
}

@media (min-width: 760px) {
  .services { grid-template-columns: 1fr 1fr; column-gap: 3.5rem; }
}

.service {
  display: grid;
  grid-template-columns: 2.5rem 1fr;
  gap: 1.1rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--hairline);
}

.svc-icon {
  width: 24px;
  height: 24px;
  color: var(--accent-ink);
  margin-top: 0.15rem;
}

.service h3 {
  font-weight: 560;
  font-stretch: 110%;
  font-size: clamp(1.2rem, 2vw, 1.4rem);
  line-height: 1.25;
}

.service p { margin-top: 0.4rem; color: var(--ink-60); max-width: 32em; }

/* ---------- fifty.rent Band ---------- */

.fifty-band {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.8rem;
  align-items: end;
}

@media (min-width: 820px) {
  .fifty-band { grid-template-columns: 1fr auto; gap: 3.5rem; align-items: center; }
}

.fifty-text p { margin-top: 1rem; color: var(--ink-60); max-width: 34em; }
.fifty-cta { justify-self: start; white-space: nowrap; }

/* ---------- Split (Events) ---------- */

.split-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

@media (min-width: 860px) {
  .split-grid { grid-template-columns: 1.1fr 1fr; gap: 4.5rem; align-items: center; }
  .split-grid.split-rev .split-text { order: 2; }
}

.split-text p { color: var(--ink-60); max-width: 32em; }
.split-text h3 + p { margin-top: 1.2rem; }
.split-text .btn { margin-top: 1.8rem; }

.split-img img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
  width: 100%;
  border: 1px solid var(--hairline);
  filter: var(--img-filter);
  transition: filter 0.6s var(--ease);
}

.split-img-wide img { aspect-ratio: 16 / 10; }
.split-img:hover img { filter: none; }
.split-img figcaption { margin-top: 0.7rem; color: var(--ink-60); }

/* ---------- Kontakt ---------- */

#kontakt { padding-bottom: clamp(4.5rem, 9vw, 7.5rem); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.8rem;
}

@media (min-width: 860px) {
  .contact-grid { grid-template-columns: 1.3fr 1fr; gap: 4.5rem; align-items: center; }
}

.contact-tel {
  display: inline-block;
  margin-top: clamp(1.2rem, 2.5vw, 1.8rem);
  font-weight: 640;
  font-stretch: 112%;
  font-size: clamp(2rem, 6vw, 4rem);
  line-height: 1.02;
  letter-spacing: -0.01em;
  text-decoration: none;
  color: var(--accent-ink);
  transition: color 0.2s var(--ease);
  overflow-wrap: anywhere;
}

.contact-tel:hover { color: var(--accent); }

.contact-mail {
  display: inline-block;
  margin-top: 0.9rem;
  font-family: var(--font-mono);
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  letter-spacing: 0.02em;
  text-decoration: none;
  color: var(--ink);
  border-bottom: 1px solid var(--ink);
  padding-bottom: 0.15rem;
  transition: color 0.25s var(--ease), border-color 0.25s var(--ease);
  overflow-wrap: anywhere;
}

.contact-mail:hover { color: var(--accent-ink); border-color: var(--accent); }

.contact-meta {
  margin-top: clamp(1.5rem, 3vw, 2.2rem);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  color: var(--ink-60);
  max-width: 30em;
}

.contact-img img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
  width: 100%;
  border: 1px solid var(--hairline);
  filter: var(--img-filter);
  transition: filter 0.6s var(--ease);
}

.contact-img:hover img { filter: none; }
.contact-img figcaption { margin-top: 0.7rem; color: var(--ink-60); }

/* ---------- Footer ---------- */

.site-foot { border-top: 1px solid var(--hairline); margin-top: clamp(3rem, 6vw, 5rem); }

.foot-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 1.6rem;
  color: var(--ink-60);
  font-size: 0.75rem;
}

.foot-nav { display: flex; flex-wrap: wrap; gap: 1.4rem; }
.foot-nav a { text-decoration: none; transition: color 0.2s var(--ease); }
.foot-nav a:hover { color: var(--accent-ink); }

/* ---------- Animationen ---------- */

.js [data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
  transition-delay: var(--d, 0s);
}

.js [data-reveal].is-in { opacity: 1; transform: none; }

.js .credit-row[data-reveal] {
  transform: translateY(16px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
  transition-delay: var(--d, 0s);
}

.js [data-stagger] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
  transition-delay: var(--d, 0s);
}

.is-loaded [data-stagger] { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .js [data-reveal], .js [data-stagger] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .rule { transform: scaleX(1); transition: none; }
  .bleed img { inset: 0; height: 100%; }
  .credit-row:not(.credit-head):hover { transform: none; }
  body, .theme-toggle svg { transition: none; }
}

/* ---------- Unterseiten (Impressum, Datenschutz) ---------- */

.legal-nav a {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ink-60);
  padding: 0.7rem 0.2rem;
  margin: -0.7rem -0.2rem;
  transition: color 0.2s var(--ease);
}

.legal-nav a:hover { color: var(--accent-ink); }

.legal {
  padding-block: clamp(3rem, 7vw, 5rem);
  max-width: 44rem;
}

.legal h1 {
  font-weight: 620;
  font-stretch: 115%;
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 1.05;
  margin-bottom: 2.5rem;
}

.legal h2 {
  font-weight: 560;
  font-size: 1.15rem;
  margin: 2.2rem 0 0.6rem;
}

.legal p { margin: 0 0 0.9rem; color: var(--ink-60); }
.legal p strong { color: var(--ink); font-weight: 560; }
.legal a { color: var(--ink); }

/* ---------- CMS-editierbare Texte: Zeilenumbrüche aus dem Admin übernehmen ---------- */

.hero-sub,
.lede,
.service h3,
.service p,
.fifty-text p,
.split-text p,
.bleed-quote,
.contact .display-l,
.contact-meta span {
  white-space: pre-line;
}

/* ---------- Mobile-Feinschliff (Desktop unverändert) ---------- */

@media (max-width: 640px) {
  .hero { padding-top: 1.75rem; }

  .hero-cta { flex-direction: column; align-items: stretch; gap: 0.7rem; }
  .hero-cta .btn { width: 100%; text-align: center; }

  .fact { gap: 0.35rem; }
  .fact-value { font-size: 0.8rem; white-space: nowrap; }
  .fact-label { font-size: 0.55rem; letter-spacing: 0.02em; }

  .section-head { margin-bottom: 1.4rem; }
  .services .service:first-child { padding-top: 0.75rem; }

  .contact { text-align: center; }
  .contact-meta { align-items: center; max-width: none; }

  .foot-row { flex-direction: column; align-items: flex-start; gap: 1rem; }
}
