/*
Theme Name: Kanzlei Berners Düren
Theme URI: https://kanzlei-berners-dueren.de
Author: Kanzlei Berners
Description: Professionelles WordPress-Theme für Rechtsanwalt Jürgen Berners, Düren
Version: 1.0.0
License: GNU General Public License v2 or later
Text Domain: berners-dueren
*/

/* ============================================================
   CSS VARIABLES
   ============================================================ */
:root {
  --navy:        #1B2B4B;
  --navy-dark:   #111D33;
  --navy-light:  #243659;
  --gold:        #C9A96E;
  --gold-light:  #E2C99A;
  --gold-dark:   #A8843E;
  --white:       #FFFFFF;
  --off-white:   #F5F3EF;
  --gray-light:  #EBEBEB;
  --gray:        #888888;
  --text-dark:   #1A1A2E;
  --text-body:   #3A3A4A;

  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Lato', sans-serif;

  --shadow-sm:   0 2px 8px rgba(27,43,75,0.10);
  --shadow-md:   0 6px 24px rgba(27,43,75,0.15);
  --shadow-lg:   0 16px 48px rgba(27,43,75,0.20);

  --transition:  0.3s ease;
  --radius:      4px;
  --max-width:   1400px;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--text-body);
  background: var(--white);
  line-height: 1.8;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold-dark); }
ul { list-style: none; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--navy);
  line-height: 1.2;
  font-weight: 600;
}

h1 { font-size: clamp(2rem, 4vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); }
h4 { font-size: 1.2rem; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

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

/* ============================================================
   UTILITY CLASSES
   ============================================================ */
.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: var(--font-heading);
  color: var(--navy);
  margin-bottom: 1.5rem;
}

.section-title span { color: var(--gold); }

.gold-divider {
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 2rem;
}

.gold-divider.center { margin-left: auto; margin-right: auto; }

.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  border-radius: var(--radius);
  text-decoration: none;
}

.btn-gold {
  background: var(--gold);
  color: var(--navy-dark);
  border-color: var(--gold);
}
.btn-gold:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  color: var(--white);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--navy);
}

.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}
.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--navy-dark);
}

/* ============================================================
   HEADER & NAVIGATION
   ============================================================ */
#site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--navy-dark);
  box-shadow: var(--shadow-md);
  transition: all var(--transition);
}

#site-header.scrolled {
  background: rgba(17, 29, 51, 0.97);
  backdrop-filter: blur(8px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

/* Logo */
.site-logo {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  text-decoration: none;
}
.logo-name {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.02em;
}
.logo-name span { color: var(--gold); }
.logo-tagline {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 2px;
}

/* Main Nav */
.main-nav ul {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.main-nav a {
  display: block;
  padding: 0.5rem 0.9rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  transition: color var(--transition);
}
.main-nav a:hover,
.main-nav .current-menu-item a { color: var(--gold); }

/* Dropdown */
.main-nav .menu-item-has-children { position: relative; }
.main-nav .sub-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 220px;
  background: var(--navy-dark);
  border-top: 2px solid var(--gold);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all var(--transition);
  z-index: 100;
}
.main-nav .menu-item-has-children:hover .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.main-nav .sub-menu li a {
  padding: 0.7rem 1.2rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-size: 0.78rem;
}
.main-nav .sub-menu li:last-child a { border-bottom: none; }
.main-nav .sub-menu li a:hover { background: rgba(201,169,110,0.1); color: var(--gold); }

/* Header CTA */
.header-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.header-phone {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.03em;
}
.header-phone:hover { color: var(--gold-light); }

/* Mobile Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all var(--transition);
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  position: relative;
  min-height: calc(100vh - 68px);
  display: flex;
  align-items: center;
  background: var(--navy-dark);
  overflow: hidden;
  padding-top: 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(17,29,51,0.97) 0%, rgba(27,43,75,0.88) 60%, rgba(17,29,51,0.95) 100%);
  z-index: 1;
}

.hero-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,169,110,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,169,110,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: 0;
  -webkit-mask-image: linear-gradient(to bottom, black 70%, transparent 100%);
  mask-image: linear-gradient(to bottom, black 70%, transparent 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 3rem 2rem 3rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-text {}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(201,169,110,0.12);
  border: 1px solid rgba(201,169,110,0.3);
  border-radius: 2px;
  padding: 0.4rem 0.9rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.hero-badge::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1rem;
  font-weight: 700;
}
.hero-title span { color: var(--gold); }

.hero-subtitle {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 2rem;
  max-width: 480px;
  line-height: 1.7;
}

.hero-specialties {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
}
.specialty-tag {
  background: rgba(201,169,110,0.1);
  border: 1px solid rgba(201,169,110,0.25);
  color: var(--gold-light);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: 0.35rem 0.8rem;
  border-radius: 2px;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-image-wrap {
  position: relative;
}
.hero-image-frame {
  position: relative;
  border: 2px solid var(--gold);
  padding: 12px;
}
.hero-image-frame::before {
  content: '';
  position: absolute;
  top: -12px;
  right: -12px;
  bottom: 12px;
  left: 12px;
  border: 1px solid rgba(201,169,110,0.2);
  z-index: -1;
}
.hero-image-frame img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  filter: grayscale(20%);
}

.hero-info-card {
  position: absolute;
  bottom: -20px;
  left: -30px;
  background: var(--gold);
  padding: 1.2rem 1.6rem;
  box-shadow: var(--shadow-lg);
}
.hero-info-card .card-number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--navy-dark);
  line-height: 1;
}
.hero-info-card .card-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy-dark);
  opacity: 0.75;
}

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar {
  background: var(--navy);
  padding: 1.5rem 0;
  border-top: 1px solid rgba(201,169,110,0.2);
  border-bottom: 1px solid rgba(201,169,110,0.2);
}
.trust-bar-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255,255,255,0.75);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  transition: all var(--transition);
  cursor: default;
}
.trust-item:hover {
  color: var(--gold-light);
}
.trust-item:hover .trust-icon {
  color: var(--gold-light);
  transform: scale(1.1);
}
.trust-icon {
  width: 28px;
  height: 28px;
  color: var(--gold);
  flex-shrink: 0;
  transition: all var(--transition);
}
.trust-separator {
  width: 1px;
  height: 24px;
  background: rgba(201,169,110,0.2);
}

/* ============================================================
   INTRO / ABOUT SECTION
   ============================================================ */
.section-intro {
  padding: 5rem 0 4rem;
  position: relative;
  overflow: hidden;
  background-color: #E8E0D0;
  background-image: repeating-linear-gradient(
    -45deg,
    rgba(168,132,62,0.25) 0px,
    rgba(168,132,62,0.25) 1px,
    transparent 1px,
    transparent 10px
  );
}

.section-intro::before { display: none; }

/* Paragraphen-Symbol gross rechts */
.section-intro::after {
  content: '\00a7';
  position: absolute;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
  font-family: Georgia, serif;
  font-size: 20rem;
  font-weight: 700;
  color: rgba(168,132,62,0.15);
  line-height: 1;
  pointer-events: none;
  z-index: 0;
  user-select: none;
}

/* Inhalt ueber dem Muster */
.section-intro .container {
  position: relative;
  z-index: 1;
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: center;
}
.intro-image-wrap { position: relative; }
.intro-image-frame {
  position: relative;
}
.intro-image-frame img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}
.intro-image-frame::after {
  display: none;
}

