/* ============================================================================
   style-neutral.css
   Zentrale Gestaltungsdatei für die neutrale Website-Optik.
   - definiert Farben, Abstände, Radien und Schatten
   - steuert eigene Layout-Bausteine wie Hero, Service, Trust und Kontakt
   - harmonisiert zusätzlich System-/Studio-Unterseiten mit dem Startseitenstil
   ============================================================================ */

/* Design-Tokens: globale Farben, Flächen, Schatten und Containerbreiten */
:root {
  --bg: #f5f5f6;
  --surface: #ffffff;
  --surface-soft: #f3f4f6;
  --text: #151515;
  --muted: #5a5a5f;
  --line: #dddfe3;
  --brand: #111111;
  --brand-strong: #000000;
  --accent: #e10613;
  --accent-strong: #b7000d;
  --accent-soft: #fdecee;
  --shadow: 0 18px 45px rgba(17, 17, 17, 0.08);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --container: min(1180px, calc(100% - 32px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Avenir Next", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(225, 6, 19, 0.08), transparent 0 30%),
    radial-gradient(circle at top right, rgba(0, 0, 0, 0.05), transparent 0 24%),
    linear-gradient(180deg, #ffffff 0%, #f5f5f6 100%);
  line-height: 1.8;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

/* Barrierefreiheit: Skip-Link fuer Tastaturnavigation zum Hauptinhalt */
.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
}

.skip-link:focus {
  left: 16px;
  top: 16px;
  z-index: 1000;
  background: #fff;
  padding: 10px 14px;
  border-radius: 10px;
}

/* Generische Layout-Helfer fuer Inhaltsbreite und Sektionen */
.container {
  width: var(--container);
  margin: 0 auto;
}

.section {
  padding: clamp(60px, 8vw, 100px) 0;
}

/* Kopfbereich: Topbar, Header und Hauptnavigation */
.topbar {
  background: #FFFFFF;
  color: #4f4f4f;
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: none;
  border-bottom: 1px solid rgba(28, 39, 51, 0.06);
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  padding: 3px 0;
  font-weight: 600;
}

.topbar-sep {
  opacity: 0.7;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: linear-gradient(180deg, #FFFFFF 0%, #FCFCFC 100%);
  border-bottom: 1px solid rgba(198, 40, 40, 0.1);
}

.nav-row {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 28px;
  min-height: 104px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 18px;
}

.brand-badge {
  width: 132px;
  height: 84px;
  border: none;
  border-radius: 0;
  background: transparent url("assets/images/logo.jpeg") center / 92% auto no-repeat;
  box-shadow: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: transparent;
  font-size: 0;
  font-weight: 900;
  letter-spacing: 0;
  flex: 0 0 132px;
}

.brand-copy {
  display: flex;
  flex-direction: column;
}

.brand-copy strong {
  color: #1a1a1a;
  font-size: 1.04rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.brand-copy small {
  color: #5a5a5a;
  font-size: 0.79rem;
  letter-spacing: 0.01em;
}

.site-nav {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: flex-end;
  gap: 22px;
  margin-left: auto;
}

.site-nav a {
  color: #1a1a1a;
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.01em;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a.is-active {
  color: var(--accent);
}

/* ---- Mega-Drop ---- */
.site-header {
  overflow: visible;
}

.nav-has-drop {
  position: relative;
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.nav-has-drop > a {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
}

.nav-has-drop > a::after {
  content: '';
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  transition: transform 0.2s ease;
  flex-shrink: 0;
}

.nav-has-drop:hover > a::after,
.nav-has-drop:focus-within > a::after {
  transform: rotate(180deg);
}

.nav-has-drop.is-open > a::after {
  transform: rotate(180deg);
}

.nav-drop {
  display: none;
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.09);
  border-top: 3px solid var(--accent);
  border-radius: 0 0 10px 10px;
  box-shadow: 0 10px 32px rgba(0,0,0,0.13);
  padding: 8px 0;
  min-width: 210px;
  z-index: 300;
  list-style: none;
  margin: 0;
}

.nav-has-drop.is-open .nav-drop {
  display: block;
}

.nav-drop li a {
  display: block;
  padding: 9px 20px;
  font-size: 0.88rem;
  font-weight: 600;
  color: #1a1a1a;
  white-space: nowrap;
  transition: color 0.15s ease, background 0.15s ease;
}

.nav-drop li a:hover,
.nav-drop li a:focus-visible {
  color: var(--accent);
  background: rgba(0,0,0,0.03);
}

.nav-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  color: #1a1a1a;
  font-size: 1rem;
}

.nav-cta,
.nav-cta:visited {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  min-width: 210px;
  padding: 0.95rem 1.9rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-strong) 100%);
  color: #ffffff !important;
  font-weight: 700;
  white-space: nowrap;
  line-height: 1;
  letter-spacing: 0.01em;
  box-shadow: 0 14px 28px rgba(183, 0, 13, 0.18);
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.nav-cta:hover,
.nav-cta:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 16px 34px rgba(183, 0, 13, 0.22);
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  margin: 5px 0;
  border-radius: 999px;
}

/* Hero-Bereich: zweispaltiger Einstieg mit Text links und Bild rechts */
.hero-split {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(320px, 0.86fr) minmax(0, 1.42fr);
  align-items: stretch;
  min-height: clamp(300px, 35vw, 450px);
  background: #f3f3f3;
  overflow: hidden;
}

.hero-split-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(40px, 5vw, 70px);
  background: #ffffff;
  color: #121212;
}

.hero-split-copy::after {
  display: none;
}

.hero-split-copy :is(h1, h2) {
  margin: 0 0 20px 0;
  color: #121212;
  font-size: clamp(1.7rem, 3.2vw, 2.9rem);
  line-height: 1.15;
  letter-spacing: -0.04em;
  max-width: 12ch;
}

.lead-light {
  color: #5a5a5a;
  max-width: 32rem;
  font-size: 0.95rem;
  line-height: 1.85;
  margin-bottom: 24px;
}

.hero-split-copy .hero-actions {
  margin: 16px 0 0;
}

.hero-split-copy .btn-outline {
  border-color: rgba(0, 0, 0, 0.18);
  color: var(--brand);
}

.hero-split-copy .btn-outline:hover {
  background: rgba(0, 0, 0, 0.06);
}

/* Hero-Bildbereich rechts: steuert Hintergrundfläche, Bildposition und Zuschnitt des großen Hausfotos */
.hero-split-media {
  position: relative;
  min-height: inherit;
  background: #ffffff;
}

.hero-split-media::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.92) 0%, rgba(255, 255, 255, 0.45) 28%, rgba(255, 255, 255, 0) 62%);
  pointer-events: none;
  z-index: 1;
}

.hero-split-media img {
  position: relative;
  z-index: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: right top;
}

/* Wiederverwendbare Buttons für primäre und sekundäre Aktionen */
.btn,
.btn:visited {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1.15rem 1.8rem;
  border-radius: 999px;
  border: 1px solid transparent;
  background: var(--brand);
  color: #fff !important;
  font-weight: 700;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.btn:hover,
.btn:focus-visible,
.btn:active {
  transform: translateY(-1px);
  background: var(--brand-strong);
  color: #fff !important;
}

.btn-outline,
.btn-outline:visited {
  background: transparent;
  border-color: rgba(0, 0, 0, 0.18);
  color: var(--brand) !important;
}

.btn-outline:hover,
.btn-outline:focus-visible,
.btn-outline:active {
  background: rgba(0, 0, 0, 0.06);
  color: var(--brand) !important;
}

.hero {
  padding-top: 28px;
}

/* Alternative Hero-Module fuer modulare Einstiegsseiten und Karteninhalte */
.hero-grid {
  display: grid;
  grid-template-columns: 1.06fr 0.94fr;
  gap: 32px;
  align-items: center;
}

.section-kicker {
  margin: 0 0 18px;
  color: var(--brand);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  font-weight: 800;
}

.section-kicker.light {
  color: #75818d;
}

.hero-copy h2,
.section-heading h2,
.split-heading h2,
.contact-copy h2,
.value-grid h2,
.trust-grid h2 {
  margin: 0 0 28px 0;
  font-size: clamp(2.2rem, 4vw, 3.7rem);
  line-height: 1.12;
  letter-spacing: -0.04em;
}

.lead,
.section-heading p,
.split-heading > p,
.contact-copy p,
.value-list p,
.trust-grid p {
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.82;
  margin-bottom: 24px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 40px 0 36px;
}

.hero-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 36px;
}

.hero-points article,
.contact-cards article,
.value-list article {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius-md);
  padding: 22px;
}

.hero-points strong,
.contact-cards strong,
.value-list strong {
  display: block;
  margin-bottom: 12px;
  font-size: 1.04rem;
}

.hero-points span,
.contact-cards span,
.value-list p {
  color: var(--muted);
  font-size: 0.95rem;
}

.hero-visual {
  position: relative;
  min-height: 480px;
  padding: 14px 0 18px 18px;
}

/* Visuelle Overlay-Panels im Hero (Primary, Secondary, Chips, Hinweis) */
.visual-panel {
  background: var(--surface);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

.panel-primary {
  padding: 24px;
}

.panel-primary h2 {
  margin: 8px 0 16px;
  font-size: 1.45rem;
  line-height: 1.2;
}

.panel-label {
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.08);
  color: var(--brand);
  font-size: 0.78rem;
  font-weight: 700;
}

.panel-label.soft {
  background: var(--accent-soft);
  color: #5f7a8d;
}

.visual-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}

.visual-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 14px;
  background: #f6f8fa;
  color: var(--text);
}

.visual-list span,
.icon-badge,
.timeline-card span {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--brand);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 800;
  flex: 0 0 34px;
}

.panel-secondary {
  position: absolute;
  right: 0;
  bottom: 56px;
  width: min(320px, 82%);
  padding: 20px;
}

.chip-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.chip-wrap span {
  padding: 9px 12px;
  border-radius: 999px;
  background: #f4f6f8;
  border: 1px solid var(--line);
  color: var(--text);
  font-weight: 600;
}

.floating-note {
  position: absolute;
  left: 0;
  bottom: 0;
  max-width: 280px;
  padding: 14px 16px;
  border-radius: 16px;
  background: var(--accent-soft);
  color: var(--brand);
  box-shadow: var(--shadow);
}

/* Vertrauensbereich unterhalb des Einstiegs mit CTA und Prüfpunkten */
.trust-band {
  padding-top: 0;
}

.trust-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius-xl);
  padding: 24px;
}

.trust-checks {
  list-style: none !important;
  padding: 0 !important;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(180px, 1fr));
  gap: 12px;
}

.trust-checks li {
  display: block;
  list-style: none !important;
  padding: 12px 14px !important;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  font-weight: 600;
}

.trust-checks li::marker {
  content: "";
}

/* Service-Übersicht: kompakte Themenkacheln mit kleinen Bildteasern */
.service-overview {
  padding: clamp(60px, 8vw, 100px) 0;
  background: #ffffff;
}

.service-overview-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 40px;
  align-items: start;
}

.service-overview-item {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 14px;
  align-items: start;
  opacity: 0;
  transform: translateY(18px);
  animation: serviceOverviewFade 0.6s ease forwards;
  transition: transform 0.25s ease;
}

.service-overview-item[id] {
  scroll-margin-top: 110px;
}

.service-overview-item:nth-child(2) {
  animation-delay: 0.08s;
}

.service-overview-item:nth-child(3) {
  animation-delay: 0.16s;
}

.service-overview-item:nth-child(4) {
  animation-delay: 0.24s;
}

.service-overview-item:hover {
  transform: translateY(-4px);
}

.service-overview-thumb {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
  box-shadow: 0 2px 10px rgba(19, 33, 44, 0.08);
  transition: transform 0.28s ease, box-shadow 0.28s ease, filter 0.28s ease;
}

.service-overview-item:hover .service-overview-thumb {
  transform: scale(1.04);
  box-shadow: 0 10px 24px rgba(19, 33, 44, 0.14);
  filter: saturate(1.05);
}

.service-overview-copy h2 {
  margin: 0 0 16px;
  color: var(--brand);
  font-size: 0.92rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  transition: color 0.25s ease;
}

.service-overview-item:hover .service-overview-copy h2 {
  color: var(--accent);
}

.service-overview-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
}

.service-overview-links a {
  color: var(--text);
  font-weight: 700;
  line-height: 1.55;
  font-size: 0.98rem;
  transition: color 0.2s ease, transform 0.2s ease;
}

.service-overview-links a:hover,
.service-overview-links a:focus-visible {
  color: var(--accent);
  transform: translateX(3px);
}

/* Inhaltsblöcke für erklärende Abschnitte im Text-Bild-Wechsel */
.experience-panel {
  padding: 0;
  background: #f6f6f6;
}

/* Bereich `div.experience-panel-grid`: füllt die komplette Zeile und gibt leeren Flächen den gewünschten Blauton */
.experience-panel-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.75fr) minmax(0, 1.25fr);
  align-items: stretch;
  background: #1a1a1a;
}

.experience-panel-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(40px, 5vw, 80px) clamp(30px, 4vw, 60px);
  background: #ffffff;
}

.experience-panel-copy h2 {
  margin: 0 0 24px;
  color: var(--brand);
  font-size: clamp(1.75rem, 3vw, 2.45rem);
  line-height: 1.18;
  letter-spacing: -0.03em;
  max-width: 14ch;
}

.experience-panel-copy p {
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 0.97rem;
  line-height: 1.82;
  max-width: 36rem;
}

.experience-panel-copy p strong {
  color: var(--brand);
}

.experience-divider {
  display: inline-block;
  width: 28px;
  height: 3px;
  margin: 24px 0 28px;
  background: var(--accent);
}

.experience-panel-media {
  min-height: 580px;
  background: #1a1a1a;
}

.experience-panel-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

/* Referenz-Layout nach Musterbild: große dunkle/helle Inhaltsflächen */
.reference-layout-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
}

.reference-layout-row .experience-panel {
  padding: 0;
}

.reference-layout-row .experience-panel-grid {
  grid-template-columns: 1fr;
  height: 100%;
}

.reference-layout-row .experience-panel-copy,
.reference-layout-row .experience-panel-media,
#ablauf .experience-panel-copy,
#ablauf .experience-panel-media {
  border-radius: 0;
  box-shadow: none;
}

/* Dunkle Hero-Variante fuer Referenzlayout und visuelle Schwerpunktseiten */
.hero-split {
  grid-template-columns: minmax(360px, 1.02fr) minmax(0, 1.18fr);
  background: linear-gradient(135deg, #ffffff 0%, #f5f5f5 100%);
}

.hero-split-copy {
  order: 2;
  background: linear-gradient(135deg, #ffffff 0%, #f5f5f5 100%);
  color: var(--brand);
  padding: clamp(28px, 4vw, 56px);
}

.hero-split-copy :is(h1, h2),
body.site-theme .hero-split-copy :is(h1, h2) {
  color: var(--brand) !important;
  text-shadow: none;
  max-width: 13ch;
}

.hero-split-copy .lead-light,
.hero-split-copy p,
body.site-theme .hero-split-copy .lead-light,
body.site-theme .hero-split-copy p {
  color: var(--muted) !important;
}

.hero-split .section-kicker.light,
body.site-theme .hero-split .section-kicker.light {
  color: var(--accent) !important;
}

body.home-landing .hero-split-copy .btn,
body.home-landing .hero-split-copy .btn:visited {
  background: linear-gradient(135deg, #d63a3a 0%, #b92424 100%);
  color: #ffffff !important;
  box-shadow: 0 14px 32px rgba(185, 36, 36, 0.26);
  padding: 1.25rem 2rem;
  font-size: 1rem;
}

.hero-split-copy .btn:hover,
.hero-split-copy .btn:focus-visible,
.hero-split-copy .btn:active {
  background: linear-gradient(135deg, #c73131 0%, #a91f1f 100%);
  color: #ffffff !important;
}

.hero-split-copy .btn-outline,
.hero-split-copy .btn-outline:visited {
  border-color: rgba(0, 0, 0, 0.24);
  background: rgba(255, 255, 255, 0.9);
  color: var(--brand) !important;
}

.hero-split-copy .btn-outline:hover,
.hero-split-copy .btn-outline:focus-visible,
.hero-split-copy .btn-outline:active {
  background: #ffffff;
}

.hero-split-media {
  order: 1;
}

/* Bereichsspezifische Varianten fuer die drei Kernsektionen */
#warum-dachbeschichtung {
  background: #1a1a1a;
}

#warum-dachbeschichtung .experience-panel-media {
  order: 1;
  min-height: 300px;
  background: #1a1a1a;
}

#warum-dachbeschichtung .experience-panel-copy {
  order: 2;
  background: #1a1a1a;
  color: #f2f2f2;
}

#warum-dachbeschichtung .section-kicker,
#ablauf .section-kicker {
  color: #cfcfcf;
}

