/* ============================================================
   VE KFZ-Gutachten Erstein – Design System & Styles
   ============================================================ */

/* --- CSS Custom Properties (Design Tokens) --- */
:root {
  /* Brand Palette */
  --brand-900: #0a2a27;
  --brand-800: #0f3632;
  --brand-700: #1a4a45;
  --brand-600: #236058;
  --brand-500: #2e7a6e;
  --gold-600:  #a07c30;
  --gold-500:  #c9a84c;
  --gold-400:  #d9be72;
  --gold-300:  #e8d09a;

  /* Neutral Backgrounds */
  --bg:          #f6f8f8;
  --surface:     #ffffff;
  --surface-alt: #eef2f1;

  /* Text */
  --text:        #141c1b;
  --text-2:      #2c3a38;
  --muted:       #627470;

  /* Font */
  --font: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue',
          Arial, 'Liberation Sans', sans-serif;

  /* Spacing Scale */
  --s1:  4px;
  --s2:  8px;
  --s3:  12px;
  --s4:  16px;
  --s6:  24px;
  --s8:  32px;
  --s10: 40px;
  --s12: 48px;
  --s16: 64px;
  --s20: 80px;
  --s24: 96px;

  /* Radius */
  --r-sm: 6px;
  --r-md: 12px;
  --r-lg: 20px;
  --r-xl: 32px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0,0,0,.06);
  --shadow-md: 0 4px 14px rgba(0,0,0,.08);
  --shadow-lg: 0 8px 24px rgba(0,0,0,.10);
  --shadow-xl: 0 12px 36px rgba(0,0,0,.12);

  /* Containers */
  --container:    1200px;
  --container-sm: 860px;

  /* Transitions */
  --transition: 200ms ease;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
a:focus-visible, button:focus-visible {
  outline: 3px solid var(--gold-500);
  outline-offset: 3px;
  border-radius: var(--r-sm);
}
ul, ol { list-style: none; }
button { cursor: pointer; font: inherit; border: none; background: none; }

/* --- Typography Scale --- */
h1, h2, h3, h4, h5 {
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -.02em;
  color: inherit;
}
h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.4rem); }
h4 { font-size: 1.1rem; font-weight: 600; }

p { max-width: 68ch; }

.lead {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-2);
  line-height: 1.75;
}

.text-muted { color: var(--muted); font-size: .9rem; }
.text-gold  { color: var(--gold-500); }
.text-brand { color: var(--brand-700); }

/* --- Layout Utilities --- */
.container {
  width: min(var(--container), 100%);
  margin-inline: auto;
  padding-inline: var(--s6);
}
.container-sm {
  width: min(var(--container-sm), 100%);
  margin-inline: auto;
  padding-inline: var(--s6);
}

.section {
  padding-block: var(--s20);
}
.section-sm {
  padding-block: var(--s12);
}
.section-lg {
  padding-block: var(--s24);
}

.section-header {
  text-align: center;
  margin-bottom: var(--s12);
}
.section-header h2 { margin-bottom: var(--s3); }
.section-header p { margin-inline: auto; color: var(--muted); }

.section-eyebrow {
  display: inline-block;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold-500);
  margin-bottom: var(--s2);
}

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--s8); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s6); }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--s6); }

.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.flex-gap { display: flex; align-items: center; gap: var(--s4); }

/* --- Divider --- */
.divider {
  width: 56px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-500), var(--gold-300));
  border-radius: 2px;
  margin: var(--s4) auto var(--s6);
}
.divider-left { margin-left: 0; }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--s2);
  padding: 14px 28px;
  border-radius: var(--r-md);
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: .01em;
  transition: all var(--transition);
  white-space: nowrap;
  text-decoration: none;
}
.btn-primary {
  background: linear-gradient(135deg, var(--gold-500), var(--gold-600));
  color: var(--brand-900);
  box-shadow: 0 4px 16px rgba(201,168,76,.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,168,76,.45);
}
.btn-outline {
  border: 2px solid var(--gold-500);
  color: var(--gold-500);
  background: transparent;
}
.btn-outline:hover {
  background: var(--gold-500);
  color: var(--brand-900);
}
.btn-brand {
  background: var(--brand-700);
  color: #fff;
  box-shadow: var(--shadow-md);
}
.btn-brand:hover {
  background: var(--brand-800);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}
.btn-ghost {
  color: var(--brand-700);
  border: 2px solid var(--brand-700);
}
.btn-ghost:hover {
  background: var(--brand-700);
  color: #fff;
}
.btn-lg { padding: 18px 36px; font-size: 1.05rem; }
.btn-sm { padding: 10px 18px; font-size: .88rem; }
.btn-wa {
  background: #3a8f5e;
  color: #fff;
  box-shadow: 0 4px 16px rgba(58,143,94,.25);
}
.btn-wa:hover {
  background: #2f7a50;
  transform: translateY(-2px);
}