/* Kein extra Aussenabstand durch den Dekorahmen */
.intro-image-wrap {
  padding-bottom: 0;
  margin-bottom: 0;
}
.intro-badge {
  position: absolute;
  bottom: 24px;
  right: 24px;
  background: var(--gold);
  padding: 1rem 1.4rem;
  text-align: center;
  box-shadow: var(--shadow-md);
}
.intro-badge .badge-number {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--navy-dark);
  line-height: 1;
  display: block;
}
.intro-badge .badge-text {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy-dark);
}

.intro-content {}
.intro-qualifications {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 1.5rem 0 2rem;
}
.qualification-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-dark);
}
.qualification-item::before {
  content: '';
  display: block;
  width: 20px;
  height: 2px;
  background: var(--gold);
  flex-shrink: 0;
}

/* ============================================================
   PRACTICE AREAS
   ============================================================ */
.section-practice {
  padding: 4rem 0 5rem;
  background: var(--off-white);
}
.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3.5rem;
}
.practice-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.practice-card {
  background: var(--white);
  border: 1px solid var(--gray-light);
  padding: 2.2rem;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.practice-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.practice-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: rgba(201,169,110,0.3);
}
.practice-card:hover::before { transform: scaleX(1); }

.practice-icon {
  width: 52px;
  height: 52px;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.4rem;
  color: var(--gold);
}
.practice-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
  color: var(--navy);
}
.practice-card p {
  font-size: 0.88rem;
  color: var(--gray);
  line-height: 1.65;
  margin-bottom: 1.2rem;
}
.practice-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  border-bottom: 1px solid rgba(201,169,110,0.3);
  padding-bottom: 2px;
  transition: gap var(--transition);
}
.practice-card:hover .practice-link { gap: 0.8rem; }

/* ============================================================
   WHY US
   ============================================================ */
.section-why {
  padding: 6rem 0;
  background: var(--navy-dark);
  position: relative;
  overflow: hidden;
}
.section-why::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,169,110,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,169,110,0.03) 1px, transparent 1px);
  background-size: 50px 50px;
}
.section-why .section-label,
.section-why .section-title { color: var(--white); }
.section-why .section-title span { color: var(--gold); }
.section-why .section-header { position: relative; z-index: 1; }
.why-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.why-card {
  border: 1px solid rgba(201,169,110,0.2);
  border-top: 3px solid var(--gold);
  padding: 2rem 1.6rem;
  transition: all var(--transition);
  background: rgba(255,255,255,0.04);
  position: relative;
  overflow: hidden;
}
.why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
}
.why-card:hover {
  background: rgba(201,169,110,0.09);
  border-color: rgba(201,169,110,0.4);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.3);
}
.why-number {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  color: rgba(201,169,110,0.3);
  line-height: 1;
  margin-bottom: 1rem;
}
.why-card h4 {
  color: var(--gold-light);
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.why-card p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.7;
}

/* ============================================================
   PUBLIKATION / BUCHAUTOR
   ============================================================ */
.section-publikation {
  padding: 6rem 0;
  background: var(--white);
}

