/* ============================================
   SK Management Consulting — V1 Gold Editorial
   Shared stylesheet for all mockup pages
   ============================================ */

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

:root {
  /* V1 Gold Editorial */
  --bg: #ffffff;
  --bg-warm: #faf8f5;
  --bg-section: #f5f2ed;
  --bg-card: #ffffff;
  --bg-dark: #1a1714;
  --bg-dark-mid: #252018;

  --border: #e8e2d8;
  --border-light: #f0ebe3;
  --border-accent: rgba(184, 151, 106, 0.25);

  --gold: #b8976a;
  --gold-light: #cdb48e;
  --gold-dark: #9a7d56;
  --gold-text: #7d6240; /* Gold fuer Kleintext auf hellem Grund, Kontrast >= 5:1 (WCAG AA) */
  --gold-bg: rgba(184, 151, 106, 0.06);
  --gold-bg-strong: rgba(184, 151, 106, 0.1);

  --t1: #1a1a1a;
  --t2: #4a4a4a;
  --t3: #6a6a6a; /* vorher #888, Kontrast-Fix 2026-09-07 */
  --t4: #8c8c8c; /* vorher #aaa */

  --serif: "Playfair Display", Georgia, "Times New Roman", serif;
  --sans: "Space Grotesk", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --mono: "JetBrains Mono", "SF Mono", "Consolas", monospace;

  --section-gap: clamp(60px, 8vw, 100px);
  --max: 1200px;
  --pad: clamp(20px, 4vw, 48px);
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--t2);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
}

.label {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
}

.section-heading {
  font-family: var(--serif);
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 700;
  color: var(--t1);
  line-height: 1.15;
  margin-bottom: 0.5em;
  text-align: center;
}
.label:has(+ .section-heading) {
  display: block;
  text-align: center;
  margin-bottom: 20px;
}