/* --- Cards --- */
.card {
  background: var(--surface);
  border-radius: var(--r-lg);
  padding: var(--s8);
  box-shadow: var(--shadow-md);
  transition: transform var(--transition), box-shadow var(--transition);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.card-sm {
  padding: var(--s6);
  border-radius: var(--r-md);
}

/* --- Badge / Chip --- */
.badge {
  display: inline-flex;
  align-items: center;
  gap: var(--s2);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: .82rem;
  font-weight: 600;
  background: var(--surface-alt);
  color: var(--brand-700);
}
.badge-gold {
  background: linear-gradient(135deg, var(--gold-500), var(--gold-400));
  color: var(--brand-900);
}

/* ================================================================
   HEADER / NAVIGATION
   ================================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #163e39;
  box-shadow: 0 2px 20px rgba(0,0,0,.25);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--s6);
  height: 84px;
}

/* Logo (im Header leer – ausgeblendet) */
.site-logo {
  display: none;
}
.logo-img {
  height: 46px;
  width: auto;
  display: block;
  object-fit: contain;
}
/* Logo Bar – weiße volle Leiste */
.logo-bar {
  background: #fff;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-block: var(--s3);
  border-bottom: 1px solid rgba(10,42,39,.08);
  position: relative;
}
.logo-bar-img {
  height: 104px;
  width: auto;
  display: block;
  object-fit: contain;
}
/* Hamburger in logo-bar – nur Mobile */
.logo-bar-toggle {
  display: none;
}
/* Altes Pill (nicht mehr verwendet, sicherheitshalber) */
.logo-pill {
  display: none;
}
.logo-pill-img {
  display: none;
}
.logo-mark {
  width: 46px;
  height: 46px;
  background: linear-gradient(135deg, var(--gold-500), var(--gold-400));
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  font-weight: 900;
  color: var(--brand-900);
  letter-spacing: -.04em;
  flex-shrink: 0;
}
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.logo-text-top {
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #fff;
}
.logo-text-name {
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--gold-400);
  letter-spacing: .08em;
  text-transform: uppercase;
}

/* Logo Band (zwischen Hero und Info-Banner) */
.logo-band {
  background: var(--surface);
  border-bottom: 1px solid rgba(10,42,39,.08);
  padding-block: var(--s4);
}
.logo-band-inner {
  display: flex;
  justify-content: center;
}
.logo-band-img {
  height: 260px;
  width: auto;
  object-fit: contain;
}
@media (max-width: 640px) {
  .logo-band-img { height: 200px; }
}

/* Fahrzeug Fotos Sektion */
.car-photos-section {
  padding-block: var(--s12);
  background: var(--bg);
}
/* Vollbreiter Banner-Streifen */
.banner-strip {
  width: 100%;
  border-top: 4px solid var(--gold-500);
  border-bottom: 4px solid var(--gold-500);
  overflow: hidden;
  line-height: 0;
}
.banner-strip img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}
@media (max-width: 640px) {
  .banner-strip img { height: 240px; }
}

.car-photos-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s8);
}
.car-photo-frame {
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 3px solid rgba(201,168,76,.5);
  box-shadow: 0 4px 20px rgba(201,168,76,.15);
  aspect-ratio: 4/3;
}
.car-photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}
.car-photo-frame:hover img {
  transform: scale(1.03);
}
@media (max-width: 640px) {
  .car-photos-grid { grid-template-columns: 1fr; gap: var(--s5); }
}

/* Primary Nav */
.site-nav { display: flex; align-items: center; gap: var(--s2); }

.nav-item {
  position: relative;
}
.nav-link {
  display: block;
  padding: 10px 14px;
  font-size: .88rem;
  font-weight: 600;
  color: rgba(255,255,255,.85);
  border-radius: var(--r-sm);
  transition: all var(--transition);
  letter-spacing: .01em;
  text-transform: uppercase;
  font-size: .78rem;
}
.nav-link:hover, .nav-link.active {
  color: var(--gold-400);
  background: rgba(255,255,255,.07);
}
.nav-link-has-dropdown::after {
  content: '';
  display: inline-block;
  width: 0; height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  margin-left: 6px;
  vertical-align: middle;
}

/* Dropdown */
.nav-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 240px;
  background: var(--surface);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-xl);
  padding: var(--s2);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all var(--transition);
  z-index: 200;
  border: 1px solid var(--surface-alt);
}
.nav-item:hover .nav-dropdown,
.nav-item:focus-within .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-dropdown a {
  display: block;
  padding: 10px 14px;
  border-radius: var(--r-sm);
  font-size: .88rem;
  color: var(--text-2);
  transition: all var(--transition);
  font-weight: 500;
}
.nav-dropdown a:hover {
  background: var(--surface-alt);
  color: var(--brand-700);
  padding-left: 18px;
}

