:root {
  --blue: #58b0e8;
  --red: #e04030;
  --ink: #202018;
  --black: #0e0f0d;
  --white: #ffffff;
  --paper: #f5f7f8;
  --mist: #eef4f8;
  --line: #d8e1e7;
  --muted: #505960;
  --shadow: 0 28px 90px rgba(20, 21, 18, 0.18);
  --header-height: 84px;
  --content-max: 1400px;
  --radius: 4px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: "Inter", Arial, sans-serif;
  font-size: 18px;
  line-height: 1.5;
  letter-spacing: 0;
}

body.home-template,
body.menu-open {
  background: var(--black);
}

body.menu-open {
  overflow: hidden;
}

::selection {
  background: var(--red);
  color: var(--white);
}

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

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

section,
header,
footer {
  width: 100%;
}

.container {
  width: 100%;
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 28px;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 900ms ease, transform 900ms cubic-bezier(0.19, 1, 0.22, 1);
}

[data-reveal].is-visible,
.rboxy[data-reveal],
.roomy[data-reveal] {
  opacity: 1;
  transform: translateY(0);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(216, 225, 231, 0.9);
  box-shadow: 0 18px 50px rgba(20, 21, 18, 0.12);
  backdrop-filter: blur(18px);
  transition: background 260ms ease, box-shadow 260ms ease, border-color 260ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.96);
  border-bottom-color: rgba(216, 225, 231, 0.9);
  box-shadow: 0 18px 50px rgba(20, 21, 18, 0.12);
  backdrop-filter: blur(18px);
}

body.menu-open .site-header {
  background: rgba(255, 255, 255, 0.92);
  border-bottom-color: rgba(216, 225, 231, 0.82);
  box-shadow: 0 18px 50px rgba(20, 21, 18, 0.12);
  backdrop-filter: blur(18px);
}

.site-header.is-scrolled .primary-nav a,
.site-header.is-scrolled .nav-toggle {
  color: var(--ink);
}

.site-header.is-scrolled .nav-toggle-icon span {
  background: var(--ink);
}

.site-header.is-scrolled .dropdown-menu {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.98);
}

.site-header.is-scrolled .dropdown-menu a {
  color: var(--ink);
}

body.menu-open .primary-nav a {
  color: var(--white);
}

body.menu-open .nav-toggle {
  color: var(--ink);
}

body.menu-open .nav-toggle-icon span {
  background: var(--ink);
}

.header-shell {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--content-max);
  min-height: var(--header-height);
  margin: 0 auto;
  padding: 18px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 42px;
}

.brand {
  position: absolute;
  top: 50%;
  left: 48px;
  z-index: 1002;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  width: 318px;
  transform: translateY(-50%);
  transition: left 320ms ease, width 320ms ease, transform 320ms ease;
}

.brand-logo {
  width: 100%;
  height: auto;
  padding: 0;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  transition: opacity 220ms ease;
}

.brand-logo-dark {
  opacity: 0;
}

.brand-logo-light {
  position: absolute;
  inset: 0;
  opacity: 1;
}

.site-header.is-scrolled .brand-logo-dark {
  opacity: 0;
}

.site-header.is-scrolled .brand-logo-light {
  opacity: 1;
}

body.menu-open .brand-logo-dark {
  opacity: 0;
}

body.menu-open .brand-logo-light {
  opacity: 1;
}

.header-actions {
  position: absolute;
  top: 50%;
  right: 0;
  z-index: 1002;
  display: flex;
  align-items: center;
  gap: 18px;
  transform: translateY(-50%);
}

.header-call {
  position: relative;
  min-height: 42px;
  padding: 11px 24px;
  display: none;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid rgba(32, 32, 24, 0.2);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 10px 26px rgba(20, 21, 18, 0.07);
  color: var(--ink);
  backdrop-filter: blur(14px);
  transition: border-color 240ms ease, background 240ms ease, box-shadow 240ms ease, color 240ms ease, transform 240ms ease;
}

.header-call::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: var(--ink);
  transform: translateY(101%);
  transition: transform 260ms cubic-bezier(0.19, 1, 0.22, 1);
}

.header-call-copy {
  position: relative;
  z-index: 1;
}

.header-call-copy {
  display: flex;
  line-height: 1;
  text-transform: uppercase;
}

.header-call-copy strong {
  color: currentColor;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.8px;
}

.mobile-quick-call {
  display: none !important;
}

.header-call:hover,
.header-call:focus-visible {
  border-color: rgba(32, 32, 24, 0.7);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 16px 38px rgba(20, 21, 18, 0.14);
  color: var(--white);
  transform: translateY(-2px);
}

.header-call:hover::before,
.header-call:focus-visible::before {
  transform: translateY(0);
}

.header-cta,
.dark-line-button,
.btn {
  position: relative;
  min-height: 44px;
  padding: 10px 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid currentColor;
  border-radius: 0;
  background: transparent;
  color: var(--white);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color 240ms ease, border-color 240ms ease, transform 240ms ease;
}

.header-cta {
  display: none;
}

.header-cta::before,
.dark-line-button::before,
.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--white);
  transform: translateY(101%);
  transition: transform 260ms ease;
}

.header-cta:hover,
.header-cta:focus-visible,
.btn:hover,
.btn:focus-visible {
  color: var(--ink);
  transform: translateY(-2px);
}

.header-cta:hover::before,
.header-cta:focus-visible::before,
.dark-line-button:hover::before,
.dark-line-button:focus-visible::before,
.btn:hover::before,
.btn:focus-visible::before {
  transform: translateY(0);
}

.btn-primary {
  background: var(--ink);
  color: var(--white);
}

.btn-primary::before {
  background: var(--blue);
}

.dark-line-button {
  z-index: 1;
  color: var(--ink);
}

.dark-line-button::before {
  background: var(--ink);
}

.dark-line-button:hover,
.dark-line-button:focus-visible {
  color: var(--white);
}

.nav-toggle {
  width: auto;
  min-width: 94px;
  height: 44px;
  padding: 0;
  display: none;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  border: 0;
  background: transparent;
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: background 220ms ease, border-color 220ms ease, box-shadow 220ms ease, color 220ms ease;
}

.nav-toggle-icon {
  width: 28px;
  height: 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.nav-toggle-icon span {
  width: 28px;
  height: 2px;
  display: block;
  background: var(--ink);
  transition: transform 240ms ease, opacity 240ms ease;
}

.nav-toggle.is-open .nav-toggle-icon span:first-child {
  transform: translateY(8px) rotate(45deg);
}

.nav-toggle.is-open .nav-toggle-icon span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.nav-toggle.is-open .nav-toggle-icon span:last-child {
  transform: translateY(-8px) rotate(-45deg);
}

.primary-nav {
  position: relative;
  z-index: 1001;
  width: auto;
  min-width: 0;
  max-width: none;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 30px;
  margin-left: auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  color: var(--ink);
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  visibility: visible;
  transition: opacity 240ms ease, transform 240ms ease, visibility 240ms ease;
}

.primary-nav > a:nth-of-type(1) {
  --nav-accent: var(--ink);
}

.primary-nav .nav-item > a {
  --nav-accent: var(--ink);
}

.primary-nav > a:nth-of-type(2) {
  --nav-accent: var(--ink);
}

.primary-nav > a:nth-of-type(3) {
  --nav-accent: var(--ink);
}

.primary-nav > a:nth-of-type(4) {
  --nav-accent: var(--ink);
}

.primary-nav a {
  position: relative;
  min-height: 32px;
  padding: 7px 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  transition: color 220ms ease;
}

.primary-nav > a::after,
.nav-item > a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: var(--nav-accent, currentColor);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
}

.primary-nav > a:hover,
.primary-nav > a:focus-visible,
.nav-item > a:hover,
.nav-item > a:focus-visible {
  color: var(--nav-accent, var(--blue));
}

.primary-nav > a:hover::after,
.primary-nav > a:focus-visible::after,
.nav-item > a:hover::after,
.nav-item > a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-item {
  position: relative;
  display: flex;
  align-items: center;
}

.has-dropdown::before {
  content: "";
  position: absolute;
  left: -16px;
  right: -16px;
  top: 100%;
  height: 12px;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  width: max-content;
  min-width: 0;
  padding: 12px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  border: 1px solid rgba(216, 225, 231, 0.88);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 24px 70px rgba(20, 21, 18, 0.14);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 220ms ease, transform 220ms ease;
}

.dropdown-menu a {
  width: max-content;
  min-height: 36px;
  padding: 10px 14px 10px 30px;
  justify-content: flex-start;
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.dropdown-menu a::before {
  content: "+";
  position: absolute;
  left: 14px;
  top: 50%;
  color: var(--ink);
  font-weight: 700;
  transform: translateY(-50%);
}

.dropdown-menu a::after {
  content: "";
  position: absolute;
  left: 30px;
  right: 14px;
  bottom: 6px;
  height: 1px;
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
}

.dropdown-menu a:hover::after,
.dropdown-menu a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

body.menu-open .dropdown-menu a::before {
  color: var(--white);
}

body.menu-open .dropdown-menu a::after {
  background: var(--white);
}

.has-dropdown:hover .dropdown-menu,
.has-dropdown:focus-within .dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

@media (min-width: 1091px) {
  .site-header:not(.is-scrolled) .primary-nav {
    transform: translateY(8px);
  }

  .site-header.is-scrolled .header-shell {
    min-height: 84px;
    justify-content: center;
  }

  .site-header.is-scrolled .brand {
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .site-header.is-scrolled .primary-nav {
    position: absolute;
    top: calc(100% + 10px);
    right: 22px;
    width: 280px;
    display: flex;
    padding: 14px;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    border: 1px solid rgba(216, 225, 231, 0.84);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 24px 70px rgba(20, 21, 18, 0.14);
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 220ms ease, transform 220ms ease;
  }

  .site-header.is-scrolled .primary-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
    transform: translateY(0);
  }

  .site-header.is-scrolled .primary-nav.is-open a {
    width: max-content;
    justify-content: flex-start;
    min-height: 38px;
    padding: 11px 10px;
    color: var(--ink);
  }

  .site-header.is-scrolled .primary-nav.is-open > a::after,
  .site-header.is-scrolled .primary-nav.is-open .nav-item > a::after {
    left: 10px;
    right: 10px;
    bottom: 6px;
    display: block;
    background: var(--ink);
    transform: scaleX(0);
  }

  .site-header.is-scrolled .primary-nav.is-open .dropdown-menu a::after {
    left: 30px;
    right: 10px;
    bottom: 6px;
    background: var(--ink);
  }

  .site-header.is-scrolled .primary-nav.is-open > a:hover::after,
  .site-header.is-scrolled .primary-nav.is-open > a:focus-visible::after,
  .site-header.is-scrolled .primary-nav.is-open .nav-item > a:hover::after,
  .site-header.is-scrolled .primary-nav.is-open .nav-item > a:focus-visible::after,
  .site-header.is-scrolled .primary-nav.is-open .dropdown-menu a:hover::after,
  .site-header.is-scrolled .primary-nav.is-open .dropdown-menu a:focus-visible::after {
    transform: scaleX(1);
  }

  .site-header.is-scrolled .primary-nav.is-open .nav-item {
    display: block;
    width: max-content;
  }

  .site-header.is-scrolled .primary-nav.is-open .has-dropdown::before {
    display: none;
  }

  .site-header.is-scrolled .primary-nav.is-open .dropdown-menu {
    position: static;
    min-width: 0;
    max-height: 0;
    padding: 0 0 0 12px;
    align-items: flex-start;
    overflow: hidden;
    border: 0;
    background: transparent;
    box-shadow: none;
    opacity: 0;
    pointer-events: none;
    transform: none;
    transition: max-height 240ms ease, opacity 180ms ease, padding 240ms ease;
  }

  .site-header.is-scrolled .primary-nav.is-open .has-dropdown:hover .dropdown-menu,
  .site-header.is-scrolled .primary-nav.is-open .has-dropdown:focus-within .dropdown-menu {
    max-height: 110px;
    padding-bottom: 8px;
    opacity: 1;
    pointer-events: auto;
  }

  .site-header.is-scrolled .primary-nav.is-open .dropdown-menu a {
    padding: 10px 10px 10px 30px;
  }

  .site-header.is-scrolled .primary-nav.is-open .dropdown-menu a::before {
    left: 12px;
    color: var(--ink);
  }

  .site-header.is-scrolled .header-actions {
    position: absolute;
    top: 50%;
    right: min(16px, calc((var(--content-max) - 100vw) / 2 + 16px));
    gap: 12px;
    transform: translateY(-50%);
  }

  .site-header.is-scrolled .header-call {
    height: 46px;
    min-height: 46px;
    display: inline-flex;
    padding: 0 24px;
    background: rgba(255, 255, 255, 0.74);
  }

  .site-header.is-scrolled .nav-toggle {
    width: 46px;
    min-width: 46px;
    height: 46px;
    display: inline-flex;
    justify-content: center;
    border: 1px solid rgba(32, 32, 24, 0.14);
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.74);
    box-shadow: 0 10px 28px rgba(20, 21, 18, 0.08);
  }

  .site-header.is-scrolled .nav-toggle:hover,
  .site-header.is-scrolled .nav-toggle:focus-visible {
    border-color: rgba(32, 32, 24, 0.26);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 14px 36px rgba(20, 21, 18, 0.12);
  }

  .site-header.is-scrolled .nav-toggle-label {
    display: none;
  }
}

.masthead {
  position: relative;
  height: var(--masthead-height, 116vh);
  min-height: 980px;
  overflow: hidden;
  background: var(--black);
  color: var(--white);
}

.kenburns-stage {
  position: absolute;
  inset: 0;
  background: var(--black);
}

.kenburns-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 72% 28%, rgba(88, 176, 232, 0.12), transparent 30%),
    linear-gradient(180deg, rgba(14, 15, 13, 0.18), rgba(14, 15, 13, 0.4)),
    linear-gradient(90deg, rgba(14, 15, 13, 0.52), rgba(14, 15, 13, 0.12), rgba(224, 64, 48, 0.1));
}

.kenburns-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.1);
  transition: opacity 1800ms ease;
}

.kenburns-slide.is-active {
  opacity: 1;
  animation: heroZoomOut 6200ms linear forwards;
}

@keyframes heroZoomOut {
  from {
    transform: scale(1.1);
  }

  to {
    transform: scale(1);
  }
}

.masthead-content {
  position: relative;
  z-index: 2;
  height: 100%;
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 92px 28px 178px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.elite-masthead .masthead-content::before {
  content: "";
  position: absolute;
  inset: 7% -3vw 7% -7vw;
  z-index: -1;
  pointer-events: none;
  background: radial-gradient(
    ellipse at 36% 48%,
    rgba(3, 4, 3, 0.72) 0%,
    rgba(3, 4, 3, 0.6) 30%,
    rgba(3, 4, 3, 0.4) 52%,
    rgba(3, 4, 3, 0.16) 69%,
    rgba(3, 4, 3, 0) 84%
  );
  filter: blur(28px);
  transform: translateZ(0);
}

.masthead-content span,
.section-note,
.elite-showroom .roomy span,
.banner-content span {
  display: block;
  color: var(--white);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.45;
  text-transform: uppercase;
  letter-spacing: 4px;
}

.section-note {
  color: var(--blue);
}

.masthead-content .hero-kicker {
  color: var(--white);
}

.masthead-content .hero-detail {
  color: var(--white);
}

.masthead-content h1 {
  margin: 14px 0 12px;
  color: var(--white);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 122px;
  font-weight: 100;
  line-height: 1.08;
  text-transform: uppercase;
  letter-spacing: 10px;
}

.masthead-content p {
  max-width: 900px;
  margin: 18px auto 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
  line-height: 1.65;
}

.masthead-actions {
  margin-top: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  flex-wrap: wrap;
}

.hero-button {
  min-height: 46px;
  padding: 10px 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.76);
  background: transparent;
  color: var(--white);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: background 220ms ease, border-color 220ms ease, color 220ms ease, transform 220ms ease;
}

.hero-button-light {
  border-color: var(--white);
  background: var(--white);
  color: var(--ink);
}

.hero-button:hover,
.hero-button:focus-visible {
  border-color: var(--white);
  background: var(--white);
  color: var(--ink);
  transform: translateY(-2px);
}

.hero-button-light:hover,
.hero-button-light:focus-visible {
  border-color: var(--blue);
  background: var(--blue);
  color: var(--white);
}

.hero-showroom-note {
  --showroom-line-width: 84%;
  position: absolute;
  top: clamp(154px, 18vh, 214px);
  right: clamp(30px, 5vw, 82px);
  z-index: 3;
  width: min(286px, calc(100% - 56px));
  padding: 18px 0 0 24px;
  overflow: visible;
  border-top: 0;
  background: transparent;
  box-shadow: none;
  isolation: isolate;
  color: var(--white);
  text-align: right;
  transition: opacity 900ms ease, transform 900ms cubic-bezier(0.19, 1, 0.22, 1), border-color 240ms ease;
}

.hero-showroom-shadow {
  position: absolute;
  inset: -34px -44px -38px -44px;
  z-index: -1;
  display: block;
  pointer-events: none;
  background: radial-gradient(
    ellipse at 68% 48%,
    rgba(0, 0, 0, 0.66) 0%,
    rgba(0, 0, 0, 0.48) 38%,
    rgba(0, 0, 0, 0.22) 62%,
    rgba(0, 0, 0, 0) 84%
  );
  filter: blur(18px);
}

.hero-showroom-note::before,
.hero-showroom-note::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.hero-showroom-note::before {
  top: 0;
  right: 0;
  width: var(--showroom-line-width);
  height: 1px;
  background: rgba(255, 255, 255, 0.5);
  animation: none;
  transform: none;
  transition: opacity 260ms ease;
}

.hero-showroom-note::after {
  top: 0;
  left: calc(100% - var(--showroom-line-width));
  width: 1px;
  height: 54px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.46), rgba(255, 255, 255, 0));
}

.hero-showroom-note span {
  display: block;
  color: rgba(255, 255, 255, 0.78);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: 3px;
}

.hero-showroom-note strong {
  display: block;
  margin-top: 8px;
  color: var(--white);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 21px;
  font-weight: 300;
  line-height: 1.28;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.hero-showroom-note em {
  display: block;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
  font-style: normal;
  line-height: 1.55;
}

.hero-showroom-note:hover,
.hero-showroom-note:focus-visible {
  transform: translateY(-2px);
}

.hero-showroom-note:hover::before,
.hero-showroom-note:focus-visible::before {
  opacity: 0.86;
}

.arrowscroll {
  position: absolute;
  left: 50%;
  bottom: 214px;
  z-index: 4;
  width: 36px;
  height: 58px;
  transform: translateX(-50%);
}

.arrowscroll::before,
.arrowscroll::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 18px;
  height: 18px;
  border-right: 1px solid var(--white);
  border-bottom: 1px solid var(--white);
  transform: translateX(-50%) rotate(45deg);
  animation: scrollCue 1900ms ease-in-out infinite;
}

.arrowscroll::after {
  top: 18px;
  animation-delay: 250ms;
}

@keyframes scrollCue {
  0% {
    opacity: 0;
    transform: translateX(-50%) translateY(-6px) rotate(45deg);
  }

  45% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translateX(-50%) translateY(12px) rotate(45deg);
  }
}

.elite-rozcestnik {
  --rozcestnik-overlap: 64px;
  position: relative;
  z-index: 10;
  margin-top: calc(var(--rozcestnik-overlap) * -1);
  background: linear-gradient(
    180deg,
    transparent 0 var(--rozcestnik-overlap),
    var(--white) var(--rozcestnik-overlap)
  );
}

.rozcestnik-grid {
  width: min(var(--content-max), calc(100% - 56px));
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  box-shadow: 0 24px 74px rgba(0, 0, 0, 0.18);
}

.rboxy {
  position: relative;
  width: 33.333%;
  height: 500px;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

.rboxy img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.94) contrast(1.05);
  transform: scale(1);
  transition: transform 620ms ease, filter 620ms ease;
}

.rboxy::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(14, 15, 13, 0.78), rgba(14, 15, 13, 0.2) 52%, rgba(14, 15, 13, 0.18)),
    linear-gradient(120deg, rgba(88, 176, 232, 0.12), rgba(224, 64, 48, 0.1));
  transition: background 420ms ease;
}

.rboxy-caption {
  position: absolute;
  inset: 0;
  z-index: 2;
  padding: 42px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.rboxy h2 {
  margin: 0;
  color: var(--white);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 28px;
  font-weight: 300;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 3px;
  transition: transform 420ms ease;
}

.rboxy p {
  max-width: 320px;
  margin: 22px 0 24px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 16px;
  line-height: 1.55;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 420ms ease, transform 420ms ease;
}

.whitebutton {
  position: relative;
  z-index: 1;
  min-width: 180px;
  padding: 15px 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-top: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  isolation: isolate;
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.3;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 3px;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 420ms ease, transform 420ms ease, color 240ms ease, border-color 240ms ease;
}

.whitebutton::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--white);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 340ms cubic-bezier(0.19, 1, 0.22, 1);
}

.whitebutton:hover,
.whitebutton:focus-visible {
  border-color: var(--white);
  color: var(--ink);
}

.whitebutton:hover::before,
.whitebutton:focus-visible::before {
  transform: scaleX(1);
}

.rboxy:hover img,
.rboxy:focus-visible img {
  filter: brightness(0.78) saturate(1.08) contrast(1.08);
  transform: scale(1.06);
}

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

.rboxy:hover::after,
.rboxy:focus-visible::after {
  background:
    linear-gradient(0deg, rgba(14, 15, 13, 0.82), rgba(14, 15, 13, 0.34) 58%, rgba(14, 15, 13, 0.42)),
    linear-gradient(135deg, rgba(88, 176, 232, 0.38), rgba(88, 176, 232, 0.16) 48%, rgba(14, 15, 13, 0.12));
}

.rboxy:hover h2,
.rboxy:focus-visible h2 {
  transform: translateY(-10px);
}

.rboxy:hover p,
.rboxy:focus-visible p,
.rboxy:hover .whitebutton,
.rboxy:focus-visible .whitebutton,
.roomy:hover .whitebutton,
.roomy:focus-visible .whitebutton,
.elite-banner:hover .whitebutton {
  opacity: 1;
  transform: translateY(0);
}

.home-service-intro {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    linear-gradient(120deg, rgba(88, 176, 232, 0.08), transparent 34%),
    linear-gradient(300deg, rgba(224, 64, 48, 0.06), transparent 38%),
    var(--white);
}

.home-service-intro::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  z-index: 0;
  width: 100%;
  height: clamp(980px, 74vw, 1320px);
  background: linear-gradient(
    45deg,
    transparent 0 70%,
    rgba(32, 32, 24, 0.075) 70% 74%,
    rgba(224, 64, 48, 0.09) 74% 78%,
    rgba(88, 176, 232, 0.13) 78% 82%,
    transparent 82% 100%
  );
  -webkit-mask-image: linear-gradient(180deg, #000 0 58%, rgba(0, 0, 0, 0.72) 74%, transparent 100%);
  mask-image: linear-gradient(180deg, #000 0 58%, rgba(0, 0, 0, 0.72) 74%, transparent 100%);
  pointer-events: none;
}

.home-service-inner {
  position: relative;
  z-index: 1;
  width: min(var(--content-max), calc(100% - 56px));
  margin: 0 auto;
  padding: 75px 0;
  display: grid;
  grid-template-columns: minmax(790px, 1.08fr) minmax(420px, 0.68fr);
  gap: 64px 12px;
  align-items: start;
}

.home-service-content {
  grid-column: 1;
  grid-row: 1;
  display: grid;
  grid-template-columns: minmax(340px, 0.54fr) minmax(430px, 0.82fr);
  column-gap: 18px;
  align-items: start;
}

.home-service-copy {
  grid-column: 1;
  grid-row: 1;
}

.home-service-copy h2 {
  max-width: 760px;
  margin: 14px 0 24px;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 34px;
  font-weight: 300;
  line-height: 1.24;
  text-transform: uppercase;
  letter-spacing: 3px;
}

.home-service-copy p {
  max-width: 740px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

.home-service-copy p + p {
  margin-top: 18px;
}

.home-service-stamp {
  width: min(260px, 78%);
  height: auto;
  margin-top: 42px;
  margin-left: 4px;
  display: block;
  opacity: 0.78;
  filter: grayscale(0.18) contrast(1.04);
  mix-blend-mode: multiply;
}

.home-service-model {
  position: relative;
  grid-column: 2;
  grid-row: 1;
  width: min(560px, 100%);
  margin: -8px 0 -52px 0;
  align-self: start;
  justify-self: start;
}

.home-service-model::before {
  content: none;
}

.home-service-model img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 24px 32px rgba(20, 21, 18, 0.14));
  transform: translateX(24px) scale(1.16);
  transform-origin: center top;
}

.offer-button {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 100%;
  min-height: 56px;
  margin-top: 34px;
  padding: 16px 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--white);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.25;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  transition: border-color 240ms ease, color 240ms ease, transform 240ms ease, box-shadow 240ms ease;
}

.home-service-offer {
  grid-column: 1 / -1;
  grid-row: 2;
  margin-top: 40px;
}

.offer-button::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--red);
  transform: translateY(101%);
  transition: transform 280ms cubic-bezier(0.19, 1, 0.22, 1);
}

.offer-button::after {
  content: "";
  width: 9px;
  height: 9px;
  margin-left: 14px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform 240ms ease;
}

.offer-button:hover,
.offer-button:focus-visible {
  border-color: var(--red);
  box-shadow: 0 18px 44px rgba(20, 21, 18, 0.16);
  color: var(--white);
  transform: translateY(-2px);
}

.offer-button:hover::before,
.offer-button:focus-visible::before {
  transform: translateY(0);
}

.offer-button:hover::after,
.offer-button:focus-visible::after {
  transform: translate(4px, 0) rotate(45deg);
}

.home-service-scope {
  position: relative;
  grid-column: 2;
  grid-row: 1;
  padding: 48px 0 48px 34px;
  border-left: 1px solid var(--line);
}

.home-service-scope::before {
  content: none;
}

.home-service-scope > span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--ink);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 58px;
  font-weight: 200;
  line-height: 1;
  letter-spacing: 4px;
}

.home-service-scope h3,
.home-service-card-grid h3,
.home-service-process h3 {
  margin: 0;
  color: var(--ink);
  font-size: 22px;
  font-weight: 800;
  line-height: 1.24;
}

.home-service-scope p,
.home-service-section-head p,
.home-service-card-grid p,
.home-service-process span {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.58;
}

.home-service-scope p {
  margin-top: 16px;
}

.home-service-scope ul {
  margin: 24px 0 0;
  padding: 0;
  display: grid;
  gap: 0;
  list-style: none;
}

.home-service-scope li {
  --scope-flow-delay: 0ms;
  position: relative;
  padding: 14px 0 14px 28px;
  border-top: 1px solid rgba(216, 225, 231, 0.86);
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 1.2px;
}

.home-service-scope li:nth-child(2) {
  --scope-flow-delay: 180ms;
}

.home-service-scope li:nth-child(3) {
  --scope-flow-delay: 360ms;
}

.home-service-scope li:nth-child(4) {
  --scope-flow-delay: 540ms;
}

.home-service-scope li:nth-child(5) {
  --scope-flow-delay: 720ms;
}

.home-service-scope li:nth-child(6) {
  --scope-flow-delay: 900ms;
}

.home-service-scope li:last-child {
  border-bottom: 1px solid rgba(216, 225, 231, 0.86);
}

.home-service-scope li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 8px;
  height: 8px;
  border: 1px solid currentColor;
  background-image:
    linear-gradient(var(--ink), var(--ink)),
    linear-gradient(rgba(224, 64, 48, 0.96), rgba(224, 64, 48, 0.96)),
    linear-gradient(rgba(88, 176, 232, 0.96), rgba(88, 176, 232, 0.96));
  background-repeat: no-repeat;
  background-position: center top, center top, center bottom;
  background-size: 100% 0%, 100% 0%, 100% 0%;
  transform: translateY(-50%) rotate(45deg);
  animation: scopeDiamondFlow 8.8s var(--scope-flow-delay) infinite both;
  will-change: background-size, border-color;
}

@keyframes scopeDiamondFlow {
  0%,
  6% {
    background-size: 100% 0%, 100% 0%, 100% 0%;
    border-color: var(--ink);
  }

  14%,
  36% {
    background-size: 100% 0%, 100% 0%, 100% 100%;
    border-color: rgba(88, 176, 232, 0.96);
  }

  38% {
    background-size: 100% 0%, 100% 0%, 100% 100%;
    border-color: rgba(224, 64, 48, 0.96);
  }

  46%,
  64% {
    background-size: 100% 0%, 100% 100%, 100% 100%;
    border-color: rgba(224, 64, 48, 0.96);
  }

  66% {
    background-size: 100% 0%, 100% 100%, 100% 100%;
    border-color: var(--ink);
  }

  74%,
  94% {
    background-size: 100% 100%, 100% 100%, 100% 100%;
    border-color: var(--ink);
  }

  100% {
    background-size: 100% 0%, 100% 0%, 100% 0%;
    border-color: var(--ink);
  }
}

.home-service-services,
.home-service-process {
  grid-column: 1 / -1;
  padding-top: 48px;
  border-top: 1px solid var(--line);
}

.home-service-section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 48px;
}

.home-service-section-head h2 {
  max-width: 760px;
  margin: 14px 0 0;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 34px;
  font-weight: 300;
  line-height: 1.24;
  text-transform: uppercase;
  letter-spacing: 3px;
}

.home-service-section-head p {
  max-width: 520px;
  text-align: right;
}

.home-service-card-grid {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

.home-service-card-grid article {
  min-height: 252px;
  padding: 30px 26px;
  background: rgba(255, 255, 255, 0.92);
}

.home-service-card-grid h3 {
  margin-bottom: 16px;
  font-size: 19px;
}

.home-service-vehicle {
  --vehicle-progress: 0;
  --vehicle-x: 100vw;
  --vehicle-wheel-rotation: 0deg;
  position: relative;
  contain: paint;
  width: 100vw;
  height: clamp(330px, 34vw, 500px);
  margin-top: 52px;
  margin-left: calc(50% - 50vw);
  overflow: clip;
}

.home-service-vehicle::before {
  content: none;
}

.home-service-vehicle-car {
  position: absolute;
  left: 0;
  bottom: 24px;
  width: clamp(720px, 76vw, 1080px);
  max-width: none;
  transform: translate3d(var(--vehicle-x), 0, 0);
  will-change: transform;
  pointer-events: none;
}

.home-service-vehicle img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: auto;
  max-width: none;
}

.vehicle-wheel {
  position: absolute;
  z-index: 2;
  pointer-events: none;
}

.vehicle-wheel {
  width: 8.8%;
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  opacity: 0.92;
  transform: translate(-50%, -50%);
  mix-blend-mode: screen;
}

.vehicle-wheel-front {
  left: 16.15%;
  top: 82.1%;
}

.vehicle-wheel-rear {
  left: 74.5%;
  top: 84.35%;
}

.vehicle-wheel::before {
  content: "";
  position: absolute;
  inset: 9%;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.32) 0 11%, transparent 12%),
    repeating-conic-gradient(
      from 0deg,
      rgba(255, 255, 255, 0.56) 0deg 7deg,
      rgba(20, 21, 18, 0.2) 7deg 18deg,
      rgba(255, 255, 255, 0.2) 18deg 28deg,
      rgba(20, 21, 18, 0.56) 28deg 38deg
  );
  filter: blur(0.55px);
  transform: rotate(var(--vehicle-wheel-rotation));
}

.vehicle-wheel::after {
  content: "";
  position: absolute;
  inset: 15%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  box-shadow:
    inset 0 0 8px rgba(255, 255, 255, 0.12),
    0 0 10px rgba(255, 255, 255, 0.08);
}

.home-service-process {
  margin-top: -18px;
  padding-top: 38px;
  display: grid;
  grid-template-columns: minmax(220px, 0.34fr) minmax(0, 1fr);
  gap: 54px;
}

.home-service-process h3 {
  margin-top: 12px;
  max-width: 320px;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 30px;
  font-weight: 300;
  line-height: 1.26;
  text-transform: uppercase;
  letter-spacing: 2.4px;
}

.home-service-process ol {
  margin: 0;
  min-height: 330px;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
  list-style: none;
  counter-reset: service-process;
  position: relative;
}

.home-service-process ol::before,
.home-service-process ol::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 210px;
  pointer-events: none;
}

.home-service-process ol::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1000 210' preserveAspectRatio='none'%3E%3Cdefs%3E%3ClinearGradient id='g' x1='0' y1='0' x2='1' y2='0'%3E%3Cstop offset='0' stop-color='%2358b0e8' stop-opacity='.64'/%3E%3Cstop offset='.5' stop-color='%23e04030' stop-opacity='.58'/%3E%3Cstop offset='1' stop-color='%23202018' stop-opacity='.66'/%3E%3C/linearGradient%3E%3C/defs%3E%3Cpath d='M70 120 C170 20 230 20 300 42 C380 70 405 160 500 120 C585 80 620 20 700 42 C790 70 825 165 930 120' fill='none' stroke='url(%23g)' stroke-width='8' stroke-linecap='round'/%3E%3Cpath d='M70 120 C170 20 230 20 300 42 C380 70 405 160 500 120 C585 80 620 20 700 42 C790 70 825 165 930 120' fill='none' stroke='white' stroke-opacity='.42' stroke-width='1.2' stroke-dasharray='18 20'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  clip-path: inset(0 100% 0 0);
  filter: drop-shadow(0 10px 14px rgba(20, 21, 18, 0.05));
  transition: clip-path 1200ms cubic-bezier(0.19, 1, 0.22, 1);
}

.home-service-process ol::after {
  width: 110px;
  right: auto;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.62), transparent);
  opacity: 0;
  transform: translateX(0);
}

.home-service-process.is-visible ol::before {
  clip-path: inset(0 0 0 0);
}

.home-service-process.is-visible ol::after {
  animation: processLineGlint 1800ms ease-out 520ms 1;
}

.home-service-process li {
  --step-y: 120px;
  --step-accent: var(--blue);
  --step-glow: rgba(88, 176, 232, 0.14);
  position: relative;
  min-height: 310px;
  padding: calc(var(--step-y) + 74px) 12px 0;
  counter-increment: service-process;
  opacity: 0;
  text-align: center;
  transform: translateY(16px);
  transition:
    opacity 700ms ease,
    transform 700ms cubic-bezier(0.19, 1, 0.22, 1);
}

.home-service-process li:nth-child(2),
.home-service-process li:nth-child(4) {
  --step-y: 42px;
  padding-top: calc(var(--step-y) + 72px);
}

.home-service-process li:nth-child(1) {
  --step-y: 102px;
}

.home-service-process li:nth-child(2) {
  --step-accent: var(--red);
  --step-glow: rgba(224, 64, 48, 0.14);
}

.home-service-process li:nth-child(3) {
  --step-accent: var(--ink);
  --step-glow: rgba(32, 32, 24, 0.12);
}

.home-service-process li:nth-child(4) {
  --step-accent: var(--blue);
  --step-glow: rgba(88, 176, 232, 0.14);
}

.home-service-process li:nth-child(5) {
  --step-y: 122px;
  --step-accent: var(--red);
  --step-glow: rgba(224, 64, 48, 0.14);
}

