/* ===========================================================================
   PLATZ 28 — Website stylesheet
   Baut auf den Brand-Tokens auf (../brand/tokens/*). Keine eigenen Farben,
   Fonts oder Radii — nur Layout, Komponenten und Motion für die Website.
   =========================================================================== */

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg-page);
  color: var(--text-body);
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--space-6);
}

.container--narrow {
  max-width: var(--container-narrow);
  margin: 0 auto;
  padding: 0 var(--space-6);
}

::selection { background: var(--accent); color: var(--text-on-accent); }

/* Focus visibility */
a:focus-visible, button:focus-visible {
  outline: none;
  box-shadow: var(--focus-ring);
  border-radius: var(--radius-sm);
}

/* ---------------------------------------------------------------------------
   Film-grain vignette — sits behind everything, very restrained
   --------------------------------------------------------------------------- */
.grain {
  position: fixed;
  inset: 0;
  z-index: 999;
  pointer-events: none;
  opacity: 0.035;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.vignette {
  position: fixed;
  inset: 0;
  z-index: 998;
  pointer-events: none;
  box-shadow: inset 0 0 240px rgba(0,0,0,0.55);
}

/* ---------------------------------------------------------------------------
   Eyebrow / labels
   --------------------------------------------------------------------------- */
.eyebrow {
  font-family: var(--font-body);
  font-weight: var(--fw-medium);
  font-size: var(--fs-eyebrow);
  letter-spacing: var(--ls-eyebrow);
  text-transform: uppercase;
  color: var(--text-muted);
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
}
.eyebrow::before {
  content: '';
  width: 22px;
  height: 1px;
  background: var(--accent);
  display: inline-block;
}
.eyebrow--amber { color: var(--accent); }

/* ---------------------------------------------------------------------------
   Scroll rail — right-edge dot nav, one dot per stacked panel
   --------------------------------------------------------------------------- */
.scroll-rail {
  position: fixed;
  top: 50%;
  right: var(--space-6);
  transform: translateY(-50%);
  z-index: 600;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-4);
}
.scroll-rail::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  transform: translateX(-50%);
  background: var(--border-subtle);
  z-index: -1;
}
.scroll-rail-dot {
  width: 15px;
  height: 15px;
  border-radius: var(--radius-circle);
  background: var(--ink-950);
  border: 1.5px solid var(--border-strong);
  transition: background var(--dur-slow) var(--ease-out), border-color var(--dur-slow) var(--ease-out), transform var(--dur-slow) var(--ease-out);
}
.scroll-rail-dot:hover { border-color: var(--accent-line); }
.scroll-rail-dot.is-active {
  background: var(--accent);
  border-color: var(--accent);
  transform: scale(1.4);
  animation: rail-glow 0.9s var(--ease-out);
}
@keyframes rail-glow {
  0% { box-shadow: 0 0 0 0 rgba(232, 148, 58, 0.75), 0 0 18px 4px rgba(232, 148, 58, 0.85); }
  60% { box-shadow: 0 0 0 9px rgba(232, 148, 58, 0.12), 0 0 22px 8px rgba(232, 148, 58, 0.35); }
  100% { box-shadow: 0 0 0 16px rgba(232, 148, 58, 0), 0 0 0 0 rgba(232, 148, 58, 0); }
}

@media (max-width: 900px) {
  .scroll-rail { display: none; }
}