.header-cta {
  display: flex;
  align-items: center;
  gap: var(--s3);
  flex-shrink: 0;
}
.header-phone {
  color: rgba(255,255,255,.7);
  font-size: .82rem;
  font-weight: 500;
}
.header-phone a {
  color: var(--gold-400);
  font-weight: 700;
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--s2);
  border-radius: var(--r-sm);
  transition: all var(--transition);
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all var(--transition);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile Nav */
.mobile-nav {
  display: none;
  background: var(--brand-800);
  padding: var(--s4) var(--s6);
  border-top: 1px solid rgba(255,255,255,.08);
}
.mobile-nav.is-open { display: block; }
.mobile-nav a {
  display: block;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,.07);
  color: rgba(255,255,255,.85);
  font-weight: 500;
  font-size: .95rem;
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover { color: var(--gold-400); }
.mobile-nav-section { margin-bottom: var(--s4); }
.mobile-nav-section-label {
  font-size: .75rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold-500);
  font-weight: 700;
  margin-bottom: var(--s2);
}
.mobile-nav-cta {
  display: flex;
  gap: var(--s3);
  margin-top: var(--s6);
  flex-wrap: wrap;
}

/* ================================================================
   HERO
   ================================================================ */
.hero {
  position: relative;
  min-height: 580px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--brand-900);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: var(--brand-900);
  z-index: 0;
}
.hero-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse 60% 50% at 30% 50%, rgba(201,168,76,.05) 0%, transparent 70%);
  z-index: 1;
}

.hero-image-side {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 45%;
  overflow: hidden;
  z-index: 0;
}
.hero-image-side::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(270deg, var(--brand-900) 0%, transparent 22%),
              linear-gradient(180deg, rgba(10,42,39,.3) 0%, transparent 100%);
  z-index: 2;
}
.hero-img-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #0f3a34 0%, #1a5a50 50%, #0d2e2b 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-img-placeholder svg {
  width: 60%;
  height: 60%;
  opacity: .15;
}

.hero-content {
  position: relative;
  z-index: 10;
  padding-block: var(--s24);
  max-width: 560px;
  margin-left: auto;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--s2);
  background: rgba(201,168,76,.15);
  border: 1px solid rgba(201,168,76,.3);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold-400);
  margin-bottom: var(--s6);
}

.hero h1 {
  color: #fff;
  margin-bottom: var(--s6);
  line-height: 1.12;
}
.hero h1 em {
  font-style: normal;
  background: linear-gradient(135deg, var(--gold-500), var(--gold-300));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p.lead {
  color: rgba(255,255,255,.78);
  margin-bottom: var(--s8);
  max-width: 52ch;
}

.hero-actions {
  display: flex;
  gap: var(--s4);
  flex-wrap: wrap;
  margin-bottom: var(--s10);
}

.hero-portrait-mobile {
  display: none;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s6);
}
.trust-item {
  display: flex;
  align-items: center;
  gap: var(--s2);
  color: rgba(255,255,255,.65);
  font-size: .85rem;
  font-weight: 500;
}
.trust-item svg {
  color: var(--gold-500);
  flex-shrink: 0;
}

/* Years Badge */
.years-badge {
  width: 110px;
  height: 110px;
  margin: 0 auto var(--s8);
  background: linear-gradient(135deg, var(--gold-500), var(--gold-400));
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 32px rgba(201,168,76,.45);
  text-align: center;
  line-height: 1.1;
  border: 4px solid rgba(255,255,255,.2);
}
.years-badge-number {
  font-size: 2rem;
  font-weight: 900;
  color: var(--brand-900);
  letter-spacing: -.04em;
  line-height: 1;
}
.years-badge-text {
  font-size: .65rem;
  font-weight: 700;
  color: var(--brand-800);
  text-transform: uppercase;
  letter-spacing: .06em;
  line-height: 1.2;
}

/* ================================================================
   INFO BANNER (Unfallhilfe)
   ================================================================ */