#warum-dachbeschichtung .experience-panel-copy h2,
#ablauf .experience-panel-copy h2 {
  color: #ffffff !important;
}

#warum-dachbeschichtung .experience-panel-copy p,
#ablauf .experience-panel-copy p {
  color: rgba(255, 255, 255, 0.84);
}

#warum-dachbeschichtung .experience-divider,
#ablauf .experience-divider {
  background: var(--accent);
}

#vorteile {
  background: #f3f3f3;
}

#vorteile .experience-panel-copy {
  order: 1;
  background: #f3f3f3;
  padding: clamp(30px, 4vw, 58px);
}

#vorteile .experience-panel-media {
  order: 2;
  min-height: 230px;
  background: #f3f3f3;
}

#vorteile .experience-panel-copy h2 {
  max-width: 14ch;
}

#ablauf .experience-panel-grid {
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
}

#ablauf .experience-panel-copy {
  background: #2b2926;
  color: #edf1f4;
}

#ablauf .experience-panel-media {
  min-height: 360px;
}

/* Breakpoint fuer den Referenz- und Hero-Umbau auf einspaltig */
@media (max-width: 980px) {
  .reference-layout-row {
    grid-template-columns: 1fr;
  }

  #ablauf .experience-panel-grid {
    grid-template-columns: 1fr;
  }

  .hero-split {
    grid-template-columns: 1fr;
  }

  .hero-split-copy,
  .hero-split-media {
    order: initial;
  }
}

/* Beratungs- und Showcase-Bereich mit ergänzenden Medienmodulen */
.consulting-panel {
  padding: 0;
  background: #f4f4f4;
}

.consulting-panel-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(280px, 0.72fr);
  align-items: stretch;
}

.consulting-panel-media {
  min-height: 260px;
  background: #d8dde3;
}

.consulting-panel-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.consulting-panel-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(24px, 3vw, 36px);
  background: linear-gradient(135deg, #ffffff 0%, #f1f1f1 100%);
  color: #121212;
}

.consulting-panel-copy h2 {
  margin: 0 0 20px;
  color: #121212;
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  line-height: 1.28;
  letter-spacing: -0.02em;
}

.consulting-panel-copy p {
  margin: 0 0 16px;
  color: #4f4f4f;
  font-size: 0.78rem;
  line-height: 1.70;
}

.consulting-video-card {
  margin-top: 10px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: center;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.3);
}

.consulting-video-card strong {
  display: block;
  color: #ffffff;
  margin-bottom: 1px;
  font-size: 0.9rem;
}

.consulting-video-card span {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.76rem;
}

.consulting-video-play {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 800;
}

.showcase-banner {
  position: relative;
  margin-top: 10px;
  min-height: 150px;
  overflow: hidden;
  background: #d7dde2;
}

.showcase-banner img {
  width: 100%;
  height: 100%;
  min-height: 150px;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.showcase-banner-card {
  position: absolute;
  left: 50%;
  bottom: 12px;
  transform: translateX(-50%);
  width: min(240px, calc(100% - 80px));
  padding: 6px 10px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.84);
  backdrop-filter: blur(6px);
  text-align: center;
  box-shadow: 0 12px 30px rgba(18, 32, 43, 0.12);
}

.showcase-banner-card h2 {
  margin: 0;
  color: #1a1a1a;
  font-size: clamp(0.78rem, 1vw, 0.95rem);
  line-height: 1.18;
  letter-spacing: -0.02em;
}

.showcase-banner-card p {
  margin: 3px 0 0;
  color: #4f4f4f;
  font-size: 0.7rem;
  font-weight: 600;
}

/* Kontakt-Stage: großer Abschlussbereich mit Bild, Infos und Handlungsoptionen */
.contact-stage {
  padding: 0;
  background: #ffffff;
  color: #121212;
}

.contact-stage-visual {
  position: relative;
  min-height: 640px;
  overflow: hidden;
  background: #ffffff;
}

.contact-stage-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: transparent;
}

.contact-stage-visual img {
  width: 100%;
  height: 100%;
  min-height: 640px;
  object-fit: cover;
  object-position: center center;
}

.contact-stage-feature-row {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: min(1180px, 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.contact-stage-feature-row::before {
  content: "";
  position: absolute;
  inset: -26px -24px;
  border-radius: 28px;
  background: transparent;
  backdrop-filter: none;
  z-index: -2;
}

.contact-stage-feature-row::after {
  content: "";
  position: absolute;
  top: -10px;
  bottom: -10px;
  left: 50%;
  width: 2px;
  transform: translateX(-50%);
  background: linear-gradient(180deg, rgba(195, 201, 208, 0) 0%, rgba(195, 201, 208, 0.9) 18%, rgba(195, 201, 208, 0.9) 82%, rgba(195, 201, 208, 0) 100%);
  z-index: -1;
}

.contact-stage-feature-photo {
  width: 100%;
  overflow: hidden;
  border-radius: 0;
  box-shadow: 0 14px 30px rgba(114, 125, 136, 0.14);
}

.contact-stage-feature-photo img {
  width: 100%;
  height: 280px;
  min-height: 0;
  display: block;
  object-fit: cover;
  object-position: center;
}

.contact-stage-feature {
  width: 100%;
  padding: 18px 18px 20px;
  border-radius: 0;
  background: transparent;
  text-align: center;
  box-shadow: none;
}

.contact-stage-feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 88px;
  height: 88px;
  margin-bottom: 24px;
  border-radius: 50%;
  background: var(--accent);
  color: #ffffff;
  font-size: 2.2rem;
  font-weight: 700;
}

.contact-stage-feature h3 {
  margin: 0 0 14px;
  color: #1a1a1a;
  font-size: 0.92rem;
  line-height: 1.55;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-weight: 700;
}

.contact-stage-feature p {
  margin: 0;
  color: #4f4f4f;
  font-size: 0.98rem;
  line-height: 1.65;
  font-weight: 500;
}

.contact-stage-card {
  position: relative;
  z-index: 2;
  width: min(520px, 100%);
  margin: 4px auto 0;
  padding: 14px 18px;
  border-radius: 0;
  background: transparent;
  backdrop-filter: none;
  text-align: center;
  box-shadow: none;
}

.contact-stage-card h2,
.contact-stage-card h3 {
  margin: 0 0 14px;
  color: #1a1a1a;
  font-size: 0.92rem;
  line-height: 1.55;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-weight: 700;
}

.contact-stage-card p {
  margin: 0;
  color: #4f4f4f;
  font-size: 0.98rem;
  line-height: 1.65;
  font-weight: 500;
}

.contact-stage-panel {
  padding: clamp(60px, 8vw, 100px) 0 24px;
  background: #ffffff;
  border-top: none;
}

.contact-stage-panel h2 {
  margin: 0 0 36px;
  text-align: center;
  color: #121212;
  font-size: clamp(1.85rem, 3vw, 2.35rem);
  line-height: 1.18;
}

.contact-stage-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 36px;
  align-items: start;
}

.contact-stage-col {
  text-align: center;
  color: #4f4f4f;
  padding: 32px 28px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 20px;
  box-shadow: 0 10px 26px rgba(114, 125, 136, 0.08);
  line-height: 1.82;
}

.contact-stage-col h3 {
  margin: 0 0 18px;
  color: #121212;
  font-size: 1.05rem;
  line-height: 1.55;
  font-weight: 700;
}

.contact-stage-col p {
  margin: 0 0 18px;
  line-height: 1.78;
}

.contact-stage-label {
  color: #121212;
  font-weight: 800;
}

.contact-stage-mail {
  color: var(--accent);
  font-weight: 800;
}

.contact-stage-actions {
  display: grid;
  gap: 12px;
  justify-content: center;
  margin-top: 18px;
}

.contact-stage-btn,
.contact-stage-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 160px;
  padding: 12px 18px;
  border-radius: 2px;
  font-weight: 800;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.contact-stage-btn {
  background: var(--accent);
  color: #ffffff;
}

.contact-stage-link {
  border: 1px solid var(--accent);
  color: var(--accent);
}

.contact-stage-btn:hover,
.contact-stage-link:hover {
  transform: translateY(-1px);
  opacity: 0.92;
}

.contact-stage-social {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 22px;
}

.contact-stage-social span {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(207, 214, 220, 0.9);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1.1rem;
}

.contact-stage-bottom-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 42px;
  padding-top: 24px;
  border-top: 1px solid rgba(195, 201, 208, 0.3);
  color: #677381;
  font-size: 0.95rem;
  line-height: 1.7;
}

.contact-stage-bottom-links a:hover {
  color: var(--accent);
}

/* Animationen fuer sanfte Einstiegsbewegungen in Kacheln und Modulen */
@keyframes modernFadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes serviceOverviewFade {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Bewegungsreduktion fuer Nutzer mit aktivierter Accessibility-Praeferenz */
@media (prefers-reduced-motion: reduce) {
  .service-overview-item {
    opacity: 1;
    transform: none;
    animation: none;
    transition: none;
  }

  .service-overview-thumb,
  .service-overview-copy h2,
  .service-overview-links a,
  .experience-panel-media img,
  .consulting-panel-media img,
  .hero-split-media img,
  .contact-stage-feature-photo img,
  .contact-stage-feature,
  .contact-stage-card,
  .contact-stage-col,
  .experience-panel-copy,
  .consulting-panel-copy {
    transition: none;
    animation: none;
  }
}

/* Allgemeine Inhaltsmodule: Karten, Referenzen, Formulare und Footer-Bausteine */
.section-heading,
.split-heading {
  margin-bottom: 28px;
}

.service-grid,
.reference-grid,
.timeline-grid {
  display: grid;
  gap: 18px;
}

.service-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-card {
  background: var(--surface);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius-lg);
  padding: 20px;
  box-shadow: var(--shadow);
}

.service-card-featured {
  background: linear-gradient(160deg, #ffffff 0%, #eef3f4 100%);
}

.service-card h3,
.reference-copy h3,
.timeline-card h3 {
  margin: 14px 0 8px;
  font-size: 1.2rem;
}

.service-card p,
.reference-copy p,
.timeline-card p {
  margin: 0 0 12px;
  color: var(--muted);
}

.service-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.service-card li {
  padding: 7px 10px;
  border-radius: 999px;
  background: #f7f7f7;
  border: 1px solid var(--line);
  font-size: 0.88rem;
  color: var(--muted);
}

.section-soft {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.6), rgba(233, 239, 240, 0.65));
}

.split-heading {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 24px;
  align-items: end;
}

.timeline-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.timeline-card {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius-lg);
  padding: 18px;
}

.reference-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.reference-card {
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.reference-surface {
  height: 190px;
  background-size: cover;
  background-position: center;
}

.surface-one {
  background:
    linear-gradient(135deg, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.35)),
    linear-gradient(45deg, #c8d7dd, #eef3f4);
}

.surface-two {
  background:
    linear-gradient(135deg, rgba(201, 133, 85, 0.8), rgba(201, 133, 85, 0.18)),
    linear-gradient(45deg, #e3ecef, #f8fafb);
}

.surface-three {
  background:
    linear-gradient(135deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.2)),
    linear-gradient(45deg, #d9e1e5, #f5f8f9);
}

.reference-copy {
  padding: 18px;
}

.reference-copy span {
  display: inline-flex;
  padding: 7px 10px;
  border-radius: 999px;
  background: #f3f5f7;
  color: var(--muted);
  font-size: 0.86rem;
}

.section-accent {
  background: linear-gradient(135deg, var(--brand-strong), var(--brand));
  color: #fff;
}

.value-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 24px;
  align-items: start;
}

.value-list {
  display: grid;
  gap: 14px;
}

.value-list article {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
}

.value-list p {
  color: rgba(255, 255, 255, 0.82);
  margin: 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 24px;
  align-items: start;
}

.contact-cards {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.contact-form {
  background: var(--surface);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius-xl);
  padding: 22px;
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  gap: 6px;
  margin-bottom: 14px;
}

.form-row label {
  font-weight: 600;
}

.form-row input,
.form-row textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0.88rem 0.95rem;
  background: #f7f7f7;
  color: var(--text);
}

.form-row input:focus,
.form-row textarea:focus {
  outline: 2px solid rgba(0, 0, 0, 0.18);
  border-color: rgba(0, 0, 0, 0.3);
}

.form-note {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.site-footer {
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  background: rgba(255, 255, 255, 0.66);
}

.footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 40px 0 48px;
}

.footer-row p {
  margin: 12px 0 0;
  color: var(--muted);
  max-width: 680px;
  line-height: 1.8;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  color: var(--muted);
}

.footer-links a:hover,
.topbar a:hover {
  text-decoration: underline;
}

/* Home-Landing: klare Markenoptik in Rot, Weiß und Anthrazit */
body.home-landing {
  background:
    radial-gradient(circle at top left, rgba(225, 6, 19, 0.1), transparent 0 28%),
    linear-gradient(180deg, #ffffff 0%, #f5f5f6 100%);
}

body.home-landing .topbar {
  background: #ffffff;
  color: #4e4e52;
  border-bottom-color: rgba(17, 17, 17, 0.06);
}

body.home-landing .topbar-inner {
  gap: 14px;
  min-height: 40px;
  letter-spacing: 0.04em;
}

body.home-landing .site-header {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom-color: rgba(225, 6, 19, 0.1);
}

body.home-landing .nav-row {
  min-height: 92px;
  gap: 18px;
}

body.home-landing .brand-copy strong {
  color: var(--brand);
}

body.home-landing .brand-copy small {
  color: #6a6a70;
}

body.home-landing .site-nav {
  gap: 10px;
}

body.home-landing .site-nav a {
  padding: 0.74rem 0.92rem;
  border-radius: 999px;
  color: #27272b;
  font-weight: 700;
}

body.home-landing .site-nav a:hover,
body.home-landing .site-nav a:focus-visible,
body.home-landing .site-nav a.is-active {
  background: rgba(225, 6, 19, 0.08);
  color: var(--accent);
}

body.home-landing .hero-split {
  width: min(1240px, calc(100% - 40px));
  margin: 28px auto 0;
  grid-template-columns: minmax(320px, 0.94fr) minmax(0, 1.06fr);
  min-height: 560px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 34px;
  background: linear-gradient(135deg, #ffffff 0%, #f6f7f8 100%);
  box-shadow: var(--shadow);
  width: 100%;
  margin: 0;
  border: none;
  border-radius: 0;
  box-shadow: none;
  min-height: 400px;
}

body.home-landing .hero-split-copy {
  order: 1;
  padding: clamp(32px, 4vw, 56px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 248, 249, 0.98) 100%);
}

body.home-landing .hero-split-copy :is(h1, h2) {
  max-width: 12ch;
  color: var(--brand);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
  margin-bottom: 20px;
}

body.home-landing .hero-split .section-kicker.light {
  color: var(--accent) !important;
}

body.home-landing .lead-light {
  max-width: 35rem;
  color: #606066;
  font-size: 1.05rem;
  line-height: 1.85;
  margin-bottom: 32px;
}

body.home-landing .hero-split-copy .hero-actions {
  margin: 28px 0 24px;
}

body.home-landing .hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 32px;
}

body.home-landing .hero-facts article {
  padding: 28px;
  border: 1px solid transparent;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.9);
}

body.home-landing .hero-facts strong {
  display: block;
  margin-bottom: 12px;
  color: var(--brand);
  font-size: 1rem;
  font-weight: 700;
}

body.home-landing .hero-facts span {
  display: block;
  color: var(--muted);
  font-size: 0.91rem;
  line-height: 1.75;
}

body.home-landing .hero-split-media {
  order: 2;
  background: #f2f2f3;
}

body.home-landing .hero-split-media::before {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.52) 24%, rgba(255, 255, 255, 0) 60%);
}

body.home-landing .hero-split-media img {
  object-position: center center;
  filter: saturate(0.9) contrast(1.02);
}

body.home-landing .service-overview {
  background: transparent;
  padding: clamp(58px, 7vw, 86px) 0;
}

body.home-landing .service-overview .container {
  width: min(1460px, calc(100% - 96px));
  max-width: none;
  margin: 0 auto;
  padding: 0;
}

body.home-landing .service-overview-grid {
  width: 100%;
  margin: 0;
  column-gap: clamp(60px, 8vw, 120px);
  row-gap: clamp(42px, 5vw, 76px);
  align-items: start;
}

