/* =============================================
   Motor Mayerhofer – Relaunch 2026
   Farbwelt lt. Briefing:
   Gold #e0c534 · Tiefschwarz #050703 · Grau #999999 · Weiß #ffffff
   ============================================= */

:root {
  --gold: #e0c534;
  --gold-deep: #c4ab22;
  --black: #050703;
  --ink-soft: #2b2d29;
  --grey: #999999;
  --paper: #f6f6f4;
  --line: rgba(153, 153, 153, 0.3);
  --line-dark: rgba(153, 153, 153, 0.22);
  --white: #ffffff;
  --shadow: 0 24px 60px rgba(5, 7, 3, 0.16);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --max: 1280px;
  --header-h: 84px;
  --radius-lg: 28px;
  --radius: 20px;
  --radius-sm: 14px;
  --pad-x: clamp(20px, 5vw, 64px);
  --display: "Roboto Condensed", "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  --body: "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
}

body {
  margin: 0;
  color: var(--black);
  background: var(--white);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
}

body.nav-open,
body.modal-open {
  overflow: hidden;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

h1,
h2,
h3,
h4 {
  margin: 0;
  font-family: var(--display);
  font-weight: 700;
  line-height: 1.08;
  text-transform: uppercase;
  letter-spacing: 0.01em;
}

p {
  margin: 0;
}

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

.skip-link,
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.skip-link:focus {
  z-index: 300;
  top: 12px;
  left: 12px;
  width: auto;
  height: auto;
  padding: 12px 16px;
  clip: auto;
  color: var(--black);
  background: var(--gold);
  border-radius: var(--radius-sm);
}

.icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.eyebrow {
  font-family: var(--display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-deep);
}

/* ---------- Buttons ---------- */

.button {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  font-family: var(--display);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  border: 0;
  border-radius: 999px;
  transition: transform 380ms var(--ease), background 260ms ease, color 260ms ease,
    border-color 260ms ease, box-shadow 380ms var(--ease);
}

.button svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 320ms var(--ease);
}

.button-sm {
  padding: 11px 18px;
  font-size: 13.5px;
}

.button-primary {
  color: var(--black);
  background: var(--gold);
}

.button-primary:hover {
  background: var(--gold-deep);
  transform: translateY(-3px);
  box-shadow: 0 16px 32px rgba(224, 197, 52, 0.4);
}

.button-primary:hover svg {
  transform: translateX(3px);
}

.button-dark {
  color: var(--white);
  background: var(--black);
}

.button-dark:hover {
  background: #1d2019;
  transform: translateY(-3px);
  box-shadow: 0 16px 32px rgba(5, 7, 3, 0.28);
}

.button-ghost {
  color: var(--white);
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.6);
}

.button-ghost:hover {
  color: var(--black);
  background: var(--white);
  border-color: var(--white);
  transform: translateY(-2px);
}

.button-outline {
  color: var(--black);
  background: transparent;
  border: 1.5px solid var(--line);
}

.button-outline:hover {
  border-color: var(--black);
  transform: translateY(-2px);
}

/* ---------- Header ---------- */

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  display: flex;
  gap: clamp(16px, 2.5vw, 36px);
  align-items: center;
  width: 100%;
  height: var(--header-h);
  padding: 0 var(--pad-x);
  color: var(--white);
  background: rgba(5, 7, 3, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line-dark);
  transition: background 200ms ease, box-shadow 200ms ease;
}

.site-header.is-scrolled {
  background: rgba(5, 7, 3, 0.98);
  box-shadow: 0 10px 30px rgba(5, 7, 3, 0.4);
}

.brand {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-right: auto;
}

.brand-mark {
  width: 52px;
  height: 52px;
}

.brand-copy {
  display: grid;
  line-height: 1.2;
}

.brand-copy strong {
  font-family: var(--display);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.brand-copy span {
  font-size: 12px;
  color: var(--grey);
}

.site-nav {
  display: flex;
  gap: clamp(10px, 1.6vw, 24px);
  align-items: center;
}

.site-nav a,
.nav-group-toggle {
  position: relative;
  padding: 6px 0;
  font-size: 14.5px;
  font-weight: 600;
  white-space: nowrap;
}

.site-nav > a::after,
.nav-group-toggle::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  content: "";
  background: var(--gold);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms ease;
}

.site-nav > a:hover::after,
.site-nav > a[aria-current="page"]::after,
.nav-group.is-current > .nav-group-toggle::after {
  transform: scaleX(1);
}

.nav-group {
  position: relative;
}

.nav-group-toggle {
  display: inline-flex;
  gap: 6px;
  align-items: center;
  color: inherit;
  cursor: pointer;
  background: none;
  border: 0;
}

.nav-group-toggle svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 220ms ease;
}

.nav-group.is-open .nav-group-toggle svg {
  transform: rotate(180deg);
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 16px);
  left: 50%;
  z-index: 5;
  display: grid;
  gap: 2px;
  min-width: 260px;
  padding: 10px;
  visibility: hidden;
  background: var(--black);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-sm);
  box-shadow: 0 24px 50px rgba(5, 7, 3, 0.45);
  opacity: 0;
  transform: translate(-50%, 8px);
  transition: opacity 200ms ease, transform 260ms var(--ease), visibility 200ms ease;
}

.nav-dropdown::before {
  position: absolute;
  right: 0;
  bottom: 100%;
  left: 0;
  height: 18px;
  content: "";
}

.nav-group.is-open .nav-dropdown {
  visibility: visible;
  opacity: 1;
  transform: translate(-50%, 0);
}

@media (hover: hover) and (min-width: 861px) {
  .nav-group:hover .nav-dropdown {
    visibility: visible;
    opacity: 1;
    transform: translate(-50%, 0);
  }

  .nav-group:hover .nav-group-toggle svg {
    transform: rotate(180deg);
  }
}

.nav-dropdown a {
  padding: 11px 14px;
  font-size: 14.5px;
  border-radius: 10px;
  transition: background 180ms ease, color 180ms ease;
}

.nav-dropdown a:hover,
.nav-dropdown a[aria-current="page"] {
  color: var(--gold);
  background: rgba(255, 255, 255, 0.06);
}

.site-nav .nav-radenthein,
.site-nav .nav-booking {
  display: none;
}

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

.header-switch {
  display: grid;
  padding: 8px 16px;
  font-family: var(--display);
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.25;
  text-transform: uppercase;
  border: 1.5px solid var(--line-dark);
  border-radius: var(--radius-sm);
  transition: border-color 200ms ease, background 200ms ease;
}

.header-switch span {
  font-family: var(--body);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--grey);
}

.header-switch svg {
  display: none;
}

.header-switch:hover {
  background: rgba(224, 197, 52, 0.08);
  border-color: var(--gold);
}

.header-cta {
  padding: 12px 22px;
  white-space: nowrap;
}

.brand-copy strong {
  white-space: nowrap;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  justify-content: center;
  order: 3;
  width: 46px;
  height: 46px;
  padding: 12px;
  cursor: pointer;
  background: transparent;
  border: 1.5px solid var(--line-dark);
  border-radius: var(--radius-sm);
}

.nav-toggle span {
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 200ms ease, opacity 200ms ease;
}