.info-banner {
  background: linear-gradient(135deg, var(--brand-700), var(--brand-800));
  color: #fff;
  padding-block: var(--s10);
}
.info-banner .inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--s8);
  align-items: center;
}
.info-banner h3 { color: #fff; margin-bottom: var(--s3); }
.info-banner p { color: rgba(255,255,255,.8); max-width: 62ch; }
.info-banner strong { color: var(--gold-400); }

/* ================================================================
   SERVICES GRID
   ================================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s6);
}

.service-card {
  background: var(--surface);
  border-radius: var(--r-lg);
  padding: var(--s8);
  box-shadow: var(--shadow-md);
  transition: transform var(--transition), box-shadow var(--transition);
  border: 1px solid rgba(10,42,39,.05);
  display: flex;
  flex-direction: column;
  text-decoration: none;
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(201,168,76,.2);
}
.service-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--brand-700), var(--brand-600));
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--s4);
  flex-shrink: 0;
  color: var(--gold-400);
}
.service-card h3 {
  margin-bottom: var(--s2);
  color: var(--brand-900);
}
.service-card p {
  color: var(--muted);
  font-size: .9rem;
  flex: 1;
  margin-bottom: var(--s4);
}
.service-card .card-link {
  font-size: .85rem;
  font-weight: 700;
  color: var(--gold-600);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: auto;
}
.service-card .card-link::after {
  content: '→';
  transition: transform var(--transition);
}
.service-card:hover .card-link::after { transform: translateX(4px); }

/* ================================================================
   VALUES / USPs
   ================================================================ */
.values-section {
  background: var(--brand-900);
  color: #fff;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s6);
}
.value-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-lg);
  padding: var(--s10) var(--s8);
  text-align: center;
  transition: all var(--transition);
}
.value-card:hover {
  background: rgba(255,255,255,.08);
  border-color: rgba(201,168,76,.3);
  transform: translateY(-4px);
}
.value-letter {
  font-size: 5rem;
  font-weight: 900;
  line-height: 1;
  background: linear-gradient(135deg, var(--gold-500), var(--gold-300));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: var(--s3);
  letter-spacing: -.04em;
}
.value-card h3 { color: #fff; margin-bottom: var(--s3); }
.value-card p  { color: rgba(255,255,255,.68); font-size: .92rem; max-width: 30ch; margin-inline: auto; }

/* ================================================================
   PROCESS / STEPS
   ================================================================ */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s4);
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 28px;
  right: 28px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-500), var(--gold-300), transparent);
  z-index: 0;
}
.step {
  position: relative;
  z-index: 1;
  text-align: center;
  background: var(--surface);
  border-radius: var(--r-lg);
  padding: var(--s6) var(--s4);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(10,42,39,.06);
  transition: all var(--transition);
}
.step:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.step-number {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--gold-500), var(--gold-600));
  color: var(--brand-900);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 900;
  margin: 0 auto var(--s4);
  box-shadow: 0 4px 14px rgba(201,168,76,.35);
}
.step h4 { margin-bottom: var(--s2); font-size: 1rem; }
.step p   { font-size: .85rem; color: var(--muted); max-width: 22ch; margin-inline: auto; }

/* ================================================================
   REFERENCES / PROJEKTE
   ================================================================ */
.references-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s6);
}
.reference-card {
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--surface);
  box-shadow: var(--shadow-md);
  transition: transform var(--transition), box-shadow var(--transition);
}
.reference-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}
.reference-img {
  height: 200px;
  background: linear-gradient(135deg, var(--brand-700), var(--brand-500));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.reference-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.reference-img-placeholder svg {
  width: 64px;
  height: 64px;
  opacity: .25;
  color: #fff;
}
.reference-label {
  position: absolute;
  top: var(--s3);
  left: var(--s3);
  background: rgba(10,42,39,.8);
  color: var(--gold-400);
  font-size: .75rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 100px;
  backdrop-filter: blur(4px);
}
.reference-body {
  padding: var(--s6);
}
.reference-body h4 { margin-bottom: var(--s2); font-size: .95rem; }
.reference-body p  { font-size: .85rem; color: var(--muted); }

/* ================================================================
   AREA / EINZUGSGEBIET
   ================================================================ */
.area-section { background: var(--surface-alt); }
.area-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s12);
  align-items: start;
}
.area-cities {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s3);
  margin-top: var(--s6);
}
.city-chip {
  display: inline-flex;
  align-items: center;
  gap: var(--s2);
  padding: 8px 16px;
  background: var(--surface);
  border-radius: 100px;
  font-size: .88rem;
  font-weight: 600;
  color: var(--brand-700);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(10,42,39,.08);
  text-decoration: none;
  transition: all var(--transition);
}
.city-chip:hover {
  background: var(--brand-700);
  color: #fff;
  border-color: var(--brand-700);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.area-map-placeholder {
  background: var(--brand-700);
  border-radius: var(--r-xl);
  min-height: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.6);
  gap: var(--s4);
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.area-map-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(201,168,76,.1) 0%, transparent 70%);
}
.area-map-placeholder svg { width: 64px; height: 64px; opacity: .4; }
.area-map-placeholder p { font-size: .9rem; }

/* ================================================================
   FAQ ACCORDION
   ================================================================ */
.faq-list { max-width: 820px; margin-inline: auto; }
.faq-item {
  border-bottom: 1px solid rgba(10,42,39,.09);
}
.faq-item:first-child { border-top: 1px solid rgba(10,42,39,.09); }
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s4);
  padding: var(--s6) 0;
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  background: none;
  border: none;
  font-family: var(--font);
  transition: color var(--transition);
}
.faq-question:hover { color: var(--brand-700); }
.faq-question[aria-expanded="true"] { color: var(--brand-700); }
.faq-icon {
  width: 28px;
  height: 28px;
  background: var(--surface-alt);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--transition);
  color: var(--brand-700);
}
.faq-question[aria-expanded="true"] .faq-icon {
  background: var(--brand-700);
  color: #fff;
  transform: rotate(180deg);
}
.faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 300ms ease, padding 300ms ease;
}
.faq-answer-inner {
  padding-bottom: var(--s6);
  color: var(--muted);
  font-size: .95rem;
  line-height: 1.75;
}
.faq-answer-inner p + p { margin-top: var(--s3); }
.faq-answer-inner ul {
  list-style: disc;
  padding-left: var(--s6);
  margin-top: var(--s2);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

/* ================================================================
   CONTACT
   ================================================================ */
.contact-section { background: var(--surface-alt); }
.contact-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: var(--s12);
  align-items: start;
}