body.home-landing .service-overview-item {
  position: relative;
  grid-template-columns: 104px 1fr;
  gap: 18px;
  padding: 0;
  border: none;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

body.home-landing .service-overview-thumb {
  position: relative;
  z-index: 1;
  width: 92px;
  height: 92px;
  border-radius: 50%;
  box-shadow: 0 14px 26px rgba(29, 29, 27, 0.12);
}

body.home-landing .service-overview-copy h2 {
  color: var(--brand);
  font-size: 1.03rem;
  letter-spacing: 0;
  margin-bottom: 16px;
}

body.home-landing .service-overview-links a {
  color: #242429;
  font-weight: 700;
  line-height: 1.65;
  font-size: 0.98rem;
}

body.home-landing .experience-panel,
body.home-landing .consulting-panel {
  background: transparent;
}

body.home-landing .experience-panel-grid,
body.home-landing .consulting-panel-grid {
  width: min(1240px, calc(100% - 40px));
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 34px;
  background: #ffffff;
  box-shadow: 0 18px 40px rgba(17, 17, 17, 0.06);
  width: 100%;
  margin: 0;
  border: none;
  border-radius: 0;
  box-shadow: none;
}

body.home-landing .experience-panel-copy,
body.home-landing .consulting-panel-copy {
  background: linear-gradient(180deg, #ffffff 0%, #f7f7f8 100%);
}

body.home-landing .consulting-panel-copy .btn,
body.home-landing .consulting-panel-copy .btn:visited {
  background: linear-gradient(135deg, #d63a3a 0%, #b92424 100%);
  color: #ffffff !important;
  box-shadow: 0 14px 32px rgba(185, 36, 36, 0.26);
}

body.home-landing .consulting-panel-copy .btn:hover,
body.home-landing .consulting-panel-copy .btn:focus-visible,
body.home-landing .consulting-panel-copy .btn:active {
  background: linear-gradient(135deg, #c73131 0%, #a91f1f 100%);
  color: #ffffff !important;
}

body.home-landing .experience-divider {
  width: 54px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent) 0%, rgba(225, 6, 19, 0.14) 100%);
}

body.home-landing .contact-stage {
  background: transparent;
}

body.home-landing .contact-stage-visual {
  position: relative;
  min-height: 520px;
  padding: 0;
  overflow: hidden;
}

body.home-landing .contact-stage-visual > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: 0;
  margin: 0;
  object-fit: cover;
  object-position: center;
  border-radius: 0;
  box-shadow: none;
}

body.home-landing .contact-stage-feature-row {
  position: relative;
  top: auto;
  left: auto;
  transform: none;
  width: min(1180px, calc(100% - 40px));
  margin: -84px auto 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
  width: 100%;
  margin: 0;
  gap: 0;
  padding: 0;
}

body.home-landing .contact-stage-feature-row::before,
body.home-landing .contact-stage-feature-row::after,
body.home-landing .contact-stage-visual::after {
  display: none;
}

body.home-landing .contact-stage-feature-photo,
body.home-landing .contact-stage-feature,
body.home-landing .contact-stage-card,
body.home-landing .contact-stage-panel {
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 16px 36px rgba(17, 17, 17, 0.08);
  border: none;
  border-radius: 0;
  background: #ffffff;
  box-shadow: none;
}

body.home-landing .contact-stage-feature-photo {
  grid-column: 1 / span 2;
  grid-row: 1 / span 2;
  min-height: 560px;
}

body.home-landing .contact-stage-feature-photo img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
  object-position: center center;
}

body.home-landing .contact-stage-feature {
  padding: 24px 22px;
  text-align: left;
  padding: 32px 28px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

body.home-landing .contact-stage-feature-icon {
  width: 56px;
  height: 56px;
  margin-bottom: 18px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-strong) 100%);
  font-size: 1.35rem;
}

body.home-landing .contact-stage-card {
  grid-column: auto;
  margin: 0;
  padding: 28px 30px;
  text-align: left;
  padding: 32px 30px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

body.home-landing .contact-stage-panel {
  width: min(1180px, calc(100% - 40px));
  margin: 24px auto 0;
  padding: clamp(60px, 8vw, 100px) 0 28px;
  border: none;
  width: 100%;
  margin: 0;
}

body.home-landing .contact-stage-intro {
  max-width: 56rem;
  margin: 0 auto 36px;
  text-align: center;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.82;
}

body.home-landing .contact-stage-col {
  min-height: 100%;
  padding: 32px 26px;
  border-radius: 24px;
  background: linear-gradient(180deg, #ffffff 0%, #f7f7f8 100%);
  box-shadow: none;
  line-height: 1.82;
}

body.home-landing .contact-stage-btn {
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-strong) 100%);
  box-shadow: 0 12px 26px rgba(183, 0, 13, 0.18);
}

body.home-landing .site-footer {
  background: #ffffff;
  width: 100%;
}

/* Projektweite H&N-Marken-Overrides für Studio-Exportseiten */
body.site-theme {
  font-family: "Avenir Next", "Segoe UI", "Helvetica Neue", Arial, sans-serif !important;
  background:
    radial-gradient(circle at top left, rgba(225, 6, 19, 0.06), transparent 0 28%),
    linear-gradient(180deg, #ffffff 0%, #f5f5f6 100%) !important;
}

body.site-theme h2,
body.site-theme h2,
body.site-theme h3,
body.site-theme h4,
body.site-theme h5,
body.site-theme h6,
body.site-theme #main-header,
body.site-theme #et-top-navigation,
body.site-theme #top-header .container {
  font-family: "Avenir Next", "Segoe UI", "Helvetica Neue", Arial, sans-serif !important;
}

body.site-theme #top-header,
body.site-theme #page-container #top-header,
body.site-theme.et_secondary_nav_enabled #page-container #top-header,
body.site-theme #et-secondary-nav li ul {
  background: rgba(255, 255, 255, 0.98) !important;
  border-bottom: 1px solid rgba(17, 17, 17, 0.06) !important;
}

body.site-theme #top-header a,
body.site-theme #et-secondary-nav a {
  color: #3d3d42 !important;
  letter-spacing: 0.04em !important;
}

body.site-theme #main-header {
  background: rgba(255, 255, 255, 0.94) !important;
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(225, 6, 19, 0.1) !important;
}

body.site-theme .logo_container::before,
body.site-theme .logo_container::after {
  content: none !important;
}

body.site-theme .logo_container a {
  width: 360px;
  min-height: 92px;
  background: transparent url("assets/images/logo.jpeg") left center / auto 76px no-repeat;
}

body.site-theme #logo {
  opacity: 0 !important;
  width: 1px !important;
  max-width: 1px !important;
  height: 1px !important;
  max-height: 1px !important;
  overflow: hidden;
}

body.site-theme #top-menu > li > a {
  margin: 0 8px;
  padding: 10px 12px !important;
  border-radius: 999px;
  color: #1c1c1f !important;
  font-weight: 700;
}

body.site-theme #top-menu li.current-menu-item > a,
body.site-theme #top-menu li.current_page_item > a,
body.site-theme #top-menu li.current-menu-ancestor > a,
body.site-theme #top-menu li > a:hover,
body.site-theme #top-menu li > a:focus-visible {
  color: var(--accent) !important;
  background: rgba(225, 6, 19, 0.08) !important;
}

body.site-theme .nav li ul,
body.site-theme #top-menu li ul.sub-menu,
body.site-theme .et_mobile_menu {
  border-color: rgba(17, 17, 17, 0.08) !important;
  border-top-color: rgba(17, 17, 17, 0.08) !important;
  border-radius: 20px !important;
  background: rgba(255, 255, 255, 0.98) !important;
  box-shadow: 0 18px 40px rgba(17, 17, 17, 0.1) !important;
}

body.site-theme .nav li ul li a,
body.site-theme .et_mobile_menu li a {
  color: #1f1f22 !important;
}

body.site-theme .nav li ul li a:hover,
body.site-theme .et_mobile_menu li a:hover {
  background: rgba(225, 6, 19, 0.06) !important;
  color: var(--accent) !important;
}

body.site-theme .mobile_menu_bar:before,
body.site-theme .mobile_menu_bar:after,
body.site-theme #et_search_icon:before,
body.site-theme .et_overlay:before,
body.site-theme .ui_widget li a:hover,
body.site-theme .posted_in a,
body.site-theme .tagged_as a,
body.site-theme .nav-single a,
body.site-theme .catalog div.product span.price,
body.site-theme .catalog div.product p.price,
body.site-theme .catalog-page div.product span.price,
body.site-theme .catalog-page div.product p.price,
body.site-theme .catalog .star-rating span:before,
body.site-theme .catalog-page .star-rating span:before {
  color: var(--accent) !important;
}

body.site-theme blockquote,
body.site-theme .et-search-form,
body.site-theme .footer-widget li:before,
body.site-theme .ui_pricing li:before {
  border-color: var(--accent) !important;
}

body.site-theme .ui_button,
body.site-theme .catalog a.button,
body.site-theme .catalog button.button,
body.site-theme .catalog input.button,
body.site-theme .catalog a.button.alt,
body.site-theme .catalog button.button.alt,
body.site-theme .catalog input.button.alt,
body.site-theme .mgbutton,
body.site-theme .ui_contact_submit,
body.site-theme .et_submit_button {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-strong) 100%) !important;
  background-color: var(--accent) !important;
  border-color: var(--accent) !important;
  color: #ffffff !important;
  box-shadow: 0 14px 28px rgba(183, 0, 13, 0.16) !important;
}

body.site-theme .ui_button:hover,
body.site-theme .catalog a.button:hover,
body.site-theme .catalog button.button:hover,
body.site-theme .catalog input.button:hover,
body.site-theme .catalog a.button.alt:hover,
body.site-theme .catalog button.button.alt:hover,
body.site-theme .catalog input.button.alt:hover,
body.site-theme .mgbutton:hover,
body.site-theme .ui_contact_submit:hover,
body.site-theme .et_submit_button:hover {
  background: linear-gradient(135deg, #c8000e 0%, #96000b 100%) !important;
  border-color: #c8000e !important;
  color: #ffffff !important;
}

body.site-theme .catalog-message,
body.site-theme .catalog-error,
body.site-theme .catalog-info,
body.site-theme .ui_counter_amount,
body.site-theme .ui_featured_table .ui_pricing_heading,
body.site-theme .et_quote_content,
body.site-theme .et_link_content,
body.site-theme .et_audio_content,
body.site-theme .ui_post_slider.ui_bg_layout_dark,
body.site-theme .et_slide_in_menu_container,
body.site-theme .ui_contact p input[type="radio"]:checked + label i:before {
  background-color: var(--accent) !important;
}

body.site-theme .ui_row::before,
body.site-theme .ui_section_0 .ui_row_0.ui_equal_columns::before {
  background: linear-gradient(90deg, var(--accent) 0%, var(--brand) 100%) !important;
}

body.site-theme .ui_row,
body.site-theme .ui_promo,
body.site-theme .ui_cta_0,
body.site-theme .ui_cta_1,
body.site-theme .ui_widget,
body.site-theme .rating-results-list,
body.site-theme article.ui_post,
body.site-theme .catalog form.checkout_coupon,
body.site-theme .catalog form.login,
body.site-theme .catalog form.register,
body.site-theme .catalog-tabs,
body.site-theme .comment-content,
body.site-theme .media-caption {
  border-color: rgba(17, 17, 17, 0.08) !important;
  box-shadow: 0 14px 36px rgba(17, 17, 17, 0.06) !important;
}

body.site-theme #main-footer,
body.site-theme #footer-bottom,
body.site-theme .layout--footer,
body.site-theme footer.layout-core {
  background: #111111 !important;
  color: rgba(255, 255, 255, 0.76) !important;
}

body.site-theme #main-footer h2,
body.site-theme #main-footer h2,
body.site-theme #main-footer h3,
body.site-theme #main-footer h4,
body.site-theme #main-footer h5,
body.site-theme #main-footer h6,
body.site-theme #footer-bottom a,
body.site-theme .footer-widget a,
body.site-theme .footer-widget h4 {
  color: #ffffff !important;
}

body.site-theme #main-footer a:hover,
body.site-theme #footer-bottom a:hover,
body.site-theme .footer-widget a:hover {
  color: #ff4a53 !important;
}

@media (max-width: 1024px) {
  body.home-landing .hero-facts,
  body.home-landing .contact-stage-feature-row {
    grid-template-columns: 1fr 1fr;
  }

  body.home-landing .contact-stage-feature-photo {
    grid-column: span 2;
    grid-row: auto;
    min-height: 360px;
  }

  body.home-landing .contact-stage-feature-photo img {
    min-height: 360px;
  }

  body.home-landing .contact-stage-card {
    grid-column: span 2;
  }
}

@media (max-width: 820px) {
  body.home-landing .nav-cta {
    display: none;
  }

  body.home-landing .hero-split,
  body.home-landing .experience-panel-grid,
  body.home-landing .consulting-panel-grid,
  body.home-landing .contact-stage-panel {
    width: min(100%, calc(100% - 24px));
  }

  body.home-landing .hero-facts,
  body.home-landing .contact-stage-feature-row {
    grid-template-columns: 1fr;
  }

  body.home-landing .contact-stage-feature-photo,
  body.home-landing .contact-stage-card {
    grid-column: auto;
  }

  body.home-landing .contact-stage-feature-photo {
    grid-row: auto;
    min-height: 260px;
  }

  body.home-landing .contact-stage-feature-photo img {
    min-height: 260px;
  }

  body.home-landing .contact-stage-visual {
    padding: 0 12px;
  }

  body.home-landing .contact-stage-visual > img {
    height: 300px;
    min-height: 300px;
  }

  body.site-theme .logo_container a {
    width: 236px;
    background-size: contain;
  }
}

/* Einheitlicher mobiler Footer fuer alle Leistungs-Unterseiten. */
@media (max-width: 760px) {
  body.site-page.trust-site .site-footer {
    padding: 1.35rem 0 1.25rem !important;
    background: #ffffff !important;
    border-top: 3px solid var(--accent) !important;
    border-bottom: 1px solid rgba(17, 17, 17, 0.14) !important;
  }

  body.site-page.trust-site .site-footer .footer-row-extended {
    width: calc(100% - 24px) !important;
    grid-template-columns: 1fr !important;
    align-items: start !important;
    gap: 1rem !important;
    padding: 0 !important;
    text-align: left !important;
  }

  body.site-page.trust-site .site-footer .brand-badge {
    width: 70px !important;
    height: 44px !important;
    flex: 0 0 70px !important;
  }

  body.site-page.trust-site .site-footer .brand-copy small {
    display: none !important;
  }

  body.site-page.trust-site .site-footer .footer-links {
    justify-content: flex-start !important;
    gap: 0.45rem 1rem !important;
    text-align: left !important;
  }
}

/* Floating step navigation must never cover forms or content on touch layouts. */
@media (max-width: 900px) {
  .next-category-button,
  .split-transition-section-button {
    display: none !important;
  }
}

/* Responsive Regeln für Tablet- und Mobile-Ansichten */
@media (max-width: 1024px) {
  .hero-grid,
  .split-heading,
  .timeline-grid,
  .reference-grid,
  .value-grid,
  .contact-grid,
  .service-grid,
  .trust-grid,
  .service-overview-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero-points,
  .trust-checks {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 820px) {
  .nav-row {
    grid-template-columns: auto auto;
    justify-content: space-between;
    min-height: 96px;
    gap: 18px;
  }

  .nav-toggle {
    display: inline-block;
  }

  .site-nav,
  .nav-cta {
    display: none;
  }

  .site-nav.is-open {
    display: flex;
    position: absolute;
    left: 16px;
    right: 16px;
    top: calc(100% + 8px);
    flex-direction: column;
    gap: 10px;
    padding: 18px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 18px;
    box-shadow: var(--shadow);
  }

  /* Dropdowns im Mobile-Menü: hover deaktivieren, über JS .is-open steuern */
  .nav-has-drop {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }

  .nav-has-drop > a {
    width: 100%;
    justify-content: space-between;
  }

  .nav-has-drop:hover .nav-drop {
    display: none;
  }

  .nav-has-drop.is-open .nav-drop {
    display: block;
    position: static;
    transform: none;
    box-shadow: none;
    border: none;
    border-top: 2px solid rgba(0,0,0,0.08);
    border-radius: 6px;
    background: #f5f5f5;
    padding: 4px 0;
    width: 100%;
    min-width: 0;
    margin-top: 4px;
  }

  .hero-split,
  .hero-grid,
  .hero-points,
  .split-heading,
  .timeline-grid,
  .reference-grid,
  .value-grid,
  .contact-grid,
  .service-grid,
  .trust-grid,
  .trust-checks,
  .service-overview-grid,
  .experience-panel-grid,
  .consulting-panel-grid,
  .contact-stage-grid {
    grid-template-columns: 1fr;
  }

  .showcase-banner {
    min-height: 140px;
  }

  .showcase-banner img {
    min-height: 140px;
  }

  .showcase-banner-card {
    bottom: 10px;
    padding: 8px 12px;
    border-radius: 12px;
  }

  .contact-stage-visual,
  .contact-stage-visual img {
    min-height: 320px;
  }

  .contact-stage-feature-row {
    position: static;
    transform: none;
    width: 100%;
    padding: 20px 18px 0;
    gap: 20px;
  }

  .contact-stage-feature-row::before,
  .contact-stage-feature-row::after {
    display: none;
  }

  .contact-stage-feature {
    padding: 20px;
  }

  .contact-stage-card {
    bottom: 12px;
    padding: 16px 18px;
    border-radius: 16px;
  }

  .contact-stage-panel {
    padding: 50px 0 18px;
  }

  .service-overview-item {
    grid-template-columns: 80px 1fr;
    gap: 18px;
    padding: 24px;
  }

  .service-overview-thumb {
    width: 80px;
    height: 80px;
  }

  .experience-panel-copy {
    padding: 32px 20px;
  }

  .experience-panel-media {
    min-height: 340px;
  }

  .consulting-panel-media {
    min-height: 280px;
  }

  .consulting-panel-copy {
    padding: 28px 20px;
  }

  .hero-split-copy {
    padding: 30px 20px;
  }

  .hero-split-media img {
    height: 280px;
  }

  .hero-visual {
    min-height: auto;
    padding: 0;
  }

  .panel-secondary,
  .floating-note {
    position: static;
    width: 100%;
    max-width: none;
    margin-top: 16px;
  }

  .footer-row,
  .topbar-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}

@media (max-width: 560px) {
  .section {
    padding: 40px 0 80px;
  }

  .wide-image-band img {
    height: 180px;
  }

  .hero-copy h2,
  .hero-split-copy :is(h1, h2),
  .section-heading h2,
  .split-heading h2,
  .contact-copy h2,
  .value-grid h2,
  .trust-grid h2 {
    font-size: 2.2rem;
    margin-bottom: 24px;
  }

  .hero-actions {
    flex-direction: column;
    gap: 14px;
  }

  .btn {
    width: 100%;
    padding: 1.2rem 1.8rem;
  }
}

/* ============================================================================
   Systemharmonisierung
   Diese Regeln überschreiben die Standardoptik der importierten Unterseiten,
   damit Header, Flächen, Typografie, Buttons und Footer zum neutralen Layout
   der Startseite passen.
   ============================================================================ */
body.site-theme {
  font-family: "Poppins", "Helvetica Neue", sans-serif !important;
  color: var(--text);
  background: #ffffff;
  line-height: 1.65;
}

body.site-theme #page-container,
body.site-theme #et-main-area,
body.site-theme #main-content,
body.site-theme .layout-core,
body.site-theme .builder_inner_content {
  background: transparent !important;
}

body.site-theme h2,
body.site-theme h2,
body.site-theme h3,
body.site-theme h4,
body.site-theme h5,
body.site-theme h6 {
  font-family: "Poppins", "Helvetica Neue", sans-serif !important;
  color: var(--brand) !important;
  letter-spacing: -0.03em;
  line-height: 1.16;
  font-weight: 700;
}

body.site-theme p,
body.site-theme li,
body.site-theme td,
body.site-theme th,
body.site-theme label {
  color: var(--text);
  line-height: 1.75;
}

body.site-theme a {
  color: var(--brand);
  transition: color 0.2s ease, opacity 0.2s ease, transform 0.2s ease;
}

body.site-theme a:hover,
body.site-theme a:focus-visible {
  color: var(--accent);
}

body.site-theme a.btn,
body.site-theme a.btn:visited,
body.site-theme a.btn:hover,
body.site-theme a.btn:focus-visible,
body.site-theme a.btn:active {
  color: #fff !important;
}

body.site-theme a.btn-outline,
body.site-theme a.btn-outline:visited,
body.site-theme a.btn-outline:hover,
body.site-theme a.btn-outline:focus-visible,
body.site-theme a.btn-outline:active {
  color: var(--brand) !important;
}

body.site-theme .et-cart-info {
  display: none !important;
}

body.site-theme #top-header,
body.site-theme #page-container #top-header,
body.site-theme.et_secondary_nav_enabled #page-container #top-header,
body.site-theme #et-secondary-nav li ul {
  background: #FFFFFF !important;
  background-color: #FFFFFF !important;
  border-bottom: 1px solid rgba(28, 39, 51, 0.06);
  box-shadow: none !important;
}

body.site-theme #top-header .container {
  padding: 4px 0 !important;
  line-height: 1 !important;
  font-family: "Poppins", "Helvetica Neue", sans-serif !important;
}