.home-service-process li::before {
  content: counter(service-process, decimal-leading-zero);
  position: absolute;
  left: 50%;
  top: var(--step-y);
  z-index: 3;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  margin: 0;
  border: 1px solid rgba(216, 225, 231, 0.9);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.96);
  color: rgba(32, 32, 24, 0.56);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 1px;
  box-shadow: 0 12px 26px rgba(20, 21, 18, 0.08);
  transform: translate(-50%, -50%);
  transition:
    background 320ms ease,
    border-color 320ms ease,
    color 320ms ease,
    transform 320ms cubic-bezier(0.19, 1, 0.22, 1),
    box-shadow 320ms ease;
}

.home-service-process li:hover::before {
  border-color: var(--step-accent);
  background: var(--step-accent);
  color: var(--white);
  box-shadow: 0 16px 32px rgba(20, 21, 18, 0.14);
  transform: translate(-50%, -50%) scale(1.06);
}

.home-service-process li:hover strong {
  color: var(--step-accent);
}

.home-service-process.is-visible li {
  opacity: 1;
  transform: translateY(0);
}

.home-service-process.is-visible li:nth-child(1) {
  transition-delay: 120ms;
}

.home-service-process.is-visible li:nth-child(2) {
  transition-delay: 220ms;
}

.home-service-process.is-visible li:nth-child(3) {
  transition-delay: 320ms;
}

.home-service-process.is-visible li:nth-child(4) {
  transition-delay: 420ms;
}

.home-service-process.is-visible li:nth-child(5) {
  transition-delay: 520ms;
}

.home-service-process strong {
  display: block;
  margin-bottom: 12px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 1.2px;
}

.home-service-process li span {
  display: block;
  margin: 0 auto;
  max-width: 210px;
}

@keyframes processLineGlint {
  0% {
    opacity: 0;
    transform: translateX(0);
  }

  18% {
    opacity: 0.48;
  }

  100% {
    opacity: 0;
    transform: translateX(min(760px, 64vw));
  }
}

.page-section {
  padding: 75px 0;
}

.section-center {
  text-align: center;
}

.section-center h2,
.catalogue-copy h2,
.banner-content h2,
.elite-reference h2,
.elite-showroom h2,
.contact-heading h2,
.page-hero h1,
.intro-title h2,
.living-copy h2,
.process-band-grid h2,
.showcase-head h2,
.contact-panel h2,
.contact-info-panel h2,
.legal-content h2,
.faq-layout h2,
.detail-copy h2 {
  margin: 12px auto 0;
  max-width: 860px;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 28px;
  font-weight: 300;
  line-height: 1.28;
  text-transform: uppercase;
  letter-spacing: 3px;
}

.elite-carousel-section {
  padding-top: 75px;
  background:
    linear-gradient(120deg, rgba(88, 176, 232, 0.07), transparent 32%),
    linear-gradient(300deg, rgba(224, 64, 48, 0.05), transparent 42%),
    repeating-linear-gradient(135deg, rgba(32, 32, 24, 0.035) 0, rgba(32, 32, 24, 0.035) 1px, transparent 1px, transparent 24px),
    var(--white);
}

.elite-slider {
  position: relative;
  width: 100%;
  margin: 70px 0 64px;
}

.elite-slider-window {
  width: 100%;
  overflow: hidden;
}

.elite-slider-track {
  display: flex;
  gap: 22px;
  padding: 0;
  transition: transform 560ms cubic-bezier(0.19, 1, 0.22, 1);
  will-change: transform;
}

.elite-slider-track.is-continuous {
  transition: none;
}

.elite-slide {
  flex: 0 0 calc((100% - 44px) / 3);
  height: 380px;
  overflow: hidden;
  background: var(--black);
}

.elite-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 620ms ease, filter 620ms ease;
}

.elite-slide:hover img,
.elite-slide:focus-visible img {
  filter: saturate(1.05) contrast(1.06);
  transform: scale(1.05);
}

.slider-arrow {
  position: absolute;
  top: 50%;
  z-index: 5;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(32, 32, 24, 0.24);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 12px 32px rgba(20, 21, 18, 0.1);
  transform: translateY(-50%);
  transition: background 220ms ease, border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.slider-prev {
  left: 22px;
}

.slider-next {
  right: 22px;
}

.slider-arrow::before {
  content: "";
  position: absolute;
  top: 18px;
  left: 20px;
  width: 13px;
  height: 13px;
  border-top: 2px solid var(--ink);
  border-left: 2px solid var(--ink);
}

.slider-prev::before {
  transform: rotate(-45deg);
}

.slider-next::before {
  left: 17px;
  transform: rotate(135deg);
}

.slider-arrow:hover,
.slider-arrow:focus-visible {
  border-color: rgba(32, 32, 24, 0.28);
  background: var(--white);
  box-shadow: 0 16px 40px rgba(20, 21, 18, 0.16);
  transform: translateY(-50%) scale(1.08);
}

.service-stack h3,
.process-cards h3,
.showcase-grid h3,
.contact-columns-mini h3,
.contact-facts h3,
.contact-boxes h3 {
  margin: 0 0 12px;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.24;
}

.service-stack p,
.process-cards p,
.showcase-grid p,
.contact-columns-mini p,
.contact-facts p,
.contact-boxes p,
.catalogue-copy p,
.detail-copy p,
.page-hero p,
.contact-info-panel p,
.legal-content p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
}

.elite-catalogue {
  min-height: 760px;
  background: var(--white);
}

.catalogue-layout {
  display: flex;
  align-items: center;
  gap: 86px;
}

.catalogue-visual,
.catalogue-copy {
  width: 50%;
}

.catalogue-book {
  position: relative;
  width: 410px;
  height: 540px;
  margin: 0 auto;
  overflow: visible;
  background: transparent;
  transform: rotate(-7deg);
  transform-style: preserve-3d;
  transition: transform 700ms cubic-bezier(0.19, 1, 0.22, 1);
}

.catalogue-book:hover {
  transform: rotate(-3deg) translateY(-8px);
}

.catalogue-book::before {
  content: "";
  position: absolute;
  left: 10%;
  right: 10%;
  bottom: -28px;
  height: 48px;
  border-radius: 50%;
  background: rgba(20, 21, 18, 0.18);
  filter: blur(20px);
}

.catalogue-card,
.book-cover {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border: 1px solid rgba(216, 225, 231, 0.9);
  background: var(--paper);
  box-shadow: 0 28px 74px rgba(20, 21, 18, 0.18);
  transform-origin: 50% 94%;
  transition:
    transform 780ms cubic-bezier(0.19, 1, 0.22, 1),
    box-shadow 780ms ease,
    filter 780ms ease;
}

.catalogue-card img {
  display: block;
  width: 100%;
  height: 76%;
  object-fit: cover;
}

.catalogue-card-label {
  height: 24%;
  padding: 22px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  background: rgba(255, 255, 255, 0.96);
}

.catalogue-card-label span {
  color: rgba(32, 32, 24, 0.36);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 30px;
  font-weight: 200;
  line-height: 1;
}

.catalogue-card-label strong {
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.8px;
}

.catalogue-card-1 {
  z-index: 1;
  transform: translate(-14px, 14px) rotate(-8deg);
}

.catalogue-card-2 {
  z-index: 2;
  transform: translate(-7px, 9px) rotate(-4deg);
}

.catalogue-card-3 {
  z-index: 3;
  transform: translate(7px, 8px) rotate(4deg);
}

.catalogue-card-4 {
  z-index: 4;
  transform: translate(13px, 14px) rotate(8deg);
}

.catalogue-book:hover .catalogue-card-1 {
  transform: translate(-126px, 34px) rotate(-20deg);
}

.catalogue-book:hover .catalogue-card-2 {
  transform: translate(-62px, 8px) rotate(-10deg);
}

.catalogue-book:hover .catalogue-card-3 {
  transform: translate(58px, 10px) rotate(10deg);
}

.catalogue-book:hover .catalogue-card-4 {
  transform: translate(120px, 38px) rotate(19deg);
}

.book-cover {
  z-index: 5;
  padding: 44px 34px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(246, 249, 251, 0.78)),
    linear-gradient(120deg, rgba(88, 176, 232, 0.16), transparent 45%, rgba(224, 64, 48, 0.12));
}

.catalogue-book:hover .book-cover {
  transform: translateY(-20px) rotate(1deg);
  box-shadow: 0 36px 86px rgba(20, 21, 18, 0.22);
}

.book-cover span,
.book-cover strong {
  color: var(--ink);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.08;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.book-cover strong {
  color: var(--red);
}

.book-cover small {
  margin-top: 18px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.catalogue-copy h2 {
  margin-left: 0;
  text-align: left;
}

.catalogue-copy p {
  max-width: 540px;
  margin-top: 24px;
  font-size: 18px;
}

.line-actions {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.line-actions a {
  padding-bottom: 9px;
  border-bottom: 1px solid currentColor;
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: color 220ms ease;
}

.line-actions a:hover,
.line-actions a:focus-visible {
  color: var(--red);
}

.elite-banner {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  text-align: center;
}

.elite-banner > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.05);
}

.elite-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(14, 15, 13, 0.72), rgba(14, 15, 13, 0.5)),
    linear-gradient(120deg, rgba(88, 176, 232, 0.18), rgba(224, 64, 48, 0.16));
}

.banner-content {
  position: relative;
  z-index: 2;
  max-width: 850px;
  padding: 90px 28px;
}

.banner-content h2 {
  margin: 12px 0 34px;
  color: var(--white);
}

.banner-content p {
  max-width: 760px;
  margin: -12px auto 30px;
  color: rgba(255, 255, 255, 0.78);
}

.banner-content .whitebutton {
  opacity: 1;
  transform: none;
}

.elite-reference {
  background: var(--white);
}

.reference-carousel {
  width: 100%;
  margin-top: 64px;
  padding: 0 28px 16px;
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
}

.reference-carousel article {
  position: relative;
  flex: 0 0 360px;
  min-height: 470px;
  overflow: hidden;
  background: var(--white);
  scroll-snap-align: start;
}

.reference-carousel img {
  width: 100%;
  height: 100%;
  min-height: 470px;
  object-fit: cover;
  opacity: 1;
  transition: transform 700ms ease, opacity 700ms ease;
}

.reference-carousel article:hover img {
  opacity: 1;
  transform: scale(1.05);
}

.elite-showroom {
  padding-bottom: 0;
  background: var(--white);
}

.showroom-columns {
  width: 100%;
  margin-top: 70px;
  display: flex;
}

.roomy {
  position: relative;
  width: 33.333%;
  height: 700px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  text-align: center;
  transition: width 500ms ease;
}

.roomy:hover,
.roomy:focus-visible {
  width: 38%;
}

.roomy img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.04);
  transition: transform 700ms ease, filter 700ms ease;
}

.roomy::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(14, 15, 13, 0.72), rgba(14, 15, 13, 0.22)),
    linear-gradient(120deg, rgba(88, 176, 232, 0.12), rgba(224, 64, 48, 0.12));
}

.roomy div {
  position: relative;
  z-index: 2;
  max-width: 330px;
  padding: 20px;
}

.roomy h3 {
  margin: 14px 0 34px;
  color: var(--white);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 36px;
  font-weight: 300;
  line-height: 1.18;
  text-transform: uppercase;
  letter-spacing: 4px;
}

.elite-contact {
  background:
    linear-gradient(120deg, rgba(88, 176, 232, 0.06), transparent 35%),
    var(--paper);
}

.contact-heading {
  max-width: 820px;
  margin-bottom: 44px;
}

.contact-heading h2 {
  margin-left: 0;
}

.contact-boxes {
  display: flex;
  gap: 20px;
  margin-bottom: 34px;
}

.contact-boxes article {
  flex: 1;
  padding: 34px;
  border-top: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 18px 54px rgba(20, 21, 18, 0.07);
}

.page-hero {
  position: relative;
  min-height: 620px;
  padding: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  background: var(--black);
  color: var(--white);
}

.page-hero-media > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.05);
}

.page-hero::after,
.page-hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(14, 15, 13, 0.62), rgba(14, 15, 13, 0.3), rgba(224, 64, 48, 0.1)),
    linear-gradient(0deg, rgba(14, 15, 13, 0.38), transparent 52%);
}

.page-hero-inner {
  position: relative;
  z-index: 2;
  padding-top: 84px;
}

.page-hero h1 {
  margin-left: 0;
  color: var(--white);
  font-size: 42px;
}

.page-hero p {
  max-width: 760px;
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
}

.page-hero p + p {
  margin-top: 14px;
}

.page-hero .masthead-actions {
  justify-content: flex-start;
}

.elite-category-page,
.service-detail-section,
.contact-page,
.legal-section {
  padding: 75px 0;
  background: var(--white);
}

.category-grid {
  max-width: 940px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  box-shadow: var(--shadow);
}

.category-grid-two .category-card {
  width: 50%;
  min-height: 430px;
}

.category-card {
  position: relative;
  overflow: hidden;
  background: var(--black);
}

.category-card img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.05);
  transition: transform 620ms ease;
}

.category-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(14, 15, 13, 0.78), transparent 55%);
}

.category-card span {
  position: absolute;
  left: 30px;
  bottom: 30px;
  z-index: 2;
  color: var(--white);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 22px;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 3px;
}

.category-card:hover img,
.category-card:focus-visible img {
  transform: scale(1.06);
}

.living-section,
.process-band,
.project-showcase,
.contact-map-section,
.intro-rail,
.catalogue-section {
  padding: 75px 0;
}

.living-section,
.project-showcase {
  background: var(--black);
  color: var(--white);
}

.living-grid,
.catalogue-grid,
.process-band-grid,
.contact-map-grid,
.contact-layout,
.service-detail-grid,
.footer-top {
  display: flex;
  gap: 58px;
  align-items: center;
}

.living-copy,
.service-stack,
.catalogue-visual,
.catalogue-copy,
.detail-copy,
.detail-visual {
  width: 50%;
}

.living-copy > p:first-child,
.catalogue-copy > p:first-child,
.process-band-grid > div > p:first-child,
.showcase-head p,
.contact-panel > p:first-child {
  margin: 0 0 14px;
  color: var(--blue);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.living-copy > p:not(:first-child) {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.catalogue-copy > p:not(:first-child),
.contact-panel p:not(:first-child) {
  margin: 0;
  color: var(--muted);
}

.living-portrait,
.detail-visual {
  margin: 42px 0 0;
  overflow: hidden;
  background: var(--black);
  box-shadow: var(--shadow);
}

.living-portrait img,
.detail-visual img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}

.living-portrait figcaption {
  display: none;
}

.service-stack {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.service-stack article,
.process-cards article,
.contact-columns-mini article {
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.05);
}

.service-number,
.process-cards span {
  display: inline-flex;
  margin-bottom: 24px;
  color: var(--blue);
  font-weight: 800;
}

.process-band {
  background: var(--mist);
}

.process-band-grid {
  align-items: flex-start;
}

.process-band-grid > div:first-child {
  width: 34%;
}

.process-cards {
  width: 66%;
  display: flex;
  gap: 16px;
}

.process-cards article {
  flex: 1;
  border-color: var(--line);
  background: var(--white);
}

.process-cards p {
  color: var(--muted);
}

.showcase-grid {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.showcase-grid article {
  flex: 1;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.06);
}

.showcase-grid article:nth-child(2) {
  margin-top: 56px;
}

.showcase-grid article:nth-child(3) {
  margin-top: 28px;
}

.showcase-grid img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.showcase-grid h3 {
  padding: 24px;
  color: var(--white);
}

.contact-map-section {
  background: var(--white);
}

.contact-map-grid {
  gap: 0;
  align-items: stretch;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.contact-panel {
  width: 56%;
  padding: 46px;
  background: var(--white);
}

.contact-panel h2 {
  margin-left: 0;
}

.contact-panel p:not(:first-child) {
  color: var(--muted);
}

.contact-columns-mini {
  display: flex;
  gap: 18px;
  margin-top: 34px;
}

.contact-columns-mini article {
  flex: 1;
  border-color: var(--line);
  background: var(--paper);
}

.contact-image-panel {
  position: relative;
  width: 44%;
  min-height: 420px;
  overflow: hidden;
  background: var(--black);
}

.contact-image-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(14, 15, 13, 0.78), transparent 58%);
}

.contact-image-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-image-label {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
  z-index: 1;
  color: var(--white);
}

.contact-image-label span {
  display: block;
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-image-label strong {
  display: block;
  margin-top: 8px;
  font-size: 28px;
  line-height: 1.15;
}

.service-detail-grid {
  align-items: flex-start;
}

.detail-copy h2 {
  margin-left: 0;
}

.detail-copy p {
  margin-bottom: 18px;
  font-size: 18px;
}

.references-page-showcase {
  padding-top: 132px;
}

.references-grid {
  flex-wrap: wrap;
}

.references-grid article {
  flex: 0 1 calc(33.333% - 16px);
}

.references-grid article:nth-child(2),
.references-grid article:nth-child(3) {
  margin-top: 0;
}

.references-grid article:nth-child(3n + 2) {
  margin-top: 48px;
}

.references-grid article:nth-child(3n) {
  margin-top: 24px;
}

.contact-layout {
  align-items: stretch;
}

.contact-info-panel,
.contact-form,
.legal-content {
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 18px 54px rgba(20, 21, 18, 0.08);
}

.contact-info-panel {
  width: 43%;
  padding: 42px;
}

.contact-info-panel h2 {
  margin-left: 0;
}

.contact-form {
  width: 57%;
  padding: 42px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-form h2 {
  margin: 0;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 28px;
  font-weight: 300;
  line-height: 1.28;
  text-transform: uppercase;
  letter-spacing: 3px;
}

.contact-form > p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
}

.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: var(--ink);
  font-size: 16px;
  font-weight: 700;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: 0;
  background: var(--paper);
  color: var(--ink);
  font-size: 16px;
}

.contact-form input[type="file"] {
  padding: 12px;
}

.contact-form .checkbox-label {
  flex-direction: row;
  align-items: flex-start;
  gap: 12px;
  font-weight: 600;
  line-height: 1.5;
}

.contact-form .checkbox-label input {
  width: auto;
  margin-top: 5px;
}

.contact-form textarea {
  min-height: 150px;
  resize: vertical;
}

.form-message {
  margin: 0;
  padding: 14px 16px;
  border-left: 3px solid var(--blue);
  background: var(--mist);
  color: var(--muted);
  font-size: 16px;
}

.form-message.is-success {
  border-left-color: #31864a;
  background: #edf8f0;
  color: #1f6234;
}

.form-message.is-error {
  border-left-color: var(--red);
  background: #fff0ee;
  color: #8f241b;
}

.contact-form [aria-invalid="true"] {
  border-color: var(--red);
  outline: 2px solid rgba(224, 64, 48, 0.16);
}

.contact-form-trap {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact-upload-help {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.4;
}

.contact-upload-list {
  display: grid;
  gap: 8px;
}

.contact-upload-list[hidden] {
  display: none;
}

.contact-upload-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 11px 13px;
  border: 1px solid var(--line);
  background: #f5f7f7;
}

.contact-upload-item > span {
  display: grid;
  min-width: 0;
  gap: 2px;
}

.contact-upload-item strong {
  overflow: hidden;
  font-size: 14px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.contact-upload-item small {
  color: var(--muted);
  font-size: 12px;
}

.contact-upload-item button {
  flex: none;
  padding: 7px 9px;
  border: 1px solid var(--red);
  background: transparent;
  color: var(--red);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-upload-item button:hover,
.contact-upload-item button:focus-visible {
  background: var(--red);
  color: var(--white);
}

.contact-form button[type="submit"]:disabled {
  cursor: wait;
  opacity: 0.62;
}

.legal-content {
  max-width: 900px;
  padding: 44px;
}

.legal-content h2 {
  margin-top: 34px;
  margin-left: 0;
}

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

.site-footer {
  width: 100%;
  background: var(--black);
  color: var(--white);
}

.footer-inner {
  width: 100%;
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 58px 28px 30px;
  display: flex;
  flex-direction: column;
  gap: 34px;
}

.footer-top {
  justify-content: space-between;
}

.footer-brand {
  margin-left: -20px;
}

.footer-brand img {
  width: 206px;
  padding: 0;
  background: transparent;
  border-radius: 0;
}

.footer-top p {
  max-width: 520px;
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  text-align: right;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color 180ms ease;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--blue);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.55);
  font-size: 14px;
}

.footer-bottom a {
  color: inherit;
  transition: color 220ms ease;
}

.footer-bottom a:hover,
.footer-bottom a:focus-visible {
  color: var(--blue);
}

.hero-button,
.btn,
.offer-button,
.dark-line-button,
.footer-cta,
.card-link {
  position: relative;
  isolation: isolate;
  min-width: 120px;
  min-height: 44px;
  padding: 10px 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: none;
  background: var(--blue);
  color: var(--white);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transform: skew(-21deg);
  transition: color 0.5s ease, transform 240ms ease;
}

.hero-button > span,
.btn > span,
.offer-button > span,
.dark-line-button > span,
.footer-cta > span,
.card-link > span {
  position: relative;
  z-index: 1;
  display: inline-block;
  transform: skew(21deg);
}

.hero-button::before,
.btn::before,
.offer-button::before,
.dark-line-button::before,
.footer-cta::before,
.card-link::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 100%;
  left: 0;
  z-index: -1;
  background: rgb(20, 20, 20);
  opacity: 0;
  transition: all 0.5s ease;
}

.hero-button:hover,
.hero-button:focus-visible,
.btn:hover,
.btn:focus-visible,
.offer-button:hover,
.offer-button:focus-visible,
.dark-line-button:hover,
.dark-line-button:focus-visible,
.footer-cta:hover,
.footer-cta:focus-visible,
.card-link:hover,
.card-link:focus-visible {
  color: var(--white);
  transform: skew(-21deg) translateY(-2px);
}

.hero-button:hover::before,
.hero-button:focus-visible::before,
.btn:hover::before,
.btn:focus-visible::before,
.offer-button:hover::before,
.offer-button:focus-visible::before,
.dark-line-button:hover::before,
.dark-line-button:focus-visible::before,
.footer-cta:hover::before,
.footer-cta:focus-visible::before,
.card-link:hover::before,
.card-link:focus-visible::before {
  left: 0;
  right: 0;
  opacity: 1;
}

.hero-button-light,
.btn-primary,
.offer-button,
.footer-cta,
.home-service-card-grid article:nth-child(odd) .card-link {
  background: var(--red);
}

.hero-button:not(.hero-button-light),
.dark-line-button,
.home-service-card-grid article:nth-child(even) .card-link {
  background: var(--blue);
}

/* Muss ganz am Ende stehen: sichtbarer, heller Hero-Verlauf */
.kenburns-stage::after {
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.62) 0%,
    rgba(0, 0, 0, 0.4) 34%,
    rgba(0, 0, 0, 0.14) 68%,
    rgba(0, 0, 0, 0.02) 100%
  );
  box-shadow: inset 28vw 0 120px rgba(0, 0, 0, 0.26);
}

.page-hero::after,
.page-hero-media::after {
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.6) 0%,
    rgba(0, 0, 0, 0.38) 34%,
    rgba(0, 0, 0, 0.13) 68%,
    rgba(0, 0, 0, 0.02) 100%
  );
  box-shadow: inset 26vw 0 110px rgba(0, 0, 0, 0.25);
}

.masthead-content h1,
.page-hero h1,
.masthead-content p,
.page-hero p {
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.38);
}

/* Finales, ruhiges Header-Menü. Muss am Dateiende stehen. */
@media (min-width: 1091px) {
  .primary-nav,
  .site-header:not(.is-scrolled) .primary-nav,
  .site-header.is-scrolled .primary-nav,
  .site-header.is-scrolled .primary-nav.is-open {
    position: relative;
    top: auto;
    right: auto;
    width: calc(100% - 510px);
    max-width: 900px;
    min-width: 0;
    margin: 0 auto;
    padding: 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: clamp(14px, 1.45vw, 26px);
    border: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
    transform: none;
  }

  .primary-nav > a,
  .primary-nav .nav-item > a,
  .site-header.is-scrolled .primary-nav > a,
  .site-header.is-scrolled .primary-nav .nav-item > a,
  .site-header.is-scrolled .primary-nav.is-open > a,
  .site-header.is-scrolled .primary-nav.is-open .nav-item > a {
    position: relative;
    isolation: isolate;
    width: auto;
    min-height: 38px;
    padding: 9px 2px 10px;
    overflow: visible;
    color: var(--ink);
    background: transparent;
    font-size: 15px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: 1.25px;
    text-transform: uppercase;
    transform: none;
    transition: color 180ms ease;
  }

  .primary-nav > a::before,
  .primary-nav .nav-item > a::before,
  .site-header.is-scrolled .primary-nav > a::before,
  .site-header.is-scrolled .primary-nav .nav-item > a::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 3px;
    height: 2px;
    background: var(--blue);
    opacity: 0;
    transform: scaleX(0.35);
    transform-origin: left;
    transition: opacity 180ms ease, transform 220ms ease;
  }

  .primary-nav .nav-item > a::before {
    background: linear-gradient(90deg, var(--blue), var(--red));
  }

  .primary-nav > a::after,
  .primary-nav .nav-item > a::after,
  .site-header.is-scrolled .primary-nav > a::after,
  .site-header.is-scrolled .primary-nav .nav-item > a::after {
    display: none;
  }

  .primary-nav > a:hover,
  .primary-nav > a:focus-visible,
  .primary-nav .nav-item > a:hover,
  .primary-nav .nav-item > a:focus-visible,
  .site-header.is-scrolled .primary-nav > a:hover,
  .site-header.is-scrolled .primary-nav > a:focus-visible,
  .site-header.is-scrolled .primary-nav .nav-item > a:hover,
  .site-header.is-scrolled .primary-nav .nav-item > a:focus-visible {
    color: var(--red);
    background: transparent;
    transform: none;
  }

  .primary-nav > a:hover::before,
  .primary-nav > a:focus-visible::before,
  .primary-nav .nav-item > a:hover::before,
  .primary-nav .nav-item > a:focus-visible::before,
  .site-header.is-scrolled .primary-nav > a:hover::before,
  .site-header.is-scrolled .primary-nav > a:focus-visible::before,
  .site-header.is-scrolled .primary-nav .nav-item > a:hover::before,
  .site-header.is-scrolled .primary-nav .nav-item > a:focus-visible::before {
    opacity: 1;
    transform: scaleX(1);
  }

  .primary-nav .nav-item,
  .site-header.is-scrolled .primary-nav .nav-item,
  .site-header.is-scrolled .primary-nav.is-open .nav-item {
    position: relative;
    width: auto;
    display: flex;
    align-items: center;
  }

  .dropdown-menu,
  .site-header.is-scrolled .primary-nav .dropdown-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    width: max-content;
    min-width: 220px;
    max-height: none;
    padding: 10px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    overflow: visible;
    border: 1px solid rgba(216, 225, 231, 0.9);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 20px 54px rgba(20, 21, 18, 0.14);
    opacity: 0;
    pointer-events: none;
    transform: translateY(8px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .has-dropdown:hover .dropdown-menu,
  .has-dropdown:focus-within .dropdown-menu,
  .site-header.is-scrolled .has-dropdown:hover .dropdown-menu,
  .site-header.is-scrolled .has-dropdown:focus-within .dropdown-menu {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .dropdown-menu a,
  .site-header.is-scrolled .primary-nav .dropdown-menu a {
    width: 100%;
    min-height: 40px;
    padding: 11px 14px;
    justify-content: flex-start;
    color: var(--ink);
    background: transparent;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 1.1px;
    transform: none;
    transition: color 180ms ease, background 180ms ease;
  }

  .dropdown-menu a::before,
  .dropdown-menu a::after,
  .site-header.is-scrolled .primary-nav .dropdown-menu a::before,
  .site-header.is-scrolled .primary-nav .dropdown-menu a::after {
    display: none;
  }

  .dropdown-menu a:hover,
  .dropdown-menu a:focus-visible,
  .site-header.is-scrolled .primary-nav .dropdown-menu a:hover,
  .site-header.is-scrolled .primary-nav .dropdown-menu a:focus-visible {
    color: var(--white);
    background: var(--ink);
    transform: none;
  }
}

/* Letzte Header-Regel: kleineres Logo und Navigation als animierte Button-Leiste. */
@media (min-width: 1091px) {
  .brand,
  .site-header.is-scrolled .brand {
    width: 240px;
  }

  .primary-nav,
  .site-header:not(.is-scrolled) .primary-nav,
  .site-header.is-scrolled .primary-nav,
  .site-header.is-scrolled .primary-nav.is-open {
    width: calc(100% - 470px);
    max-width: 940px;
    gap: 8px;
  }

  .primary-nav > a,
  .primary-nav .nav-item > a,
  .site-header.is-scrolled .primary-nav > a,
  .site-header.is-scrolled .primary-nav .nav-item > a,
  .site-header.is-scrolled .primary-nav.is-open > a,
  .site-header.is-scrolled .primary-nav.is-open .nav-item > a {
    --nav-button-accent: var(--blue);
    position: relative;
    isolation: isolate;
    min-height: 40px;
    padding: 10px 13px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 1px solid rgba(32, 32, 24, 0.16);
    background: rgba(255, 255, 255, 0.5);
    color: var(--ink);
    font-size: 15px;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 8px 22px rgba(20, 21, 18, 0.04);
    transform: none;
    transition: color 240ms ease, border-color 240ms ease, box-shadow 240ms ease, transform 240ms ease;
  }

  .primary-nav .nav-item > a,
  .primary-nav > a:nth-of-type(2),
  .primary-nav > a:nth-of-type(4) {
    --nav-button-accent: var(--red);
  }

  .primary-nav > a::before,
  .primary-nav .nav-item > a::before,
  .site-header.is-scrolled .primary-nav > a::before,
  .site-header.is-scrolled .primary-nav .nav-item > a::before,
  .site-header.is-scrolled .primary-nav.is-open > a::before,
  .site-header.is-scrolled .primary-nav.is-open .nav-item > a::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 100%;
    z-index: -1;
    display: block;
    height: auto;
    background: var(--red);
    opacity: 0;
    transform: none;
    transition: right 0.42s ease, opacity 0.42s ease;
  }

  .primary-nav > a::after,
  .primary-nav .nav-item > a::after,
  .site-header.is-scrolled .primary-nav > a::after,
  .site-header.is-scrolled .primary-nav .nav-item > a::after,
  .site-header.is-scrolled .primary-nav.is-open > a::after,
  .site-header.is-scrolled .primary-nav.is-open .nav-item > a::after {
    content: "";
    position: absolute;
    left: 0;
    right: auto;
    top: auto;
    bottom: 0;
    z-index: 1;
    width: 100%;
    height: 3px;
    display: block;
    background: var(--nav-button-accent);
    opacity: 1;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 240ms ease;
  }

  .primary-nav > a:hover,
  .primary-nav > a:focus-visible,
  .primary-nav .nav-item > a:hover,
  .primary-nav .nav-item > a:focus-visible,
  .site-header.is-scrolled .primary-nav > a:hover,
  .site-header.is-scrolled .primary-nav > a:focus-visible,
  .site-header.is-scrolled .primary-nav .nav-item > a:hover,
  .site-header.is-scrolled .primary-nav .nav-item > a:focus-visible {
    border-color: rgb(20, 20, 20);
    box-shadow: 0 14px 32px rgba(20, 21, 18, 0.12);
    color: var(--white);
    transform: translateY(-2px);
  }

  .primary-nav > a:hover::before,
  .primary-nav > a:focus-visible::before,
  .primary-nav .nav-item > a:hover::before,
  .primary-nav .nav-item > a:focus-visible::before,
  .site-header.is-scrolled .primary-nav > a:hover::before,
  .site-header.is-scrolled .primary-nav > a:focus-visible::before,
  .site-header.is-scrolled .primary-nav .nav-item > a:hover::before,
  .site-header.is-scrolled .primary-nav .nav-item > a:focus-visible::before {
    right: 0;
    opacity: 1;
  }

  .primary-nav > a:hover::after,
  .primary-nav > a:focus-visible::after,
  .primary-nav .nav-item > a:hover::after,
  .primary-nav .nav-item > a:focus-visible::after,
  .site-header.is-scrolled .primary-nav > a:hover::after,
  .site-header.is-scrolled .primary-nav > a:focus-visible::after,
  .site-header.is-scrolled .primary-nav .nav-item > a:hover::after,
  .site-header.is-scrolled .primary-nav .nav-item > a:focus-visible::after {
    transform: scaleX(1);
  }
}

@media (max-width: 1090px) {
  .brand {
    width: 170px;
  }
}

@media (max-width: 680px) {
  .brand {
    width: 145px;
  }
}

/* Stabile Typografie und kompakter Abstand in den Über-uns-Teaser-Cards. */
.elite-home .about-visual-column .about-benefits-grid article,
.elite-home .about-visual-column .about-benefits-grid article:hover {
  gap: 0;
}

.elite-home .about-visual-column .about-benefits-grid .benefit-icon {
  height: 72px;
  flex-basis: 72px;
  margin: 0 auto 14px;
}

.elite-home .about-visual-column .about-benefits-grid article h3,
.elite-home .about-visual-column .about-benefits-grid article:hover h3 {
  min-height: 44px;
  margin: 0 0 6px;
  font-size: 21px !important;
  line-height: 1.05;
}

/* Finale Referenzen-Teaser-Section: automatisch wechselnder Projektfilmstreifen. */
.reference-filmstrip-section {
  padding: 120px 0;
  background: #f1f4f5;
}

.reference-filmstrip-heading {
  max-width: 900px;
  margin: 0 auto 66px;
}

.reference-filmstrip-heading .section-note {
  display: block;
  text-align: center;
}

.reference-filmstrip-heading p {
  max-width: 720px;
  margin: 25px auto 0;
  color: var(--muted) !important;
}

.reference-filmstrip {
  display: flex;
  height: 650px;
  border: 1px solid rgba(32, 32, 24, 0.18);
  overflow: hidden;
  background: #111411;
  box-shadow: 0 34px 90px rgba(20, 21, 18, 0.17);
}

.reference-filmstrip__card {
  position: relative;
  display: block;
  min-width: 82px;
  flex: 0.74;
  padding: 0;
  border: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.22);
  overflow: hidden;
  background: #111411;
  color: #fff;
  text-align: left;
  cursor: pointer;
  transition: flex 540ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reference-filmstrip__card:last-child {
  border-right: 0;
}

.reference-filmstrip__card.is-active {
  flex: 4.65;
}

.reference-filmstrip__card > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
  filter: none;
  transform: scale(1.035);
  transition: opacity 420ms ease, filter 420ms ease, transform 5.2s linear;
}

.reference-filmstrip__card.is-active > img {
  opacity: 1;
  filter: none;
  transform: scale(1.08);
}

.reference-filmstrip__shade {
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: 0;
  left: 0;
  height: 170px;
  background: linear-gradient(180deg, rgba(8, 10, 9, 0) 0%, rgba(8, 10, 9, 0.18) 30%, rgba(8, 10, 9, 0.82) 100%);
  pointer-events: none;
}

.reference-filmstrip__number {
  position: absolute;
  z-index: 2;
  left: 24px;
  top: 24px;
  color: #fff;
  font-family: var(--headline-font);
  font-size: 42px;
  font-weight: 700;
  line-height: 1;
}