/* Form */
.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--s2);
}
.form-label {
  font-size: .88rem;
  font-weight: 600;
  color: var(--text-2);
}
.form-control {
  padding: 13px 16px;
  border: 1.5px solid rgba(10,42,39,.18);
  border-radius: var(--r-md);
  font-size: .95rem;
  font-family: var(--font);
  color: var(--text);
  background: var(--surface);
  transition: border-color var(--transition), box-shadow var(--transition);
  width: 100%;
}
.form-control:focus {
  outline: none;
  border-color: var(--brand-700);
  box-shadow: 0 0 0 3px rgba(26,74,69,.12);
}
textarea.form-control { resize: vertical; min-height: 130px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s4); }
.form-row { display: flex; flex-direction: column; gap: var(--s4); }
.form-note { font-size: .8rem; color: var(--muted); }

/* Contact Info */
.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: var(--s4);
}
.contact-info-item {
  display: flex;
  gap: var(--s4);
  align-items: flex-start;
}
.contact-info-icon {
  width: 44px;
  height: 44px;
  background: var(--brand-700);
  color: var(--gold-400);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-info-body h4 { margin-bottom: 3px; font-size: .9rem; color: var(--muted); font-weight: 600; text-transform: uppercase; font-size: .78rem; letter-spacing: .06em; }
.contact-info-body a, .contact-info-body p {
  font-weight: 600;
  color: var(--text);
  font-size: 1rem;
}
.contact-info-body a:hover { color: var(--brand-700); }

.map-placeholder {
  background: linear-gradient(135deg, var(--brand-700), var(--brand-800));
  border-radius: var(--r-lg);
  min-height: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.6);
  gap: var(--s3);
  margin-top: var(--s6);
  position: relative;
  overflow: hidden;
}
.map-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(201,168,76,.1) 0%, transparent 70%);
}
.map-placeholder svg { width: 48px; opacity: .5; }
.map-placeholder p { font-size: .88rem; }

/* ================================================================
   TESTIMONIALS
   ================================================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s6);
}
.testimonial-card {
  background: var(--surface);
  border-radius: var(--r-lg);
  padding: var(--s8);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(10,42,39,.05);
}
.testimonial-stars {
  display: flex;
  gap: 3px;
  color: var(--gold-500);
  margin-bottom: var(--s4);
}
.testimonial-text {
  font-size: .95rem;
  color: var(--text-2);
  line-height: 1.7;
  margin-bottom: var(--s6);
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--s3);
}
.author-avatar {
  width: 44px;
  height: 44px;
  background: var(--brand-700);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-400);
  font-size: 1.2rem;
  font-weight: 800;
  flex-shrink: 0;
}
.author-name { font-weight: 700; font-size: .9rem; }
.author-detail { font-size: .8rem; color: var(--muted); }

/* ================================================================
   CTA SECTION
   ================================================================ */
.cta-section {
  background: linear-gradient(135deg, var(--brand-800), var(--brand-900));
  color: #fff;
  text-align: center;
  padding-block: var(--s20);
}
.cta-section h2 { color: #fff; margin-bottom: var(--s4); }
.cta-section p { color: rgba(255,255,255,.9); margin-inline: auto; margin-bottom: var(--s8); }
.cta-buttons { display: flex; gap: var(--s4); justify-content: center; flex-wrap: wrap; }

/* ================================================================
   FOOTER
   ================================================================ */
.site-footer {
  background: var(--brand-900);
  color: rgba(255,255,255,.7);
  padding-top: var(--s16);
  padding-bottom: var(--s8);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr;
  gap: var(--s8);
  margin-bottom: var(--s12);
}

.footer-brand p {
  margin-top: var(--s4);
  font-size: .88rem;
  line-height: 1.7;
  max-width: 32ch;
  color: rgba(255,255,255,.6);
}
.footer-contact {
  margin-top: var(--s6);
  display: flex;
  flex-direction: column;
  gap: var(--s2);
  font-size: .88rem;
}
.footer-contact a { color: rgba(255,255,255,.7); transition: color var(--transition); }
.footer-contact a:hover { color: var(--gold-400); }
.footer-contact strong { color: rgba(255,255,255,.9); }

.footer-col h4 {
  color: var(--gold-400);
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: var(--s4);
}
.footer-links { display: flex; flex-direction: column; gap: var(--s2); }
.footer-links a {
  font-size: .88rem;
  color: rgba(255,255,255,.65);
  transition: all var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-links a::before {
  content: '›';
  color: var(--gold-500);
  font-size: 1.1rem;
}
.footer-links a:hover { color: #fff; padding-left: 4px; }
/* Sidebar: footer-links auf weißem Hintergrund – dunkle Schrift */
.sidebar-card .footer-links a { color: var(--brand-700); }
.sidebar-card .footer-links a:hover { color: var(--brand-900); padding-left: 4px; }

.footer-bar {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: var(--s6);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--s4);
  flex-wrap: wrap;
}
.footer-bar p, .footer-bar a {
  font-size: .82rem;
  color: rgba(255,255,255,.4);
}
.footer-bar a:hover { color: rgba(255,255,255,.8); }
.footer-legal-links { display: flex; gap: var(--s6); }

/* ================================================================
   MOBILE STICKY BAR
   ================================================================ */
.sticky-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: var(--brand-900);
  border-top: 1px solid rgba(255,255,255,.1);
  padding: var(--s2) var(--s3);
  gap: var(--s2);
  box-shadow: 0 -4px 20px rgba(0,0,0,.2);
}
.sticky-bar a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--s1);
  padding: 10px var(--s2);
  border-radius: var(--r-md);
  font-weight: 700;
  font-size: .82rem;
  text-align: center;
}
.sticky-bar a:nth-child(1) {
  background: var(--brand-700);
  color: #fff;
}
.sticky-bar a:nth-child(2) {
  background: #25d366;
  color: #fff;
}
.sticky-bar a:nth-child(3) {
  background: linear-gradient(135deg, var(--gold-500), var(--gold-400));
  color: var(--brand-900);
}