body.site-theme #top-header .menu-item::before {
  content: none !important;
}

body.site-theme #et-secondary-menu {
  float: none;
  display: flex;
  justify-content: center;
}

body.site-theme #et-secondary-nav {
  display: flex !important;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 18px;
  padding-right: 0 !important;
}

body.site-theme #et-secondary-nav li {
  margin-right: 0 !important;
  padding-right: 0 !important;
  position: relative;
}

body.site-theme #et-secondary-nav li::after {
  content: "|";
  position: absolute;
  right: -11px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(95, 107, 119, 0.7);
}

body.site-theme #et-secondary-nav li:last-child::after {
  display: none;
}

body.site-theme #top-header a,
body.site-theme #et-secondary-nav a {
  color: #4f4f4f !important;
  font-size: 0.76rem !important;
  font-weight: 700;
  letter-spacing: 0.08em !important;
}

/* Studio-Header und Navigation: neutrales Menü, Logozeile und fixe Kopfzeile */
body.site-theme #main-header {
  position: sticky;
  top: 0;
  z-index: 99999;
  width: 100%;
  background: linear-gradient(180deg, #FFFFFF 0%, #FCFCFC 100%) !important;
  backdrop-filter: none;
  border-bottom: 1px solid rgba(198, 40, 40, 0.1);
  box-shadow: none !important;
}

body.site-theme #main-header .container.et_menu_container {
  width: min(1180px, calc(100% - 32px)) !important;
  max-width: none !important;
  min-height: 92px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  justify-content: start;
  gap: 16px;
  padding: 0 !important;
}

body.site-theme .et_header_style_left .logo_container {
  position: relative !important;
  width: auto !important;
  height: auto !important;
  display: flex;
  align-items: center;
  justify-self: start;
  margin-right: auto;
  min-width: 0;
}

body.site-theme .logo_container {
  position: relative !important;
}

body.site-theme .logo_container::before {
  content: "Handwerk & Sanierung";
  position: absolute;
  left: 152px;
  top: calc(50% - 16px);
  color: #1a1a1a;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.05;
  pointer-events: none;
}

body.site-theme .logo_container::after {
  content: "Modernisierung · Werterhalt · Gebäudehülle";
  position: absolute;
  left: 152px;
  top: calc(50% + 6px);
  color: #5a5a5a;
  font-size: 0.79rem;
  line-height: 1.1;
  white-space: nowrap;
  pointer-events: none;
}

body.site-theme .logo_container a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 470px;
  min-height: 92px;
}

body.site-theme .logo_container a::before {
  content: none;
}

body.site-theme .logo_container a::after {
  content: none;
}

body.site-theme span.logo_helper {
  display: none;
}

body.site-theme #logo {
  display: block !important;
  width: 172px;
  max-width: 172px;
  height: auto;
  max-height: 112px;
  margin: 0;
  padding: 0;
  border-radius: 0;
  border: none;
  background: transparent;
  box-shadow: none;
  object-fit: contain;
}

body.site-theme #et-top-navigation,
body.site-theme .et_header_style_left #et-top-navigation {
  float: none;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  min-height: 92px;
  padding: 0 !important;
}

body.site-theme #top-menu-nav {
  margin-left: auto;
}

body.site-theme #top-menu,
body.site-theme nav.et-menu-nav ul,
body.site-theme nav#top-menu-nav > ul {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0;
}

body.site-theme #top-menu > li {
  padding-right: 0 !important;
}

body.site-theme #top-menu > li > a {
  margin: 0 11px;
  padding: 10px 0 !important;
  border-radius: 0;
  background: transparent !important;
  color: #1a1a1a !important;
  font-size: 0.92rem !important;
  font-weight: 700;
}

body.site-theme #top-menu .menu-item-has-children > a:first-child {
  padding-right: 0 !important;
}

body.site-theme #top-menu .menu-item-has-children > a:first-child::after {
  display: none !important;
}

body.site-theme #top-menu li.current-menu-item > a,
body.site-theme #top-menu li.current_page_item > a,
body.site-theme #top-menu li.current-menu-ancestor > a,
body.site-theme #top-menu li > a:hover,
body.site-theme #top-menu li > a:focus-visible {
  color: var(--accent) !important;
  background: transparent !important;
}

/* Dropdown- und Megamenü-Bereich: aufgeklappte Menüfelder mit weißem Hintergrund */
body.site-theme .nav li ul,
body.site-theme #top-menu li ul.sub-menu,
body.site-theme .et_mobile_menu {
  border: 1px solid rgba(0, 0, 0, 0.1) !important;
  border-radius: 18px;
  background: #FFFFFF !important;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
  padding: 12px !important;
}

body.site-theme .nav li ul li {
  padding: 0 !important;
}

body.site-theme .nav li ul li a,
body.site-theme .et_mobile_menu li a {
  width: auto !important;
  display: block;
  padding: 10px 12px !important;
  border-radius: 12px;
  color: #2a2a2a !important;
}

body.site-theme .nav li ul li a:hover,
body.site-theme .et_mobile_menu li a:hover {
  background: rgba(0, 0, 0, 0.06) !important;
  opacity: 1;
}

body.site-theme #et_top_search {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  margin: 0 0 0 4px !important;
  border-radius: 50%;
  background: transparent;
}

body.site-theme #et_search_icon {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
}

body.site-theme #et_search_icon::before {
  content: "⌕";
  top: 0 !important;
  color: #1a1a1a !important;
  font-family: inherit !important;
  font-size: 1rem;
}

body.site-theme #main-content .container,
body.site-theme .ui_row {
  width: min(1180px, calc(100% - 32px)) !important;
  max-width: none !important;
}

body.site-theme #main-content .container {
  padding-top: 30px !important;
}

body.site-theme #main-content .container::before {
  display: none !important;
}

/* Zwei-Spalten-Layout fuer Studio-Inhalte mit optionaler Sidebar */
body.site-theme #content-area {
  display: grid;
  grid-template-columns: minmax(0, 1.65fr) minmax(260px, 0.7fr);
  gap: 24px;
  align-items: start;
}

body.site-theme.et_no_sidebar #content-area,
body.site-theme.et_no_sidebar #left-area {
  display: block;
  width: 100% !important;
}

body.site-theme #left-area,
body.site-theme #sidebar {
  width: auto !important;
  float: none !important;
  padding: 0 !important;
}

body.site-theme .ui_section {
  padding: 0 0 28px !important;
  background: transparent !important;
}

body.site-theme .ui_section[id] {
  scroll-margin-top: 118px;
}

/* Studio-Hero-Ueberschreibung: erste Builder-Zeile als Startbereich */
body.site-theme .ui_section_0 .ui_row_0.ui_equal_columns {
  display: grid !important;
  grid-template-columns: minmax(320px, 0.88fr) minmax(0, 1.12fr);
  gap: 0;
  padding: 0 !important;
  background: #ffffff !important;
  overflow: hidden;
}

body.site-theme .ui_section_0 .ui_row_0.ui_equal_columns::before {
  height: 5px;
  background: linear-gradient(90deg, var(--brand) 0%, var(--accent) 100%);
}

body.site-theme .ui_section_0 .ui_row_0.ui_equal_columns > .ui_column {
  margin: 0 !important;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

body.site-theme .ui_section_0 .ui_row_0 > .ui_column:first-child {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(22px, 3vw, 38px) !important;
  background: linear-gradient(90deg, #ffffff 0%, #ffffff 58%, rgba(255, 255, 255, 0.92) 80%, rgba(255, 255, 255, 0) 100%);
}

body.site-theme .ui_section_0 .ui_row_0 > .ui_column:last-child {
  position: relative;
  padding: 0 !important;
  min-height: clamp(260px, 30vw, 380px);
  background: #ffffff url("/media/uploads/hero.webp") center right / cover no-repeat;
}

body.site-theme .ui_section_0 .ui_row_0 > .ui_column:last-child::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(248, 250, 251, 0.02) 0%, rgba(248, 250, 251, 0.02) 55%, rgba(248, 250, 251, 0.16) 100%);
  pointer-events: none;
}

body.site-theme .ui_section_0 .ui_row_0 h2,
body.site-theme .ui_section_0 .ui_row_0 h2 {
  margin: 0;
  font-size: clamp(1.9rem, 3.2vw, 2.8rem);
  line-height: 1.06;
  letter-spacing: -0.04em;
  max-width: 12ch;
}

body.site-theme .ui_section_0 .ui_row_0 h3 {
  color: #5a5a5a !important;
  font-size: clamp(1rem, 1.5vw, 1.12rem);
  line-height: 1.45;
  letter-spacing: 0;
  text-transform: none;
}

body.site-theme .ui_section_0 .ui_row_0 p {
  max-width: 34rem;
}

body.site-theme .ui_section_0 .ui_row_0 .ui_button_module_wrapper .ui_button {
  width: auto;
}

body.site-theme .ui_section_0 .ui_row_0 .ui_image,
body.site-theme .ui_section_0 .ui_row_0 .ui_image .ui_image_wrap,
body.site-theme .ui_section_0 .ui_row_0 .ui_image a {
  height: 100%;
  border-radius: 0;
  box-shadow: none;
  background: #ffffff;
}

body.site-theme .ui_section_0 .ui_row_0 .ui_image img {
  height: 100%;
  min-height: clamp(260px, 30vw, 380px);
  object-fit: cover;
  object-position: right top;
}

/* Standard-Card-Styling fuer generische Studio-Reihen und Spalten */
body.site-theme .ui_row {
  position: relative;
  margin: 0 auto;
  padding: clamp(18px, 2.4vw, 30px) !important;
  border-radius: 24px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: #ffffff;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

body.site-theme .ui_row::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, var(--brand) 0%, var(--accent) 100%);
  opacity: 0.8;
}

body.site-theme .layout--post .ui_row > .ui_column {
  padding: clamp(12px, 1.8vw, 18px);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.05);
}

body.site-theme .ui_module {
  margin-bottom: 14px !important;
}

body.site-theme .ui_module:last-child,
body.site-theme .ui_text_inner > *:last-child {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}

body.site-theme .ui_text ul,
body.site-theme .ui_text ol,
body.site-theme .entry-content ul,
body.site-theme .entry-content ol {
  padding: 0 0 0 1.15rem !important;
}

body.site-theme .ui_text li::marker,
body.site-theme .entry-content li::marker {
  color: var(--brand);
}

/* Sicherstellen, dass dunkle Studio-Module die globale Farblogik behalten */
body.site-theme .ui_bg_layout_dark,
body.site-theme .ui_bg_layout_dark h2,
body.site-theme .ui_bg_layout_dark h2,
body.site-theme .ui_bg_layout_dark h3,
body.site-theme .ui_bg_layout_dark h4,
body.site-theme .ui_bg_layout_dark h5,
body.site-theme .ui_bg_layout_dark h6,
body.site-theme .ui_bg_layout_dark p,
body.site-theme .ui_bg_layout_dark li,
body.site-theme .ui_bg_layout_dark a {
  color: inherit !important;
}

body.site-theme .ui_text h2:first-child,
body.site-theme .entry-title {
  margin-bottom: 10px;
  font-size: clamp(1.45rem, 2.4vw, 2rem);
}

/* Typografische Hervorhebung fuer Zitate in Artikel- und Inhaltsbereichen */
body.site-theme blockquote {
  margin: 18px 0;
  padding: 16px 18px;
  border-left: 4px solid var(--accent);
  border-radius: 0 16px 16px 0;
  background: rgba(0, 0, 0, 0.04);
}

