/*
 * kanzlei.css – Hauptstylesheet
 * Kanzlei Musterbach & Partner
 * Basis: UIkit 3 + Custom Properties
 */

/* ═══════════════════════════════════════════════
   DESIGN TOKENS
═══════════════════════════════════════════════ */
:root {
  --navy:           #1a2b4a;
  --navy-mid:       #243659;
  --navy-light:     #2e4470;
  --champagne:      #c9a96e;
  --champagne-light:#e8d5b0;
  --champagne-pale: #f5ede0;
  --cream:          #f7f4ef;
  --white:          #ffffff;
  --text:           #1a1a1a;
  --text-muted:     #6b6b6b;
  --text-light:     #9a9a9a;
  --border:         rgba(26, 43, 74, 0.12);
  --border-strong:  rgba(26, 43, 74, 0.22);
  --shadow-sm:      0 2px 12px rgba(26,43,74,0.08);
  --shadow-md:      0 6px 30px rgba(26,43,74,0.12);
  --radius:         4px;
  --radius-lg:      8px;
  --transition:     0.2s ease;
}

/* ═══════════════════════════════════════════════
   RESET / BASE
═══════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}

/* ═══════════════════════════════════════════════
   TYPOGRAPHY
═══════════════════════════════════════════════ */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', 'Georgia', serif;
  font-weight: 400;
  line-height: 1.2;
  color: var(--navy);
}

.section-eyebrow {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--champagne);
  margin-bottom: 10px;
}

.section-title {
  font-size: clamp(28px, 3vw, 38px);
  color: var(--navy);
  margin-bottom: 0;
}

.section-lead {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 520px;
}

.content-subtitle {
  font-size: 22px;
  color: var(--navy);
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}

/* ═══════════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════════ */
.uk-button { border-radius: var(--radius); font-family: 'DM Sans', sans-serif; font-weight: 500; transition: all var(--transition); letter-spacing: 0.2px; }

.btn-primary {
  background: var(--champagne);
  color: var(--navy) !important;
  border: none;
  padding: 13px 26px;
}
.btn-primary:hover {
  background: #b8944f;
  color: var(--navy) !important;
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}

.btn-ghost {
  background: transparent;
  color: var(--navy) !important;
  border: 1.5px solid var(--border-strong);
  padding: 12px 24px;
}
.btn-ghost:hover {
  border-color: var(--navy);
  background: rgba(26,43,74,0.04);
  color: var(--navy) !important;
}

.btn-primary-outline {
  background: transparent;
  color: var(--champagne) !important;
  border: 1.5px solid var(--champagne);
  padding: 10px 20px;
  font-size: 14px;
}
.btn-primary-outline:hover {
  background: var(--champagne);
  color: var(--navy) !important;
}

.btn-cta-banner {
  background: var(--champagne);
  color: var(--navy) !important;
  border: none;
  padding: 16px 32px;
  font-size: 15px;
  white-space: nowrap;
}
.btn-cta-banner:hover {
  background: #b8944f;
  color: var(--navy) !important;
}

/* ═══════════════════════════════════════════════
   HEADER / NAVIGATION
═══════════════════════════════════════════════ */
.site-header {
  position: relative;
  z-index: 100;
}

.site-nav.uk-navbar-container {
  background: var(--navy) !important;
  border-bottom: none;
  min-height: 70px;
}

.nav-scrolled {
  box-shadow: 0 2px 20px rgba(26,43,74,0.2);
}

/* Logo */
.site-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none !important;
  padding: 0 !important;
}

.logo-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background: var(--champagne);
  border-radius: var(--radius);
  font-size: 12px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.5px;
  flex-shrink: 0;
}

.logo-mark--light { background: rgba(201,169,110,0.15); color: var(--champagne); }