/* ── HEADER ── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px) saturate(1.4);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s;
}
.site-header.scrolled { border-bottom-color: var(--border); }
.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  line-height: 1;
}
.logo .logo-main { display: flex; align-items: center; }
.logo .logo-letters {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 30px;
  font-weight: 300;
  letter-spacing: 6px;
  color: var(--t1);
}
.logo .logo-sep {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 30px;
  font-weight: 300;
  color: var(--gold);
  margin: 0 4px;
  letter-spacing: 0;
}
.logo .logo-sub {
  font-family: var(--mono);
  font-size: 7px;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--t4);
  margin-top: 4px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--t2);
  text-decoration: none;
  transition: color 0.25s;
  position: relative;
}
.nav-links a:hover { color: var(--t1); }
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--gold);
  transition: width 0.3s;
}
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  font-size: 13px !important;
  font-weight: 600 !important;
  color: #fff !important;
  background: var(--t1);
  padding: 9px 22px;
  border-radius: 0;
  transition: transform 0.2s, box-shadow 0.2s;
}
.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}
.nav-cta::after { display: none !important; }
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--t1);
  margin: 5px 0;
  transition: 0.3s;
}

/* ── HERO ── */
.hero {
  min-height: min(100vh, 800px);
  display: flex;
  align-items: center;
  background: var(--bg);
  position: relative;
  overflow: hidden;
  padding: 120px 0 80px;
  border-bottom: 1px solid var(--border);
}
.hero.hero-compact {
  min-height: auto;
  padding: 140px 0 60px;
}
.hero::before {
  content: "";
  position: absolute;
  width: 900px;
  height: 900px;
  top: -300px;
  right: -200px;
  background: radial-gradient(circle, rgba(184, 151, 106, 0.05) 0%, transparent 60%);
  pointer-events: none;
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--border-light) 1px, transparent 1px),
    linear-gradient(90deg, var(--border-light) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 60% 50% at 50% 50%, black, transparent);
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
}
.hero-content.hero-center {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}
.hero-label {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border-light);
  display: inline-block;
}
.hero-title {
  font-family: var(--serif);
  font-size: clamp(38px, 5.5vw, 66px);
  font-weight: 700;
  line-height: 1.1;
  color: var(--t1);
  margin-bottom: 8px;
}
.hero-title.hero-title-sm {
  font-size: clamp(32px, 4.5vw, 52px);
}
.hero-title strong {
  font-weight: 700;
  color: var(--gold);
}
.hero-subtitle {
  font-family: var(--sans);
  font-size: clamp(15px, 2vw, 17px);
  color: var(--t2);
  max-width: 540px;
  line-height: 1.7;
  margin: 24px 0 36px;
}
.hero-content.hero-center .hero-subtitle { margin-left: auto; margin-right: auto; }
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.hero-content.hero-center .hero-actions { justify-content: center; }
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  background: var(--t1);
  padding: 13px 30px;
  border-radius: 0;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.3s;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  color: var(--t1);
  background: transparent;
  border: 1px solid var(--t1);
  padding: 13px 30px;
  border-radius: 0;
  text-decoration: none;
  cursor: pointer;
  transition: border-color 0.3s, color 0.3s, background 0.3s;
}
.btn-secondary:hover {
  background: var(--t1);
  color: #fff;
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 64px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.hero-content.hero-center .hero-stats { justify-content: center; }
.hero-stat .stat-value {
  font-family: var(--mono);
  font-size: 28px;
  font-weight: 600;
  color: var(--t1);
  line-height: 1;
}
.hero-stat .stat-label {
  font-size: 12px;
  color: var(--t3);
  margin-top: 6px;
}

/* ── PROBLEM / EINORDNUNG ── */
.problem {
  padding: var(--section-gap) 0;
  background: var(--bg);
}
.problem-inner {
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}
.problem-head {
  max-width: 820px;
  margin: 0 auto 40px;
}
.problem-text {
  font-family: var(--serif);
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 500;
  color: var(--t1);
  line-height: 1.4;
}
.problem-body {
  max-width: 680px;
  margin: 0 auto;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.problem-body p {
  font-size: 15px;
  color: var(--t2);
  line-height: 1.8;
  margin: 0;
}

/* ── ROLLE ── */
.rolle {
  padding: var(--section-gap) 0;
  background: var(--bg-warm);
  position: relative;
}
.rolle::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background: var(--gold);
}
.rolle-inner { max-width: 1100px; margin: 0 auto; }
.rolle-head {
  text-align: center;
  max-width: 880px;
  margin: 0 auto 64px;
}
.rolle-head .section-heading {
  font-style: italic;
  font-weight: 500;
}
.rolle-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  position: relative;
}
.rolle-col {
  position: relative;
  padding-top: 36px;
}
.rolle-num {
  position: absolute;
  top: 0;
  left: 0;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--gold);
}
.rolle-col::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 32px;
  right: 0;
  height: 1px;
  background: var(--border);
}
.rolle-col p {
  font-size: 15px;
  color: var(--t2);
  line-height: 1.8;
  margin: 0;
}
@media (max-width: 900px) {
  .rolle-grid { grid-template-columns: 1fr; gap: 36px; }
  .rolle-col::before { right: 0; }
}

/* ── EXPERTISEN / GRIDS ── */
.expertisen {
  padding: var(--section-gap) 0;
  background: var(--bg-warm);
}
.expertisen.bg-white { background: var(--bg); }
.expertisen-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.expertisen-grid.grid-2 { grid-template-columns: repeat(2, 1fr); }
.expertise-card {
  display: flex;
  flex-direction: column;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-top: 3px solid var(--gold);
  border-radius: 0;
  padding: 40px 32px 36px;
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.4s, transform 0.3s, border-color 0.3s;
  position: relative;
  overflow: hidden;
}
.expertise-card:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
  transform: translateY(-4px);
  border-color: var(--gold);
  border-top-color: var(--gold);
}
.expertise-icon {
  width: 48px;
  height: 48px;
  border-radius: 0;
  background: var(--gold-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  border: 1px solid var(--border-accent);
}
.expertise-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.expertise-number {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2px;
  color: var(--gold);
  margin-bottom: 20px;
}
.expertise-title,
.expertise-card h3, .expertise-card h2 {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 700;
  color: var(--t1);
  line-height: 1.25;
  margin-bottom: 16px;
}
.expertise-title a,
.expertise-card h3 a, .expertise-card h2 a {
  color: inherit;
  text-decoration: none;
}
.expertise-card:hover .expertise-title a,
.expertise-card:hover h3 a, .expertise-card:hover h2 a {
  color: var(--gold);
}
.expertise-desc,
.expertise-card p {
  font-size: 15px;
  color: var(--t2);
  line-height: 1.7;
  margin-bottom: 24px;
}
.expertise-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--border-light);
}
.expertise-meta span {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--t3);
  padding: 5px 10px;
  background: var(--gold-bg);
  border: 1px solid var(--border-accent);
}
.expertise-link {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
  margin-top: auto;
  transition: letter-spacing 0.3s;
}
.expertise-card:hover .expertise-link {
  letter-spacing: 0.5px;
}
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
  text-decoration: none;
  margin-top: 16px;
  transition: gap 0.3s;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 1px;
}
.card-link:hover { gap: 10px; }