/* Nav Divider im Dropdown */
.nav-divider {
  height: 1px;
  background: rgba(10,42,39,.15);
  margin: var(--s2) var(--s2);
}

/* Header CTA Button (Schaden melden) */
.header-cta-main {
  display: inline-flex;
  align-items: center;
  padding: 10px 20px;
  background: linear-gradient(135deg, var(--gold-500), var(--gold-400));
  color: var(--brand-900);
  font-weight: 700;
  font-size: .82rem;
  border-radius: var(--r-sm);
  text-transform: uppercase;
  letter-spacing: .06em;
  transition: all var(--transition);
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(201,168,76,.3);
}
.header-cta-main:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(201,168,76,.4);
}

/* btn-gold */
.btn-gold {
  background: linear-gradient(135deg, var(--gold-500), var(--gold-400));
  color: var(--brand-900);
  font-weight: 700;
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(201,168,76,.4);
}

/* Footer Logo Img */
.footer-logo-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: var(--r-md);
  padding: var(--s4) var(--s6);
  margin-bottom: var(--s5);
}
.footer-logo-link:hover { opacity: .9; }
.footer-logo-img { height: 72px; width: auto; object-fit: contain; }

/* ================================================================
   PAGE HERO (inner pages)
   ================================================================ */
.page-hero {
  background: linear-gradient(135deg, var(--brand-900), var(--brand-700));
  color: #fff;
  padding-block: var(--s16);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 80% at 100% 50%, rgba(201,168,76,.08) 0%, transparent 60%);
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: #fff; margin-bottom: var(--s4); }
.page-hero p { color: rgba(255,255,255,.78); max-width: 62ch; }
.breadcrumb {
  display: flex;
  gap: var(--s2);
  align-items: center;
  margin-bottom: var(--s4);
  font-size: .82rem;
  color: rgba(255,255,255,.55);
}
.breadcrumb a { color: rgba(255,255,255,.55); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--gold-400); }
.breadcrumb-sep { color: rgba(255,255,255,.3); }

/* ================================================================
   CONTENT PAGE LAYOUT
   ================================================================ */
.content-section { padding-block: var(--s20); }
.content-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: var(--s12);
  align-items: start;
}
.content-body h2 { margin-bottom: var(--s4); margin-top: var(--s8); }
.content-body h2:first-child { margin-top: 0; }
.content-body h3 { margin-bottom: var(--s3); margin-top: var(--s6); color: var(--brand-700); }
.content-body p  { margin-bottom: var(--s4); color: var(--text-2); }
.content-body ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--s3);
  margin-bottom: var(--s6);
  padding-left: var(--s2);
}
.content-body ul li {
  display: flex;
  gap: var(--s3);
  align-items: flex-start;
  color: var(--text-2);
}
.content-body ul li::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--gold-500);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 8px;
}
.content-body ol {
  counter-reset: steps;
  display: flex;
  flex-direction: column;
  gap: var(--s4);
  margin-bottom: var(--s6);
}
.content-body ol li {
  counter-increment: steps;
  display: flex;
  gap: var(--s4);
  align-items: flex-start;
  color: var(--text-2);
}
.content-body ol li::before {
  content: counter(steps);
  width: 28px;
  height: 28px;
  background: var(--brand-700);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .82rem;
  font-weight: 700;
  flex-shrink: 0;
}

