/* ==========================================================================
   48forward Studios — Design-System „REGIE"
   Basis: design_handoff_regie_redesign/README.md (Tokens & Muster verbindlich)
   ========================================================================== */

/* ---- Fonts (self-hosted) ---- */
@font-face {
  font-family: "Archivo";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("/assets/fonts/archivo-var.woff2?v=1") format("woff2");
}
@font-face {
  font-family: "IBM Plex Mono";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/assets/fonts/ibm-plex-mono-400.woff2?v=1") format("woff2");
}
@font-face {
  font-family: "IBM Plex Mono";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("/assets/fonts/ibm-plex-mono-500.woff2?v=1") format("woff2");
}

/* ---- Tokens ---- */
:root {
  --bg-dark: #0d0f13;
  --bg-card: #11141a;
  --bg-dark-2: #16181d;
  --bg-light: #f2efe9;
  --bg-white: #ffffff;
  --accent: #ec5b13;
  --accent-hover: #d94f0d;
  --rec-red: #e5484d;
  --t-dark: #f2efe9;
  --t-dark-muted: rgba(242, 239, 233, .6);
  --t-dark-label: rgba(242, 239, 233, .5);
  --t-dark-foot: rgba(242, 239, 233, .4);
  --t-light: #16181d;
  --t-light-body: #4c4842;
  --t-light-article: #3d3a35;
  --t-light-muted: #6b6459;
  --line-dark: rgba(242, 239, 233, .14);
  --line-dark-strong: rgba(242, 239, 233, .18);
  --line-light: rgba(22, 24, 29, .15);
  --sans: "Archivo", -apple-system, "Segoe UI", sans-serif;
  --mono: "IBM Plex Mono", "SF Mono", Menlo, monospace;
  --pad-x: 48px;
  --pad-y: 100px;
}