/* ── CONTENT SECTIONS ── */
.content-section {
  padding: var(--section-gap) 0;
}
.content-section.bg-warm { background: var(--bg-warm); }
.content-section.bg-white { background: var(--bg); }

.content-narrow {
  max-width: 760px;
  margin: 0 auto;
}
.content-narrow h2 {
  font-family: var(--serif);
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 700;
  color: var(--t1);
  line-height: 1.2;
  margin: 40px 0 16px;
}
.content-narrow h3 {
  font-family: var(--serif);
  font-size: clamp(20px, 2.5vw, 26px);
  font-weight: 700;
  color: var(--t1);
  line-height: 1.3;
  margin: 32px 0 12px;
}
.content-narrow p {
  font-size: 16px;
  color: var(--t2);
  line-height: 1.8;
  margin-bottom: 18px;
}
.content-narrow ul,
.content-narrow ol {
  margin: 18px 0 18px 20px;
  padding: 0;
}
.content-narrow li {
  font-size: 16px;
  color: var(--t2);
  line-height: 1.7;
  margin-bottom: 8px;
  padding-left: 8px;
}
.content-narrow strong {
  color: var(--t1);
  font-weight: 600;
}
.content-narrow a {
  color: var(--gold-dark);
  text-decoration: underline;
  text-decoration-color: var(--border-accent);
  text-underline-offset: 3px;
}
.content-narrow a:hover { color: var(--gold); }
.content-narrow blockquote {
  border-left: 3px solid var(--gold);
  padding: 8px 0 8px 24px;
  margin: 28px 0;
  font-family: var(--serif);
  font-style: italic;
  font-size: 19px;
  color: var(--t1);
  line-height: 1.5;
}

/* Tables */
.content-narrow table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  font-size: 14px;
}
.content-narrow th {
  text-align: left;
  padding: 12px 14px;
  border-bottom: 2px solid var(--t1);
  font-family: var(--sans);
  font-weight: 600;
  color: var(--t1);
  background: var(--bg-warm);
}
.content-narrow td {
  padding: 12px 14px;
  border-bottom: 1px solid var(--border);
  color: var(--t2);
  vertical-align: top;
}

/* ── MANDANTEN GRID & PILLS ── */
.mandanten-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 980px;
  margin: 48px auto 0;
}
@media (max-width: 768px) {
  .mandanten-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
}
@media (max-width: 480px) {
  .mandanten-grid { grid-template-columns: 1fr; }
}
.mandanten-tag {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 14px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 0;
  padding: 18px 26px;
  transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}
.mandanten-tag::before {
  content: "";
  flex-shrink: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 3px rgba(184, 151, 106, 0.12);
  transition: box-shadow 0.3s ease;
}
.mandanten-tag:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.06);
}
.mandanten-tag:hover::before {
  box-shadow: 0 0 0 5px rgba(184, 151, 106, 0.18);
}
.mandanten-tag h3, .mandanten-tag span {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.2px;
  color: var(--t1);
  margin: 0;
  line-height: 1.4;
}

/* ── IMPLEMENTIERUNG HIGHLIGHT ── */
.impl-highlight {
  background: var(--t1);
  color: #fff;
  border-radius: 0;
  padding: 40px;
  margin-bottom: 24px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: start;
  position: relative;
  overflow: hidden;
}
.impl-highlight::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gold);
}
.impl-highlight h3 {
  font-family: var(--serif);
  font-size: 26px;
  color: #fff;
  margin-bottom: 12px;
}
.impl-highlight p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
  line-height: 1.7;
}
.impl-btn {
  display: inline-block;
  margin-top: 16px;
  background: var(--gold);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  padding: 10px 24px;
  border-radius: 0;
  text-decoration: none;
  transition: background 0.2s;
}
.impl-btn:hover { background: var(--gold-dark); }