.logo-text { line-height: 1.2; }
.logo-name { display: block; font-family: 'DM Sans', sans-serif; font-size: 15px; font-weight: 500; color: #ffffff; letter-spacing: 0.3px; }
.logo-sub  { display: block; font-size: 10px; color: rgba(255,255,255,0.45); letter-spacing: 1.5px; text-transform: uppercase; }

/* Nav Links */
.site-nav-list > li > a {
  color: rgba(255,255,255,0.7) !important;
  font-size: 14px;
  font-family: 'DM Sans', sans-serif;
  padding: 0 14px !important;
  height: 70px;
  transition: color var(--transition);
}
.site-nav-list > li > a:hover,
.site-nav-list > li.uk-active > a {
  color: #ffffff !important;
}
.site-nav-list > li.uk-active > a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 14px;
  right: 14px;
  height: 2px;
  background: var(--champagne);
}

/* Dropdown */
.site-dropdown {
  background: var(--white) !important;
  border-top: 2px solid var(--champagne);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  box-shadow: var(--shadow-md);
  min-width: 220px;
  padding: 8px 0 !important;
}

.site-dropdown .uk-nav > li > a {
  padding: 10px 20px;
  font-size: 14px;
  color: var(--text-muted);
  transition: all var(--transition);
}
.site-dropdown .uk-nav > li > a:hover {
  color: var(--navy);
  background: var(--cream);
  padding-left: 24px;
}
.site-dropdown .dropdown-cta a {
  color: var(--champagne) !important;
  font-weight: 500;
  font-size: 13px;
  margin-top: 4px;
  border-top: 1px solid var(--border);
}

.nav-cta {
  margin-left: 8px;
  font-size: 13px !important;
}

/* Mobile Nav */
.mobile-nav-bar { background: var(--navy); }
.mobile-logo { padding: 8px 0 24px; }
.mobile-logo .logo-mark { width: 48px; height: 48px; font-size: 14px; }
.mobile-nav > li > a { color: rgba(255,255,255,0.8); padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.08); }
.mobile-nav .uk-nav-sub > li > a { color: rgba(255,255,255,0.55); font-size: 13px; padding: 8px 0 8px 16px; }
.mobile-nav-cta { margin-top: 28px; }

/* ═══════════════════════════════════════════════
   PAGE HERO (Unterseiten)
═══════════════════════════════════════════════ */
.page-hero {
  background: var(--navy);
  padding: 70px 0 60px;
}
.page-hero--slim { padding: 50px 0 44px; }
.page-hero--legal { padding: 44px 0 36px; }

.page-breadcrumb { margin-bottom: 24px; }
.page-breadcrumb .uk-breadcrumb > * > * { color: rgba(255,255,255,0.45); font-size: 13px; }
.page-breadcrumb .uk-breadcrumb > :last-child > * { color: rgba(255,255,255,0.7); }
.page-breadcrumb .uk-breadcrumb > :nth-child(n+2):not(.uk-first-column)::before { color: rgba(255,255,255,0.3); }

.page-hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 400;
  color: #ffffff;
  margin-bottom: 16px;
  line-height: 1.15;
}
.page-hero-lead {
  font-size: 17px;
  color: rgba(255,255,255,0.65);
  line-height: 1.75;
  max-width: 560px;
  margin-bottom: 28px;
}

.hero-icon-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: rgba(201,169,110,0.15);
  border-radius: var(--radius-lg);
  color: var(--champagne);
  margin-bottom: 20px;
}

/* Hero Decoration */
.rg-hero-decoration { position: relative; height: 300px; }
.decoration-circle-large {
  width: 280px; height: 280px;
  border-radius: 50%;
  border: 1px solid rgba(201,169,110,0.15);
  position: absolute; right: 0; top: 10px;
}
.decoration-circle-small {
  width: 160px; height: 160px;
  border-radius: 50%;
  background: rgba(201,169,110,0.06);
  position: absolute; right: 60px; top: 60px;
}

/* ═══════════════════════════════════════════════
   HOME – HERO SECTION
═══════════════════════════════════════════════ */
.hero-section {
  background: var(--navy);
  position: relative;
  overflow: hidden;
  padding: 90px 0 70px;
}

.hero-eyebrow {
  display: block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--champagne);
  margin-bottom: 16px;
}