body.nav-open .nav-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

body.nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

body.nav-open .nav-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ---------- Sections (shared) ---------- */

section {
  padding: clamp(72px, 9vw, 130px) var(--pad-x);
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 72px);
  align-items: end;
  max-width: var(--max);
  margin: 0 auto clamp(40px, 5vw, 72px);
}

.section-head h2 {
  font-size: clamp(34px, 4.6vw, 60px);
}

.section-head > p {
  max-width: 46ch;
  font-size: 17px;
  color: var(--grey);
}

.section-label {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 18px;
  font-family: var(--display);
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-deep);
}

.section-label::before {
  width: 28px;
  height: 2px;
  content: "";
  background: var(--gold);
  border-radius: 2px;
}

/* ---------- Hero (Startseite, mit Slider) ---------- */

.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: min(76vh, 700px);
  padding: calc(var(--header-h) + 24px) var(--pad-x) clamp(28px, 4vw, 48px);
  overflow: hidden;
  color: var(--white);
  text-align: center;
  background: var(--black);
}

.hero-slider {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transition: opacity 1400ms ease;
}

.hero-slide.is-active {
  opacity: 1;
}

.hero-slide picture,
.hero-slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-slide.is-active img,
.hero-slide.is-leaving img {
  animation: heroKenBurns 9s ease-out forwards;
}

.hero-scrim {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(120% 80% at 50% 62%, rgba(5, 7, 3, 0.15) 0%, rgba(5, 7, 3, 0.6) 100%),
    linear-gradient(to bottom, rgba(5, 7, 3, 0.55) 0%, rgba(5, 7, 3, 0.3) 38%, rgba(5, 7, 3, 0.62) 100%);
}

.hero-logos {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: clamp(20px, 3vw, 44px);
  align-items: center;
  justify-content: flex-end;
  max-width: var(--max);
  width: 100%;
  margin: 0 auto;
  animation: heroFadeUp 0.8s ease 0.05s both;
}

.hero-logos img {
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.85;
}

/* Optische Höhe angleichen: Symbole größer, Wortmarken kleiner */
.hero-logos img[alt="Hyundai"] { height: 34px; }
.hero-logos img[alt="Ford"] { height: 28px; }
.hero-logos img[alt="Ford Pro"] { height: 36px; }
.hero-logos img[alt="Volvo"] { height: 13px; }
.hero-logos img[alt="Mitsubishi"] { height: 30px; }
.hero-logos img[alt="Polestar"] { height: 19px; }

.hero-center {
  position: relative;
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: clamp(20px, 3vw, 40px) 0;
}

.hero-copy {
  max-width: 820px;
  animation: heroFadeUp 0.9s ease 0.2s both;
}

.hero-eyebrow {
  margin-bottom: 10px;
  font-family: var(--display);
  font-size: clamp(14px, 1.4vw, 18px);
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
}

.hero h1 {
  font-size: clamp(36px, 5vw, 64px);
  background-image: linear-gradient(100deg, #ffffff 35%, var(--gold) 50%, #ffffff 65%);
  background-size: 220% 100%;
  background-position: 180% 50%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: heroShine 6s ease-in-out 1.1s infinite alternate;
}

.hero-slogan {
  max-width: 60ch;
  margin: 16px auto 0;
  font-family: var(--display);
  font-size: clamp(15px, 1.7vw, 22px);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.95);
}

.hero-slogan span {
  color: var(--gold);
  white-space: nowrap;
}

.hero-dots {
  display: flex;
  gap: 6px;
  align-items: center;
  justify-content: center;
  margin-top: 22px;
}

.hero-dot {
  position: relative;
  width: 34px;
  height: 22px;
  padding: 0;
  cursor: pointer;
  background: none;
  border: 0;
}

.hero-dot::before,
.hero-dot::after {
  position: absolute;
  top: 9px;
  right: 3px;
  left: 3px;
  height: 4px;
  content: "";
  border-radius: 4px;
}

.hero-dot::before {
  background: rgba(255, 255, 255, 0.35);
  transition: background 200ms ease;
}

.hero-dot:hover::before {
  background: rgba(255, 255, 255, 0.6);
}

.hero-dot::after {
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
}

.hero-dot.is-active::after {
  transform: scaleX(1);
}

.hero-slider-auto .hero-dot.is-active::after {
  animation: dotProgress var(--slide-ms, 6000ms) linear forwards;
}

.hero-slider-paused .hero-dot.is-active::after {
  animation-play-state: paused;
}

.hero-pause {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  margin-left: 6px;
  padding: 0;
  color: var(--white);
  cursor: pointer;
  background: rgba(255, 255, 255, 0.12);
  border: 0;
  border-radius: 50%;
  transition: background 200ms ease;
}

.hero-pause:hover {
  background: rgba(255, 255, 255, 0.24);
}

.hero-pause svg {
  width: 12px;
  height: 12px;
  fill: currentColor;
}

.hero-services {
  position: relative;
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
  padding: clamp(18px, 1.6vw, 24px);
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 26px 60px rgba(5, 7, 3, 0.32);
  animation: heroFadeUp 0.9s ease 0.4s both;
}

.hero-services-title {
  margin-bottom: 14px;
  font-size: 17px;
  font-weight: 600;
  text-align: center;
  color: var(--black);
}

.hero-services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.service-cta {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 14px;
  color: var(--black);
  text-align: left;
  background: rgba(5, 7, 3, 0.035);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  transition: transform 380ms var(--ease), border-color 260ms ease, background 260ms ease,
    box-shadow 380ms var(--ease);
}

.service-cta:hover {
  background: var(--white);
  border-color: var(--gold);
  box-shadow: 0 14px 28px rgba(5, 7, 3, 0.14), 0 0 0 1px rgba(224, 197, 52, 0.16),
    0 10px 26px rgba(224, 197, 52, 0.18);
  transform: translateY(-3px);
}

.service-cta svg {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  fill: none;
  stroke: var(--black);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke 260ms ease, transform 380ms var(--ease);
}

.service-cta:hover svg {
  stroke: var(--gold-deep);
  transform: scale(1.08);
}

/* Primärer CTA lt. Briefing: goldgelber Button zur Online-Terminvereinbarung */
.service-cta-gold {
  background: var(--gold);
  border-color: var(--gold);
}

.service-cta-gold .service-cta-text span {
  color: rgba(5, 7, 3, 0.65);
}

.service-cta-gold:hover {
  background: var(--gold-deep);
  border-color: var(--gold-deep);
  box-shadow: 0 14px 28px rgba(224, 197, 52, 0.4);
}

.service-cta-gold:hover svg {
  stroke: var(--black);
}

.service-cta-text {
  display: grid;
  line-height: 1.3;
}

.service-cta-text strong {
  font-size: 15px;
  font-weight: 600;
}

.service-cta-text span {
  font-size: 13px;
  color: var(--grey);
}

/* ---------- Marken-Grid ---------- */

.brands {
  padding-top: clamp(48px, 6vw, 80px);
  background: var(--white);
}

.brand-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 24px);
  max-width: var(--max);
  margin: 0 auto;
}