/* ── BERATUNGSANSATZ ── */
.approach {
  padding: var(--section-gap) 0;
  background: var(--bg);
}
.phases {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 48px;
  position: relative;
}
.phases::before {
  content: "";
  position: absolute;
  top: 44px;
  left: 15%;
  right: 15%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-accent), var(--border-accent), transparent);
}
.phase {
  text-align: center;
  padding: 0 24px;
  position: relative;
}
.phase-number {
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
  width: 44px;
  height: 44px;
  border: 2px solid var(--gold);
  border-radius: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  background: var(--bg);
  position: relative;
  z-index: 2;
}
.phase h3 {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 700;
  color: var(--t1);
  margin-bottom: 6px;
}
.phase .phase-claim {
  font-family: var(--serif);
  font-size: 13px;
  font-style: italic;
  color: var(--t3);
  margin-bottom: 16px;
}
.phase ul { list-style: none; text-align: left; }
.phase li {
  font-size: 13px;
  color: var(--t2);
  padding: 6px 0 6px 16px;
  position: relative;
  line-height: 1.5;
}
.phase li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 13px;
  width: 5px;
  height: 5px;
  border-radius: 0;
  background: var(--gold);
  opacity: 0.45;
}

/* Phases — Icons variant */
.phases.phases-icons { margin-top: 0; }
.phases.phases-icons::before { display: none; }
.phase-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 22px;
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
}
.phase-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}
.phases.phases-icons .label {
  display: block;
  margin-bottom: 14px;
}
.phases.phases-icons .phase h3 {
  margin-bottom: 8px;
}

/* ── REFERENZEN / TIMELINE ── */
.referenzen {
  padding: var(--section-gap) 0;
  background: var(--bg-warm);
}
.timeline {
  margin-top: 48px;
  position: relative;
  padding-left: 32px;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 7px;
  top: 8px;
  bottom: 8px;
  width: 1px;
  background: linear-gradient(180deg, var(--gold), var(--border), transparent);
}
.timeline-item {
  position: relative;
  padding: 0 0 40px 32px;
}
.timeline-item::before {
  content: "";
  position: absolute;
  left: -28px;
  top: 8px;
  width: 11px;
  height: 11px;
  border-radius: 0;
  background: var(--bg-warm);
  border: 2px solid var(--gold);
}
.timeline-item.active::before {
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(184, 151, 106, 0.15);
}
.timeline-date {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--gold);
  margin-bottom: 6px;
}
.timeline-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--t1);
  margin-bottom: 4px;
}
.timeline-desc {
  font-size: 14px;
  color: var(--t2);
  line-height: 1.6;
}
.timeline-tag {
  display: inline-block;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: var(--gold);
  background: var(--gold-bg);
  padding: 3px 10px;
  border-radius: 0;
  margin-top: 8px;
  border: 1px solid var(--border-accent);
}

/* ── PROFIL ── */
.profil {
  padding: var(--section-gap) 0;
  background: var(--bg);
}
.profil-inner {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 60px;
  align-items: start;
}
.profil-photo {
  width: 280px;
  height: 340px;
  border-radius: 0;
  background: linear-gradient(135deg, var(--bg-section), var(--border-light));
  border-top: 3px solid var(--gold);
  border-bottom: 1px solid var(--border);
  border-left: none;
  border-right: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--t3);
  font-size: 13px;
  overflow: hidden;
  margin-right: 24px;
  flex-shrink: 0;
}
.profil-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  border-radius: 0;
}
.profil-content h2 {
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 700;
  color: var(--t1);
  margin-bottom: 4px;
}
.profil-content .profil-role {
  font-size: 14px;
  color: var(--gold);
  margin-bottom: 20px;
}
.profil-content p {
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 16px;
}
.profil-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}
.profil-tag {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--t2);
  background: var(--bg-warm);
  border-top: 1px solid var(--gold);
  border-bottom: 1px solid var(--border);
  border-left: none;
  border-right: none;
  padding: 6px 14px;
  border-radius: 0;
}