.hero-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(42px, 5vw, 64px);
  font-weight: 400;
  color: #ffffff;
  line-height: 1.1;
  margin-bottom: 22px;
}

.hero-lead {
  font-size: 18px;
  color: rgba(255,255,255,0.65);
  line-height: 1.75;
  margin-bottom: 32px;
  max-width: 480px;
}

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }

.hero-trust {
  display: flex;
  gap: 22px;
  margin-top: 28px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}
.trust-item .uk-icon { color: var(--champagne); }

/* Hero Visual */
.hero-image-wrap { position: relative; }
.hero-image-placeholder {
  height: 360px;
  background: var(--navy-mid);
  border: 1px solid rgba(201,169,110,0.2);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}
.placeholder-pattern {
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(201,169,110,0.06) 1px, transparent 1px);
  background-size: 28px 28px;
}
.placeholder-overlay { position: relative; z-index: 1; padding: 30px; text-align: center; }
.hero-quote {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-style: italic;
  color: rgba(255,255,255,0.5);
  border: none;
  padding: 0;
  margin: 0;
}

.hero-stat-card {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 14px 22px;
  box-shadow: var(--shadow-md);
}
.card-stat-1 { bottom: -16px; left: -24px; }
.card-stat-2 { top: 24px; right: -24px; }

.stat-number {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  color: var(--navy);
  font-weight: 600;
}
.stat-label {
  display: block;
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 2px;
}

.hero-scroll-hint {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding-top: 40px;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.3), transparent);
}

/* ═══════════════════════════════════════════════
   RECHTSGEBIET CARDS (Homepage)
═══════════════════════════════════════════════ */
.section-rechtsgebiete { background: var(--white); }
.section-rechtsgebiete .section-header { text-align: center; }

.rechtsgebiet-card {
  display: block;
  padding: 36px 30px 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--white);
  text-decoration: none !important;
  transition: all var(--transition);
  height: 100%;
}
.rechtsgebiet-card:hover {
  border-color: var(--champagne);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.rg-card--center {
  background: var(--navy);
  border-color: var(--navy);
}
.rg-card--center .rg-icon-wrap { background: rgba(201,169,110,0.15); color: var(--champagne); }
.rg-card--center .rg-title    { color: #ffffff; }
.rg-card--center .rg-intro    { color: rgba(255,255,255,0.6); }
.rg-card--center .rg-links li { border-color: rgba(255,255,255,0.1); }
.rg-card--center .rg-links a  { color: rgba(255,255,255,0.5); }
.rg-card--center .rg-more     { color: var(--champagne); }

.rg-icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  background: rgba(26,43,74,0.07);
  border-radius: var(--radius-lg);
  color: var(--navy);
  margin-bottom: 22px;
}
.rg-title { font-size: 24px; color: var(--navy); margin-bottom: 12px; }
.rg-intro { font-size: 14px; color: var(--text-muted); line-height: 1.7; margin-bottom: 20px; }
.rg-links { list-style: none; padding: 0; margin-bottom: 22px; }
.rg-links li { border-bottom: 1px solid var(--border); }
.rg-links a  { display: block; padding: 9px 0; font-size: 14px; color: var(--text-muted); text-decoration: none; transition: color var(--transition); }
.rg-links a:hover { color: var(--navy); padding-left: 4px; }
.rg-more { font-size: 13px; color: var(--champagne); font-weight: 500; }

/* ═══════════════════════════════════════════════
   LEISTUNGEN GRID (Rechtsgebiet-Seite)
═══════════════════════════════════════════════ */
.leistung-card {
  display: block;
  padding: 30px 26px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--white);
  text-decoration: none !important;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  height: 100%;
}
.leistung-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 0;
  background: var(--champagne);
  transition: height 0.3s ease;
}
.leistung-card:hover::before { height: 100%; }
.leistung-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.lc-number { font-size: 11px; color: var(--champagne); letter-spacing: 2px; font-weight: 500; margin-bottom: 12px; }
.lc-title  { font-size: 20px; color: var(--navy); margin-bottom: 10px; }
.lc-intro  { font-size: 14px; color: var(--text-muted); line-height: 1.65; margin-bottom: 20px; }
.lc-arrow  { font-size: 18px; color: var(--champagne); }