.publikation-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 5rem;
  align-items: center;
}

.publikation-lead {
  font-size: 1.05rem;
  color: var(--text-body);
  line-height: 1.75;
  margin-bottom: 1.2rem;
}

.publikation-highlight {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: var(--off-white);
  border-left: 4px solid var(--gold);
  padding: 1.4rem 1.6rem;
  margin-top: 1.8rem;
  border-radius: 0 var(--radius) var(--radius) 0;
}

.publikation-highlight .highlight-icon {
  width: 28px;
  height: 28px;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.publikation-highlight p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-dark);
  margin: 0;
}

.publikation-highlight strong {
  color: var(--navy);
}

/* Buchcover */
.publikation-image {
  display: flex;
  justify-content: center;
}

.buch-wrap {
  position: relative;
  display: inline-block;
}

.buch-wrap img {
  width: 100%;
  max-width: 340px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 12px 24px rgba(27,43,75,0.12));
  transition: transform var(--transition);
}

.buch-wrap:hover img {
  transform: translateY(-6px) rotate(1deg);
}

.buch-badge {
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--navy);
  padding: 0.6rem 1.4rem;
  display: flex;
  gap: 0.75rem;
  align-items: center;
  white-space: nowrap;
  box-shadow: var(--shadow-md);
}

.buch-auflage {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.buch-verlag {
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.05em;
  border-left: 1px solid rgba(201,169,110,0.3);
  padding-left: 0.75rem;
}

@media (max-width: 768px) {
  .publikation-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .publikation-image { order: -1; }
  .buch-wrap img { max-width: 260px; }
}

/* ============================================================
   LOCATION / STANDORT
   ============================================================ */
.section-location {
  padding: 6rem 0;
  background: var(--white);
}
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.location-map {
  width: 100%;
  height: 420px;
  border: 0;
  filter: grayscale(20%);
}
.location-info {}
.address-block {
  margin-bottom: 2rem;
}
.address-block h4 {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.address-block p {
  font-size: 1rem;
  color: var(--text-dark);
  font-weight: 500;
  line-height: 1.7;
  margin: 0;
}
.contact-items {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
}
.contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--text-body);
}
.contact-item svg {
  width: 18px;
  height: 18px;
  color: var(--gold);
  flex-shrink: 0;
}
.contact-item a { color: var(--text-dark); font-weight: 500; }
.contact-item a:hover { color: var(--gold); }
.office-hours {
  background: var(--off-white);
  padding: 1.4rem 1.6rem;
  border-left: 3px solid var(--gold);
}
.office-hours h4 {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.hours-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  padding: 0.3rem 0;
  border-bottom: 1px solid var(--gray-light);
  color: var(--text-body);
}
.hours-row:last-child { border-bottom: none; }
.hours-row span:first-child { font-weight: 600; color: var(--text-dark); }

/* ============================================================
   CTA SECTION
   ============================================================ */
.section-cta {
  padding: 3.5rem 0;
  background: var(--gold);
  text-align: center;
}
.section-cta h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  color: var(--navy-dark);
  margin-bottom: 1rem;
}
.section-cta p {
  font-size: 1rem;
  color: rgba(27,43,75,0.75);
  max-width: 560px;
  margin: 0 auto 2rem;
}
.cta-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.btn-navy {
  background: var(--navy-dark);
  color: var(--white);
  border-color: var(--navy-dark);
}
.btn-navy:hover {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}

/* ============================================================
   FOOTER
   ============================================================ */
#site-footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
}
.footer-main {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 2rem;
  padding: 2.5rem 0 3rem;
  border-bottom: 1px solid rgba(201,169,110,0.12);
}
.footer-brand .logo-name { color: var(--white); margin-bottom: 1rem; display: block; }
.footer-brand p { line-height: 1.7; max-width: 280px; }
.footer-brand-text {
  font-size: 1rem;
  color: rgba(255,255,255,0.90);
  line-height: 1.65;
  margin-bottom: 0.3rem;
  font-weight: 500;
}
.footer-brand-sub {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.5;
  margin: 0;
}
.footer-col h4 {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #F0E0B0;
  margin-bottom: 1.2rem;
}
.footer-col ul li { padding: 0.3rem 0; }
.footer-col ul li a {
  color: rgba(255,255,255,0.82);
  font-size: 0.95rem;
  transition: all var(--transition);
  display: inline-block;
}
.footer-col ul li a:hover {
  color: var(--gold-light);
  padding-left: 4px;
}
.footer-address { line-height: 1.9; font-size: 0.95rem; color: rgba(255,255,255,0.82); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 0;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-copy {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.38);
  letter-spacing: 0.03em;
}
.footer-bottom a { color: rgba(255,255,255,0.45); font-size: 0.82rem; }
.footer-bottom a:hover { color: var(--gold); }
.footer-legal { display: flex; gap: 1.5rem; }

/* ============================================================
   INNER PAGE: SINGLE RECHTSGEBIET
   ============================================================ */
.page-hero {
  background: var(--navy-dark);
  padding: 8rem 0 4rem;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,169,110,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,169,110,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero h1 { color: var(--white); margin-bottom: 0.5rem; }
.page-hero .breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  margin-top: 1rem;
}
.page-hero .breadcrumb a { color: var(--gold); }
.page-hero .breadcrumb span { color: rgba(201,169,110,0.4); }