/* ---------------------------------------------------------------------------
   Header / Nav
   --------------------------------------------------------------------------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: background var(--dur-slow) var(--ease-out), border-color var(--dur-slow) var(--ease-out), backdrop-filter var(--dur-slow) var(--ease-out);
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled {
  background: rgba(7, 9, 10, 0.72);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom-color: var(--border-subtle);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  gap: var(--space-6);
  width: 100%;
}
.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  flex-shrink: 0;
}
.brand-lockup img {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-circle);
  flex-shrink: 0;
}
.brand-lockup .wordmark {
  font-family: var(--font-display);
  font-weight: var(--fw-bold);
  font-size: 18px;
  letter-spacing: var(--ls-caps);
  text-transform: uppercase;
  color: var(--text-strong);
  line-height: 1;
  white-space: nowrap;
}
.brand-lockup .wordmark span { color: var(--accent); }

.nav-links {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: var(--space-6);
  list-style: none;
  margin: 0; padding: 0;
}
.nav-links a {
  font-family: var(--font-body);
  font-weight: var(--fw-medium);
  font-size: var(--fs-sm);
  letter-spacing: var(--ls-caps);
  text-transform: uppercase;
  color: var(--text-muted);
  position: relative;
  padding: var(--space-2) 0;
  white-space: nowrap;
  transition: color var(--dur) var(--ease-out);
}
.nav-links a:hover { color: var(--text-strong); }
.nav-links a.is-active { color: var(--text-strong); }
.nav-links a.is-active::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  background: var(--accent);
  border-radius: var(--radius-pill);
}

.nav-right { display: flex; align-items: center; flex-wrap: nowrap; flex-shrink: 0; gap: var(--space-5); }

.btn-pill {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-6);
  background: var(--amber-500);
  color: var(--ink-950);
  font-family: var(--font-display);
  font-weight: var(--fw-bold);
  font-size: 14px;
  letter-spacing: var(--ls-caps);
  text-transform: uppercase;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  flex-shrink: 0;
  white-space: nowrap;
  transition: background var(--dur) var(--ease-out), transform var(--dur) var(--ease-out), box-shadow var(--dur) var(--ease-out);
}
.btn-pill:hover { background: var(--accent-hover); transform: translateY(-1px); box-shadow: var(--glow-amber); }
.btn-pill:active { background: var(--accent-press); transform: translateY(0); }
.btn-pill svg { width: 16px; height: 16px; stroke: currentColor; flex-shrink: 0; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-5);
  background: transparent;
  color: var(--text-strong);
  font-family: var(--font-body);
  font-weight: var(--fw-medium);
  font-size: 14px;
  letter-spacing: var(--ls-caps);
  text-transform: uppercase;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border-strong);
  cursor: pointer;
  transition: border-color var(--dur) var(--ease-out), background var(--dur) var(--ease-out);
}
.btn-ghost:hover { border-color: var(--accent-line); background: var(--accent-soft); }

.nav-toggle {
  display: none;
  width: 40px; height: 40px;
  border-radius: var(--radius-circle);
  border: 1px solid var(--border-subtle);
  background: rgba(7,9,10,0.5);
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.nav-toggle span, .nav-toggle::before, .nav-toggle::after {
  content: '';
  display: block;
  width: 16px;
  height: 1.5px;
  background: var(--text-strong);
  position: relative;
  transition: transform var(--dur) var(--ease-out), opacity var(--dur) var(--ease-out);
}
.nav-toggle::before { position: absolute; transform: translateY(-5px); }
.nav-toggle::after { position: absolute; transform: translateY(5px); }
.nav-toggle.is-open span { opacity: 0; }
.nav-toggle.is-open::before { transform: rotate(45deg); }
.nav-toggle.is-open::after { transform: rotate(-45deg); }

/* ---------------------------------------------------------------------------
   Hero
   --------------------------------------------------------------------------- */
/*
   hero-banner.png already contains the full brand lockup baked in
   (logo, wordmark, tagline, "KURZ. ECHT. MODERN.") — it is a finished
   poster, not raw photography. So: no live text is placed on top of it
   (that would duplicate/overlay the baked copy). The container is locked
   to the image's exact native aspect ratio so it is always shown whole,
   uncropped, at any viewport width — nothing can shift the baked text
   into the header zone. Live CTA content lives in the plain band below.
*/
.hero {
  position: sticky;
  top: 0;
  z-index: 1;
  isolation: isolate;
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--ink-950);
}
.hero-media {
  position: relative;
  width: 100%;
  aspect-ratio: 2752 / 1536;
  overflow: hidden;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform-origin: center;
  animation: hero-kenburns 26s var(--ease-out) forwards;
}
@keyframes hero-kenburns {
  from { transform: scale(1.0); }
  to { transform: scale(1.025); }
}
.hero-ring {
  position: absolute;
  top: -12%;
  right: -6%;
  width: 46%;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid rgba(245, 241, 233, 0.10);
  pointer-events: none;
}

.hero-actions-band {
  position: sticky;
  top: 0;
  z-index: 2;
  isolation: isolate;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--space-10) 0;
  border-bottom: 1px solid var(--border-subtle);
  background:
    radial-gradient(ellipse 55% 100% at 90% 0%, rgba(232,148,58,0.06), transparent 60%),
    var(--ink-950);
}
.hero-actions-band .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-8);
  flex-wrap: wrap;
}
.hero-actions-band .eyebrow { margin: 0; }
.hero-actions { display: flex; align-items: center; gap: var(--space-5); flex-wrap: wrap; }