/* ═══════════════════════════════════════════════
   USP ITEMS
═══════════════════════════════════════════════ */
.usp-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
}
.usp-icon-wrap {
  display: inline-flex;
  width: 44px; height: 44px;
  align-items: center; justify-content: center;
  background: var(--champagne-pale);
  border-radius: var(--radius);
  color: var(--champagne);
  margin-bottom: 14px;
}
.usp-title { font-family: 'DM Sans', sans-serif; font-size: 15px; font-weight: 500; color: var(--navy); margin-bottom: 7px; }
.usp-text  { font-size: 14px; color: var(--text-muted); line-height: 1.65; }

/* ═══════════════════════════════════════════════
   CTA BANNER
═══════════════════════════════════════════════ */
.section-cta { padding: 0; }
.cta-banner {
  background: var(--navy);
  padding: 60px 30px;
}
.cta-title { font-family: 'Playfair Display', serif; font-size: clamp(22px, 2.5vw, 32px); color: #fff; font-weight: 400; margin-bottom: 8px; }
.cta-sub   { font-size: 15px; color: rgba(255,255,255,0.6); }

.section-cta-inline { background: var(--cream); }
.cta-inline-box {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 40px 44px;
  color: #fff;
}
.cta-inline-box--light {
  background: var(--white);
  border: 1px solid var(--border);
  color: var(--text);
}
.cta-inline-title {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  color: inherit;
  font-weight: 400;
  margin-bottom: 6px;
}
.cta-inline-box p { font-size: 15px; color: rgba(255,255,255,0.65); margin: 0; }
.cta-inline-box--light p { color: var(--text-muted); }

/* ═══════════════════════════════════════════════
   TEAM CARDS
═══════════════════════════════════════════════ */
.team-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  transition: all var(--transition);
}
.team-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }

.team-photo { aspect-ratio: 3/4; overflow: hidden; background: var(--cream); }
.team-photo img { width: 100%; height: 100%; object-fit: cover; }
.team-photo-placeholder {
  width: 100%; aspect-ratio: 3/4;
  display: flex; align-items: center; justify-content: center;
  background: var(--navy);
  color: rgba(255,255,255,0.2);
}
.team-photo-placeholder--large { aspect-ratio: 1; border-radius: 50%; width: 90px; height: 90px; }

.team-info { padding: 20px; }
.team-name  { font-size: 18px; color: var(--navy); margin-bottom: 4px; }
.team-rolle { font-size: 13px; color: var(--text-muted); }

/* Team Profile (Kanzlei-Seite) */
.team-profile {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 40px;
}
.team-profile--reverse { }
.team-profile-schwerpunkte {
  display: block;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--champagne);
  margin-bottom: 8px;
}
.team-profile-name  { font-size: 28px; color: var(--navy); margin-bottom: 4px; }
.team-profile-titel { display: block; font-size: 14px; color: var(--text-muted); margin-bottom: 16px; }
.team-profile-bio   { font-size: 15px; color: var(--text-muted); line-height: 1.75; }

/* Awards Bar */
.awards-title { font-size: 15px; font-family: 'DM Sans', sans-serif; color: var(--text-muted); font-weight: 400; }
.awards-bar   { gap: 0; flex-wrap: wrap; }
.award-item {
  padding: 14px 28px;
  font-size: 13px;
  color: var(--text-muted);
  border-right: 1px solid var(--border);
}
.award-item:last-child { border-right: none; }

/* Kanzlei Values */
.kanzlei-values { padding: 0; }
.value-item {
  display: flex;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
  align-items: flex-start;
}
.value-icon { color: var(--champagne); flex-shrink: 0; }
.value-title { font-family: 'DM Sans', sans-serif; font-size: 15px; font-weight: 500; color: var(--navy); margin-bottom: 4px; }
.value-text  { font-size: 14px; color: var(--text-muted); line-height: 1.6; margin: 0; }

