/* ============================================================
   Kanzlei Schenkel — Stylesheet
   Editorial, zurückhaltend, ohne Framework.
   ============================================================ */

/* ---------- Fonts (lokal, DSGVO-konform) ---------- */
@font-face {
  font-family: "Source Serif 4";
  src: url("../fonts/SourceSerif4-400.woff2") format("woff2");
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Source Serif 4";
  src: url("../fonts/SourceSerif4-600.woff2") format("woff2");
  font-weight: 600; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Source Serif 4";
  src: url("../fonts/SourceSerif4-700.woff2") format("woff2");
  font-weight: 700; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-400.woff2") format("woff2");
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-500.woff2") format("woff2");
  font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-600.woff2") format("woff2");
  font-weight: 600; font-style: normal; font-display: swap;
}

/* ---------- Grundgerüst ---------- */
:root {
  --paper: #f6f4ef;
  --paper-dark: #efece4;
  --ink: #22262b;
  --ink-soft: #4c5157;
  --muted: #75716a;
  --navy: #285070;
  --navy-deep: #183043;
  --brass: #a07c46;
  --brass-soft: #b9995f;
  --line: #ddd7ca;
  --line-dark: #2e5170;
  --serif: "Source Serif 4", Georgia, "Times New Roman", serif;
  --sans: "Inter", -apple-system, "Segoe UI", Arial, sans-serif;
  --wrap: 1140px;
}

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

html { scroll-behavior: smooth; }

html, body { overflow-x: hidden; }

body {
  font-family: var(--sans);
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--navy); text-decoration: none; }
a:hover { color: var(--brass); }

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 1.5rem; }

/* ---------- Typografie ---------- */
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 600; line-height: 1.25; color: var(--navy); }

h1 { font-size: clamp(2.1rem, 4.5vw, 3.4rem); font-weight: 700; letter-spacing: -0.01em; }
h2 { font-size: clamp(1.6rem, 3vw, 2.3rem); }
h3 { font-size: 1.3rem; }

.overline {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brass);
  display: block;
  margin-bottom: 0.9rem;
}

.lead { font-size: 1.2rem; line-height: 1.75; color: var(--ink-soft); }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(246, 244, 239, 0.96);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.site-header.scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 1px 12px rgba(34, 38, 43, 0.05);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.1rem 1.5rem;
  max-width: var(--wrap); margin: 0 auto;
}

.brand { display: flex; flex-direction: column; line-height: 1.2; }
.brand-logo { height: 4.4rem; width: auto; display: block; }
@media (max-width: 680px) { .brand-logo { height: 3rem; } }
.brand-name {
  font-family: var(--serif);
  font-size: 1.45rem; font-weight: 700;
  letter-spacing: 0.02em; color: var(--navy);
}
.brand-name span { color: var(--brass); }
.brand-sub {
  font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--muted); margin-top: 0.15rem;
}