/* Sidebar */
.sidebar {
  position: sticky;
  top: 90px;
  max-height: calc(100vh - 100px);
  overflow-y: auto;
  overscroll-behavior: contain;
}
.sidebar-card {
  background: var(--surface);
  border-radius: var(--r-lg);
  padding: var(--s8);
  box-shadow: var(--shadow-md);
  margin-bottom: var(--s6);
  border: 1px solid rgba(10,42,39,.07);
}
.sidebar-card h4 {
  margin-bottom: var(--s4);
  padding-bottom: var(--s3);
  border-bottom: 2px solid var(--gold-500);
  color: var(--brand-900);
}
.sidebar-cta {
  background: linear-gradient(135deg, var(--brand-800), var(--brand-900));
  color: #fff;
  border-radius: var(--r-lg);
  padding: var(--s8);
  text-align: center;
}
.sidebar-cta h3, .sidebar-cta h4 { color: #fff; margin-bottom: var(--s3); }
.sidebar-cta p  { color: rgba(255,255,255,.9); font-size: .88rem; margin-bottom: var(--s6); }
.sidebar-cta .btn { width: 100%; justify-content: center; margin-bottom: var(--s3); }

/* Highlight Box */
.highlight-box {
  background: linear-gradient(135deg, rgba(201,168,76,.08), rgba(26,74,69,.06));
  border: 1.5px solid rgba(201,168,76,.25);
  border-radius: var(--r-md);
  padding: var(--s6) var(--s8);
  margin-bottom: var(--s8);
}
.highlight-box h3 { color: var(--brand-700); margin-bottom: var(--s3); }
.highlight-box p  { color: var(--text-2); margin-bottom: 0; }

/* ================================================================
   PROCESS STEPS (inner pages – .process-step variant)
   ================================================================ */
.process-step {
  display: flex;
  gap: var(--s4);
  align-items: flex-start;
  background: var(--surface);
  border-radius: var(--r-lg);
  padding: var(--s6);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(10,42,39,.07);
}
.process-step-number {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--gold-500), var(--gold-600));
  color: var(--brand-900);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 900;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(201,168,76,.35);
}
.process-step-content h3 { margin-bottom: var(--s2); font-size: 1rem; }
.process-step-content p  { font-size: .88rem; color: var(--muted); margin-bottom: 0; }

/* Process steps stacked vertically (ueber-mich page) */
.process-steps-column {
  display: flex;
  flex-direction: column;
  gap: var(--s4);
}
.process-steps-column::before { display: none; }

/* ================================================================
   COMPARE TABLE (ueber-mich.html)
   ================================================================ */
.compare-table {
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid rgba(10,42,39,.12);
  margin-bottom: var(--s8);
}
.compare-header,
.compare-row {
  display: grid;
  grid-template-columns: 130px 1fr 1fr;
}
.compare-header {
  background: var(--brand-900);
}
.compare-row {
  border-top: 1px solid rgba(10,42,39,.08);
}
.compare-row:nth-child(even) {
  background: rgba(10,42,39,.02);
}
.compare-cell {
  padding: var(--s3) var(--s5);
  font-size: .88rem;
  line-height: 1.5;
}
.compare-cell-label {
  font-weight: 700;
  color: var(--brand-700);
  background: rgba(10,42,39,.03);
  border-right: 1px solid rgba(10,42,39,.1);
}
.compare-header .compare-cell-label {
  background: transparent;
  color: transparent;
}
.compare-cell-good {
  color: var(--text-2);
  border-right: 1px solid rgba(10,42,39,.06);
}
.compare-header .compare-cell-good {
  font-weight: 700;
  color: var(--gold-400);
}
.compare-cell-bad {
  color: var(--muted);
}
.compare-header .compare-cell-bad {
  font-weight: 700;
  color: rgba(255,255,255,.6);
}
@media (max-width: 640px) {
  .compare-table {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .compare-header,
  .compare-row {
    grid-template-columns: 110px 150px 160px;
    min-width: 420px;
  }
}

/* Checklist */
.checklist {
  background: var(--surface);
  border-radius: var(--r-lg);
  padding: var(--s8);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(10,42,39,.07);
  margin-bottom: var(--s8);
}
.checklist h3 { margin-bottom: var(--s6); color: var(--brand-900); }
.checklist ul { list-style: none; display: flex; flex-direction: column; gap: var(--s6); }
/* Direct li children when checklist is on a <ul> element */
ul.checklist { list-style: none; display: flex; flex-direction: column; gap: var(--s6); }
.checklist ul li,
ul.checklist > li {
  display: flex;
  gap: var(--s3);
  align-items: flex-start;
  font-size: .95rem;
  color: var(--text-2);
  line-height: 1.65;
}
.checklist ul li::before,
ul.checklist > li::before {
  content: '✓';
  width: 22px;
  height: 22px;
  background: var(--brand-700);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .75rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ================================================================
   ABOUT PAGE
   ================================================================ */
.about-intro > h2 {
  margin-bottom: var(--s8);
}
.about-intro-body {
  display: flex;
  flex-direction: column;
  gap: var(--s8);
}
.about-photo {
  border-radius: var(--r-xl);
  width: 100%;
  height: auto;
  overflow: hidden;
  box-shadow: 0 0 0 4px var(--gold-500), var(--shadow-xl);
  flex-shrink: 0;
}
.qual-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s4);
  margin-top: var(--s6);
}
.qual-item {
  background: var(--surface);
  border-radius: var(--r-md);
  padding: var(--s6);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(10,42,39,.07);
}
.qual-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--gold-500), var(--gold-400));
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--s3);
  color: var(--brand-900);
}
.qual-item h4 { font-size: .95rem; margin-bottom: 4px; }
.qual-item p  { font-size: .85rem; color: var(--muted); }