/* ═══════════════════════════════════════════════
   LEISTUNG – Einzelseite
═══════════════════════════════════════════════ */
.leistung-content { }

/* ═══════════════════════════════════════════════
   SIDEBAR
═══════════════════════════════════════════════ */
.leistung-sidebar { position: sticky; top: 24px; }

.sidebar-box {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 22px;
  background: var(--white);
  margin-bottom: 18px;
}

.sidebar-box-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

.sidebar-contact { background: var(--navy); border-color: var(--navy); }
.sidebar-contact .sidebar-box-title { color: rgba(255,255,255,0.6); border-color: rgba(255,255,255,0.1); }
.sidebar-contact p { color: rgba(255,255,255,0.7); font-size: 14px; }

.sidebar-tel {
  display: block;
  text-align: center;
  padding: 10px;
  background: rgba(255,255,255,0.05);
  border-radius: var(--radius);
  margin-top: 10px;
  font-size: 15px;
}
.sidebar-tel a { color: var(--champagne); text-decoration: none; font-weight: 500; }
.sidebar-hint { font-size: 12px; color: rgba(255,255,255,0.4) !important; text-align: center; margin-top: 8px !important; }

.sidebar-nav-list { list-style: none; padding: 0; margin: 0; }
.sidebar-nav-list li {
  padding: 9px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  color: var(--text-muted);
}
.sidebar-nav-list li:last-child { border-bottom: none; }
.sidebar-nav-list li.is-current { color: var(--navy); font-weight: 500; }
.sidebar-nav-list li.is-current::before { content: '→ '; color: var(--champagne); }
.sidebar-nav-list a { color: var(--text-muted); text-decoration: none; transition: color var(--transition); }
.sidebar-nav-list a:hover { color: var(--navy); }

/* ═══════════════════════════════════════════════
   FAQ / ACCORDION
═══════════════════════════════════════════════ */
.faq-list .uk-accordion-title,
.faq-question {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: var(--navy);
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}
.faq-list .uk-accordion-title::before { color: var(--champagne); }
.faq-answer { padding: 14px 0 8px; }
.faq-answer p { font-size: 15px; color: var(--text-muted); line-height: 1.75; }

/* ═══════════════════════════════════════════════
   FORMS
═══════════════════════════════════════════════ */
.kanzlei-form { }

.form-label {
  display: block;
  font-size: 12px;
  font-weight: 500;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 6px;
}

.form-input.uk-input,
.form-input.uk-select,
.form-input.uk-textarea {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition);
  padding: 10px 14px;
  height: auto;
}
.form-input.uk-input:focus,
.form-input.uk-select:focus,
.form-input.uk-textarea:focus {
  border-color: var(--navy);
  outline: none;
  box-shadow: 0 0 0 3px rgba(26,43,74,0.08);
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--text-muted);
  cursor: pointer;
}
.form-checkbox .uk-checkbox { margin-top: 2px; flex-shrink: 0; }
.form-checkbox a { color: var(--navy); }

.form-disclaimer {
  font-size: 12px;
  color: var(--text-light);
  margin-top: 10px;
  line-height: 1.6;
}

.form-success {
  text-align: center;
  padding: 50px 30px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--cream);
}
.form-success .uk-icon { color: var(--champagne); margin-bottom: 16px; }
.form-success h3 { color: var(--navy); margin-bottom: 10px; }
.form-success p  { color: var(--text-muted); }

.form-errors {
  background: #fff5f5;
  border: 1px solid #fed7d7;
  border-radius: var(--radius);
  padding: 14px 18px;
  color: #c53030;
}
.form-errors ul { list-style: disc; padding-left: 18px; margin: 0; }
.form-errors li { font-size: 14px; }