.reference-filmstrip__compact-title {
  position: absolute;
  z-index: 2;
  left: 27px;
  bottom: 28px;
  max-height: 310px;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.82);
  font-family: var(--headline-font);
  font-size: 19px;
  font-weight: 700;
  line-height: 1;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  transition: opacity 180ms ease;
}

.reference-filmstrip__card.is-active .reference-filmstrip__compact-title {
  opacity: 0;
}

.reference-filmstrip__category {
  position: absolute;
  z-index: 3;
  left: 24px;
  bottom: 28px;
  padding: 10px 13px;
  background: rgba(17, 20, 17, 0.82);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1.2px;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.reference-filmstrip__card.is-active .reference-filmstrip__category {
  background: var(--red);
}

.reference-filmstrip__copy {
  position: absolute;
  z-index: 2;
  right: 36px;
  bottom: 42px;
  left: 36px;
  display: block;
  min-width: 470px;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 260ms ease 140ms, transform 300ms ease 140ms;
}

.reference-filmstrip__card.is-active .reference-filmstrip__copy {
  opacity: 1;
  transform: none;
}

.reference-filmstrip__copy small {
  display: block;
  color: var(--blue);
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.reference-filmstrip__copy strong {
  display: block;
  max-width: 720px;
  margin-top: 13px;
  font-family: var(--headline-font);
  font-size: clamp(34px, 3.5vw, 49px);
  font-weight: 700;
  line-height: 0.98;
}

.reference-filmstrip__copy em {
  display: block;
  max-width: 660px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 17px;
  font-style: normal;
  line-height: 1.5;
}

.reference-filmstrip__timer {
  position: absolute;
  z-index: 4;
  right: 0;
  bottom: 0;
  left: 0;
  height: 5px;
  background: var(--red);
  opacity: 0;
  transform: scaleX(0);
  transform-origin: left;
}

.reference-filmstrip__card.is-active .reference-filmstrip__timer {
  opacity: 1;
  animation: reference-filmstrip-timer 5.2s linear forwards;
}

.reference-filmstrip:hover .reference-filmstrip__card.is-active .reference-filmstrip__timer,
.reference-filmstrip:focus-within .reference-filmstrip__card.is-active .reference-filmstrip__timer {
  animation-play-state: paused;
}

@keyframes reference-filmstrip-timer {
  to { transform: scaleX(1); }
}

.reference-filmstrip-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 38px;
  padding: 28px 32px;
  background: #111411;
  color: #fff;
}

.reference-filmstrip-cta p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72) !important;
  font-size: 16px !important;
}

.reference-filmstrip-cta a {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  padding: 13px 23px;
  background: var(--red);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  white-space: nowrap;
  transition: background 180ms ease, transform 180ms ease;
}

.reference-filmstrip-cta a:hover,
.reference-filmstrip-cta a:focus-visible {
  background: var(--blue);
  transform: translateY(-2px);
}

@media (prefers-reduced-motion: reduce) {
  .reference-filmstrip__card,
  .reference-filmstrip__card > img,
  .reference-filmstrip__copy {
    transition: none;
  }

  .reference-filmstrip__card.is-active .reference-filmstrip__timer {
    animation: none;
    transform: scaleX(1);
  }
}

@media (max-width: 760px) {
  .reference-filmstrip-section {
    padding: 90px 0;
  }

  .reference-filmstrip-heading {
    margin-bottom: 44px;
  }

  .reference-filmstrip {
    display: block;
    height: auto;
  }

  .reference-filmstrip__card,
  .reference-filmstrip__card.is-active {
    display: block;
    width: 100%;
    height: 102px;
    min-width: 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.22);
    transition: height 460ms cubic-bezier(0.2, 0.8, 0.2, 1);
  }

  .reference-filmstrip__card.is-active {
    height: 430px;
  }

  .reference-filmstrip__card:last-child {
    border-bottom: 0;
  }

  .reference-filmstrip__number {
    left: 18px;
    top: 18px;
    font-size: 34px;
  }

  .reference-filmstrip__compact-title {
    left: 70px;
    right: 18px;
    bottom: auto;
    top: 25px;
    max-height: none;
    font-size: 18px;
    writing-mode: initial;
    transform: none;
  }

  .reference-filmstrip__category {
    left: 70px;
    bottom: auto;
    top: 30px;
  }

  .reference-filmstrip__copy {
    right: 24px;
    bottom: 30px;
    left: 24px;
    min-width: 0;
  }

  .reference-filmstrip__copy strong {
    font-size: 34px;
  }

  .reference-filmstrip-cta {
    align-items: stretch;
    flex-direction: column;
  }

  .reference-filmstrip-cta a {
    justify-content: center;
    text-align: center;
  }
}

.elite-home .about-visual-column .about-benefits-grid article p {
  margin: 0;
  font-size: 16px !important;
  line-height: 1.4;
}

/* Navigation: Hover-Linie klar unter dem Menüpunkt, nicht darüber. */
@media (min-width: 1091px) {
  .primary-nav > a::before,
  .primary-nav .nav-item > a::before,
  .site-header.is-scrolled .primary-nav > a::before,
  .site-header.is-scrolled .primary-nav .nav-item > a::before,
  .site-header.is-scrolled .primary-nav.is-open > a::before,
  .site-header.is-scrolled .primary-nav.is-open .nav-item > a::before {
    display: none;
  }

  .primary-nav > a::after,
  .primary-nav .nav-item > a::after,
  .site-header.is-scrolled .primary-nav > a::after,
  .site-header.is-scrolled .primary-nav .nav-item > a::after,
  .site-header.is-scrolled .primary-nav.is-open > a::after,
  .site-header.is-scrolled .primary-nav.is-open .nav-item > a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% - 2px);
    bottom: auto;
    width: 100%;
    height: 2px;
    display: block;
    background: var(--blue);
    opacity: 0;
    transform: scaleX(0.35);
    transform-origin: left;
    transition: opacity 180ms ease, transform 220ms ease;
  }

  .primary-nav .nav-item > a::after,
  .site-header.is-scrolled .primary-nav .nav-item > a::after,
  .site-header.is-scrolled .primary-nav.is-open .nav-item > a::after {
    background: linear-gradient(90deg, var(--blue), var(--red));
  }

  .primary-nav > a:hover::after,
  .primary-nav > a:focus-visible::after,
  .primary-nav .nav-item > a:hover::after,
  .primary-nav .nav-item > a:focus-visible::after,
  .site-header.is-scrolled .primary-nav > a:hover::after,
  .site-header.is-scrolled .primary-nav > a:focus-visible::after,
  .site-header.is-scrolled .primary-nav .nav-item > a:hover::after,
  .site-header.is-scrolled .primary-nav .nav-item > a:focus-visible::after,
  .site-header.is-scrolled .primary-nav.is-open > a:hover::after,
  .site-header.is-scrolled .primary-nav.is-open > a:focus-visible::after,
  .site-header.is-scrolled .primary-nav.is-open .nav-item > a:hover::after,
  .site-header.is-scrolled .primary-nav.is-open .nav-item > a:focus-visible::after {
    opacity: 1;
    transform: scaleX(1);
  }

  .dropdown-menu a::after,
  .site-header.is-scrolled .primary-nav .dropdown-menu a::after,
  .site-header.is-scrolled .primary-nav.is-open .dropdown-menu a::after {
    display: none;
  }
}

/* Final: kleineres Logo und Navigation als animierte Button-Leiste. */
@media (min-width: 1091px) {
  .brand,
  .site-header.is-scrolled .brand {
    width: 220px;
  }

  .primary-nav,
  .site-header:not(.is-scrolled) .primary-nav,
  .site-header.is-scrolled .primary-nav,
  .site-header.is-scrolled .primary-nav.is-open {
    width: calc(100% - 470px);
    max-width: 940px;
    gap: 8px;
  }

  .primary-nav > a,
  .primary-nav .nav-item > a,
  .site-header.is-scrolled .primary-nav > a,
  .site-header.is-scrolled .primary-nav .nav-item > a,
  .site-header.is-scrolled .primary-nav.is-open > a,
  .site-header.is-scrolled .primary-nav.is-open .nav-item > a {
    --nav-button-accent: var(--blue);
    position: relative;
    isolation: isolate;
    min-height: 40px;
    padding: 10px 13px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 1px solid rgba(32, 32, 24, 0.16);
    background: rgba(255, 255, 255, 0.5);
    color: var(--ink);
    font-size: 13px;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 8px 22px rgba(20, 21, 18, 0.04);
    transform: none;
    transition: color 240ms ease, border-color 240ms ease, box-shadow 240ms ease, transform 240ms ease;
  }

  .primary-nav .nav-item > a {
    --nav-button-accent: var(--red);
  }

  .primary-nav > a:nth-of-type(2),
  .primary-nav > a:nth-of-type(4) {
    --nav-button-accent: var(--red);
  }

  .primary-nav > a::before,
  .primary-nav .nav-item > a::before,
  .site-header.is-scrolled .primary-nav > a::before,
  .site-header.is-scrolled .primary-nav .nav-item > a::before,
  .site-header.is-scrolled .primary-nav.is-open > a::before,
  .site-header.is-scrolled .primary-nav.is-open .nav-item > a::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 100%;
    z-index: -1;
    display: block;
    height: auto;
    background: rgb(20, 20, 20);
    opacity: 0;
    transform: none;
    transition: right 0.42s ease, opacity 0.42s ease;
  }

  .primary-nav > a::after,
  .primary-nav .nav-item > a::after,
  .site-header.is-scrolled .primary-nav > a::after,
  .site-header.is-scrolled .primary-nav .nav-item > a::after,
  .site-header.is-scrolled .primary-nav.is-open > a::after,
  .site-header.is-scrolled .primary-nav.is-open .nav-item > a::after {
    content: "";
    position: absolute;
    left: 0;
    right: auto;
    top: auto;
    bottom: 0;
    z-index: 1;
    width: 100%;
    height: 3px;
    display: block;
    background: var(--nav-button-accent);
    opacity: 1;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 240ms ease;
  }

  .primary-nav > a:hover,
  .primary-nav > a:focus-visible,
  .primary-nav .nav-item > a:hover,
  .primary-nav .nav-item > a:focus-visible,
  .site-header.is-scrolled .primary-nav > a:hover,
  .site-header.is-scrolled .primary-nav > a:focus-visible,
  .site-header.is-scrolled .primary-nav .nav-item > a:hover,
  .site-header.is-scrolled .primary-nav .nav-item > a:focus-visible {
    border-color: rgb(20, 20, 20);
    box-shadow: 0 14px 32px rgba(20, 21, 18, 0.12);
    color: var(--white);
    transform: translateY(-2px);
  }

  .primary-nav > a:hover::before,
  .primary-nav > a:focus-visible::before,
  .primary-nav .nav-item > a:hover::before,
  .primary-nav .nav-item > a:focus-visible::before,
  .site-header.is-scrolled .primary-nav > a:hover::before,
  .site-header.is-scrolled .primary-nav > a:focus-visible::before,
  .site-header.is-scrolled .primary-nav .nav-item > a:hover::before,
  .site-header.is-scrolled .primary-nav .nav-item > a:focus-visible::before {
    right: 0;
    opacity: 1;
  }

  .primary-nav > a:hover::after,
  .primary-nav > a:focus-visible::after,
  .primary-nav .nav-item > a:hover::after,
  .primary-nav .nav-item > a:focus-visible::after,
  .site-header.is-scrolled .primary-nav > a:hover::after,
  .site-header.is-scrolled .primary-nav > a:focus-visible::after,
  .site-header.is-scrolled .primary-nav .nav-item > a:hover::after,
  .site-header.is-scrolled .primary-nav .nav-item > a:focus-visible::after {
    transform: scaleX(1);
  }

  .dropdown-menu,
  .site-header.is-scrolled .primary-nav .dropdown-menu {
    top: calc(100% + 8px);
  }
}

@media (max-width: 1090px) {
  .brand {
    width: 170px;
  }
}

@media (max-width: 680px) {
  .brand {
    width: 145px;
  }
}

/* Finales Navigationsdesign: groesser, kantig und passend zu den CTA-Buttons. */
@media (min-width: 1091px) {
  .primary-nav,
  .site-header:not(.is-scrolled) .primary-nav,
  .site-header.is-scrolled .primary-nav,
  .site-header.is-scrolled .primary-nav.is-open {
    gap: clamp(8px, 0.85vw, 16px);
  }

  .primary-nav > a,
  .primary-nav .nav-item > a,
  .site-header.is-scrolled .primary-nav > a,
  .site-header.is-scrolled .primary-nav .nav-item > a,
  .site-header.is-scrolled .primary-nav.is-open > a,
  .site-header.is-scrolled .primary-nav.is-open .nav-item > a {
    position: relative;
    isolation: isolate;
    min-height: 42px;
    padding: 12px 14px;
    overflow: hidden;
    color: var(--ink);
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 1.2px;
    transition: color 220ms ease, transform 220ms ease;
  }

  .primary-nav > a::before,
  .primary-nav .nav-item > a::before,
  .site-header.is-scrolled .primary-nav > a::before,
  .site-header.is-scrolled .primary-nav .nav-item > a::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: rgb(20, 20, 20);
    transform: translateY(101%);
    transition: transform 260ms cubic-bezier(0.19, 1, 0.22, 1);
  }

  .primary-nav > a::after,
  .primary-nav .nav-item > a::after,
  .site-header.is-scrolled .primary-nav > a::after,
  .site-header.is-scrolled .primary-nav .nav-item > a::after {
    left: 0;
    right: auto;
    top: 0;
    bottom: 0;
    width: 4px;
    height: auto;
    display: block;
    background: var(--blue);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 220ms ease;
  }

  .primary-nav .nav-item > a::after,
  .primary-nav > a:nth-of-type(2)::after,
  .primary-nav > a:nth-of-type(4)::after {
    background: var(--red);
  }

  .primary-nav > a:hover,
  .primary-nav > a:focus-visible,
  .primary-nav .nav-item > a:hover,
  .primary-nav .nav-item > a:focus-visible,
  .site-header.is-scrolled .primary-nav > a:hover,
  .site-header.is-scrolled .primary-nav > a:focus-visible,
  .site-header.is-scrolled .primary-nav .nav-item > a:hover,
  .site-header.is-scrolled .primary-nav .nav-item > a:focus-visible {
    color: var(--white);
    transform: translateY(-1px);
  }

  .primary-nav > a:hover::before,
  .primary-nav > a:focus-visible::before,
  .primary-nav .nav-item > a:hover::before,
  .primary-nav .nav-item > a:focus-visible::before,
  .site-header.is-scrolled .primary-nav > a:hover::before,
  .site-header.is-scrolled .primary-nav > a:focus-visible::before,
  .site-header.is-scrolled .primary-nav .nav-item > a:hover::before,
  .site-header.is-scrolled .primary-nav .nav-item > a:focus-visible::before {
    transform: translateY(0);
  }

  .primary-nav > a:hover::after,
  .primary-nav > a:focus-visible::after,
  .primary-nav .nav-item > a:hover::after,
  .primary-nav .nav-item > a:focus-visible::after,
  .site-header.is-scrolled .primary-nav > a:hover::after,
  .site-header.is-scrolled .primary-nav > a:focus-visible::after,
  .site-header.is-scrolled .primary-nav .nav-item > a:hover::after,
  .site-header.is-scrolled .primary-nav .nav-item > a:focus-visible::after {
    transform: scaleY(1);
  }

  .dropdown-menu,
  .site-header.is-scrolled .primary-nav .dropdown-menu {
    padding: 8px;
    gap: 4px;
    border: 1px solid rgba(32, 32, 24, 0.12);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 22px 54px rgba(20, 21, 18, 0.16);
  }

  .dropdown-menu a,
  .site-header.is-scrolled .primary-nav .dropdown-menu a {
    position: relative;
    min-height: 40px;
    padding: 11px 14px 11px 34px;
    overflow: hidden;
    color: var(--ink);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1.1px;
    transition: color 220ms ease, transform 220ms ease;
  }

  .dropdown-menu a::before,
  .site-header.is-scrolled .primary-nav .dropdown-menu a::before {
    content: "";
    position: absolute;
    left: 14px;
    top: 50%;
    width: 8px;
    height: 8px;
    background: var(--red);
    transform: translateY(-50%) rotate(45deg);
  }

  .dropdown-menu a::after,
  .site-header.is-scrolled .primary-nav .dropdown-menu a::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    width: auto;
    height: auto;
    background: rgb(20, 20, 20);
    transform: translateX(-101%);
    transition: transform 260ms cubic-bezier(0.19, 1, 0.22, 1);
  }

  .dropdown-menu a:hover,
  .dropdown-menu a:focus-visible,
  .site-header.is-scrolled .primary-nav .dropdown-menu a:hover,
  .site-header.is-scrolled .primary-nav .dropdown-menu a:focus-visible {
    color: var(--white);
    transform: translateX(2px);
  }

  .dropdown-menu a:hover::after,
  .dropdown-menu a:focus-visible::after,
  .site-header.is-scrolled .primary-nav .dropdown-menu a:hover::after,
  .site-header.is-scrolled .primary-nav .dropdown-menu a:focus-visible::after {
    transform: translateX(0);
  }
}

/* Finaler Header: kleineres Logo, volle Desktop-Navigation auch beim Scrollen. */
@media (min-width: 1091px) {
  .header-shell,
  .site-header.is-scrolled .header-shell {
    min-height: 84px;
    padding: 14px 34px;
    justify-content: center;
    gap: 24px;
  }

  .brand,
  .site-header.is-scrolled .brand {
    left: 34px;
    width: 258px;
    transform: translateY(-50%);
  }

  .primary-nav,
  .site-header:not(.is-scrolled) .primary-nav,
  .site-header.is-scrolled .primary-nav,
  .site-header.is-scrolled .primary-nav.is-open {
    position: relative;
    top: auto;
    right: auto;
    width: calc(100% - 510px);
    max-width: 850px;
    min-width: 0;
    height: auto;
    margin: 0 auto;
    padding: 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: clamp(12px, 1.35vw, 24px);
    border: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
    transform: none;
  }

  .primary-nav a,
  .site-header.is-scrolled .primary-nav a,
  .site-header.is-scrolled .primary-nav.is-open a {
    width: auto;
    min-height: 32px;
    padding: 7px 0;
    justify-content: center;
    color: var(--ink);
    font-size: 12px;
    letter-spacing: 1.1px;
  }

  .primary-nav .nav-item,
  .site-header.is-scrolled .primary-nav .nav-item,
  .site-header.is-scrolled .primary-nav.is-open .nav-item {
    position: relative;
    width: auto;
    display: flex;
    align-items: center;
  }

  .site-header.is-scrolled .primary-nav .dropdown-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    width: max-content;
    min-width: 0;
    max-height: none;
    padding: 12px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
    overflow: visible;
    border: 1px solid rgba(216, 225, 231, 0.88);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 24px 70px rgba(20, 21, 18, 0.14);
    opacity: 0;
    pointer-events: none;
    transform: translateY(10px);
  }

  .site-header.is-scrolled .has-dropdown:hover .dropdown-menu,
  .site-header.is-scrolled .has-dropdown:focus-within .dropdown-menu {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-header.is-scrolled .primary-nav > a::after,
  .site-header.is-scrolled .primary-nav.is-open > a::after {
    left: 0;
    right: 0;
    bottom: 0;
    display: block;
    background: var(--ink);
  }

  .nav-toggle,
  .site-header.is-scrolled .nav-toggle {
    display: none;
  }

  .header-actions,
  .site-header.is-scrolled .header-actions {
    top: 50%;
    right: 34px;
    gap: 0;
    margin-right: 0;
    transform: translateY(-50%);
  }

  .header-consultation,
  .site-header.is-scrolled .header-consultation {
    display: inline-flex;
    height: 44px;
    min-height: 44px;
    padding: 0 22px;
    background: var(--red);
    color: var(--white);
  }
}

@media (max-width: 1090px) {
  .brand {
    width: 190px;
  }
}

@media (max-width: 680px) {
  .brand {
    width: 162px;
  }
}

/* Finaler Hero-Schatten: links stark, rechts weniger dunkel, insgesamt dunkler */
.kenburns-stage::after {
  background:
    linear-gradient(90deg, rgba(2, 3, 3, 0.46) 0%, rgba(2, 3, 3, 0.28) 32%, rgba(2, 3, 3, 0.12) 64%, rgba(2, 3, 3, 0.02) 100%),
    linear-gradient(180deg, rgba(14, 15, 13, 0.02), rgba(14, 15, 13, 0.08));
  box-shadow: inset 24vw 0 90px rgba(0, 0, 0, 0.16);
}

.page-hero::after,
.page-hero-media::after {
  background:
    linear-gradient(90deg, rgba(2, 3, 3, 0.44) 0%, rgba(2, 3, 3, 0.26) 32%, rgba(2, 3, 3, 0.1) 64%, rgba(2, 3, 3, 0.02) 100%),
    linear-gradient(180deg, rgba(14, 15, 13, 0.02), rgba(14, 15, 13, 0.08));
  box-shadow: inset 22vw 0 84px rgba(0, 0, 0, 0.15);
}

.title-word-bath,
.masthead-content .title-word-bath {
  display: inline;
  color: var(--blue);
}

.title-word-tiles,
.masthead-content .title-word-tiles {
  display: inline;
  color: var(--red);
}

.masthead-content h1 .title-word-bath,
.masthead-content h1 .title-word-tiles,
.page-hero h1 .title-word-bath,
.page-hero h1 .title-word-tiles {
  font: inherit;
  line-height: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
}

.hero-button-light:hover,
.hero-button-light:focus-visible,
.btn-primary:hover,
.btn-primary:focus-visible,
.offer-button:hover,
.offer-button:focus-visible,
.footer-cta:hover,
.footer-cta:focus-visible,
.home-service-card-grid article:nth-child(odd) .card-link:hover,
.home-service-card-grid article:nth-child(odd) .card-link:focus-visible {
  background: var(--red);
}

.hero-button:not(.hero-button-light):hover,
.hero-button:not(.hero-button-light):focus-visible,
.dark-line-button:hover,
.dark-line-button:focus-visible,
.home-service-card-grid article:nth-child(even) .card-link:hover,
.home-service-card-grid article:nth-child(even) .card-link:focus-visible {
  background: var(--blue);
}

.masthead-content {
  align-items: flex-start;
  text-align: left;
}

.masthead-content p,
.page-hero p {
  margin-left: 0;
  margin-right: 0;
  color: rgba(255, 255, 255, 0.92);
}

.masthead-actions,
.page-hero .masthead-actions {
  justify-content: flex-start;
}

.kenburns-stage::after {
  background:
    linear-gradient(90deg, rgba(7, 8, 7, 0.86) 0%, rgba(7, 8, 7, 0.66) 34%, rgba(7, 8, 7, 0.3) 68%, rgba(7, 8, 7, 0.12) 100%),
    linear-gradient(180deg, rgba(14, 15, 13, 0.2), rgba(14, 15, 13, 0.34));
}

.page-hero::after,
.page-hero-media::after {
  background:
    linear-gradient(90deg, rgba(7, 8, 7, 0.84) 0%, rgba(7, 8, 7, 0.62) 36%, rgba(7, 8, 7, 0.28) 70%, rgba(7, 8, 7, 0.1) 100%),
    linear-gradient(180deg, rgba(14, 15, 13, 0.18), rgba(14, 15, 13, 0.32));
}

.card-link {
  width: max-content;
  max-width: 100%;
  margin-top: 22px;
  border-bottom: 0;
  font-size: 12px;
  letter-spacing: 1.2px;
}

.footer-cta {
  margin-top: 22px;
  padding-bottom: 10px;
  border-bottom: 0;
}

.header-call {
  overflow: hidden;
  border: none;
  background: var(--red);
  color: var(--white);
  transform: translateY(-50%) skew(-21deg);
}

.header-call-copy {
  transform: skew(21deg);
}

.header-call::before {
  top: 0;
  bottom: 0;
  right: 100%;
  left: 0;
  z-index: 0;
  background: rgb(20, 20, 20);
  opacity: 0;
  transform: none;
  transition: all 0.5s ease;
}

.header-call:hover,
.header-call:focus-visible {
  color: var(--white);
  transform: translateY(calc(-50% - 2px)) skew(-21deg);
}

.header-call:hover::before,
.header-call:focus-visible::before {
  left: 0;
  right: 0;
  opacity: 1;
  transform: none;
}

.mobile-quick-call {
  background: var(--blue);
}

@media (max-width: 1090px) {
  .header-call,
  .header-call:hover,
  .header-call:focus-visible {
    transform: skew(-21deg);
  }
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 0.8fr 1.05fr;
  gap: 44px;
  align-items: start;
}

.footer-column h2 {
  margin: 0 0 18px;
  color: var(--white);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.8px;
}

.footer-column p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 15px;
  line-height: 1.65;
}

.footer-column p + p {
  margin-top: 16px;
}

.footer-column > a:not(.footer-brand):not(.footer-cta),
.footer-contact a {
  display: table;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color 180ms ease;
}

.footer-contact a {
  display: inline;
  margin-top: 0;
  text-transform: none;
  letter-spacing: 0;
}

.footer-contact__list {
  display: grid;
  gap: 16px;
}

.footer-contact .footer-contact__item {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr);
  align-items: start;
  gap: 12px;
  margin: 0;
  color: rgba(255, 255, 255, .72);
  text-decoration: none;
}

.footer-contact__icon {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .18);
  background: rgba(255, 255, 255, .06);
}

.footer-contact__icon img {
  width: 17px;
  height: 17px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.footer-contact__text {
  display: grid;
  gap: 3px;
  min-width: 0;
  text-align: left;
}

.footer-contact__text strong,
.footer-contact__text > span {
  font-size: 15px;
  line-height: 1.45;
}

.footer-contact__text strong {
  color: #fff;
  font-weight: 800;
}

.footer-contact__text > span {
  color: rgba(255, 255, 255, .72);
  font-weight: 500;
}

.footer-contact .footer-contact__item:hover .footer-contact__icon,
.footer-contact .footer-contact__item:focus-visible .footer-contact__icon {
  border-color: var(--blue);
  background: var(--blue);
}

.footer-column > a:hover,
.footer-column > a:focus-visible,
.footer-contact a:hover,
.footer-contact a:focus-visible {
  color: var(--blue);
}

.footer-company p {
  margin-top: 18px;
}

.footer-company {
  text-align: left;
}

.footer-company .footer-brand {
  display: table;
  margin-right: 0;
  margin-left: -20px;
}

.footer-company .footer-company-copy {
  max-width: 380px;
  margin: 18px 0 0;
  text-align: left;
}

.site-footer .footer-company .button-cta-copy,
.site-footer .footer-company .footer-cta,
.site-footer .footer-company > p:first-of-type strong,
.site-footer .footer-company > p:first-of-type br {
  display: none !important;
}

.footer-cta {
  display: inline-flex;
  margin-top: 22px;
  padding-bottom: 8px;
  border-bottom: 1px solid currentColor;
  color: var(--white);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.4px;
}

.footer-legal {
  display: inline-flex;
  gap: 18px;
}

.content-card-grid,
.value-grid,
.faq-grid,
.reference-card-grid,
.filter-chips,
.info-grid {
  display: grid;
  gap: 18px;
}

.content-card-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 34px;
}

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

.content-card-grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.content-card-grid article,
.value-grid article,
.info-card,
.faq-grid details {
  padding: 30px;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 18px 54px rgba(20, 21, 18, 0.06);
}

.content-card-grid h3,
.value-grid h3,
.info-card h3,
.faq-grid summary {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: 20px;
  font-weight: 800;
  line-height: 1.26;
}

.content-card-grid p,
.value-grid p,
.info-card p,
.faq-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
}

.content-card-grid p + p,
.home-service-card-grid p + p {
  margin-top: 12px;
}

.card-link {
  display: inline-flex;
  margin-top: 20px;
  padding-bottom: 8px;
  border-bottom: 1px solid currentColor;
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  transition: color 180ms ease;
}

.card-link:hover,
.card-link:focus-visible {
  color: var(--red);
}

.check-list {
  margin: 28px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 22px;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 24px;
  color: var(--muted);
  font-size: 16px;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 8px;
  height: 8px;
  border: 1px solid var(--blue);
  transform: rotate(45deg);
}

.value-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 34px;
}

.faq-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 34px;
}

.faq-grid details {
  box-shadow: none;
}

.faq-grid summary {
  cursor: pointer;
  list-style: none;
}

.faq-grid summary::-webkit-details-marker {
  display: none;
}

.faq-grid summary::after {
  content: "+";
  float: right;
  color: var(--blue);
  font-weight: 800;
}

.faq-grid details[open] summary::after {
  content: "-";
}

.faq-grid p {
  padding-top: 10px;
}

/* Wiederholende FAQ-Section: klassische, helle Editorial-Akkordeon-Variante. */
.repeat-faq-accordion {
  width: min(1180px, 100%);
  margin: 50px auto 0;
  border-top: 3px solid #111411;
  background: #fff;
  box-shadow: 0 26px 70px rgba(25, 35, 39, .1);
}

.repeat-faq-accordion details {
  border-bottom: 1px solid #d8e0e3;
  background: #fff;
}

.repeat-faq-accordion details[open] {
  background: #f1f6f8;
}

.repeat-faq-accordion summary {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr) 46px;
  gap: 24px;
  align-items: center;
  min-height: 112px;
  padding: 18px 30px;
  list-style: none;
  color: #111411;
  cursor: pointer;
}

.repeat-faq-accordion summary::-webkit-details-marker {
  display: none;
}

.repeat-faq-accordion summary:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: -6px;
}

.repeat-faq-accordion summary > b {
  color: var(--blue);
  font-family: var(--headline-font);
  font-size: 34px;
  font-weight: 700;
  line-height: 1;
}

.repeat-faq-accordion summary > span {
  font-family: var(--headline-font);
  font-size: clamp(22px, 2vw, 27px);
  font-weight: 700;
  line-height: 1.08;
  text-transform: uppercase;
}

.repeat-faq-accordion__icon {
  position: relative;
  display: block;
  width: 46px;
  height: 46px;
  border: 1px solid #cad4d8;
  background: #fff;
}

.repeat-faq-accordion__icon::before,
.repeat-faq-accordion__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 17px;
  height: 2px;
  background: #111411;
  transform: translate(-50%, -50%);
  transition: transform .24s ease, opacity .24s ease;
}

.repeat-faq-accordion__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.repeat-faq-accordion details[open] .repeat-faq-accordion__icon {
  border-color: var(--blue);
  background: var(--blue);
}

.repeat-faq-accordion details[open] .repeat-faq-accordion__icon::before,
.repeat-faq-accordion details[open] .repeat-faq-accordion__icon::after {
  background: #fff;
}

.repeat-faq-accordion details[open] .repeat-faq-accordion__icon::after {
  opacity: 0;
  transform: translate(-50%, -50%);
}

.repeat-faq-accordion__answer {
  padding: 0 100px 34px 130px;
}

.repeat-faq-accordion__answer p {
  max-width: 850px;
  margin: 0;
  color: #46545b;
  font-size: 18px;
  line-height: 1.65;
}

@media (max-width: 720px) {
  .repeat-faq-accordion {
    margin-top: 38px;
  }

  .repeat-faq-accordion summary {
    grid-template-columns: 48px minmax(0, 1fr) 42px;
    gap: 12px;
    min-height: 94px;
    padding: 16px 18px;
  }

  .repeat-faq-accordion summary > b {
    font-size: 27px;
  }

  .repeat-faq-accordion summary > span {
    font-size: 20px;
  }

  .repeat-faq-accordion__icon {
    width: 42px;
    height: 42px;
  }

  .repeat-faq-accordion__answer {
    padding: 0 20px 28px 78px;
  }

  .repeat-faq-accordion__answer p {
    font-size: 17px;
  }
}

.filter-chips {
  grid-template-columns: repeat(7, minmax(0, auto));
  justify-content: center;
  margin-top: 28px;
}

.filter-chips span {
  padding: 9px 14px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.3px;
}

.reference-card-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 44px;
}

.reference-card-grid article {
  overflow: hidden;
  background: rgba(255, 255, 255, 0.06);
}

.reference-card-grid img {
  width: 100%;
  height: 330px;
  object-fit: cover;
}

.reference-card-grid div {
  padding: 24px;
}

.reference-card-grid h3 {
  margin: 0 0 10px;
  color: var(--white);
  font-size: 20px;
}

.reference-card-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 15px;
}

.info-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 30px;
}

.map-frame {
  width: 100%;
  min-height: 420px;
  border: 0;
  filter: grayscale(0.18) contrast(1.02);
}

.map-panel::after {
  display: none;
}

.map-panel .map-frame {
  height: 100%;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
    animation-duration: 1ms !important;
  }

  [data-reveal],
  .kenburns-slide {
    opacity: 1;
    transform: none;
  }

  .vehicle-wheel::before {
    animation: none;
  }

  .home-service-scope li::before {
    animation: none;
    background-size: 100% 0%;
    border-color: currentColor;
  }
}

@media (max-width: 1180px) {
  .brand {
    width: 268px;
  }

  .primary-nav {
    gap: 18px;
  }

  .header-call {
    padding: 11px 18px;
  }

  .header-call-copy strong {
    font-size: 11px;
    letter-spacing: 1.3px;
  }

  .elite-slider-track {
    padding: 0;
  }
}