.main-nav ul { display: flex; gap: 1.9rem; list-style: none; align-items: center; }
.main-nav a {
  font-size: 0.95rem; font-weight: 500; color: var(--ink);
  padding: 0.3rem 0; border-bottom: 2px solid transparent;
  transition: border-color 0.2s ease, color 0.2s ease;
}
.main-nav a:hover { color: var(--navy); border-bottom-color: var(--brass); }
.main-nav a.active { color: var(--navy); border-bottom-color: var(--brass); }
.main-nav a.nav-cta {
  border: 1px solid var(--navy);
  padding: 0.55rem 1.2rem; border-radius: 2px;
  color: var(--navy); font-weight: 600;
}
.main-nav a.nav-cta:hover { background: var(--navy); color: #fff; }

.nav-toggle {
  display: none; background: none; border: none; cursor: pointer;
  width: 2.2rem; height: 2.2rem; position: relative;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: ""; position: absolute; left: 0.35rem; right: 0.35rem;
  height: 2px; background: var(--navy); transition: transform 0.25s ease, opacity 0.25s ease;
}
.nav-toggle span { top: 50%; }
.nav-toggle span::before { top: -7px; }
.nav-toggle span::after { top: 7px; }

/* ---------- Hero ---------- */
.hero { padding: 4.5rem 0 5rem; overflow: hidden; }
.hero-grid {
  display: grid; grid-template-columns: 1.05fr 0.95fr;
  gap: 4rem; align-items: center;
}
.hero-text .lead { margin: 1.6rem 0 2.4rem; max-width: 34rem; }
.hero-media { position: relative; }
.hero-media img {
  width: 100%; aspect-ratio: 5 / 4; object-fit: cover;
  border-radius: 2px;
}
.hero-media::after {
  content: ""; position: absolute; inset: 1.2rem -1.2rem -1.2rem 1.2rem;
  border: 1px solid var(--brass-soft); border-radius: 2px; z-index: -1;
}
.hero-facts {
  display: flex; gap: 2.5rem; margin-top: 2.8rem;
  padding-top: 1.6rem; border-top: 1px solid var(--line);
}
.hero-fact strong {
  display: block; font-family: var(--serif);
  font-size: 1.7rem; font-weight: 700; color: var(--navy);
}
.hero-fact span { font-size: 0.88rem; color: var(--muted); }

/* ---------- Hero mit Hintergrund-Video ---------- */
.hero-video-bg {
  position: relative; overflow: hidden;
  background: var(--navy-deep);
  padding: 6.5rem 0 5.5rem;
}
.hero-bg-video {
  position: absolute; inset: 0; z-index: 0;
  width: 100%; height: 100%; object-fit: cover;
  opacity: 0.95;
}
.hero-video-bg::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(100deg,
    rgba(24, 48, 67, 0.68) 15%,
    rgba(24, 48, 67, 0.22) 60%,
    rgba(24, 48, 67, 0.35) 100%);
}
.hero-video-bg .hero-text { text-shadow: 0 1px 14px rgba(24, 48, 67, 0.55); }
.hero-video-bg .wrap { position: relative; z-index: 2; }
.hero-video-bg .hero-text { max-width: 40rem; }
.hero-video-bg h1 { color: #fff; }
.hero-video-bg .lead { color: #c6cdd6; }
.hero-video-bg .overline { color: var(--brass-soft); }
.hero-video-bg .btn-primary { background: var(--brass); border-color: var(--brass); }
.hero-video-bg .btn-primary:hover { background: var(--brass-soft); border-color: var(--brass-soft); }
.hero-video-bg .btn-ghost { border-color: rgba(246, 244, 239, 0.7); color: #f6f4ef; }
.hero-video-bg .btn-ghost:hover { background: #f6f4ef; color: var(--navy); }
.hero-video-bg .hero-facts { border-top-color: var(--line-dark); }
.hero-video-bg .hero-fact strong { color: #fff; }
.hero-video-bg .hero-fact span { color: #97a3b1; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block; font-weight: 600; font-size: 0.98rem;
  padding: 0.85rem 1.9rem; border-radius: 2px;
  border: 1px solid var(--navy);
  transition: background 0.2s ease, color 0.2s ease;
}
.btn-primary { background: var(--navy); color: #fff; }
.btn-primary:hover { background: var(--navy-deep); color: #fff; }
.btn-ghost { color: var(--navy); background: transparent; }
.btn-ghost:hover { background: var(--navy); color: #fff; }
.btn-row { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ---------- Sektionen ---------- */
.section { padding: 5rem 0; }
.section-dark { background: var(--navy); color: #cfd6de; }
.section-dark h2, .section-dark h3 { color: #fff; }
.section-dark .overline { color: var(--brass-soft); }
.section-tinted { background: var(--paper-dark); }

.section-head { max-width: 44rem; margin-bottom: 3rem; }
.section-head.centered { margin-left: auto; margin-right: auto; text-align: center; }
.section-head p { margin-top: 1rem; color: var(--ink-soft); }
.section-dark .section-head p { color: #aeb8c4; }

/* ---------- Rechtsgebiete ---------- */
.fields-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem;
}
.field-card {
  background: #fff; border: 1px solid var(--line);
  padding: 2rem 1.8rem 1.8rem; border-radius: 2px;
  display: flex; flex-direction: column;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.field-card:hover { border-color: var(--brass-soft); transform: translateY(-3px); }
.field-num {
  font-family: var(--serif); font-size: 0.95rem;
  color: var(--brass); letter-spacing: 0.05em; margin-bottom: 1.1rem;
}
.field-card h3 { margin-bottom: 0.7rem; font-size: 1.18rem; }
.field-card p { font-size: 0.95rem; color: var(--ink-soft); flex: 1; }
.field-card .more {
  margin-top: 1.3rem; font-size: 0.9rem; font-weight: 600; color: var(--navy);
}
.field-card .more::after { content: " →"; color: var(--brass); }

/* ---------- Rechtsgebiete: Editorial-Liste ---------- */
.fields-list { border-top: 1px solid var(--line); }
.fields-item {
  display: grid;
  grid-template-columns: 4.5rem 1.1fr 1.3fr 2.5rem;
  gap: 2rem; align-items: center;
  padding: 1.9rem 0.8rem;
  border-bottom: 1px solid var(--line);
  color: inherit;
  transition: background 0.25s ease, padding-left 0.25s ease;
}
.fields-item:hover { background: #fff; padding-left: 1.6rem; }
.fields-item .fi-num {
  font-family: var(--serif); font-size: 1.05rem;
  color: var(--brass); letter-spacing: 0.05em;
}
.fields-item h3 { font-size: 1.35rem; font-weight: 600; }
.fields-item p { font-size: 0.95rem; color: var(--ink-soft); margin: 0; }
.fields-item .fi-arrow {
  font-family: var(--serif); font-size: 1.4rem; color: var(--line);
  transition: color 0.25s ease, transform 0.25s ease;
  justify-self: end;
}
.fields-item:hover .fi-arrow { color: var(--brass); transform: translateX(4px); }

/* ---------- Standort ---------- */
.standort-gallery { display: grid; grid-template-columns: 1.25fr 0.75fr; gap: 1.2rem; margin-top: 2.6rem; }
.standort-gallery figure { position: relative; overflow: hidden; border-radius: 2px; margin: 0; }
.standort-gallery img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 3 / 2; transition: transform 0.5s ease; }
.standort-gallery figure:hover img { transform: scale(1.02); }
.standort-gallery figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 1.6rem 1.2rem 0.9rem;
  background: linear-gradient(transparent, rgba(24, 48, 67, 0.65));
  color: #fff; font-size: 0.82rem; letter-spacing: 0.04em;
}

/* ---------- Akut-Panel (Insolvenzberatung) ---------- */
.priority-panel {
  display: flex; gap: 1.6rem; align-items: flex-start;
  background: #fff; border: 1px solid var(--line); border-left: 3px solid var(--brass);
  padding: 1.8rem 2rem; border-radius: 2px; margin-bottom: 2.5rem;
}
.priority-panel .pp-icon { flex: none; width: 2.6rem; height: 2.6rem; display: grid; place-items: center; background: var(--paper-dark); border-radius: 50%; color: var(--brass); }
.priority-panel h3 { margin-bottom: 0.3rem; }
.priority-panel p { font-size: 0.95rem; color: var(--ink-soft); }
.priority-panel .pp-phone { font-family: var(--serif); font-size: 1.25rem; font-weight: 700; color: var(--navy); white-space: nowrap; }
.priority-panel .pp-phone small { display: block; font-family: var(--sans); font-size: 0.75rem; font-weight: 500; color: var(--muted); letter-spacing: 0.08em; text-transform: uppercase; margin-top: 0.2rem; }

/* ---------- Badge-Bilder im Footer ---------- */
.badge img { width: 2.6rem; height: 2.6rem; border-radius: 50%; display: block; }

/* ---------- Logo-Leiste im Footer ---------- */
.footer-logos {
  border-top: 1px solid var(--line-dark);
  padding: 2.2rem 0;
  display: flex; flex-wrap: wrap; gap: 1.6rem 3.2rem;
  align-items: center; justify-content: center;
}
.footer-logos img {
  height: 2.7rem; width: auto; display: block; flex: none;
  opacity: 0.92; transition: opacity 0.2s ease;
}
.footer-logos img:hover { opacity: 1; }
@media (max-width: 680px) {
  .footer-logos { gap: 1.6rem 2rem; }
  .footer-logos img { height: 2.2rem; }
}

/* ---------- Mitgliedschaften (Impressum) ---------- */
.mitgliedschaften {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1.2rem; margin-top: 1.6rem; max-width: 52rem;
}
.mitglied-card {
  display: flex; gap: 1.5rem; align-items: center;
  background: #fff; border: 1px solid var(--line);
  padding: 1.4rem 1.6rem; border-radius: 2px;
}
.mitglied-card img { max-height: 3.2rem; max-width: 8.5rem; width: auto; height: auto; flex: none; }
.mitglied-card img[src$=".svg"] { height: 2.7rem; max-width: none; }
.mitglied-card > div { min-width: 0; }
.mitglied-card h3 { font-size: 1rem; margin-bottom: 0.2rem; overflow-wrap: break-word; }
.mitglied-card p { font-size: 0.85rem; color: var(--muted); margin: 0; overflow-wrap: break-word; hyphens: auto; }
@media (max-width: 680px) {
  .mitgliedschaften { grid-template-columns: 1fr; }
}

/* ---------- Ablauf ---------- */
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }
.step { position: relative; padding-top: 1.4rem; }
.step::before {
  content: ""; position: absolute; top: 0; left: 0;
  width: 2.4rem; height: 2px; background: var(--brass);
}
.step-num {
  font-family: var(--serif); font-size: 2rem; font-weight: 700;
  color: var(--brass-soft); display: block; margin-bottom: 0.5rem;
}
.section-dark .step p { font-size: 0.94rem; color: #aeb8c4; margin-top: 0.4rem; }
.section-dark .split-text p { color: #c6cdd6; }
.section-dark .checklist li { color: #c6cdd6; }
.section-dark .checklist strong, .section-dark .split-text strong { color: #fff; }

/* ---------- Ablauf: Timeline ---------- */
.timeline { position: relative; max-width: 56rem; margin: 0 auto; }
.timeline::before {
  content: ""; position: absolute; left: 50%; top: 0.4rem; bottom: 0.4rem;
  width: 1px; background: rgba(246, 244, 239, 0.3); transform: translateX(-0.5px);
}
.tl-item { position: relative; width: 50%; padding: 0 3.2rem 3rem 0; text-align: right; }
.tl-item:nth-child(even) { margin-left: 50%; padding: 0 0 3rem 3.2rem; text-align: left; }
.tl-item:last-child { padding-bottom: 0.4rem; }
.tl-num {
  position: absolute; top: -0.2rem; right: -1.4rem;
  width: 2.8rem; height: 2.8rem; border-radius: 50%;
  background: var(--brass); color: #fff;
  display: grid; place-items: center;
  font-family: var(--serif); font-size: 1.25rem; font-weight: 700;
  box-shadow: 0 0 0 6px var(--navy);
}
.tl-item:nth-child(even) .tl-num { right: auto; left: -1.4rem; }
.tl-item h3 { color: #fff; margin-bottom: 0.4rem; }
.tl-item p { font-size: 0.96rem; color: #aeb8c4; }
.tl-hint {
  text-align: center; margin-top: 2.6rem;
  font-family: var(--serif); font-style: italic;
  font-size: 1.1rem; color: var(--brass-soft);
}
@media (max-width: 680px) {
  .timeline::before { left: 1.4rem; }
  .tl-item, .tl-item:nth-child(even) {
    width: 100%; margin-left: 0;
    padding: 0 0 2.4rem 3.6rem; text-align: left;
  }
  .tl-item .tl-num, .tl-item:nth-child(even) .tl-num { left: 0; right: auto; }
}

/* ---------- Team ---------- */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.team-card { background: none; }
.team-card figure { position: relative; overflow: hidden; border-radius: 2px; }
.team-card img {
  aspect-ratio: 3 / 4; object-fit: cover; width: 100%;
  filter: saturate(0.92);
  transition: transform 0.4s ease;
}
.team-card:hover img { transform: scale(1.025); }
.team-card h3 { margin-top: 1.2rem; font-size: 1.15rem; }
.team-role { font-size: 0.88rem; color: var(--brass); font-weight: 600; letter-spacing: 0.04em; }
.team-card p { font-size: 0.93rem; color: var(--ink-soft); margin-top: 0.6rem; }
.team-contact { margin-top: 0.6rem; font-size: 0.9rem; }

/* ---------- Zweispalter ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.split-media img { border-radius: 2px; aspect-ratio: 4 / 3; object-fit: cover; }
.split-media { position: relative; }
.split-media.framed::after {
  content: ""; position: absolute; inset: 1.2rem -1.2rem -1.2rem 1.2rem;
  border: 1px solid var(--brass-soft); border-radius: 2px; z-index: -1;
}
.split-text h2 { margin-bottom: 1.2rem; }
.split-text p + p { margin-top: 1rem; }
.split-text p { color: var(--ink-soft); }

.checklist { list-style: none; margin-top: 1.5rem; }
.checklist li {
  position: relative; padding-left: 1.9rem; margin-bottom: 0.8rem; color: var(--ink-soft);
}
.checklist li::before {
  content: "—"; position: absolute; left: 0; color: var(--brass); font-weight: 600;
}

/* ---------- Downloads ---------- */
.downloads-list { display: grid; gap: 1rem; max-width: 52rem; }
.download-item {
  display: flex; align-items: center; gap: 1.4rem;
  background: #fff; border: 1px solid var(--line);
  padding: 1.3rem 1.6rem; border-radius: 2px;
  transition: border-color 0.2s ease;
}
.download-item:hover { border-color: var(--brass-soft); }
.download-icon {
  flex: none; width: 2.7rem; height: 2.7rem;
  display: grid; place-items: center;
  background: var(--paper-dark); border-radius: 2px; color: var(--navy);
}
.download-body { flex: 1; }
.download-body h3 { font-size: 1.05rem; margin-bottom: 0.15rem; }
.download-body p { font-size: 0.88rem; color: var(--muted); }
.download-meta { font-size: 0.8rem; color: var(--muted); white-space: nowrap; }
.download-item .btn { padding: 0.55rem 1.2rem; font-size: 0.88rem; white-space: nowrap; }

/* ---------- Kontakt ---------- */
.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 4rem; }
.contact-info dl { margin-top: 1.5rem; }
.contact-info dt {
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--brass); margin-top: 1.4rem;
}
.contact-info dd { margin-top: 0.25rem; color: var(--ink-soft); }

.contact-form { background: #fff; border: 1px solid var(--line); padding: 2.4rem; border-radius: 2px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.form-group { margin-bottom: 1.2rem; }
.form-group label {
  display: block; font-size: 0.85rem; font-weight: 600;
  margin-bottom: 0.4rem; color: var(--navy);
}
.form-group input, .form-group select, .form-group textarea {
  width: 100%; font: inherit; font-size: 0.95rem;
  padding: 0.7rem 0.9rem; border: 1px solid var(--line);
  border-radius: 2px; background: var(--paper);
  color: var(--ink);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--brass);
}
.form-note { font-size: 0.8rem; color: var(--muted); margin-top: 1rem; }

/* ---------- CTA-Band ---------- */
.cta-band { background: var(--navy); color: #fff; padding: 4rem 0; }
.cta-band-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 2rem; flex-wrap: wrap;
}
.cta-band h2 { color: #fff; margin-bottom: 0.4rem; }
.cta-band p { color: #aeb8c4; }
.cta-band .btn { border-color: var(--brass-soft); background: var(--brass); color: #fff; }
.cta-band .btn:hover { background: var(--brass-soft); }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-deep); color: #97a3b1; font-size: 0.92rem; }
.footer-main {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 3rem; padding: 4rem 0 3rem;
}
.footer-brand .brand-name { color: #fff; font-size: 1.3rem; }
.footer-brand .brand-sub { color: #97a3b1; }
.footer-brand p { margin-top: 1rem; line-height: 1.65; }
.site-footer h4 {
  color: #fff; font-family: var(--sans); font-size: 0.8rem;
  font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  margin-bottom: 1.1rem;
}
.site-footer ul { list-style: none; }
.site-footer li { margin-bottom: 0.55rem; }
.site-footer a { color: #97a3b1; }
.site-footer a:hover { color: #fff; }

.footer-badges {
  border-top: 1px solid var(--line-dark);
  padding: 1.8rem 0;
  display: flex; flex-wrap: wrap; gap: 1rem 2.2rem;
  align-items: center; justify-content: center;
}
.badge {
  display: inline-flex; align-items: center; gap: 0.55rem;
  font-size: 0.8rem; font-weight: 500; letter-spacing: 0.03em;
  color: #aeb8c4;
}
.badge svg { width: 1.15rem; height: 1.15rem; stroke: var(--brass-soft); flex: none; }

.footer-legal {
  border-top: 1px solid var(--line-dark);
  padding: 1.4rem 0;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 0.8rem;
  font-size: 0.82rem; color: #6d7986;
}
.footer-legal a { color: #6d7986; margin-left: 1.4rem; }
.footer-legal a:first-child { margin-left: 0; }

/* ---------- Unterseiten ---------- */
.page-head {
  padding: 4rem 0 3rem;
  border-bottom: 1px solid var(--line);
  background: var(--paper-dark);
}
.page-head h1 { max-width: 46rem; }
.page-head p { max-width: 40rem; margin-top: 1.2rem; color: var(--ink-soft); font-size: 1.13rem; }

.prose { max-width: 46rem; }
.prose h2 { margin: 2.6rem 0 1rem; font-size: 1.5rem; }
.prose h3 { margin: 2rem 0 0.7rem; }
.prose p + p { margin-top: 1rem; }
.prose p { color: var(--ink-soft); }
.prose ul { margin: 1rem 0 1rem 1.2rem; color: var(--ink-soft); }
.prose li { margin-bottom: 0.4rem; }

/* ---------- Video-Player „Das sind wir" ---------- */
.video-player {
  position: relative; max-width: 960px; margin: 0 auto;
  border-radius: 3px; overflow: hidden;
  background: var(--navy-deep);
  box-shadow: 0 18px 50px rgba(24, 48, 67, 0.28);
  cursor: pointer;
}
.video-player video { width: 100%; display: block; }
.video-player::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(rgba(24, 48, 67, 0.05), rgba(24, 48, 67, 0.35));
  transition: opacity 0.35s ease; pointer-events: none;
}
.vp-play {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 6rem; height: 6rem; border-radius: 50%;
  border: none; cursor: pointer;
  background: rgba(246, 244, 239, 0.94);
  display: grid; place-items: center;
  transition: transform 0.25s ease, background 0.25s ease;
  box-shadow: 0 8px 30px rgba(24, 48, 67, 0.4);
}
.vp-play::after {
  content: ""; position: absolute; inset: -0.7rem;
  border: 1px solid rgba(246, 244, 239, 0.55); border-radius: 50%;
}
.vp-play svg { width: 2rem; height: 2rem; fill: var(--navy); margin-left: 0.3rem; }
.video-player:hover .vp-play { transform: translate(-50%, -50%) scale(1.07); background: var(--brass); }
.video-player:hover .vp-play svg { fill: #fff; }
.vp-label {
  position: absolute; left: 50%; top: calc(50% + 4.6rem);
  transform: translateX(-50%);
  font-size: 0.82rem; font-weight: 600; letter-spacing: 0.16em;
  text-transform: uppercase; color: #f6f4ef;
  text-shadow: 0 1px 10px rgba(24, 48, 67, 0.7);
  pointer-events: none; transition: opacity 0.35s ease;
}
.video-player.playing::before,
.video-player.playing .vp-play,
.video-player.playing .vp-label { opacity: 0; pointer-events: none; }
.video-player.playing { cursor: default; }
.video-player--compact { max-width: none; box-shadow: 0 10px 32px rgba(24, 48, 67, 0.18); }
.video-player--compact .vp-play { width: 4.4rem; height: 4.4rem; }
.video-player--compact .vp-play svg { width: 1.5rem; height: 1.5rem; }

/* ---------- Bild-Banner mit Text im Bild ---------- */
.image-banner {
  position: relative; overflow: hidden; border-radius: 3px;
  min-height: 420px; display: flex; align-items: center;
}
.image-banner > img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover;
}
.image-banner::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(95deg,
    rgba(246, 244, 239, 0.95) 0%,
    rgba(246, 244, 239, 0.84) 34%,
    rgba(246, 244, 239, 0.08) 68%,
    rgba(246, 244, 239, 0.22) 100%);
}
.image-banner--right { justify-content: flex-end; }
.image-banner--right::after {
  background: linear-gradient(265deg,
    rgba(246, 244, 239, 0.95) 0%,
    rgba(246, 244, 239, 0.84) 34%,
    rgba(246, 244, 239, 0.08) 68%,
    rgba(246, 244, 239, 0.22) 100%);
}
.ib-text { position: relative; z-index: 2; max-width: 33rem; padding: 3.2rem 3rem; }
.ib-text h2 { margin-bottom: 1rem; }
.ib-text p { color: var(--ink-soft); }

.image-banner--dark::after {
  background: linear-gradient(95deg,
    rgba(24, 48, 67, 0.93) 0%,
    rgba(24, 48, 67, 0.8) 34%,
    rgba(24, 48, 67, 0.12) 68%,
    rgba(24, 48, 67, 0.3) 100%);
}
.image-banner--dark.image-banner--right::after {
  background: linear-gradient(265deg,
    rgba(24, 48, 67, 0.93) 0%,
    rgba(24, 48, 67, 0.8) 34%,
    rgba(24, 48, 67, 0.12) 68%,
    rgba(24, 48, 67, 0.3) 100%);
}
.image-banner--dark .ib-text h2 { color: #fff; }
.image-banner--dark .ib-text p { color: #c6cdd6; }
.image-banner--dark .ib-text .overline { color: var(--brass-soft); }
.image-banner--dark .checklist li { color: #c6cdd6; }
.image-banner--dark .btn-ghost { border-color: rgba(246, 244, 239, 0.7); color: #f6f4ef; }
.image-banner--dark .btn-ghost:hover { background: #f6f4ef; color: var(--navy); }
@media (max-width: 680px) {
  .image-banner { min-height: 0; }
  .image-banner::after, .image-banner--right::after { background: rgba(246, 244, 239, 0.9); }
  .ib-text { padding: 2rem 1.5rem; }
}

/* ---------- Video-Bühne mit Text im Bild ---------- */
.video-stage {
  position: relative; overflow: hidden; border-radius: 3px;
  background: var(--navy-deep);
  box-shadow: 0 18px 50px rgba(24, 48, 67, 0.25);
}
.video-stage video { width: 100%; display: block; }
.vs-overlay {
  position: absolute; inset: 0; z-index: 2;
  display: flex; align-items: center;
  background: linear-gradient(95deg,
    rgba(246, 244, 239, 0.96) 0%,
    rgba(246, 244, 239, 0.86) 34%,
    rgba(246, 244, 239, 0.08) 68%,
    rgba(246, 244, 239, 0.2) 100%);
  opacity: 1; transition: opacity 1.4s ease;
  cursor: pointer;
}
.vs-text { max-width: 32rem; padding: 3.2rem 3rem; }
.vs-text h2 { margin-bottom: 1rem; }
.vs-text p { color: var(--ink-soft); }
.vs-credit { display: block; margin-top: 1.4rem; font-size: 0.78rem; color: var(--muted); letter-spacing: 0.06em; }
.vs-overlay .vp-play {
  position: absolute; right: 14%; top: 50%;
  transform: translateY(-50%);
}
.vs-overlay:hover .vp-play { transform: translateY(-50%) scale(1.07); background: var(--brass); }
.vs-overlay:hover .vp-play svg { fill: #fff; }
.video-stage.playing .vs-overlay { opacity: 0; pointer-events: none; }
@media (max-width: 680px) {
  .vs-overlay { background: rgba(246, 244, 239, 0.9); }
  .vs-text { padding: 1.6rem 1.2rem; }
  .vs-text p { display: none; }
  .vs-overlay .vp-play { right: 6%; width: 3.6rem; height: 3.6rem; }
}

/* ---------- Unterseiten-Header mit Hintergrundbild ---------- */
.page-head.has-bg {
  background-size: cover;
  background-position: center;
  border-bottom: 1px solid var(--line);
  padding: 5.5rem 0 4.5rem;
}

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .hero-grid, .split, .contact-grid { grid-template-columns: minmax(0, 1fr); gap: 2.5rem; }
  .hero-grid > *, .split > *, .contact-grid > * { min-width: 0; }
  .fields-grid { grid-template-columns: 1fr 1fr; }
  .fields-item { grid-template-columns: 3rem 1fr 2rem; }
  .fields-item p { grid-column: 2; }
  .standort-gallery { grid-template-columns: 1fr; }
  .priority-panel { flex-wrap: wrap; }
  .steps-grid { grid-template-columns: 1fr 1fr; gap: 2.4rem; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .hero-media::after, .split-media.framed::after { display: none; }
}

@media (max-width: 680px) {
  .main-nav {
    position: fixed; inset: 0; top: 4.2rem;
    background: var(--paper); padding: 2rem 1.5rem;
    transform: translateX(100%); visibility: hidden;
    transition: transform 0.3s ease, visibility 0.3s ease;
    border-top: 1px solid var(--line);
  }
  .main-nav.open { transform: none; visibility: visible; }
  .main-nav ul { flex-direction: column; align-items: flex-start; gap: 1.3rem; }
  .main-nav a { font-size: 1.15rem; }
  .nav-toggle { display: block; }
  body.nav-open { overflow: hidden; }

  .fields-grid, .steps-grid, .team-grid { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr; gap: 2rem; }
  .section { padding: 3.5rem 0; }
  .hero { padding: 3rem 0; }
  .hero-facts { gap: 1.6rem; flex-wrap: wrap; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .download-item { flex-wrap: wrap; }
  .footer-legal { flex-direction: column; }
  .footer-legal a { margin-left: 0; margin-right: 1.4rem; }
}