.page-content-wrap {
  padding: 4rem 0 6rem;
}
.page-content-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 3rem;
  align-items: start;
}
.main-content h2 {
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}
.main-content ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
}
.main-content ul li {
  padding: 0.4rem 0 0.4rem 1.5rem;
  position: relative;
  font-size: 0.95rem;
  border-bottom: 1px solid var(--gray-light);
}
.main-content ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 2px;
  background: var(--gold);
}
.sidebar-card {
  background: var(--navy-dark);
  padding: 2rem;
  color: var(--white);
  position: sticky;
  top: 100px;
}
.sidebar-card h3 {
  color: var(--white);
  font-size: 1.2rem;
  margin-bottom: 1.2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(201,169,110,0.2);
}
.sidebar-contact-item {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  margin-bottom: 1rem;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.7);
}
.sidebar-contact-item svg { color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.sidebar-contact-item a { color: var(--gold-light); }
.sidebar-card .btn { width: 100%; text-align: center; margin-top: 1.2rem; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-form-wrap {
  background: var(--off-white);
  padding: 3rem;
}
.contact-form-wrap h2 {
  margin-bottom: 2rem;
}
.form-group {
  margin-bottom: 1.2rem;
}
.form-group label {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 0.4rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid var(--gray-light);
  background: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-dark);
  outline: none;
  transition: border-color var(--transition);
  border-radius: var(--radius);
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--gold);
}
.form-group textarea { resize: vertical; min-height: 140px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-note {
  font-size: 0.78rem;
  color: var(--gray);
  margin-top: 0.75rem;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .practice-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-main { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .header-inner { height: 68px; }
  .main-nav, .header-phone { display: none; }
  .nav-toggle { display: flex; }
  .main-nav.open {
    display: block;
    position: fixed;
    top: 96px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--navy-dark);
    padding: 2rem;
    overflow-y: auto;
  }
  .main-nav.open ul { flex-direction: column; gap: 0; }
  .main-nav.open a { padding: 1rem 0; font-size: 1rem; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .main-nav.open .sub-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border-top: none;
    padding-left: 1rem;
  }

  .hero-content { grid-template-columns: 1fr; gap: 2rem; }
  .hero-image-wrap { display: block; }
  .hero-image-frame img { height: 320px; }
  .hero-info-card { bottom: -10px; left: 10px; padding: 0.8rem 1.2rem; }
  .hero { min-height: auto; padding: 5rem 0 3rem; }

  .intro-grid { grid-template-columns: 1fr; }
  .intro-image-wrap { display: none; }

  .practice-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }

  .location-grid { grid-template-columns: 1fr; }
  .page-content-grid { grid-template-columns: 1fr; }

  .footer-main { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .trust-bar-inner { gap: 1.2rem; }
  .trust-separator { display: none; }
  .form-row { grid-template-columns: 1fr; }
}

/* ============================================================
   KONTAKTSEITE – SCHNELLAUSWAHL
   ============================================================ */
.kontakt-section {
  padding: 4rem 0 6rem;
  background: var(--white);
}

.kontakt-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  align-items: start;
}

/* Schnellauswahl */
.schnellauswahl {
  background: var(--navy-dark);
  padding: 2rem;
  margin-bottom: 2rem;
  border-top: 3px solid var(--gold);
}

.schnellauswahl-title {
  color: var(--white);
  font-size: 1.2rem;
  margin-bottom: 0.4rem;
}

.schnellauswahl-hint {
  color: rgba(255,255,255,0.5);
  font-size: 0.82rem;
  margin-bottom: 1.5rem;
}

.schnellauswahl-gruppe {
  margin-bottom: 1.4rem;
}

.gruppe-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
}

.gruppe-label svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.gruppe-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.schnell-btn {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(201,169,110,0.25);
  color: rgba(255,255,255,0.8);
  font-size: 0.82rem;
  font-family: var(--font-body);
  padding: 0.45rem 0.9rem;
  cursor: pointer;
  border-radius: var(--radius);
  transition: all var(--transition);
  white-space: nowrap;
}

.schnell-btn:hover {
  background: rgba(201,169,110,0.15);
  border-color: var(--gold);
  color: var(--gold-light);
}

.schnell-btn.aktiv {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy-dark);
  font-weight: 700;
}

/* Thema-Anzeige im Formular */
.thema-anzeige {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(201,169,110,0.1);
  border: 1px solid rgba(201,169,110,0.3);
  border-left: 3px solid var(--gold);
  padding: 0.75rem 1rem;
  margin-bottom: 1.2rem;
  border-radius: 0 var(--radius) var(--radius) 0;
}

.thema-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-dark);
  white-space: nowrap;
}

.thema-wert {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy);
  flex: 1;
}

.thema-clear {
  background: none;
  border: none;
  color: var(--gray);
  cursor: pointer;
  font-size: 0.9rem;
  padding: 0.2rem 0.4rem;
  border-radius: 50%;
  transition: all var(--transition);
  line-height: 1;
}

.thema-clear:hover {
  background: rgba(0,0,0,0.08);
  color: var(--text-dark);
}