@media (max-width: 1320px) {
  .home-service-inner {
    width: min(var(--content-max), calc(100% - 56px));
    grid-template-columns: minmax(0, 1fr) minmax(420px, 0.9fr);
    gap: 48px 34px;
  }

  .home-service-content {
    grid-column: 1;
    grid-row: 1;
    grid-template-columns: 1fr;
  }

  .home-service-copy {
    grid-column: 1;
    grid-row: 1;
  }

  .home-service-model {
    grid-column: 2;
    grid-row: 1;
    width: min(520px, 100%);
    margin: -12px 0 -28px auto;
  }

  .home-service-model img {
    transform: translateX(28px);
  }

  .home-service-scope {
    grid-column: 1;
    grid-row: 2;
    padding: 34px 0 0;
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .home-service-offer {
    grid-column: 1;
    grid-row: 3;
  }

  .home-service-scope::before {
    left: 0;
    top: -1px;
    width: 120px;
    height: 1px;
    background: linear-gradient(90deg, var(--blue), var(--red), var(--ink));
  }
}

@media (max-width: 1040px) {
  .elite-slide {
    flex-basis: calc((100% - 22px) / 2);
  }
}

@media (max-width: 1090px) {
  .header-shell {
    min-height: var(--header-height);
    padding: 16px 24px;
    flex-direction: row;
    justify-content: space-between;
    gap: 24px;
  }

  .brand {
    position: relative;
    top: auto;
    left: auto;
    width: 220px;
    margin-right: auto;
    transform: none;
  }

  .header-actions {
    position: relative;
    top: auto;
    right: auto;
    order: 3;
    margin-left: auto;
    transform: none;
  }

  .header-call {
    min-height: 44px;
    padding: 12px 18px;
  }

  .site-header.is-scrolled .header-call {
    display: inline-flex;
  }

  .site-header.is-scrolled .header-actions {
    margin-right: 0;
  }

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

  .primary-nav {
    position: absolute;
    top: calc(100% - 1px);
    left: 24px;
    right: 24px;
    width: auto;
    min-width: 0;
    max-width: none;
    display: none;
    height: auto;
    margin-left: 0;
    padding: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(14, 15, 13, 0.96);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.3);
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
  }

  .primary-nav::before,
  .primary-nav::after,
  .primary-nav > a::before {
    display: none;
  }

  .primary-nav.is-open {
    display: flex;
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
  }

  .primary-nav a {
    padding: 14px 12px;
  }

  .primary-nav > a::after,
  .nav-item > a::after {
    display: none;
  }

  .nav-item {
    display: block;
  }

  .has-dropdown::before {
    display: none;
  }

  .dropdown-menu {
    position: static;
    min-width: 0;
    padding: 0 0 8px 14px;
    border: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .dropdown-menu a {
    padding: 14px 12px 14px 30px;
  }

  .dropdown-menu a::before {
    left: 12px;
  }

  .dropdown-menu a::after {
    left: 30px;
    right: 12px;
  }

  .site-header.is-scrolled .primary-nav a,
  .site-header.is-scrolled .dropdown-menu a {
    color: var(--white);
  }

  .site-header.is-scrolled .dropdown-menu {
    background: transparent;
    border-color: transparent;
  }

  .footer-grid,
  .content-card-grid,
  .content-card-grid.three,
  .content-card-grid.two,
  .value-grid,
  .faq-grid,
  .reference-card-grid,
  .info-grid {
    grid-template-columns: 1fr;
  }

  .filter-chips {
    grid-template-columns: repeat(2, minmax(0, auto));
  }
}

@media (max-width: 1020px) {
  .header-shell {
    min-height: var(--header-height);
    padding: 16px 24px;
    justify-content: space-between;
  }

  .brand {
    position: relative;
    top: auto;
    left: auto;
    width: 220px;
    margin-right: auto;
    transform: none;
  }

  .header-actions {
    position: relative;
    right: auto;
  }

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

  .primary-nav {
    position: absolute;
    top: calc(100% - 1px);
    left: 24px;
    right: 24px;
    display: none;
    height: auto;
    margin-left: 0;
    padding: 14px;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(14, 15, 13, 0.96);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.3);
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
  }

  .primary-nav.is-open {
    display: flex;
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
  }

  .primary-nav a {
    padding: 14px 12px;
  }

  .primary-nav > a::after,
  .nav-item > a::after {
    display: none;
  }

  .nav-item {
    display: block;
  }

  .has-dropdown::before {
    display: none;
  }

  .dropdown-menu {
    position: static;
    min-width: 0;
    padding: 0 0 8px 14px;
    border: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .dropdown-menu a {
    padding: 14px 12px 14px 30px;
  }

  .dropdown-menu a::before {
    left: 12px;
  }

  .dropdown-menu a::after {
    left: 30px;
    right: 12px;
  }

  .site-header.is-scrolled .primary-nav a,
  .site-header.is-scrolled .dropdown-menu a {
    color: var(--white);
  }

  .site-header.is-scrolled .dropdown-menu {
    background: transparent;
    border-color: transparent;
  }

  .masthead-content h1 {
    font-size: 78px;
    letter-spacing: 8px;
  }

  .hero-showroom-note {
    top: 138px;
    right: 24px;
    width: min(258px, calc(100% - 48px));
  }

  .hero-showroom-note strong {
    font-size: 18px;
  }

  .rboxy {
    width: 50%;
    height: 420px;
  }

  .catalogue-layout,
  .living-grid,
  .catalogue-grid,
  .process-band-grid,
  .contact-map-grid,
  .contact-layout,
  .service-detail-grid,
  .footer-top {
    flex-direction: column;
  }

  .catalogue-visual,
  .catalogue-copy,
  .living-copy,
  .service-stack,
  .process-band-grid > div:first-child,
  .process-cards,
  .contact-panel,
  .contact-image-panel,
  .contact-info-panel,
  .contact-form,
  .detail-copy,
  .detail-visual {
    width: 100%;
  }

  .catalogue-copy h2,
  .contact-heading h2,
  .detail-copy h2,
  .contact-panel h2,
  .contact-info-panel h2 {
    margin-left: 0;
  }

  .home-service-inner,
  .process-cards,
  .showcase-grid,
  .contact-columns-mini,
  .contact-boxes {
    flex-direction: column;
  }

  .home-service-inner {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .home-service-content,
  .home-service-copy,
  .home-service-model,
  .home-service-scope,
  .home-service-offer {
    grid-column: 1;
    grid-row: auto;
  }

  .home-service-copy {
    grid-row: 1;
  }

  .home-service-scope {
    grid-row: 2;
  }

  .home-service-offer {
    grid-row: 3;
  }

  .home-service-model {
    width: min(340px, 70vw);
    margin: -4px auto 0;
    justify-self: center;
  }

  .offer-button {
    width: 100%;
    max-width: 100%;
  }

  .home-service-model img {
    transform: none;
  }

  .home-service-scope {
    padding: 34px 0 0;
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .home-service-scope::before {
    left: 0;
    top: -1px;
    width: 120px;
    height: 1px;
    background: linear-gradient(90deg, var(--blue), var(--red), var(--ink));
  }

  .home-service-section-head,
  .home-service-process {
    display: block;
  }

  .home-service-section-head p {
    max-width: 100%;
    margin-top: 14px;
    text-align: left;
  }

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

  .home-service-vehicle {
    height: 315px;
    margin-top: 34px;
  }

  .home-service-vehicle-car {
    bottom: 22px;
    width: min(760px, 104vw);
  }

  .home-service-process ol {
    margin-top: 34px;
    padding: 0 0 0 34px;
    grid-template-columns: 1fr;
    gap: 0;
  }

  .home-service-process ol::before {
    left: 17px;
    right: auto;
    top: 4px;
    bottom: 30px;
    width: 2px;
    height: auto;
    background: linear-gradient(180deg, rgba(88, 176, 232, 0.62), rgba(224, 64, 48, 0.58), rgba(32, 32, 24, 0.62));
    clip-path: inset(0 0 100% 0);
  }

  .home-service-process ol::after {
    display: none;
  }

  .home-service-process.is-visible ol::before {
    clip-path: inset(0 0 0 0);
  }

  .home-service-process li,
  .home-service-process li:nth-child(2),
  .home-service-process li:nth-child(4),
  .home-service-process li + li {
    min-height: 0;
    padding: 0 0 30px 44px;
    border-left: 0;
    border-top: 0;
    text-align: left;
  }

  .home-service-process li::before {
    position: absolute;
    left: -17px;
    top: -4px;
    width: 38px;
    height: 38px;
    margin-bottom: 0;
    font-size: 13px;
    transform: translateX(-50%);
  }

  .home-service-process li:hover::before {
    transform: translateX(-50%) scale(1.06);
  }

  .home-service-process li span {
    margin: 0;
    max-width: 520px;
  }

  .showcase-grid article:nth-child(2),
  .showcase-grid article:nth-child(3),
  .references-grid article:nth-child(3n + 2),
  .references-grid article:nth-child(3n) {
    margin-top: 0;
  }

  .references-grid article {
    flex-basis: 100%;
  }

  .showroom-columns {
    flex-direction: column;
  }

  .roomy,
  .roomy:hover,
  .roomy:focus-visible {
    width: 100%;
    height: 440px;
  }

  .footer-top {
    align-items: flex-start;
  }

  .footer-top p {
    text-align: left;
  }
}

@media (max-width: 680px) {
  .container {
    padding: 0 20px;
  }

  .header-shell {
    min-height: 74px;
    padding: 12px 18px;
  }

  .brand {
    width: 186px;
  }

  .nav-toggle {
    width: 44px;
    min-width: 44px;
    height: 42px;
    justify-content: center;
    border: 1px solid rgba(32, 32, 24, 0.14);
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.68);
  }

  .header-actions {
    gap: 8px;
  }

  .header-call {
    width: auto;
    min-width: 0;
    height: 42px;
    min-height: 42px;
    padding: 11px 12px;
  }

  .site-header.is-scrolled .header-call {
    height: 42px;
    min-height: 42px;
  }

  .site-header.is-scrolled .header-actions {
    margin-right: 0;
  }

  .header-call-copy strong {
    font-size: 10px;
    letter-spacing: 1px;
  }

  .mobile-quick-call {
    display: inline-flex !important;
  }

  .header-consultation,
  .site-header.is-scrolled .header-consultation {
    display: none;
  }

  .nav-toggle-label {
    display: none;
  }

  .nav-toggle-icon {
    width: 24px;
    height: 16px;
  }

  .nav-toggle-icon span {
    width: 24px;
  }

  .masthead {
    height: var(--masthead-height, 116vh);
    min-height: 980px;
  }

  .masthead-content {
    padding: 88px 20px 138px;
  }

  .masthead-content h1 {
    font-size: 38px;
    line-height: 1.15;
    letter-spacing: 3px;
  }

  .masthead-content span,
  .section-note,
  .banner-content span {
    font-size: 13px;
    letter-spacing: 3px;
  }

  .hero-showroom-note {
    top: 116px;
    right: 20px;
    width: min(242px, calc(100% - 40px));
    padding-top: 14px;
  }

  .hero-showroom-note span {
    font-size: 11px;
    letter-spacing: 2px;
  }

  .hero-showroom-note strong {
    font-size: 15px;
    letter-spacing: 1px;
  }

  .hero-showroom-note em {
    margin-top: 7px;
    font-size: 13px;
  }

  .elite-rozcestnik {
    --rozcestnik-overlap: 42px;
  }

  .rozcestnik-grid {
    width: calc(100% - 28px);
  }

  .rboxy {
    width: 100%;
    height: 310px;
  }

  .rboxy-caption {
    padding: 28px;
  }

  .rboxy p,
  .rboxy .whitebutton {
    opacity: 1;
    transform: none;
  }

  .home-service-inner {
    width: calc(100% - 40px);
    padding: 75px 0;
  }

  .home-service-copy h2 {
    font-size: 25px;
    letter-spacing: 2px;
  }

  .home-service-copy p {
    font-size: 16px;
  }

  .home-service-stamp {
    width: min(220px, 76%);
    margin-top: 32px;
    margin-left: 0;
  }

  .home-service-model {
    width: min(260px, 72vw);
    margin: 22px auto 0;
  }

  .home-service-model::before {
    left: 50%;
    top: auto;
    bottom: -12px;
    width: 96px;
    height: 1px;
    transform: translateX(-50%);
    background: linear-gradient(90deg, var(--blue), var(--red), var(--ink));
  }

  .offer-button {
    width: 100%;
    padding: 15px 18px;
    font-size: 12px;
    letter-spacing: 1px;
  }

  .home-service-scope > span {
    font-size: 44px;
  }

  .home-service-scope li {
    white-space: normal;
  }

  .home-service-scope li {
    padding-right: 0;
    font-size: 13px;
    letter-spacing: 0.8px;
  }

  .home-service-services,
  .home-service-process {
    padding-top: 34px;
  }

  .home-service-card-grid {
    grid-template-columns: 1fr;
  }

  .home-service-card-grid article {
    min-height: 0;
    padding: 26px 22px;
  }

  .home-service-vehicle {
    height: 220px;
    margin-top: 28px;
  }

  .home-service-vehicle-car {
    bottom: 18px;
    width: min(500px, 126vw);
  }

  .home-service-process h3 {
    font-size: 24px;
    letter-spacing: 1.8px;
  }

  .home-service-process ol {
    padding-left: 30px;
  }

  .home-service-process ol::before {
    left: 15px;
  }

  .home-service-process ol::after {
    left: 8px;
  }

  .home-service-process li,
  .home-service-process li:nth-child(2),
  .home-service-process li:nth-child(4),
  .home-service-process li + li {
    padding: 0 0 28px 38px;
  }

  .home-service-process li::before {
    left: -15px;
    width: 34px;
    height: 34px;
    font-size: 12px;
  }

  .page-section,
  .elite-category-page,
  .service-detail-section,
  .contact-page,
  .legal-section,
  .living-section,
  .process-band,
  .project-showcase,
  .contact-map-section,
  .intro-rail,
  .catalogue-section {
    padding: 75px 0;
  }

  .section-center h2,
  .catalogue-copy h2,
  .banner-content h2,
  .elite-reference h2,
  .elite-showroom h2,
  .contact-heading h2,
  .intro-title h2,
  .living-copy h2,
  .process-band-grid h2,
  .showcase-head h2,
  .contact-panel h2,
  .contact-info-panel h2,
  .legal-content h2,
  .faq-layout h2,
  .detail-copy h2 {
    font-size: 26px;
    letter-spacing: 2px;
  }

  .elite-slider {
    margin-top: 44px;
  }

  .elite-slide {
    flex-basis: 100%;
    height: 320px;
  }

  .slider-arrow {
    display: none;
  }

  .catalogue-book {
    width: 270px;
    height: 372px;
  }

  .catalogue-book:hover .catalogue-card-1 {
    transform: translate(-62px, 24px) rotate(-16deg);
  }

  .catalogue-book:hover .catalogue-card-2 {
    transform: translate(-30px, 8px) rotate(-8deg);
  }

  .catalogue-book:hover .catalogue-card-3 {
    transform: translate(30px, 8px) rotate(8deg);
  }

  .catalogue-book:hover .catalogue-card-4 {
    transform: translate(62px, 24px) rotate(16deg);
  }

  .catalogue-card-label {
    padding: 15px 16px;
  }

  .catalogue-card-label span {
    font-size: 22px;
  }

  .catalogue-card-label strong {
    font-size: 10px;
    letter-spacing: 1.2px;
  }

  .book-cover {
    padding: 30px 24px;
  }

  .elite-banner {
    min-height: 460px;
  }

  .reference-carousel {
    padding: 0 18px 16px;
  }

  .reference-carousel article {
    flex-basis: 300px;
  }

  .roomy,
  .roomy:hover,
  .roomy:focus-visible {
    height: 360px;
  }

  .page-hero {
    min-height: 560px;
  }

  .page-hero h1 {
    font-size: 36px;
  }

  .category-grid-two .category-card {
    width: 100%;
    min-height: 290px;
  }

  .category-card img {
    min-height: 290px;
  }

  .living-portrait img,
  .detail-visual img,
  .showcase-grid img {
    height: auto;
    aspect-ratio: 4 / 3;
  }

  .contact-info-panel,
  .contact-form,
  .legal-content,
  .contact-panel {
    padding: 28px 22px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .check-list {
    grid-template-columns: 1fr;
  }

  .content-card-grid article,
  .value-grid article,
  .info-card,
  .faq-grid details {
    padding: 24px 22px;
  }
}

/* Skew buttons nach Kunden-Vorgabe */
.hero-button,
.btn,
.offer-button,
.dark-line-button,
.footer-cta,
.card-link {
  position: relative;
  isolation: isolate;
  width: auto;
  min-width: 120px;
  min-height: 44px;
  padding: 10px 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: none;
  border-radius: 0;
  background: var(--blue);
  color: var(--white);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transform: skew(-21deg);
  transition: color 0.5s ease, transform 240ms ease;
}

.hero-button > span,
.btn > span,
.offer-button > span,
.dark-line-button > span,
.footer-cta > span,
.card-link > span {
  position: relative;
  z-index: 1;
  display: inline-block;
  transform: skew(21deg);
}

.hero-button::before,
.btn::before,
.offer-button::before,
.dark-line-button::before,
.footer-cta::before,
.card-link::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 100%;
  left: 0;
  z-index: -1;
  background: rgb(20, 20, 20);
  opacity: 0;
  transform: none;
  transition: all 0.5s ease;
}

.hero-button:hover,
.hero-button:focus-visible,
.btn:hover,
.btn:focus-visible,
.offer-button:hover,
.offer-button:focus-visible,
.dark-line-button:hover,
.dark-line-button:focus-visible,
.footer-cta:hover,
.footer-cta:focus-visible,
.card-link:hover,
.card-link:focus-visible {
  color: var(--white);
  transform: skew(-21deg) translateY(-2px);
}

.hero-button:hover::before,
.hero-button:focus-visible::before,
.btn:hover::before,
.btn:focus-visible::before,
.offer-button:hover::before,
.offer-button:focus-visible::before,
.dark-line-button:hover::before,
.dark-line-button:focus-visible::before,
.footer-cta:hover::before,
.footer-cta:focus-visible::before,
.card-link:hover::before,
.card-link:focus-visible::before {
  left: 0;
  right: 0;
  opacity: 1;
}

.hero-button-light,
.btn-primary,
.offer-button,
.footer-cta,
.home-service-card-grid article:nth-child(odd) .card-link {
  background: var(--red);
}

.hero-button:not(.hero-button-light),
.dark-line-button,
.home-service-card-grid article:nth-child(even) .card-link {
  background: var(--blue);
}

.card-link,
.footer-cta {
  border-bottom: 0;
  text-decoration: none;
}

.card-link {
  margin-top: 22px;
  font-size: 12px;
  letter-spacing: 1.2px;
}

.header-call {
  overflow: hidden;
  border: none;
  border-radius: 0;
  background: var(--red);
  color: var(--white);
  transform: skew(-21deg);
}

.mobile-quick-call {
  background: var(--blue);
}

.header-call-copy {
  z-index: 1;
  transform: skew(21deg);
}

.header-call::before {
  top: 0;
  bottom: 0;
  right: 100%;
  left: 0;
  z-index: 0;
  background: rgb(20, 20, 20);
  opacity: 0;
  transform: none;
  transition: all 0.5s ease;
}

.header-call:hover,
.header-call:focus-visible {
  color: var(--white);
  transform: skew(-21deg) translateY(-2px);
}

.header-call:hover::before,
.header-call:focus-visible::before {
  left: 0;
  right: 0;
  opacity: 1;
  transform: none;
}

@media (max-width: 1090px) {
  .header-call,
  .header-call:hover,
  .header-call:focus-visible {
    transform: skew(-21deg);
  }
}

/* Finale Typografie- und Button-Anpassung */
:root {
  --headline-font: "Barlow Condensed", "Arial Narrow", Arial, sans-serif;
}

.masthead-content h1,
.page-hero h1,
.section-center h2,
.catalogue-copy h2,
.banner-content h2,
.elite-reference h2,
.elite-showroom h2,
.contact-heading h2,
.intro-title h2,
.living-copy h2,
.process-band-grid h2,
.showcase-head h2,
.contact-panel h2,
.contact-info-panel h2,
.legal-content h2,
.faq-layout h2,
.detail-copy h2,
.home-service-copy h2,
.home-service-section-head h2,
.roomy h3,
.hero-showroom-note strong,
.contact-form h2 {
  font-family: var(--headline-font);
  font-weight: 700;
  letter-spacing: 1.6px;
}

.masthead-content h1 {
  max-width: 980px;
  font-size: clamp(46px, 5.8vw, 78px);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: 1.8px;
}

.page-hero h1 {
  max-width: 920px;
  font-size: clamp(38px, 4.2vw, 58px);
  font-weight: 600;
  line-height: 1.05;
}

.section-center h2,
.catalogue-copy h2,
.banner-content h2,
.elite-reference h2,
.elite-showroom h2,
.contact-heading h2,
.intro-title h2,
.living-copy h2,
.process-band-grid h2,
.showcase-head h2,
.contact-panel h2,
.contact-info-panel h2,
.legal-content h2,
.faq-layout h2,
.detail-copy h2,
.home-service-copy h2,
.home-service-section-head h2,
.contact-form h2 {
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.08;
}

.kenburns-stage::after {
  background:
    radial-gradient(circle at 72% 28%, rgba(88, 176, 232, 0.08), transparent 28%),
    linear-gradient(180deg, rgba(14, 15, 13, 0.46), rgba(14, 15, 13, 0.72)),
    linear-gradient(90deg, rgba(14, 15, 13, 0.76), rgba(14, 15, 13, 0.36), rgba(14, 15, 13, 0.58));
}

.page-hero::after,
.page-hero-media::after {
  background:
    linear-gradient(90deg, rgba(14, 15, 13, 0.78), rgba(14, 15, 13, 0.54), rgba(14, 15, 13, 0.62)),
    linear-gradient(0deg, rgba(14, 15, 13, 0.56), rgba(14, 15, 13, 0.2) 56%);
}

.hero-button,
.btn,
.offer-button,
.dark-line-button,
.footer-cta,
.card-link {
  min-width: 120px;
  transform: none;
}

.hero-button > span,
.btn > span,
.offer-button > span,
.dark-line-button > span,
.footer-cta > span,
.card-link > span {
  transform: none;
}

.hero-button:hover,
.hero-button:focus-visible,
.btn:hover,
.btn:focus-visible,
.offer-button:hover,
.offer-button:focus-visible,
.dark-line-button:hover,
.dark-line-button:focus-visible,
.footer-cta:hover,
.footer-cta:focus-visible,
.card-link:hover,
.card-link:focus-visible {
  transform: translateY(-2px);
}

.header-call,
.header-call:hover,
.header-call:focus-visible,
.mobile-quick-call,
.mobile-quick-call:hover,
.mobile-quick-call:focus-visible {
  transform: none;
}

.header-call:hover,
.header-call:focus-visible,
.mobile-quick-call:hover,
.mobile-quick-call:focus-visible {
  transform: translateY(-2px);
}

.header-call-copy {
  transform: none;
}

@media (max-width: 680px) {
  .masthead-content h1 {
    font-size: clamp(34px, 10vw, 44px);
  }

  .page-hero h1 {
    font-size: clamp(32px, 9vw, 42px);
  }
}

.hero-button::before,
.btn::before,
.offer-button::before,
.dark-line-button::before,
.footer-cta::before,
.card-link::before {
  z-index: 0;
}

.hero-button > span,
.btn > span,
.offer-button > span,
.dark-line-button > span,
.footer-cta > span,
.card-link > span {
  z-index: 1;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
}

.hero-button-light:hover,
.hero-button-light:focus-visible,
.btn-primary:hover,
.btn-primary:focus-visible,
.offer-button:hover,
.offer-button:focus-visible,
.footer-cta:hover,
.footer-cta:focus-visible,
.card-link:hover,
.card-link:focus-visible {
  background: inherit;
}

.hero-button-light,
.btn-primary,
.offer-button,
.footer-cta,
.home-service-card-grid article:nth-child(odd) .card-link {
  background: var(--red);
}

.hero-button:not(.hero-button-light),
.dark-line-button,
.home-service-card-grid article:nth-child(even) .card-link {
  background: var(--blue);
}

/* Finaler Hero-Overlay-Override: diese Regel muss nach allen anderen Hero-Regeln stehen. */
.kenburns-stage::after {
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.34) 0%,
    rgba(0, 0, 0, 0.2) 34%,
    rgba(0, 0, 0, 0.08) 68%,
    rgba(0, 0, 0, 0) 100%
  );
  box-shadow: none;
}

.page-hero::after,
.page-hero-media::after {
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.32) 0%,
    rgba(0, 0, 0, 0.18) 34%,
    rgba(0, 0, 0, 0.07) 68%,
    rgba(0, 0, 0, 0) 100%
  );
  box-shadow: none;
}

.masthead-content h1,
.page-hero h1,
.masthead-content p,
.page-hero p {
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.38);
}

/* Letztes Header-Menü: Logo kleiner, Navigation als animierte Button-Leiste. */
@media (min-width: 1091px) {
  .primary-nav,
  .site-header:not(.is-scrolled) .primary-nav,
  .site-header.is-scrolled .primary-nav,
  .site-header.is-scrolled .primary-nav.is-open {
    position: relative;
    top: auto;
    right: auto;
    width: calc(100% - 470px);
    max-width: 940px;
    min-width: 0;
    margin: 0 auto;
    padding: 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
    transform: none;
  }

  .primary-nav > a,
  .primary-nav .nav-item > a,
  .site-header.is-scrolled .primary-nav > a,
  .site-header.is-scrolled .primary-nav .nav-item > a,
  .site-header.is-scrolled .primary-nav.is-open > a,
  .site-header.is-scrolled .primary-nav.is-open .nav-item > a {
    position: relative;
    isolation: isolate;
    width: auto;
    min-height: 40px;
    padding: 10px 13px;
    overflow: hidden;
    border: 0;
    color: var(--ink);
    background: transparent !important;
    font-size: 15px;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: 1px;
    text-transform: uppercase;
    transform: none;
    box-shadow: none;
    transition: color 240ms ease, border-color 240ms ease, box-shadow 240ms ease, transform 240ms ease;
  }

  .brand,
  .site-header.is-scrolled .brand {
    width: 240px;
  }

  .primary-nav > a,
  .primary-nav .nav-item > a,
  .site-header.is-scrolled .primary-nav > a,
  .site-header.is-scrolled .primary-nav .nav-item > a,
  .site-header.is-scrolled .primary-nav.is-open > a,
  .site-header.is-scrolled .primary-nav.is-open .nav-item > a {
    --nav-button-accent: var(--blue);
  }

  .primary-nav .nav-item > a,
  .primary-nav > a:nth-of-type(2),
  .primary-nav > a:nth-of-type(4) {
    --nav-button-accent: var(--red);
  }

  .primary-nav > a::before,
  .primary-nav .nav-item > a::before,
  .site-header.is-scrolled .primary-nav > a::before,
  .site-header.is-scrolled .primary-nav .nav-item > a::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 100%;
    z-index: -1;
    display: block;
    height: auto;
    background: var(--red);
    opacity: 0;
    transform: none;
    transition: right 0.42s ease, opacity 0.42s ease;
  }

  .primary-nav .nav-item > a::before {
    background: var(--red);
  }

  .primary-nav > a::after,
  .primary-nav .nav-item > a::after,
  .site-header.is-scrolled .primary-nav > a::after,
  .site-header.is-scrolled .primary-nav .nav-item > a::after {
    content: "";
    position: absolute;
    left: 0;
    right: auto;
    top: auto;
    bottom: 0;
    z-index: 1;
    width: 100%;
    height: 3px;
    display: none;
    background: var(--nav-button-accent);
    opacity: 1;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 240ms ease;
  }

  .primary-nav > a:hover,
  .primary-nav > a:focus-visible,
  .primary-nav .nav-item > a:hover,
  .primary-nav .nav-item > a:focus-visible,
  .site-header.is-scrolled .primary-nav > a:hover,
  .site-header.is-scrolled .primary-nav > a:focus-visible,
  .site-header.is-scrolled .primary-nav .nav-item > a:hover,
  .site-header.is-scrolled .primary-nav .nav-item > a:focus-visible {
    border-color: transparent;
    background: transparent !important;
    box-shadow: none;
    color: var(--white);
    transform: translateY(-2px);
  }

  .primary-nav > a:hover::before,
  .primary-nav > a:focus-visible::before,
  .primary-nav .nav-item > a:hover::before,
  .primary-nav .nav-item > a:focus-visible::before,
  .site-header.is-scrolled .primary-nav > a:hover::before,
  .site-header.is-scrolled .primary-nav > a:focus-visible::before,
  .site-header.is-scrolled .primary-nav .nav-item > a:hover::before,
  .site-header.is-scrolled .primary-nav .nav-item > a:focus-visible::before {
    right: 0;
    opacity: 1;
    transform: none;
  }

  .primary-nav .nav-item,
  .site-header.is-scrolled .primary-nav .nav-item,
  .site-header.is-scrolled .primary-nav.is-open .nav-item {
    position: relative;
    width: auto;
    display: flex;
    align-items: center;
  }

  .dropdown-menu,
  .site-header.is-scrolled .primary-nav .dropdown-menu {
    position: absolute;
    top: calc(100% + 7px);
    left: 50%;
    width: max-content;
    min-width: 220px;
    max-height: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    overflow: visible;
    border: 0;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 20px 54px rgba(20, 21, 18, 0.14);
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, 8px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .dropdown-menu::before,
  .site-header.is-scrolled .primary-nav .dropdown-menu::before {
    content: "";
    position: absolute;
    left: 50%;
    top: -7px;
    width: 14px;
    height: 14px;
    display: block;
    background: var(--red);
    transform: translateX(-50%) rotate(45deg);
    pointer-events: none;
  }

  .has-dropdown:hover .dropdown-menu,
  .has-dropdown:focus-within .dropdown-menu,
  .site-header.is-scrolled .has-dropdown:hover .dropdown-menu,
  .site-header.is-scrolled .has-dropdown:focus-within .dropdown-menu {
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, 0);
  }

  .has-dropdown:hover > a,
  .has-dropdown:focus-within > a,
  .site-header.is-scrolled .has-dropdown:hover > a,
  .site-header.is-scrolled .has-dropdown:focus-within > a {
    color: var(--white);
    background: transparent !important;
    transform: translateY(-2px);
  }

  .has-dropdown:hover > a::before,
  .has-dropdown:focus-within > a::before,
  .site-header.is-scrolled .has-dropdown:hover > a::before,
  .site-header.is-scrolled .has-dropdown:focus-within > a::before {
    right: 0;
    opacity: 1;
  }

  .dropdown-menu a,
  .site-header.is-scrolled .primary-nav .dropdown-menu a {
    position: relative;
    isolation: isolate;
    width: 100%;
    min-height: 40px;
    padding: 11px 14px;
    justify-content: flex-start;
    overflow: hidden;
    border: 0;
    color: var(--ink);
    background: transparent !important;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 1.1px;
    box-shadow: none;
    transform: none;
    transition: color 240ms ease, transform 240ms ease;
  }

  .dropdown-menu a::before,
  .site-header.is-scrolled .primary-nav .dropdown-menu a::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 100%;
    z-index: -1;
    display: block;
    width: auto;
    height: auto;
    background: var(--red);
    opacity: 0;
    transform: none;
    transition: right 0.42s ease, opacity 0.42s ease;
  }

  .dropdown-menu a:first-child,
  .site-header.is-scrolled .primary-nav .dropdown-menu a:first-child {
    margin: 0;
  }

  .dropdown-menu a::after,
  .site-header.is-scrolled .primary-nav .dropdown-menu a::after {
    display: none;
  }

  .dropdown-menu a:hover,
  .dropdown-menu a:focus-visible,
  .site-header.is-scrolled .primary-nav .dropdown-menu a:hover,
  .site-header.is-scrolled .primary-nav .dropdown-menu a:focus-visible {
    color: var(--white);
    background: transparent !important;
    box-shadow: none;
    transform: translateX(2px);
  }

  .dropdown-menu a:hover::before,
  .dropdown-menu a:focus-visible::before,
  .site-header.is-scrolled .primary-nav .dropdown-menu a:hover::before,
  .site-header.is-scrolled .primary-nav .dropdown-menu a:focus-visible::before {
    right: 0;
    opacity: 1;
  }
}

/* Leistungen-Dropdown nach Hover-Schema: ohne Klick, mit Pfeil und Stagger-Animation. */
@media (min-width: 1091px) {
  .nav-dropdown-trigger {
    position: relative;
    isolation: isolate;
    min-height: 40px;
    padding: 10px 13px;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    overflow: hidden;
    border: 0;
    background: transparent;
    color: var(--ink);
    font-size: 15px;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: default;
    transition: color 240ms ease, transform 240ms ease;
  }

  .nav-dropdown-trigger::before {
    content: "";
    position: absolute;
    inset: 0 100% 0 0;
    z-index: -1;
    background: var(--red);
    opacity: 0;
    transition: right 0.42s ease, opacity 0.42s ease;
  }

  .has-dropdown:hover > .nav-dropdown-trigger,
  .has-dropdown:focus-within > .nav-dropdown-trigger {
    color: var(--white);
    transform: translateY(-2px);
  }

  .has-dropdown:hover > .nav-dropdown-trigger::before,
  .has-dropdown:focus-within > .nav-dropdown-trigger::before {
    right: 0;
    opacity: 1;
  }

  .nav-dropdown-arrow {
    position: relative;
    width: 13px;
    height: 13px;
    flex: 0 0 13px;
    display: flex;
    justify-content: center;
    color: currentColor;
    transition: transform 300ms ease;
  }

  .nav-dropdown-arrow::before,
  .nav-dropdown-arrow::after {
    content: "";
    position: absolute;
    top: 1px;
    width: 2px;
    height: 10px;
    border-radius: 50px;
    background: currentColor;
    transform-origin: bottom;
  }

  .nav-dropdown-arrow::before {
    transform: rotate(-35deg) translateX(0.5px);
  }

  .nav-dropdown-arrow::after {
    transform: rotate(35deg) translateX(-0.5px);
  }

  .has-dropdown:hover .nav-dropdown-arrow,
  .has-dropdown:focus-within .nav-dropdown-arrow {
    transform: rotateX(180deg);
  }

  .dropdown-menu,
  .site-header.is-scrolled .primary-nav .dropdown-menu {
    top: calc(100% + 9px);
    left: 50%;
    min-width: 230px;
    padding: 0;
    gap: 0;
    overflow: hidden;
    border: 0;
    border-radius: 0;
    background: var(--white);
    box-shadow: 0 22px 56px rgba(20, 21, 18, 0.18);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    clip-path: inset(0 50% 100% 50%);
    transform: translate(-50%, 0);
    transition: clip-path 400ms ease, opacity 180ms ease, visibility 0s linear 400ms;
  }

  .dropdown-menu::before,
  .site-header.is-scrolled .primary-nav .dropdown-menu::before {
    display: none;
  }

  .has-dropdown:hover .dropdown-menu,
  .has-dropdown:focus-within .dropdown-menu,
  .site-header.is-scrolled .has-dropdown:hover .dropdown-menu,
  .site-header.is-scrolled .has-dropdown:focus-within .dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    clip-path: inset(0 0 0 0);
    transform: translate(-50%, 0);
    transition: clip-path 400ms ease, opacity 180ms ease;
  }

  .dropdown-menu a,
  .site-header.is-scrolled .primary-nav .dropdown-menu a {
    position: relative;
    width: 100%;
    min-height: 44px;
    padding: 12px 15px;
    overflow: visible;
    border: 0;
    border-radius: 0;
    background: transparent !important;
    color: var(--red);
    opacity: 0;
    transform: translateY(30px);
    transition: color 200ms ease, background-color 200ms ease;
  }

  .dropdown-menu a::before {
    display: none !important;
  }

  .dropdown-menu a::after,
  .site-header.is-scrolled .primary-nav .dropdown-menu a::after {
    content: "";
    position: absolute;
    left: 50%;
    top: auto;
    bottom: 0;
    width: 90%;
    height: 1px;
    display: block;
    background: rgba(20, 21, 18, 0.16);
    opacity: 1;
    transform: translateX(-50%);
  }

  .dropdown-menu a:last-child::after {
    display: none;
  }

  .has-dropdown:hover .dropdown-menu a,
  .has-dropdown:focus-within .dropdown-menu a {
    opacity: 1;
    transform: translateY(0);
  }

  .has-dropdown:hover .dropdown-menu a:nth-child(1),
  .has-dropdown:focus-within .dropdown-menu a:nth-child(1) {
    transition: transform 400ms 180ms ease, opacity 400ms 180ms ease, color 200ms ease, background-color 200ms ease;
  }

  .has-dropdown:hover .dropdown-menu a:nth-child(2),
  .has-dropdown:focus-within .dropdown-menu a:nth-child(2) {
    transition: transform 400ms 300ms ease, opacity 400ms 300ms ease, color 200ms ease, background-color 200ms ease;
  }

  .dropdown-menu a:hover,
  .dropdown-menu a:focus-visible,
  .site-header.is-scrolled .primary-nav .dropdown-menu a:hover,
  .site-header.is-scrolled .primary-nav .dropdown-menu a:focus-visible {
    background: rgb(238, 238, 238) !important;
    color: var(--red);
    box-shadow: none;
    transform: translateY(0);
  }
}