/* ── CTA ── */
.cta-section {
  padding: var(--section-gap) 0;
  background: var(--bg-warm);
}
.cta-inner {
  background: var(--bg-dark);
  border-radius: 0;
  padding: clamp(48px, 6vw, 80px);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-inner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gold);
}
.cta-inner::after {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  top: -250px;
  right: -100px;
  background: radial-gradient(circle, rgba(184, 151, 106, 0.1), transparent 60%);
  pointer-events: none;
}
.cta-inner .label { color: var(--gold); }
.cta-inner h2 {
  font-family: var(--serif);
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
  position: relative;
}
.cta-inner p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.55);
  max-width: 500px;
  margin: 0 auto 32px;
  line-height: 1.7;
  position: relative;
}
.cta-inner .btn-primary {
  background: var(--gold);
  color: #fff;
}
.cta-inner .btn-primary:hover {
  box-shadow: 0 8px 32px rgba(184, 151, 106, 0.3);
}

/* ── FORM ── */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 680px;
  margin: 40px auto 0;
}
.form-field { display: flex; flex-direction: column; }
.form-field.full { grid-column: 1 / -1; }
.form-field label {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--t3);
  margin-bottom: 8px;
}
.form-field input,
.form-field textarea,
.form-field select {
  font-family: var(--sans);
  font-size: 15px;
  color: var(--t1);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 0;
  padding: 14px 16px;
  transition: border-color 0.25s;
}
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  outline: none;
  border-color: var(--gold);
}
.form-field textarea { resize: vertical; min-height: 140px; }
.form-privacy {
  font-size: 12px;
  color: var(--t3);
  line-height: 1.6;
  margin-top: 16px;
}
.form-privacy a { color: var(--gold-dark); }

/* ── FAQ ── */
.faq-list {
  max-width: 820px;
  margin: 48px auto 0;
}
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 28px 0;
}
.faq-item h3, .faq-item h2 {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 700;
  color: var(--t1);
  line-height: 1.35;
  margin-bottom: 12px;
}
.faq-item p {
  font-size: 15px;
  color: var(--t2);
  line-height: 1.8;
}

/* ── BLOG ── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}
@media (max-width: 900px) {
  .blog-grid { grid-template-columns: 1fr; }
}
.blog-card {
  background: var(--bg-card);
  border-top: 3px solid var(--gold);
  border-bottom: 1px solid var(--border);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.4s, transform 0.3s;
  text-decoration: none;
}
.blog-card:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
  transform: translateY(-4px);
}
.blog-card-meta {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--gold);
  letter-spacing: 1px;
  margin-bottom: 12px;
  text-transform: uppercase;
}
.blog-card h3 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--t1);
  line-height: 1.25;
  margin-bottom: 14px;
}
.blog-card p {
  font-size: 14px;
  color: var(--t2);
  line-height: 1.7;
  margin-bottom: 18px;
  flex-grow: 1;
}
.blog-card .card-link { margin-top: auto; }

/* ── ARTICLE ── */
.article-hero {
  background: var(--bg-warm);
  padding: 140px 0 60px;
  border-bottom: 1px solid var(--border);
}
.article-hero-inner {
  max-width: 820px;
  margin: 0 auto;
}
.article-meta {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--gold);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.article-title {
  font-family: var(--serif);
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 700;
  color: var(--t1);
  line-height: 1.15;
  margin-bottom: 20px;
}
.article-lead {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(18px, 2vw, 22px);
  color: var(--t2);
  line-height: 1.55;
  max-width: 720px;
}
.article-body {
  padding: var(--section-gap) 0;
  background: var(--bg);
}

/* ── FOOTER ── */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 60px 0 40px;
  background: var(--bg);
}
.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-decoration: none;
  line-height: 1;
  margin-bottom: 16px;
}
.footer-logo .logo-main { display: flex; align-items: center; }
.footer-logo .logo-letters {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 26px;
  font-weight: 300;
  letter-spacing: 6px;
  color: var(--t1);
}
.footer-logo .logo-sep {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 26px;
  font-weight: 300;
  color: var(--gold);
  margin: 0 4px;
  letter-spacing: 0;
}
.footer-logo .logo-sub {
  font-family: var(--mono);
  font-size: 6px;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--t4);
  margin-top: 4px;
}
.footer-desc {
  font-size: 13px;
  color: var(--t3);
  line-height: 1.7;
  max-width: 280px;
}
.footer-location {
  font-size: 12px;
  color: var(--t4);
  margin-top: 8px;
}
.footer-heading {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--t3);
  margin-bottom: 20px;
}
.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer-links li {
  margin-bottom: 10px;
  font-size: 14px;
  color: var(--t2);
}
.footer-links a {
  font-size: 14px;
  color: var(--t2);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--t1); }
