/* ============================================================
   Richter Creative Production GmbH — Website
   Modernes, weiches Schwarz-Weiß-Design.
   Self-hosted Fraunces + DM Sans + JetBrains Mono (DSGVO-konform).
   ============================================================ */

/* ---------- Fonts ---------- */
@font-face { font-family: "DM Sans"; src: url("./assets/fonts/dm-sans-v17-latin-300.woff2") format("woff2"); font-weight: 300; font-style: normal; font-display: swap; }
@font-face { font-family: "DM Sans"; src: url("./assets/fonts/dm-sans-v17-latin-regular.woff2") format("woff2"); font-weight: 400; font-style: normal; font-display: swap; }
@font-face { font-family: "DM Sans"; src: url("./assets/fonts/dm-sans-v17-latin-500.woff2") format("woff2"); font-weight: 500; font-style: normal; font-display: swap; }
@font-face { font-family: "DM Sans"; src: url("./assets/fonts/dm-sans-v17-latin-600.woff2") format("woff2"); font-weight: 600; font-style: normal; font-display: swap; }
@font-face { font-family: "DM Sans"; src: url("./assets/fonts/dm-sans-v17-latin-700.woff2") format("woff2"); font-weight: 700; font-style: normal; font-display: swap; }

@font-face { font-family: "Fraunces"; src: url("./assets/fonts/fraunces-v38-latin-regular.woff2") format("woff2"); font-weight: 400; font-style: normal; font-display: swap; }
@font-face { font-family: "Fraunces"; src: url("./assets/fonts/fraunces-v38-latin-italic.woff2") format("woff2"); font-weight: 400; font-style: italic; font-display: swap; }
@font-face { font-family: "Fraunces"; src: url("./assets/fonts/fraunces-v38-latin-500.woff2") format("woff2"); font-weight: 500; font-style: normal; font-display: swap; }
@font-face { font-family: "Fraunces"; src: url("./assets/fonts/fraunces-v38-latin-600.woff2") format("woff2"); font-weight: 600; font-style: normal; font-display: swap; }

@font-face { font-family: "JetBrains Mono"; src: url("./assets/fonts/jetbrains-mono-v24-latin-regular.woff2") format("woff2"); font-weight: 400; font-style: normal; font-display: swap; }
@font-face { font-family: "JetBrains Mono"; src: url("./assets/fonts/jetbrains-mono-v24-latin-500.woff2") format("woff2"); font-weight: 500; font-style: normal; font-display: swap; }

/* ---------- Tokens — Light (default) ---------- */
:root {
  --bg:         #FFFFFF;
  --bg-warm:    #F4F4F4;
  --surface:    #FFFFFF;
  --fg:         #0A0A0A;
  --fg-soft:    #1A1A1A;
  --muted:      #5E5E5E;
  --dim:        #8E8E8E;
  --line:       rgba(10, 10, 10, 0.10);
  --line-soft:  rgba(10, 10, 10, 0.05);
  --invert-bg:  #0E0E0E;
  --invert-fg:  #FFFFFF;
  --invert-muted: #B5B5B5;

  /* Feature-Dark — bleibt in BEIDEN Themes dunkel (Spotlight, Footer) */
  --feature-bg:    #0E0E0E;
  --feature-fg:    #FFFFFF;
  --feature-muted: #B5B5B5;
  --feature-dim:   #6B6B6B;
  --feature-line:  rgba(255, 255, 255, 0.08);

  /* PlayArc brand accents — nur in der PlayArc-Spotlight-Sektion */
  --pa-accent:      #FF5722;
  --pa-accent-warm: #FF7849;
  --pa-accent-soft: rgba(255, 87, 34, 0.14);

  /* Typografie */
  --font-sans:  "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-serif: "Fraunces", Georgia, "Times New Roman", serif;
  --font-mono:  "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;

  /* Form */
  --r-sm:    12px;
  --r-md:    20px;
  --r-lg:    32px;
  --r-xl:    48px;
  --r-pill:  999px;

  --shadow-sm: 0 2px 12px rgba(10, 10, 10, 0.05);
  --shadow:    0 12px 40px rgba(10, 10, 10, 0.08);
  --shadow-lg: 0 24px 80px rgba(10, 10, 10, 0.14);

  --ease:      cubic-bezier(0.22, 1, 0.36, 1);
}