.brand-tile {
  position: relative;
  display: grid;
  align-content: end;
  gap: 6px;
  min-height: 240px;
  padding: 28px;
  overflow: hidden;
  color: var(--white);
  text-align: left;
  background: var(--black);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  transition: transform 420ms var(--ease), border-color 320ms ease, box-shadow 420ms var(--ease);
}

.brand-tile::before {
  position: absolute;
  inset: 0;
  content: "";
  background: radial-gradient(120% 100% at 50% 120%, rgba(224, 197, 52, 0.16) 0%, rgba(224, 197, 52, 0) 60%);
  opacity: 0;
  transition: opacity 380ms ease;
}

.brand-tile:hover::before {
  opacity: 1;
}

.brand-tile:hover {
  border-color: var(--gold);
  box-shadow: 0 20px 44px rgba(5, 7, 3, 0.34), 0 0 0 1px rgba(224, 197, 52, 0.12),
    0 14px 40px rgba(224, 197, 52, 0.16);
  transform: translateY(-6px);
}

.brand-tile img {
  height: 46px;
  width: auto;
  max-width: 70%;
  margin-bottom: auto;
  object-fit: contain;
  object-position: left;
  filter: brightness(0) invert(1);
  transition: transform 240ms ease;
}

.brand-tile:hover img {
  transform: scale(1.05);
}

.brand-tile-name {
  margin-top: 40px;
  font-family: var(--display);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.brand-tile-info {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  font-size: 13.5px;
  color: var(--grey);
  transition: color 240ms ease;
}

.brand-tile:hover .brand-tile-info {
  color: var(--gold);
}

.brand-tile-arrow {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 36px;
  height: 36px;
  padding: 8px;
  fill: none;
  stroke: var(--grey);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  border: 1.5px solid var(--line-dark);
  border-radius: 50%;
  transition: stroke 240ms ease, border-color 240ms ease, transform 320ms var(--ease);
}

.brand-tile:hover .brand-tile-arrow {
  stroke: var(--black);
  background: var(--gold);
  border-color: var(--gold);
  transform: rotate(90deg);
}

.brand-tile-badge {
  position: absolute;
  top: 22px;
  left: 28px;
  padding: 5px 12px;
  font-family: var(--display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--black);
  background: var(--gold);
  border-radius: 999px;
}

.brand-tile-polestar img {
  margin-top: 26px;
}

/* ---------- Fokus-Teaser (Bento) ---------- */

.focus {
  padding-top: 0;
  background: var(--white);
}

.focus-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 24px);
  max-width: var(--max);
  margin: 0 auto;
}

.focus-card {
  border-radius: var(--radius-lg);
  transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease;
}

.focus-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-6px);
}

.focus-eyebrow {
  font-family: var(--display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-deep);
}

.focus-b2c {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  grid-row: span 2;
  grid-column: span 7;
  min-height: 420px;
  overflow: hidden;
  color: var(--white);
  background: var(--black);
  border: 1px solid var(--line-dark);
}

.focus-b2c img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms var(--ease);
}

.focus-b2c:hover img {
  transform: scale(1.045);
}

.focus-card-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5, 7, 3, 0.92) 0%, rgba(5, 7, 3, 0.55) 48%, rgba(5, 7, 3, 0.12) 100%);
}

.focus-b2c .focus-card-body {
  position: relative;
}

.focus-b2c .focus-eyebrow {
  color: var(--gold);
}

.focus-b2c p {
  color: rgba(255, 255, 255, 0.82);
}

.focus-card-body {
  display: grid;
  gap: 12px;
  padding: clamp(24px, 3vw, 36px);
}

.focus-card h3 {
  font-size: clamp(24px, 2.4vw, 32px);
}

.focus-card p {
  max-width: 56ch;
  color: var(--grey);
}

.focus-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  margin-top: 6px;
}

.focus-links a,
.focus-link {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  justify-self: start;
  padding-bottom: 3px;
  font-family: var(--display);
  font-size: 14.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-bottom: 2px solid var(--gold);
  transition: color 200ms ease;
}

.focus-links a svg,
.focus-link svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 200ms ease;
}

.focus-links a:hover,
.focus-link:hover {
  color: var(--gold-deep);
}

.focus-links a:hover svg,
.focus-link:hover svg {
  transform: translate(2px, -2px);
}

.focus-abo,
.focus-bonus {
  display: grid;
  align-content: start;
  gap: 12px;
  grid-column: span 5;
  padding: clamp(24px, 3vw, 36px);
}

.focus-abo {
  border: 1px solid var(--line);
}

.focus-bonus {
  background: var(--gold);
}

.focus-bonus .focus-eyebrow {
  color: rgba(5, 7, 3, 0.6);
}

.focus-bonus p {
  color: rgba(5, 7, 3, 0.75);
}

.focus-bonus .focus-link {
  border-bottom-color: var(--black);
}

.focus-bonus .focus-link:hover {
  color: rgba(5, 7, 3, 0.65);
}

.focus-b2b {
  display: flex;
  gap: clamp(24px, 4vw, 64px);
  align-items: center;
  justify-content: space-between;
  grid-column: span 12;
  padding: clamp(28px, 4vw, 56px);
  color: var(--white);
  background: var(--black);
}

.focus-b2b-copy {
  display: grid;
  gap: 14px;
  max-width: 62ch;
}

.focus-b2b .focus-eyebrow {
  color: var(--gold);
}

.focus-b2b p {
  color: var(--grey);
}

.focus-b2b .button {
  justify-self: start;
  margin-top: 8px;
}

.focus-b2b-logo {
  flex-shrink: 0;
  width: clamp(140px, 18vw, 230px);
  filter: brightness(0) invert(1);
  opacity: 0.92;
}

/* ---------- Service & Spezialwerkstatt (Startseite) ---------- */

.service {
  color: var(--white);
  background: var(--black);
}

.service .section-head > p {
  color: var(--grey);
}

.service .section-label {
  color: var(--gold);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 24px);
  max-width: var(--max);
  margin: 0 auto;
}

.service-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: clamp(24px, 3vw, 36px);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  transition: transform 380ms var(--ease), border-color 240ms ease, background 240ms ease;
}

.service-card:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: var(--gold);
  transform: translateY(-6px);
}

.service-card > svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: var(--gold);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card h3 {
  font-size: 21px;
}

.service-card-link {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  transition: color 200ms ease;
}

.service-card-link svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: var(--gold);
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 260ms var(--ease);
}

.service-card-link:hover {
  color: var(--gold);
}

.service-card-link:hover svg {
  transform: translateX(4px);
}

.service-card p {
  font-size: 15px;
  color: var(--grey);
}

.service-card .button {
  align-self: flex-start;
  margin-top: auto;
}

.polestar-panel {
  max-width: var(--max);
  margin: clamp(16px, 2vw, 24px) auto 0;
  padding: clamp(28px, 4vw, 60px);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(224, 197, 52, 0.5);
  border-radius: var(--radius-lg);
}

.polestar-copy {
  display: grid;
  gap: 18px;
  max-width: 72ch;
}

.polestar-badge {
  justify-self: start;
  padding: 6px 14px;
  font-family: var(--display);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--black);
  background: var(--gold);
  border-radius: 999px;
}

.polestar-copy img {
  height: 30px;
  width: auto;
  object-fit: contain;
  object-position: left;
  filter: brightness(0) invert(1);
}