@media (max-width: 1090px) {
  .nav-dropdown-trigger {
    width: 100%;
    min-height: 46px;
    padding: 12px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: inherit;
    font-size: 15px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.2px;
  }

  .nav-dropdown-arrow {
    width: 12px;
    height: 12px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
  }
}

/* Finales Leistungen-Dropdown: SVG-Pfeil und animierte Unterpunkte. */
@media (min-width: 1091px) {
  .nav-dropdown-arrow {
    width: 14px;
    height: 14px;
    flex: 0 0 14px;
    display: block;
    object-fit: contain;
    filter: none;
    transform: rotate(90deg);
    transition: transform 300ms ease, filter 240ms ease;
  }

  .has-dropdown:hover .nav-dropdown-arrow,
  .has-dropdown:focus-within .nav-dropdown-arrow {
    filter: brightness(0) invert(1);
    transform: rotate(270deg);
  }

  .dropdown-menu,
  .site-header.is-scrolled .primary-nav .dropdown-menu {
    padding: 6px;
    gap: 4px;
  }

  .dropdown-menu a,
  .site-header.is-scrolled .primary-nav .dropdown-menu a {
    isolation: isolate;
    overflow: hidden;
    border-radius: 0;
    background: transparent !important;
    color: var(--ink);
  }

  .dropdown-menu a::before,
  .site-header.is-scrolled .primary-nav .dropdown-menu a::before {
    content: "";
    position: absolute;
    inset: 0 100% 0 0;
    z-index: -1;
    width: auto;
    height: auto;
    display: block !important;
    background: var(--red);
    opacity: 0;
    transform: none;
    transition: right 0.42s ease, opacity 0.42s ease;
  }

  .dropdown-menu a::after,
  .site-header.is-scrolled .primary-nav .dropdown-menu a::after {
    display: none !important;
  }

  .dropdown-menu a:hover,
  .dropdown-menu a:focus-visible,
  .site-header.is-scrolled .primary-nav .dropdown-menu a:hover,
  .site-header.is-scrolled .primary-nav .dropdown-menu a:focus-visible {
    background: transparent !important;
    color: var(--white);
    transform: translateY(0);
  }

  .dropdown-menu a:hover::before,
  .dropdown-menu a:focus-visible::before,
  .site-header.is-scrolled .primary-nav .dropdown-menu a:hover::before,
  .site-header.is-scrolled .primary-nav .dropdown-menu a:focus-visible::before {
    right: 0;
    opacity: 1;
  }
}

@media (max-width: 1090px) {
  .nav-dropdown-arrow {
    width: 13px;
    height: 13px;
    border: 0;
    object-fit: contain;
    filter: brightness(0) invert(1);
    transform: rotate(90deg);
    transition: transform 300ms ease;
  }

  .has-dropdown:focus-within .nav-dropdown-arrow {
    transform: rotate(270deg);
  }
}

/* Sichtbarkeit der gestaffelten Dropdown-Einträge auch im Scroll-Header. */
@media (min-width: 1091px) {
  .site-header.is-scrolled .primary-nav .has-dropdown:hover .dropdown-menu a,
  .site-header.is-scrolled .primary-nav .has-dropdown:focus-within .dropdown-menu a,
  .has-dropdown:hover .dropdown-menu a,
  .has-dropdown:focus-within .dropdown-menu a {
    opacity: 1;
    transform: translateY(0);
  }

  .site-header.is-scrolled .primary-nav .has-dropdown:hover .dropdown-menu a:nth-child(1),
  .site-header.is-scrolled .primary-nav .has-dropdown:focus-within .dropdown-menu a:nth-child(1),
  .has-dropdown:hover .dropdown-menu a:nth-child(1),
  .has-dropdown:focus-within .dropdown-menu a:nth-child(1) {
    transition: transform 400ms 150ms ease, opacity 400ms 150ms ease, color 200ms ease, background-color 200ms ease;
  }

  .site-header.is-scrolled .primary-nav .has-dropdown:hover .dropdown-menu a:nth-child(2),
  .site-header.is-scrolled .primary-nav .has-dropdown:focus-within .dropdown-menu a:nth-child(2),
  .has-dropdown:hover .dropdown-menu a:nth-child(2),
  .has-dropdown:focus-within .dropdown-menu a:nth-child(2) {
    transition: transform 400ms 270ms ease, opacity 400ms 270ms ease, color 200ms ease, background-color 200ms ease;
  }
}

/* Kompakte Vertrauensmerkmale direkt im Startseiten-Hero. */
.hero-trust-strip {
  position: relative;
  left: auto;
  bottom: auto;
  z-index: 1;
  width: min(1050px, 100%);
  margin-top: 26px;
  align-self: flex-start;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  overflow: visible;
  border: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  transform: none;
}

.hero-trust-strip.is-visible {
  transform: none;
}

.hero-trust-strip article {
  position: relative;
  min-width: 0;
  min-height: 96px;
  padding: 18px 18px 17px 82px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(10, 12, 11, 0.64);
  box-shadow:
    0 22px 48px rgba(0, 0, 0, 0.52),
    0 6px 16px rgba(0, 0, 0, 0.38),
    inset 0 1px 0 rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(14px);
  transition: background 220ms ease;
}

.hero-trust-strip article:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.16);
}

.hero-trust-strip article::before {
  display: none;
}

.hero-trust-icon {
  position: absolute;
  left: 18px;
  top: 50%;
  display: grid;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: var(--blue);
  overflow: hidden;
  transform: translateY(-50%);
}

.hero-trust-strip article:nth-child(2) .hero-trust-icon {
  background: var(--red);
}

.hero-trust-strip article:nth-child(3) .hero-trust-icon {
  background: rgba(255, 255, 255, 0.16);
}

.hero-trust-icon img {
  position: absolute;
  left: 50%;
  top: 50%;
  display: block;
  width: 27px;
  height: 27px;
  object-fit: contain;
  object-position: center;
  filter: brightness(0) invert(1);
  transform: translate(-50%, -50%);
}

.hero-trust-strip article:hover {
  background: rgba(255, 255, 255, 0.07);
}

.hero-trust-strip h3 {
  margin: 0;
  color: var(--white);
  font-family: var(--headline-font);
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.5px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.72);
}

.hero-trust-strip p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12.5px;
  line-height: 1.35;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.68);
}

@media (max-width: 1090px) {
  .hero-trust-strip {
    bottom: auto;
    width: 100%;
    margin-top: 22px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hero-trust-strip article {
    min-height: 92px;
    padding: 16px 14px 15px 76px;
  }

  .hero-trust-strip article:nth-child(2) {
    border-right: 1px solid rgba(255, 255, 255, 0.16);
  }

  .hero-trust-strip article:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }

  .hero-trust-strip h3 {
    font-size: 19px;
    line-height: 1;
  }

  .hero-trust-strip p {
    margin-top: 7px;
    font-size: 12px;
    line-height: 1.3;
  }

  .arrowscroll {
    bottom: 24px;
  }
}

@media (max-width: 680px) {
  .masthead-content {
    padding-bottom: 90px;
  }

  .elite-masthead .masthead-content::before {
    inset: 64px -18px 44px -18px;
    background: radial-gradient(
      ellipse at 42% 43%,
      rgba(3, 4, 3, 0.74) 0%,
      rgba(3, 4, 3, 0.58) 42%,
      rgba(3, 4, 3, 0.25) 68%,
      rgba(3, 4, 3, 0) 88%
    );
    filter: blur(18px);
  }

  .hero-trust-strip {
    bottom: auto;
    width: 100%;
    margin-top: 18px;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .hero-trust-strip article {
    min-height: 82px;
    padding: 14px 14px 13px 70px;
    border: 1px solid rgba(255, 255, 255, 0.16);
  }

  .hero-trust-strip article:nth-child(2) {
    border-right: 0;
  }

  .hero-trust-strip article:last-child {
    border-bottom: 0;
  }

  .hero-trust-icon {
    left: 15px;
    top: 50%;
    width: 42px;
    height: 42px;
  }

  .hero-trust-icon img {
    width: 23px;
    height: 23px;
  }

  .hero-trust-strip h3 {
    font-size: 18px;
    line-height: 1;
    letter-spacing: 0.25px;
  }

  .hero-trust-strip p {
    display: block;
    margin-top: 7px;
    font-size: 11.5px;
    line-height: 1.3;
  }

  .arrowscroll {
    bottom: 16px;
  }
}

/* Einheitliches Button-System nach dem Hero-Stil. */
.hero-button,
.btn,
.offer-button,
.dark-line-button,
.footer-cta,
.card-link,
.line-actions a,
.text-link,
.header-call,
.header-cta,
.whitebutton {
  --site-button-bg: var(--blue);
  position: relative;
  min-width: 120px;
  min-height: 44px;
  padding: 10px 22px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 0 !important;
  border-radius: 0 !important;
  background-color: var(--site-button-bg) !important;
  background-image: linear-gradient(var(--ink), var(--ink)) !important;
  background-position: left center !important;
  background-repeat: no-repeat !important;
  background-size: 0 100% !important;
  box-shadow: none;
  color: var(--white) !important;
  font-family: "Inter", Arial, sans-serif;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: 1px;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
  transform: none;
  transition: background-size 0.5s ease, color 0.3s ease, transform 220ms ease, box-shadow 220ms ease;
}

.hero-button,
.btn,
.offer-button,
.dark-line-button,
.footer-cta,
.card-link,
.line-actions a,
.text-link,
.header-cta,
.whitebutton {
  display: inline-flex;
}

.hero-button::before,
.hero-button::after,
.btn::before,
.btn::after,
.offer-button::before,
.offer-button::after,
.dark-line-button::before,
.dark-line-button::after,
.footer-cta::before,
.footer-cta::after,
.card-link::before,
.card-link::after,
.line-actions a::before,
.line-actions a::after,
.text-link::before,
.text-link::after,
.header-call::before,
.header-call::after,
.header-cta::before,
.header-cta::after,
.whitebutton::before,
.whitebutton::after {
  display: none !important;
}

.hero-button > span,
.btn > span,
.offer-button > span,
.dark-line-button > span,
.footer-cta > span,
.card-link > span,
.header-call > span {
  position: relative;
  z-index: 1;
  transform: none;
}

.hero-button-light,
.btn-primary,
.offer-button,
.footer-cta,
.header-consultation,
.line-actions a:nth-child(odd),
.text-link:nth-child(odd),
.home-service-card-grid article:nth-child(odd) .card-link {
  --site-button-bg: var(--red);
}

.hero-button:not(.hero-button-light),
.dark-line-button,
.mobile-quick-call,
.line-actions a:nth-child(even),
.text-link:nth-child(even),
.home-service-card-grid article:nth-child(even) .card-link {
  --site-button-bg: var(--blue);
}

.hero-button:hover,
.hero-button:focus-visible,
.btn:hover,
.btn:focus-visible,
.offer-button:hover,
.offer-button:focus-visible,
.dark-line-button:hover,
.dark-line-button:focus-visible,
.footer-cta:hover,
.footer-cta:focus-visible,
.card-link:hover,
.card-link:focus-visible,
.line-actions a:hover,
.line-actions a:focus-visible,
.text-link:hover,
.text-link:focus-visible,
.header-call:hover,
.header-call:focus-visible,
.header-cta:hover,
.header-cta:focus-visible,
.whitebutton:hover,
.whitebutton:focus-visible {
  background-size: 100% 100% !important;
  box-shadow: 0 12px 28px rgba(20, 21, 18, 0.16);
  color: var(--white) !important;
  transform: translateY(-2px);
}

.line-actions {
  gap: 12px;
  flex-wrap: wrap;
}

@media (max-width: 680px) {
  .hero-button,
  .btn,
  .offer-button,
  .dark-line-button,
  .footer-cta,
  .card-link,
  .line-actions a,
  .text-link,
  .header-cta,
  .whitebutton {
    width: 100%;
    max-width: 100%;
  }

  .header-call {
    min-width: 0;
  }
}

/* Allgemeine CTA-Vorzeilen außerhalb der Hero-Bereiche. */
.button-cta-copy {
  margin: 20px 0 10px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.45;
  letter-spacing: 0.2px;
}

.home-service-card-grid .button-cta-copy {
  margin: 18px 0 0;
  color: var(--ink);
  font-size: 13px;
}

.elite-banner .button-cta-copy,
.project-showcase .button-cta-copy,
.site-footer .button-cta-copy {
  margin: 0 0 12px;
  color: rgba(255, 255, 255, 0.82);
}

.elite-banner .button-cta-copy {
  margin: -12px auto 18px;
  text-align: center;
}

.contact-form .button-cta-copy {
  margin: 2px 0 -4px;
}

.catalogue-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

@media (max-width: 680px) {
  .button-cta-copy {
    margin-top: 16px;
    font-size: 13px;
  }
}

/* Layout passend zur finalen Zwei-Leistungs-Struktur. */
.home-service-card-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

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

.process-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

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

.filter-chips {
  grid-template-columns: repeat(5, minmax(0, auto));
}

.showcase-description {
  max-width: 820px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
}

@media (max-width: 1090px) {
  .hero-trust-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .process-cards,
  .reference-card-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .home-service-card-grid,
  .hero-trust-strip,
  .filter-chips {
    grid-template-columns: 1fr;
  }

  .hero-trust-strip article,
  .hero-trust-strip article:nth-child(2) {
    border: 1px solid rgba(255, 255, 255, 0.16);
  }

  .hero-trust-strip article:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }
}

@media (min-width: 1091px) and (max-width: 1320px) {
  .primary-nav > a,
  .site-header.is-scrolled .primary-nav > a,
  .site-header.is-scrolled .primary-nav.is-open > a {
    padding-inline: 6px;
    font-size: 12px;
    letter-spacing: 0.6px;
  }

  .primary-nav,
  .site-header:not(.is-scrolled) .primary-nav,
  .site-header.is-scrolled .primary-nav,
  .site-header.is-scrolled .primary-nav.is-open {
    gap: 2px;
  }

  .header-consultation,
  .site-header.is-scrolled .header-consultation {
    padding-inline: 14px;
  }

  .header-call-copy strong {
    font-size: 10px;
    letter-spacing: 0.8px;
  }
}

/* Echte Section-Inhaltsbreite von 1400px statt 1400px inklusive Innenabstand. */
.container,
.masthead-content,
.footer-inner {
  width: min(1400px, calc(100% - 56px));
  max-width: none;
  padding-left: 0;
  padding-right: 0;
}

.home-service-inner,
.rozcestnik-grid {
  width: min(1400px, calc(100% - 56px));
  max-width: none;
}

@media (max-width: 680px) {
  .container,
  .masthead-content,
  .footer-inner,
  .home-service-inner,
  .rozcestnik-grid {
    width: calc(100% - 28px);
  }
}

/* Section-Rhythmus und alternierende Farbflaechen. */
main > section:not(.page-hero):not(.elite-banner) {
  padding-top: 125px;
  padding-bottom: 125px;
}

main > section:not(.page-hero):not(.elite-banner):not(.home-service-intro):not(.project-showcase):not(.living-section):nth-of-type(odd) {
  background: #f8f9f8;
}

main > section:not(.page-hero):not(.elite-banner):not(.home-service-intro):not(.project-showcase):not(.living-section):nth-of-type(even) {
  background: #e8eef1;
}

main > .process-band {
  background: #dce5e8;
}

main > .project-showcase {
  background: #0e0f0d;
}

main > .living-section {
  background: #232824;
}

.elite-banner .banner-content {
  padding-top: 125px;
  padding-bottom: 125px;
}

/* Leistungen-Section mit zwei quadratischen Bildbuehnen. */
.home-service-intro {
  padding-top: 125px;
  padding-bottom: 125px;
  background:
    radial-gradient(circle at 8% 12%, rgba(88, 176, 232, 0.14), transparent 28%),
    radial-gradient(circle at 92% 88%, rgba(224, 64, 48, 0.12), transparent 30%),
    #151816;
  color: var(--white);
}

.home-service-intro::before {
  inset: 0;
  width: 100%;
  height: 100%;
  background:
    linear-gradient(115deg, transparent 0 68%, rgba(255, 255, 255, 0.035) 68% 69%, transparent 69%),
    repeating-linear-gradient(90deg, transparent 0 139px, rgba(255, 255, 255, 0.025) 139px 140px);
  -webkit-mask-image: none;
  mask-image: none;
}

.home-service-inner {
  padding-top: 0;
  padding-bottom: 0;
  display: block;
}

.home-service-services {
  width: 100%;
}

.home-service-section-head {
  align-items: flex-end;
}

.home-service-section-head h2 {
  color: var(--white);
  font-size: clamp(38px, 4vw, 58px);
  font-weight: 600;
}

.home-service-section-head p {
  color: rgba(255, 255, 255, 0.68);
}

.home-service-section-head .section-note {
  color: var(--blue);
}

.service-showcase-list {
  margin-top: 64px;
  display: flex;
  flex-direction: column;
  gap: 76px;
}

.service-showcase-card {
  display: grid;
  grid-template-columns: minmax(420px, 0.88fr) minmax(0, 1.12fr);
  align-items: stretch;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: #202420;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.28);
}

.service-showcase-card--tiles {
  grid-template-columns: minmax(0, 1.12fr) minmax(420px, 0.88fr);
  background: #292b28;
}

.service-showcase-card--tiles .service-teaser-slider {
  order: 2;
}

.service-showcase-card--tiles .service-showcase-copy {
  order: 1;
}

.service-teaser-slider {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  background: #090a09;
}

.service-teaser-slider::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, transparent 55%, rgba(5, 6, 5, 0.38)),
    linear-gradient(90deg, rgba(5, 6, 5, 0.12), transparent 38%);
  pointer-events: none;
}

.service-teaser-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transform: scale(1.075);
  transition: opacity 1400ms ease, transform 7200ms ease;
}

.service-teaser-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.service-slider-dots {
  position: absolute;
  left: 24px;
  bottom: 22px;
  z-index: 2;
  display: flex;
  gap: 8px;
}

.service-slider-dots span {
  width: 30px;
  height: 3px;
  display: block;
  background: rgba(255, 255, 255, 0.38);
  transition: width 300ms ease, background 300ms ease;
}

.service-slider-dots span.is-active {
  width: 48px;
  background: var(--white);
}

.service-showcase-copy {
  padding: clamp(44px, 5vw, 76px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.service-showcase-number {
  margin-bottom: 20px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 2.4px;
}

.service-showcase-card--tiles .service-showcase-number {
  color: var(--red);
}

.service-showcase-copy h3 {
  margin: 0 0 24px;
  color: var(--white);
  font-family: var(--headline-font);
  font-size: clamp(34px, 3.2vw, 48px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.service-showcase-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 16px;
}

.service-showcase-copy p + p {
  margin-top: 15px;
}

.service-showcase-tags {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.service-showcase-tags span {
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.78);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.service-showcase-copy .button-cta-copy {
  margin-top: 28px;
  color: rgba(255, 255, 255, 0.82);
}

.service-showcase-card--bath .card-link {
  --site-button-bg: var(--blue);
}

.service-showcase-card--tiles .card-link {
  --site-button-bg: var(--red);
}

@media (max-width: 1090px) {
  .service-showcase-card,
  .service-showcase-card--tiles {
    grid-template-columns: 1fr;
  }

  .service-showcase-card--tiles .service-teaser-slider,
  .service-showcase-card--tiles .service-showcase-copy {
    order: initial;
  }

  .service-teaser-slider {
    max-width: none;
  }
}

@media (max-width: 680px) {
  main > section:not(.page-hero):not(.elite-banner),
  .home-service-intro {
    padding-top: 84px;
    padding-bottom: 84px;
  }

  .elite-banner .banner-content {
    padding-top: 90px;
    padding-bottom: 90px;
  }

  .home-service-section-head {
    align-items: flex-start;
  }

  .home-service-section-head p {
    text-align: left;
  }

  .service-showcase-list {
    margin-top: 44px;
    gap: 42px;
  }

  .service-showcase-copy {
    padding: 30px 24px 34px;
  }

  .service-showcase-copy h3 {
    font-size: 34px;
  }

  .service-showcase-copy p {
    font-size: 15px;
  }

  .service-slider-dots {
    left: 18px;
    bottom: 16px;
  }
}

/* Keine kleinen Kicker/Subtitel vor den eigentlichen Section-Titeln. */
.section-note,
.hero-kicker,
.showcase-head > p:first-child,
.banner-content > span:first-child,
.living-copy > p:first-child {
  display: none !important;
}

/* Bereinigter Leistungen-Header ohne Linie und rechten Zusatztext. */
.home-service-services {
  padding-top: 0;
  border-top: 0;
}

.home-service-section-head {
  display: block;
}

.home-service-section-head h2 {
  max-width: none;
  margin-top: 0;
}

.home-service-section-head > p {
  display: none;
}

/* Feste Farbzuordnung fuer Leistungen und Badges. */
.service-showcase-card--bath .service-showcase-copy h3 {
  color: var(--blue);
}

.service-showcase-card--tiles .service-showcase-copy h3 {
  color: var(--red);
}

.service-showcase-card--bath .service-showcase-tags span {
  border-color: var(--blue);
  background: var(--blue);
  color: var(--white);
}

.service-showcase-card--tiles .service-showcase-tags span {
  border-color: var(--red);
  background: var(--red);
  color: var(--white);
}

/* Optischer Ausgleich fuer das Pluszeichen oberhalb der Wortmarke. */
.brand,
.site-header.is-scrolled .brand {
  margin-top: -6px;
}

@media (max-width: 1090px) {
  .brand,
  .site-header.is-scrolled .brand {
    margin-top: -4px;
  }
}

@media (min-width: 1091px) {
  .primary-nav > a,
  .site-header.is-scrolled .primary-nav > a,
  .site-header.is-scrolled .primary-nav.is-open > a,
  .nav-dropdown-trigger {
    padding-left: 0;
    padding-right: 0;
  }
}

/* Header-Kanten ohne Aussenabstand: Logo links, CTA rechts. */
.header-shell,
.site-header.is-scrolled .header-shell {
  width: 100%;
  max-width: none;
  padding-left: 0;
  padding-right: 0;
}

.brand,
.site-header.is-scrolled .brand {
  left: 0;
}

.header-actions,
.site-header.is-scrolled .header-actions {
  right: 0;
}

/* Ausgewogene Navigation: mehr Abstand zwischen Punkten, sauberes Hover-Padding. */
@media (min-width: 1091px) {
  .primary-nav,
  .site-header:not(.is-scrolled) .primary-nav,
  .site-header.is-scrolled .primary-nav,
  .site-header.is-scrolled .primary-nav.is-open {
    gap: clamp(14px, 1.2vw, 22px);
  }

  .primary-nav > a,
  .site-header.is-scrolled .primary-nav > a,
  .site-header.is-scrolled .primary-nav.is-open > a,
  .nav-dropdown-trigger {
    padding-left: 13px;
    padding-right: 13px;
  }

  .nav-dropdown-trigger {
    justify-content: center;
    gap: 5px;
  }

  .nav-dropdown-arrow {
    width: 12px;
    height: 12px;
    flex-basis: 12px;
    align-self: center;
    margin: 0;
    transform-origin: center;
  }
}

/* Header wieder buendig innerhalb des 1400px-Content-Containers. */
.header-shell,
.site-header.is-scrolled .header-shell {
  width: min(1400px, calc(100% - 56px));
  max-width: none;
  margin-left: auto;
  margin-right: auto;
  padding-left: 0;
  padding-right: 0;
}

.brand,
.site-header.is-scrolled .brand {
  left: 0;
}

.header-actions,
.site-header.is-scrolled .header-actions {
  right: 0;
}

@media (max-width: 680px) {
  .header-shell,
  .site-header.is-scrolled .header-shell {
    width: calc(100% - 28px);
  }
}

/* Manuelle Steuerung und schnellerer Wechsel der Leistungs-Slideshows. */
.service-showcase-card--bath {
  --service-slider-accent: var(--blue);
}

.service-showcase-card--tiles {
  --service-slider-accent: var(--red);
}

.service-teaser-slide {
  transition: opacity 900ms ease, transform 5200ms ease;
}

.service-slider-arrow {
  position: absolute;
  top: 50%;
  z-index: 3;
  width: 46px;
  height: 46px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
  transform: translateY(-50%);
  transition: background 220ms ease, transform 220ms ease;
}

.service-slider-arrow--prev {
  left: 18px;
}

.service-slider-arrow--next {
  right: 18px;
}

.service-slider-arrow img {
  width: 18px;
  height: 18px;
  transition: filter 220ms ease;
}

.service-slider-arrow--prev img {
  transform: rotate(180deg);
}

.service-slider-arrow:hover,
.service-slider-arrow:focus-visible {
  background: var(--service-slider-accent);
  transform: translateY(-50%) scale(1.06);
}

.service-slider-arrow:hover img,
.service-slider-arrow:focus-visible img {
  filter: brightness(0) invert(1);
}

.service-slider-arrow:focus-visible,
.service-slider-dots button:focus-visible {
  outline: 2px solid var(--white);
  outline-offset: 3px;
}

.service-slider-dots button {
  width: 30px;
  height: 4px;
  padding: 0;
  display: block;
  border: 0;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.42);
  box-shadow: none;
  transition: width 300ms ease, background 300ms ease, transform 200ms ease;
}

.service-slider-dots button:hover {
  background: rgba(255, 255, 255, 0.78);
  transform: translateY(-1px);
}

.service-slider-dots button.is-active {
  width: 48px;
  background: var(--service-slider-accent);
}

@media (max-width: 680px) {
  .service-slider-arrow {
    width: 40px;
    height: 40px;
  }

  .service-slider-arrow--prev {
    left: 12px;
  }

  .service-slider-arrow--next {
    right: 12px;
  }
}

/* Benefits in der kompakten Startseiten-Ueber-uns-Section. */
.about-benefits-grid {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  background: var(--line);
}

.about-benefits-grid article {
  padding: 20px;
  background: rgba(255, 255, 255, 0.9);
}

.about-benefits-grid h3 {
  margin: 0 0 8px;
  color: var(--ink);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.2;
}

.about-benefits-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

/* Einheitliche Section-Titel ausserhalb aller Hero-Bereiche. */
main > section:not(.page-hero) h2 {
  margin-top: 0;
  margin-bottom: 24px;
  font-family: var(--headline-font);
  font-size: clamp(36px, 3.2vw, 48px);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: 1.2px;
}

main > section:not(.page-hero) .section-center h2,
main > section:not(.page-hero) .banner-content h2 {
  margin-left: auto;
  margin-right: auto;
}

main > section:not(.page-hero) h2 + p {
  margin-top: 0;
}

main > section:not(.page-hero) h2 + p + p {
  margin-top: 14px;
}

/* Kompakter CTA-Rhythmus: Satz direkt vor dem zugehoerigen Button. */
.button-cta-copy,
.home-service-card-grid .button-cta-copy,
.service-showcase-copy .button-cta-copy,
.elite-banner .button-cta-copy,
.project-showcase .button-cta-copy,
.site-footer .button-cta-copy,
.contact-form .button-cta-copy {
  margin-top: 16px;
  margin-bottom: 8px;
}

.button-cta-copy + .line-actions,
.button-cta-copy + .masthead-actions {
  margin-top: 0;
}

.button-cta-copy + .card-link,
.button-cta-copy + .footer-cta,
.button-cta-copy + .btn,
.button-cta-copy + .hero-button {
  margin-top: 0;
}

.elite-banner .button-cta-copy {
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 680px) {
  .about-benefits-grid {
    grid-template-columns: 1fr;
  }

  main > section:not(.page-hero) h2 {
    font-size: 36px;
  }
}

/* Hochwertige Benefitkarten und CTA-Details. */
.about-benefits-grid {
  gap: 12px;
  overflow: visible;
  background: transparent;
}

.about-benefits-grid article {
  --benefit-accent: var(--blue);
  position: relative;
  min-height: 138px;
  padding: 24px 22px 22px 26px;
  overflow: hidden;
  border: 1px solid rgba(32, 32, 24, 0.1);
  background:
    linear-gradient(135deg, rgba(88, 176, 232, 0.09), transparent 58%),
    rgba(255, 255, 255, 0.94);
  box-shadow: 0 16px 38px rgba(20, 21, 18, 0.08);
  transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease;
}

.about-benefits-grid article:nth-child(even) {
  --benefit-accent: var(--red);
  background:
    linear-gradient(135deg, rgba(224, 64, 48, 0.08), transparent 58%),
    rgba(255, 255, 255, 0.94);
}

.about-benefits-grid article::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--benefit-accent);
}

.about-benefits-grid article::after {
  content: "";
  position: absolute;
  top: 18px;
  right: 18px;
  width: 9px;
  height: 9px;
  border: 2px solid var(--benefit-accent);
  transform: rotate(45deg);
}

.about-benefits-grid article:hover {
  z-index: 1;
  border-color: color-mix(in srgb, var(--benefit-accent) 38%, transparent);
  box-shadow: 0 24px 54px rgba(20, 21, 18, 0.13);
  transform: translateY(-4px);
}

.about-benefits-grid h3 {
  max-width: calc(100% - 24px);
  margin-bottom: 10px;
  font-family: var(--headline-font);
  font-size: 21px;
  font-weight: 700;
  letter-spacing: 0.4px;
}

.about-benefits-grid p {
  font-size: 13.5px;
  line-height: 1.5;
}

.value-grid {
  gap: 18px;
}

.value-grid article {
  --benefit-accent: var(--blue);
  position: relative;
  min-height: 224px;
  padding: 34px 30px 30px;
  overflow: hidden;
  border: 1px solid rgba(32, 32, 24, 0.09);
  background:
    linear-gradient(145deg, rgba(88, 176, 232, 0.08), transparent 56%),
    var(--white);
  box-shadow: 0 18px 44px rgba(20, 21, 18, 0.08);
  transition: transform 240ms ease, box-shadow 240ms ease;
}

.value-grid article:nth-child(even) {
  --benefit-accent: var(--red);
  background:
    linear-gradient(145deg, rgba(224, 64, 48, 0.07), transparent 56%),
    var(--white);
}

.value-grid article::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 4px;
  background: var(--benefit-accent);
}

.value-grid article::after {
  content: "+";
  position: absolute;
  right: 24px;
  bottom: 17px;
  color: color-mix(in srgb, var(--benefit-accent) 58%, transparent);
  font-size: 28px;
  font-weight: 300;
  line-height: 1;
}

.value-grid article:hover {
  box-shadow: 0 28px 62px rgba(20, 21, 18, 0.14);
  transform: translateY(-5px);
}

.value-grid h3 {
  max-width: 240px;
  margin-bottom: 15px;
  font-family: var(--headline-font);
  font-size: 25px;
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: 0.5px;
}

.value-grid p {
  max-width: 280px;
  font-size: 15px;
  line-height: 1.55;
}

.button-cta-copy {
  --cta-marker: var(--blue);
  position: relative;
  padding-left: 18px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.45;
}

.button-cta-copy::before {
  content: "";
  position: absolute;
  left: 1px;
  top: 0.48em;
  width: 8px;
  height: 8px;
  background: var(--cta-marker);
  transform: rotate(45deg);
}

.service-showcase-card--tiles .button-cta-copy {
  --cta-marker: var(--red);
}

.elite-banner .button-cta-copy,
.project-showcase .button-cta-copy,
.site-footer .button-cta-copy,
.service-showcase-copy .button-cta-copy {
  color: rgba(255, 255, 255, 0.86);
}

.elite-banner .button-cta-copy::before,
.project-showcase .button-cta-copy::before,
.site-footer .button-cta-copy::before {
  background: var(--white);
}

.service-detail-grid {
  align-items: flex-start;
}

.service-detail-grid .detail-visual {
  margin-top: 0;
}

.detail-copy > p {
  font-size: 17px;
  line-height: 1.65;
}

main > section:not(.page-hero) h2 {
  text-wrap: balance;
}

@media (max-width: 1090px) {
  .value-grid article {
    min-height: 0;
  }

  .value-grid h3,
  .value-grid p {
    max-width: none;
  }
}

@media (max-width: 680px) {
  .about-benefits-grid article {
    min-height: 0;
  }

  .value-grid article {
    padding: 28px 24px 26px;
  }
}

/* CTA-Satz und Button als kompakte Einheit mit Abstand zum vorherigen Inhalt. */
.button-cta-copy,
.home-service-card-grid .button-cta-copy,
.service-showcase-copy .button-cta-copy,
.elite-banner .button-cta-copy,
.project-showcase .button-cta-copy,
.site-footer .button-cta-copy,
.contact-form .button-cta-copy {
  margin-top: 28px !important;
  margin-bottom: 9px !important;
  padding-left: 0;
  color: #30363b !important;
  font-size: 16px !important;
  font-weight: 700;
}

.button-cta-copy + .line-actions,
.button-cta-copy + .masthead-actions,
.button-cta-copy + .card-link,
.button-cta-copy + .footer-cta,
.button-cta-copy + .btn,
.button-cta-copy + .hero-button {
  margin-top: 0 !important;
}

.button-cta-copy::before,
.about-benefits-grid article::after,
.value-grid article::after {
  display: none !important;
}

.elite-banner .button-cta-copy,
.project-showcase .button-cta-copy,
.site-footer .button-cta-copy,
.service-showcase-copy .button-cta-copy {
  color: rgba(255, 255, 255, 0.9) !important;
}

/* Fliesstexte auf hellen Flaechen dunkler und groesser. */
main > section:not(.page-hero):not(.home-service-intro):not(.project-showcase):not(.living-section):not(.elite-banner) p,
main > section:not(.page-hero):not(.home-service-intro):not(.project-showcase):not(.living-section):not(.elite-banner) li {
  color: var(--muted);
  font-size: 18px;
}

.home-service-intro p,
.project-showcase p,
.living-section p,
.elite-banner p {
  color: rgba(255, 255, 255, 0.84);
  font-size: 18px;
}

.about-benefits-grid p {
  color: #4b535a !important;
  font-size: 15.5px !important;
}

.value-grid p {
  color: #4b535a !important;
  font-size: 17px !important;
}

.service-showcase-tags span {
  font-size: 13px;
}

.footer-column p {
  font-size: 17px;
}

.contact-form label,
.contact-form input,
.contact-form select,
.contact-form textarea {
  font-size: 16px;
}

@media (max-width: 680px) {
  .button-cta-copy,
  .home-service-card-grid .button-cta-copy,
  .service-showcase-copy .button-cta-copy,
  .elite-banner .button-cta-copy,
  .project-showcase .button-cta-copy,
  .site-footer .button-cta-copy,
  .contact-form .button-cta-copy {
    margin-top: 22px !important;
    font-size: 15px !important;
  }

  main > section:not(.page-hero) p,
  main > section:not(.page-hero) li {
    font-size: 17px;
  }

  .about-benefits-grid p {
    font-size: 15px !important;
  }
}