/* Checkbox Label */
.checkbox-label {
  display: flex !important;
  align-items: flex-start !important;
  gap: 0.6rem !important;
  cursor: pointer !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
  font-size: 0.82rem !important;
  font-weight: 400 !important;
  color: var(--text-body) !important;
}

.checkbox-label input[type="checkbox"] {
  width: auto !important;
  margin-top: 3px;
  flex-shrink: 0;
}

/* Kontakt Sidebar */
.kontakt-sidebar {
  position: sticky;
  top: 100px;
}

.kontakt-info-card {
  background: var(--navy-dark);
  padding: 2rem;
  border-top: 3px solid var(--gold);
}

.kontakt-info-card h3 {
  color: var(--white);
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(201,169,110,0.2);
}

.kontakt-info-item {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
  margin-bottom: 1.2rem;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.kontakt-info-item:last-of-type {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.kontakt-info-item svg {
  width: 18px;
  height: 18px;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 3px;
}

.kontakt-info-item div {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.kontakt-info-item strong {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}

.kontakt-info-item span,
.kontakt-info-item a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.5;
}

.kontakt-info-item a:hover { color: var(--gold-light); }

@media (max-width: 768px) {
  .kontakt-grid { grid-template-columns: 1fr; }
  .kontakt-sidebar { position: static; margin-top: 2rem; }
  .gruppe-buttons { gap: 0.4rem; }
  .schnell-btn { font-size: 0.78rem; padding: 0.4rem 0.7rem; }
}

/* ============================================================
   HERO TITEL ANPASSUNG
   ============================================================ */
.hero-title-xl {
  font-size: 1.3em;
  display: inline-block;
  line-height: 1;
}
.hero-title-sub {
  font-size: 0.7em;
  color: rgba(255,255,255,0.7);
  font-weight: 400;
  display: inline-block;
}

/* ============================================================
   KONTAKT SCHNELL SEKTION (Startseite)
   ============================================================ */
.section-kontakt-schnell {
  padding: 6rem 0;
  background: var(--navy-dark);
  position: relative;
  overflow: hidden;
}

.section-kontakt-schnell::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,169,110,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,169,110,0.03) 1px, transparent 1px);
  background-size: 50px 50px;
}

.kontakt-schnell-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 4rem;
  align-items: center;
}

/* Info Links */
.kontakt-schnell-info {}

.kontakt-schnell-items {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.ks-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.ks-icon {
  width: 42px;
  height: 42px;
  background: rgba(201,169,110,0.1);
  border: 1px solid rgba(201,169,110,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
}

.ks-icon svg { width: 18px; height: 18px; }

.ks-item div {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding-top: 0.5rem;
}

.ks-item strong {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
}

.ks-item span,
.ks-item a {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.72);
}

.ks-item a:hover { color: var(--gold-light); }

/* Formular Rechts */
.kontakt-schnell-form {}

.ks-form-inner {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,169,110,0.2);
  border-top: 3px solid var(--gold);
  padding: 2.5rem;
}

.ks-form-inner h3 {
  color: var(--white);
  font-size: 1.4rem;
  margin-bottom: 1.8rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(201,169,110,0.15);
}

.ks-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

.ks-form-group {
  margin-bottom: 1rem;
}

.ks-form-group label {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--gold);
  margin-bottom: 0.4rem;
}

.ks-form-group input,
.ks-form-group select,
.ks-form-group textarea {
  width: 100%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(201,169,110,0.2);
  color: var(--white);
  padding: 0.75rem 1rem;
  font-family: var(--font-body);
  font-size: 0.92rem;
  outline: none;
  transition: border-color var(--transition);
  border-radius: var(--radius);
}

.ks-form-group input::placeholder,
.ks-form-group textarea::placeholder {
  color: rgba(255,255,255,0.35);
}

.ks-form-group input:focus,
.ks-form-group select:focus,
.ks-form-group textarea:focus {
  border-color: var(--gold);
}

.ks-form-group select {
  cursor: pointer;
  color: rgba(255,255,255,0.75);
}

.ks-form-group select option {
  background: var(--navy-dark);
  color: var(--white);
}

.ks-form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.ks-checkbox-label {
  display: flex !important;
  align-items: flex-start !important;
  gap: 0.6rem !important;
  cursor: pointer;
  font-size: 0.78rem !important;
  color: rgba(255,255,255,0.55) !important;
  font-weight: 400 !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
}

.ks-checkbox-label input {
  width: auto !important;
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: var(--gold);
}

.ks-checkbox-label a {
  color: var(--gold);
}

@media (max-width: 768px) {
  .kontakt-schnell-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .ks-form-row { grid-template-columns: 1fr; }
  .ks-form-inner { padding: 1.8rem; }
}

/* ============================================================
   FOOTER LOGO
   ============================================================ */
.footer-logo {
  display: block;
  width: 240px;
  height: auto;
  margin-bottom: 0.4rem;
  mix-blend-mode: lighten;
  filter: brightness(1.15);
  transition: transform var(--transition);
}
.footer-logo:hover { transform: scale(1.03); }

@media (max-width: 768px) {
  .footer-logo { display: none; }
}

/* ============================================================
   FAQ FLIP CARDS
   ============================================================ */
.section-faq {
  padding: 6rem 0;
  background: var(--navy-dark);
  position: relative;
  overflow: hidden;
}