/* ============================================================
   DARK MODE — automatisch über System-/Browser-Einstellung
   ============================================================ */
@media (prefers-color-scheme: dark) {
  :root {
    --bg:         #0B0B0D;
    --bg-warm:    #131316;
    --surface:    #18181C;
    --fg:         #F5F5F7;
    --fg-soft:    #E5E5E8;
    --muted:      #9A9AA0;
    --dim:        #6A6A70;
    --line:       rgba(255, 255, 255, 0.08);
    --line-soft:  rgba(255, 255, 255, 0.04);
    --invert-bg:  #F5F5F7;
    --invert-fg:  #0B0B0D;
    --invert-muted: #6A6A70;
    --shadow-sm:  0 2px 12px rgba(0, 0, 0, 0.30);
    --shadow:     0 12px 40px rgba(0, 0, 0, 0.45);
    --shadow-lg:  0 24px 80px rgba(0, 0, 0, 0.60);
  }
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--fg);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

a { color: var(--fg); text-decoration: none; }
a:hover { color: var(--muted); }

code {
  font-family: var(--font-mono);
  font-size: 0.88em;
  background: var(--bg-warm);
  padding: 2px 8px;
  border-radius: 6px;
}

::selection { background: var(--fg); color: var(--invert-fg); }

/* ---------- Layout ---------- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 32px; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in srgb, var(--bg) 82%, transparent);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid var(--line-soft);
}
.nav { display: flex; align-items: center; justify-content: space-between; padding: 10px 0; min-height: 68px; }
.brand { display: inline-flex; align-items: center; text-decoration: none; }
.brand img { height: 56px; width: auto; display: block; }
/* Dark-Mode-Logo-Swap via zwei <img>-Tags (bulletproof). Default: schwarzes Icon
   sichtbar. Im Dark Mode: weißes Icon sichtbar, schwarzes versteckt. */
.brand .logo-dark { display: none; }
@media (prefers-color-scheme: dark) {
  .brand .logo-light { display: none; }
  .brand .logo-dark { display: block; }
}
.nav-links {
  display: flex; gap: 8px; align-items: center;
  list-style: none; margin: 0; padding: 0;
}
.nav-links a {
  color: var(--fg);
  font-weight: 500;
  font-size: 14px;
  padding: 8px 14px;
  border-radius: var(--r-pill);
  transition: background 200ms var(--ease), color 200ms var(--ease);
}
.nav-links a:hover { background: var(--line); color: var(--fg); }

/* Nav-CTA: .nav-links a setzt sonst color:var(--fg) und überschreibt
   .btn-primary — Spezifität gleichziehen, damit der Button-Text sichtbar bleibt. */
.nav-links a.btn-primary,
.nav-links a.btn-primary:hover {
  color: var(--invert-fg);
  background: var(--fg);
}
.nav-links a.btn-primary:hover {
  background: var(--fg-soft);
}
.nav-cta { padding: 10px 18px !important; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  border: 1px solid transparent;
  border-radius: var(--r-pill);
  padding: 13px 24px;
  font-family: inherit; font-size: 14px; font-weight: 500;
  cursor: pointer;
  transition: background 220ms var(--ease), color 220ms var(--ease),
              border-color 220ms var(--ease), transform 220ms var(--ease),
              box-shadow 220ms var(--ease);
  text-decoration: none;
  white-space: nowrap;
}
.btn:active { transform: scale(0.97); }
.btn-primary { background: var(--fg); color: var(--invert-fg); }
.btn-primary:hover {
  background: var(--fg-soft);
  color: var(--invert-fg);
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}
.btn-ghost {
  background: transparent;
  color: var(--fg);
  border-color: var(--line);
}
.btn-ghost:hover {
  background: var(--surface);
  border-color: var(--fg);
  color: var(--fg);
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}
.btn-lg { padding: 16px 30px; font-size: 15px; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 140px 0 120px;
  background:
    radial-gradient(1100px 600px at 82% -6%, rgba(10,10,10,0.07), transparent 60%),
    radial-gradient(900px 500px at -6% 108%, rgba(10,10,10,0.05), transparent 60%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-warm) 100%);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: -12%; right: -10%;
  width: 580px; height: 580px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(10,10,10,0.10), transparent 70%);
  filter: blur(50px);
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line), transparent);
  pointer-events: none;
}
@media (prefers-color-scheme: dark) {
  .hero {
    background:
      radial-gradient(1200px 600px at 80% -10%, rgba(255,255,255,0.05), transparent 60%),
      radial-gradient(800px 400px at -10% 110%, rgba(255,255,255,0.04), transparent 60%),
      linear-gradient(180deg, var(--bg) 0%, var(--bg-warm) 100%);
  }
  .hero::before {
    background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.07), transparent 70%);
  }
}
.hero .container { position: relative; z-index: 1; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-mono);
  padding: 9px 18px;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--fg-soft);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  margin-bottom: 36px;
  border-radius: var(--r-pill);
  box-shadow: var(--shadow-sm);
}
.hero-eyebrow::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--fg);
}
.hero h1 {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(48px, 8vw, 104px);
  line-height: 0.98;
  letter-spacing: -0.04em;
  margin: 0 0 32px;
  max-width: 980px;
}
.hero h1 .accent { font-style: italic; font-weight: 400; }
.hero-sub {
  max-width: 640px;
  margin: 0 0 44px;
  font-size: clamp(17px, 1.4vw, 20px);
  color: var(--muted);
  line-height: 1.6;
  font-weight: 400;
}
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }

/* ---------- Sections ---------- */
section { padding: 120px 0; position: relative; }
section.alt { background: var(--bg-warm); }

.section-head { max-width: 780px; margin: 0 0 72px; }
.section-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--muted);
  font-weight: 500;
  margin-bottom: 20px;
  display: inline-flex; align-items: center; gap: 10px;
}
.section-eyebrow::before {
  content: "";
  width: 24px; height: 1px;
  background: var(--fg);
}
.section-eyebrow.inverse { color: var(--invert-muted); }
.section-eyebrow.inverse::before { background: var(--invert-fg); }
.section-head h2 {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(36px, 5vw, 60px);
  letter-spacing: -0.03em;
  margin: 0 0 22px;
  line-height: 1.05;
}
.section-head p {
  font-size: clamp(16px, 1.3vw, 19px);
  color: var(--muted);
  margin: 0;
  max-width: 600px;
  line-height: 1.55;
}

/* ---------- Services ---------- */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.service {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 40px 36px;
  transition: transform 360ms var(--ease), box-shadow 360ms var(--ease),
              background 360ms var(--ease), color 360ms var(--ease),
              border-color 360ms var(--ease);
  display: flex; flex-direction: column;
}
.service:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: transparent;
  background: var(--invert-bg);
  color: var(--invert-fg);
}
.service:hover .service-num,
.service:hover p,
.service:hover .service-link { color: var(--invert-fg); }
.service:hover .service-num { opacity: 0.55; }
.service:hover .service-link::after { background: var(--invert-fg); }

.service-num {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 2px;
  color: var(--dim);
  margin-bottom: 28px;
  transition: color 360ms var(--ease), opacity 360ms var(--ease);
}
.service h3 {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 28px;
  margin: 0 0 16px;
  letter-spacing: -0.02em;
  line-height: 1.15;
}
.service p {
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
  flex: 1;
  transition: color 360ms var(--ease);
}
.service-link {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--fg);
  position: relative;
  padding-bottom: 4px;
  align-self: flex-start;
  transition: color 360ms var(--ease);
}
.service-link::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  height: 1px; width: 100%;
  background: var(--fg);
  transition: background 360ms var(--ease);
}

.services-secondary {
  margin-top: 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.services-secondary-item {
  padding: 32px 36px;
  border-radius: var(--r-lg);
  background: var(--bg-warm);
  border: 1px solid var(--line-soft);
  transition: transform 320ms var(--ease), box-shadow 320ms var(--ease);
}
.services-secondary-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}
.services-secondary-item h4 {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 22px;
  margin: 0 0 10px;
  letter-spacing: -0.01em;
}
.services-secondary-item p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}
.services-note {
  grid-column: 1 / -1;
  margin: 12px 0 0;
  padding: 18px 28px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--muted);
  background: transparent;
  text-align: center;
}