/* Reduziertes Editorial-Design statt klassischer Benefit-Cards. */
.about-benefits-grid {
  margin-top: 36px;
  display: block;
  border-top: 1px solid rgba(32, 32, 24, 0.18);
  background: transparent;
}

.about-benefits-grid article {
  --benefit-accent: var(--blue);
  --benefit-wash: rgba(88, 176, 232, 0.1);
  min-height: 0;
  padding: 20px 14px 20px 0;
  display: grid;
  grid-template-columns: minmax(165px, 0.8fr) minmax(0, 1.2fr);
  gap: 24px;
  align-items: start;
  overflow: visible;
  border: 0;
  border-bottom: 1px solid rgba(32, 32, 24, 0.18);
  background-color: transparent;
  background-image: linear-gradient(90deg, var(--benefit-wash), transparent 72%);
  background-position: left center;
  background-repeat: no-repeat;
  background-size: 0 100%;
  box-shadow: none;
  transform: none;
  transition: background-size 320ms ease, padding-left 240ms ease;
}

.about-benefits-grid article:nth-child(even) {
  --benefit-accent: var(--red);
  --benefit-wash: rgba(224, 64, 48, 0.08);
  background-color: transparent;
  background-image: linear-gradient(90deg, var(--benefit-wash), transparent 72%);
}

.about-benefits-grid article::before,
.about-benefits-grid article::after {
  display: none !important;
}

.about-benefits-grid article:hover {
  border-color: rgba(32, 32, 24, 0.18);
  background-size: 100% 100%;
  box-shadow: none;
  transform: none;
}

.about-benefits-grid h3 {
  max-width: none;
  margin: 0;
  color: var(--ink);
  font-size: 20px;
  line-height: 1.12;
  transition: color 220ms ease;
}

.about-benefits-grid article:hover h3 {
  color: var(--benefit-accent);
}

.about-benefits-grid p {
  margin: 0;
  padding-right: 8px;
  line-height: 1.55;
}

.value-grid {
  margin-top: 44px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 52px;
  background: transparent;
}

.value-grid article {
  --benefit-accent: var(--blue);
  --benefit-wash: rgba(88, 176, 232, 0.09);
  min-height: 0;
  padding: 30px 12px 30px 0;
  overflow: visible;
  border: 0;
  border-top: 1px solid rgba(32, 32, 24, 0.18);
  background-color: transparent;
  background-image: linear-gradient(90deg, var(--benefit-wash), transparent 78%);
  background-position: left center;
  background-repeat: no-repeat;
  background-size: 0 100%;
  box-shadow: none;
  transform: none;
  transition: background-size 320ms ease;
}

.value-grid article:nth-child(even) {
  --benefit-accent: var(--red);
  --benefit-wash: rgba(224, 64, 48, 0.075);
  background-color: transparent;
  background-image: linear-gradient(90deg, var(--benefit-wash), transparent 78%);
}

.value-grid article:nth-last-child(-n + 2) {
  border-bottom: 1px solid rgba(32, 32, 24, 0.18);
}

.value-grid article::before,
.value-grid article::after {
  display: none !important;
}

.value-grid article:hover {
  background-size: 100% 100%;
  box-shadow: none;
  transform: none;
}

.value-grid h3 {
  max-width: none;
  margin: 0 0 12px;
  color: var(--ink);
  font-size: 28px;
  transition: color 220ms ease;
}

.value-grid article:hover h3 {
  color: var(--benefit-accent);
}

.value-grid p {
  max-width: 520px;
  margin: 0;
}

@media (max-width: 1090px) {
  .value-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .value-grid article:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .value-grid article:last-child {
    border-bottom: 1px solid rgba(32, 32, 24, 0.18);
  }
}

@media (max-width: 680px) {
  .about-benefits-grid article {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 18px 4px 18px 0;
  }

  .value-grid article {
    padding: 24px 4px 24px 0;
  }

  .value-grid h3 {
    font-size: 25px;
  }
}

/* Finale Benefit-Gestaltung: eine zusammenhaengende Materialtafel statt Einzelkarten. */
.about-benefits-grid {
  position: relative;
  margin-top: 38px;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  overflow: visible;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: #151816;
  box-shadow:
    16px 16px 0 rgba(88, 176, 232, 0.11),
    0 28px 68px rgba(20, 21, 18, 0.2);
}

.about-benefits-grid::before {
  content: "";
  position: absolute;
  left: -1px;
  top: -1px;
  width: 42%;
  height: 4px;
  background: var(--blue);
}

.about-benefits-grid::after {
  content: "";
  position: absolute;
  right: -1px;
  bottom: -1px;
  width: 42%;
  height: 4px;
  background: var(--red);
}

.about-benefits-grid article,
.about-benefits-grid article:nth-child(even) {
  --benefit-accent: var(--blue);
  position: relative;
  min-height: 178px;
  padding: 30px 28px 28px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 12px;
  overflow: hidden;
  border: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background:
    linear-gradient(145deg, rgba(88, 176, 232, 0.1), transparent 54%),
    transparent;
  box-shadow: none;
  transform: none;
  transition: background-color 280ms ease, padding-bottom 280ms ease;
}

.about-benefits-grid article:nth-child(even) {
  --benefit-accent: var(--red);
  border-right: 0;
  background:
    linear-gradient(145deg, rgba(224, 64, 48, 0.09), transparent 54%),
    transparent;
}

.about-benefits-grid article:nth-child(n + 3) {
  border-bottom: 0;
}

.about-benefits-grid article::before {
  content: "";
  position: absolute;
  left: 28px;
  top: 28px;
  width: 46px;
  height: 4px;
  display: block !important;
  background: var(--benefit-accent);
  transition: width 280ms ease;
}

.about-benefits-grid article::after {
  display: none !important;
}

.about-benefits-grid article:hover {
  padding-left: 28px;
  padding-bottom: 34px;
  border-color: rgba(255, 255, 255, 0.1);
  background-color: rgba(255, 255, 255, 0.045);
  background-size: auto;
  box-shadow: none;
  transform: none;
}

.about-benefits-grid article:hover::before {
  width: 78px;
}

.about-benefits-grid h3,
.about-benefits-grid article:hover h3 {
  max-width: none;
  margin: 0;
  color: var(--white);
  font-family: var(--headline-font);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: 0.4px;
}

.about-benefits-grid p {
  margin: 0;
  padding: 0;
  color: rgba(255, 255, 255, 0.74) !important;
  font-size: 15px !important;
  line-height: 1.5;
}

/* Ueber-uns-Seite: dieselbe Designsprache als breite, zusammenhaengende Leiste. */
.value-grid {
  position: relative;
  margin-top: 48px;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: #151816;
  box-shadow: 0 30px 74px rgba(20, 21, 18, 0.2);
}

.value-grid article,
.value-grid article:nth-child(even) {
  --benefit-accent: var(--blue);
  min-height: 300px;
  padding: 38px 30px 32px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  border: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  background:
    linear-gradient(155deg, rgba(88, 176, 232, 0.11), transparent 48%),
    transparent;
  box-shadow: none;
  transform: none;
  transition: background-color 280ms ease, padding-bottom 280ms ease;
}

.value-grid article:nth-child(even) {
  --benefit-accent: var(--red);
  background:
    linear-gradient(155deg, rgba(224, 64, 48, 0.1), transparent 48%),
    transparent;
}

.value-grid article:last-child {
  border-right: 0;
}

.value-grid article::before {
  content: "";
  position: absolute;
  left: 30px;
  top: 34px;
  width: 50px;
  height: 4px;
  display: block !important;
  background: var(--benefit-accent);
  transition: width 280ms ease;
}

.value-grid article::after {
  display: none !important;
}

.value-grid article:hover {
  padding-bottom: 40px;
  background-color: rgba(255, 255, 255, 0.045);
  background-size: auto;
  box-shadow: none;
  transform: none;
}

.value-grid article:hover::before {
  width: 82px;
}

.value-grid h3,
.value-grid article:hover h3 {
  max-width: none;
  margin: 0 0 16px;
  color: var(--white);
  font-size: 27px;
  line-height: 1.05;
}

.value-grid p {
  max-width: none;
  margin: 0;
  color: rgba(255, 255, 255, 0.74) !important;
  font-size: 16px !important;
  line-height: 1.55;
}

@media (max-width: 1090px) {
  .value-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .value-grid article {
    min-height: 240px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .value-grid article:nth-child(even) {
    border-right: 0;
  }

  .value-grid article:nth-child(n + 3) {
    border-bottom: 0;
  }
}

@media (max-width: 680px) {
  .about-benefits-grid,
  .value-grid {
    grid-template-columns: 1fr;
  }

  .about-benefits-grid {
    box-shadow:
      8px 8px 0 rgba(88, 176, 232, 0.1),
      0 22px 52px rgba(20, 21, 18, 0.18);
  }

  .about-benefits-grid article,
  .about-benefits-grid article:nth-child(even),
  .value-grid article,
  .value-grid article:nth-child(even) {
    min-height: 170px;
    padding: 28px 24px 24px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .about-benefits-grid article:last-child,
  .value-grid article:last-child {
    border-bottom: 0;
  }

  .about-benefits-grid article::before,
  .value-grid article::before {
    left: 24px;
    top: 24px;
  }

  .about-benefits-grid h3 {
    font-size: 23px;
  }

  .value-grid h3 {
    font-size: 25px;
  }
}

/* Eingebundene Fachbereichs-Icons. */
.benefit-icon {
  position: absolute;
  left: 28px;
  top: 26px;
  z-index: 1;
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--benefit-accent);
  transition: transform 260ms ease, background 260ms ease;
}

.benefit-icon img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.about-benefits-grid article::before,
.value-grid article::before {
  display: none !important;
}

.value-grid article:hover .benefit-icon {
  transform: translateY(-3px) scale(1.06);
}

.value-grid .benefit-icon {
  left: 30px;
  top: 32px;
  width: 62px;
  height: 62px;
}

.value-grid .benefit-icon img {
  width: 32px;
  height: 32px;
}

.service-showcase-icon {
  width: 64px;
  height: 64px;
  margin-bottom: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--blue);
}

.service-showcase-card--tiles .service-showcase-icon {
  background: var(--red);
}