/* ================================================================
   CITY PAGE SPECIFICS
   ================================================================ */
.city-highlight {
  background: linear-gradient(135deg, var(--brand-900), var(--brand-700));
  color: #fff;
  border-radius: var(--r-xl);
  padding: var(--s10) var(--s12);
  margin-bottom: var(--s10);
}
.city-highlight h2 { color: #fff; margin-bottom: var(--s4); }
.city-highlight p  { color: rgba(255,255,255,.78); }
.city-benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s4);
  margin-top: var(--s8);
}
.city-benefit {
  background: rgba(255,255,255,.08);
  border-radius: var(--r-md);
  padding: var(--s6);
  border: 1px solid rgba(255,255,255,.1);
}
.city-benefit h4 { color: var(--gold-400); margin-bottom: var(--s2); font-size: 1rem; }
.city-benefit p  { color: rgba(255,255,255,.7); font-size: .88rem; }

/* ================================================================
   IMPRESSUM / DATENSCHUTZ
   ================================================================ */
.legal-content {
  max-width: var(--container-sm);
  margin-inline: auto;
  padding-block: var(--s20);
}
.legal-content h2 { margin-top: var(--s10); margin-bottom: var(--s4); }
.legal-content h3 { margin-top: var(--s6); margin-bottom: var(--s3); color: var(--brand-700); }
.legal-content p  { margin-bottom: var(--s4); color: var(--text-2); }
.legal-content address { font-style: normal; color: var(--text-2); line-height: 2; }
.legal-content h2:first-child { margin-top: 0; }

/* ================================================================
   RESPONSIVE BREAKPOINTS
   ================================================================ */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1.2fr 1fr 1fr; }
  .footer-grid .footer-col:last-child { grid-column: 1 / -1; }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .process-steps::before { display: none; }
}

@media (max-width: 900px) {
  /* Header auf Mobile: nur mobile-nav bleibt, header-inner weg */
  .site-nav { display: none; }
  .header-inner { display: none; }
  .header-cta { display: none; }
  /* Logo-Bar auf Mobile: Logo links, Hamburger rechts */
  .logo-bar { justify-content: space-between; padding-inline: var(--s5); }
  .logo-bar-toggle { display: flex; }
  /* Hamburger-Linien dunkel auf weißem Hintergrund */
  .logo-bar-toggle span { background: var(--brand-900); }
  /* Logo etwas größer auf Mobile */
  .logo-bar-img { height: 122px; }

  .hero-image-side { display: none; }
  .hero-content { max-width: 100%; padding-inline: 0; margin-left: 0; }
  .hero-actions .btn-wa { display: none; }
  /* Foto unter Logo/Menü im Hero */
  .hero-portrait-mobile {
    display: block;
    width: 100%;
    height: 350px;
    overflow: hidden;
    border-radius: var(--r-xl);
    box-shadow: 0 0 0 3px var(--gold-500), 0 20px 50px rgba(0,0,0,.4);
    margin-top: var(--s4);
    margin-bottom: var(--s6);
    position: relative;
    z-index: 5;
  }
  .hero-portrait-mobile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
  }
  /* Mobile Nav als scrollbares Overlay */
  .mobile-nav.is-open {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow-y: auto;
    z-index: 999;
    padding-top: 120px;
  }

  .info-banner .inner { grid-template-columns: 1fr; }

  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: 1fr 1fr 1fr; gap: var(--s4); }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .references-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .area-inner { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .content-layout { grid-template-columns: 1fr; }
  .sidebar { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-photo { height: auto; }
  .qual-grid { grid-template-columns: 1fr 1fr; }
  .city-benefits { grid-template-columns: 1fr 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  :root {
    --s20: 56px;
    --s24: 72px;
    --s16: 48px;
  }

  .services-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .references-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .city-benefits { grid-template-columns: 1fr; }
  .qual-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .cta-buttons { flex-direction: column; align-items: center; }
  .footer-bar { flex-direction: column; text-align: center; }
  .footer-legal-links { flex-wrap: wrap; justify-content: center; gap: var(--s3); }
  .years-badge { width: 90px; height: 90px; }
  .years-badge-number { font-size: 1.6rem; }
  .sticky-bar { display: flex; }
  body { padding-bottom: 80px; }
  .about-intro { gap: var(--s8); }
}

@media (max-width: 420px) {
  .process-steps { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
}

/* ================================================================
   UTILITIES
   ================================================================ */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}
.bg-white { background: var(--surface); }
.bg-alt   { background: var(--surface-alt); }
.bg-brand { background: var(--brand-900); }
.text-center { text-align: center; }
.mt-auto { margin-top: auto; }

/* Print */
@media print {
  .site-header, .site-footer, .sticky-bar, .mobile-nav { display: none; }
}