/* ---------------------------------------------------------------------------
   Section rhythm
   --------------------------------------------------------------------------- */
section { position: relative; }
.section {
  position: sticky;
  top: 0;
  isolation: isolate;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--space-24) 0;
  background: var(--ink-950);
}
#prinzip { z-index: 3; }
#inhalte { z-index: 4; }
#cta { z-index: 6; }
.section-head {
  max-width: 640px;
  margin-bottom: var(--space-16);
}
.section-head h2 {
  margin: var(--space-4) 0 0;
}
.section-head p {
  margin: var(--space-4) 0 0;
  color: var(--text-muted);
  font-size: var(--fs-body-lg);
}

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: var(--fw-bold);
  text-transform: uppercase;
  letter-spacing: var(--ls-display);
  line-height: var(--lh-tight);
  color: var(--text-strong);
  margin: 0;
}
h1 { font-size: var(--fs-display-xl); }
h2 { font-size: var(--fs-display-md); }
h3 { font-size: var(--fs-h2); }

/* ---------------------------------------------------------------------------
   Pillars (Kurz / Echt / Modern)
   --------------------------------------------------------------------------- */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-8);
}
.pillar {
  padding: var(--space-8) var(--space-6);
  border-top: 1px solid var(--border-subtle);
  transition: border-color var(--dur) var(--ease-out), transform var(--dur) var(--ease-out);
}
.pillar:hover { border-top-color: var(--accent-line); transform: translateY(-2px); }
.pillar .num {
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
  color: var(--accent);
  letter-spacing: 0.1em;
}
.pillar h3 { margin-top: var(--space-4); }
.pillar p { color: var(--text-muted); margin: var(--space-3) 0 0; }

/* ---------------------------------------------------------------------------
   Feature grid (Glass cards)
   --------------------------------------------------------------------------- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-5);
}
.card-glass {
  background: rgba(7, 9, 10, 0.68);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
}
.feature-card {
  padding: var(--space-8) var(--space-6);
  transition: border-color var(--dur) var(--ease-out), transform var(--dur) var(--ease-out), box-shadow var(--dur) var(--ease-out);
}
.feature-card:hover {
  border-color: var(--border-strong);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.feature-icon {
  width: 44px; height: 44px;
  border-radius: var(--radius-md);
  background: var(--accent-soft);
  border: 1px solid var(--accent-line);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: var(--space-5);
}
.feature-icon svg { width: 20px; height: 20px; stroke: var(--accent); }
.feature-card h3 { font-size: var(--fs-h3); }
.feature-card p { color: var(--text-muted); font-size: var(--fs-sm); margin: var(--space-3) 0 0; }

/* ---------------------------------------------------------------------------
   Cinematic band (full-bleed quote / statement strip)
   --------------------------------------------------------------------------- */
.band {
  position: sticky;
  top: 0;
  z-index: 5;
  isolation: isolate;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--space-24) 0;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  background:
    radial-gradient(ellipse 60% 100% at 15% 0%, rgba(232,148,58,0.07), transparent 60%),
    var(--ink-900);
}
.band-script {
  font-family: var(--font-script);
  color: var(--accent);
  font-size: 34px;
  line-height: 1.3;
}
.band blockquote {
  margin: var(--space-6) 0 0;
  font-family: var(--font-display);
  font-size: var(--fs-display-md);
  text-transform: uppercase;
  letter-spacing: var(--ls-display);
  color: var(--text-strong);
  line-height: var(--lh-snug);
  max-width: 820px;
}

/* ---------------------------------------------------------------------------
   CTA card — Platz-28 Premium Standard
   --------------------------------------------------------------------------- */