/* ---------- Spotlight (PlayArc, always dark + orange accent) ---------- */
.spotlight {
  background: var(--feature-bg);
  color: var(--feature-fg);
  padding: 140px 0;
  position: relative;
  overflow: hidden;
}
.spotlight::before {
  content: "";
  position: absolute;
  top: -20%; right: -10%;
  width: 700px; height: 700px;
  background: radial-gradient(circle, var(--pa-accent-soft), transparent 65%);
  filter: blur(20px);
  pointer-events: none;
}
.spotlight::after {
  content: "";
  position: absolute;
  bottom: -30%; left: -10%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(255, 120, 73, 0.08), transparent 65%);
  filter: blur(30px);
  pointer-events: none;
}
.spotlight .container { position: relative; z-index: 1; }
.spotlight .section-eyebrow.inverse { color: var(--pa-accent-warm); }
.spotlight .section-eyebrow.inverse::before { background: var(--pa-accent); }
.spotlight h2 {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(34px, 4.5vw, 52px);
  letter-spacing: -0.03em;
  line-height: 1.08;
  margin: 18px 0 28px;
  color: var(--feature-fg);
}
.playarc-brand {
  display: inline-flex;
  align-items: baseline;
  font-family: var(--font-serif);
  font-weight: 500;
  letter-spacing: -0.03em;
}
.playarc-brand .playarc-accent {
  color: var(--pa-accent);
  font-style: italic;
}
.spotlight-h2-sub { color: var(--invert-muted); font-weight: 400; }
.spotlight-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 80px;
  align-items: center;
}
.spotlight-text {
  font-size: 18px;
  line-height: 1.7;
  color: var(--feature-muted);
  margin: 0 0 36px;
  max-width: 560px;
}
.btn-playarc {
  background: var(--pa-accent);
  color: #FFFFFF;
  border-color: var(--pa-accent);
}
.btn-playarc:hover {
  background: var(--pa-accent-warm);
  border-color: var(--pa-accent-warm);
  color: #FFFFFF;
  transform: translateY(-1px);
  box-shadow: 0 12px 32px rgba(255, 87, 34, 0.35);
}
.spotlight-aside {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--r-lg);
  padding: 32px 36px;
  backdrop-filter: blur(20px);
}
.spotlight-list { list-style: none; padding: 0; margin: 0; }
.spotlight-list li {
  padding: 16px 0;
  border-bottom: 1px solid var(--feature-line);
  font-size: 15px;
  color: var(--feature-fg);
  display: flex; align-items: flex-start; gap: 12px;
}
.spotlight-list li::before {
  content: "→";
  color: var(--pa-accent);
  flex-shrink: 0;
  font-weight: 600;
}
.spotlight-list li:last-child { border-bottom: 0; }
.spotlight-list code { background: rgba(255,255,255,0.08); color: var(--feature-fg); }