/* Studio-Komponenten: Buttons, Produktkatalog-Elemente und Kartenflächen angleichen */
body.site-theme .ui_button,
body.site-theme .catalog a.button,
body.site-theme .catalog button.button,
body.site-theme .catalog input.button,
body.site-theme .mgbutton {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.9rem 1.3rem !important;
  border: 1px solid transparent !important;
  border-radius: 999px !important;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-strong) 100%) !important;
  color: #ffffff !important;
  font-size: 0.95rem !important;
  font-weight: 700 !important;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.18);
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease !important;
}

body.site-theme .ui_button:hover,
body.site-theme .catalog a.button:hover,
body.site-theme .catalog button.button:hover,
body.site-theme .catalog input.button:hover,
body.site-theme .mgbutton:hover {
  background: linear-gradient(135deg, var(--accent-strong) 0%, #8f0f13 100%) !important;
  transform: translateY(-1px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.2);
  opacity: 0.96;
}

body.site-theme .ui_button_module_wrapper .ui_button {
  width: 100%;
}

body.site-theme .ui_promo,
body.site-theme .ui_cta_0,
body.site-theme .ui_cta_1,
body.site-theme .ui_widget,
body.site-theme .rating-results-list,
body.site-theme article.ui_post,
body.site-theme .catalog div.product,
body.site-theme .catalog-page ul.products li.product,
body.site-theme .catalog-tabs,
body.site-theme .shop_table {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 20px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.06);
}

body.site-theme article.ui_post,
body.site-theme .ui_widget,
body.site-theme .rating-results-list,
body.site-theme .catalog div.product,
body.site-theme .catalog-page ul.products li.product {
  padding: 18px;
}

body.site-theme article.ui_post .entry-title a {
  color: var(--brand) !important;
}

body.site-theme article.ui_post:hover {
  transform: translateY(-2px);
}

body.site-theme .widget-title {
  margin-bottom: 10px;
  color: var(--brand) !important;
}

body.site-theme .ui_image,
body.site-theme .ui_post .ui_image_container,
body.site-theme .ui_gallery_image {
  overflow: hidden;
  border-radius: 20px;
}

body.site-theme .ui_image .ui_image_wrap,
body.site-theme .ui_post .entry-featured-image-url,
body.site-theme .ui_gallery_image {
  display: block;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.12);
  background: #ededed;
}

body.site-theme .ui_image img,
body.site-theme .ui_post a img,
body.site-theme .ui_gallery_image img,
body.site-theme .catalog ul.products li.product a img {
  width: 100%;
  height: clamp(220px, 26vw, 340px);
  object-fit: cover;
  object-position: center;
  filter: saturate(0.88) contrast(1.02);
  transition: transform 0.35s ease, filter 0.35s ease;
}

body.site-theme .ui_image:hover img,
body.site-theme .ui_gallery_item:hover img,
body.site-theme .catalog ul.products li.product:hover img {
  transform: scale(1.03);
  filter: saturate(0.95);
}

/* Legacy-Farbcodes aus exportierten Studio-Styles global auf Logo-Palette zwingen */
body.site-theme .mobile_menu_bar:before,
body.site-theme .mobile_menu_bar:after,
body.site-theme #top-menu li.current-menu-ancestor > a,
body.site-theme #top-menu li.current-menu-item > a,
body.site-theme #top-menu li.current_page_item > a,
body.site-theme .ui_sum,
body.site-theme .nav-single a,
body.site-theme .posted_in a,
body.site-theme .tagged_as a,
body.site-theme .ui_widget li a:hover,
body.site-theme .et_overlay:before,
body.site-theme .catalog .star-rating span:before {
  color: var(--accent) !important;
}

body.site-theme .nav li ul,
body.site-theme .et_mobile_menu,
body.site-theme .et-search-form,
body.site-theme blockquote,
body.site-theme .footer-widget li:before,
body.site-theme .ui_pricing li:before {
  border-color: var(--accent) !important;
}

body.site-theme #top-header,
body.site-theme #page-container #top-header,
body.site-theme.et_secondary_nav_enabled #page-container #top-header,
body.site-theme #et-secondary-nav li ul,
body.site-theme .et_fixed_nav #page-container .et-fixed-header#top-header {
  background-color: #ffffff !important;
}

body.site-theme .catalog .catalog-error,
body.site-theme .catalog .catalog-info,
body.site-theme .catalog .catalog-message,
body.site-theme .catalog-message,
body.site-theme .catalog-error,
body.site-theme .catalog-info {
  background: var(--accent) !important;
  color: #ffffff !important;
  border-color: var(--accent-strong) !important;
}

body.site-theme #privacy_layer_cookie_info_bar .privacy-layer-info-bar-container .privacy-layer-info-bar-content a.mgbutton,
body.site-theme #privacy_layer_cookie_info_bar .privacy-layer-info-bar-container .privacy-layer-info-bar-content button.mgbutton,
body.site-theme #privacy_layer_cookie_modal .privacy-layer-modal-content .privacy-layer-modal-footer-content .privacy-layer-button-holder a.mgbutton,
body.site-theme #privacy_layer_cookie_modal .privacy-layer-modal-content .privacy-layer-modal-footer-content .privacy-layer-button-holder button.mgbutton,
body.site-theme .privacy_cookie_settings_shortcode_content .gdpr-shr-button.button-green {
  background-color: var(--accent) !important;
  border-color: var(--accent) !important;
  color: #ffffff !important;
}

body.site-theme #privacy_layer_cookie_modal .privacy-layer-modal-content .privacy-layer-modal-close i,
body.site-theme #privacy_layer_cookie_modal .privacy-layer-modal-content .privacy-layer-modal-close span.gdpr-icon,
body.site-theme #privacy_layer_cookie_info_bar span[data-href] > u.change-settings-button {
  background-color: var(--accent) !important;
  color: #ffffff !important;
  border-color: var(--accent) !important;
}

body.site-theme .ui_gallery_items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  padding: 0 !important;
}

body.site-theme .ui_gallery_item {
  float: none !important;
  width: auto !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.06);
}

body.site-theme .et_overlay {
  border-radius: 20px;
}

body.site-theme .ui_divider_internal {
  border-top-color: rgba(0, 0, 0, 0.16) !important;
}

body.site-theme .ui_contact_form_container {
  padding: 22px;
  border-radius: 24px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(247, 249, 251, 0.92));
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
}

body.site-theme .ui_contact_main_title {
  margin-bottom: 12px;
  color: var(--brand) !important;
  font-size: clamp(1.35rem, 2vw, 1.8rem);
}

body.site-theme .ui_contact p input,
body.site-theme .ui_contact p textarea,
body.site-theme .catalog form .form-row input.input-text,
body.site-theme .catalog form .form-row textarea,
body.site-theme .catalog .quantity input.qty,
body.site-theme .orderby {
  background: #f7f7f7 !important;
  border: 1px solid var(--line) !important;
  border-radius: 14px !important;
  padding: 14px 16px !important;
  color: var(--text) !important;
}

body.site-theme .ui_contact p input:focus,
body.site-theme .ui_contact p textarea:focus,
body.site-theme .catalog form .form-row input.input-text:focus,
body.site-theme .catalog form .form-row textarea:focus {
  outline: 2px solid rgba(0, 0, 0, 0.16);
  border-color: rgba(0, 0, 0, 0.28) !important;
}

body.site-theme .ui_contact_field_options_list {
  display: grid;
  gap: 8px;
}

body.site-theme .ui_contact_field_radio label,
body.site-theme .ui_contact_field_checkbox label {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 10px 12px;
  border-radius: 14px;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

body.site-theme .ui_contact input[type="checkbox"],
body.site-theme .ui_contact input[type="radio"] {
  accent-color: var(--brand);
}


/* Studio-Footer, Statusmeldungen und Systemelemente visuell vereinheitlichen */
body.site-theme #main-footer {
  margin: 20px 0 0;
  padding: 18px 0 34px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  background: rgba(255, 255, 255, 0.66) !important;
}

body.site-theme #et-footer-nav,
body.site-theme #footer-bottom {
  background: transparent !important;
}

body.site-theme #footer-bottom {
  display: none;
}

body.site-theme #et-footer-nav .container,
body.site-theme #footer-bottom .container {
  width: min(1180px, calc(100% - 32px)) !important;
  max-width: none !important;
  padding: 0 !important;
  border: 0;
  border-radius: 0;
  background: transparent !important;
  box-shadow: none;
}

body.site-theme .bottom-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 18px;
  padding: 0 !important;
}

body.site-theme .bottom-nav li {
  padding-right: 0 !important;
}

body.site-theme .bottom-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 !important;
  border-radius: 0;
  color: #5f6c7a !important;
  font-weight: 600;
}

body.site-theme .bottom-nav a:hover,
body.site-theme #footer-info a:hover {
  color: var(--brand) !important;
  background: transparent !important;
  text-decoration: underline;
  opacity: 1;
}

body.site-theme #footer-info {
  color: #5a5a5a !important;
}

body.site-theme .catalog-message,
body.site-theme .catalog-error,
body.site-theme .catalog-info {
  color: var(--brand) !important;
  border-radius: 18px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: rgba(255, 255, 255, 0.86) !important;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.06);
}

body.site-theme .catalog-tabs ul.tabs,
body.site-theme .catalog-tabs .panel {
  background: transparent !important;
}

body.site-theme table,
body.site-theme .entry-content table {
  border-radius: 16px;
  overflow: hidden;
}

body.site-theme #privacy_layer_cookie_info_bar .privacy-layer-info-bar-container,
body.site-theme #privacy_layer_cookie_modal .privacy-layer-modal-content {
  border-radius: 22px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

/* Mobile Studio-Optimierung: Abstände, Menüverhalten und Breiten auf kleinen Displays */
@media (max-width: 980px) {
  body.site-theme #main-header .container.et_menu_container,
  body.site-theme #main-content .container,
  body.site-theme .ui_row,
  body.site-theme #et-footer-nav .container,
  body.site-theme #footer-bottom .container {
    width: min(100%, calc(100% - 24px)) !important;
  }

  body.site-theme #content-area {
    grid-template-columns: 1fr;
  }

  body.site-theme .et_header_style_left #et-top-navigation,
  body.site-theme #et-top-navigation {
    min-height: 78px;
  }

  body.site-theme .logo_container a::after {
    display: none;
  }

  body.site-theme .logo_container a::before {
    font-size: 0.9rem;
  }

  body.site-theme .et_mobile_menu {
    margin-top: 12px;
  }

  body.site-theme .ui_section_0 .ui_row_0.ui_equal_columns {
    grid-template-columns: 1fr;
  }

  body.site-theme .ui_section_0 .ui_row_0 > .ui_column:last-child,
  body.site-theme .ui_section_0 .ui_row_0 .ui_image img {
    min-height: 220px;
  }

  body.site-theme .layout--post .ui_row > .ui_column {
    margin-bottom: 14px;
  }
}

@media (max-width: 767px) {
  body.site-theme #et-secondary-nav {
    flex-direction: column;
    gap: 6px;
  }

  body.site-theme .logo_container::before {
    left: 100px;
    font-size: 0.84rem;
    max-width: calc(100vw - 156px);
  }

  body.site-theme .logo_container a {
    width: 96px;
    min-height: 92px;
  }

  body.site-theme #logo {
    width: 88px;
    max-width: 88px;
    max-height: 96px;
  }

  body.site-theme #et-secondary-nav li::after {
    display: none;
  }

  body.site-theme .ui_row {
    padding: 16px !important;
    border-radius: 18px;
  }

  body.site-theme .layout--post .ui_row > .ui_column {
    padding: 12px;
    border-radius: 16px;
  }

  body.site-theme .ui_image img,
  body.site-theme .ui_post a img,
  body.site-theme .ui_gallery_image img,
  body.site-theme .catalog ul.products li.product a img {
    height: 220px;
  }

  body.site-theme .bottom-nav {
    gap: 6px;
  }

  body.site-theme .ui_button,
  body.site-theme .catalog a.button,
  body.site-theme .catalog button.button,
  body.site-theme .catalog input.button {
    width: 100%;
  }
}