.section-faq::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,169,110,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,169,110,0.03) 1px, transparent 1px);
  background-size: 50px 50px;
}

.section-faq .section-header {
  position: relative;
  z-index: 1;
}

.section-faq .section-label { color: var(--gold); }
.section-faq .section-title { color: var(--white); }
.section-faq .section-title span { color: var(--gold); }
.section-faq .section-header p {
  color: rgba(255,255,255,0.5);
  font-size: 0.88rem;
  margin-top: -0.5rem;
}

.faq-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
}

/* Flip Card Container */
.faq-card {
  height: 260px;
  perspective: 1000px;
  cursor: pointer;
}

.faq-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 0.65s cubic-bezier(0.4, 0.2, 0.2, 1);
}

.faq-card:hover .faq-inner,
.faq-card.flipped .faq-inner {
  transform: rotateY(180deg);
}

/* Vorderseite */
.faq-front,
.faq-back {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  padding: 1.6rem;
  display: flex;
  flex-direction: column;
}

.faq-front {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,169,110,0.2);
  border-top: 3px solid var(--gold);
  justify-content: space-between;
}

.faq-num {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 700;
  color: rgba(201,169,110,0.2);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.faq-icon {
  width: 0;
  height: 0;
  overflow: hidden;
}

.faq-front h4 {
  color: var(--gold-light);
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.4;
  flex: 1;
  display: flex;
  align-items: center;
}

.faq-hint {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(201,169,110,0.45);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.8rem;
  transition: color var(--transition);
}

.faq-hint::after {
  content: '↺';
  font-size: 0.9rem;
}

.faq-card:hover .faq-hint {
  color: var(--gold);
}

/* Rückseite */
.faq-back {
  background: var(--off-white);
  border-top: 3px solid var(--gold);
  transform: rotateY(180deg);
  justify-content: flex-start;
  gap: 0.75rem;
  overflow: hidden;
}

.faq-back h4 {
  color: var(--navy);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid rgba(168,132,62,0.3);
  flex-shrink: 0;
}

.faq-back p {
  font-size: 0.82rem;
  color: var(--text-body);
  line-height: 1.65;
  margin: 0;
  overflow: hidden;
}

.faq-back p strong {
  color: var(--navy);
  font-weight: 700;
}

/* Responsive */
@media (max-width: 1024px) {
  .faq-grid { grid-template-columns: repeat(2, 1fr); }
  .faq-card { height: 240px; }
}

@media (max-width: 768px) {
  .faq-grid { grid-template-columns: 1fr 1fr; gap: 0.8rem; }
  .faq-card { height: 220px; }
  .faq-front, .faq-back { padding: 1.2rem; }
  .faq-front h4 { font-size: 0.85rem; }
  .faq-back p { font-size: 0.78rem; }
}

@media (max-width: 480px) {
  .faq-grid { grid-template-columns: 1fr; }
  .faq-card { height: auto; min-height: 180px; }
}

/* ============================================================
   SCHWERPUNKT KARTEN (4er Grid)
   ============================================================ */
.schwerpunkt-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  position: relative;
  z-index: 1;
}

.schwerpunkt-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,169,110,0.2);
  border-top: 3px solid var(--gold);
  padding: 2rem 1.6rem;
  display: flex;
  flex-direction: column;
  transition: all var(--transition);
  position: relative;
}

.schwerpunkt-card:hover {
  background: rgba(201,169,110,0.07);
  border-color: rgba(201,169,110,0.4);
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.3);
}

.schwerpunkt-card-gold {
  background: rgba(201,169,110,0.08);
  border-color: rgba(201,169,110,0.35);
}

.schwerpunkt-card-gold:hover {
  background: rgba(201,169,110,0.14);
}

.sw-num {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 700;
  color: rgba(201,169,110,0.18);
  line-height: 1;
  margin-bottom: 0.8rem;
}

.sw-icon {
  width: 36px;
  height: 36px;
  color: var(--gold);
  margin-bottom: 1rem;
}

.sw-icon svg { width: 100%; height: 100%; }

.schwerpunkt-card h3 {
  color: var(--gold-light);
  font-size: 1.05rem;
  margin-bottom: 0.8rem;
  line-height: 1.3;
}

.schwerpunkt-card-gold h3 {
  color: var(--gold);
}

.schwerpunkt-card p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.65;
  margin-bottom: 1rem;
}

.schwerpunkt-card p strong {
  color: var(--gold-light);
}

.sw-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  flex: 1;
}