.footer-cta-link {
  color: var(--gold) !important;
  font-weight: 600;
}
.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-copy {
  font-size: 12px;
  color: var(--t4);
}
.footer-legal {
  list-style: none;
  display: flex;
  gap: 24px;
  margin: 0;
  padding: 0;
}
.footer-legal a {
  color: var(--t3);
  text-decoration: none;
  font-size: 12px;
  transition: color 0.2s;
}
.footer-legal a:hover { color: var(--t2); }

/* ── HERO mit Video-Hintergrund (Homepage) ── */
.hero.hero-video-bg {
  min-height: 100vh;
  background: #0a0a0a;
  padding: 140px 0 100px;
  border-bottom: none;
}
.hero.hero-video-bg::before { display: none; }
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(
      180deg,
      rgba(10, 10, 10, 0.52) 0%,
      rgba(10, 10, 10, 0.42) 40%,
      rgba(10, 10, 10, 0.62) 100%
    ),
    linear-gradient(
      90deg,
      rgba(10, 10, 10, 0.58) 0%,
      rgba(10, 10, 10, 0.15) 55%,
      rgba(10, 10, 10, 0.3) 100%
    );
  pointer-events: none;
}
.hero-glow {
  position: absolute;
  width: 900px;
  height: 900px;
  top: -250px;
  right: -200px;
  background: radial-gradient(
    circle,
    rgba(184, 151, 106, 0.12) 0%,
    transparent 55%
  );
  z-index: 3;
  pointer-events: none;
}
.hero.hero-video-bg .container {
  position: relative;
  z-index: 5;
  width: 100%;
  min-height: calc(100vh - 240px);
  display: flex;
  align-items: center;
}
.hero.hero-video-bg .hero-content {
  max-width: 780px;
  display: flex;
  flex-direction: column;
  width: 100%;
}
.hero.hero-video-bg .hero-subtitle {
  margin-top: 36px;
}
.hero.hero-video-bg .hero-label {
  margin-bottom: 28px;
  padding-bottom: 14px;
  border-bottom-color: rgba(184, 151, 106, 0.45);
}
.hero.hero-video-bg .hero-title {
  font-size: clamp(40px, 5.8vw, 72px);
  line-height: 1.08;
  color: #ffffff;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.4);
}
.hero.hero-video-bg .hero-title strong {
  color: var(--gold);
  font-style: italic;
}
.hero.hero-video-bg .hero-subtitle {
  font-size: clamp(16px, 2vw, 19px);
  color: rgba(255, 255, 255, 0.88);
  max-width: 580px;
  line-height: 1.7;
  margin: auto 0 40px;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.4);
}
.hero.hero-video-bg .btn-primary {
  color: var(--t1);
  background: #ffffff;
  padding: 16px 34px;
  font-weight: 600;
  letter-spacing: 0.3px;
}
.hero.hero-video-bg .btn-primary:hover {
  background: var(--gold);
  color: #ffffff;
  box-shadow: 0 8px 32px rgba(184, 151, 106, 0.3);
}
.hero.hero-video-bg .btn-secondary {
  color: #ffffff;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.55);
  padding: 16px 34px;
  letter-spacing: 0.3px;
}
.hero.hero-video-bg .btn-secondary:hover {
  background: #ffffff;
  border-color: #ffffff;
  color: var(--t1);
}
.hero.hero-video-bg .hero-stats {
  gap: 56px;
  margin-top: 72px;
  padding-top: 36px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  max-width: 640px;
}
.hero.hero-video-bg .hero-stat .stat-value {
  font-size: 32px;
  color: #ffffff;
}
.hero.hero-video-bg .hero-stat .stat-value span {
  color: var(--gold);
}
.hero.hero-video-bg .hero-stat .stat-label {
  font-family: var(--sans);
  font-size: 11px;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 8px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

/* Transparenter Header auf Seiten mit Video-Hero */
body.has-hero-video .site-header {
  background: transparent;
  backdrop-filter: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: background 0.3s, border-color 0.3s, backdrop-filter 0.3s;
}
body.has-hero-video .site-header .logo-letters {
  color: #ffffff;
}
body.has-hero-video .site-header .logo-sub {
  color: rgba(255, 255, 255, 0.55);
}
body.has-hero-video .site-header .nav-links a {
  color: rgba(255, 255, 255, 0.85);
}
body.has-hero-video .site-header .nav-links a:hover {
  color: #ffffff;
}
body.has-hero-video .site-header .nav-cta {
  color: var(--t1) !important;
  background: #ffffff;
}
body.has-hero-video .site-header .nav-cta:hover {
  background: var(--gold);
  color: #ffffff !important;
}
body.has-hero-video .site-header .nav-toggle span {
  background: #ffffff;
}
/* Header wird bei Scroll wieder solide */
body.has-hero-video .site-header.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px) saturate(1.4);
  border-bottom-color: var(--border);
}
body.has-hero-video .site-header.scrolled .logo-letters { color: var(--t1); }
body.has-hero-video .site-header.scrolled .logo-sub { color: var(--t4); }
body.has-hero-video .site-header.scrolled .nav-links a { color: var(--t2); }
body.has-hero-video .site-header.scrolled .nav-links a:hover { color: var(--t1); }
body.has-hero-video .site-header.scrolled .nav-cta {
  color: #fff !important;
  background: var(--t1);
}
body.has-hero-video .site-header.scrolled .nav-cta:hover {
  background: var(--t1);
}
body.has-hero-video .site-header.scrolled .nav-toggle span { background: var(--t1); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .expertisen-grid { grid-template-columns: 1fr; }
  .expertisen-grid.grid-2 { grid-template-columns: 1fr; }
  .phases { grid-template-columns: 1fr; gap: 40px; }
  .phases::before { display: none; }
  .phase { text-align: left; padding: 0; }
  .profil-inner { grid-template-columns: 1fr; }
  .profil-photo { width: 100%; max-width: 280px; }
  .hero-stats { flex-wrap: wrap; gap: 24px; }
  .hero.hero-video-bg .hero-stats { gap: 32px; margin-top: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .impl-highlight { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-actions .btn-primary,
  .hero-actions .btn-secondary,
  .hero.hero-video-bg .hero-actions .btn-primary { width: auto; align-self: flex-start; padding: 14px 26px; font-size: 14px; }
  .hero.hero-video-bg {
    min-height: 90vh;
    padding: 120px 0 80px;
  }
  .hero.hero-video-bg .hero-stats {
    flex-direction: column;
    gap: 20px;
  }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
}

/* ============================================
   Fehlende Klassen + Mobile-Optimierung (2026-09-07)
   ============================================ */
img, video { max-width: 100%; height: auto; }

/* Logo-Untertitel lesbar */
.logo .logo-sub,
.footer-logo .logo-sub { font-size: 9px; letter-spacing: 2px; }

/* Hero: Zeilenumbruch nur auf Desktop unterdruecken */
.nowrap-desktop { white-space: nowrap; }

/* Touch-Targets */
.footer-links a { display: inline-block; padding: 5px 0; }
.footer-bottom a { display: inline-block; padding: 6px 4px; }
.card-link, .expertise-link { padding: 8px 0; }
.timeline-tag { font-size: 11px; }

/* Blog-Artikel: Breadcrumb, Hero-Bild, Artikel-Kopf */
.breadcrumb { margin: 0 0 28px; }
.breadcrumb ol {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 4px 10px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--t3);
}
.breadcrumb li { display: inline-flex; align-items: center; gap: 10px; }
.breadcrumb a { color: var(--t2); text-decoration: none; padding: 4px 0; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb .sep { color: var(--gold); }
.article-hero-img { margin: 0 0 20px; }
.article-hero-img img { display: block; width: 100%; height: auto; }
.article-header {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px 20px;
  padding: 8px 0 24px;
  margin-bottom: 32px;
  border-bottom: 1px solid var(--border);
}
.article-header .label { margin: 0; }

/* Kontrast: Gold-Kleintext auf hellem Grund dunkler (WCAG AA), auf dunklem Grund helles Gold */
.label, .hero-label, .expertise-link, .card-link, .article-meta, .timeline-tag,
.breadcrumb .sep, .kontakt-steps strong, .timeline-date, .phase-number, .profil-role { color: var(--gold-text); }
.impl-highlight .label, .cta-inner .label, .hero.hero-video-bg .hero-label { color: var(--gold-light); }

/* Startseite: Mandanten in der Ausgangslage (2026-09-07, Startseite gekuerzt) */
.problem-mandanten { max-width: 920px; margin: 48px auto 0; padding-top: 40px; border-top: 1px solid var(--border); }
.problem-mandanten .label { margin-bottom: 8px; }
.problem-mandanten .mandanten-grid { margin-top: 24px; }
.problem-mandanten .mandanten-tag { padding: 14px 20px; }
.problem-mandanten .mandanten-tag h3, .mandanten-tag span { font-size: 13px; }

/* Kontaktformular: Statusmeldung nach dem Absenden */
.form-status { margin: 16px 0 0; padding: 14px 18px; font-size: 14px; line-height: 1.6; border-left: 3px solid var(--gold); background: var(--gold-bg); color: var(--t1); }
.form-status.error { border-left-color: #b4483c; background: rgba(180, 72, 60, 0.07); }

/* Mobile-Menue: geoeffneter Zustand (fehlte bisher komplett) */
@media (max-width: 640px) {
  .nav-links.open {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: var(--bg);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.08);
    padding: 8px 0 16px;
    z-index: 50;
  }
  .nav-links.open li { margin: 0; }
  .nav-links.open a {
    display: block;
    padding: 16px var(--pad);
    font-size: 17px;
    color: var(--t1) !important;
    border-bottom: 1px solid var(--border-light);
  }
  .nav-links.open a::after { display: none; }
  .nav-links.open .nav-cta {
    margin: 16px var(--pad) 0;
    padding: 14px 22px;
    text-align: center;
    color: #fff !important;
    background: var(--t1);
    border-bottom: none;
  }
  .nav-toggle { position: relative; z-index: 60; }
  .nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle.active span:nth-child(2) { opacity: 0; }
  .nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  body.has-hero-video .site-header:not(.scrolled) .nav-toggle.active span { background: var(--t1); }
}

/* Blog-Uebersicht: Themen-Label */
.expertise-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold-text);
  margin-bottom: 10px;
}