.polestar-copy h3 {
  font-size: clamp(24px, 3vw, 40px);
}

.polestar-copy p {
  color: var(--grey);
}

.polestar-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 6px;
}

/* ---------- Region & Partner-Karussell ---------- */

.region {
  background: var(--white);
}

.region-tag {
  justify-self: start;
  padding: 5px 12px;
  font-family: var(--display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--black);
  background: rgba(224, 197, 52, 0.35);
  border-radius: 999px;
}

.partner-carousel {
  max-width: var(--max);
  margin: 0 auto;
}

.carousel-bar {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.carousel-hint {
  font-size: 14px;
  color: var(--grey);
}

.carousel-controls {
  display: flex;
  gap: 10px;
}

.carousel-btn {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  padding: 0;
  color: var(--black);
  cursor: pointer;
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: 50%;
  transition: background 220ms ease, border-color 220ms ease, transform 300ms var(--ease);
}

.carousel-btn:hover:not(:disabled) {
  background: var(--gold);
  border-color: var(--gold);
  transform: translateY(-2px);
}

.carousel-btn:disabled {
  cursor: default;
  opacity: 0.35;
}

.carousel-btn svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.partner-track {
  --gap: clamp(16px, 2vw, 24px);
  display: grid;
  grid-auto-columns: calc((100% - 2 * var(--gap)) / 3);
  grid-auto-flow: column;
  gap: var(--gap);
  margin: 0;
  padding: 4px 2px 10px;
  overflow-x: auto;
  list-style: none;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  overscroll-behavior-x: contain;
  scrollbar-width: none;
}

.partner-track::-webkit-scrollbar {
  display: none;
}

.partner-card {
  display: grid;
  align-content: start;
  gap: 12px;
  padding: clamp(22px, 2.6vw, 32px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  scroll-snap-align: start;
  transition: border-color 240ms ease, background 240ms ease;
}

.partner-card:hover {
  border-color: var(--gold);
}

.partner-logo {
  display: grid;
  place-items: center;
  height: 118px;
  margin-bottom: 6px;
  padding: 14px;
  background: var(--paper);
  border-radius: var(--radius-sm);
}

/* Partnerlogos bleiben in Originalfarben (CI-Vorgaben der Partner) */
.partner-logo img {
  width: auto;
  max-width: 100%;
  max-height: 90px;
  object-fit: contain;
  transition: transform 400ms var(--ease);
}

.partner-card:hover .partner-logo img {
  transform: scale(1.04);
}

.partner-card h3 {
  font-size: 22px;
}

.partner-card p {
  font-size: 15px;
  color: var(--grey);
}

.carousel-dots {
  display: flex;
  gap: 6px;
  justify-content: center;
  margin-top: 16px;
}

.carousel-dot {
  position: relative;
  width: 30px;
  height: 22px;
  padding: 0;
  cursor: pointer;
  background: none;
  border: 0;
}

.carousel-dot::before {
  position: absolute;
  top: 9px;
  right: 3px;
  left: 3px;
  height: 4px;
  content: "";
  background: var(--line);
  border-radius: 4px;
  transition: background 220ms ease;
}

.carousel-dot:hover::before {
  background: var(--grey);
}

.carousel-dot[aria-current="true"]::before {
  background: var(--gold);
}

.team-teaser {
  display: flex;
  gap: clamp(20px, 4vw, 48px);
  align-items: center;
  justify-content: space-between;
  max-width: var(--max);
  margin: clamp(32px, 4vw, 48px) auto 0;
  padding: clamp(24px, 3.4vw, 44px);
  color: var(--white);
  background: var(--black);
  border-radius: var(--radius-lg);
}

.team-teaser-copy {
  display: grid;
  gap: 10px;
  max-width: 60ch;
}

.team-teaser .region-tag {
  color: var(--black);
  background: var(--gold);
}

.team-teaser h3 {
  font-size: clamp(24px, 2.6vw, 34px);
}

.team-teaser p {
  color: var(--grey);
}

.team-teaser .button {
  flex-shrink: 0;
}

.trust-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(24px, 4vw, 64px);
  max-width: var(--max);
  margin: clamp(40px, 5vw, 72px) auto 0;
  padding-top: clamp(32px, 4vw, 48px);
  border-top: 1px solid var(--line);
}

.trust-band strong {
  display: block;
  margin-bottom: 8px;
  font-family: var(--display);
  font-size: clamp(30px, 3.4vw, 44px);
  font-weight: 700;
  text-transform: uppercase;
}

.trust-band span {
  font-size: 15px;
  color: var(--grey);
}

/* ---------- Radenthein-Weiche ---------- */

.radenthein {
  padding-top: 0;
  background: var(--white);
}

.radenthein-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  max-width: var(--max);
  margin: 0 auto;
  overflow: hidden;
  color: var(--white);
  background: var(--black);
  border-radius: var(--radius-lg);
}

.radenthein-panel > img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}

.radenthein-copy {
  display: grid;
  align-content: center;
  gap: 16px;
  padding: clamp(28px, 4vw, 64px);
}

.radenthein-copy .section-label {
  margin-bottom: 0;
  color: var(--gold);
}

.radenthein-copy h2 {
  font-size: clamp(30px, 3.6vw, 48px);
}

.radenthein-copy p {
  max-width: 54ch;
  color: var(--grey);
}

.radenthein-copy .button {
  justify-self: start;
  margin-top: 8px;
}

/* ---------- Kontakt (Standortkarten) ---------- */

.contact {
  padding-top: 0;
  background: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 24px);
  max-width: var(--max);
  margin: 0 auto;
}

.contact-card {
  display: grid;
  align-content: start;
  gap: 14px;
  padding: clamp(24px, 3vw, 40px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  transition: border-color 240ms ease, box-shadow 240ms ease;
}

.contact-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow);
}

.contact-card h3 {
  font-size: 28px;
}

.contact-address {
  font-size: 16px;
}

.contact-lines {
  display: grid;
  gap: 4px;
}

.contact-lines a {
  justify-self: start;
  font-weight: 600;
  border-bottom: 2px solid transparent;
  transition: border-color 200ms ease;
}

.contact-lines a:hover {
  border-bottom-color: var(--gold);
}

.contact-hours {
  font-size: 14px;
  color: var(--grey);
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 6px;
}

.contact-actions .button {
  padding: 12px 20px;
  font-size: 13.5px;
}

.contact-more {
  display: flex;
  justify-content: center;
  max-width: var(--max);
  margin: clamp(28px, 3vw, 40px) auto 0;
}

/* ---------- Unterseiten: Page-Hero ---------- */

.page-hero {
  position: relative;
  padding: calc(var(--header-h) + clamp(48px, 7vw, 96px)) var(--pad-x) clamp(48px, 6vw, 88px);
  overflow: hidden;
  color: var(--white);
  background: var(--black);
}

.page-hero-media {
  position: absolute;
  inset: 0;
}

.page-hero-media img,
.page-hero-media picture {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.38;
}

.page-hero-media::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(100deg, rgba(5, 7, 3, 0.92) 0%, rgba(5, 7, 3, 0.55) 60%, rgba(5, 7, 3, 0.3) 100%);
}