.service-showcase-icon img {
  width: 34px;
  height: 34px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.service-showcase-tags span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.service-showcase-tags img {
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

@media (max-width: 680px) {
  .benefit-icon,
  .value-grid .benefit-icon {
    left: 24px;
    top: 24px;
    width: 52px;
    height: 52px;
  }

  .benefit-icon img,
  .value-grid .benefit-icon img {
    width: 27px;
    height: 27px;
  }

  .service-showcase-icon {
    width: 56px;
    height: 56px;
  }
}

/* Vier individuelle Fliesenmuster fuer die Benefitfelder. */
.about-benefits-grid article:nth-child(1),
.value-grid article:nth-child(1) {
  background-color: #161a18;
  background-image:
    linear-gradient(90deg, transparent calc(50% - 0.5px), rgba(255, 255, 255, 0.085) 50%, transparent calc(50% + 0.5px)),
    linear-gradient(180deg, transparent calc(50% - 0.5px), rgba(255, 255, 255, 0.085) 50%, transparent calc(50% + 0.5px)),
    linear-gradient(145deg, rgba(88, 176, 232, 0.16), transparent 58%);
  background-size: 100% 100%, 100% 100%, 100% 100%;
}

.about-benefits-grid article:nth-child(2),
.value-grid article:nth-child(2) {
  background-color: #1b1918;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.075) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.075) 1px, transparent 1px),
    linear-gradient(90deg, transparent 49.5%, rgba(255, 255, 255, 0.075) 50%, transparent 50.5%),
    linear-gradient(145deg, rgba(224, 64, 48, 0.14), transparent 60%);
  background-position: 0 0, 0 0, 44px 22px, 0 0;
  background-size: 100% 44px, 88px 88px, 88px 44px, 100% 100%;
}

.about-benefits-grid article:nth-child(3),
.value-grid article:nth-child(3) {
  background-color: #171a18;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.075) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.075) 1px, transparent 1px),
    radial-gradient(circle at 18% 20%, rgba(88, 176, 232, 0.18), transparent 42%);
  background-size: 22px 22px, 22px 22px, 100% 100%;
}

.about-benefits-grid article:nth-child(4),
.value-grid article:nth-child(4) {
  background-color: #1a1818;
  background-image:
    repeating-linear-gradient(45deg, transparent 0 29px, rgba(255, 255, 255, 0.07) 29px 31px, transparent 31px 60px),
    repeating-linear-gradient(-45deg, transparent 0 29px, rgba(255, 255, 255, 0.045) 29px 31px, transparent 31px 60px),
    radial-gradient(circle at 82% 80%, rgba(224, 64, 48, 0.16), transparent 44%);
  background-size: auto, auto, 100% 100%;
}

.value-grid article:nth-child(1):hover {
  background-color: #1b2422;
}

.value-grid article:nth-child(2):hover {
  background-color: #261d1b;
}

.value-grid article:nth-child(3):hover {
  background-color: #1b2320;
}

.value-grid article:nth-child(4):hover {
  background-color: #241b1a;
}

@media (max-width: 680px) {
  .about-benefits-grid article:nth-child(1),
  .value-grid article:nth-child(1) {
    background-size: 50% 100%, 100% 50%, 100% 100%;
  }

  .about-benefits-grid article:nth-child(2),
  .value-grid article:nth-child(2) {
    background-size: 100% 40px, 80px 80px, 80px 40px, 100% 100%;
  }

  .about-benefits-grid article:nth-child(3),
  .value-grid article:nth-child(3) {
    background-size: 20px 20px, 20px 20px, 100% 100%;
  }
}

/* Benefitkarten immer als echte quadratische Fliesenflaechen. */
.about-benefits-grid article,
.about-benefits-grid article:nth-child(even),
.value-grid article,
.value-grid article:nth-child(even) {
  width: 100%;
  min-height: 0;
  aspect-ratio: 1 / 1;
}

/* Kompakte quadratische Benefitkarten mit sichtbarem Abstand. */
.about-benefits-grid {
  grid-template-columns: repeat(2, minmax(0, 240px));
  justify-content: start;
  gap: 16px;
  overflow: visible;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.about-benefits-grid::before,
.about-benefits-grid::after {
  display: none;
}

.about-benefits-grid article,
.about-benefits-grid article:nth-child(even) {
  max-width: 240px;
  padding: 22px 20px 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.about-benefits-grid article:hover {
  padding: 22px 20px 20px;
}

.about-benefits-grid .benefit-icon {
  left: 20px;
  top: 20px;
  width: 46px;
  height: 46px;
}

.about-benefits-grid .benefit-icon img {
  width: 24px;
  height: 24px;
}

.about-benefits-grid h3 {
  font-size: 20px;
}

.about-benefits-grid p {
  font-size: 13.5px !important;
}

.value-grid {
  grid-template-columns: repeat(4, minmax(0, 250px));
  justify-content: center;
  gap: 18px;
  overflow: visible;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.value-grid article,
.value-grid article:nth-child(even) {
  max-width: 250px;
  padding: 26px 24px 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.value-grid article:hover {
  padding: 26px 24px 22px;
}

.value-grid .benefit-icon {
  left: 24px;
  top: 24px;
  width: 50px;
  height: 50px;
}

.value-grid .benefit-icon img {
  width: 26px;
  height: 26px;
}

.value-grid h3 {
  font-size: 23px;
}

.value-grid p {
  font-size: 15px !important;
}

@media (max-width: 1090px) {
  .value-grid {
    grid-template-columns: repeat(2, minmax(0, 240px));
  }

  .value-grid article,
  .value-grid article:nth-child(even) {
    max-width: 240px;
    border: 1px solid rgba(255, 255, 255, 0.12);
  }
}

@media (max-width: 680px) {
  .about-benefits-grid,
  .value-grid {
    grid-template-columns: minmax(0, 270px);
    justify-content: center;
    gap: 14px;
  }

  .about-benefits-grid article,
  .about-benefits-grid article:nth-child(even),
  .value-grid article,
  .value-grid article:nth-child(even) {
    max-width: 270px;
    padding: 24px 22px 22px;
    border: 1px solid rgba(255, 255, 255, 0.12);
  }
}

/* Startseiten-Benefits direkt unter der rechten Bildspalte. */
.about-visual-column {
  width: 50%;
  display: flex;
  flex-direction: column;
  align-self: flex-start;
}

.about-visual-column .detail-visual {
  width: 100%;
  margin: 0;
}

.about-visual-column .detail-visual img {
  height: 440px;
}

.about-visual-column .about-benefits-grid {
  width: 100%;
  margin-top: 20px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  justify-content: stretch;
  gap: 10px;
}

.about-visual-column .about-benefits-grid article,
.about-visual-column .about-benefits-grid article:nth-child(even) {
  max-width: none;
  padding: 16px;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  background-image: none !important;
  text-align: center;
}

.about-visual-column .about-benefits-grid article,
.about-visual-column .about-benefits-grid article:hover {
  padding: 16px;
  border-color: rgba(255, 255, 255, 0.28);
  transition: none;
}

.about-visual-column .about-benefits-grid article:nth-child(1):hover {
  background-color: var(--blue);
}

.about-visual-column .about-benefits-grid article:nth-child(2):hover {
  background-color: var(--red);
}

.about-visual-column .about-benefits-grid article:nth-child(3):hover {
  background-color: var(--black);
}

.about-visual-column .about-benefits-grid article:nth-child(1) {
  background-color: var(--blue);
}

.about-visual-column .about-benefits-grid article:nth-child(2) {
  background-color: var(--red);
}

.about-visual-column .about-benefits-grid article:nth-child(3) {
  background-color: var(--black);
}

.about-visual-column .about-benefits-grid article:hover .benefit-icon {
  transform: none;
}

.about-visual-column .benefit-icon {
  position: relative;
  left: auto;
  top: auto;
  width: 64px;
  height: 64px;
  flex: 0 0 64px;
  margin: 0 auto;
  background: transparent;
  border: 0;
}

.about-visual-column .benefit-icon img {
  width: 42px;
  height: 42px;
}

.about-visual-column .about-benefits-grid h3 {
  min-height: 44px;
  margin: 0;
  font-size: 21px;
  line-height: 1.05;
  text-align: center;
}

.about-visual-column .about-benefits-grid p {
  margin: 0;
  font-size: 15px !important;
  line-height: 1.35;
  text-align: center;
}

.value-grid .benefit-icon {
  width: 56px;
  height: 56px;
}

.value-grid .benefit-icon img {
  width: 30px;
  height: 30px;
}

.value-grid h3 {
  font-size: 25px;
}

.value-grid p {
  font-size: 16px !important;
}

@media (max-width: 1090px) {
  .about-visual-column {
    width: 100%;
  }

  .about-visual-column .about-benefits-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .about-visual-column .detail-visual img {
    height: 340px;
  }

  .about-visual-column .about-benefits-grid {
    grid-template-columns: 1fr;
    justify-content: stretch;
    gap: 14px;
  }

  .about-visual-column .about-benefits-grid article,
  .about-visual-column .about-benefits-grid article:nth-child(even) {
    max-width: none;
  }
}

/* Showroom-Teaser mit dem aktuellen Showroom-Motiv als vollflächigem Hintergrund. */
.showroom-teaser-section {
  position: relative;
  min-height: 980px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: #111210;
  color: var(--white);
}

.showroom-teaser-section::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(5, 6, 5, 0.3) 0%, rgba(5, 6, 5, 0.2) 40%, rgba(5, 6, 5, 0.07) 72%, rgba(5, 6, 5, 0) 100%);
}

.showroom-teaser-slideshow {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: #111210;
}

.showroom-teaser-background {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transform: scale(1.035);
  transition: opacity 1400ms ease, transform 7200ms ease;
}

.showroom-teaser-background.is-active {
  opacity: 1;
  transform: scale(1.085);
}

.showroom-teaser-section .contact-map-grid {
  position: relative;
  z-index: 2;
  width: min(1400px, calc(100% - 56px));
  max-width: 1400px;
  margin: 0 auto;
  padding: 0;
  align-items: center;
  justify-content: center;
  overflow: visible;
  background: transparent;
  box-shadow: none;
}

.showroom-teaser-section .contact-panel {
  position: relative;
  isolation: isolate;
  width: min(1100px, 100%);
  padding: 82px 72px;
  border: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  text-align: center;
}

.showroom-teaser-section .contact-panel::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(1650px, 118vw);
  height: calc(100% + 340px);
  z-index: -1;
  pointer-events: none;
  background: radial-gradient(
    ellipse at center,
    rgba(0, 0, 0, 0.82) 0%,
    rgba(0, 0, 0, 0.68) 35%,
    rgba(0, 0, 0, 0.44) 58%,
    rgba(0, 0, 0, 0.18) 74%,
    rgba(0, 0, 0, 0) 90%
  );
  filter: blur(28px);
  transform: translate(-43%, -58%);
}

.showroom-teaser-section .contact-panel h2 {
  max-width: 980px;
  margin: 38px auto 0;
  color: var(--white);
  font-family: var(--headline-font);
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: 1.4px;
}

.showroom-teaser-section .contact-panel p:not(:first-child) {
  color: rgba(255, 255, 255, 0.98) !important;
}

.showroom-teaser-section .contact-panel > p:not(.button-cta-copy) {
  max-width: 920px;
  margin: 44px auto 0;
  color: rgba(255, 255, 255, 0.98) !important;
  font-size: 20px;
  line-height: 1.7;
}

.showroom-teaser-section .section-note {
  display: block;
  margin-bottom: 10px;
  color: var(--red);
  font-family: var(--headline-font);
  font-size: clamp(22px, 2.6vw, 34px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: 4px;
  text-align: center;
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.72);
}

.showroom-teaser-section .button-cta-copy {
  max-width: 820px;
  margin: 58px auto 22px !important;
  color: rgba(255, 255, 255, 0.98) !important;
  text-align: center;
}

.showroom-teaser-section .line-actions {
  display: flex;
  justify-content: center;
  margin-top: 24px !important;
}

.showroom-teaser-section .line-actions a {
  --site-button-bg: var(--black);
  background-color: var(--black) !important;
  background-image: linear-gradient(#292b28, #292b28) !important;
  color: var(--white);
}

@media (max-width: 1090px) {
  .showroom-teaser-section {
    min-height: 900px;
  }

  .showroom-teaser-background {
    object-position: 58% center;
  }

  .showroom-teaser-section .contact-panel {
    width: min(680px, 78%);
  }
}

@media (max-width: 680px) {
  .showroom-teaser-section {
    min-height: 980px;
    padding: 110px 0;
  }

  .showroom-teaser-section::after {
    background: linear-gradient(90deg, rgba(5, 6, 5, 0.32), rgba(5, 6, 5, 0.12));
  }

  .showroom-teaser-background {
    object-position: 62% center;
  }

  .showroom-teaser-section .contact-panel {
    width: 100%;
    padding: 54px 24px;
    background: transparent;
    backdrop-filter: none;
  }

  .showroom-teaser-section .contact-panel h2 {
    font-size: clamp(30px, 9vw, 40px);
  }

  .showroom-teaser-section .contact-panel > p:not(.button-cta-copy) {
    font-size: 16px;
    line-height: 1.65;
  }

  .showroom-teaser-section .contact-panel::before {
    width: calc(100% + 240px);
    height: calc(100% + 260px);
    filter: blur(18px);
    transform: translate(-44%, -57%);
  }

  .showroom-teaser-section .contact-map-grid {
    width: calc(100% - 36px);
  }
}

/* Fließtexte in allen Inhalts-Sections etwas größer und ruhiger lesbar. */
main > section:not(.page-hero) p:not(.button-cta-copy) {
  font-size: 19px;
  line-height: 1.7;
}

.showroom-teaser-section .contact-panel > p:not(.button-cta-copy) {
  color: rgba(255, 255, 255, 0.98) !important;
  font-size: 20px;
}

@media (max-width: 680px) {
  main > section:not(.page-hero) p:not(.button-cta-copy) {
    font-size: 18px;
  }

  .showroom-teaser-section .contact-panel > p:not(.button-cta-copy) {
    font-size: 18px;
  }
}

/* Einheitlicher Inhaltsrhythmus auf Startseite und allen Unterseiten. */
:where(
  .masthead-content,
  .page-hero-inner,
  .detail-copy,
  .catalogue-copy,
  .contact-panel,
  .contact-info-panel,
  .living-copy,
  .service-showcase-copy,
  .banner-content,
  .legal-content
) > :where(.hero-kicker, .section-note) + :is(h1, h2, h3) {
  margin-top: 50px !important;
}

:where(
  .masthead-content,
  .page-hero-inner,
  .detail-copy,
  .catalogue-copy,
  .contact-panel,
  .contact-info-panel,
  .living-copy,
  .service-showcase-copy,
  .banner-content,
  .legal-content
) > :is(h1, h2, h3) + p:not(.button-cta-copy) {
  margin-top: 50px !important;
}

:where(
  .masthead-content,
  .page-hero-inner,
  .detail-copy,
  .catalogue-copy,
  .contact-panel,
  .contact-info-panel,
  .living-copy,
  .service-showcase-copy,
  .banner-content,
  .legal-content
) > p:not(.button-cta-copy) + p:not(.button-cta-copy) {
  margin-top: 50px !important;
}

:where(.masthead-content, .page-hero-inner, .banner-content) > p + .masthead-actions,
:where(.detail-copy, .catalogue-copy, .contact-panel, .contact-info-panel, .living-copy, .service-showcase-copy) > p + .line-actions {
  margin-top: 50px !important;
}

.masthead-actions + .hero-trust-strip,
.section-center + :where(.value-grid, .content-card-grid, .faq-grid, .filter-chips),
.showcase-head + :where(.showcase-grid, .reference-card-grid),
.home-service-section-head + .service-showcase-list {
  margin-top: 50px !important;
}

.button-cta-copy,
.home-service-card-grid .button-cta-copy,
.service-showcase-copy .button-cta-copy,
.elite-banner .button-cta-copy,
.project-showcase .button-cta-copy,
.site-footer .button-cta-copy,
.contact-form .button-cta-copy {
  margin-top: 50px !important;
  margin-bottom: 0 !important;
  font-size: 19px !important;
  line-height: 1.55;
}

.button-cta-copy + :is(.line-actions, .masthead-actions, .catalogue-actions),
.button-cta-copy + :is(.card-link, .footer-cta, .btn, .hero-button) {
  margin-top: 12px !important;
}

@media (max-width: 680px) {
  :where(
    .masthead-content,
    .page-hero-inner,
    .detail-copy,
    .catalogue-copy,
    .contact-panel,
    .contact-info-panel,
    .living-copy,
    .service-showcase-copy,
    .banner-content,
    .legal-content
  ) > :where(.hero-kicker, .section-note) + :is(h1, h2, h3),
  :where(
    .masthead-content,
    .page-hero-inner,
    .detail-copy,
    .catalogue-copy,
    .contact-panel,
    .contact-info-panel,
    .living-copy,
    .service-showcase-copy,
    .banner-content,
    .legal-content
  ) > :is(h1, h2, h3) + p:not(.button-cta-copy),
  :where(
    .masthead-content,
    .page-hero-inner,
    .detail-copy,
    .catalogue-copy,
    .contact-panel,
    .contact-info-panel,
    .living-copy,
    .service-showcase-copy,
    .banner-content,
    .legal-content
  ) > p:not(.button-cta-copy) + p:not(.button-cta-copy) {
    margin-top: 38px !important;
  }

  .button-cta-copy,
  .home-service-card-grid .button-cta-copy,
  .service-showcase-copy .button-cta-copy,
  .elite-banner .button-cta-copy,
  .project-showcase .button-cta-copy,
  .site-footer .button-cta-copy,
  .contact-form .button-cta-copy {
    margin-top: 42px !important;
    font-size: 18px !important;
  }
}

/* Verbindliche, identische Fließtextgröße in jeder Section und im Footer. */
body main > section[class] p:not(.button-cta-copy),
body main > header[class] p:not(.button-cta-copy),
body footer[class] p:not(.button-cta-copy) {
  font-size: 19px !important;
  line-height: 1.5;
}

body .button-cta-copy {
  font-size: 19px !important;
}

/* Kompaktere Startseiten-Heroelemente. */
.elite-home .masthead-content h1 {
  max-width: 900px;
  font-size: clamp(42px, 4.8vw, 66px);
  line-height: 1.02;
}

.elite-home .masthead-content .hero-kicker {
  font-size: 13px;
  letter-spacing: 3px;
}

.elite-home .masthead-content > p {
  max-width: 840px;
}

.elite-home .masthead-actions .hero-button {
  min-height: 42px;
  padding: 9px 20px;
  font-size: 14px;
}

.elite-home .hero-trust-strip {
  width: min(920px, 100%);
  gap: 10px;
}

.elite-home .hero-trust-strip article {
  min-height: 94px;
  padding: 15px 14px 13px 72px;
}

.elite-home .hero-trust-icon {
  left: 15px;
  top: 15px;
  width: 40px;
  height: 40px;
  transform: none;
}

.elite-home .hero-trust-icon img {
  width: 22px;
  height: 22px;
}

.elite-home .masthead-content .hero-trust-strip h3 {
  font-size: 20px;
  line-height: 1.15;
}

.elite-home .masthead-content .hero-trust-strip article p {
  margin-top: 7px;
  font-size: 15px !important;
  line-height: 1.4 !important;
}

@media (max-width: 680px) {
  .elite-home .masthead-content h1 {
    font-size: clamp(31px, 9vw, 40px);
  }

  .elite-home .hero-trust-strip article {
    min-height: 88px;
    padding: 13px 12px 12px 66px;
  }

  .elite-home .hero-trust-icon {
    left: 13px;
    top: 13px;
    width: 36px;
    height: 36px;
  }

  .elite-home .masthead-content .hero-trust-strip article p {
    font-size: 14px !important;
  }
}

/* Rote Über-uns-Teaser-Card ohne Hoverwechsel und mit größerem Icon. */
.elite-home .about-visual-column .about-benefits-grid article:nth-child(2),
.elite-home .about-visual-column .about-benefits-grid article:nth-child(2):hover {
  padding: 16px !important;
  border-color: rgba(255, 255, 255, 0.28) !important;
  background-color: var(--red) !important;
  background-image: none !important;
  box-shadow: none !important;
  transform: none !important;
  transition: none !important;
  pointer-events: none;
}

.elite-home .about-visual-column .about-benefits-grid article:nth-child(2) *,
.elite-home .about-visual-column .about-benefits-grid article:nth-child(2):hover * {
  animation: none !important;
  transition: none !important;
}

.elite-home .about-visual-column .about-benefits-grid article:nth-child(2)::before,
.elite-home .about-visual-column .about-benefits-grid article:nth-child(2):hover::before {
  display: none !important;
}

.elite-home .about-visual-column .about-benefits-grid article:nth-child(2) .benefit-icon,
.elite-home .about-visual-column .about-benefits-grid article:nth-child(2):hover .benefit-icon {
  width: 72px;
  height: 72px;
  flex-basis: 72px;
  transform: none !important;
}

.elite-home .about-visual-column .about-benefits-grid article:nth-child(2) .benefit-icon img {
  width: 50px;
  height: 50px;
}

.elite-home .about-visual-column .about-benefits-grid article:nth-child(2) h3,
.elite-home .about-visual-column .about-benefits-grid article:nth-child(2):hover h3 {
  min-height: 0;
  margin-bottom: 2px;
  color: var(--white) !important;
  font-size: 21px !important;
  transform: none !important;
}

.elite-home .about-visual-column .about-benefits-grid article:nth-child(2) p {
  margin-top: 0;
}

/* Exakt identische Titelposition in allen drei Über-uns-Teaser-Cards. */
.elite-home .about-visual-column .about-benefits-grid article,
.elite-home .about-visual-column .about-benefits-grid article:hover {
  display: grid !important;
  grid-template-rows: 82px 50px auto;
  align-content: start;
  align-items: start;
  gap: 0;
}

.elite-home .about-visual-column .about-benefits-grid article .benefit-icon,
.elite-home .about-visual-column .about-benefits-grid article:hover .benefit-icon {
  grid-row: 1;
  align-self: start;
  justify-self: center;
  margin: 0 !important;
}

.elite-home .about-visual-column .about-benefits-grid article h3,
.elite-home .about-visual-column .about-benefits-grid article:hover h3 {
  grid-row: 2;
  align-self: start;
  min-height: 0;
  margin: 0 0 4px;
}

.elite-home .about-visual-column .about-benefits-grid article p {
  grid-row: 3;
  align-self: start;
  margin: 0;
}

/* Einheitliche Titel- und Textreihen bei weiterhin erlaubtem Textumbruch. */
.elite-home .about-visual-column .about-benefits-grid article,
.elite-home .about-visual-column .about-benefits-grid article:hover {
  padding-right: 16px !important;
  padding-left: 16px !important;
}

.elite-home .about-visual-column .about-benefits-grid article h3,
.elite-home .about-visual-column .about-benefits-grid article:hover h3 {
  width: 100%;
  max-width: 100%;
  margin: 0;
  overflow: visible;
  font-size: 21px !important;
  line-height: 1.05;
  text-align: center;
  white-space: normal;
}

/* Einheitlicher Abschluss jeder inhaltlichen Section: CTA-Text und klare Aktion. */
.section-followup-cta {
  --section-cta-accent: var(--red);
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-top: 50px;
  padding-top: 30px;
  border-top: 1px solid rgba(32, 32, 24, 0.18);
}

.rd-bath .section-followup-cta { --section-cta-accent: var(--blue); }
.rd-tiles .section-followup-cta { --section-cta-accent: var(--red); }

.section-followup-cta > p {
  max-width: 780px;
  margin: 0 !important;
  color: #30363b !important;
  font-size: 19px !important;
  font-weight: 700;
  line-height: 1.5;
}

.section-followup-cta > a {
  display: inline-flex;
  min-height: 52px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  padding: 14px 25px;
  background: var(--section-cta-accent);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-align: center;
  text-transform: uppercase;
  transition: background 180ms ease, transform 180ms ease;
}

.section-followup-cta > a:hover,
.section-followup-cta > a:focus-visible {
  background: #111411;
  transform: translateY(-2px);
}

.section-followup-cta--stacked {
  flex-direction: column;
  align-items: flex-start;
  gap: 13px;
  margin-top: 36px;
  padding-top: 26px;
}

.why-material-wall__detail > .why-material-wall__cta-copy {
  margin: auto 0 12px !important;
  padding-top: 30px;
  color: #30363b !important;
  font-size: 17px !important;
  font-weight: 700;
  line-height: 1.45;
}

.why-material-wall__cta-copy + .why-material-wall__cta { margin-top: 0; }

@media (max-width: 760px) {
  .section-followup-cta {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
    margin-top: 40px;
    padding-top: 24px;
  }

  .section-followup-cta > a { width: 100%; }
}

/* Aktive Hauptnavigation: aktuelle Seite dauerhaft rot markieren. */
.primary-nav > a.is-active,
.primary-nav .nav-item.is-active > .nav-dropdown-trigger,
.site-header.is-scrolled .primary-nav > a.is-active,
.site-header.is-scrolled .primary-nav .nav-item.is-active > .nav-dropdown-trigger,
.site-header.is-scrolled .primary-nav.is-open > a.is-active,
.site-header.is-scrolled .primary-nav.is-open .nav-item.is-active > .nav-dropdown-trigger {
  background: var(--red) !important;
  color: var(--white) !important;
}

.primary-nav .nav-item.is-active > .nav-dropdown-trigger .nav-dropdown-arrow,
.site-header.is-scrolled .primary-nav .nav-item.is-active > .nav-dropdown-trigger .nav-dropdown-arrow,
.site-header.is-scrolled .primary-nav.is-open .nav-item.is-active > .nav-dropdown-trigger .nav-dropdown-arrow {
  filter: brightness(0) invert(1) !important;
}

.primary-nav > a.is-active::before,
.primary-nav .nav-item.is-active > .nav-dropdown-trigger::before,
.site-header.is-scrolled .primary-nav > a.is-active::before,
.site-header.is-scrolled .primary-nav .nav-item.is-active > .nav-dropdown-trigger::before {
  right: 0;
  opacity: 1;
}

.primary-nav .dropdown-menu a.is-active,
.site-header.is-scrolled .primary-nav .dropdown-menu a.is-active {
  background: var(--red) !important;
  color: var(--white) !important;
}

/* Inhalt aller drei Über-uns-Teaser-Cards verbindlich mittig ausrichten. */
.elite-home .about-visual-column .about-benefits-grid article,
.elite-home .about-visual-column .about-benefits-grid article:hover {
  justify-items: stretch !important;
  text-align: center !important;
}

.elite-home .about-visual-column .about-benefits-grid article h3,
.elite-home .about-visual-column .about-benefits-grid article:hover h3,
.elite-home .about-visual-column .about-benefits-grid article p {
  display: flex !important;
  width: 100% !important;
  justify-self: stretch !important;
  align-items: flex-start;
  justify-content: center;
  text-align: center !important;
}

.elite-home .about-visual-column .benefit-card-copy {
  display: block !important;
  width: 100% !important;
  margin-right: auto !important;
  margin-left: auto !important;
  padding: 0 !important;
  text-align: center !important;
}

/* Finale konfliktfreie Card-Ausrichtung: jede Reihe horizontal und vertikal mittig. */
.elite-home .about-visual-column .about-benefits-grid article,
.elite-home .about-visual-column .about-benefits-grid article:hover,
.elite-home .about-visual-column .about-benefits-grid article:nth-child(2),
.elite-home .about-visual-column .about-benefits-grid article:nth-child(2):hover {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) !important;
  grid-template-rows: 82px 54px 58px !important;
  align-content: center !important;
  align-items: center !important;
  justify-content: stretch !important;
  justify-items: center !important;
  gap: 0 !important;
  text-align: center !important;
}

.elite-home .about-visual-column .about-benefits-grid article > .benefit-icon,
.elite-home .about-visual-column .about-benefits-grid article:hover > .benefit-icon {
  grid-column: 1 !important;
  grid-row: 1 !important;
  place-self: center !important;
  margin: 0 !important;
}

.elite-home .about-visual-column .about-benefits-grid article > h3,
.elite-home .about-visual-column .about-benefits-grid article:hover > h3 {
  grid-column: 1 !important;
  grid-row: 2 !important;
  display: grid !important;
  width: 100% !important;
  height: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  place-items: center !important;
  text-align: center !important;
}

.elite-home .about-visual-column .about-benefits-grid article > p {
  grid-column: 1 !important;
  grid-row: 3 !important;
  display: grid !important;
  width: 100% !important;
  height: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  place-items: center !important;
  text-align: center !important;
}

.elite-home .about-visual-column .benefit-card-copy {
  display: grid !important;
  width: 100% !important;
  height: 100% !important;
  place-items: center !important;
  text-align: center !important;
  text-align-last: center !important;
}

/* Produktive Ablauf-Section: interaktive Taktlinie. */
.process-timeline-section {
  padding: 120px 0;
  background:
    linear-gradient(135deg, rgba(88, 176, 232, 0.08), transparent 42%),
    #f4f6f7 !important;
  color: var(--ink);
}

.process-timeline-heading {
  max-width: 920px;
  margin: 0 auto 68px;
  text-align: center;
}

.process-timeline-heading .section-note {
  display: block;
  text-align: center;
}

.process-timeline-heading h2 {
  margin: 28px 0 0;
  color: var(--ink);
  font-family: var(--headline-font);
  font-size: clamp(36px, 3.2vw, 48px);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: 1.2px;
}

.process-timeline-heading p {
  max-width: 760px;
  margin: 32px auto 0;
  color: var(--muted) !important;
}

.process-timeline {
  padding: 44px;
  border: 1px solid rgba(32, 32, 24, 0.14);
  background: #fff;
  box-shadow: 0 34px 90px rgba(20, 21, 18, 0.14);
}

.process-timeline__rail {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-bottom: 42px;
}

.process-timeline__rail::before,
.process-timeline__progress {
  content: "";
  position: absolute;
  left: 10%;
  top: 31px;
  height: 4px;
}

.process-timeline__rail::before {
  right: 10%;
  background: #dfe4e7;
}

.process-timeline__progress {
  z-index: 1;
  width: 0;
  background: var(--blue);
  transition: width 420ms cubic-bezier(0.2, 0.8, 0.2, 1), background 320ms ease;
}

.process-timeline__progress[data-state="blue"] {
  background: var(--blue);
}

.process-timeline__progress[data-state="mixed"] {
  background: linear-gradient(
    90deg,
    var(--blue) 0 calc(var(--process-color-split, 100%) - 4%),
    var(--red) calc(var(--process-color-split, 100%) + 4%) 100%
  );
}

.process-timeline__progress[data-state="red"] {
  background: var(--red);
}

.process-timeline__step {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: center;
  gap: 12px;
  padding: 0 8px;
  border: 0;
  background: transparent;
  color: #596269;
}

.process-timeline__number {
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  border: 4px solid #dfe4e7;
  border-radius: 50%;
  background: #fff;
  font-family: var(--headline-font);
  font-size: 22px;
  font-weight: 800;
  transition: background 220ms ease, border-color 220ms ease, color 220ms ease, transform 220ms ease;
}

.process-timeline__title {
  min-height: 38px;
  color: #596269;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.25;
  text-align: center;
  transition: color 220ms ease;
}

.process-timeline__step:hover .process-timeline__number,
.process-timeline__step:focus-visible .process-timeline__number {
  border-color: var(--red);
  transform: scale(1.06);
}

.process-timeline__step.is-complete .process-timeline__number {
  border-color: var(--blue);
  background: var(--blue);
  color: #fff;
}

.process-timeline__step.is-complete.is-red-complete .process-timeline__number {
  border-color: var(--red);
  background: var(--red);
}

.process-timeline__step.is-active .process-timeline__number {
  border-color: var(--red);
  background: var(--red);
  color: #fff;
  transform: scale(1.12);
}

.process-timeline__step.is-active.is-blue-active .process-timeline__number {
  border-color: var(--blue);
  background: var(--blue);
}

.process-timeline__step.is-color-transition .process-timeline__number,
.process-timeline__step.is-complete.is-color-transition .process-timeline__number,
.process-timeline__step.is-active.is-color-transition .process-timeline__number {
  border-color: transparent;
  background:
    linear-gradient(90deg, var(--blue) 18%, var(--red) 82%) padding-box,
    linear-gradient(90deg, var(--blue) 18%, var(--red) 82%) border-box;
}

.process-timeline__step.is-active .process-timeline__title {
  color: var(--ink);
}

.process-timeline__detail {
  display: grid;
  grid-template-columns: 130px minmax(0, 1fr) minmax(280px, 0.42fr);
  min-height: 290px;
  border-top: 1px solid #dfe4e7;
}

.process-timeline__index {
  padding-top: 42px;
  color: var(--red);
  font-family: var(--headline-font);
  font-size: 78px;
  font-weight: 800;
  line-height: 1;
}

.process-timeline__copy {
  padding: 42px 48px 42px 0;
}

.process-timeline__copy > span {
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.process-timeline__copy h3 {
  margin: 14px 0 0;
  color: var(--ink);
  font-family: var(--headline-font);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: 1.2px;
}

.process-timeline__copy p {
  max-width: 720px;
  margin: 26px 0 0;
  color: var(--muted) !important;
}

.process-timeline__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.process-timeline__previous,
.process-timeline__next {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 13px 24px;
  border: 0;
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.9px;
  line-height: 1.15;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 180ms ease, transform 180ms ease;
}

.process-timeline__previous {
  background: var(--blue);
}

.process-timeline__next {
  background: var(--red);
}

.process-timeline__previous:hover:not(:disabled),
.process-timeline__previous:focus-visible:not(:disabled),
.process-timeline__next:hover,
.process-timeline__next:focus-visible {
  background: #111411;
  transform: translateY(-2px);
}

.process-timeline__previous:disabled {
  opacity: 0.42;
  cursor: not-allowed;
}

.process-timeline__previous:focus-visible,
.process-timeline__next:focus-visible {
  outline: 3px solid rgba(83, 174, 226, 0.42);
  outline-offset: 3px;
}

.process-timeline__facts {
  display: grid;
  align-content: center;
  gap: 26px;
  padding: 38px;
  background: #111411;
  color: #fff;
}

.process-timeline__facts small {
  display: block;
  color: rgba(255, 255, 255, 0.52);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}

.process-timeline__facts strong {
  display: block;
  margin-top: 7px;
  color: #fff;
  font-size: 16px;
  line-height: 1.35;
}

@media (max-width: 900px) {
  .process-timeline {
    padding: 28px;
  }

  .process-timeline__title {
    font-size: 12px;
  }

  .process-timeline__detail {
    grid-template-columns: 92px 1fr;
  }

  .process-timeline__facts {
    grid-column: 1 / -1;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .process-timeline-section {
    padding: 90px 0;
  }

  .process-timeline-heading {
    margin-bottom: 44px;
  }

  .process-timeline {
    margin-right: -10px;
    margin-left: -10px;
    padding: 22px 16px;
  }

  .process-timeline__rail::before,
  .process-timeline__progress {
    top: 24px;
  }

  .process-timeline__number {
    width: 50px;
    height: 50px;
    border-width: 3px;
    font-size: 18px;
  }

  .process-timeline__title {
    display: none;
  }

  .process-timeline__detail {
    grid-template-columns: 1fr;
    margin-top: 24px;
  }

  .process-timeline__index {
    padding-top: 28px;
    font-size: 54px;
  }

  .process-timeline__copy {
    padding: 12px 0 34px;
  }

  .process-timeline__facts {
    grid-template-columns: 1fr;
    padding: 28px;
  }
}

/* Kräftigere Hauptüberschrift in der Über-uns-Teaser-Section. */
.elite-home #fachbetrieb .detail-copy h2 {
  max-width: 720px;
  font-size: clamp(40px, 4vw, 54px);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: 1.2px;
}

@media (max-width: 680px) {
  .elite-home #fachbetrieb .detail-copy h2 {
    font-size: clamp(32px, 10vw, 42px);
  }
}

/* Finale Warum-wir-Section: interaktive CI-Materialwand. */
.why-material-wall-section {
  padding: 120px 0;
  background: #eef2f4;
}

.why-material-wall-heading {
  max-width: 920px;
  margin: 0 auto 68px;
}

.why-material-wall-heading .section-note {
  display: block;
  text-align: center;
}

.why-material-wall-heading p {
  max-width: 760px;
  margin: 26px auto 0;
  color: var(--muted) !important;
}

.why-material-wall {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(390px, 0.38fr);
  min-height: 690px;
  border: 1px solid rgba(32, 32, 24, 0.14);
  background: #111411;
  box-shadow: 0 34px 90px rgba(20, 21, 18, 0.16);
}

.why-material-wall__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  gap: 1px;
  background: rgba(255, 255, 255, 0.22);
}

.why-material-wall__tile {
  position: relative;
  min-height: 220px;
  padding: 28px;
  border: 0;
  overflow: hidden;
  background: #111411;
  color: #fff;
  text-align: left;
  cursor: pointer;
  transition: transform 220ms ease, box-shadow 220ms ease, filter 220ms ease;
}

.why-material-wall__tile:nth-child(1),
.why-material-wall__tile:nth-child(6),
.why-material-wall__tile:nth-child(7),
.why-material-wall__tile:nth-child(8) {
  grid-column: span 2;
}

.why-material-wall__tile:nth-child(1),
.why-material-wall__tile:nth-child(6) {
  background: var(--blue);
}

.why-material-wall__tile:nth-child(3),
.why-material-wall__tile:nth-child(5),
.why-material-wall__tile:nth-child(8) {
  background: var(--red);
}

.why-material-wall__tile:nth-child(2),
.why-material-wall__tile:nth-child(4),
.why-material-wall__tile:nth-child(7) {
  background: #111411;
}

.why-material-wall__topline {
  display: flex;
  width: 100%;
  height: 44px;
  align-items: center;
  justify-content: space-between;
  margin: 0;
}

.why-material-wall__topline b {
  display: flex;
  height: 44px;
  align-items: center;
  color: rgba(255, 255, 255, 0.2);
  font-family: var(--headline-font);
  font-size: 54px;
  line-height: 0.8;
}

.why-material-wall__topline img {
  display: block;
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  filter: brightness(0) invert(1);
}

.why-material-wall__tile .why-material-wall__title {
  display: block;
  margin-top: 28px;
  font-family: var(--headline-font);
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
}

.why-material-wall__tile small {
  display: block;
  margin-top: 13px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
  line-height: 1.4;
}

.why-material-wall__tile:hover,
.why-material-wall__tile.is-active {
  z-index: 2;
  box-shadow: inset 0 0 0 6px #fff, 0 18px 45px rgba(0, 0, 0, 0.28);
  filter: saturate(1.08);
  transform: scale(1.022);
}

.why-material-wall__tile:focus-visible {
  z-index: 3;
  outline: 4px solid #fff;
  outline-offset: -7px;
}

.why-material-wall__detail {
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: 58px;
  background: #fff;
  color: var(--ink);
}

.why-material-wall__mark {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.why-material-wall__mark img {
  width: 58px;
  height: 58px;
}

.why-material-wall__mark span {
  color: var(--red);
  font-family: var(--headline-font);
  font-size: 76px;
  line-height: 0.8;
}

.why-material-wall__label {
  margin: 42px 0 0 !important;
  color: var(--blue) !important;
  font-size: 11px !important;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.why-material-wall__detail h3 {
  margin: 16px 0 0;
  font-family: var(--headline-font);
  font-size: clamp(31px, 2.8vw, 42px);
  font-weight: 700;
  line-height: 0.98;
}

.why-material-wall__detail > p:not(.why-material-wall__label) {
  margin: 26px 0 0;
  color: var(--muted) !important;
}

.why-material-wall__detail strong {
  display: block;
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid #d8dfe2;
  font-size: 16px;
  line-height: 1.4;
}

.why-material-wall__cta {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  margin-top: auto;
  padding: 14px 24px;
  background: var(--red);
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  transition: background 180ms ease, transform 180ms ease;
}

.why-material-wall__cta:hover,
.why-material-wall__cta:focus-visible {
  background: #111411;
  transform: translateY(-2px);
}

@media (max-width: 1080px) {
  .why-material-wall {
    grid-template-columns: 1fr;
  }

  .why-material-wall__detail {
    min-height: 460px;
  }
}

@media (max-width: 680px) {
  .why-material-wall-section {
    padding: 90px 0;
  }

  .why-material-wall-heading {
    margin-bottom: 44px;
  }

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

  .why-material-wall__tile,
  .why-material-wall__tile:nth-child(1),
  .why-material-wall__tile:nth-child(6),
  .why-material-wall__tile:nth-child(7),
  .why-material-wall__tile:nth-child(8) {
    grid-column: auto;
    min-height: 210px;
    padding: 22px;
  }

  .why-material-wall__tile .why-material-wall__title {
    font-size: 19px;
  }

  .why-material-wall__detail {
    min-height: 520px;
    padding: 38px 26px;
  }

  .why-material-wall__cta {
    width: 100%;
    align-self: stretch;
  }
}

.elite-home .about-visual-column .about-benefits-grid article p {
  width: 100%;
  max-width: 100%;
  overflow: visible;
  font-size: 16px !important;
  line-height: 1.4 !important;
  letter-spacing: 0;
  text-align: center;
  white-space: normal;
}

/* Einheitliche Füllanimation für alle echten Inhalts-CTAs. Interaktive Tabs,
   Sliderpfeile und Akkordeon-Schalter bleiben davon bewusst unberührt. */
.rd-button,
.section-followup-cta > a,
.reference-filmstrip-cta > a,
.why-material-wall__cta,
.references-inline-heading__button,
.process-timeline__previous,
.process-timeline__next {
  --content-button-bg: var(--blue);
  --content-button-fill: #111411;
  position: relative;
  overflow: hidden;
  border: 0 !important;
  border-radius: 0 !important;
  background-color: var(--content-button-bg) !important;
  background-image: linear-gradient(var(--content-button-fill), var(--content-button-fill)) !important;
  background-position: left center !important;
  background-repeat: no-repeat !important;
  background-size: 0 100% !important;
  color: #fff !important;
  text-decoration: none;
  transform: none;
  transition: background-size .5s ease, color .3s ease, transform 220ms ease, box-shadow 220ms ease !important;
}

.rd-button {
  --content-button-bg: #111411;
  --content-button-fill: var(--red);
}

.rd-button--accent,
.rd-visit__copy .rd-button,
.rd-showroom-promo__copy .rd-button,
.reference-filmstrip-cta > a,
.why-material-wall__cta,
.references-inline-heading__button,
.process-timeline__next {
  --content-button-bg: var(--red);
  --content-button-fill: #111411;
}

.section-followup-cta > a {
  --content-button-bg: var(--section-cta-accent, var(--red));
  --content-button-fill: #111411;
}

.process-timeline__previous {
  --content-button-bg: var(--blue);
  --content-button-fill: #111411;
}

.rd-button:hover,
.rd-button:focus-visible,
.section-followup-cta > a:hover,
.section-followup-cta > a:focus-visible,
.reference-filmstrip-cta > a:hover,
.reference-filmstrip-cta > a:focus-visible,
.why-material-wall__cta:hover,
.why-material-wall__cta:focus-visible,
.references-inline-heading__button:hover,
.references-inline-heading__button:focus-visible,
.process-timeline__previous:hover:not(:disabled),
.process-timeline__previous:focus-visible:not(:disabled),
.process-timeline__next:hover,
.process-timeline__next:focus-visible {
  background-size: 100% 100% !important;
  color: #fff !important;
  box-shadow: 0 12px 28px rgba(20, 21, 18, .18);
  transform: translateY(-2px);
}

.process-timeline__previous:disabled {
  background-image: none !important;
}

@media (prefers-reduced-motion: reduce) {
  .rd-button,
  .section-followup-cta > a,
  .reference-filmstrip-cta > a,
  .why-material-wall__cta,
  .references-inline-heading__button,
  .process-timeline__previous,
  .process-timeline__next {
    transition: none !important;
  }
}
/* Kontaktseite ohne Hero: kompakter Kontakt links, Formular rechts. */
.contact-no-hero main {
  background: #edf2f4;
}

.contact-page--unified {
  padding: 150px 0 110px;
  background: #edf2f4;
}

.contact-layout--unified {
  align-items: flex-start;
  gap: 34px;
}

.contact-side-stack {
  display: grid;
  width: 42%;
  gap: 24px;
}

.contact-layout--unified .contact-form {
  width: 58%;
}

.contact-info-panel--compact {
  width: 100%;
  padding: 34px 38px;
}

.contact-info-panel--compact h1 {
  margin: 0;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: clamp(30px, 3vw, 43px);
  font-weight: 300;
  line-height: 1.12;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.contact-info-panel--compact > p {
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.55;
}

.contact-info-panel__links {
  display: grid;
  gap: 8px;
}

.contact-info-panel__links a {
  width: fit-content;
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
}

.contact-info-panel__links a:hover,
.contact-info-panel__links a:focus-visible {
  color: var(--red);
}

.contact-info-panel--compact small {
  display: block;
  margin-top: 23px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.contact-directions-card {
  overflow: hidden;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 18px 54px rgba(20, 21, 18, 0.08);
}

.contact-directions-card__copy {
  padding: 30px 34px 26px;
}

.contact-directions-card__copy h2 {
  margin: 0;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: clamp(27px, 2.5vw, 36px);
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.contact-directions-card__copy p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.5;
}

.contact-directions-card .map-frame {
  display: block;
  width: 100%;
  height: 330px;
  border: 0;
}

@media (max-width: 1000px) {
  .contact-layout--unified {
    flex-direction: column;
  }

  .contact-side-stack,
  .contact-layout--unified .contact-form {
    width: 100%;
  }
}

@media (max-width: 680px) {
  .contact-page--unified {
    padding: 118px 0 75px;
  }

  .contact-info-panel--compact,
  .contact-directions-card__copy {
    padding: 28px 22px;
  }

  .contact-directions-card .map-frame {
    height: 290px;
  }
}

/* Kontakt – gewählte Variante 01: Beratungskonsole */
.contact-console-section {
  padding: 150px 0 110px;
  background:
    linear-gradient(135deg, rgba(88, 176, 232, 0.08), transparent 34%),
    linear-gradient(315deg, rgba(224, 64, 48, 0.06), transparent 30%),
    #eaf0f2;
}

.contact-console-live {
  position: relative;
  display: grid;
  grid-template-columns: minmax(350px, 0.72fr) minmax(0, 1.28fr);
  min-height: 760px;
  overflow: hidden;
  border-top: 7px solid var(--red);
  background: #fff;
  box-shadow: 0 35px 95px rgba(16, 20, 18, 0.18);
}

.contact-console-live::before {
  content: "";
  position: absolute;
  z-index: 3;
  left: 0;
  top: -7px;
  width: 34%;
  height: 7px;
  background: var(--blue);
}

.contact-console-live__side {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 58px 50px;
  overflow: hidden;
  background: #111411;
  color: #fff;
}

.contact-console-live__side::after {
  content: "KONTAKT";
  position: absolute;
  right: -28px;
  bottom: -38px;
  color: rgba(255, 255, 255, 0.035);
  font-family: var(--headline-font);
  font-size: 128px;
  line-height: 1;
  pointer-events: none;
}

.contact-console-live__side h1 {
  margin: 0;
  color: #fff;
  font-family: var(--headline-font);
  font-size: clamp(48px, 5vw, 70px);
  line-height: 0.92;
  text-transform: uppercase;
}

.contact-console-live__side > p {
  max-width: 410px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.68) !important;
  font-size: 17px !important;
  line-height: 1.55;
}

.contact-console-live__contacts {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 10px;
  margin-top: 52px;
}

.contact-console-live__contacts > a,
.contact-console-live__contacts > div {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  min-height: 78px;
  padding: 10px 15px 10px 10px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  text-decoration: none;
}

.contact-console-live__contacts > a {
  transition: border-color 220ms ease, background 220ms ease, transform 220ms ease;
}

.contact-console-live__contacts > a:hover,
.contact-console-live__contacts > a:focus-visible {
  border-color: rgba(255, 255, 255, 0.48);
  background: rgba(255, 255, 255, 0.07);
  transform: translateX(5px);
}

.contact-console-live__contacts strong {
  min-width: 0;
  overflow-wrap: anywhere;
  font-size: 16px;
  line-height: 1.45;
}

.contact-console-live__icon {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  background: #2f3431;
}

.contact-console-live__icon--blue {
  background: var(--blue);
}

.contact-console-live__icon--red {
  background: var(--red);
}

.contact-console-live__icon img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.contact-console-live__icon img[src*="location.svg"] {
  width: 22px;
  height: 32px;
}

.contact-console-live__map {
  position: relative;
  z-index: 1;
  margin-top: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: #2a2f2b;
}

.contact-console-live__map iframe {
  display: block;
  width: 100%;
  height: 210px;
  border: 0;
  filter: grayscale(1) contrast(1.05);
}

.contact-console-live__map a {
  position: absolute;
  right: 10px;
  bottom: 10px;
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  padding: 10px 14px;
  background: #111411;
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  transition: background 220ms ease;
}

.contact-console-live__map a:hover,
.contact-console-live__map a:focus-visible {
  background: var(--red);
}

.cookie-content-placeholder {
  display: flex;
  min-height: 210px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
  padding: 28px;
  background: #242925;
  color: #fff;
  text-align: center;
}

.cookie-content-placeholder[hidden] {
  display: none;
}

.cookie-content-placeholder strong {
  font-family: var(--headline-font);
  font-size: 24px;
  line-height: 1;
  text-transform: uppercase;
}

.cookie-content-placeholder span {
  max-width: 310px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  line-height: 1.5;
}

.cookie-content-placeholder button {
  min-height: 42px;
  margin-top: 4px;
  padding: 10px 16px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  background: transparent;
  color: #fff;
  font: inherit;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  cursor: pointer;
}

.cookie-content-placeholder button:hover,
.cookie-content-placeholder button:focus-visible {
  border-color: var(--red);
  background: var(--red);
}

.footer-legal button {
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  cursor: pointer;
}

.footer-legal button:hover,
.footer-legal button:focus-visible {
  color: var(--red);
}

#cc-main {
  --cc-font-family: "Inter", Arial, sans-serif;
  --cc-bg: #0e0f0d;
  --cc-primary-color: #ffffff;
  --cc-secondary-color: #c9cfcb;
  --cc-btn-primary-bg: #e04030;
  --cc-btn-primary-hover-bg: #f05241;
  --cc-btn-primary-border-color: #e04030;
  --cc-btn-primary-hover-border-color: #f05241;
  --cc-btn-secondary-bg: transparent;
  --cc-btn-secondary-color: #ffffff;
  --cc-btn-secondary-border-color: rgba(255, 255, 255, 0.34);
  --cc-btn-secondary-hover-bg: #ffffff;
  --cc-btn-secondary-hover-color: #0e0f0d;
  --cc-btn-secondary-hover-border-color: #ffffff;
  --cc-toggle-on-bg: #e04030;
  --cc-toggle-off-bg: #5b615d;
  --cc-cookie-category-block-bg: #191b18;
  --cc-cookie-category-block-border: #292c28;
  --cc-cookie-category-block-hover-bg: #222520;
  --cc-cookie-category-block-hover-border: #343832;
  --cc-cookie-category-expanded-block-bg: #121310;
  --cc-cookie-category-expanded-block-hover-bg: #343832;
  --cc-separator-border-color: rgba(255, 255, 255, 0.14);
  --cc-footer-bg: #151714;
  --cc-footer-color: #c9cfcb;
  --cc-footer-border-color: rgba(255, 255, 255, 0.14);
  --cc-overlay-bg: rgba(4, 5, 4, 0.82);
  --cc-modal-border-radius: 3px;
  --cc-btn-border-radius: 2px;
  font-size: 19px;
}

#cc-main .cm--box.cm--wide {
  max-width: 780px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 34px 110px rgba(0, 0, 0, 0.58);
}

#cc-main .cm--box.cm--wide::before {
  content: "";
  display: block;
  flex: 0 0 auto;
  width: 100%;
  height: 9px;
  background: linear-gradient(90deg, var(--red) 0 72%, var(--blue) 72% 100%);
}

#cc-main .cm--box.cm--wide .cm__body {
  min-height: 500px;
}

#cc-main .cm__texts {
  padding: 2.8rem 3.2rem 1.7rem;
}

#cc-main .cm__title,
#cc-main .cm__desc {
  padding-right: 0;
  padding-left: 0;
}

#cc-main .cm__title {
  max-width: 650px;
  font-size: 2.25em;
  line-height: 0.98;
  letter-spacing: 0.025em;
}

#cc-main .cm__title::before {
  content: "DATENSCHUTZ";
  display: block;
  margin-bottom: 0.85rem;
  color: var(--red);
  font-family: "Inter", Arial, sans-serif;
  font-size: 0.3em;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.18em;
}

#cc-main .cm__desc {
  max-width: 670px;
  margin-top: 1.45rem;
  color: #d4d9d6;
  font-size: 1em;
  line-height: 1.72;
}

#cc-main .cm__btns {
  padding: 1.5rem 3.2rem 2.7rem;
  border-top-color: rgba(255, 255, 255, 0.14);
}

#cc-main .cm__btn {
  min-height: 58px;
  padding-right: 1.35rem;
  padding-left: 1.35rem;
  font-size: 0.87em;
  letter-spacing: 0.025em;
  text-transform: uppercase;
}

#cc-main .cm__btn[data-role="necessary"] {
  border-color: rgba(255, 255, 255, 0.34);
  background: transparent;
  color: #ffffff;
}

#cc-main .cm__btn[data-role="necessary"]:hover,
#cc-main .cm__btn[data-role="necessary"]:focus-visible {
  border-color: #ffffff;
  background: #ffffff;
  color: #0e0f0d;
}

#cc-main .cm__btn[data-role="show"] {
  border-color: rgba(88, 176, 232, 0.68);
  color: #b9e2fb;
}

#cc-main .cm__btn[data-role="show"]:hover,
#cc-main .cm__btn[data-role="show"]:focus-visible {
  border-color: var(--blue);
  background: var(--blue);
  color: #0e0f0d;
}

#cc-main .cm__footer {
  min-height: 48px;
}

#cc-main .cm__links {
  padding: 0.65rem 3.2rem 0.75rem;
}

#cc-main .cm__link-group {
  justify-content: flex-start;
  font-size: 0.76em;
  letter-spacing: 0.035em;
  text-transform: uppercase;
}

#cc-main .pm--box {
  max-width: 780px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 34px 110px rgba(0, 0, 0, 0.58);
}

#cc-main .cm__title,
#cc-main .pm__title,
#cc-main .pm__section-title {
  font-family: var(--headline-font);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

#cc-main .cm__btn,
#cc-main .pm__btn {
  font-weight: 800;
}

@media (max-width: 640px) {
  #cc-main {
    font-size: 17px;
  }

  #cc-main .cm--box.cm--wide {
    max-height: calc(100dvh - 1rem);
  }

  #cc-main .cm--box.cm--wide::before {
    height: 6px;
  }

  #cc-main .cm--box.cm--wide .cm__body {
    min-height: 0;
  }

  #cc-main .cm__texts {
    padding: 1.45rem 1.3rem 0.8rem;
  }

  #cc-main .cm__title {
    font-size: 1.72em;
    line-height: 1.02;
  }

  #cc-main .cm__title::before {
    margin-bottom: 0.65rem;
    font-size: 0.34em;
  }

  #cc-main .cm__desc {
    margin-top: 0.9rem;
    font-size: 0.93em;
    line-height: 1.55;
  }

  #cc-main .cm__btns {
    padding: 1rem 1.3rem 1.25rem;
  }

  #cc-main .cm__btn {
    min-height: 50px;
  }

  #cc-main .cm__links {
    padding-right: 1.3rem;
    padding-left: 1.3rem;
  }
}

.contact-console-live__form.contact-form {
  width: auto;
  padding: 58px 62px;
  border: 0;
  box-shadow: none;
}

.contact-console-live__form .section-note {
  margin: 0;
  color: var(--red);
}

.contact-console-live__form h2 {
  max-width: 720px;
  margin: 14px 0 0;
  font-family: var(--headline-font);
  font-size: clamp(40px, 4vw, 58px);
  font-weight: 700;
  line-height: 0.96;
  letter-spacing: 0;
}

.contact-console-live__form > p:not(.button-cta-copy):not(.form-message) {
  max-width: 720px;
  margin-top: 5px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.55;
}

.contact-console-live__form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 22px;
  margin-top: 14px;
  text-align: left;
}

.contact-console-live__form-grid > label {
  position: relative;
  display: block;
  text-align: left !important;
}

.contact-console-live__form-grid > label > input,
.contact-console-live__form-grid > label > select,
.contact-console-live__form-grid > label > textarea {
  display: block;
  margin-top: 8px;
}

.contact-required-mark {
  display: inline;
  color: var(--red);
  font: inherit;
}

.contact-console-live__field--wide {
  grid-column: 1 / -1;
}

.contact-console-live__form input,
.contact-console-live__form select,
.contact-console-live__form textarea {
  background: #f5f7f7;
}

.contact-console-live__form input:focus,
.contact-console-live__form select:focus,
.contact-console-live__form textarea:focus {
  border-color: var(--red);
  outline: 2px solid rgba(224, 64, 48, 0.14);
  outline-offset: 0;
}

.contact-console-live__form .checkbox-label {
  margin-top: 4px;
}

.contact-console-live__form .btn {
  align-self: flex-start;
}

@media (max-width: 1050px) {
  .contact-console-live {
    grid-template-columns: 330px minmax(0, 1fr);
  }

  .contact-console-live__side {
    padding: 48px 34px;
  }

  .contact-console-live__form.contact-form {
    padding: 50px 40px;
  }
}

@media (max-width: 820px) {
  .contact-console-live {
    grid-template-columns: 1fr;
  }

  .contact-console-live::before {
    width: 50%;
  }

  .contact-console-live__side {
    min-height: 620px;
  }
}

@media (max-width: 600px) {
  .contact-console-section {
    padding: 118px 0 74px;
  }

  .contact-console-live__side,
  .contact-console-live__form.contact-form {
    padding: 38px 22px;
  }

  .contact-console-live__form-grid {
    grid-template-columns: 1fr;
  }

  .contact-console-live__field--wide {
    grid-column: auto;
  }

  .contact-console-live__contacts > a,
  .contact-console-live__contacts > div {
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 13px;
  }

  .contact-console-live__icon {
    width: 52px;
    height: 52px;
  }

  .contact-console-live__map iframe {
    height: 190px;
  }
}

/* Wiederholende Section: Umweltbewusstsein und Nachhaltigkeit. */
.sustainability-section {
  --sustainability-green: #5cb209;
  position: relative;
  padding: 112px 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 7% 18%, rgba(92, 178, 9, .16), transparent 28%),
    linear-gradient(135deg, rgba(88, 176, 232, .06), transparent 32%),
    #111712;
  color: #fff;
}

body main > .sustainability-section,
.rd-page main > .sustainability-section {
  background:
    radial-gradient(circle at 7% 18%, rgba(92, 178, 9, .16), transparent 28%),
    linear-gradient(135deg, rgba(88, 176, 232, .06), transparent 32%),
    #111712 !important;
  color: #fff !important;
}

.sustainability-section::after {
  content: "";
  position: absolute;
  right: -180px;
  bottom: -210px;
  width: 520px;
  height: 520px;
  border: 80px solid rgba(92, 178, 9, .045);
  border-radius: 50%;
  pointer-events: none;
}

.sustainability-section__inner {
  position: relative;
  z-index: 1;
}

.sustainability-section__head {
  display: block;
  margin-bottom: 54px;
}

.sustainability-section__kicker {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  color: var(--sustainability-green);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 2.6px;
  text-transform: uppercase;
}

.sustainability-section__kicker::before {
  content: "";
  width: 36px;
  height: 3px;
  background: currentColor;
}

.sustainability-section__head h2 {
  max-width: 930px;
  margin: 0;
  color: #fff;
  font-family: var(--headline-font);
  font-size: clamp(48px, 5.2vw, 74px);
  line-height: .94;
  text-transform: uppercase;
}

.sustainability-section .sustainability-section__head > p {
  margin: 0;
  padding-left: 24px;
  border-left: 4px solid var(--sustainability-green);
  color: rgba(255, 255, 255, .72) !important;
  font-size: 18px;
  line-height: 1.6;
}