/* ---------- About ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 80px;
  align-items: start;
}
.about-text p {
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.7;
  color: var(--fg-soft);
  margin: 0 0 20px;
  font-weight: 400;
}
.about-text p:last-child { margin-bottom: 0; }
.about-text strong { font-weight: 500; }
.about-stats {
  background: var(--bg-warm);
  border-radius: var(--r-lg);
  padding: 8px 32px;
}
.stat {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}
.stat:last-child { border-bottom: 0; }
.stat-num {
  font-family: var(--font-serif);
  font-size: 56px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.04em;
}
.stat-label {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--muted);
}

/* ---------- Partners ---------- */
.partner-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.partner-card {
  border-radius: var(--r-md);
  padding: 28px 26px;
  background: var(--bg);
  border: 1px solid var(--line);
  min-height: 210px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 280ms var(--ease), box-shadow 280ms var(--ease), border-color 280ms var(--ease);
}
.partner-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: transparent;
}
.partner-card h4 {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 22px;
  margin: 0 0 10px;
  letter-spacing: -0.01em;
}
.partner-card p {
  margin: 0;
  font-size: 14px;
  color: var(--muted);
  flex: 1;
  line-height: 1.55;
}
.partner-card a {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-top: 18px;
  color: var(--fg);
  display: inline-flex; align-items: center; gap: 6px;
}
.partner-card a:hover { color: var(--muted); }
.partner-card.placeholder {
  background: var(--bg-warm);
  border-style: dashed;
  border-color: var(--line);
}
.partner-card.placeholder:hover {
  transform: none;
  box-shadow: none;
  border-color: var(--line);
}
.partner-card.placeholder h4 { color: var(--dim); font-style: italic; }
.partner-card.placeholder p { color: var(--dim); }
.partners-note {
  margin: 40px auto 0;
  font-size: 14px;
  color: var(--muted);
  text-align: center;
}
.partners-note a {
  color: var(--fg);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

/* ---------- Contact ---------- */
.contact-section {
  background:
    radial-gradient(900px 500px at 50% 0%, rgba(10,10,10,0.08), transparent 60%),
    linear-gradient(180deg, var(--bg-warm) 0%, var(--bg) 100%);
  padding: 140px 0;
}
@media (prefers-color-scheme: dark) {
  .contact-section {
    background:
      radial-gradient(900px 500px at 50% 0%, rgba(255,255,255,0.04), transparent 60%),
      linear-gradient(180deg, var(--bg-warm) 0%, var(--bg) 100%);
  }
}
.contact-hero {
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}
.contact-hero .section-eyebrow {
  justify-content: center;
}
.contact-hero .section-eyebrow::before {
  display: none;
}
.contact-headline {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(40px, 6vw, 72px);
  letter-spacing: -0.035em;
  line-height: 1.02;
  margin: 16px 0 56px;
}
.contact-headline-soft {
  color: var(--muted);
  font-style: italic;
  font-weight: 400;
}
.contact-mail {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding: 22px 36px 22px 40px;
  background: var(--fg);
  color: var(--invert-fg);
  border-radius: var(--r-pill);
  text-decoration: none;
  font-family: var(--font-sans);
  font-size: clamp(18px, 2.2vw, 26px);
  font-weight: 500;
  letter-spacing: -0.01em;
  transition: transform 320ms var(--ease), box-shadow 320ms var(--ease), background 320ms var(--ease);
  box-shadow: 0 14px 40px rgba(17, 17, 17, 0.18);
  margin-bottom: 64px;
}
.contact-mail:hover {
  transform: translateY(-3px);
  background: var(--fg-soft);
  color: var(--invert-fg);
  box-shadow: 0 24px 60px rgba(17, 17, 17, 0.28);
}
.contact-mail-arrow {
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  font-size: 18px;
  transition: transform 320ms var(--ease), background 320ms var(--ease);
}
.contact-mail:hover .contact-mail-arrow {
  transform: translateX(4px);
  background: rgba(255, 255, 255, 0.22);
}
.contact-meta {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  max-width: 760px;
  margin: 0 auto;
}
.contact-meta-item {
  flex: 1 1 200px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 8px 28px;
  text-align: center;
}
.contact-meta-label {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  color: var(--muted);
}
.contact-meta-value {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: -0.01em;
  color: var(--fg);
}
.contact-meta-link { text-decoration: none; transition: color 200ms var(--ease); }
.contact-meta-link:hover { color: var(--muted); }
.contact-meta-sep {
  width: 1px;
  background: var(--line);
  margin: 8px 0;
}
@media (max-width: 720px) {
  .contact-section { padding: 96px 0; }
  .contact-mail { padding: 18px 24px 18px 28px; gap: 14px; margin-bottom: 48px; }
  .contact-mail-arrow { width: 32px; height: 32px; font-size: 16px; }
  .contact-meta { flex-direction: column; gap: 24px; }
  .contact-meta-sep { display: none; }
  .contact-meta-item { padding: 0; }
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--feature-bg);
  color: var(--feature-muted);
  padding: 80px 0 36px;
  font-size: 14px;
  position: relative;
  overflow: hidden;
}
.site-footer::before {
  content: "";
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 90%; max-width: 1100px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
/* Footer-Logo: das breite Logo (mit Text) — interner Weißraum oben/unten wird
   per negativem margin + overflow:hidden visuell weggeschnitten. Links KEIN
   Crop, damit das R des RCP-Icons nicht abgeschnitten wird. */
.brand-footer {
  display: block;
  overflow: hidden;
  max-height: 104px;
  max-width: 340px;
  margin-bottom: 28px;
}
.brand-footer img {
  height: 300px;
  width: auto;
  margin: -98px -12px;
  display: block;
}
.footer-grid h4 {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--feature-fg);
  margin: 0 0 20px;
}
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid li { margin-bottom: 12px; }
.footer-grid a {
  color: var(--feature-muted);
  transition: color 200ms var(--ease);
}
.footer-grid a:hover { color: var(--feature-fg); }
.footer-tagline {
  max-width: 340px;
  color: var(--feature-muted);
  line-height: 1.65;
  margin: 0;
  font-size: 15px;
}
.footer-bottom {
  border-top: 1px solid var(--feature-line);
  padding-top: 28px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--feature-dim);
}