/* ═══════════════════════════════════════════════
   KONTAKT – SPEZIFISCH
═══════════════════════════════════════════════ */
.contact-info-block { margin-bottom: 28px; }
.cib-label {
  display: block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--champagne);
  margin-bottom: 6px;
}
.cib-value { font-size: 15px; color: var(--navy); line-height: 1.65; }
.cib-value a { color: var(--navy); }
.cib-hint { font-size: 13px; color: var(--text-muted); }

.contact-map { margin-top: 28px; border-radius: var(--radius-lg); overflow: hidden; }
.contact-map iframe { display: block; width: 100%; height: 280px; }
.contact-map-placeholder {
  margin-top: 28px;
  height: 200px;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--text-muted);
  font-size: 14px;
  text-align: center;
}
.contact-map-placeholder .uk-icon { color: var(--champagne); }

/* ═══════════════════════════════════════════════
   LEGAL / IMPRESSUM / DATENSCHUTZ
═══════════════════════════════════════════════ */
.section-legal { background: var(--white); }
.legal-content { }
.legal-back { border-top: 1px solid var(--border); padding-top: 30px; }

/* ═══════════════════════════════════════════════
   RTE / RICH TEXT CONTENT
═══════════════════════════════════════════════ */
.rte-content h2 { font-size: 26px; color: var(--navy); margin: 36px 0 14px; padding-bottom: 10px; border-bottom: 1px solid var(--border); }
.rte-content h3 { font-size: 20px; color: var(--navy); margin: 28px 0 10px; }
.rte-content p  { font-size: 16px; color: var(--text-muted); line-height: 1.8; margin-bottom: 16px; }
.rte-content ul, .rte-content ol { margin: 16px 0 20px 20px; }
.rte-content li { font-size: 15px; color: var(--text-muted); line-height: 1.7; margin-bottom: 6px; }
.rte-content a  { color: var(--navy); text-decoration: underline; text-underline-offset: 3px; }
.rte-content strong { color: var(--navy); font-weight: 600; }
.rte-content blockquote {
  border-left: 3px solid var(--champagne);
  padding: 14px 22px;
  margin: 24px 0;
  background: var(--champagne-pale);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-style: italic;
  color: var(--text-muted);
}

/* ═══════════════════════════════════════════════
   LANDINGPAGE – SPEZIFISCH
═══════════════════════════════════════════════ */
.lp-header {
  background: var(--navy);
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.lp-header-tel {
  color: var(--champagne);
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 7px;
}

.lp-hero {
  background: var(--navy);
  padding: 90px 0 80px;
  text-align: center;
}
.lp-hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 5vw, 58px);
  color: #ffffff;
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 20px;
}
.lp-hero-sub {
  font-size: 18px;
  color: rgba(255,255,255,0.65);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}
.lp-hero-cta {
  font-size: 16px !important;
  padding: 16px 36px !important;
}
.lp-trust-bar {
  display: flex;
  gap: 24px;
  justify-content: center;
  margin-top: 24px;
  flex-wrap: wrap;
}

.lp-benefits { }
.lp-benefit-item { text-align: center; padding: 32px 20px; }
.lp-benefit-icon { color: var(--champagne); margin-bottom: 16px; }
.lp-benefit-title { font-size: 18px; color: var(--navy); margin-bottom: 10px; }
.lp-benefit-text  { font-size: 15px; color: var(--text-muted); line-height: 1.7; }

.lp-form-section { background: var(--cream); }
.lp-form-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 50px 50px;
  box-shadow: var(--shadow-md);
}
.lp-form-title {
  font-family: 'Playfair Display', serif;
  font-size: 30px;
  color: var(--navy);
  font-weight: 400;
  margin-bottom: 8px;
  line-height: 1.25;
}
.lp-form-sub { font-size: 15px; color: var(--text-muted); margin-bottom: 28px; }

.lp-trust-list { margin-top: 20px; }
.lp-trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 15px;
  color: var(--text-muted);
}
.lp-trust-check { color: var(--champagne); }