.page-hero-inner {
  position: relative;
  max-width: var(--max);
  margin: 0 auto;
  animation: heroFadeUp 0.8s ease both;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin: 0 0 20px;
  padding: 0;
  font-size: 13.5px;
  list-style: none;
  color: var(--grey);
}

.breadcrumb li + li::before {
  margin-right: 8px;
  content: "/";
  color: rgba(153, 153, 153, 0.6);
}

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

.page-hero h1 {
  max-width: 18ch;
  font-size: clamp(38px, 5.4vw, 72px);
}

.page-hero h1 span {
  color: var(--gold);
}

.page-hero-lead {
  max-width: 60ch;
  margin-top: 18px;
  font-size: clamp(16px, 1.5vw, 19px);
  color: rgba(255, 255, 255, 0.85);
}

.page-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.page-hero--compact {
  padding-bottom: clamp(36px, 4vw, 56px);
}

.page-hero--compact h1 {
  font-size: clamp(34px, 4.4vw, 56px);
}

/* ---------- Unterseiten: Leistungen & CTA-Band ---------- */

.leistung-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 24px);
  max-width: var(--max);
  margin: 0 auto;
  padding: 0;
  list-style: none;
}

.leistung-card {
  display: grid;
  align-content: start;
  gap: 12px;
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: border-color 240ms ease, box-shadow 300ms var(--ease), transform 380ms var(--ease);
}

.leistung-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.leistung-card svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: var(--gold-deep);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.leistung-card h3 {
  font-size: 20px;
}

.leistung-card p {
  font-size: 15px;
  color: var(--grey);
}

.section-muted {
  background: var(--paper);
}

.cta-band {
  padding-top: clamp(56px, 6vw, 88px);
  padding-bottom: clamp(56px, 6vw, 88px);
  background: var(--gold);
}

.cta-band-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max);
  margin: 0 auto;
}

.cta-band h2 {
  max-width: 20ch;
  font-size: clamp(28px, 3.4vw, 44px);
}

.cta-band p {
  margin-top: 10px;
  color: rgba(5, 7, 3, 0.72);
}

.cta-band-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.cta-band .button-outline {
  border-color: rgba(5, 7, 3, 0.35);
}

/* ---------- Personenkarten (dynamisch aus dem Team-Modul) ---------- */

.person-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: clamp(16px, 2vw, 24px);
  max-width: var(--max);
  margin: 0 auto;
}

.person-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: border-color 240ms ease, box-shadow 300ms var(--ease), transform 380ms var(--ease);
}

.person-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.person-photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  background: #ecece9;
}

.person-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 4px;
  padding: 20px 20px 22px;
}

.person-meta {
  font-family: var(--display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-deep);
}

.person-name {
  font-size: 20px;
}

.person-role {
  font-size: 14.5px;
  color: var(--grey);
}

.person-contact {
  display: grid;
  gap: 7px;
  margin: 12px 0 0;
  padding: 0;
  font-size: 14.5px;
  list-style: none;
}

.person-contact a {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  font-weight: 500;
  word-break: break-word;
  transition: color 200ms ease;
}

.person-contact a:hover {
  color: var(--gold-deep);
}

.person-contact svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: var(--gold-deep);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.person-contact small {
  font-size: 12px;
  color: var(--grey);
}

.person-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
  padding-top: 16px;
}

.person-callback {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  padding: 10px 16px;
  font-family: var(--display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--black);
  white-space: nowrap;
  cursor: pointer;
  background: transparent;
  border: 1.5px solid var(--black);
  border-radius: 999px;
  transition: background 220ms ease, color 220ms ease, border-color 220ms ease;
}

.person-callback:hover {
  background: var(--gold);
  border-color: var(--gold);
}

.person-callback svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.person-card--row {
  flex-direction: row;
}

.person-card--row .person-photo {
  width: 124px;
  height: auto;
  min-height: 100%;
  aspect-ratio: auto;
  flex-shrink: 0;
}

.person-card--row .person-body {
  padding: 16px 18px 18px;
}

.person-card--row .person-name {
  font-size: 18px;
}

.person-card--row .person-actions {
  padding-top: 12px;
}

.person-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 380px), 1fr));
  gap: 14px;
}

.team-loading,
.team-empty {
  max-width: var(--max);
  margin: 0 auto;
  padding: 28px;
  font-size: 15px;
  text-align: center;
  color: var(--grey);
  border: 1.5px dashed var(--line);
  border-radius: var(--radius);
}

.team-empty a {
  font-weight: 600;
  color: var(--black);
  border-bottom: 2px solid var(--gold);
}

/* ---------- Team-Seite ---------- */

.team-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: var(--max);
  margin: 0 auto clamp(32px, 4vw, 52px);
}

.filter-chip {
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 600;
  color: var(--black);
  cursor: pointer;
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: 999px;
  transition: background 200ms ease, border-color 200ms ease, color 200ms ease;
}

.filter-chip:hover {
  border-color: var(--black);
}

.filter-chip[aria-pressed="true"] {
  color: var(--white);
  background: var(--black);
  border-color: var(--black);
}

.team-group {
  max-width: var(--max);
  margin: 0 auto clamp(44px, 5vw, 72px);
}

.team-group:last-child {
  margin-bottom: 0;
}

.team-group-title {
  display: flex;
  gap: 12px;
  align-items: baseline;
  margin-bottom: 22px;
  padding-bottom: 14px;
  font-size: clamp(22px, 2.4vw, 30px);
  border-bottom: 1px solid var(--line);
}

.team-group-title span {
  font-family: var(--body);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  color: var(--grey);
}

/* ---------- Kontakt-Seite: Themen-Routing ---------- */

.router {
  display: grid;
  grid-template-columns: minmax(260px, 0.78fr) minmax(0, 1.7fr);
  gap: clamp(24px, 4vw, 56px);
  align-items: start;
  max-width: var(--max);
  margin: 0 auto;
}

.router-topics {
  position: sticky;
  top: calc(var(--header-h) + 24px);
  display: grid;
  gap: 22px;
}

.topic-group h3 {
  margin-bottom: 10px;
  font-size: 13px;
  letter-spacing: 0.16em;
  color: var(--grey);
}

.topic-list {
  display: grid;
  gap: 6px;
}

.topic-link {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 13px 16px;
  font-size: 15px;
  font-weight: 600;
  color: inherit;
  text-align: left;
  cursor: pointer;
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  transition: border-color 200ms ease, background 200ms ease, color 200ms ease, transform 300ms var(--ease);
}

.topic-link svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 260ms var(--ease);
}

.topic-link:hover {
  border-color: var(--gold);
}

.topic-link:hover svg {
  transform: translateX(3px);
}

.topic-link[aria-current="true"] {
  color: var(--white);
  background: var(--black);
  border-color: var(--black);
}

.topic-link[aria-current="true"] svg {
  stroke: var(--gold);
}

.router-result {
  min-height: 320px;
}

.router-result-head {
  display: grid;
  gap: 10px;
  margin-bottom: 24px;
}

.router-result-head h2 {
  font-size: clamp(26px, 3vw, 40px);
}

.router-result-head p {
  color: var(--grey);
}

.router-result .person-grid {
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  margin: 0;
}