/* ---- Reset & Basis ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg-dark);
  color: var(--t-dark);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
a:focus-visible, button:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

/* ---- Mono-Labels / Eyebrows ---- */
.mono {
  font-family: var(--mono);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.eyebrow { composes: none; }
.eyebrow, .caption { font-family: var(--mono); font-weight: 500; text-transform: uppercase; }
.eyebrow { font-size: 12px; letter-spacing: .2em; color: var(--accent); display: flex; align-items: center; gap: 12px; }
.caption { font-size: 11.5px; letter-spacing: .16em; color: var(--t-light-muted); }
.on-dark .caption { color: var(--t-dark-foot); }

/* REC-Puls */
.rec-dot {
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--rec-red); flex-shrink: 0;
  animation: recPulse 1.6s ease-in-out infinite;
}
@keyframes recPulse { 0%, 100% { opacity: 1; } 50% { opacity: .25; } }

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--sans); font-size: 15px; font-weight: 700;
  letter-spacing: .02em; padding: 17px 30px; border: 0; cursor: pointer;
  transition: background .15s, border-color .15s, color .15s;
}
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-hover); }
.btn-outline { background: transparent; color: var(--t-dark); border: 1px solid var(--line-dark-strong); }
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }
.btn-dark { background: var(--bg-dark-2); color: #fff; }
.btn-dark:hover { background: var(--accent); }

/* ---- Navigation ---- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 300;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 var(--pad-x); height: 70px;
  background: rgba(13, 15, 19, .92);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line-dark);
}
.nav-logo { display: flex; align-items: center; gap: 14px; }
.nav-logo img {
  height: 20px; width: auto; opacity: .6;
  border-right: 1px solid var(--line-dark); padding-right: 14px;
}
.nav-logo span {
  font-family: var(--mono); font-weight: 500; font-size: 12.5px;
  letter-spacing: .18em; text-transform: uppercase;
}
.nav-logo span em { font-style: normal; color: var(--accent); }
.nav-links { display: flex; align-items: center; gap: 34px; list-style: none; }
.nav-links > li { position: relative; }
.nav-links a {
  font-size: 13px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
  color: rgba(242, 239, 233, .78); transition: color .15s;
}
.nav-links a:hover { color: var(--accent); }
.nav-links .nav-cta {
  background: var(--accent); color: #fff; font-weight: 700;
  padding: 11px 24px; transition: background .15s;
}
.nav-links .nav-cta:hover { background: var(--accent-hover); color: #fff; }
.nav-drop > a::after {
  content: ""; display: inline-block; margin-left: 7px;
  border-left: 4px solid transparent; border-right: 4px solid transparent;
  border-top: 4px solid currentColor; vertical-align: middle;
}
.nav-panel {
  position: absolute; top: calc(100% + 14px); left: -22px; min-width: 230px;
  background: var(--bg-dark-2); border: 1px solid var(--line-dark);
  box-shadow: 0 16px 40px rgba(0, 0, 0, .5); list-style: none;
  opacity: 0; visibility: hidden; transform: translateY(6px);
  transition: opacity .15s, visibility .15s, transform .15s;
}
.nav-drop:hover .nav-panel, .nav-drop:focus-within .nav-panel {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.nav-panel a { display: block; padding: 14px 22px; font-size: 14px; color: var(--t-dark-muted); }
.nav-panel a:hover { background: #1d212a; color: var(--accent); }
.nav-burger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: 0; cursor: pointer; padding: 10px;
}
.nav-burger span { display: block; width: 24px; height: 2px; background: var(--t-dark); transition: transform .25s, opacity .25s; }
.nav-burger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ---- Foto-Hero ---- */
.hero { position: relative; min-height: 640px; display: flex; overflow: hidden; }
.hero.hero-home { min-height: 760px; }
.hero-img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; filter: saturate(.7) brightness(.5);
}
.hero-shade {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(13, 15, 19, .7) 0%, rgba(13, 15, 19, .25) 45%, #0d0f13 100%);
}
.hero-content {
  position: relative; z-index: 1; width: 100%;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 140px var(--pad-x) 56px; gap: 26px;
}
.hero .breadcrumb, .article-head .breadcrumb {
  font-family: var(--mono); font-size: 12px; font-weight: 500;
  letter-spacing: .16em; text-transform: uppercase; color: var(--t-dark-label);
}
.hero .breadcrumb a:hover, .article-head .breadcrumb a:hover { color: var(--accent); }
.hero .breadcrumb .sep, .article-head .breadcrumb .sep { margin: 0 10px; opacity: .5; }
.article-head .breadcrumb .current { color: var(--accent); }
.hero h1 {
  font-size: clamp(56px, 8.5vw, 120px); line-height: 1.04; font-weight: 900;
  letter-spacing: -.03em; text-transform: uppercase; max-width: 1200px;
  text-wrap: balance;
}
.hero-home h1 { font-size: clamp(64px, 10.5vw, 150px); line-height: .9; letter-spacing: -.04em; }
.hero h1 .h1-accent { color: var(--accent); display: block; }
/* SEO: Keyword-Zeile bleibt Teil der H1, wird aber als Lede gestaltet */
.hero h1 .h1-sub {
  display: block; margin-top: 26px;
  font-size: 19px; line-height: 1.6; font-weight: 700;
  letter-spacing: 0; text-transform: none; max-width: 560px;
}
.hero-lede { font-size: 20px; line-height: 1.6; color: var(--t-dark-muted); max-width: 620px; }
.hero-lede strong { color: var(--t-dark); }
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }

/* ---- Sektionen ---- */
.section { padding: var(--pad-y) var(--pad-x); }
.section.light { background: var(--bg-light); color: var(--t-light); }
.section.light p { color: var(--t-light-body); }
.section-head { display: grid; grid-template-columns: auto 1fr; gap: 56px; align-items: start; margin-bottom: 64px; }
.section-num {
  font-size: 120px; font-weight: 900; line-height: .85;
  color: var(--accent); letter-spacing: -.04em;
}
.section-title h2 {
  font-size: clamp(34px, 4.4vw, 56px); font-weight: 800; line-height: 1.08;
  letter-spacing: -.03em; text-transform: uppercase; text-wrap: balance;
}
.section-title .eyebrow { margin-bottom: 18px; }
.section-title .sub { margin-top: 20px; font-size: 17px; max-width: 620px; color: var(--t-dark-muted); }
.section.light .section-title .sub { color: var(--t-light-body); }