/* ---------- Legal / Prose pages ---------- */
.prose {
  max-width: 760px;
  margin: 0 auto;
  padding: 80px 32px 120px;
  line-height: 1.75;
}
.prose h1 {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(36px, 5vw, 52px);
  margin: 0 0 32px;
  letter-spacing: -0.03em;
  line-height: 1.05;
}
.prose h2 {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 24px;
  margin: 48px 0 14px;
  letter-spacing: -0.01em;
}
.prose h3 {
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--muted);
  margin: 32px 0 10px;
}
.prose p { margin: 0 0 16px; color: var(--fg-soft); }
.prose ul, .prose ol { padding-left: 22px; margin: 0 0 16px; color: var(--fg-soft); }
.prose li { margin-bottom: 6px; }
.prose .meta {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--muted);
  background: var(--bg-warm);
  padding: 8px 14px;
  border-radius: var(--r-pill);
  margin-bottom: 36px;
  letter-spacing: 0.5px;
}
.prose a {
  color: var(--fg);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
.prose a:hover { color: var(--muted); }
.prose .back-link {
  display: inline-flex; align-items: center; gap: 6px;
  margin-bottom: 36px;
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--muted);
  text-decoration: none;
}
.prose .back-link:hover { color: var(--fg); }

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 980px) {
  .container { padding: 0 24px; }
  .service-grid { grid-template-columns: 1fr; }
  .partner-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-card { min-height: 0; }
  .spotlight-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  section { padding: 96px 0; }
  .hero { padding: 100px 0 90px; }
}