.cta-wrap { display: flex; justify-content: center; }
.card-amber-glass {
  background: rgba(7, 9, 10, 0.65);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(232, 148, 58, 0.28);
  border-top: 2.5px solid var(--amber-500);
  border-radius: var(--radius-xl);
}
.cta-card {
  width: 100%;
  max-width: 760px;
  padding: var(--space-10);
}
.cta-instruction {
  padding-bottom: var(--space-8);
  border-bottom: 1px solid var(--border-subtle);
}
.cta-instruction .kw {
  font-family: var(--font-display);
  font-weight: var(--fw-bold);
  font-size: 40px;
  text-transform: uppercase;
  color: var(--accent);
  letter-spacing: var(--ls-display);
  line-height: var(--lh-tight);
}
.cta-instruction .ctx {
  font-family: var(--font-display);
  font-weight: var(--fw-semibold);
  font-size: 30px;
  text-transform: uppercase;
  color: rgba(245,241,233,0.76);
  letter-spacing: var(--ls-display);
  line-height: var(--lh-tight);
}
.cta-subscribe-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
  padding-top: var(--space-8);
  flex-wrap: wrap;
}
.cta-brand { display: flex; align-items: center; gap: var(--space-5); }
.cta-brand img {
  width: 64px; height: 64px;
  border-radius: var(--radius-circle);
  flex-shrink: 0;
}
.cta-brand .name {
  font-family: var(--font-display);
  font-weight: var(--fw-bold);
  font-size: 22px;
  letter-spacing: var(--ls-caps);
  text-transform: uppercase;
  color: var(--text-strong);
}
.cta-brand .handle {
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
  color: var(--accent);
  letter-spacing: 0.06em;
  margin-top: 2px;
}
.cta-brand .tagline {
  font-family: var(--font-body);
  font-style: italic;
  font-size: var(--fs-sm);
  color: var(--text-muted);
  margin-top: 2px;
}

/* ---------------------------------------------------------------------------
   Footer
   --------------------------------------------------------------------------- */
.site-footer {
  padding: var(--space-16) 0 var(--space-10);
  border-top: 1px solid var(--border-subtle);
  background: var(--ink-950);
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: var(--space-10);
  padding-bottom: var(--space-10);
  border-bottom: 1px solid var(--border-subtle);
  flex-wrap: wrap;
}
.footer-brand .wordmark {
  font-family: var(--font-display);
  font-weight: var(--fw-bold);
  font-size: 22px;
  letter-spacing: var(--ls-caps);
  text-transform: uppercase;
  color: var(--text-strong);
}
.footer-brand .wordmark span { color: var(--accent); }
.footer-brand .script {
  font-family: var(--font-script);
  color: var(--accent);
  font-size: 18px;
  margin-top: var(--space-2);
}
.footer-nav { display: flex; gap: var(--space-16); flex-wrap: wrap; }
.footer-col h4 {
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin: 0 0 var(--space-4);
}
.footer-col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: var(--space-3); }
.footer-col a {
  font-size: var(--fs-sm);
  color: var(--text-muted);
  transition: color var(--dur) var(--ease-out);
}
.footer-col a:hover { color: var(--text-strong); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--space-8);
  flex-wrap: wrap;
  gap: var(--space-4);
}
.footer-bottom p {
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
  color: var(--text-faint);
  margin: 0;
  letter-spacing: 0.04em;
}
.footer-social-group { display: flex; align-items: center; gap: var(--space-3); }
.footer-social {
  width: 40px; height: 40px;
  border-radius: var(--radius-circle);
  border: 1px solid var(--border-subtle);
  display: flex; align-items: center; justify-content: center;
  transition: border-color var(--dur) var(--ease-out), background var(--dur) var(--ease-out);
}
.footer-social:hover { border-color: var(--accent-line); background: var(--accent-soft); }
.footer-social svg { width: 17px; height: 17px; stroke: var(--text-strong); }

/* ---------------------------------------------------------------------------
   Reveal-on-scroll
   --------------------------------------------------------------------------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }

/* ---------------------------------------------------------------------------
   Legal pages (Datenschutz / Impressum)
   --------------------------------------------------------------------------- */
.legal-hero {
  padding: calc(var(--header-h) + var(--space-20)) 0 var(--space-16);
  background:
    radial-gradient(ellipse 70% 60% at 85% 0%, rgba(232,148,58,0.08), transparent 60%),
    var(--ink-950);
  border-bottom: 1px solid var(--border-subtle);
}
.legal-hero h1 { font-size: var(--fs-display-lg); margin-top: var(--space-4); }
.legal-hero p { color: var(--text-muted); margin-top: var(--space-4); max-width: 640px; }

.legal-body { padding: var(--space-16) 0 var(--space-24); }
.legal-layout {
  max-width: var(--container-narrow);
  margin: 0 auto;
}

/* Third-party legal-text widget (IT-Recht Kanzlei). Despite the filename
   ("-iframe.html"), the loader script does NOT use an iframe — it fetches
   the remote page and injects doc.body.innerHTML directly into our DOM
   (bare h1/h2/p/ul/li/a/b, no styles of its own, no isolation at all).
   Left unstyled it fully inherits our dark-theme display type: 88px
   uppercase Oswald h1, light bone body text — unreadable on a light card
   and reads as "empty space" before the text. Everything below resets it
   to a normal, legible document style. */