/* Zusätzliche Seitenhülle und Kontaktseite */
.site-main { background: #f7f8fb; }
.site-shell { padding-bottom: 2rem; }
.site-main-content { min-height: 40vh; }
.site-footer { margin-top: 0; }

.page-hero { padding: 5rem 0 2rem; background: linear-gradient(180deg, #f6f8fb 0%, #ffffff 100%); }
.page-hero-compact { padding-top: 4.5rem; }
.page-hero-inner { max-width: 860px; }

.contact-page-shell { background: #ffffff; }
.contact-page-grid { display: grid; grid-template-columns: 0.95fr 1.25fr; gap: 2rem; align-items: start; }
.contact-info-card,
.contact-form-card { background: #fff; border: 1px solid rgba(17,24,39,.08); border-radius: 24px; box-shadow: 0 18px 50px rgba(15,23,42,.08); padding: 2rem; }
.contact-info-card a,
.contact-form-card a { color: #144b83; }
.contact-note,
.contact-status-note { color: #596579; font-size: .95rem; }
.contact-form-standalone { display: grid; gap: 1rem; }
.contact-form-standalone .form-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 1rem; }
.contact-form-standalone label { display: grid; gap: .45rem; font-weight: 600; color: #172033; }
.contact-form-standalone input,
.contact-form-standalone select,
.contact-form-standalone textarea {
  width: 100%; border: 1px solid rgba(17,24,39,.14); border-radius: 14px; padding: .95rem 1rem;
  background: #fff; color: #172033; font: inherit;
}
.contact-form-standalone textarea { resize: vertical; min-height: 10rem; }
.checkbox-row { grid-template-columns: auto 1fr; align-items: start; gap: .75rem; font-weight: 500; }
.checkbox-row input { width: auto; margin-top: .2rem; }
.form-actions { padding-top: .25rem; }
.hp-field { position: absolute !important; left: -9999px !important; opacity: 0 !important; pointer-events: none !important; }

@media (max-width: 980px) {
  .contact-page-grid,
  .contact-form-standalone .form-grid { grid-template-columns: 1fr; }
}


/* ============================================================================
   2026-04-19 – Vertrauensvoller, bodenständiger Auftritt für 50+ Zielgruppe
   Fokus auf persönliche kostenlose Vor-Ort-Beratung
   ============================================================================ */
:root {
  --bg: #f3efe8;
  --surface: #fffdf9;
  --surface-soft: #f8f3ea;
  --text: #22201c;
  --muted: #625a50;
  --line: #ddd2c3;
  --brand: #3c2d20;
  --brand-strong: #2f241a;
  --accent: #8a2f2f;
  --accent-strong: #6f2323;
  --accent-soft: #f3e3de;
  --shadow: 0 16px 40px rgba(49, 37, 24, 0.10);
}
body.trust-site {
  font-family: "Trebuchet MS", "Segoe UI", Arial, sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #fbf7f0 0%, #f1ece4 100%);
}
body.trust-site h2,
body.trust-site h2,
body.trust-site h3,
body.trust-site .brand-copy strong,
body.trust-site .section-kicker,
body.trust-site .service-overview-copy h2,
body.trust-site .contact-stage-panel h2,
body.trust-site .page-hero :is(h1, h2) {
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: 0;
}
body.trust-site .topbar {
  background: #efe6d8;
  color: #4f4334;
  border-bottom-color: rgba(79, 67, 52, 0.12);
}
body.trust-site .site-header {
  background: linear-gradient(180deg, #fffdf8 0%, #f8f2e8 100%);
  border-bottom-color: rgba(93, 56, 36, 0.14);
  box-shadow: 0 6px 20px rgba(57, 42, 29, 0.05);
}
body.trust-site .nav-row {
  min-height: 112px;
}
body.trust-site .brand-copy small,
body.trust-site .site-nav a {
  color: #4a4036;
}
body.trust-site .nav-drop {
  border-top-color: #8a6a45;
  border-radius: 0 0 12px 12px;
}
body.trust-site .nav-cta,
body.trust-site .nav-cta:visited,
body.trust-site .btn,
body.trust-site .btn:visited,
body.trust-site .contact-stage-btn,
body.trust-site .contact-stage-btn:visited {
  background: linear-gradient(180deg, #8b6b46 0%, #6f5233 100%);
  color: #fff !important;
  border-radius: 12px;
  box-shadow: 0 10px 24px rgba(77, 52, 24, 0.18);
}
body.trust-site .btn-outline,
body.trust-site .btn-outline:visited {
  background: #fffdf8;
  border: 1px solid rgba(111, 82, 51, 0.3);
  color: #5a4327 !important;
}
body.trust-site .hero-split-copy,
body.trust-site .service-overview-item,
body.trust-site .step-card,
body.trust-site .trust-band-note,
body.trust-site .owner-panel-card,
body.trust-site .contact-stage-panel,
body.trust-site .contact-stage-col,
body.trust-site .contact-info-card,
body.trust-site .contact-form-card {
  background: #fffdf9;
  border: 1px solid rgba(102, 79, 53, 0.12);
  box-shadow: var(--shadow);
}
body.trust-site .hero-split {
  gap: 0;
  border-bottom: 1px solid rgba(102, 79, 53, 0.08);
}
body.trust-site .hero-split-copy {
  background: linear-gradient(180deg, #fbf7ef 0%, #f3ebdf 100%);
}
body.trust-site .hero-split-media::before { display:none; }
body.trust-site .hero-split-copy :is(h1, h2) {
  color: #2c241d;
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  line-height: 1.15;
}
body.trust-site .hero-split-copy .lead,
body.trust-site .hero-split-copy .lead-light,
body.trust-site .hero-split-copy p {
  color: #4e453c;
}
body.trust-site .section-kicker,
body.trust-site .section-kicker.light {
  color: #7b5f3e !important;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.trust-band,
.steps-panel,
.quote-band,
.company-owner-panel { padding: clamp(54px, 7vw, 88px) 0; }
.trust-band-grid,
.owner-panel-grid,
.steps-grid,
.service-overview-grid-2 {
  width: var(--container);
  margin: 0 auto;
}
.trust-band-grid,
.owner-panel-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, .85fr);
  gap: 28px;
  align-items: start;
}
.trust-band-copy h2,
.section-heading h2,
.owner-panel-copy h2,
.quote-band-inner p,
.company-page-hero :is(h1, h2) {
  font-size: clamp(1.9rem, 3vw, 2.9rem);
  line-height: 1.22;
  margin: 0 0 18px;
  color: #2e241c;
}
.trust-band-copy p,
.owner-panel-copy p,
.quote-band-inner p,
.service-intro { color: #554c42; }
.trust-band-note,
.owner-panel-card {
  border-radius: 24px;
  padding: 28px 26px;
}
.trust-band-note h3,
.owner-panel-card h3 { margin-top: 0; font-size: 1.45rem; color: #382a1d; }
.trust-band-note ul,
.owner-panel-card ul {
  margin: 0;
  padding-left: 1.1rem;
  color: #4e463c;
}
.section-heading { max-width: 860px; margin: 0 auto 26px; text-align: center; }
.service-overview-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}
body.trust-site .service-overview-item { min-height: 100%; }
.service-intro {
  margin: 0 0 14px;
  font-size: 1rem;
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.step-card {
  border-radius: 22px;
  padding: 28px 24px;
}
.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #efe2cf;
  color: #6d5032;
  font-weight: 800;
  margin-bottom: 14px;
}
.step-card h3 { margin: 0 0 10px; color: #35281d; font-size: 1.3rem; }
.step-card p { margin: 0; color: #544b42; }
.company-page-hero {
  background: linear-gradient(180deg, #f6efe2 0%, #fffdf9 100%);
  border-bottom: 1px solid rgba(102,79,53,0.10);
}
.quote-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: linear-gradient(180deg, #f7efe3 0%, #fdfbf6 100%);
  border: 1px solid rgba(102,79,53,0.12);
  box-shadow: var(--shadow);
  border-radius: 26px;
  padding: 28px;
}
.quote-band-inner p { margin: 0; max-width: 880px; }
body.trust-site .site-footer {
  background: #2f241a;
  color: #f1e8dc;
}
.footer-row-extended {
  display: grid;
  grid-template-columns: minmax(0,1fr) auto auto;
  gap: 24px;
  align-items: center;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.footer-contact strong { color: #fff7eb; }
.footer-contact a,
body.trust-site .footer-links a { color: #f3ebdf; }
body.trust-site .footer-links a:hover,
body.trust-site .footer-contact a:hover { color: #ffffff; }
body.trust-site .page-hero { background: linear-gradient(180deg, #f7f0e4 0%, #fffdf9 100%); }
body.trust-site .contact-note { color: #5a4f42; }
@media (max-width: 980px) {
  .trust-band-grid,
  .owner-panel-grid,
  .steps-grid,
  .service-overview-grid-2,
  .footer-row-extended,
  .quote-band-inner {
    grid-template-columns: 1fr;
  }
  .quote-band-inner {
    display: grid;
  }
}
@media (max-width: 720px) {
  .service-overview-grid-2,
  .steps-grid { grid-template-columns: 1fr; }
}


/* Runde 6: Footer-Kontrast und Lesbarkeit verbessern */
body.trust-site .site-footer {
  background: linear-gradient(90deg, #2c1d10 0%, #3a2718 50%, #2c1d10 100%);
  color: #f6efe7;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
body.trust-site .site-footer .brand {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  text-decoration: none;
}
body.trust-site .site-footer .brand-copy strong {
  color: #fff6ea;
  font-size: 1.02rem;
}
body.trust-site .site-footer .brand-copy small {
  color: rgba(255, 244, 230, 0.78);
}
body.trust-site .footer-row-extended {
  grid-template-columns: minmax(0, 1.25fr) minmax(240px, 0.9fr) auto;
  gap: 32px;
  padding: 34px 0 40px;
}
body.trust-site .footer-contact,
body.trust-site .footer-links {
  color: #f6efe7;
}
body.trust-site .footer-contact strong {
  color: #fff7eb;
}
body.trust-site .footer-contact a,
body.trust-site .footer-links a {
  color: #f3ebdf;
  text-decoration: none;
  opacity: 1;
}
body.trust-site .footer-contact a:hover,
body.trust-site .footer-links a:hover {
  color: #ffffff;
  text-decoration: underline;
}
body.trust-site .footer-links {
  justify-content: flex-end;
  row-gap: 10px;
}
@media (max-width: 980px) {
  body.trust-site .footer-row-extended {
    gap: 18px;
    padding: 28px 0 32px;
  }
  body.trust-site .footer-links {
    justify-content: flex-start;
  }
}

/* ============================================================================
   Runde 11: Logo-Palette H&N Bautenschutz Franken
   Rot aus dem Logo (#cf0a11), Schwarz/Anthrazit und ruhige helle Grauflaechen.
   ============================================================================ */
:root {
  --bg: #f5f5f6;
  --surface: #ffffff;
  --surface-soft: #f3f4f5;
  --surface-muted: #eceeef;
  --text: #1d1d1b;
  --muted: #55585c;
  --line: #dedfe1;
  --brand: #1d1d1b;
  --brand-strong: #0f0f0e;
  --accent: #cf0a11;
  --accent-strong: #9b070c;
  --accent-soft: #fbe7e8;
  --shadow: 0 14px 34px rgba(29, 29, 27, 0.07);
}

body.trust-site,
body.site-theme,
body.home-landing {
  font-family: "Avenir Next", "Segoe UI", "Helvetica Neue", Arial, sans-serif !important;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(207, 10, 17, 0.06), transparent 0 24%),
    linear-gradient(180deg, #ffffff 0%, #f5f5f6 100%) !important;
}

body.trust-site h2,
body.trust-site h3,
body.trust-site h4,
body.trust-site h5,
body.trust-site h6,
body.trust-site .brand-copy strong,
body.trust-site .section-kicker,
body.trust-site .service-overview-copy h2,
body.trust-site .contact-stage-panel h2,
body.trust-site .page-hero :is(h1, h2) {
  font-family: "Avenir Next", "Segoe UI", "Helvetica Neue", Arial, sans-serif !important;
  color: var(--brand) !important;
  letter-spacing: -0.02em;
}

body.trust-site p,
body.trust-site li,
body.trust-site label,
body.site-theme p,
body.site-theme li,
body.site-theme label {
  color: var(--muted);
}

body.trust-site .topbar,
body.home-landing .topbar,
body.site-theme #top-header,
body.site-theme #page-container #top-header,
body.site-theme.et_secondary_nav_enabled #page-container #top-header {
  background: #ffffff !important;
  color: #4d5054 !important;
  border-bottom: 1px solid rgba(29, 29, 27, 0.07) !important;
}

body.trust-site .site-header,
body.home-landing .site-header,
body.site-theme #main-header {
  background: rgba(255, 255, 255, 0.96) !important;
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(207, 10, 17, 0.12) !important;
  box-shadow: 0 10px 28px rgba(29, 29, 27, 0.05) !important;
}

body.trust-site .brand-copy small,
body.trust-site .site-nav a,
body.site-theme #top-menu > li > a {
  color: #252527 !important;
}

body.trust-site .site-nav a:hover,
body.trust-site .site-nav a:focus-visible,
body.trust-site .site-nav a.is-active,
body.site-theme #top-menu li.current-menu-item > a,
body.site-theme #top-menu li.current_page_item > a,
body.site-theme #top-menu li > a:hover,
body.site-theme #top-menu li > a:focus-visible,
body.trust-site a:hover,
body.trust-site a:focus-visible {
  color: var(--accent) !important;
}

body.home-landing .site-nav a:hover,
body.home-landing .site-nav a:focus-visible,
body.home-landing .site-nav a.is-active {
  background: rgba(207, 10, 17, 0.08) !important;
}

body.trust-site .nav-drop,
body.site-theme .nav li ul,
body.site-theme #top-menu li ul.sub-menu,
body.site-theme .et_mobile_menu {
  background: #ffffff !important;
  border: 1px solid rgba(29, 29, 27, 0.1) !important;
  border-top: 3px solid var(--accent) !important;
  box-shadow: 0 18px 40px rgba(29, 29, 27, 0.11) !important;
}

body.trust-site .nav-drop li a:hover,
body.trust-site .nav-drop li a:focus-visible,
body.site-theme .nav li ul li a:hover,
body.site-theme .et_mobile_menu li a:hover {
  background: rgba(207, 10, 17, 0.07) !important;
  color: var(--accent) !important;
}

body.trust-site .nav-cta,
body.trust-site .nav-cta:visited,
body.trust-site .btn,
body.trust-site .btn:visited,
body.trust-site .contact-stage-btn,
body.trust-site .contact-stage-btn:visited,
body.site-theme .ui_button,
body.site-theme .catalog a.button,
body.site-theme .catalog button.button,
body.site-theme .catalog input.button,
body.site-theme .mgbutton,
body.site-theme .ui_contact_submit,
body.site-theme .et_submit_button {
  background: var(--accent) !important;
  background-color: var(--accent) !important;
  border-color: var(--accent) !important;
  color: #ffffff !important;
  border-radius: 999px !important;
  box-shadow: 0 12px 26px rgba(207, 10, 17, 0.18) !important;
}

body.trust-site .nav-cta:hover,
body.trust-site .nav-cta:focus-visible,
body.trust-site .btn:hover,
body.trust-site .btn:focus-visible,
body.trust-site .contact-stage-btn:hover,
body.trust-site .contact-stage-btn:focus-visible,
body.site-theme .ui_button:hover,
body.site-theme .catalog a.button:hover,
body.site-theme .catalog button.button:hover,
body.site-theme .catalog input.button:hover,
body.site-theme .mgbutton:hover,
body.site-theme .ui_contact_submit:hover,
body.site-theme .et_submit_button:hover {
  background: var(--accent-strong) !important;
  background-color: var(--accent-strong) !important;
  border-color: var(--accent-strong) !important;
  box-shadow: 0 14px 30px rgba(155, 7, 12, 0.2) !important;
}

body.trust-site .btn-outline,
body.trust-site .btn-outline:visited,
body.site-theme a.btn-outline,
body.site-theme a.btn-outline:visited {
  background: #ffffff !important;
  border: 1px solid rgba(29, 29, 27, 0.18) !important;
  color: var(--brand) !important;
  box-shadow: none !important;
}

body.trust-site .btn-outline:hover,
body.trust-site .btn-outline:focus-visible,
body.site-theme a.btn-outline:hover,
body.site-theme a.btn-outline:focus-visible {
  background: var(--surface-soft) !important;
  border-color: var(--accent) !important;
  color: var(--accent) !important;
}

body.trust-site .hero-split,
body.trust-site .hero-split-copy,
body.home-landing .hero-split,
body.home-landing .hero-split-copy {
  background: linear-gradient(180deg, #ffffff 0%, #f4f5f6 100%) !important;
}

body.trust-site .hero-split {
  border-bottom: 1px solid rgba(29, 29, 27, 0.08) !important;
}

body.trust-site .hero-split-copy :is(h1, h2),
body.home-landing .hero-split-copy :is(h1, h2),
body.trust-site .trust-band-copy h2,
body.trust-site .section-heading h2,
body.trust-site .owner-panel-copy h2,
body.trust-site .company-page-hero :is(h1, h2),
body.trust-site .contact-stage-panel h2 {
  color: var(--brand) !important;
}

body.trust-site .hero-split-copy .lead,
body.trust-site .hero-split-copy .lead-light,
body.trust-site .hero-split-copy p,
body.home-landing .lead-light,
body.trust-site .trust-band-copy p,
body.trust-site .owner-panel-copy p,
body.trust-site .service-intro,
body.trust-site .step-card p,
body.trust-site .contact-stage-col,
body.trust-site .contact-stage-col p,
body.trust-site .contact-note,
body.trust-site .contact-status-note {
  color: var(--muted) !important;
}

body.trust-site .section-kicker,
body.trust-site .section-kicker.light,
body.home-landing .hero-split .section-kicker.light,
body.site-theme .mobile_menu_bar:before,
body.site-theme .mobile_menu_bar:after,
body.site-theme #et_search_icon:before,
body.site-theme .posted_in a,
body.site-theme .tagged_as a,
body.site-theme .nav-single a {
  color: var(--accent) !important;
}

body.trust-site .hero-facts article,
body.trust-site .service-overview-item,
body.trust-site .step-card,
body.trust-site .trust-band-note,
body.trust-site .owner-panel-card,
body.trust-site .contact-stage-panel,
body.trust-site .contact-stage-col,
body.trust-site .contact-info-card,
body.trust-site .contact-form-card,
body.site-theme .ui_row,
body.site-theme .ui_promo,
body.site-theme .ui_cta_0,
body.site-theme .ui_cta_1,
body.site-theme .ui_widget,
body.site-theme article.ui_post,
body.site-theme .catalog div.product,
body.site-theme .catalog-page ul.products li.product,
body.site-theme .catalog-tabs,
body.site-theme .shop_table,
.service-card,
.reference-card,
.timeline-card,
.contact-form {
  background: linear-gradient(180deg, #ffffff 0%, #f7f8f9 100%) !important;
  border: 1px solid rgba(29, 29, 27, 0.09) !important;
  box-shadow: 0 14px 32px rgba(29, 29, 27, 0.06) !important;
}

body.trust-site .trust-band,
body.trust-site .steps-panel,
body.trust-site .quote-band,
body.trust-site .company-owner-panel,
body.trust-site .service-overview,
body.trust-site .contact-stage,
body.trust-site .page-hero,
body.trust-site .site-main,
body.trust-site .contact-page-shell,
body.trust-site .company-page-hero,
body.site-theme .ui_section {
  background: transparent !important;
}

body.trust-site .consulting-panel-copy,
body.trust-site .experience-panel-copy,
body.home-landing .consulting-panel-copy,
body.home-landing .experience-panel-copy {
  background: linear-gradient(180deg, #ffffff 0%, #f4f5f6 100%) !important;
}

body.home-landing.trust-site .service-overview {
  background:
    radial-gradient(ellipse at 50% 48%, rgba(214, 190, 164, 0.23) 0%, rgba(249, 244, 238, 0.54) 34%, rgba(255, 255, 255, 0) 72%),
    linear-gradient(180deg, #ffffff 0%, #f7f8f9 100%) !important;
}

body.trust-site .consulting-panel-copy h2,
body.trust-site .experience-panel-copy h2,
body.trust-site .contact-stage-col h3,
body.trust-site .step-card h3,
body.trust-site .trust-band-note h3,
body.trust-site .owner-panel-card h3 {
  color: var(--brand) !important;
}

body.trust-site .experience-divider,
body.home-landing .experience-divider,
body.site-theme blockquote {
  border-color: var(--accent) !important;
}

body.trust-site .experience-divider,
body.home-landing .experience-divider,
body.site-theme .ui_row::before,
body.site-theme .ui_section_0 .ui_row_0.ui_equal_columns::before {
  background: var(--accent) !important;
}

body.trust-site .step-number,
body.trust-site .contact-stage-feature-icon,
.visual-list span,
.icon-badge,
.timeline-card span {
  background: var(--accent) !important;
  color: #ffffff !important;
}

body.trust-site .contact-stage-mail,
body.trust-site .contact-info-card a,
body.trust-site .contact-form-card a,
body.trust-site .service-overview-links a:hover,
body.trust-site .service-overview-links a:focus-visible,
body.trust-site .service-overview-item:hover .service-overview-copy h2 {
  color: var(--accent) !important;
}

body.trust-site input,
body.trust-site select,
body.trust-site textarea,
body.site-theme .ui_contact p input,
body.site-theme .ui_contact p textarea,
body.site-theme .catalog form .form-row input.input-text,
body.site-theme .catalog form .form-row textarea,
body.site-theme .orderby {
  background: #ffffff !important;
  border: 1px solid rgba(29, 29, 27, 0.16) !important;
  color: var(--text) !important;
}

body.trust-site input:focus,
body.trust-site select:focus,
body.trust-site textarea:focus,
body.site-theme .ui_contact p input:focus,
body.site-theme .ui_contact p textarea:focus {
  outline: 2px solid rgba(207, 10, 17, 0.18) !important;
  border-color: var(--accent) !important;
}

body.trust-site input[type="checkbox"],
body.trust-site input[type="radio"],
body.site-theme .ui_contact input[type="checkbox"],
body.site-theme .ui_contact input[type="radio"] {
  accent-color: var(--accent) !important;
}

body.trust-site .contact-stage-link {
  border-color: var(--accent) !important;
  color: var(--accent) !important;
}

body.trust-site .section-soft,
body.trust-site .quote-band-inner {
  background: linear-gradient(180deg, #ffffff 0%, #f3f4f5 100%) !important;
  border-color: rgba(29, 29, 27, 0.09) !important;
}

body.trust-site .surface-one,
body.trust-site .surface-two,
body.trust-site .surface-three {
  background:
    linear-gradient(135deg, rgba(29, 29, 27, 0.82), rgba(29, 29, 27, 0.24)),
    linear-gradient(45deg, #d7d9dc, #f4f5f6) !important;
}

body.trust-site .service-overview-thumb {
  box-shadow: 0 8px 20px rgba(29, 29, 27, 0.08) !important;
  filter: saturate(0.78) contrast(1.04);
}

body.trust-site .site-footer,
body.site-theme #main-footer,
body.site-theme #footer-bottom,
body.site-theme .layout--footer,
body.site-theme footer.layout-core {
  background: #151515 !important;
  color: rgba(255, 255, 255, 0.78) !important;
  border-top: 3px solid var(--accent) !important;
}

body.trust-site .site-footer .brand-copy strong,
body.trust-site .footer-contact strong,
body.site-theme #main-footer h2,
body.site-theme #main-footer h3,
body.site-theme #main-footer h4,
body.site-theme #main-footer h5,
body.site-theme #main-footer h6 {
  color: #ffffff !important;
}

body.trust-site .site-footer .brand-copy small,
body.trust-site .site-footer p,
body.trust-site .footer-contact,
body.trust-site .footer-contact a,
body.trust-site .footer-links a {
  color: rgba(255, 255, 255, 0.76) !important;
}

body.trust-site .footer-contact a:hover,
body.trust-site .footer-links a:hover,
body.site-theme #main-footer a:hover,
body.site-theme #footer-bottom a:hover,
body.site-theme .footer-widget a:hover {
  color: #ff4a53 !important;
}

body.trust-site .site-nav,
body.home-landing .site-nav {
  gap: 4px;
}

body.trust-site .site-nav a,
body.home-landing .site-nav a {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  font-size: 0.88rem;
  letter-spacing: 0;
}

body.trust-site .nav-cta,
body.home-landing .nav-cta {
  flex: 0 0 auto;
  justify-self: end;
  width: max-content;
  min-width: max-content;
  padding-left: 1.55rem;
  padding-right: 1.55rem;
  overflow: visible;
}

body.trust-site .site-header .container.nav-row,
body.home-landing .site-header .container.nav-row {
  width: min(1600px, calc(100% - 28px));
  grid-template-columns: minmax(250px, auto) minmax(0, 1fr) auto;
  gap: 14px;
}

body.trust-site .brand,
body.home-landing .brand {
  gap: 12px;
}

body.trust-site .brand-badge,
body.home-landing .brand-badge {
  width: 104px;
  height: 66px;
  flex-basis: 104px;
}

body.trust-site .brand-copy strong,
body.home-landing .brand-copy strong {
  font-size: 0.96rem;
}

body.trust-site .brand-copy small,
body.home-landing .brand-copy small {
  font-size: 0.72rem;
}

body.trust-site .nav-cta,
body.home-landing .nav-cta {
  min-height: 46px;
  padding-left: 1.35rem;
  padding-right: 1.35rem;
  font-size: 0.92rem;
}

@media (max-width: 1440px) {
  body.trust-site .site-header .container.nav-row,
  body.home-landing .site-header .container.nav-row {
    width: min(100%, calc(100% - 20px));
    grid-template-columns: minmax(210px, auto) minmax(0, 1fr) auto;
    gap: 10px;
  }

  body.trust-site .brand-badge,
  body.home-landing .brand-badge {
    width: 86px;
    height: 56px;
    flex-basis: 86px;
  }

  body.trust-site .brand-copy strong,
  body.home-landing .brand-copy strong {
    font-size: 0.88rem;
  }

  body.trust-site .brand-copy small,
  body.home-landing .brand-copy small {
    display: none;
  }

  body.trust-site .site-nav a,
  body.home-landing .site-nav a {
    padding-left: 0.38rem;
    padding-right: 0.38rem;
    font-size: 0.82rem;
  }

  body.trust-site .nav-cta,
  body.home-landing .nav-cta {
    padding-left: 1rem;
    padding-right: 1rem;
    font-size: 0.86rem;
  }
}

@media (max-width: 1220px) {
  body.trust-site .nav-cta,
  body.home-landing .nav-cta {
    display: none;
  }
}

body.home-landing .service-overview-grid-2 .service-overview-item {
  align-self: start;
}

body.trust-site .nav-cta,
body.trust-site .nav-cta:visited,
body.trust-site .btn,
body.trust-site .btn:visited,
body.trust-site .contact-stage-btn,
body.trust-site .contact-stage-btn:visited,
body.home-landing .nav-cta,
body.home-landing .nav-cta:visited {
  border-radius: 8px !important;
  min-height: 46px;
  padding: 0.9rem 1.35rem;
  font-weight: 800;
  line-height: 1.2;
}

body.trust-site .btn-outline,
body.trust-site .btn-outline:visited,
body.site-theme a.btn-outline,
body.site-theme a.btn-outline:visited {
  border-radius: 8px !important;
  background: #ffffff !important;
  border: 1px solid rgba(29, 29, 27, 0.24) !important;
  color: #171717 !important;
  font-weight: 800;
}

body.trust-site .btn-outline:hover,
body.trust-site .btn-outline:focus-visible,
body.site-theme a.btn-outline:hover,
body.site-theme a.btn-outline:focus-visible {
  background: #fff4f4 !important;
  border-color: var(--accent) !important;
  color: var(--accent) !important;
}

body.home-landing .site-footer {
  background: #ffffff !important;
  color: #4b5563 !important;
  border-top: 3px solid var(--accent) !important;
  border-bottom: 1px solid rgba(17, 17, 17, 0.08) !important;
}

body.home-landing .site-footer .footer-row-extended {
  grid-template-columns: minmax(260px, 1fr) minmax(240px, 0.8fr) auto;
  align-items: center;
}

body.home-landing .site-footer .brand-copy strong,
body.home-landing .site-footer .footer-contact strong {
  color: #111111 !important;
}

body.home-landing .site-footer .brand-copy small,
body.home-landing .site-footer .footer-contact,
body.home-landing .site-footer .footer-contact a,
body.home-landing .site-footer .footer-links a {
  color: #4b5563 !important;
}

body.home-landing .site-footer .footer-contact a:hover,
body.home-landing .site-footer .footer-links a:hover {
  color: var(--accent) !important;
}

body.home-landing .site-footer .footer-links {
  justify-content: flex-end;
  gap: 0.8rem 1rem;
}

/* Kompakter Unterseiten-Footer */
body.site-page.trust-site .site-footer {
  margin-top: 0 !important;
  padding: 0.85rem 0 !important;
  background: #ffffff !important;
  border-top: 2px solid var(--accent) !important;
  box-shadow: none !important;
}

body.site-page.trust-site .site-footer .footer-row-extended {
  width: min(1120px, calc(100% - 32px)) !important;
  display: grid !important;
  grid-template-columns: minmax(220px, 1fr) minmax(220px, 0.8fr) auto !important;
  align-items: center !important;
  gap: clamp(1rem, 3vw, 2.6rem) !important;
  margin: 0 auto !important;
  padding: 0 !important;
}

body.site-page.trust-site .site-footer .brand {
  gap: 0.72rem !important;
}

body.site-page.trust-site .site-footer .brand-badge {
  width: 58px !important;
  height: 40px !important;
  flex: 0 0 58px !important;
  background-size: contain !important;
}

body.site-page.trust-site .site-footer .brand-copy strong,
body.site-page.trust-site .site-footer .footer-contact strong {
  color: #111111 !important;
  font-size: 0.86rem !important;
  line-height: 1.18 !important;
  font-weight: 850 !important;
}

body.site-page.trust-site .site-footer .brand-copy small,
body.site-page.trust-site .site-footer .footer-contact,
body.site-page.trust-site .site-footer .footer-contact a,
body.site-page.trust-site .site-footer .footer-links a {
  color: #30425a !important;
  font-size: 0.82rem !important;
  line-height: 1.3 !important;
}

body.site-page.trust-site .site-footer .footer-contact {
  gap: 0.22rem !important;
}

body.site-page.trust-site .site-footer .footer-links {
  justify-content: flex-end !important;
  gap: 0.55rem 0.9rem !important;
}

@media (max-width: 980px) {
  body.home-landing .service-overview-item {
    grid-template-columns: 92px 1fr;
  }

}

body.home-landing .service-overview-grid-2 .service-overview-links {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transform: translateY(-6px);
  transition:
    max-height 0.55s ease,
    opacity 0.32s ease,
    transform 0.32s ease,
    margin-top 0.32s ease;
  margin-top: 0;
}

body.home-landing .service-overview-grid-2 .service-overview-item:hover .service-overview-links,
body.home-landing .service-overview-grid-2 .service-overview-item:focus-within .service-overview-links {
  max-height: 520px;
  opacity: 1;
  transform: translateY(0);
  margin-top: 8px;
}

body.home-landing .service-overview-grid-2 .service-overview-item {
  transition: transform 0.28s ease, background 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

body.home-landing .service-overview-grid-2 .service-overview-item,
body.trust-site .service-overview-grid-2 .service-overview-item {
  border: 0 !important;
  box-shadow: none !important;
  background: transparent !important;
}

/* Modernes CI-Service-System auf der Startseite */
body.home-landing .site-nav {
  gap: 16px;
}

body.home-landing .nav-drop {
  max-height: min(72vh, 620px);
  overflow-y: auto;
}

.service-system {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, #ffffff 0%, #f4f5f7 46%, #ffffff 100%);
  padding: clamp(70px, 8vw, 115px) 0;
}

.service-system::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(17, 17, 17, 0.04) 1px, transparent 1px),
    linear-gradient(180deg, rgba(17, 17, 17, 0.04) 1px, transparent 1px);
  background-size: 82px 82px;
  mask-image: linear-gradient(180deg, transparent 0%, #000 12%, #000 78%, transparent 100%);
  pointer-events: none;
}

.service-system > .container {
  position: relative;
  z-index: 1;
}

.service-system-head {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.52fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: end;
  margin-bottom: clamp(38px, 6vw, 76px);
}

.service-system-head h2 {
  margin: 0;
  color: #111;
  font-size: clamp(2rem, 4vw, 4.2rem);
  line-height: 1.04;
  letter-spacing: 0;
  max-width: 920px;
}

.service-system-head p:last-child {
  margin: 0;
  color: #4d525b;
  line-height: 1.78;
  font-size: 1rem;
}

.category-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 0.48fr) minmax(0, 0.52fr);
  gap: 0;
  margin: 0 0 clamp(34px, 5vw, 70px);
  background: #ffffff;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(17, 17, 17, 0.09);
}

.category-section::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 7px;
  background: var(--accent);
  z-index: 3;
}

.category-section-featured {
  grid-template-columns: minmax(320px, 0.56fr) minmax(0, 0.44fr);
}

.category-dark {
  background: #151515;
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.2);
}

.category-slim {
  grid-template-columns: minmax(260px, 0.38fr) minmax(0, 0.62fr);
}

.category-visual {
  min-height: clamp(320px, 38vw, 520px);
  background: #111;
}

.category-visual img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  filter: saturate(1.02) contrast(1.03);
}

.category-copy {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2rem, 4vw, 4.2rem);
  background:
    radial-gradient(circle at 100% 0%, rgba(225, 6, 19, 0.11), transparent 0 34%),
    #ffffff;
}

.category-dark .category-copy {
  background:
    radial-gradient(circle at 100% 0%, rgba(225, 6, 19, 0.25), transparent 0 34%),
    linear-gradient(135deg, #171717 0%, #0f0f10 100%);
}

.category-label {
  display: inline-flex;
  width: fit-content;
  margin: 0 0 1rem;
  padding: 0.45rem 0.7rem;
  background: var(--accent);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.category-copy h2 {
  margin: 0;
  color: #111;
  font-size: clamp(1.9rem, 3.5vw, 3.6rem);
  line-height: 1.04;
  letter-spacing: 0;
}

.category-copy p {
  max-width: 35rem;
  margin: 1.25rem 0 0;
  color: #4d525b;
  line-height: 1.78;
}

.category-dark .category-copy h2,
.category-dark .category-copy p {
  color: #fff !important;
}

.category-dark .category-copy p {
  color: rgba(255, 255, 255, 0.82) !important;
}

.service-card-grid {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: rgba(17, 17, 17, 0.09);
}

.service-card-grid-compact {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-card-grid-small {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-card {
  position: relative;
  display: grid;
  grid-template-rows: 190px auto auto 1fr auto;
  min-height: 430px;
  padding: 0 1.35rem 1.45rem;
  overflow: hidden;
  background: #fff;
  color: #111;
  isolation: isolate;
  transition: transform 0.28s ease, box-shadow 0.28s ease, background 0.28s ease;
}

.service-card::before {
  content: "";
  position: absolute;
  left: 1.35rem;
  right: auto;
  top: 210px;
  width: 54px;
  height: 3px;
  background: var(--accent);
  z-index: 2;
  transition: width 0.28s ease;
}

.service-card img {
  width: calc(100% + 2.7rem);
  height: 190px;
  margin: 0 -1.35rem 1.4rem;
  object-fit: cover;
  background: #111;
  transition: transform 0.42s ease, filter 0.42s ease;
}

.service-card span {
  margin-top: 0.25rem;
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.service-card h3 {
  margin: 0.35rem 0 0.5rem;
  color: #111;
  font-size: clamp(1.1rem, 1.8vw, 1.45rem);
  line-height: 1.16;
  letter-spacing: 0;
}

.service-card p {
  margin: 0;
  color: #555d66;
  font-size: 0.95rem;
  line-height: 1.65;
}

.service-card strong {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-top: 1.2rem;
  padding: 0.72rem 1rem;
  background: #e10613;
  color: #fff;
  font-size: 0.86rem;
  line-height: 1;
  border-radius: 999px;
  box-shadow: 0 12px 26px rgba(225, 6, 19, 0.22);
}

.service-card strong::after {
  content: "";
  width: 0.42rem;
  height: 0.42rem;
  margin-left: 0.55rem;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
}

.service-card:hover,
.service-card:focus-visible {
  z-index: 3;
  transform: translateY(-7px);
  box-shadow: 0 28px 65px rgba(17, 17, 17, 0.16);
}

.service-card:hover::before,
.service-card:focus-visible::before {
  width: 88px;
}

.service-card:hover img,
.service-card:focus-visible img {
  transform: scale(1.045);
  filter: saturate(1.08) contrast(1.05);
}

.category-dark .service-card {
  background: #1f2023;
  color: #fff;
}

.category-dark .service-card h3 {
  color: #fff;
}

.category-dark .service-card p {
  color: rgba(255, 255, 255, 0.76);
}

.service-card-request {
  grid-template-rows: auto auto 1fr auto;
  padding-top: 2rem;
  background:
    radial-gradient(circle at 100% 0%, rgba(225, 6, 19, 0.18), transparent 0 42%),
    #141414 !important;
  color: #fff;
}

.service-card-request::before {
  top: 1.5rem;
}

.service-card-request h3 {
  color: #fff;
}

.service-card-request p {
  color: rgba(255, 255, 255, 0.78);
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1220px) {
  body.home-landing .site-nav {
    gap: 12px;
  }

  body.home-landing .site-nav a {
    font-size: 0.84rem;
  }
}

@media (max-width: 980px) {
  .service-system-head,
  .category-section,
  .category-section-featured,
  .category-slim {
    grid-template-columns: 1fr;
  }

  .category-visual {
    min-height: 300px;
  }

  .service-card-grid,
  .service-card-grid-compact,
  .service-card-grid-small {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .service-system {
    padding: 54px 0;
  }

  .category-copy {
    padding: 1.6rem;
  }

  .service-card-grid,
  .service-card-grid-compact,
  .service-card-grid-small {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 0;
    grid-template-rows: 210px auto auto 1fr auto;
  }

  .service-card img {
    height: 210px;
  }

  .service-card::before {
    top: 230px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal-on-scroll,
  .service-card,
  .service-card img {
    transition: none;
  }
}

/* 2026-05 homepage scale pass */
body.home-landing.trust-site .hero-split {
  min-height: clamp(430px, 40vw, 590px);
}

body.home-landing.trust-site .hero-split-copy {
  padding: clamp(1.7rem, 3.6vw, 3.6rem);
}

body.home-landing.trust-site .hero-split-copy :is(h1, h2) {
  max-width: 15ch;
  font-size: clamp(1.85rem, 2.8vw, 3.1rem);
  line-height: 1.1;
  letter-spacing: 0;
}

body.home-landing.trust-site .hero-split-copy .lead {
  max-width: 40rem;
  font-size: clamp(.96rem, 1vw, 1.04rem);
  line-height: 1.65;
}

body.home-landing.trust-site .hero-facts {
  gap: .8rem;
  margin-top: 1.1rem;
}

body.home-landing.trust-site .hero-facts article {
  padding: .85rem .95rem;
  border-radius: 10px;
}

body.home-landing.trust-site .service-overview {
  padding-top: clamp(2rem, 4vw, 3.2rem);
}

body.home-landing.trust-site .service-overview-item {
  padding: clamp(.95rem, 1.8vw, 1.35rem);
}

body.home-landing.trust-site .service-overview-thumb {
  width: 96px;
  height: 96px;
  filter: none;
  object-fit: contain;
  padding: 10px;
  background: #fff;
}

body.home-landing.trust-site .service-overview-grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1rem, 2.1vw, 1.6rem);
}

@media (max-width: 900px) {
  body.home-landing.trust-site .hero-split {
    min-height: 0;
  }

  body.home-landing.trust-site .hero-split-media img {
    height: 260px;
  }

  body.home-landing.trust-site .service-overview-grid-2 {
    grid-template-columns: 1fr;
  }
}

/* Startseite: beide Hero-Buttons rot, eckig und gut lesbar darstellen. */
body.home-landing.trust-site .hero-split-copy .hero-actions .btn,
body.home-landing.trust-site .hero-split-copy .hero-actions .btn:visited,
body.home-landing.trust-site .hero-split-copy .hero-actions .btn-outline,
body.home-landing.trust-site .hero-split-copy .hero-actions .btn-outline:visited {
  background: #e10613 !important;
  border: 1px solid #e10613 !important;
  border-radius: 6px !important;
  color: #ffffff !important;
  font-weight: 800 !important;
  min-height: 48px;
  padding: 0.9rem 1.35rem;
  text-decoration: none !important;
}

/* Startseite: Hover-Zustand fuer beide Hero-Buttons dunkelrot halten. */
body.home-landing.trust-site .hero-split-copy .hero-actions .btn:hover,
body.home-landing.trust-site .hero-split-copy .hero-actions .btn:focus-visible,
body.home-landing.trust-site .hero-split-copy .hero-actions .btn-outline:hover,
body.home-landing.trust-site .hero-split-copy .hero-actions .btn-outline:focus-visible {
  background: #b9000b !important;
  border-color: #b9000b !important;
  color: #ffffff !important;
}

/* Cinematic Split Page Transition: additive Ebene, ohne bestehende Layouts zu veraendern. */
.split-transition-overlay {
  position: fixed;
  inset: 0;
  z-index: 9990;
  pointer-events: none;
  visibility: hidden;
  opacity: 0;
  overflow: hidden;
}

.split-transition-overlay.split-transition-is-active {
  visibility: visible;
  opacity: 1;
}

.split-transition-panel {
  position: absolute;
  left: 0;
  width: 100%;
  height: 50%;
  background:
    linear-gradient(135deg, rgba(227, 6, 19, .98), rgba(17, 17, 17, .96)),
    #e30613;
  transform: translateY(0);
  transition: transform 340ms cubic-bezier(.76, 0, .24, 1);
  will-change: transform;
}

.split-transition-panel-top {
  top: 0;
  transform: translateY(-100%);
}

.split-transition-panel-bottom {
  bottom: 0;
  transform: translateY(100%);
}

.split-transition-overlay.split-transition-is-covering .split-transition-panel {
  transform: translateY(0);
}

.split-transition-overlay.split-transition-is-revealing .split-transition-panel-top {
  transform: translateY(-100%);
}

.split-transition-overlay.split-transition-is-revealing .split-transition-panel-bottom {
  transform: translateY(100%);
}

.split-transition-glow {
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  height: 2px;
  background: rgba(255, 255, 255, .86);
  box-shadow: 0 0 26px rgba(255, 255, 255, .58);
  opacity: 0;
  transform: translateY(-50%) scaleX(.18);
  transform-origin: center;
  transition: opacity 180ms ease, transform 340ms cubic-bezier(.76, 0, .24, 1);
}

.split-transition-overlay.split-transition-is-covering .split-transition-glow {
  opacity: 1;
  transform: translateY(-50%) scaleX(1);
}

.split-transition-overlay.split-transition-is-revealing .split-transition-glow {
  opacity: 0;
  transform: translateY(-50%) scaleX(.35);
}

.split-transition-section-button {
  position: fixed;
  right: clamp(1rem, 2.4vw, 1.8rem);
  bottom: 1rem;
  z-index: 80;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: min(190px, calc(100vw - 2rem));
  max-width: min(260px, calc(100vw - 2rem));
  padding: .74rem .95rem;
  border: 0;
  border-radius: 8px;
  background: #e30613;
  color: #fff;
  box-shadow: 0 10px 24px rgba(227, 6, 19, .22);
  cursor: pointer;
  font: inherit;
  font-size: .9rem;
  font-weight: 850;
  line-height: 1.2;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.split-transition-section-button:hover,
.split-transition-section-button:focus-visible {
  transform: translateY(-2px);
  background: #c90510;
  box-shadow: 0 22px 44px rgba(227, 6, 19, .32);
  outline: none;
}

.split-transition-section-button::after {
  content: "›";
  margin-left: .45rem;
  font-size: 1.35rem;
  line-height: .9;
}

@media (max-width: 640px) {
  .split-transition-section-button {
    left: 1rem;
    right: 1rem;
    width: auto;
    max-width: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .split-transition-overlay,
  .split-transition-panel,
  .split-transition-glow,
  .split-transition-section-button {
    transition: none !important;
  }

  .split-transition-overlay {
    display: none !important;
  }
}

/* Startseite: eindeutige Smartphone-Regeln nach allen allgemeinen Overrides. */
@media (max-width: 820px) {
  body.trust-site .topbar {
    display: none !important;
  }

  body.home-landing {
    overflow-x: hidden;
  }

  body.home-landing .topbar-inner {
    min-height: 32px;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 0.4rem 0;
    text-align: center;
    line-height: 1.3;
  }

  body.home-landing .topbar-inner > span:not(:first-child) {
    display: none;
  }

  body.home-landing .site-header .container.nav-row {
    width: calc(100% - 28px);
    min-height: 72px;
    grid-template-columns: minmax(0, 1fr) 44px;
    gap: 10px;
  }

  body.home-landing .brand {
    min-width: 0;
    gap: 8px;
  }

  body.home-landing .brand-badge {
    width: 68px;
    height: 44px;
    flex: 0 0 68px;
    background-size: contain;
  }

  body.home-landing .brand-copy {
    min-width: 0;
  }

  body.home-landing .brand-copy strong {
    font-size: 0.84rem;
    line-height: 1.2;
  }

  body.home-landing .brand-copy small {
    display: none;
  }

  body.home-landing .nav-toggle {
    display: grid;
    place-content: center;
    width: 44px;
    height: 44px;
    padding: 6px;
    justify-self: end;
    cursor: pointer;
  }

  body.home-landing .site-nav {
    display: none;
  }

  body.home-landing .site-nav.is-open {
    display: flex;
    left: 14px;
    right: 14px;
    top: calc(100% + 6px);
    width: auto;
    max-height: calc(100vh - 120px);
    overflow-y: auto;
  }

  body.home-landing.trust-site .hero-split {
    width: 100%;
    grid-template-columns: minmax(0, 1fr);
    min-height: 0;
  }

  body.home-landing.trust-site .hero-split-media {
    display: none;
  }

  body.home-landing.trust-site .hero-split-copy {
    order: 1;
    width: 100%;
    padding: 1.6rem 1.25rem 2rem;
  }

  body.home-landing.trust-site .hero-split-copy :is(h1, h2) {
    max-width: none;
    font-size: clamp(1.85rem, 8vw, 2.25rem);
    line-height: 1.12;
    overflow-wrap: anywhere;
  }

  body.home-landing .lead-light {
    font-size: 0.98rem;
    line-height: 1.65;
    margin-bottom: 1.25rem;
  }

  body.home-landing .hero-facts {
    grid-template-columns: minmax(0, 1fr);
    gap: 0.75rem;
    margin-top: 1.25rem;
  }

  body.home-landing .hero-facts article {
    padding: 1rem;
  }

  body.home-landing .service-overview .container,
  body.home-landing .contact-stage-panel > .container {
    width: calc(100% - 32px);
  }

  body.home-landing.trust-site .service-overview-grid-2 {
    width: 100%;
    grid-template-columns: minmax(0, 1fr);
    gap: 1.4rem;
  }

  body.home-landing.trust-site .service-overview-grid-2 .service-overview-item {
    grid-template-columns: minmax(0, 1fr);
    justify-items: center;
    gap: 12px;
    padding: 0;
    text-align: center;
    min-height: 0;
    opacity: 1;
    transform: none;
    animation: none;
  }

  body.home-landing.trust-site .service-overview-thumb {
    width: 64px;
    height: 64px;
    padding: 7px;
    margin-inline: auto;
  }

  body.home-landing.trust-site .service-overview-copy {
    width: 100%;
    min-width: 0;
  }

  body.home-landing.trust-site .service-overview-copy h2 {
    margin-bottom: 10px;
  }

  body.home-landing .service-overview-grid-2 .service-overview-links {
    justify-items: center;
    max-height: none;
    opacity: 1;
    overflow: visible;
    transform: none;
    margin-top: 8px;
  }

  body.home-landing .service-overview-grid-2 .service-overview-links a {
    display: inline-block;
    text-align: center;
  }

  body.home-landing .section-heading {
    margin-bottom: 1.5rem;
  }

  body.home-landing .contact-stage-mail {
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  body.home-landing .split-transition-section-button {
    display: none;
  }

  body.home-landing .site-footer {
    padding: 0 !important;
    overflow-x: hidden;
  }

  body.home-landing .site-footer .footer-row-extended {
    width: calc(100% - 28px) !important;
    max-width: 380px;
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 0.5rem !important;
    align-items: start !important;
    justify-items: start !important;
    padding: 0.62rem 0 0.78rem !important;
    margin-inline: auto !important;
    text-align: left !important;
  }

  body.home-landing .site-footer .brand {
    min-width: 0;
    width: 100%;
    gap: 0.52rem;
  }

  body.home-landing .site-footer .brand-badge {
    width: 46px;
    height: 30px;
    flex: 0 0 46px;
    background-size: contain;
  }

  body.home-landing .site-footer .brand-copy,
  body.home-landing .site-footer .footer-contact,
  body.home-landing .site-footer .footer-links {
    min-width: 0;
    width: 100%;
  }

  body.home-landing .site-footer .brand-copy strong,
  body.home-landing .site-footer .footer-contact strong {
    font-size: 0.8rem !important;
    line-height: 1.18 !important;
  }

  body.home-landing .site-footer .brand-copy small,
  body.home-landing .site-footer .footer-contact {
    display: none !important;
  }

  body.home-landing .site-footer .brand-copy small,
  body.home-landing .site-footer .footer-contact,
  body.home-landing .site-footer .footer-contact a,
  body.home-landing .site-footer .footer-links a {
    font-size: 0.78rem !important;
    line-height: 1.22 !important;
    overflow-wrap: anywhere;
  }

  body.home-landing .site-footer .footer-contact {
    display: flex;
    flex-wrap: wrap;
    gap: 0.16rem 0.7rem;
  }

  body.home-landing .site-footer .footer-links {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: flex-start !important;
    gap: 0.28rem 0.8rem !important;
  }

  body.home-landing .site-footer .footer-links a {
    display: inline-flex !important;
    white-space: nowrap;
  }
}

@media (max-width: 420px) {
  body.home-landing.trust-site .hero-split-media,
  body.home-landing.trust-site .hero-split-media img {
    min-height: 190px;
    height: 190px;
  }

  body.home-landing.trust-site .hero-split-copy {
    padding-inline: 1rem;
  }

  body.home-landing.trust-site .hero-split-copy :is(h1, h2),
  body.home-landing.trust-site .section-heading h2,
  body.home-landing.trust-site .contact-stage-panel h2 {
    font-size: 1.8rem;
  }

  body.home-landing .hero-actions .btn {
    white-space: normal;
    text-align: center;
  }
}

/* Keep the original square artwork, but enlarge its visible logo area. */
.brand-badge,
body.trust-site .brand-badge,
body.home-landing .brand-badge,
body.trust-site .site-footer .brand-badge,
body.home-landing .site-footer .brand-badge {
  background-size: 165% auto;
}

/* SEO navigation and regional service context */
.seo-breadcrumb {
  background: #fff;
  border-bottom: 1px solid rgba(20, 20, 20, 0.08);
}

.seo-breadcrumb .container {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.45rem;
  min-height: 42px;
  color: #666;
  font-size: 0.78rem;
}

.seo-breadcrumb a {
  color: #4b4b4b;
  text-decoration: none;
}

.seo-breadcrumb a:hover,
.seo-breadcrumb a:focus-visible {
  color: #b51f24;
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.seo-breadcrumb [aria-current="page"] {
  color: #222;
  font-weight: 700;
}

.local-service-area {
  padding: clamp(3.2rem, 6vw, 6rem) 1rem;
  background:
    radial-gradient(circle at 85% 15%, rgba(181, 31, 36, 0.08), transparent 30%),
    #f7f5f2;
}

.local-service-inner {
  width: min(1180px, 100%);
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: start;
}

.local-service-copy h2 {
  max-width: 800px;
  margin: 0.45rem 0 1rem;
  color: #1d1d1d;
  font-size: clamp(1.75rem, 3vw, 2.65rem);
  line-height: 1.12;
}

.local-service-copy p:not(.section-kicker) {
  max-width: 760px;
  color: #4d4d4d;
  line-height: 1.72;
}

.local-service-copy .btn {
  margin-top: 0.75rem;
}

.related-services {
  padding: clamp(1.4rem, 3vw, 2rem);
  border: 1px solid rgba(20, 20, 20, 0.1);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 14px 38px rgba(20, 20, 20, 0.06);
}

.related-services h3 {
  margin: 0 0 0.9rem;
  color: #222;
  font-size: 1.05rem;
}

.related-services nav {
  display: grid;
  gap: 0.55rem;
}

.related-services a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(20, 20, 20, 0.08);
  color: #252525;
  font-weight: 750;
  text-decoration: none;
}

.related-services a:last-child {
  border-bottom: 0;
}

.related-services a:hover,
.related-services a:focus-visible {
  color: #b51f24;
}

.related-services a span {
  flex: 0 0 auto;
  color: #777;
  font-size: 0.72rem;
  font-weight: 600;
}

@media (max-width: 760px) {
  .seo-breadcrumb .container {
    width: calc(100% - 28px);
    min-height: 38px;
    font-size: 0.72rem;
  }

  .local-service-area {
    padding-block: 3rem;
  }

  .local-service-inner {
    grid-template-columns: 1fr;
  }
}