/* ---- VU-Meter-Stats ---- */
.stats { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 20px; padding: 56px var(--pad-x); border-bottom: 1px solid var(--line-dark); }
.stat { border-left: 1px solid var(--line-dark-strong); padding-left: 22px; }
.stat-num { font-size: 52px; font-weight: 900; line-height: 1.1; letter-spacing: -.02em; }
.stat-label { font-family: var(--mono); font-size: 11px; font-weight: 500; letter-spacing: .18em; text-transform: uppercase; color: var(--t-dark-label); margin: 8px 0 14px; }
.stat-bar { height: 4px; background: rgba(242, 239, 233, .12); position: relative; overflow: hidden; }
.stat-bar i { position: absolute; inset: 0 auto 0 0; width: 62%; background: var(--accent); }
.stat:nth-child(odd) .stat-bar i { animation: meterA 3.6s ease-in-out infinite; }
.stat:nth-child(even) .stat-bar i { animation: meterB 4.4s ease-in-out infinite; }
@keyframes meterA { 0%, 100% { width: 62%; } 40% { width: 84%; } 70% { width: 48%; } }
@keyframes meterB { 0%, 100% { width: 44%; } 30% { width: 70%; } 80% { width: 90%; } }

/* ---- FADER-Karten ---- */
.cards { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 20px; }
.cards.cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.cards.cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.card {
  background: var(--bg-card); border: 1px solid var(--line-dark);
  padding: 30px 26px; display: flex; flex-direction: column; gap: 14px;
  transition: border-color .15s;
}
.card:hover { border-color: var(--accent); }
.card .fader { font-family: var(--mono); font-size: 11px; font-weight: 500; letter-spacing: .2em; text-transform: uppercase; color: var(--accent); }
.card h3 { font-size: 23px; font-weight: 800; line-height: 1.1; letter-spacing: -.01em; text-transform: uppercase; }
.card p { font-size: 14.5px; line-height: 1.6; color: var(--t-dark-muted); }
.card .more {
  margin-top: auto; padding-top: 14px;
  font-family: var(--mono); font-size: 11.5px; font-weight: 500;
  letter-spacing: .18em; text-transform: uppercase; color: var(--t-dark);
  transition: color .15s;
}
.card .more:hover { color: var(--accent); }
.section.light .card { background: var(--bg-white); border-color: var(--line-light); }
.section.light .card:hover { border-color: var(--accent); }
.section.light .card p { color: var(--t-light-body); }
.section.light .card .more { color: var(--t-light); }
.section.light .card .more:hover { color: var(--accent); }