/* Ueber uns */
.profil-lead { font-size: 17px; line-height: 1.7; color: var(--t2); margin: 0 0 24px; }

/* Kontakt: Formular + Seitenleiste */
.kontakt-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr);
  gap: 64px;
  align-items: start;
}
.kontakt-sidebar { display: flex; flex-direction: column; gap: 40px; }
.kontakt-info h3, .kontakt-info h2 { font-family: var(--serif); font-size: 22px; font-weight: 700; margin: 8px 0 12px; }
.kontakt-list, .kontakt-steps { list-style: none; margin: 0; padding: 0; }
.kontakt-list li {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 14px 0;
  border-top: 1px solid var(--border);
  font-size: 15px;
  line-height: 1.6;
}
.kontakt-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--t3);
}
.kontakt-list a { color: var(--t1); text-decoration: none; border-bottom: 1px solid var(--gold); padding: 2px 0; }
.kontakt-list a:hover { color: var(--gold); }
.kontakt-steps li {
  display: flex;
  gap: 14px;
  padding: 14px 0;
  border-top: 1px solid var(--border);
  font-size: 15px;
  line-height: 1.6;
}
.kontakt-steps strong { font-family: var(--mono); font-weight: 500; color: var(--gold); }

@media (max-width: 900px) {
  .kontakt-grid { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 640px) {
  .nowrap-desktop { white-space: normal; }
  .hero.hero-video-bg {
    min-height: 100vh;
    min-height: 100svh;
    padding: 110px 0 56px;
    display: flex;
    align-items: center;
  }
  .hero.hero-video-bg .container { min-height: auto; }
  .hero.hero-video-bg .hero-title { font-size: clamp(34px, 9.5vw, 44px); }
  .hero.hero-video-bg .hero-subtitle { margin: 28px 0 32px; }
  .hero-glow { display: none; }
  .article-header { padding-bottom: 20px; margin-bottom: 24px; }
}