.router-empty {
  display: grid;
  place-items: center;
  gap: 14px;
  min-height: 320px;
  padding: 32px;
  text-align: center;
  background: var(--paper);
  border: 1.5px dashed var(--line);
  border-radius: var(--radius);
}

.router-empty > svg {
  width: 40px;
  height: 40px;
  fill: none;
  stroke: var(--gold-deep);
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.router-empty h2 {
  font-size: clamp(22px, 2.4vw, 30px);
}

.router-empty p {
  max-width: 44ch;
  color: var(--grey);
}

.router-quick {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

/* ---------- Rechtstexte ---------- */

.prose-section {
  padding-top: clamp(48px, 6vw, 80px);
}

.prose {
  max-width: 820px;
  margin: 0 auto;
  font-size: 16px;
  color: var(--ink-soft);
}

.prose h2 {
  margin: 44px 0 14px;
  font-size: clamp(22px, 2.4vw, 30px);
  color: var(--black);
}

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

.prose h3 {
  margin: 28px 0 10px;
  font-size: 18px;
  color: var(--black);
}

.prose p,
.prose ul {
  margin: 0 0 14px;
}

.prose ul {
  padding-left: 22px;
}

.prose li {
  margin-bottom: 6px;
}

.prose a {
  font-weight: 500;
  border-bottom: 1.5px solid var(--gold);
}

.prose a:hover {
  color: var(--gold-deep);
}

.legal-list {
  display: grid;
  grid-template-columns: minmax(160px, 0.4fr) 1fr;
  gap: 8px 24px;
  margin: 0 0 14px;
  padding: 22px 24px;
  background: var(--paper);
  border-radius: var(--radius-sm);
}

.legal-list dt {
  font-weight: 600;
  color: var(--black);
}

.legal-list dd {
  margin: 0;
}

.prose .note {
  padding: 14px 18px;
  font-size: 15px;
  background: rgba(224, 197, 52, 0.14);
  border-left: 3px solid var(--gold);
  border-radius: 8px;
}

.prose .stand {
  margin-top: 40px;
  font-size: 14px;
  color: var(--grey);
}

/* ---------- Footer ---------- */

.site-footer {
  /* unten Platz für den schwebenden Kontakt-Button, damit er keine Links verdeckt */
  padding: clamp(56px, 7vw, 96px) var(--pad-x) 104px;
  color: var(--white);
  background: var(--black);
}

.footer-top {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) repeat(3, minmax(0, 1fr));
  gap: clamp(28px, 4vw, 64px);
  max-width: var(--max);
  margin: 0 auto;
  padding-bottom: clamp(36px, 5vw, 64px);
  border-bottom: 1px solid var(--line-dark);
}

.footer-brand {
  display: grid;
  gap: 8px;
  align-content: start;
  justify-items: start;
}

.footer-mark {
  width: 64px;
  height: 64px;
  margin-bottom: 8px;
}

.footer-brand strong {
  font-family: var(--display);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.footer-brand > span {
  font-size: 14px;
  color: var(--gold);
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}

.social-link {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  color: var(--white);
  border: 1.5px solid var(--line-dark);
  border-radius: 50%;
  transition: color 220ms ease, border-color 220ms ease, background 220ms ease, transform 300ms var(--ease);
}

.social-link svg {
  width: 19px;
  height: 19px;
  fill: currentColor;
}

.social-link:hover {
  color: var(--black);
  background: var(--gold);
  border-color: var(--gold);
  transform: translateY(-3px);
}

.footer-col {
  display: grid;
  gap: 10px;
  align-content: start;
}

.footer-col strong {
  margin-bottom: 6px;
  font-family: var(--display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--grey);
}

.footer-col a {
  justify-self: start;
  font-size: 14.5px;
  color: rgba(255, 255, 255, 0.85);
  border-bottom: 1.5px solid transparent;
  transition: color 200ms ease, border-color 200ms ease;
}

.footer-col a:hover {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 24px;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max);
  margin: 0 auto;
  padding-top: 28px;
}

.footer-bottom p {
  font-size: 13px;
  color: var(--grey);
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
  align-items: center;
}

.footer-legal a,
.footer-legal button {
  padding: 0;
  font-family: var(--body);
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
  cursor: pointer;
  background: none;
  border: 0;
  transition: color 200ms ease;
}

.footer-legal a:hover,
.footer-legal button:hover {
  color: var(--gold);
}

.footer-legal .footer-top-link {
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ---------- Dialoge (Marken-Pop-up, Rückruf) ---------- */

dialog.modal {
  width: min(780px, calc(100% - 32px));
  max-height: calc(100dvh - 32px);
  padding: 0;
  overflow-y: auto;
  color: var(--black);
  background: var(--white);
  border: 0;
  border-radius: var(--radius-lg);
  box-shadow: 0 40px 100px rgba(5, 7, 3, 0.45);
  overscroll-behavior: contain;
}

dialog.modal[open] {
  animation: modalIn 380ms var(--ease);
}

dialog::backdrop {
  background: rgba(5, 7, 3, 0.64);
  backdrop-filter: blur(4px);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  padding: 0;
  color: var(--white);
  cursor: pointer;
  background: rgba(255, 255, 255, 0.12);
  border: 0;
  border-radius: 50%;
  transition: background 200ms ease, transform 300ms var(--ease);
}

.modal-close:hover {
  background: var(--gold);
  color: var(--black);
  transform: rotate(90deg);
}

.modal-close svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
}

.modal-head {
  position: relative;
  display: grid;
  gap: 12px;
  padding: clamp(28px, 4vw, 40px) clamp(22px, 4vw, 40px) clamp(24px, 3vw, 32px);
  color: var(--white);
  background: var(--black);
}

.modal-head .eyebrow {
  color: var(--gold);
}

.modal-head h2 {
  padding-right: 48px;
  font-size: clamp(26px, 3.2vw, 38px);
}

.modal-head p {
  max-width: 62ch;
  color: rgba(255, 255, 255, 0.78);
}

.brand-modal-logo {
  justify-self: start;
  width: auto;
  max-width: 220px;
  height: 42px;
  margin-bottom: 6px;
  object-fit: contain;
  object-position: left;
  filter: brightness(0) invert(1);
}

.modal-body {
  display: grid;
  gap: 26px;
  padding: clamp(22px, 3vw, 32px) clamp(22px, 4vw, 40px);
}

.modal-group > h3 {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 14px;
  font-size: 16px;
  letter-spacing: 0.1em;
  color: var(--ink-soft);
}

.modal-group > h3::before {
  width: 22px;
  height: 2px;
  content: "";
  background: var(--gold);
}

.modal-foot {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  padding: 20px clamp(22px, 4vw, 40px) clamp(24px, 3vw, 34px);
  border-top: 1px solid var(--line);
}

.modal-foot .button-primary {
  padding: 16px 28px;
  font-size: 16px;
}

/* Rückruf-Formular */

.callback-modal {
  width: min(640px, calc(100% - 32px));
}

.callback-person {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-top: 6px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-sm);
}

.callback-person img {
  width: 54px;
  height: 54px;
  object-fit: cover;
  background: #ecece9;
  border-radius: 50%;
}