.legal-widget-card {
  background: var(--bone-50);
  border-radius: var(--radius-xl);
  border-top: 2.5px solid var(--amber-500);
  box-shadow: var(--shadow-lg);
  padding: var(--space-10) var(--space-8);
  overflow: hidden;
}
.legal-widget-card .itrk-legaltext,
.legal-widget-card iframe {
  width: 100% !important;
  border: 0 !important;
  display: block;
}
.legal-widget-card, .legal-widget-card * {
  color: #1a1714;
  font-family: var(--font-body);
  text-transform: none;
  letter-spacing: normal;
}
.legal-widget-card h1 {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: var(--fw-bold);
  line-height: 1.25;
  margin: 0 0 var(--space-6);
  color: #100e0c;
}
.legal-widget-card h2 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: var(--fw-semibold);
  line-height: 1.3;
  margin: var(--space-8) 0 var(--space-3);
  color: #100e0c;
}
.legal-widget-card h3, .legal-widget-card h4 {
  font-size: 15px;
  font-weight: var(--fw-semibold);
  margin: var(--space-5) 0 var(--space-2);
}
.legal-widget-card p, .legal-widget-card li {
  font-size: 14.5px;
  line-height: 1.65;
  margin: 0 0 var(--space-4);
}
.legal-widget-card ul, .legal-widget-card ol {
  margin: 0 0 var(--space-4);
  padding-left: 1.3em;
}
.legal-widget-card a { color: var(--amber-600); text-decoration: underline; }
.legal-widget-card a:hover { color: var(--amber-700); }
.legal-widget-card b, .legal-widget-card strong { font-weight: var(--fw-semibold); }

.legal-widget-card #itkanzlei_txt_copyright {
  margin-top: var(--space-10) !important;
  padding-top: var(--space-4);
  border-top: 1px solid rgba(0,0,0,0.12);
  font-size: 11px !important;
  color: #78706a !important;
}
.legal-widget-card #itkanzlei_txt_copyright img { max-height: 22px; width: auto; }

/* Some Kanzlei templates (e.g. the "Fairness im Handel" badge block in the
   Impressum text) ship a hardcoded 1em solid white divider — glaring on
   this light card. Soften it to match our hairline style. */
.legal-widget-card div[style*="solid white"] {
  border-top: 1px solid rgba(0,0,0,0.12) !important;
  margin-top: var(--space-4) !important;
  padding-top: var(--space-4) !important;
}

.legal-content h2 {
  font-size: var(--fs-h1);
  margin-top: var(--space-16);
  padding-top: var(--space-16);
  border-top: 1px solid var(--border-subtle);
}
.legal-content h2:first-child { margin-top: 0; padding-top: 0; border-top: none; }
.legal-content h3 {
  font-size: var(--fs-h3);
  margin-top: var(--space-8);
  text-transform: none;
  letter-spacing: 0;
  font-family: var(--font-body);
  font-weight: var(--fw-semibold);
}
.legal-content p, .legal-content li {
  color: var(--text-body);
  font-size: var(--fs-body);
  line-height: var(--lh-loose);
}
.legal-content p { margin: var(--space-4) 0; }
.legal-content ul { padding-left: 1.1em; margin: var(--space-4) 0; }
.legal-content a.inline-link {
  color: var(--accent);
  border-bottom: 1px solid var(--accent-line);
}
.legal-content a.inline-link:hover { color: var(--accent-hover); }

.placeholder-note {
  display: flex;
  gap: var(--space-4);
  padding: var(--space-5) var(--space-6);
  background: var(--accent-soft);
  border: 1px solid var(--accent-line);
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-12);
}
.placeholder-note svg { width: 20px; height: 20px; stroke: var(--accent); flex-shrink: 0; margin-top: 2px; }
.placeholder-note p { margin: 0; color: var(--bone-200); font-size: var(--fs-sm); line-height: var(--lh-body); }
.placeholder-note strong { color: var(--text-strong); }

.ph {
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 0.92em;
  background: rgba(232, 148, 58, 0.10);
  padding: 0 5px;
  border-radius: var(--radius-xs);
  border: 1px dashed var(--accent-line);
}

/* ---------------------------------------------------------------------------
   Wir (About) page — deliberately NOT using .section/.hero/.band, those
   classes carry the homepage-only sticky-stack behavior. This page scrolls
   normally, like the legal pages.
   --------------------------------------------------------------------------- */