.sw-list li {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  padding: 0.3rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.sw-list li::before {
  content: '';
  display: block;
  width: 12px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

.sw-btn {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  border-bottom: 1px solid rgba(201,169,110,0.3);
  padding-bottom: 2px;
  transition: all var(--transition);
  align-self: flex-start;
  margin-top: auto;
}

.sw-btn:hover {
  color: var(--gold-light);
  border-color: var(--gold);
  padding-left: 4px;
}

.sw-btn-gold {
  color: var(--navy-dark);
  background: var(--gold);
  border: none;
  padding: 0.6rem 1.2rem;
  border-radius: var(--radius);
  font-size: 0.8rem;
}

.sw-btn-gold:hover {
  background: var(--gold-dark);
  color: var(--white);
  padding-left: 1.2rem;
}

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

@media (max-width: 600px) {
  .schwerpunkt-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   ABFINDUNGSRECHNER
   ============================================================ */
.rechner-wrap {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: start;
}

.rechner-hinweis {
  background: var(--off-white);
  border-left: 3px solid var(--gold);
  padding: 1.2rem 1.4rem;
  margin-top: 1.5rem;
  font-size: 0.88rem;
}

.rechner-hinweis strong {
  display: block;
  color: var(--navy);
  font-weight: 700;
  margin-bottom: 0.5rem;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.rechner-hinweis ul {
  padding-left: 1rem;
  list-style: disc;
}

.rechner-hinweis ul li {
  padding: 0.2rem 0;
  color: var(--text-body);
  font-size: 0.85rem;
  border: none;
}

.rechner-tool {
  background: var(--white);
  box-shadow: var(--shadow-lg);
  border-top: 3px solid var(--gold);
}

.rechner-inputs {
  padding: 2rem;
  border-bottom: 1px solid var(--gray-light);
}

.rechner-inputs h3 {
  color: var(--navy);
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--gray-light);
}

.rechner-field {
  margin-bottom: 1.5rem;
}

.rechner-field label {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.rechner-input-wrap {
  position: relative;
}

.rechner-input-wrap input {
  width: 100%;
  padding: 0.75rem 2.5rem 0.75rem 1rem;
  border: 1px solid var(--gray-light);
  font-size: 1.1rem;
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--navy);
  outline: none;
  transition: border-color var(--transition);
  border-radius: var(--radius);
}

.rechner-input-wrap input:focus { border-color: var(--gold); }

.rechner-unit {
  position: absolute;
  right: 0.8rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--gray);
}

.rechner-hint {
  font-size: 0.75rem;
  color: var(--gray);
  margin-top: 0.3rem;
  font-weight: 400;
}

.rechner-slider {
  width: 100%;
  height: 4px;
  -webkit-appearance: none;
  appearance: none;
  background: var(--gray-light);
  outline: none;
  border-radius: 2px;
  margin: 0.6rem 0 0.3rem;
  cursor: pointer;
}

.rechner-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--gold);
  border: 2px solid var(--white);
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  cursor: pointer;
}

.slider-labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.72rem;
  color: var(--gray);
}

/* Ergebnis */
.rechner-ergebnis {
  padding: 2rem;
  background: var(--navy-dark);
}

.ergebnis-header {
  display: flex;
  flex-direction: column;
  margin-bottom: 0.75rem;
}

.ergebnis-header span {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.3rem;
}

.ergebnis-betrag {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}

.ergebnis-formel {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  margin-bottom: 1rem;
  font-family: monospace;
}

.ergebnis-bewertung {
  background: rgba(255,255,255,0.05);
  border-left: 2px solid var(--gold);
  padding: 0.9rem 1rem;
  margin-bottom: 1.5rem;
}

.bewertung-text {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.6;
}

.ergebnis-cta p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.5;
}

/* FAQ Akkordeon */
.faq-akkordeon {
  border: 1px solid var(--gray-light);
  border-radius: var(--radius);
  overflow: hidden;
}

.faq-item {
  border-bottom: 1px solid var(--gray-light);
}

.faq-item:last-child { border-bottom: none; }

.faq-frage {
  width: 100%;
  background: var(--white);
  border: none;
  padding: 1.2rem 1.5rem;
  text-align: left;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: background var(--transition);
}

.faq-frage::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform var(--transition);
}

.faq-item.open .faq-frage {
  background: var(--off-white);
  color: var(--gold-dark);
}

.faq-item.open .faq-frage::after {
  transform: rotate(45deg);
}

.faq-antwort {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-item.open .faq-antwort {
  max-height: 400px;
}

.faq-antwort p {
  padding: 1rem 1.5rem 1.2rem;
  font-size: 0.9rem;
  color: var(--text-body);
  line-height: 1.7;
  border-top: 1px solid var(--gray-light);
  margin: 0;
}

.faq-antwort p strong { color: var(--navy); }

@media (max-width: 768px) {
  .rechner-wrap { grid-template-columns: 1fr; }
}

/* ============================================================
   SCHWERPUNKT KARTE GOLD RAHMEN (Abfindungsrechner)
   ============================================================ */
.schwerpunkt-card-gold {
  background: rgba(201,169,110,0.06);
  border: 2px solid var(--gold) !important;
  border-top: 3px solid var(--gold) !important;
  box-shadow: 0 0 0 1px rgba(201,169,110,0.15), inset 0 0 20px rgba(201,169,110,0.04);
}

.schwerpunkt-card-gold:hover {
  background: rgba(201,169,110,0.12);
  box-shadow: 0 12px 40px rgba(0,0,0,0.35), 0 0 0 1px rgba(201,169,110,0.3);
}

/* ============================================================
   STANDORTE GRID (Zwei Standorte nebeneinander)
   ============================================================ */
.standorte-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.2rem;
}

.standort-block {
  padding: 1rem 1.2rem;
  border-left: 3px solid var(--gold);
  background: var(--off-white);
}

.standort-haupt {
  border-color: var(--gold);
}

.standort-zweig {
  border-color: rgba(201,169,110,0.4);
  background: var(--white);
}