.callback-person strong {
  display: block;
  font-family: var(--display);
  font-size: 17px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.callback-person span {
  font-size: 13.5px;
  color: var(--grey);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.field {
  display: grid;
  gap: 6px;
  font-size: 13.5px;
  font-weight: 600;
}

.field-full {
  grid-column: 1 / -1;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 13px 14px;
  font-size: 15px;
  font-weight: 400;
  color: var(--black);
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  transition: border-color 220ms ease, box-shadow 220ms ease;
}

.field select {
  appearance: none;
  padding-right: 34px;
  background-image: linear-gradient(45deg, transparent 50%, var(--grey) 50%),
    linear-gradient(135deg, var(--grey) 50%, transparent 50%);
  background-position: calc(100% - 20px) center, calc(100% - 15px) center;
  background-repeat: no-repeat;
  background-size: 5px 5px, 5px 5px;
}

.field textarea {
  min-height: 96px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(224, 197, 52, 0.22);
}

.field input[aria-invalid="true"],
.check input[aria-invalid="true"] {
  border-color: #b3261e;
  box-shadow: 0 0 0 3px rgba(179, 38, 30, 0.14);
}

.check {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 13.5px;
  line-height: 1.5;
  color: #3a3c37;
}

.check input {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin: 1px 0 0;
  accent-color: var(--gold-deep);
}

.check a {
  font-weight: 600;
  border-bottom: 1.5px solid var(--gold);
}

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-status {
  min-height: 1.4em;
  font-size: 14px;
}

.form-status.is-error {
  color: #b3261e;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.form-actions .button[disabled] {
  cursor: wait;
  opacity: 0.6;
}

.callback-success {
  display: grid;
  justify-items: center;
  gap: 14px;
  padding: clamp(36px, 5vw, 56px) clamp(22px, 4vw, 40px);
  text-align: center;
}

.callback-success svg {
  width: 56px;
  height: 56px;
  padding: 12px;
  fill: none;
  stroke: var(--black);
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
  background: var(--gold);
  border-radius: 50%;
}

.callback-success h3 {
  font-size: clamp(22px, 2.6vw, 30px);
}

.callback-success p {
  max-width: 44ch;
  color: var(--grey);
}

/* Kontakt-Drawer */

dialog.drawer {
  position: fixed;
  inset: 0 0 0 auto;
  width: min(460px, 100%);
  height: 100dvh;
  max-width: 100%;
  max-height: 100dvh;
  margin: 0;
  padding: 0;
  overflow-y: auto;
  color: var(--white);
  background: var(--black);
  border: 0;
  overscroll-behavior: contain;
}

dialog.drawer[open] {
  animation: drawerIn 420ms var(--ease);
}

.drawer-inner {
  position: relative;
  display: grid;
  gap: 24px;
  padding: clamp(28px, 4vw, 40px) clamp(22px, 3vw, 32px) 44px;
}

.drawer-inner h2 {
  padding-right: 48px;
  font-size: clamp(28px, 3vw, 36px);
}

.drawer-inner > p {
  color: rgba(255, 255, 255, 0.72);
}

.drawer .eyebrow {
  color: var(--gold);
}

.drawer .topic-group h3 {
  color: var(--grey);
}

.drawer .topic-link {
  color: var(--white);
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--line-dark);
}

.drawer .topic-link:hover {
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.07);
}

.drawer .topic-link svg {
  stroke: var(--gold);
}

.drawer-quick {
  display: grid;
  gap: 10px;
  padding-top: 22px;
  border-top: 1px solid var(--line-dark);
}

.drawer-quick .button {
  width: 100%;
}

.drawer-quick .button-ghost {
  border-color: var(--line-dark);
}

/* Globaler Kontakt-Button */

.contact-fab {
  position: fixed;
  right: clamp(16px, 2.5vw, 28px);
  bottom: clamp(16px, 2.5vw, 28px);
  z-index: 80;
  display: inline-flex;
  gap: 10px;
  align-items: center;
  padding: 15px 24px 15px 18px;
  font-family: var(--display);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1;
  text-transform: uppercase;
  color: var(--black);
  cursor: pointer;
  background: var(--gold);
  border: 0;
  border-radius: 999px;
  box-shadow: 0 16px 36px rgba(5, 7, 3, 0.32);
  transition: background 220ms ease, transform 380ms var(--ease), box-shadow 380ms var(--ease), opacity 260ms ease;
}

.contact-fab::before {
  position: absolute;
  inset: 0;
  content: "";
  border: 2px solid var(--gold);
  border-radius: inherit;
  animation: fabPulse 2.8s ease-out 2s infinite;
}

.contact-fab:hover {
  background: var(--gold-deep);
  box-shadow: 0 20px 40px rgba(224, 197, 52, 0.45);
  transform: translateY(-3px);
}

.contact-fab svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

body.cookie-open .contact-fab {
  pointer-events: none;
  opacity: 0;
  transform: translateY(24px);
}

/* ---------- Cookie-Banner ---------- */

.cookie-banner {
  position: fixed;
  right: clamp(12px, 2vw, 24px);
  bottom: clamp(12px, 2vw, 24px);
  left: clamp(12px, 2vw, 24px);
  z-index: 120;
  max-width: 760px;
  margin: 0 auto;
}

.cookie-inner {
  display: grid;
  gap: 16px;
  max-height: calc(100dvh - 32px);
  padding: clamp(20px, 2.6vw, 28px);
  overflow-y: auto;
  color: var(--white);
  background: var(--black);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  box-shadow: 0 30px 80px rgba(5, 7, 3, 0.5);
  animation: heroFadeUp 0.5s var(--ease) both;
}

.cookie-banner h2 {
  font-size: 21px;
}

.cookie-banner p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.78);
}

.cookie-banner a {
  color: var(--white);
  border-bottom: 1.5px solid var(--gold);
}

.cookie-options {
  display: grid;
  gap: 10px;
}

.cookie-option {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  border: 1px solid var(--line-dark);
  border-radius: 12px;
}

.cookie-option strong {
  display: block;
  font-size: 14.5px;
}

.cookie-option small {
  display: block;
  font-size: 13px;
  line-height: 1.45;
  color: var(--grey);
}

.switch {
  position: relative;
  flex-shrink: 0;
  width: 46px;
  height: 26px;
  margin: 0;
  cursor: pointer;
  appearance: none;
  background: rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  transition: background 220ms ease;
}

.switch::before {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  content: "";
  background: var(--white);
  border-radius: 50%;
  transition: transform 260ms var(--ease);
}

.switch:checked {
  background: var(--gold);
}

.switch:checked::before {
  transform: translateX(20px);
}

.switch:disabled {
  cursor: not-allowed;
  opacity: 0.65;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: flex-end;
}

.cookie-actions .button {
  padding: 12px 20px;
  font-size: 13.5px;
}

.cookie-actions .button-light {
  color: var(--black);
  background: var(--white);
}

.cookie-actions .button-light:hover {
  background: #e9e9e6;
  transform: translateY(-2px);
}

.cookie-link-btn {
  margin-right: auto;
  padding: 6px 2px;
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  cursor: pointer;
  background: none;
  border: 0;
  border-bottom: 1.5px solid var(--gold);
}

/* ---------- Animationen ---------- */

@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes heroKenBurns {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.08);
  }
}