.about-hero {
  padding: calc(var(--header-h) + var(--space-20)) 0 var(--space-16);
  background:
    radial-gradient(ellipse 70% 60% at 85% 0%, rgba(232,148,58,0.08), transparent 60%),
    var(--ink-950);
  border-bottom: 1px solid var(--border-subtle);
}
.about-hero h1 { font-size: var(--fs-display-lg); margin-top: var(--space-4); }
.about-hero p { color: var(--text-muted); margin-top: var(--space-4); max-width: 640px; font-size: var(--fs-body-lg); }

.about-body { padding: var(--space-20) 0 var(--space-24); }
.about-content {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
  gap: var(--space-16);
  align-items: center;
}

.about-photo-wrap { position: relative; }
.about-photo-ring {
  position: absolute;
  top: -10%;
  left: -14%;
  width: 55%;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid rgba(245, 241, 233, 0.10);
  pointer-events: none;
  z-index: 0;
}
.about-photo {
  position: relative;
  z-index: 1;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border-top: 2.5px solid var(--amber-500);
  box-shadow: var(--shadow-lg);
}
.about-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.about-photo-caption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: var(--space-10) var(--space-6) var(--space-5);
  background: linear-gradient(to top, rgba(7,9,10,0.92) 0%, rgba(7,9,10,0.45) 55%, rgba(7,9,10,0) 100%);
}
.about-photo-caption span {
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bone-50);
}
.about-photo-caption span.amber { color: var(--accent); }

.about-text .eyebrow { margin-bottom: var(--space-5); }
.about-text h2 { font-size: var(--fs-display-md); margin-bottom: var(--space-6); }
.about-text p {
  color: var(--text-body);
  font-size: var(--fs-body-lg);
  line-height: var(--lh-body);
  margin: 0 0 var(--space-5);
}
.about-names {
  display: flex;
  gap: var(--space-6);
  margin-top: var(--space-8);
  padding-top: var(--space-8);
  border-top: 1px solid var(--border-subtle);
  flex-wrap: wrap;
}
.about-names div { display: flex; flex-direction: column; gap: 2px; }
.about-names .role {
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
}
.about-names .name {
  font-family: var(--font-display);
  font-weight: var(--fw-semibold);
  font-size: var(--fs-h3);
  letter-spacing: var(--ls-caps);
  text-transform: uppercase;
  color: var(--text-strong);
}

@media (max-width: 900px) {
  .about-content { grid-template-columns: 1fr; gap: var(--space-10); }
  .about-photo-wrap { max-width: 420px; margin: 0 auto; }
}

/* ---------------------------------------------------------------------------
   Responsive
   --------------------------------------------------------------------------- */
@media (max-width: 1080px) {
  .nav-right .btn-ghost { display: none; }
}

@media (max-width: 980px) {
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  :root { --header-h: 64px; }
  .nav-links, .nav-right .btn-ghost { display: none; }
  .nav-toggle { display: flex; }

  /* Sticky-stack overlap only on desktop — 100vh sticky panels are
     unreliable on mobile (address-bar viewport resize) and the pin/
     overlap motion doesn't read well on small screens. Falls back to
     plain sequential scrolling. */
  .hero, .hero-actions-band, .section, .band {
    position: static;
    min-height: 0;
    display: block;
    isolation: auto;
    z-index: auto;
  }

  .mobile-nav {
    position: fixed;
    inset: 0;
    z-index: 400;
    background: rgba(7,9,10,0.98);
    backdrop-filter: blur(20px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-8);
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--dur-slow) var(--ease-out);
  }
  .mobile-nav.is-open { opacity: 1; pointer-events: auto; }
  .mobile-nav a {
    font-family: var(--font-display);
    font-size: 28px;
    text-transform: uppercase;
    letter-spacing: var(--ls-caps);
    color: var(--text-strong);
  }
  .mobile-nav a.is-active { color: var(--accent); }
}

@media (min-width: 901px) {
  .mobile-nav { display: none; }
}

@media (max-width: 760px) {
  h1 { font-size: 44px; }
  h2 { font-size: 30px; }
  .pillars { grid-template-columns: 1fr; gap: var(--space-10); }
  .feature-grid { grid-template-columns: 1fr; }
  .band blockquote { font-size: 26px; }
  .footer-top { flex-direction: column; }
  .footer-nav { gap: var(--space-10); }
  .cta-instruction .kw { font-size: 30px; }
  .cta-instruction .ctx { font-size: 22px; }
  .cta-subscribe-row { justify-content: flex-start; }
}