.standort-block h4 {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 0.4rem;
}

.standort-block p {
  font-size: 0.9rem;
  color: var(--text-dark);
  font-weight: 500;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 600px) {
  .standorte-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   FAQ BUTTONS UNTER RECHTSGEBIETE
   ============================================================ */
.faq-buttons-wrap {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--gray-light);
  text-align: center;
}

.faq-buttons-label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 1rem;
}

.faq-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.faq-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.9rem 1.8rem;
  background: var(--navy);
  border: 2px solid var(--navy);
  color: var(--gold-light);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
}

.faq-btn svg {
  width: 18px;
  height: 18px;
  color: var(--gold);
  flex-shrink: 0;
  transition: color var(--transition);
}

.faq-btn:hover {
  background: var(--off-white);
  border-color: var(--gold);
  color: var(--navy);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.faq-btn:hover svg { color: var(--gold-dark); }

/* ============================================================
   FIX: SIDEBAR ICONS ZU GROSS
   ============================================================ */
.sidebar-contact-item svg {
  width: 18px !important;
  height: 18px !important;
  flex-shrink: 0;
  margin-top: 2px;
}

.sidebar-card {
  background: var(--navy-dark);
  padding: 2rem;
  color: var(--white);
  position: sticky;
  top: 100px;
}

.sidebar-contact-item {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  margin-bottom: 1rem;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.7);
}

.sidebar-contact-item a {
  color: var(--gold-light);
}

/* ============================================================
   BUCHCOVER
   ============================================================ */
.buch-wrap img {
  background: transparent;
}

.publikation-image {
  background: transparent;
}

/* ============================================================
   FAQ SEITE – MOBIL SIDEBAR UNTER INHALT
   ============================================================ */
@media (max-width: 900px) {
  .faq-page-grid {
    grid-template-columns: 1fr !important;
  }
}

/* ============================================================
   DOWNLOADS SEITE
   ============================================================ */
.section-downloads {
  padding: 5rem 0 6rem;
  background: var(--white);
}

.downloads-intro {
  max-width: 700px;
  margin: 0 auto 3rem;
  text-align: center;
  font-size: 1rem;
  color: var(--text-body);
  line-height: 1.75;
}

.downloads-intro a { color: var(--gold-dark); }

.downloads-grid {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  max-width: 860px;
  margin: 0 auto 3rem;
}

.download-card {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  gap: 1.5rem;
  align-items: center;
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-left: 4px solid var(--gold);
  padding: 1.6rem 2rem;
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
}

.download-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
}

.download-icon {
  width: 48px;
  height: 48px;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}

.download-icon svg { width: 22px; height: 22px; }

.download-info h3 {
  font-size: 1.05rem;
  color: var(--navy);
  margin-bottom: 0.3rem;
}

.download-info p {
  font-size: 0.88rem;
  color: var(--gray);
  line-height: 1.55;
  margin: 0 0 0.3rem;
}

.download-meta {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(201,169,110,0.7);
}

.download-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--navy);
  color: var(--gold-light);
  border: 1px solid rgba(201,169,110,0.2);
  padding: 0.7rem 1.2rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: all var(--transition);
  border-radius: var(--radius);
}

.download-btn svg { width: 14px; height: 14px; }

.download-btn:hover {
  background: var(--gold);
  color: var(--navy-dark);
  border-color: var(--gold);
}

.downloads-hinweis {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  max-width: 860px;
  margin: 0 auto;
  background: var(--navy-dark);
  border-top: 3px solid var(--gold);
  padding: 1.8rem 2rem;
  color: rgba(255,255,255,0.8);
}

.hinweis-icon {
  width: 36px;
  height: 36px;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.hinweis-icon svg { width: 100%; height: 100%; }

.downloads-hinweis strong {
  display: block;
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 0.3rem;
}

.downloads-hinweis p {
  font-size: 0.88rem;
  margin: 0;
  color: rgba(255,255,255,0.65);
}

@media (max-width: 600px) {
  .download-card {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .download-icon { display: none; }
}

/* ============================================================
   STANDARDSEITEN-INHALT (Impressum, Datenschutz via eRecht24)
   ============================================================ */
.main-content h2 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--navy);
  margin: 2rem 0 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--gold);
}

.main-content h2:first-child { margin-top: 0; }

.main-content h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--navy);
  margin: 1.5rem 0 0.6rem;
}

.main-content p,
.main-content li {
  font-size: 0.95rem;
  color: var(--text-body);
  line-height: 1.75;
}

.main-content ul,
.main-content ol {
  margin: 0.5rem 0 1rem 1.2rem;
}

.main-content li { margin-bottom: 0.4rem; }

.main-content a {
  color: var(--gold-dark);
  text-decoration: underline;
}

.main-content a:hover { color: var(--gold); }

.main-content strong { color: var(--navy); }

.main-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0;
  font-size: 0.9rem;
}

.main-content table th,
.main-content table td {
  border: 1px solid var(--gray-light);
  padding: 0.6rem 0.8rem;
  text-align: left;
}

.main-content table th {
  background: var(--off-white);
  color: var(--navy);
  font-weight: 700;
}

.main-content hr {
  border: none;
  border-top: 1px solid var(--gray-light);
  margin: 1.5rem 0;
}