.lp-testimonial {
  margin-top: 32px;
  padding: 22px 24px;
  border-left: 3px solid var(--champagne);
  background: var(--champagne-pale);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
}
.lp-quote { font-family: 'Source Serif 4', serif; font-size: 15px; font-style: italic; color: var(--text-muted); line-height: 1.75; border: none; padding: 0; margin: 0; }
.lp-quote-author { font-size: 12px; color: var(--text-light); margin-top: 10px; margin-bottom: 0; }

.lp-submit-btn { font-size: 15px !important; padding: 16px !important; }

.lp-footer {
  background: var(--navy);
  padding: 24px 0;
}
.lp-footer p    { font-size: 13px; color: rgba(255,255,255,0.4); margin: 0; }
.lp-footer a    { color: rgba(255,255,255,0.5); text-decoration: none; }
.lp-footer a:hover { color: rgba(255,255,255,0.8); }

/* ═══════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════ */
.site-footer { background: var(--navy); }

.footer-main { padding: 60px 0 40px; }
.footer-brand { margin-bottom: 24px; }
.footer-tagline { font-size: 13px; color: rgba(255,255,255,0.45); line-height: 1.7; margin-top: 14px; }
.footer-contact-quick p { font-size: 13px; color: rgba(255,255,255,0.5); margin-bottom: 6px; }
.footer-contact-quick a { color: rgba(255,255,255,0.55); text-decoration: none; }
.footer-contact-quick a:hover { color: var(--champagne); }

.footer-heading {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--champagne);
  margin-bottom: 16px;
}
.footer-nav { list-style: none; padding: 0; }
.footer-nav li { padding: 6px 0; border-bottom: 1px solid rgba(255,255,255,0.06); }
.footer-nav a  { font-size: 13px; color: rgba(255,255,255,0.5); text-decoration: none; transition: color var(--transition); }
.footer-nav a:hover { color: rgba(255,255,255,0.85); }

.footer-badge {
  display: inline-block;
  padding: 8px 14px;
  border: 1px solid rgba(201,169,110,0.25);
  border-radius: var(--radius);
  font-size: 11px;
  color: rgba(255,255,255,0.45);
  line-height: 1.5;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 22px 0;
}
.footer-bottom p         { font-size: 12px; color: rgba(255,255,255,0.3); margin: 0; }
.footer-disclaimer       { font-size: 11px !important; color: rgba(255,255,255,0.22) !important; }

/* ═══════════════════════════════════════════════
   SECTIONS – BACKGROUNDS
═══════════════════════════════════════════════ */
.section-rechtsgebiete,
.section-leistungen,
.section-body,
.section-leistung-body   { background: var(--white); }

.section-usp,
.section-team,
.section-team-full,
.section-awards,
.section-faq,
.leistung-body          { background: var(--cream); }

.section-usp .section-lead,
.section-usp p          { color: var(--text-muted); }

/* ═══════════════════════════════════════════════
   UTILITIES
═══════════════════════════════════════════════ */
.uk-section { padding: 70px 0; }
.uk-section-muted { background: var(--cream); }

/* ═══════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════ */
@media (max-width: 960px) {
  .hero-stat-card { display: none; }
  .hero-section { padding: 60px 0 50px; }
  .cta-inline-box { padding: 28px 24px; }
  .lp-form-box { padding: 30px 24px; }
}

@media (max-width: 640px) {
  .hero-section    { padding: 48px 0 40px; }
  .page-hero       { padding: 48px 0 40px; }
  .hero-trust      { flex-direction: column; gap: 10px; }
  .hero-actions    { flex-direction: column; }
  .hero-actions .btn-primary,
  .hero-actions .btn-ghost { width: 100%; text-align: center; }
  .cta-banner      { flex-direction: column; gap: 20px; text-align: center; }
  .section-cta-inline .uk-grid { flex-direction: column; }
  .lp-trust-bar    { flex-direction: column; align-items: center; }
  .lp-form-box     { padding: 24px 16px; }
  .team-profile    { grid-template-columns: 1fr; text-align: center; }
  .card-stat-1, .card-stat-2 { display: none; }
}