.sustainability-section__stage {
  display: grid;
  grid-template-columns: minmax(300px, .56fr) minmax(0, 1.44fr);
  min-height: 620px;
  border: 1px solid rgba(255, 255, 255, .14);
  background: #171d18;
  box-shadow: 0 32px 85px rgba(0, 0, 0, .24);
}

.sustainability-section__mark {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 46px;
  overflow: hidden;
  border-right: 1px solid rgba(255, 255, 255, .14);
  background:
    linear-gradient(180deg, rgba(92, 178, 9, .08), transparent 55%),
    #0d110e;
}

.sustainability-section__mark::after {
  content: "CO₂";
  position: absolute;
  right: -8px;
  top: 24px;
  color: rgba(255, 255, 255, .045);
  font-family: var(--headline-font);
  font-size: 115px;
  line-height: 1;
}

.sustainability-section__icon {
  position: absolute;
  left: 46px;
  top: 46px;
  display: grid;
  width: 154px;
  height: 154px;
  place-items: center;
  overflow: hidden;
  background: #fff;
}

.sustainability-section__icon img {
  width: 122px;
  height: 122px;
  object-fit: contain;
}

.sustainability-section__mark > span {
  position: relative;
  z-index: 1;
  color: var(--sustainability-green);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.sustainability-section__mark > strong {
  position: relative;
  z-index: 1;
  display: block;
  max-width: 390px;
  margin-top: 17px;
  color: #fff;
  font-family: var(--headline-font);
  font-size: clamp(35px, 3.4vw, 50px);
  line-height: .98;
}

.sustainability-section__content {
  padding: 48px;
}

.sustainability-section .sustainability-section__lead {
  max-width: 920px;
  margin: 0;
  color: rgba(255, 255, 255, .78) !important;
  font-size: 19px;
  line-height: 1.65;
}

.sustainability-section__principles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 38px;
  border-top: 1px solid rgba(255, 255, 255, .15);
  border-left: 1px solid rgba(255, 255, 255, .15);
}

.sustainability-section__principles article {
  min-height: 285px;
  padding: 30px 27px;
  border-right: 1px solid rgba(255, 255, 255, .15);
  border-bottom: 1px solid rgba(255, 255, 255, .15);
  transition: background 220ms ease, transform 220ms ease;
}

.sustainability-section__principles article:hover {
  background: rgba(92, 178, 9, .08);
  transform: translateY(-4px);
}

.sustainability-section__principles article > span {
  color: var(--sustainability-green);
  font-family: var(--headline-font);
  font-size: 37px;
  line-height: 1;
}

.sustainability-section__principles h3 {
  margin: 32px 0 0;
  color: #fff;
  font-family: var(--headline-font);
  font-size: 27px;
  line-height: 1;
}

.sustainability-section .sustainability-section__principles p {
  margin: 17px 0 0;
  color: rgba(255, 255, 255, .64) !important;
  font-size: 15px;
  line-height: 1.55;
}

.sustainability-section__cta {
  --section-cta-accent: var(--sustainability-green);
  border-top-color: rgba(255, 255, 255, .18);
}

.sustainability-section .sustainability-section__cta > p {
  color: #fff !important;
}

.sustainability-section .sustainability-section__cta > a:hover,
.sustainability-section .sustainability-section__cta > a:focus-visible {
  background: var(--red);
}

@media (max-width: 1100px) {
  .sustainability-section__head,
  .sustainability-section__stage {
    grid-template-columns: 1fr;
  }

  .sustainability-section__mark {
    min-height: 430px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .14);
  }
}

@media (max-width: 760px) {
  .sustainability-section {
    padding: 78px 0;
  }

  .sustainability-section__head {
    gap: 28px;
    margin-bottom: 38px;
  }

  .sustainability-section .sustainability-section__head > p {
    padding-left: 18px;
  }

  .sustainability-section__mark {
    min-height: 450px;
    padding: 30px 24px;
  }

  .sustainability-section__icon {
    left: 24px;
    top: 28px;
    width: 128px;
    height: 128px;
  }

  .sustainability-section__icon img {
    width: 102px;
    height: 102px;
  }

  .sustainability-section__content {
    padding: 34px 22px;
  }

  .sustainability-section__principles {
    grid-template-columns: 1fr;
  }

  .sustainability-section__principles article {
    min-height: 0;
  }
}

/* Mobile Feinschliff: reduzierter Header, zentrierte Heroes und hoehere CTAs. */
@media (max-width: 680px) {
  .site-header .mobile-quick-call,
  .site-header.is-scrolled .mobile-quick-call {
    display: none !important;
  }

  .masthead .masthead-content,
  .elite-masthead .masthead-content,
  .page-hero .masthead-content,
  .page-hero .page-hero-inner,
  .service-hero .masthead-content,
  .showroom-masthead .masthead-content,
  .about-premium-hero .masthead-content {
    align-items: center !important;
    text-align: center !important;
  }

  .masthead .masthead-content > *,
  .elite-masthead .masthead-content > *,
  .page-hero .masthead-content > *,
  .page-hero .page-hero-inner > *,
  .service-hero .masthead-content > *,
  .showroom-masthead .masthead-content > *,
  .about-premium-hero .masthead-content > * {
    margin-right: auto;
    margin-left: auto;
  }

  .masthead .masthead-actions,
  .elite-masthead .masthead-actions,
  .page-hero .masthead-actions,
  .service-hero .masthead-actions,
  .showroom-masthead .masthead-actions,
  .about-premium-hero .masthead-actions {
    width: 100%;
    align-items: stretch !important;
    justify-content: center !important;
  }

  .masthead-content .hero-kicker,
  .masthead-content h1,
  .masthead-content p,
  .masthead-content .hero-cta-copy,
  .masthead-content .hero-trust-strip article,
  .masthead-content .hero-trust-strip h3,
  .masthead-content .hero-trust-strip p {
    text-align: center !important;
  }

  .hero-button,
  .btn,
  .rd-button,
  .offer-button,
  .dark-line-button,
  .footer-cta,
  .card-link,
  .line-actions a,
  .text-link,
  .whitebutton,
  .section-followup-cta > a,
  .why-material-wall__cta,
  .reference-filmstrip-cta > a,
  .process-timeline__next,
  .process-timeline__previous,
  button[type="submit"],
  input[type="submit"] {
    min-height: 60px !important;
    padding-top: 18px !important;
    padding-bottom: 18px !important;
  }

  .hero-button,
  .btn,
  .rd-button,
  .offer-button,
  .dark-line-button,
  .footer-cta,
  .card-link,
  .line-actions a,
  .text-link,
  .whitebutton,
  .section-followup-cta > a,
  .why-material-wall__cta,
  .reference-filmstrip-cta > a,
  .process-timeline__next,
  .process-timeline__previous {
    justify-content: center !important;
    text-align: center !important;
  }
}

/* Mobile Startseite: Bildbuehne und Inhalte bewusst untereinander statt uebereinander. */
@media (max-width: 680px) {
  .elite-home .hero-showroom-note {
    display: none !important;
  }

  .elite-home main#home > .masthead.elite-masthead {
    height: auto !important;
    min-height: 0 !important;
    padding-top: 74px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background: #41413f;
  }

  .elite-home main#home > .masthead .kenburns-stage {
    position: relative;
    inset: auto;
    order: 1;
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    flex: 0 0 auto;
  }

  .elite-home main#home > .masthead .kenburns-stage::after {
    background: none;
  }

  .elite-home main#home > .masthead .kenburns-slide {
    object-position: center center;
  }

  .elite-home main#home > .masthead .masthead-content {
    order: 2;
    width: 100%;
    height: auto;
    min-height: 0;
    padding: 28px 20px 58px;
    justify-content: flex-start;
    overflow: visible;
    color: #fff;
    background: url("../../Medien/bilder/hero_background_mobile.png") center top / cover no-repeat;
  }

  .elite-home main#home > .masthead .masthead-content::before {
    display: none;
  }

  .elite-home main#home > .masthead .hero-kicker + h1 {
    margin-top: 20px !important;
  }

  .elite-home main#home > .masthead .hero-kicker {
    color: rgba(255, 255, 255, 0.78);
  }

  .elite-home main#home > .masthead .masthead-content h1 {
    color: #fff;
  }

  .elite-home main#home > .masthead .masthead-content > p {
    color: rgba(255, 255, 255, 0.84) !important;
  }

  .elite-home main#home > .masthead .masthead-actions {
    flex-direction: column;
    gap: 12px;
  }

  .elite-home main#home > .masthead .masthead-actions .hero-button {
    width: 100%;
  }

  .elite-home main#home > .masthead .hero-trust-strip {
    position: relative;
    width: 100%;
    margin-top: 38px !important;
    grid-template-columns: 1fr;
    gap: 12px;
    overflow: visible;
  }

  .elite-home main#home > .masthead .hero-trust-strip article,
  .elite-home main#home > .masthead .hero-trust-strip article:nth-child(2),
  .elite-home main#home > .masthead .hero-trust-strip article:last-child {
    min-height: 104px;
    padding: 18px 16px 17px 76px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(10, 12, 11, 0.62);
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
  }

  .elite-home main#home > .masthead .hero-trust-strip h3 {
    color: #fff;
    text-shadow: none;
  }

  .elite-home main#home > .masthead .hero-trust-strip article p {
    color: rgba(255, 255, 255, 0.76) !important;
    text-shadow: none;
  }

  .elite-home main#home > .masthead .hero-trust-strip article:nth-child(3) .hero-trust-icon {
    border-color: #20241f;
    background: #20241f;
  }

  .elite-home main#home > .masthead .hero-trust-icon {
    left: 17px;
    top: 18px;
    width: 42px;
    height: 42px;
  }

  .elite-home main#home > .masthead .arrowscroll {
    display: none;
  }

  /* Zwei kompakte Benefits und eine breite Abschluss-Card. */
  .elite-home .about-visual-column .about-benefits-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 10px;
  }

  .elite-home .about-visual-column .about-benefits-grid article,
  .elite-home .about-visual-column .about-benefits-grid article:hover,
  .elite-home .about-visual-column .about-benefits-grid article:nth-child(2),
  .elite-home .about-visual-column .about-benefits-grid article:nth-child(2):hover {
    height: 240px;
    min-height: 240px;
    aspect-ratio: auto !important;
    padding: 16px 10px !important;
    grid-template-columns: minmax(0, 1fr) !important;
    grid-template-rows: 72px minmax(58px, auto) minmax(76px, auto) !important;
  }

  .elite-home .about-visual-column .about-benefits-grid article:last-child {
    grid-column: 1 / -1;
    height: 240px;
    min-height: 240px;
    aspect-ratio: auto !important;
    padding: 22px !important;
    grid-template-columns: 74px minmax(0, 1fr) !important;
    grid-template-rows: minmax(52px, auto) minmax(58px, auto) !important;
    column-gap: 18px !important;
  }

  .elite-home .about-visual-column .about-benefits-grid article:last-child > .benefit-icon {
    grid-column: 1 !important;
    grid-row: 1 / 3 !important;
  }

  .elite-home .about-visual-column .about-benefits-grid article:last-child > h3 {
    grid-column: 2 !important;
    grid-row: 1 !important;
  }

  .elite-home .about-visual-column .about-benefits-grid article:last-child > p {
    grid-column: 2 !important;
    grid-row: 2 !important;
  }

  .elite-home .about-visual-column .about-benefits-grid h3 {
    font-size: clamp(17px, 5vw, 20px);
  }

  .elite-home .about-visual-column .about-benefits-grid p {
    font-size: 14px !important;
  }

  /* Showroom-Teaser: Diashow oben, Verlauf im Bild, Inhalt auf dunkler Flaeche darunter. */
  .elite-home .showroom-teaser-section {
    min-height: 0;
    margin: 0 !important;
    padding: 0 !important;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    overflow: hidden;
    color: #20241f;
    background: #c9c7c2;
  }

  .elite-home .reference-filmstrip-section {
    margin-bottom: 0 !important;
    padding-bottom: 48px !important;
  }

  .elite-home .showroom-teaser-section::after {
    display: none;
  }

  .elite-home .showroom-teaser-slideshow {
    position: relative;
    inset: auto;
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    margin: 0 0 -3px !important;
    flex: 0 0 auto;
  }

  .elite-home .showroom-teaser-slideshow::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    background: none;
  }

  .elite-home .showroom-teaser-background {
    object-position: center center;
  }

  .elite-home .showroom-teaser-section .contact-map-grid {
    width: 100%;
    margin: -1px 0 0;
    padding: 75px 18px 75px;
    background:
      linear-gradient(rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0.28)),
      url("../../Medien/bilder/showroom_hero_background.png") center top / cover no-repeat;
    box-shadow: none;
  }

  .elite-home .showroom-teaser-section .contact-panel {
    width: 100%;
    padding: 0 2px;
  }

  .elite-home .showroom-teaser-section .contact-panel::before {
    display: none;
  }

  .elite-home .showroom-teaser-section .contact-panel h2 {
    margin-top: 0 !important;
    color: #1c211e;
  }

  .elite-home .showroom-teaser-section .contact-panel > p:not(.button-cta-copy) {
    margin-top: 30px !important;
    color: #474e49 !important;
  }

  .elite-home .showroom-teaser-section .contact-panel > p.button-cta-copy {
    margin-top: 40px !important;
    color: #20241f !important;
  }

  .elite-home .showroom-teaser-section .line-actions,
  .elite-home .showroom-teaser-section .line-actions a {
    width: 100%;
  }

  .process-timeline-section,
  .process-timeline-heading {
    background: #fff !important;
  }
}

/* Mobile Navigation: volle Breite, gleich hohe Eintraege und klickbares Leistungen-Accordion. */
@media (max-width: 1090px) {
  .site-header .primary-nav,
  .site-header.is-scrolled .primary-nav,
  .site-header.is-scrolled .primary-nav.is-open {
    position: fixed !important;
    top: var(--header-height) !important;
    left: 0 !important;
    right: 0 !important;
    width: 100vw !important;
    max-width: none !important;
    max-height: calc(100dvh - var(--header-height));
    margin: 0 !important;
    padding: 14px 18px 20px !important;
    overflow-x: hidden;
    overflow-y: auto;
    border-right: 0;
    border-left: 0;
  }

  .primary-nav > a,
  .primary-nav .nav-item,
  .primary-nav .nav-dropdown-trigger {
    width: 100% !important;
  }

  .primary-nav > a,
  .site-header.is-scrolled .primary-nav > a,
  .site-header.is-scrolled .primary-nav.is-open > a,
  .primary-nav .nav-dropdown-trigger {
    min-height: 54px !important;
    padding: 14px 18px !important;
    display: flex;
    align-items: center;
    border: 0;
    border-radius: 0;
    font-family: inherit;
    font-size: 15px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: 1.2px;
    text-transform: uppercase;
  }

  .primary-nav > a,
  .site-header.is-scrolled .primary-nav > a,
  .site-header.is-scrolled .primary-nav.is-open > a {
    justify-content: center;
  }

  .primary-nav .nav-dropdown-trigger,
  body.menu-open .primary-nav .nav-dropdown-trigger,
  .site-header.is-scrolled .primary-nav .nav-dropdown-trigger {
    justify-content: space-between;
    background: transparent;
    color: var(--white) !important;
    cursor: pointer;
  }

  .primary-nav .nav-dropdown-trigger:focus-visible {
    outline: 2px solid var(--blue);
    outline-offset: -2px;
  }

  .primary-nav .dropdown-menu,
  .site-header.is-scrolled .primary-nav .dropdown-menu {
    position: static !important;
    width: 100% !important;
    min-width: 0 !important;
    max-height: 0;
    margin: 0 !important;
    padding: 0 14px !important;
    overflow: hidden;
    border: 0;
    background: transparent;
    box-shadow: none;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: none !important;
    transition: max-height 300ms ease, padding 300ms ease, opacity 180ms ease;
  }

  .primary-nav .has-dropdown.is-expanded > .dropdown-menu,
  .site-header.is-scrolled .primary-nav .has-dropdown.is-expanded > .dropdown-menu {
    max-height: 150px;
    padding: 4px 14px 10px !important;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .primary-nav .dropdown-menu a,
  .site-header.is-scrolled .primary-nav .dropdown-menu a {
    width: 100% !important;
    min-height: 48px;
    padding: 13px 18px 13px 34px !important;
    color: var(--white) !important;
  }

  .primary-nav .has-dropdown:focus-within .nav-dropdown-arrow {
    transform: rotate(90deg);
  }

  .primary-nav .has-dropdown.is-expanded .nav-dropdown-arrow {
    transform: rotate(270deg);
  }
}

/* Mobile Typografie: Inhalte auf allen Seiten konsequent zentrieren. */
@media (max-width: 680px) {
  main,
  main section,
  main article,
  .site-footer,
  .site-footer .footer-column {
    text-align: center !important;
  }

  main *:not(input):not(textarea):not(select):not(option),
  .site-footer * {
    text-align: center !important;
  }

  main :where(.line-actions, .hero-actions, .button-row, .cta-actions),
  .site-footer :where(.footer-legal, .footer-actions) {
    justify-content: center !important;
  }

  .site-footer .footer-column > a,
  .site-footer .footer-brand,
  .site-footer .footer-cta {
    margin-right: auto;
    margin-left: auto;
  }
}

/* Ablauf: Navigation folgt auf die Ergebnis- und Zeitrahmen-Card. */
.process-timeline > .process-timeline__actions {
  justify-content: flex-end;
  margin-top: 26px;
}

/* Nachhaltigkeitssymbol innerhalb seiner Buehne mittig ausrichten. */
.sustainability-section__icon {
  left: 50% !important;
  transform: translateX(-50%);
}

/* Wiederverwendbare Kundenstimmen aus Google-Rezensionen. */
.google-reviews-section {
  position: relative;
  width: 100%;
  max-width: none;
  padding: 120px 0;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(88, 176, 232, .11), transparent 34%),
    linear-gradient(315deg, rgba(224, 64, 48, .08), transparent 28%),
    #f2f5f6;
  color: var(--ink);
}

.google-reviews-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: min(1400px, calc(100% - 56px));
  height: 5px;
  background: linear-gradient(90deg, var(--blue) 0 50%, var(--red) 50% 100%);
  transform: translateX(-50%);
}

.google-reviews-section__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: none;
  padding-right: clamp(24px, 4vw, 76px);
  padding-left: clamp(24px, 4vw, 76px);
}

.google-reviews-section__head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .58fr);
  column-gap: 72px;
  align-items: end;
  margin-bottom: 58px;
}

.google-reviews-section__source {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 26px;
  color: #3f474c;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.google-reviews-section__source > span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  background: conic-gradient(from -45deg, #4285f4 0 25%, #34a853 0 50%, #fbbc05 0 75%, #ea4335 0);
  color: #fff;
  font-family: Arial, sans-serif;
  font-size: 23px;
  font-weight: 800;
  box-shadow: 0 8px 24px rgba(20, 21, 18, .14);
}

.google-reviews-section__head h2 {
  max-width: 850px;
  margin: 0;
  color: var(--ink);
  font-family: var(--headline-font);
  font-size: clamp(42px, 4.6vw, 68px);
  line-height: .98;
  text-transform: uppercase;
}

.google-reviews-section__head > p {
  margin: 0;
  padding-left: 24px;
  border-left: 4px solid var(--red);
  color: var(--muted) !important;
  font-size: 18px;
  line-height: 1.6;
}

.google-reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.google-review-card {
  position: relative;
  min-height: 330px;
  padding: 34px;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(32, 32, 24, .13);
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 22px 55px rgba(20, 21, 18, .09);
  transition: transform 240ms ease, box-shadow 240ms ease;
}

.google-review-card:nth-child(odd) {
  border-top: 5px solid var(--blue);
}

.google-review-card:nth-child(even) {
  border-top: 5px solid var(--red);
}

.google-review-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 70px rgba(20, 21, 18, .14);
}

.google-review-card__topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.google-review-card__topline > span {
  color: rgba(32, 32, 24, .24);
  font-family: var(--headline-font);
  font-size: 42px;
  line-height: 1;
}

.google-review-card__topline > small {
  color: var(--red);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.google-review-card blockquote {
  margin: 34px 0 38px;
  color: #30373b;
  font-size: 19px;
  line-height: 1.62;
}

.google-review-card footer {
  margin-top: auto;
  padding-top: 20px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid rgba(32, 32, 24, .14);
}

.google-review-card footer strong {
  color: var(--ink);
  font-size: 17px;
}

.google-review-card footer small {
  color: #747d83;
  font-size: 12px;
}

.google-reviews-section__cta {
  margin-top: 24px;
  padding: 26px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  background: #111411;
  color: #fff;
}

.google-reviews-section .google-reviews-section__cta > p {
  margin: 0;
  color: rgba(255, 255, 255, .8) !important;
}

.google-reviews-section__cta .rd-button {
  min-width: 310px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.google-reviews-section__cta .rd-button b {
  font-size: 20px;
}

@media (max-width: 760px) {
  .process-timeline > .process-timeline__actions {
    justify-content: center;
    margin-top: 18px;
  }

  .process-timeline > .process-timeline__actions > button {
    width: 100%;
  }

  .google-reviews-section {
    padding: 82px 0;
  }

  .google-reviews-section::before {
    width: calc(100% - 36px);
  }

  .google-reviews-section__head {
    grid-template-columns: 1fr;
    gap: 26px;
    margin-bottom: 38px;
  }

  .google-reviews-section__source {
    justify-content: center;
    margin-bottom: 0;
  }

  .google-reviews-section__head > p {
    padding: 0;
    border-left: 0;
  }

  .google-reviews-grid {
    grid-template-columns: 1fr;
  }

  .google-review-card {
    min-height: 0;
    padding: 28px 22px;
  }

  .google-review-card blockquote {
    margin: 28px 0 32px;
    font-size: 17px;
  }

  .google-review-card footer,
  .google-reviews-section__cta {
    flex-direction: column;
    align-items: center;
  }

  .google-reviews-section__cta {
    padding: 28px 20px;
  }

  .google-reviews-section__cta .rd-button {
    width: 100%;
    min-width: 0;
  }
}

/* Mobile Navigation: Beschriftung mittig und inaktive Punkte klar erkennbar. */
@media (max-width: 1090px) {
  .site-header .primary-nav,
  .site-header.is-scrolled .primary-nav {
    gap: 6px !important;
  }

  .primary-nav .nav-dropdown-trigger,
  body.menu-open .primary-nav .nav-dropdown-trigger,
  .site-header.is-scrolled .primary-nav .nav-dropdown-trigger {
    position: relative;
    justify-content: center !important;
  }

  .primary-nav .nav-dropdown-arrow {
    position: absolute;
    right: 18px;
  }

  .primary-nav > a:not(.is-active),
  .primary-nav .nav-item:not(.is-active) > .nav-dropdown-trigger {
    background: rgba(255, 255, 255, .075) !important;
    color: rgba(255, 255, 255, .92) !important;
  }

  .primary-nav .dropdown-menu a {
    background: rgba(255, 255, 255, .05) !important;
  }

  .primary-nav .dropdown-menu a + a {
    margin-top: 5px;
  }
}

/* Google-Bewertungen: horizontale, steuerbare Kundenstimmen-Buehne. */
.google-reviews-section__head {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
}

.google-reviews-section__controls {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
}

.google-reviews-section__controls button {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border: 0;
  background: #111411;
  color: #fff;
  font-size: 24px;
  transition: background-color 220ms ease, transform 220ms ease, opacity 220ms ease;
}

.google-reviews-section__controls button:last-child {
  background: var(--red);
}

.google-reviews-section__controls button:hover:not(:disabled),
.google-reviews-section__controls button:focus-visible:not(:disabled) {
  background: var(--blue);
  transform: translateY(-3px);
}

.google-reviews-section__controls button:disabled {
  opacity: .28;
  cursor: not-allowed;
}

.google-reviews-viewport {
  position: relative;
  width: 100%;
}

.google-reviews-grid {
  display: flex;
  grid-template-columns: none;
  gap: 22px;
  padding: 0 0 22px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: auto;
  scrollbar-color: var(--red) #d7dee2;
  overscroll-behavior-inline: contain;
}

.google-reviews-grid::-webkit-scrollbar {
  height: 9px;
}

.google-reviews-grid::-webkit-scrollbar-track {
  background: #d7dee2;
}

.google-reviews-grid::-webkit-scrollbar-thumb {
  border: 2px solid #d7dee2;
  background: var(--red);
}

.google-review-card {
  flex: 0 0 calc((100% - 44px) / 3);
  min-height: 370px;
  padding: 0;
  overflow: hidden;
  scroll-snap-align: start;
  border: 0;
  border-top: 0 !important;
  background: #fff;
  box-shadow: 0 24px 60px rgba(20, 21, 18, .12);
}

.google-review-card::before {
  content: "“";
  position: absolute;
  top: 42px;
  right: 30px;
  color: rgba(88, 176, 232, .13);
  font-family: Georgia, serif;
  font-size: 150px;
  line-height: .65;
  pointer-events: none;
}

.google-review-card:nth-child(even)::before {
  color: rgba(224, 64, 48, .12);
}

.google-review-card__topline {
  min-height: 82px;
  padding: 20px 32px;
  border-bottom: 1px solid #e1e6e9;
  background: #f7f9fa;
}

.google-review-card__topline > span {
  color: var(--blue);
  font-size: 34px;
}

.google-review-card:nth-child(even) .google-review-card__topline > span {
  color: var(--red);
}

.google-review-card__topline > small {
  padding: 8px 10px;
  background: #111411;
  color: #fff;
}

.google-review-card blockquote {
  position: relative;
  z-index: 1;
  margin: 0;
  padding: 34px 36px 38px;
  font-size: 19px;
  line-height: 1.65;
}

.google-review-card footer {
  width: 100%;
  margin-top: auto;
  padding: 22px 34px;
  border: 0;
  background: #111411;
}

.google-review-card footer strong {
  color: #fff;
}

.google-review-card footer small {
  color: rgba(255, 255, 255, .62);
}

.google-reviews-section__cta {
  margin-top: 34px;
  padding: 0;
  justify-content: center;
  background: transparent;
}

.google-reviews-link {
  position: relative;
  isolation: isolate;
  width: min(590px, 100%);
  min-height: 92px;
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr) 76px;
  align-items: center;
  gap: 20px;
  overflow: hidden;
  background: #111411;
  color: #fff;
  box-shadow: 0 20px 48px rgba(20, 21, 18, .2);
  transition: transform 240ms ease, box-shadow 240ms ease;
}

.google-reviews-link::before {
  content: "";
  position: absolute;
  inset: 0 100% 0 0;
  z-index: -1;
  background: #252a26;
  transition: right 420ms ease;
}

.google-reviews-link:hover,
.google-reviews-link:focus-visible {
  color: #fff;
  transform: translateY(-4px);
  box-shadow: 0 28px 60px rgba(20, 21, 18, .25);
}

.google-reviews-link:hover::before,
.google-reviews-link:focus-visible::before {
  right: 0;
}

.google-reviews-link__mark {
  display: grid;
  width: 48px;
  height: 48px;
  margin-left: 16px;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  color: #4285f4;
  font-family: Arial, sans-serif;
  font-size: 28px;
  font-weight: 800;
}

.google-reviews-link__copy {
  display: grid;
  gap: 3px;
}

.google-reviews-link__copy small {
  color: rgba(255, 255, 255, .58);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.7px;
  text-transform: uppercase;
}

.google-reviews-link__copy strong {
  color: #fff;
  font-size: 16px;
  letter-spacing: .3px;
}

.google-reviews-link__arrow {
  align-self: stretch;
  display: grid;
  place-items: center;
  background: var(--red);
  color: #fff;
  font-size: 26px;
  transition: background-color 220ms ease;
}

.google-reviews-link:hover .google-reviews-link__arrow,
.google-reviews-link:focus-visible .google-reviews-link__arrow {
  background: var(--blue);
}

@media (max-width: 760px) {
  .google-reviews-section__head {
    grid-template-columns: 1fr;
  }

  .google-reviews-section__controls {
    justify-content: center;
  }

  .google-review-card {
    flex-basis: 88%;
  }

  .google-review-card__topline {
    padding: 18px 20px;
  }

  .google-review-card blockquote {
    padding: 30px 22px 34px;
  }

  .google-review-card footer {
    padding: 20px 22px;
  }

  .google-reviews-link {
    min-height: 86px;
    grid-template-columns: 52px minmax(0, 1fr) 58px;
    gap: 12px;
  }

  .google-reviews-link__mark {
    width: 42px;
    height: 42px;
    margin-left: 12px;
    font-size: 24px;
  }

  .google-reviews-link__copy strong {
    font-size: 14px;
  }
}

@media (max-width: 1180px) and (min-width: 761px) {
  .google-review-card {
    flex-basis: calc((100% - 22px) / 2);
  }
}

/* Bewertungssterne: geliefertes SVG statt Nummerierung und Profil-Metadaten. */
.google-review-card__stars,
.google-review-card:nth-child(even) .google-review-card__stars {
  display: flex;
  align-items: center;
  gap: 6px;
  color: inherit;
  font-size: 0;
  line-height: 0;
}

.google-review-card__stars img {
  width: 23px;
  height: 23px;
  flex: 0 0 23px;
  object-fit: contain;
}

.google-review-card footer {
  justify-content: flex-start;
}

.google-review-card--rating-only .google-review-card__topline {
  flex: 1;
  flex-direction: column;
  justify-content: center;
  gap: 22px;
  border-bottom: 0;
}

.google-review-card--rating-only footer {
  margin-top: 0;
  justify-content: center;
}

@media (max-width: 760px) {
  .google-review-card__stars {
    justify-content: center;
  }

  .google-review-card__stars img {
    width: 21px;
    height: 21px;
    flex-basis: 21px;
  }
}

/* Bewertungskarten ohne Kopfzeile: Text, Mehr-Lesen und Name mit Sternen. */
.google-reviews-grid {
  align-items: stretch;
}

.google-review-card blockquote {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
  overflow: hidden;
  white-space: pre-line;
}

.google-review-card.is-expanded blockquote {
  display: block;
  overflow: visible;
  -webkit-line-clamp: unset;
}

.google-review-card__toggle {
  align-self: flex-start;
  margin: -12px 36px 30px;
  padding: 7px 0 5px;
  border: 0;
  border-bottom: 2px solid var(--red);
  background: transparent;
  color: var(--ink);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  transition: color 180ms ease, border-color 180ms ease;
}

.google-review-card__toggle:hover,
.google-review-card__toggle:focus-visible {
  border-color: var(--blue);
  color: var(--red);
}

.google-review-card__toggle[hidden] {
  display: none;
}

.google-review-card footer,
.google-review-card--rating-only footer {
  min-height: 78px;
  flex-direction: row !important;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
}

.google-review-card--rating-only footer {
  min-height: 370px;
  flex: 1;
  justify-content: center;
}

.google-review-card footer strong {
  flex: 0 1 auto;
}

@media (max-width: 760px) {
  .google-review-card__toggle {
    align-self: center;
    margin-right: 22px;
    margin-left: 22px;
  }

  .google-review-card footer,
  .google-review-card--rating-only footer {
    justify-content: center;
  }
}

/* Mobile Vorteile: nur die acht Kurz-Cards, ohne Dialog und Auswahlrahmen. */
@media (max-width: 680px) {
  .why-material-wall {
    display: block;
  }

  .why-material-wall__detail {
    display: none !important;
  }

  .why-material-wall__tile,
  .why-material-wall__tile:hover,
  .why-material-wall__tile:focus,
  .why-material-wall__tile:focus-visible,
  .why-material-wall__tile.is-active,
  .why-material-wall__tile:disabled {
    outline: 0 !important;
    box-shadow: none !important;
    filter: none !important;
    opacity: 1 !important;
    transform: none !important;
    cursor: default;
    pointer-events: none;
  }
}

/* Footer-Credits mit verlinkten Agentur-Logos. */
.footer-credits {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  white-space: nowrap;
}

.footer-credits__label {
  color: rgba(255, 255, 255, .62);
  font-size: 14px;
  font-weight: 700;
}

.footer-credits__separator {
  color: rgba(255, 255, 255, .72);
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
}

.footer-credits > a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: opacity 200ms ease, transform 200ms ease;
}

.footer-credits > a:hover,
.footer-credits > a:focus-visible {
  opacity: .78;
  transform: translateY(-2px);
}

.footer-credits img {
  width: auto;
  height: 30px;
  max-width: 116px;
  object-fit: contain;
}

.footer-credits > a:first-of-type img {
  max-width: 104px;
}

.footer-credits > a:last-of-type img {
  margin-top: -8px;
}

@media (max-width: 680px) {
  .footer-credits {
    width: 100%;
    flex-wrap: nowrap;
    justify-content: center;
    white-space: nowrap;
  }

  .footer-credits__label {
    width: auto;
  }
}

/* Mobiler Header: Wortmarke deutlich groesser darstellen. */
@media (max-width: 680px) {
  .site-header .brand,
  .site-header.is-scrolled .brand {
    width: 210px !important;
    max-width: calc(100% - 78px);
  }
}

/* Leistungs-Cards: mobile Icon, Titel und Schwerpunkt-Badges sauber zentrieren. */
@media (max-width: 680px) {
  .service-showcase-copy {
    text-align: center !important;
  }

  .service-showcase-icon {
    margin-right: auto !important;
    margin-left: auto !important;
  }

  .service-showcase-copy h3 {
    width: 100%;
    text-align: center !important;
  }

  .service-showcase-tags {
    width: 100%;
    justify-content: center !important;
  }

  .service-showcase-tags span {
    justify-content: center;
    text-align: center !important;
  }
}

/* Projektfilm startet erst im Viewport; der Fortschritt folgt der echten Laufzeit. */
.reference-filmstrip:not(.is-rotation-ready) .reference-filmstrip__card > img,
.reference-filmstrip:not(.is-rotation-ready) .reference-filmstrip__card.is-active > img {
  transition: none !important;
  transform: scale(1.035);
}

.reference-filmstrip__card.is-active .reference-filmstrip__timer {
  animation: none;
  transform: scaleX(0);
}

.reference-filmstrip.is-rotation-running .reference-filmstrip__card.is-active .reference-filmstrip__timer {
  animation: reference-filmstrip-timer var(--reference-rotation-duration, 5200ms) linear forwards;
}

.reference-filmstrip:not(.is-rotation-running) .reference-filmstrip__card.is-active .reference-filmstrip__timer {
  animation-play-state: paused;
}

/* Mobiler Footer-Abschluss: Copyright, Rechtliches und Credits mittig stapeln. */
@media (max-width: 680px) {
  .site-footer .footer-bottom {
    width: 100%;
    align-items: center !important;
    justify-content: center !important;
    flex-direction: column;
    gap: 22px;
    text-align: center !important;
  }

  .site-footer .footer-bottom > span {
    width: 100%;
    margin-right: auto;
    margin-left: auto;
    text-align: center !important;
  }

  .site-footer .footer-legal,
  .site-footer .footer-credits {
    align-items: center;
    justify-content: center !important;
  }
}

@media (max-width: 680px) {
  .footer-credits img {
    height: 28px;
    max-width: 108px;
  }

  .footer-credits > a:first-of-type img {
    max-width: 96px;
  }

  .footer-credits__label {
    font-size: 13px;
  }

  .footer-credits__separator {
    font-size: 18px;
  }
}