/* ---- Ticker ---- */
.ticker { overflow: hidden; border-top: 1px solid var(--line-dark); border-bottom: 1px solid var(--line-dark); padding: 26px 0; white-space: nowrap; }
.ticker-track { display: inline-flex; gap: 64px; animation: tickerMove 24s linear infinite; will-change: transform; }
.ticker span {
  font-size: 64px; font-weight: 900; text-transform: uppercase; letter-spacing: -.02em;
  color: transparent; -webkit-text-stroke: 1px rgba(242, 239, 233, .35);
}
.ticker span.solid { color: var(--accent); -webkit-text-stroke: 0; }
@keyframes tickerMove { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ---- Cover-Grid ---- */
.covers { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 20px; }
.cover { display: flex; flex-direction: column; gap: 12px; }
.cover img { width: 100%; aspect-ratio: 1; object-fit: cover; border: 1px solid var(--line-dark); transition: border-color .15s; }
.cover:hover img { border-color: var(--accent); }
.cover .name { font-size: 15px; font-weight: 800; text-transform: uppercase; letter-spacing: .01em; }
.cover .desc { font-size: 13px; line-height: 1.55; color: var(--t-dark-muted); }
.cover-cta {
  background: var(--accent); aspect-ratio: 1; display: flex; flex-direction: column;
  justify-content: flex-end; padding: 26px; gap: 10px; transition: background .15s;
}
.cover-cta:hover { background: var(--accent-hover); }
.cover-cta .fader { font-family: var(--mono); font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: rgba(255, 255, 255, .8); }
.cover-cta strong { font-size: 21px; font-weight: 800; line-height: 1.15; text-transform: uppercase; color: #fff; }

/* ---- Studio-Filmstreifen (große Galerie, Scroll-Snap) ---- */
.studio-strip { position: relative; }
.strip-track {
  display: flex; gap: 8px;
  overflow-x: auto; scroll-snap-type: x mandatory;
  scrollbar-width: none; -webkit-overflow-scrolling: touch;
}
.strip-track::-webkit-scrollbar { display: none; }
.strip-track img {
  flex: 0 0 min(880px, 84vw); width: min(880px, 84vw);
  aspect-ratio: 3 / 2; height: auto; object-fit: cover;
  scroll-snap-align: start; border: 1px solid var(--line-light);
}
.strip-nav { display: flex; justify-content: space-between; align-items: center; margin-top: 18px; }
.strip-count { font-family: var(--mono); font-size: 12px; font-weight: 500; letter-spacing: .18em; color: var(--t-light-muted); }
.strip-btns { display: flex; gap: 10px; }
.strip-btn {
  width: 48px; height: 48px; display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--line-light); background: var(--bg-white); color: var(--t-light);
  font-size: 19px; line-height: 1; cursor: pointer;
  transition: border-color .15s, color .15s;
}
.strip-btn:hover { border-color: var(--accent); color: var(--accent); }
.section:not(.light) .strip-track img { border-color: var(--line-dark); }
.section:not(.light) .strip-btn { background: var(--bg-card); color: var(--t-dark); border-color: var(--line-dark); }
.section:not(.light) .strip-count { color: var(--t-dark-label); }

/* ---- Galerie (versetzt) ---- */
.gallery { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 8px; align-items: end; }
.gallery img { width: 100%; object-fit: cover; border: 1px solid var(--line-light); }
.gallery img:nth-child(odd) { aspect-ratio: 3 / 4; }
.gallery img:nth-child(even) { aspect-ratio: 4 / 5; margin-bottom: 32px; }

/* ---- Über-uns / Feature-Grids (Startseite u. a.) ---- */
.about-grid { display: grid; grid-template-columns: 1.25fr 1fr; gap: 56px; align-items: stretch; }
.about-img { width: 100%; height: 560px; object-fit: cover; }
.feature-grid {
  display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px;
  margin-top: 44px; border-top: 1px solid var(--line-light); padding-top: 36px;
}
.feature-grid > div { display: flex; align-items: center; gap: 10px; font-size: 15px; font-weight: 600; }

/* ---- Fakten-Zeile ---- */
.facts { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 20px; padding: 40px var(--pad-x); border-bottom: 1px solid var(--line-dark); }
.fact .k { font-family: var(--mono); font-size: 11px; font-weight: 500; letter-spacing: .18em; text-transform: uppercase; color: var(--t-dark-label); margin-bottom: 8px; }
.fact .v { font-size: 16px; font-weight: 700; }

/* ---- FAQ ---- */
.faq-row { display: grid; grid-template-columns: 70px 480px 1fr; gap: 32px; padding: 34px 0; border-top: 1px solid var(--line-dark); }
.faq-row:last-child { border-bottom: 1px solid var(--line-dark); }
.faq-row .num { font-family: var(--mono); font-size: 13px; font-weight: 500; color: var(--accent); letter-spacing: .12em; }
.faq-row h3 { font-size: 22px; font-weight: 800; line-height: 1.25; letter-spacing: -.01em; }
.faq-row p { font-size: 15.5px; line-height: 1.7; color: var(--t-dark-muted); }
.section.light .faq-row { border-color: var(--line-light); }
.section.light .faq-row p { color: var(--t-light-body); }

/* ---- Kontakt-Block (orange) ---- */
.contact-block { background: var(--accent); color: #fff; padding: 110px var(--pad-x); text-align: center; }
.contact-block .eyebrow { color: #fff; justify-content: center; }
.contact-block h2 {
  font-size: clamp(52px, 8vw, 110px); font-weight: 900; line-height: 1.02;
  letter-spacing: -.03em; text-transform: uppercase; margin: 26px 0;
}
.contact-block p { font-size: 18px; max-width: 560px; margin: 0 auto 40px; color: rgba(255, 255, 255, .88); }
.contact-block .btn-dark { font-size: 16px; padding: 19px 38px; }
.contact-block .contact-mail { display: inline-flex; margin-left: 16px; font-family: var(--mono); font-size: 14px; letter-spacing: .06em; align-items: center; color: #fff; border-bottom: 1px solid rgba(255, 255, 255, .5); padding-bottom: 2px; }
.contact-block .contact-mail:hover { border-color: #fff; }

/* ---- Footer ---- */
.footer { background: var(--bg-dark); border-top: 1px solid var(--line-dark); padding: 72px var(--pad-x) 40px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 56px; margin-bottom: 56px; }
.footer-brand .nav-logo { margin-bottom: 20px; }
.footer-brand p { font-size: 14px; line-height: 1.7; color: var(--t-dark-muted); max-width: 300px; }
.footer-brand address {
  font-style: normal; font-family: var(--mono); font-size: 12.5px;
  line-height: 2; letter-spacing: .04em; color: var(--t-dark-label); margin-top: 18px;
}
.footer-brand address a { color: var(--accent); }
.footer h4 { font-family: var(--mono); font-size: 12px; font-weight: 500; letter-spacing: .2em; text-transform: uppercase; color: var(--t-dark-label); margin-bottom: 22px; }
.footer ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer ul a { font-size: 14px; color: var(--t-dark-muted); transition: color .15s; }
.footer ul a:hover { color: var(--accent); }
.footer-bottom { border-top: 1px solid var(--line-dark); padding-top: 28px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 14px; }
.footer-bottom p, .footer-bottom a { font-family: var(--mono); font-size: 11.5px; letter-spacing: .08em; color: var(--t-dark-foot); }
.footer-bottom a:hover { color: var(--accent); }
.footer-bottom .links { display: flex; gap: 24px; }

/* ==========================================================================
   Artikel (Backstage) — dunkler Kopf, heller Lesebereich
   ========================================================================== */
.article-head { position: relative; min-height: 520px; display: flex; overflow: hidden; }
.article-head .hero-img { filter: saturate(.7) brightness(.45); }
.article-head .head-content {
  position: relative; z-index: 1; width: 100%;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 140px var(--pad-x) 56px; gap: 22px;
}
.article-meta { font-family: var(--mono); font-size: 12px; font-weight: 500; letter-spacing: .18em; text-transform: uppercase; color: var(--accent); }
.article-head h1 { font-size: clamp(38px, 5.5vw, 76px); line-height: 1.04; font-weight: 900; letter-spacing: -.03em; text-transform: uppercase; max-width: 1100px; text-wrap: balance; overflow-wrap: break-word; hyphens: auto; }
.article-body { background: var(--bg-light); color: var(--t-light-article); padding: 80px var(--pad-x) 100px; }
.article-inner { max-width: 860px; margin: 0 auto; }
.article-inner .lede { font-size: 21px; line-height: 1.6; font-weight: 500; color: var(--t-light); margin-bottom: 40px; }
.article-inner p { font-size: 17px; line-height: 1.75; margin-bottom: 22px; }
.article-inner h2 { overflow-wrap: break-word; hyphens: auto;
  font-size: 34px; font-weight: 800; line-height: 1.1; letter-spacing: -.02em;
  text-transform: uppercase; color: var(--t-light); margin: 56px 0 20px;
}
.article-inner h3 { font-size: 21px; font-weight: 800; color: var(--t-light); margin: 36px 0 12px; }
.article-inner .step-label {
  font-family: var(--mono); font-size: 12px; font-weight: 500;
  letter-spacing: .2em; text-transform: uppercase; color: var(--accent);
  margin: 44px 0 10px;
}
.article-inner a { color: var(--accent); font-weight: 600; }
.article-inner a:hover { text-decoration: underline; }
.article-inner ul { list-style: none; border-left: 2px solid var(--accent); padding-left: 26px; margin: 26px 0; }
.article-inner ul li { position: relative; padding-left: 20px; margin-bottom: 12px; font-size: 16px; line-height: 1.65; }
.article-inner ul li::before { content: "\25B8"; position: absolute; left: 0; color: var(--accent); }
.article-inner .small { font-size: 13.5px; color: var(--t-light-muted); }
.article-inner .spotify-embed { margin: 32px 0; }
.article-inner .spotify-embed iframe { display: block; width: 100%; border: 0; }
.article-inner .video-embed { margin: 32px 0; position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; }
.article-inner .video-embed iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: 0; }
.article-cta { margin-top: 56px; padding: 36px; background: var(--bg-white); border: 1px solid var(--line-light); }
.article-cta h2 { margin-top: 0; }
.article-back { display: inline-block; margin-top: 48px; font-family: var(--mono); font-size: 12.5px; font-weight: 500; letter-spacing: .16em; text-transform: uppercase; color: var(--t-light); }
.article-back:hover { color: var(--accent); }
.article-back::before { content: "\2190\00a0\00a0"; }

/* ---- Backstage-Liste ---- */
.post-list { border-top: 1px solid var(--line-dark); }
.post-row {
  display: grid; grid-template-columns: 170px 1fr auto; gap: 40px; align-items: baseline;
  padding: 34px 0; border-bottom: 1px solid var(--line-dark);
  transition: padding-left .15s;
}
.post-row:hover { padding-left: 16px; }
.post-row .date { font-family: var(--mono); font-size: 12px; font-weight: 500; letter-spacing: .14em; color: var(--t-dark-label); text-transform: uppercase; }
.post-row h2 { font-size: 24px; font-weight: 800; line-height: 1.2; letter-spacing: -.01em; text-transform: uppercase; transition: color .15s; }
.post-row:hover h2 { color: var(--accent); }
.post-row .teaser { font-size: 14.5px; color: var(--t-dark-muted); margin-top: 8px; text-transform: none; font-weight: 400; letter-spacing: 0; line-height: 1.6; }
.post-row .arrow { font-size: 22px; color: var(--accent); }

/* ---- Kontakt-Seite ---- */
.contact-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 72px; align-items: start; }
.contact-side .k { font-family: var(--mono); font-size: 11px; font-weight: 500; letter-spacing: .18em; text-transform: uppercase; color: var(--t-dark-label); margin-bottom: 6px; }
.contact-side .v { font-size: 17px; font-weight: 600; margin-bottom: 28px; }
.contact-side .v a:hover { color: var(--accent); }
.typeform-shell { background: var(--bg-card); border: 1px solid var(--line-dark); padding: 8px; min-height: 520px; }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1080px) {
  :root { --pad-x: 32px; --pad-y: 72px; }
  .about-grid { grid-template-columns: 1fr; gap: 36px; }
  .about-img { height: 420px; }
  .feature-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .cards, .cards.cols-2, .covers { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .cards.cols-3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .stats, .facts { grid-template-columns: repeat(2, minmax(0, 1fr)); row-gap: 36px; }
  .gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .gallery img:nth-child(even) { margin-bottom: 0; }
  .faq-row { grid-template-columns: 56px 1fr; }
  .faq-row p { grid-column: 2; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .section-head { gap: 32px; }
  .section-num { font-size: 84px; }
}
@media (max-width: 760px) {
  :root { --pad-x: 20px; --pad-y: 56px; }
  .about-img { height: 280px; }
  .feature-grid { grid-template-columns: 1fr; }
  .nav { padding: 0 20px; }
  .nav-links {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--bg-dark-2); border-bottom: 1px solid var(--line-dark);
    padding: 12px 0;
  }
  .nav-links.open { display: flex; }
  .nav-links > li > a { display: block; padding: 15px 24px; font-size: 15px; }
  .nav-links .nav-cta { margin: 12px 24px 8px; text-align: center; }
  .nav-panel {
    position: static; opacity: 1; visibility: visible; transform: none;
    box-shadow: none; border: 0; background: transparent; padding-left: 16px;
  }
  .nav-drop > a::after { display: none; }
  .nav-burger { display: flex; }
  .hero, .hero.hero-home { min-height: 82vh; }
  .hero h1, .hero-home h1 { font-size: clamp(30px, 11.4vw, 46px); }
  .hero h1 .h1-sub { font-size: 16px; margin-top: 18px; }
  .hero-content { padding: 120px 20px 40px; }
  .cards, .cards.cols-2, .cards.cols-3, .covers, .stats, .facts, .gallery { grid-template-columns: 1fr; }
  .covers { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .section-head { grid-template-columns: 1fr; gap: 12px; }
  .section-num { font-size: 64px; }
  .ticker span { font-size: 38px; }
  .post-row { grid-template-columns: 1fr; gap: 8px; }
  .post-row .arrow { display: none; }
  .article-head h1 { font-size: clamp(30px, 9vw, 44px); }
  .article-body { padding: 56px 20px 72px; }
  .contact-block h2 { font-size: clamp(40px, 13vw, 64px); }
  .contact-block .contact-mail { margin: 18px 0 0; }
  .footer-grid { grid-template-columns: 1fr; }
}

/* ---- Reduced Motion ---- */
@media (prefers-reduced-motion: reduce) {
  .rec-dot, .stat-bar i, .ticker-track { animation: none !important; }
  html { scroll-behavior: auto; }
}