@media (max-width: 720px) {
  .container { padding: 0 20px; }

  /* HEADER + NAV */
  .nav { padding: 12px 0; min-height: 68px; }
  .brand img { height: 48px; }
  /* Nav-Items horizontal scrollbar — alles erreichbar, ohne Hamburger */
  .nav-links {
    gap: 4px;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    max-width: 60vw;
    justify-content: flex-end;
  }
  .nav-links::-webkit-scrollbar { display: none; }
  .nav-links li { flex-shrink: 0; }
  .nav-links li:nth-child(2),
  .nav-links li:nth-child(3) { display: none; }
  .nav-links a { font-size: 13px; padding: 8px 12px; }
  .nav-cta { padding: 8px 14px !important; }

  /* HERO */
  .hero { padding: 72px 0 64px; }
  .hero-eyebrow { margin-bottom: 24px; font-size: 10px; padding: 6px 14px; letter-spacing: 1.4px; }
  .hero-sub { margin-bottom: 32px; }
  .hero::before { width: 380px; height: 380px; top: -8%; right: -20%; }

  /* SECTIONS */
  section { padding: 72px 0; }
  .section-head { margin-bottom: 44px; }

  /* SERVICES */
  .service { padding: 32px 26px; }
  .service h3 { font-size: 24px; }
  .service-num { margin-bottom: 20px; }

  .services-secondary { grid-template-columns: 1fr; gap: 14px; margin-top: 24px; }
  .services-secondary-item { padding: 26px 24px; }

  /* SPOTLIGHT */
  .spotlight { padding: 80px 0; }
  .spotlight-grid { gap: 36px; }
  .spotlight-aside { padding: 24px 22px; }
  .spotlight-text { font-size: 16px; }
  .spotlight-h2-sub { display: block; font-size: 0.65em; margin-top: 4px; }

  /* PARTNERS */
  .partner-grid { grid-template-columns: 1fr; gap: 12px; }
  .partner-card { min-height: 0; padding: 24px 22px; }

  /* ABOUT */
  .stat-num { font-size: 44px; }
  .stat-label { font-size: 10px; }
  .about-stats { padding: 4px 22px; }
  .about-grid { gap: 36px; }

  /* CONTACT */
  .contact-section { padding: 80px 0; }
  .contact-headline { margin: 12px 0 40px; }
  .contact-mail {
    padding: 16px 22px 16px 26px;
    gap: 12px;
    margin-bottom: 40px;
    font-size: clamp(16px, 4.4vw, 22px);
    word-break: break-all;
  }
  .contact-mail-arrow { width: 32px; height: 32px; font-size: 15px; }
  .contact-meta { flex-direction: column; gap: 22px; max-width: 360px; }
  .contact-meta-sep { display: none; }
  .contact-meta-item { padding: 0; }

  /* FOOTER */
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .brand-footer {
    max-height: 72px;
    max-width: 250px;
    margin-bottom: 20px;
  }
  .brand-footer img {
    height: 218px;
    margin: -73px -8px -73px -8px;
  }

  /* HEADER: Logo minimal nach rechts rücken */
  .brand { margin-left: 6px; }

  /* PROSE */
  .prose { padding: 56px 20px 84px; }
  .prose h1 { font-size: 34px; }
  .prose h2 { font-size: 22px; margin-top: 36px; }
}

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 800ms var(--ease), transform 800ms var(--ease);
  will-change: opacity, transform;
}
.reveal.is-revealed {
  opacity: 1;
  transform: translateY(0);
}
.reveal[data-delay="1"] { transition-delay: 80ms; }
.reveal[data-delay="2"] { transition-delay: 160ms; }
.reveal[data-delay="3"] { transition-delay: 240ms; }
.reveal[data-delay="4"] { transition-delay: 320ms; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ============================================================
   DARK MODE — Feinjustierung
   ------------------------------------------------------------
   Token-Swaps siehe oben. Hier zusätzliche Anpassungen, die
   sich nicht über Tokens lösen lassen (Logo-Invert, Hover-Surfaces).
   .brand-footer img wird bewusst NICHT invertiert — der Footer
   bleibt in beiden Themes dunkel und nutzt logo-white.png.
   ============================================================ */
@media (prefers-color-scheme: dark) {
  /* Logo-Swap erfolgt über .logo-light / .logo-dark (siehe oben) */

  .service:hover {
    background: var(--surface);
    color: var(--fg);
  }
  .service:hover .service-num,
  .service:hover p,
  .service:hover .service-link { color: var(--fg); }
  .service:hover .service-link::after { background: var(--fg); }

  a.contact-card:hover {
    background: var(--surface);
    color: var(--fg);
    box-shadow: 0 12px 40px rgba(0,0,0,0.4);
  }
  a.contact-card:hover .contact-label { color: var(--muted); }

  .partner-card.placeholder {
    background: rgba(255,255,255,0.025);
    border-color: var(--line);
  }
  code {
    background: rgba(255,255,255,0.06);
    color: var(--fg-soft);
  }
  .prose .meta {
    background: var(--surface);
  }
  .contact-mail {
    background: var(--fg);
    color: var(--bg);
  }
  .contact-mail:hover {
    background: var(--fg-soft);
    color: var(--bg);
  }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }

  /* HEADER: nur PlayArc-CTA + Kontakt sichtbar, restliche Items via Anker im Hero/Footer */
  .nav { min-height: 60px; padding: 10px 0; }
  .brand img { height: 42px; }
  .nav-links { gap: 4px; max-width: 56vw; }
  .nav-links li { display: none; }
  .nav-links li:nth-child(4),   /* Kontakt */
  .nav-links li:nth-last-child(1) { display: list-item; }
  .nav-links a { font-size: 13px; padding: 7px 10px; }
  .nav-cta { padding: 8px 14px !important; font-size: 13px; }

  /* HERO */
  .hero { padding: 56px 0 56px; }
  .hero h1 { letter-spacing: -0.025em; }
  .hero-eyebrow { font-size: 9.5px; letter-spacing: 1.2px; padding: 6px 12px; margin-bottom: 22px; }
  .hero-sub { font-size: 15px; line-height: 1.55; margin-bottom: 28px; }
  .hero-ctas { flex-direction: column; align-items: stretch; gap: 10px; }
  .hero-ctas .btn { width: 100%; padding: 15px 20px; }

  /* SECTIONS */
  section { padding: 64px 0; }
  .section-head { margin-bottom: 36px; }
  .section-head h2 { font-size: 30px; letter-spacing: -0.025em; }
  .section-head p { font-size: 15px; }
  .section-eyebrow { font-size: 10px; letter-spacing: 2px; }

  /* SERVICES */
  .service { padding: 28px 22px; border-radius: var(--r-md); }
  .service h3 { font-size: 22px; }
  .service p { font-size: 14px; }
  .services-secondary-item { padding: 22px 20px; border-radius: var(--r-md); }
  .services-secondary-item h4 { font-size: 20px; }

  /* SPOTLIGHT */
  .spotlight { padding: 64px 0; }
  .spotlight h2 { font-size: 28px; margin: 14px 0 22px; }
  .spotlight-text { font-size: 15px; margin-bottom: 28px; }
  .spotlight-aside { padding: 22px 20px; }
  .spotlight-list li { padding: 13px 0; font-size: 14px; }
  .btn-playarc { width: 100%; }

  /* ABOUT */
  .about-text p { font-size: 16px; line-height: 1.65; }
  .stat-num { font-size: 38px; }
  .about-stats { padding: 0 20px; }
  .stat { padding: 18px 0; }

  /* PARTNERS */
  .partner-card { padding: 22px 20px; }
  .partner-card h4 { font-size: 20px; }
  .partners-note { font-size: 13px; }

  /* CONTACT */
  .contact-section { padding: 64px 0; }
  .contact-headline { font-size: 38px; margin: 12px 0 32px; line-height: 1.05; }
  .contact-mail {
    padding: 14px 18px 14px 22px;
    gap: 10px;
    font-size: 15px;
    margin-bottom: 32px;
  }
  .contact-mail-arrow { width: 28px; height: 28px; font-size: 13px; }
  .contact-meta-value { font-size: 16px; }

  /* FOOTER */
  .site-footer { padding: 56px 0 28px; }
  .footer-grid { gap: 28px; margin-bottom: 36px; }
  .brand-footer {
    max-height: 60px;
    max-width: 210px;
    margin-bottom: 14px;
  }
  .brand-footer img {
    height: 182px;
    margin: -61px -8px -61px -8px;
  }

  /* HEADER: Logo minimal nach rechts rücken */
  .brand { margin-left: 4px; }
  .footer-tagline { font-size: 14px; }
  .footer-grid h4 { font-size: 10px; margin-bottom: 14px; }
  .footer-bottom { font-size: 9.5px; flex-direction: column; align-items: flex-start; gap: 10px; padding-top: 20px; }

  /* PROSE */
  .prose { padding: 48px 16px 72px; }
  .prose h1 { font-size: 28px; }
  .prose h2 { font-size: 19px; margin-top: 32px; }
  .prose h3 { font-size: 11px; margin-top: 24px; }
  .prose p, .prose li { font-size: 15px; }
}

/* ----- Extra-Klein (≤380px, kleine iPhones / Galaxy) ----- */
@media (max-width: 380px) {
  .contact-mail { font-size: 14px; padding: 13px 16px 13px 18px; }
  .contact-headline { font-size: 32px; }
  .hero h1 { font-size: 36px; }
  .section-head h2 { font-size: 26px; }
  .spotlight h2 { font-size: 24px; }
  .brand-footer img { height: 150px; margin: -45px 0; }
}

/* ----- Touch-Targets sicherstellen (mindestens 44px) ----- */
@media (hover: none) and (pointer: coarse) {
  .btn { min-height: 44px; }
  .nav-links a { min-height: 40px; display: inline-flex; align-items: center; }
  .service-link, .partner-card a, .footer-grid a, .footer-bottom a {
    padding: 4px 0;
  }
  /* Hover-Effekte deaktivieren auf Touch — verhindern „sticky hover" Bug */
  .service:hover, .partner-card:hover, .contact-card:hover, .feature:hover,
  .services-secondary-item:hover, .btn:hover, .contact-mail:hover {
    transform: none;
  }
}