@keyframes heroShine {
  from {
    background-position: 180% 50%;
  }
  to {
    background-position: -80% 50%;
  }
}

@keyframes dotProgress {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}

@keyframes modalIn {
  from {
    opacity: 0;
    transform: translateY(24px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes drawerIn {
  from {
    transform: translateX(100%);
  }
  to {
    transform: none;
  }
}

@keyframes fabPulse {
  0% {
    opacity: 0.7;
    transform: scale(1);
  }
  70%,
  100% {
    opacity: 0;
    transform: scale(1.35);
  }
}

/* ---------- Reveal-Animationen ---------- */

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .hero-slide,
  .hero-slide.is-active img,
  .hero-slide.is-leaving img,
  .hero-logos,
  .hero-copy,
  .hero h1,
  .hero-services,
  .page-hero-inner,
  .contact-fab::before,
  dialog.modal[open],
  dialog.drawer[open],
  .cookie-inner {
    animation: none;
    transition: none;
  }

  .hero h1 {
    color: var(--white);
    -webkit-text-fill-color: var(--white);
  }

  .partner-track {
    scroll-behavior: auto;
  }

  .button,
  .brand-tile,
  .focus-card,
  .service-card,
  .partner-card,
  .person-card,
  .leistung-card {
    transition: none;
  }
}

/* ---------- Responsive ---------- */

@media (max-width: 1100px) {
  .header-switch,
  .brand-copy span {
    display: none;
  }

  .site-nav {
    gap: 14px;
  }

  .site-nav a,
  .nav-group-toggle {
    font-size: 14px;
  }

  .header-cta {
    padding: 12px 14px;
  }

  .header-cta-label {
    display: none;
  }

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

  .focus-b2c {
    grid-column: span 12;
    grid-row: auto;
  }

  .focus-abo,
  .focus-bonus {
    grid-column: span 6;
  }

  .partner-track {
    grid-auto-columns: calc((100% - var(--gap)) / 2);
  }

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

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

  .router-topics {
    position: static;
  }

  .router-topics .topic-list {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  }

  .footer-top {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  /* backdrop-filter würde den Header zum Containing Block des fixierten Menüs machen */
  .site-header {
    background: var(--black);
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }

  .hero-logos {
    justify-content: center;
  }

  .site-nav {
    position: fixed;
    inset: var(--header-h) 0 0 0;
    z-index: 90;
    flex-direction: column;
    gap: 0;
    align-items: stretch;
    padding: 16px var(--pad-x) 32px;
    overflow-y: auto;
    visibility: hidden;
    background: var(--black);
    opacity: 0;
    transition: opacity 220ms ease, visibility 220ms ease;
  }

  body.nav-open .site-nav {
    visibility: visible;
    opacity: 1;
  }

  .site-nav > a,
  .nav-group-toggle {
    width: 100%;
    padding: 16px 4px;
    font-family: var(--display);
    font-size: 22px;
    font-weight: 700;
    text-align: left;
    text-transform: uppercase;
    border-bottom: 1px solid var(--line-dark);
  }

  .nav-group-toggle {
    justify-content: space-between;
  }

  .nav-group-toggle svg {
    width: 20px;
    height: 20px;
  }

  .site-nav > a::after,
  .nav-group-toggle::after {
    content: none;
  }

  .site-nav > a[aria-current="page"],
  .nav-group.is-current > .nav-group-toggle {
    color: var(--gold);
  }

  .nav-dropdown {
    position: static;
    display: none;
    min-width: 0;
    padding: 6px 0 10px 14px;
    visibility: visible;
    background: none;
    border: 0;
    box-shadow: none;
    opacity: 1;
    transform: none;
  }

  .nav-dropdown::before {
    content: none;
  }

  .nav-group.is-open .nav-dropdown {
    display: grid;
    transform: none;
  }

  .nav-dropdown a {
    font-size: 17px;
  }

  .site-nav .nav-radenthein {
    display: inline-flex;
    gap: 10px;
    align-items: center;
    color: var(--gold);
  }

  /* Terminbuchung im mobilen Menü, da der Header-Button dort ausgeblendet ist */
  .site-nav > a.nav-booking {
    display: inline-flex;
    justify-content: center;
    margin-top: 24px;
    padding: 16px 24px;
    font-size: 16px;
    text-align: center;
    color: var(--black);
    border-bottom: 0;
  }

  .site-nav .nav-radenthein svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .nav-toggle {
    display: flex;
  }

  .header-cta {
    display: none;
  }

  .section-head {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .service-grid,
  .leistung-grid {
    grid-template-columns: 1fr;
  }

  .trust-band {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .radenthein-panel {
    grid-template-columns: 1fr;
  }

  .radenthein-panel > img {
    min-height: 220px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .focus-b2b,
  .team-teaser {
    flex-direction: column;
    align-items: flex-start;
  }

  .focus-b2b-logo {
    order: -1;
    width: 150px;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .legal-list {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .legal-list dd {
    margin-bottom: 10px;
  }
}

@media (max-width: 640px) {
  .hero h1 {
    font-size: clamp(30px, 9vw, 40px);
  }

  .hero-logos img[alt="Hyundai"] { height: 26px; }
  .hero-logos img[alt="Ford"] { height: 22px; }
  .hero-logos img[alt="Ford Pro"] { height: 28px; }
  .hero-logos img[alt="Volvo"] { height: 11px; }
  .hero-logos img[alt="Mitsubishi"] { height: 24px; }
  .hero-logos img[alt="Polestar"] { height: 15px; }

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

  .brand-copy span {
    display: none;
  }

  .brand-grid {
    grid-template-columns: 1fr;
  }

  .brand-tile {
    min-height: 190px;
  }

  .focus-abo,
  .focus-bonus {
    grid-column: span 12;
  }

  .partner-track {
    grid-auto-columns: 86%;
  }

  .carousel-hint {
    display: none;
  }

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

  .person-card--row .person-photo {
    width: 76px;
  }

  .person-card--row .person-body {
    padding: 14px 14px 16px;
  }

  .person-card--row .person-contact a {
    gap: 8px;
  }

  .person-card--row .person-callback {
    gap: 6px;
    padding: 9px 12px;
    font-size: 12px;
  }

  /* Personenkarten kompakt im Querformat statt hoher Fotokarten */
  .person-grid .person-card {
    flex-direction: row;
  }

  .person-grid .person-photo {
    width: 96px;
    height: auto;
    min-height: 100%;
    aspect-ratio: auto;
    flex-shrink: 0;
    object-position: center top;
  }

  .person-grid .person-body {
    padding: 14px 14px 16px;
  }

  .person-grid .person-contact {
    font-size: 13.5px;
  }

  .person-grid .person-contact a {
    gap: 8px;
  }

  .person-grid .person-callback {
    gap: 6px;
    padding: 9px 12px;
    font-size: 12px;
  }

  .modal-foot .button {
    width: 100%;
  }

  .cookie-actions .button {
    flex: 1 1 100%;
  }

  .cookie-link-btn {
    margin: 0 auto;
  }

  .contact-fab {
    padding: 14px 20px 14px 16px;
    font-size: 14px;
  }

  .footer-top {
    grid-template-columns: 1fr;
  }
}
