/* ===== Self-hosted fonts ===== */
/* Inter — variable font (latin-ext covers German umlauts) */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('assets/fonts/inter-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304,
                 U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB,
                 U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('assets/fonts/inter-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC,
                 U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193,
                 U+2212, U+2215, U+FEFF, U+FFFD;
}

/* Bebas Neue */
@font-face {
  font-family: 'Bebas Neue';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('assets/fonts/bebas-neue-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304,
                 U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB,
                 U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Bebas Neue';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('assets/fonts/bebas-neue-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC,
                 U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193,
                 U+2212, U+2215, U+FEFF, U+FFFD;
}

/* ===== Motorradtechnik Ladiges — Design Tokens ===== */
:root {
  --color-bg: #08090B;
  --color-bg-soft: #111318;
  --color-card: #171A21;
  --color-card-2: #1C2029;
  --color-border: #2A2F3A;
  --color-border-soft: #1F232C;
  --color-text: #F4F4F5;
  --color-muted: #A1A1AA;
  --color-accent: #E11D2E;
  --color-accent-hover: #FF3045;
  --color-metal: #C7CBD1;
  --color-warning: #F59E0B;

  --font-heading: "Bebas Neue", "Oswald", "Impact", sans-serif;
  --font-body: "Inter", "Roboto", system-ui, sans-serif;

  --max-w: 1200px;
  --pad-section: 96px 24px;
  --pad-section-mobile: 64px 20px;
  --radius-lg: 32px;
  --radius-card: 24px;
  --radius-pill: 999px;
  --gap: 24px;
}

* { box-sizing: border-box; }

html, body {
  margin: 0; padding: 0;
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ===== Containers ===== */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

section {
  padding: var(--pad-section);
}
@media (max-width: 720px) {
  section { padding: var(--pad-section-mobile); }
}

/* ===== Typography ===== */
.eyebrow {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-accent);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 28px; height: 2px;
  background: var(--color-accent);
  display: inline-block;
}

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

h1 { font-size: clamp(54px, 6.6vw, 96px); }
h2 { font-size: clamp(40px, 4.6vw, 64px); }
h3 { font-size: clamp(22px, 1.8vw, 28px); letter-spacing: 0.02em; }

p, li {
  font-family: var(--font-body);
  line-height: 1.55;
  color: var(--color-muted);
}

.lead {
  font-size: clamp(17px, 1.2vw, 20px);
  color: #D4D4D8;
  max-width: 560px;
  line-height: 1.55;
}

.section-head { max-width: 760px; margin-bottom: 56px; }
.section-head h2 { margin-top: 12px; }
.section-head .lead { margin-top: 18px; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform .15s ease, background .2s ease, box-shadow .25s ease, color .2s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--color-accent);
  color: #fff;
  box-shadow: 0 0 24px rgba(225, 29, 46, 0.35);
}
.btn-primary:hover {
  background: var(--color-accent-hover);
  box-shadow: 0 0 32px rgba(255, 48, 69, 0.55);
  transform: translateY(-1px);
}
.btn-secondary {
  background: transparent;
  color: var(--color-text);
  border-color: #3F4654;
}
.btn-secondary:hover {
  border-color: var(--color-metal);
  background: rgba(255,255,255,0.04);
}
.btn .arrow { transition: transform .2s ease; }
.btn:hover .arrow { transform: translateX(4px); }

/* ===== Header ===== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 60;
  padding: 18px 24px;
  display: flex;
  justify-content: center;
  transition: background .3s ease, backdrop-filter .3s ease, border-color .3s ease;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(8, 9, 11, 0.78);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom-color: var(--color-border);
}
.site-header .inner {
  width: 100%;
  max-width: var(--max-w);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-heading);
  font-size: 22px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.brand-logo {
  height: 40px;
  width: auto;
  object-fit: contain;
  display: block;
}
.brand .name { line-height: 1; }
.brand .name small {
  display: block;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.24em;
  color: var(--color-muted);
  margin-top: 4px;
}
.nav {
  display: flex;
  align-items: center;
  gap: 28px;
  justify-self: center;
}
.nav a {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text);
  opacity: 0.78;
  position: relative;
  padding: 6px 0;
}
.nav a:hover, .nav a.active { opacity: 1; }
.nav a.active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  background: var(--color-accent);
}
.header-cta {
  display: flex;
  justify-self: end;
  align-items: center;
  gap: 12px;
}
.tel-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--color-border);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--color-text);
  background: rgba(23, 26, 33, 0.5);
}
.tel-btn:hover { border-color: var(--color-metal); }
.menu-btn, .call-btn-mobile { display: none; }

@media (max-width: 980px) {
  .nav, .tel-btn { display: none; }
  .site-header .inner { grid-template-columns: 1fr auto; }
  .header-cta { gap: 10px; }
  .menu-btn, .call-btn-mobile {
    display: inline-grid;
    place-items: center;
    width: 44px; height: 44px;
    border-radius: 12px;
    border: 1px solid var(--color-border);
    background: rgba(23, 26, 33, 0.6);
    color: var(--color-text);
    cursor: pointer;
  }
  .header-cta .btn-primary { display: none; }
}

/* Mobile menu sheet */
.mobile-sheet {
  position: fixed;
  inset: 0;
  background: rgba(8, 9, 11, 0.96);
  backdrop-filter: blur(20px);
  z-index: 70;
  transform: translateY(-100%);
  transition: transform .35s ease;
  display: flex;
  flex-direction: column;
  padding: 24px;
}
.mobile-sheet.open { transform: translateY(0); }
.mobile-sheet .close {
  align-self: flex-end;
  width: 44px; height: 44px;
  border-radius: 12px;
  border: 1px solid var(--color-border);
  background: transparent;
  color: var(--color-text);
  font-size: 22px;
  cursor: pointer;
}
.mobile-sheet nav {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.mobile-sheet nav a {
  font-family: var(--font-heading);
  font-size: 40px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  padding: 12px 0;
  border-bottom: 1px solid var(--color-border-soft);
}

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 860px;
  padding: 160px 24px 80px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--color-bg);
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  display: block;
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8,9,11,0.95) 0%, rgba(8,9,11,0.55) 55%, rgba(8,9,11,0.15) 100%),
    linear-gradient(180deg, rgba(8,9,11,0.55) 0%, rgba(8,9,11,0) 30%, rgba(8,9,11,0.9) 100%);
  pointer-events: none;
  z-index: 1;
}
.hero-grid-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  opacity: 0.35;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
}
.hero-diag {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  overflow: hidden;
}
.hero-diag::before {
  content: "";
  position: absolute;
  left: 30%; right: -20%;
  top: -20%; bottom: -20%;
  background: linear-gradient(115deg, transparent 49.6%, rgba(225, 29, 46, 0.55) 49.8%, rgba(225, 29, 46, 0.9) 50%, rgba(225, 29, 46, 0.55) 50.2%, transparent 50.4%);
  filter: blur(0.5px);
  opacity: 0.5;
}
.hero .inner {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 360px);
  gap: 48px;
  align-items: end;
}
.hero-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.hero-person {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: 0 24px 60px rgba(0,0,0,0.65), 0 0 0 1px rgba(225,29,46,0.12);
  position: relative;
  aspect-ratio: 4/3;
}
.hero-person img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.hero-person::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 16px;
  background: linear-gradient(180deg, transparent 55%, rgba(8,9,11,0.55) 100%);
  pointer-events: none;
}
.hero-content { max-width: 720px; }
.hero h1 {
  margin-top: 18px;
  line-height: 0.92;
}
.hero h1 .accent { color: var(--color-accent); }
.hero .sub {
  font-family: var(--font-body);
  font-size: clamp(17px, 1.2vw, 20px);
  color: #D4D4D8;
  max-width: 560px;
  margin-top: 28px;
  line-height: 1.5;
}
.hero-ctas {
  margin-top: 36px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.hero-badges {
  margin-top: 44px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  background: rgba(23, 26, 33, 0.7);
  border: 1px solid var(--color-border);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--color-text);
  backdrop-filter: blur(8px);
}
.badge .dot {
  width: 6px; height: 6px;
  border-radius: 999px;
  background: var(--color-accent);
  box-shadow: 0 0 8px rgba(225,29,46,0.8);
}

/* Floating hero card */
.hero-card {
  background: linear-gradient(180deg, rgba(23,26,33,0.92) 0%, rgba(17,19,24,0.92) 100%);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  padding: 24px;
  backdrop-filter: blur(12px);
  box-shadow: 0 30px 80px rgba(0,0,0,0.55);
  position: relative;
}
.hero-card::before {
  content: "";
  position: absolute;
  left: 24px; right: 24px;
  top: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
}
.hero-card .status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #4ADE80;
}
.hero-card .status::before {
  content: "";
  width: 8px; height: 8px;
  border-radius: 999px;
  background: #4ADE80;
  box-shadow: 0 0 10px #4ADE80;
}
.hero-card h3 {
  font-family: var(--font-heading);
  font-size: 26px;
  margin-top: 10px;
  text-transform: uppercase;
}
.hero-card .row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 14px 0;
  border-top: 1px solid var(--color-border-soft);
  font-size: 13px;
}
.hero-card .row .lab {
  color: var(--color-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 600;
}
.hero-card .row .val { color: var(--color-text); font-weight: 600; }
.hero-card .tel {
  display: block;
  font-family: var(--font-heading);
  font-size: 32px;
  letter-spacing: 0.02em;
  margin-top: 14px;
  color: var(--color-text);
}
.hero-card .tel:hover { color: var(--color-accent-hover); }

/* Google rating row inside hero-card */
.hero-google-rating {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  padding: 11px 14px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 12px;
  text-decoration: none;
  transition: background .2s, border-color .2s;
}
.hero-google-rating:hover {
  background: rgba(255,255,255,0.09);
  border-color: rgba(255,255,255,0.18);
}
.g-logo { flex-shrink: 0; }
.grating-stars {
  display: flex;
  gap: 1px;
}
.grating-stars svg {
  width: 13px;
  height: 13px;
  flex-shrink: 0;
}
.grating-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
  margin-left: 2px;
}
.grating-score {
  font-size: 15px;
  font-weight: 700;
  color: var(--color-text);
  line-height: 1;
}
.grating-label {
  font-size: 10px;
  color: var(--color-muted);
  text-transform: uppercase;
  letter-spacing: .06em;
}

@media (max-width: 980px) {
  .hero { min-height: 720px; padding: 130px 20px 60px; }
  .hero .inner {
    grid-template-columns: minmax(0, 1fr);
    gap: 36px;
    align-items: start;
  }
  .hero-content { min-width: 0; }
  .hero-right { min-width: 0; }
  .hero-card { max-width: 420px; }
}

/* ===== Quick Contact Bar ===== */
.quick-contact {
  padding: 64px 24px 32px;
}
.qc-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
}
@media (max-width: 880px) {
  .qc-grid { grid-template-columns: 1fr; }
}
.qc-card {
  background: linear-gradient(180deg, #171A21 0%, #111318 100%);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.qc-card:hover {
  transform: translateY(-3px);
  border-color: var(--color-accent);
  box-shadow: 0 24px 60px rgba(225, 29, 46, 0.18);
}
.qc-icon {
  width: 48px; height: 48px;
  border-radius: 14px;
  background: rgba(225, 29, 46, 0.12);
  color: var(--color-accent);
  display: grid; place-items: center;
  border: 1px solid rgba(225, 29, 46, 0.25);
}
.qc-card h3 {
  font-family: var(--font-heading);
  font-size: 28px;
  text-transform: uppercase;
}
.qc-card .big {
  font-family: var(--font-heading);
  font-size: 32px;
  letter-spacing: 0.02em;
  color: var(--color-text);
  margin-top: 2px;
}
.qc-card p { margin: 0; font-size: 15px; color: var(--color-muted); }
.qc-card .link {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--color-accent);
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.qc-card .link:hover { color: var(--color-accent-hover); }

/* ===== Service Cards (Leistungen) ===== */
.services {
  background:
    radial-gradient(900px 500px at 20% 0%, rgba(225,29,46,0.06), transparent 60%),
    var(--color-bg);
  position: relative;
  overflow-x: clip;
}
.services::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse at 50% 30%, black, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 30%, black, transparent 75%);
}
.services .container { position: relative; }
.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
}
@media (max-width: 1024px) { .svc-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px)  { .svc-grid { grid-template-columns: 1fr; } }

.svc-card {
  position: relative;
  background: linear-gradient(180deg, #171A21 0%, #111318 100%);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  padding: 32px 28px 28px;
  min-height: 240px;
  overflow: hidden;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.svc-card::before {
  content: "";
  position: absolute;
  left: 0; top: 28px;
  width: 4px;
  height: 36px;
  background: var(--color-accent);
  border-radius: 0 4px 4px 0;
  transform: scaleY(0.3);
  transform-origin: top;
  transition: transform .25s ease;
}
.svc-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
  opacity: 0.6;
  mask-image: radial-gradient(circle at 90% 100%, black, transparent 70%);
  -webkit-mask-image: radial-gradient(circle at 90% 100%, black, transparent 70%);
}
.svc-card:hover {
  transform: translateY(-4px);
  border-color: rgba(225, 29, 46, 0.6);
  box-shadow: 0 24px 60px rgba(225, 29, 46, 0.2);
}
.svc-card:hover::before { transform: scaleY(1); }
.svc-card .icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: rgba(225, 29, 46, 0.1);
  color: var(--color-accent);
  display: grid; place-items: center;
  border: 1px solid rgba(225, 29, 46, 0.25);
  margin-bottom: 22px;
}
.svc-card h3 {
  font-family: var(--font-heading);
  font-size: 26px;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.svc-card p {
  margin: 0;
  font-size: 15px;
  color: var(--color-muted);
  line-height: 1.55;
}
.svc-card .more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 18px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text);
  opacity: 0;
  transform: translateY(4px);
  transition: opacity .25s, transform .25s;
}
.svc-card:hover .more { opacity: 1; transform: translateY(0); }

/* ===== Trust / Why Ladiges ===== */
.trust { background: var(--color-bg-soft); }
.trust-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  align-items: stretch;
}
@media (max-width: 980px) { .trust-grid { grid-template-columns: 1fr; gap: 32px; } }

.trust-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 520px;
  border: 1px solid var(--color-border);
}
.trust-image image-slot { width: 100%; height: 100%; }
.trust-workshop-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}
.trust-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(8,9,11,0.65) 100%);
  pointer-events: none;
}
.trust-stat {
  position: absolute;
  left: 24px; bottom: 24px;
  z-index: 2;
  background: rgba(8, 9, 11, 0.75);
  backdrop-filter: blur(12px);
  border: 1px solid var(--color-border);
  border-radius: 18px;
  padding: 16px 22px;
  display: flex;
  align-items: baseline;
  gap: 14px;
}
.trust-stat .num {
  font-family: var(--font-heading);
  font-size: 44px;
  color: var(--color-accent);
  line-height: 1;
}
.trust-stat .lab {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-muted);
  max-width: 140px;
  line-height: 1.3;
}

.trust-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.trust-card {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 20px;
  padding: 24px;
  background: linear-gradient(180deg, #171A21 0%, #111318 100%);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  align-items: start;
}
.trust-card .num {
  font-family: var(--font-heading);
  font-size: 36px;
  color: var(--color-accent);
  line-height: 1;
}
.trust-card h3 {
  font-family: var(--font-heading);
  font-size: 24px;
  margin-bottom: 6px;
  text-transform: uppercase;
}
.trust-card p { margin: 0; font-size: 15px; }
.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}
.trust-badges .badge { background: transparent; }

/* ===== Season ===== */
.season .season-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
}
@media (max-width: 980px) { .season .season-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .season .season-grid { grid-template-columns: 1fr; } }

.season-card {
  position: relative;
  border-radius: var(--radius-card);
  overflow: hidden;
  background: var(--color-card);
  border: 1px solid var(--color-border);
  min-height: 320px;
  display: flex;
  flex-direction: column;
  transition: transform .25s, border-color .25s;
}
.season-card:hover { transform: translateY(-3px); border-color: rgba(225, 29, 46, 0.5); }
.season-card .img-wrap {
  position: relative;
  height: 180px;
  background: #0E1014;
  overflow: hidden;
}
.season-card .img-wrap image-slot { width: 100%; height: 100%; }
.season-card .img-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(23, 26, 33, 0.95) 100%);
  pointer-events: none;
}
.season-card .cat {
  position: absolute;
  top: 14px; left: 14px;
  z-index: 2;
  padding: 6px 12px;
  background: var(--color-accent);
  color: #fff;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.season-card .body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.season-card h3 {
  font-family: var(--font-heading);
  font-size: 26px;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.season-card p { margin: 0; font-size: 14px; color: var(--color-muted); }
.season-card .arrow-link {
  margin-top: auto;
  padding-top: 18px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text);
}

.season-cta {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

/* ===== HU Reminder ===== */
.hu-section {
  background:
    radial-gradient(700px 400px at 80% 30%, rgba(225,29,46,0.10), transparent 60%),
    var(--color-bg);
}
.hu-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
@media (max-width: 980px) { .hu-grid { grid-template-columns: 1fr; } }
.hu-info ul {
  list-style: none;
  padding: 0; margin: 28px 0 0;
  display: grid;
  gap: 12px;
}
.hu-info li {
  display: flex; gap: 12px;
  font-size: 15px;
  color: #D4D4D8;
}
.hu-info li::before {
  content: "";
  width: 18px; height: 18px;
  flex-shrink: 0;
  margin-top: 3px;
  border-radius: 999px;
  background: rgba(225,29,46,0.15);
  border: 1px solid var(--color-accent);
  position: relative;
}
.hu-form-card {
  position: relative;
  background: linear-gradient(180deg, #1C2029 0%, #14171E 100%);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
}
.hu-form-card::before {
  content: "TÜV";
  position: absolute;
  right: -16px; top: -16px;
  width: 110px; height: 110px;
  border-radius: 999px;
  background:
    radial-gradient(circle at center, var(--color-accent) 0%, var(--color-accent) 40%, #B81322 41%, #B81322 70%, var(--color-accent) 71%);
  display: grid; place-items: center;
  color: #fff;
  font-family: var(--font-heading);
  font-size: 36px;
  letter-spacing: 0.06em;
  border: 4px solid var(--color-bg);
  box-shadow: 0 10px 30px rgba(225,29,46,0.4);
  transform: rotate(-12deg);
}
.hu-form-card h3 {
  font-family: var(--font-heading);
  font-size: 32px;
  margin-bottom: 24px;
}
.hu-form { display: grid; gap: 16px; }
.hu-form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 560px) { .hu-form .row { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: 6px; }
.field label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-muted);
}
.field input {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 14px 16px;
  color: var(--color-text);
  font-size: 15px;
  font-family: var(--font-body);
  transition: border-color .2s, box-shadow .2s;
}
.field input:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 4px rgba(225,29,46,0.15);
}
.consent {
  display: flex;
  gap: 12px;
  font-size: 12px;
  color: var(--color-muted);
  line-height: 1.5;
}
.consent input { margin-top: 3px; accent-color: var(--color-accent); }

/* ===== Contact & Map ===== */
.contact-section { background: var(--color-bg-soft); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 32px;
  align-items: stretch;
}
@media (max-width: 980px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-info {
  background: linear-gradient(180deg, #171A21 0%, #111318 100%);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 40px;
}
.contact-info h3 {
  font-family: var(--font-heading);
  font-size: 28px;
  margin-bottom: 16px;
}
.contact-info .addr {
  font-style: normal;
  color: #D4D4D8;
  line-height: 1.7;
  font-size: 16px;
  margin-bottom: 24px;
}
.contact-info .addr strong { color: var(--color-text); }
.hours {
  width: 100%;
  border-collapse: collapse;
  margin-top: 8px;
}
.hours td {
  padding: 11px 0;
  border-top: 1px solid var(--color-border-soft);
  font-size: 14px;
  color: var(--color-muted);
}
.hours tr:first-child td { border-top: 0; }
.hours td:first-child {
  font-weight: 600;
  color: var(--color-text);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 12px;
}
.hours td:last-child { text-align: right; font-family: var(--font-body); font-variant-numeric: tabular-nums; }
.contact-info .ctas {
  margin-top: 28px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.map-frame {
  position: relative;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 540px;
}
.map-svg { width: 100%; height: 100%; display: block; }
.map-pin {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -100%);
  display: flex; flex-direction: column; align-items: center;
}
.map-pin .head {
  width: 56px; height: 56px;
  border-radius: 999px;
  background: var(--color-accent);
  display: grid; place-items: center;
  color: #fff;
  border: 3px solid var(--color-bg);
  box-shadow: 0 10px 30px rgba(225,29,46,0.5);
  position: relative;
}
.map-pin .head::after {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 999px;
  border: 2px solid var(--color-accent);
  opacity: 0.4;
  animation: pulse 2.4s ease-out infinite;
}
.map-pin .label {
  margin-top: 12px;
  padding: 6px 12px;
  background: rgba(8,9,11,0.85);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
@keyframes pulse {
  0% { transform: scale(1); opacity: 0.5; }
  100% { transform: scale(2); opacity: 0; }
}

/* ===== Footer ===== */
.site-footer {
  background: #06070A;
  border-top: 1px solid var(--color-border);
  padding: 80px 24px 32px;
}
.footer-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
}
@media (max-width: 880px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 16px;
  letter-spacing: 0.12em;
  color: var(--color-text);
  margin-bottom: 18px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.footer-col a {
  color: var(--color-muted);
  font-size: 14px;
  transition: color .2s;
}
.footer-col a:hover { color: var(--color-text); }
.footer-col p { font-size: 14px; color: var(--color-muted); margin: 16px 0 0; }
.footer-bottom {
  max-width: var(--max-w);
  margin: 48px auto 0;
  padding-top: 24px;
  border-top: 1px solid var(--color-border);
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--color-muted);
  letter-spacing: 0.04em;
}

/* ===== Mobile sticky CTA ===== */
.mobile-bottom-cta {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 50;
  padding: 12px;
  background: rgba(8, 9, 11, 0.92);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--color-border);
  gap: 10px;
}
.mobile-bottom-cta .btn { flex: 1; justify-content: center; }
@media (max-width: 720px) {
  .mobile-bottom-cta { display: flex; }
  .site-footer { padding-bottom: 100px; }
}

/* ===== Sub-page hero (smaller) ===== */
.page-hero {
  padding: 200px 24px 80px;
  background:
    radial-gradient(600px 400px at 10% 30%, rgba(225,29,46,0.10), transparent 60%),
    var(--color-bg);
  border-bottom: 1px solid var(--color-border);
}
.page-hero .inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.crumbs {
  display: flex;
  gap: 10px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-muted);
  margin-bottom: 18px;
}
.crumbs a { color: var(--color-muted); }
.crumbs a:hover { color: var(--color-accent); }
.crumbs span { color: var(--color-accent); }

.muted { color: var(--color-muted); }
.center { text-align: center; }

/* ── KONTAKTFORMULAR ─────────────────────────────────────────────────────── */
.cform-section {
  padding: var(--pad-section);
  background: linear-gradient(180deg, #06070A 0%, #08090B 100%);
  border-top: 1px solid var(--color-border);
}

.cfgrid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 56px;
  align-items: start;
}
@media (max-width: 860px) {
  .cfgrid { grid-template-columns: minmax(0, 1fr); gap: 40px; }
}
.cfgrid > * { min-width: 0; }

/* Aside */
.cf-aside { padding-top: 8px; }
.cf-intro {
  font-size: 14px;
  color: var(--color-muted);
  margin: 0 0 20px;
  line-height: 1.5;
}

.cf-quick {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.qbtn {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  text-decoration: none;
  color: var(--color-text);
  transition: border-color .2s, background .2s;
}
.qbtn:hover { border-color: var(--color-accent); background: #14181F; }

.qbtn-icon {
  flex-shrink: 0;
  width: 44px; height: 44px;
  border-radius: 12px;
  display: grid; place-items: center;
  background: #1C2029;
  border: 1px solid var(--color-border);
}
.qbtn--phone .qbtn-icon  { color: #4ADE80; }
.qbtn--whatsapp .qbtn-icon { color: #25D366; background: #0d1f14; border-color: #1a3a24; }

.qbtn-text strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--color-text);
}
.qbtn-text small {
  display: block;
  font-size: 12px;
  color: var(--color-muted);
  margin-top: 2px;
}

.cf-openinfo {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: 14px;
  padding: 16px 20px;
}
.cf-row {
  display: flex;
  justify-content: space-between;
  padding: 7px 0;
  font-size: 13px;
  border-bottom: 1px solid var(--color-border);
}
.cf-row:last-child { border-bottom: none; padding-bottom: 0; }
.cf-row span:first-child { color: var(--color-muted); }
.cf-row span:last-child  { color: var(--color-text); font-weight: 500; }

/* Form wrap */
.cf-wrap {
  position: relative;
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  padding: 36px;
}
@media (max-width: 540px) {
  .cf-wrap { padding: 24px 20px; }
}

/* Success overlay */
.cf-success {
  position: absolute;
  inset: 0;
  background: rgba(8, 9, 11, .92);
  border-radius: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  backdrop-filter: blur(4px);
}
.cf-success[hidden] { display: none; }

.cf-success-inner {
  text-align: center;
  padding: 32px;
}
.cf-success-icon {
  display: inline-grid;
  place-items: center;
  width: 64px; height: 64px;
  border-radius: 50%;
  background: rgba(225, 29, 46, .12);
  border: 1px solid rgba(225, 29, 46, .3);
  color: var(--color-accent);
  margin-bottom: 20px;
}
.cf-success-inner strong {
  display: block;
  font-size: 20px;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 8px;
}
.cf-success-inner p {
  font-size: 14px;
  color: var(--color-muted);
  margin: 0;
}

/* Form internals */
.cf { display: flex; flex-direction: column; gap: 18px; }

/* Honeypot */
.cf-hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.cf-row2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 480px) {
  .cf-row2 { grid-template-columns: 1fr; }
}

.req { color: var(--color-accent); font-weight: 600; }
.opt { color: var(--color-muted); font-size: 12px; font-weight: 400; }

.cf-error {
  padding: 12px 16px;
  background: rgba(225, 29, 46, .08);
  border: 1px solid rgba(225, 29, 46, .3);
  border-radius: 10px;
  font-size: 13px;
  color: #FF6B7A;
  line-height: 1.5;
}
.cf-error[hidden] { display: none; }

/* ── TOPBAR ──────────────────────────────────────────────────────────────── */
.topbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 70;
  height: 36px;
  background: #0A0B0E;
  border-bottom: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  transition: transform .3s ease;
}
.topbar.topbar-hidden { transform: translateY(-100%); }

.topbar-inner {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.topbar-slogan {
  font-size: 12px;
  color: var(--color-muted);
  letter-spacing: .02em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Header shifts down by topbar height when visible */
.site-header { top: 36px; }
.site-header.topbar-gone { top: 0; }

/* Hero accounts for topbar */
.hero { padding-top: 196px; }

@media (max-width: 600px) {
  .topbar-slogan { display: none; }
  .topbar { justify-content: flex-end; }
}

/* ── NAV CONTACT ICONS (Pill) ────────────────────────────────────────────── */
.site-header .inner {
  grid-template-columns: auto 1fr auto auto;
  gap: 16px;
}
.nav-contact-icons {
  display: flex;
  align-items: center;
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-pill);
  padding: 4px 6px;
  gap: 2px;
}
.nci {
  display: inline-grid;
  place-items: center;
  width: 32px; height: 32px;
  border-radius: 50%;
  color: var(--color-muted);
  transition: color .2s, background .2s;
}
.nci:hover       { background: rgba(255,255,255,.06); color: var(--color-text); }
.nci-phone:hover { color: var(--color-accent); }
.nci-mail:hover  { color: var(--color-accent); }
.nci-wa          { color: #25D366; }
.nci-wa:hover    { background: rgba(37,211,102,.1); color: #25D366; }
.nci-fb:hover    { color: #1877F2; }

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.btn-kontakt-cta { padding: 10px 20px; font-size: 13px; }

/* Mobile header: [brand] [pill] [burger] */
@media (max-width: 980px) {
  .site-header .inner {
    grid-template-columns: auto 1fr auto;
  }
  .nav { display: none; }
  .nav-contact-icons {
    /* stays visible — between brand and actions */
    padding: 3px 4px;
    gap: 0;
  }
  .nci { width: 36px; height: 36px; }
  .btn-kontakt-cta { display: none; }
}

/* ── MOBILE BRAND: brand .name hidden, eyebrow shows it ─────────────────── */
.eyebrow-brand-mobile { display: none; }
@media (max-width: 980px) {
  .brand .name           { display: none; }
  .eyebrow-brand-mobile  { display: inline; }
}

/* ── SWIPE CAROUSELS (mobile) ────────────────────────────────────────────── */
@media (max-width: 860px) {
  .swipe-rail {
    display: flex !important;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 16px !important;
    padding-bottom: 8px;
    scrollbar-width: none;
    grid-template-columns: unset !important;
  }
  .swipe-rail::-webkit-scrollbar { display: none; }

  .svc-grid.swipe-rail .svc-card,
  .season-grid.swipe-rail .season-card {
    min-width: 78vw;
    max-width: 300px;
    scroll-snap-align: start;
    flex-shrink: 0;
  }

  .reviews-rail.swipe-rail .review-card {
    min-width: 82vw;
    max-width: 320px;
    scroll-snap-align: start;
    flex-shrink: 0;
  }
}

/* ── SWIPE CUE ───────────────────────────────────────────────────────────── */
.swipe-cue {
  display: none;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--color-muted);
  margin: 8px 0 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
}
@media (max-width: 860px) {
  .swipe-cue { display: flex; }
}
.swipe-cue--show {
  opacity: 1;
  animation: swipe-pulse 2.6s ease forwards;
}
@keyframes swipe-pulse {
  0%   { opacity: 0;    transform: translateX(0); }
  15%  { opacity: 1;    transform: translateX(0); }
  40%  { opacity: 1;    transform: translateX(6px); }
  60%  { opacity: 1;    transform: translateX(0); }
  80%  { opacity: 1;    transform: translateX(4px); }
  100% { opacity: 0;    transform: translateX(0); }
}

/* ── GOOGLE REVIEWS ──────────────────────────────────────────────────────── */
.reviews-section {
  padding: var(--pad-section);
  background: #06070A;
  border-top: 1px solid var(--color-border);
  overflow-x: clip;
}

.reviews-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 40px;
}
.reviews-score {
  display: flex;
  align-items: center;
  gap: 14px;
}
.rs-num {
  font-family: var(--font-heading);
  font-size: 52px;
  color: var(--color-text);
  line-height: 1;
}
.rs-stars {
  display: flex;
  gap: 3px;
}
.rs-stars svg {
  width: 20px; height: 20px;
  color: #F59E0B;
}
.rs-count {
  font-size: 13px;
  color: var(--color-muted);
  align-self: flex-end;
  padding-bottom: 4px;
}

.reviews-rail {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 1000px) {
  .reviews-rail { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .reviews-rail { grid-template-columns: 1fr; }
}

.review-card {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.rc-stars {
  font-size: 18px;
  color: #F59E0B;
  letter-spacing: 2px;
}
.review-card blockquote {
  margin: 0;
  font-size: 14px;
  line-height: 1.65;
  color: #C8CDD8;
  font-style: italic;
  flex: 1;
}
.review-card footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0;
}
.rc-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-text);
}
.rc-via {
  font-size: 11px;
  color: var(--color-muted);
  background: rgba(255,255,255,.04);
  border: 1px solid var(--color-border);
  border-radius: 999px;
  padding: 2px 10px;
}

/* menu-btn cleanup: was part of header-cta, now in header-actions */
.menu-btn {
  display: none;
  place-items: center;
  width: 44px; height: 44px;
  border-radius: 12px;
  border: 1px solid var(--color-border);
  background: rgba(23, 26, 33, 0.6);
  color: var(--color-text);
  cursor: pointer;
}
@media (max-width: 980px) {
  .menu-btn { display: inline-grid; }
}

/* ── HEADER GRID / MOBILE FIXES ──────────────────────────────────────────── */
/* Pill centers itself in the 1fr gap between brand and burger */
@media (max-width: 980px) {
  .nav-contact-icons { justify-self: center; }
}
/* Mobile-sheet above topbar */
.mobile-sheet { z-index: 80; }
/* Prevent swipe-rail horizontal overflow from widening page */
.season { overflow-x: clip; }

/* ===== Owner / Ansprechpartner Section ===== */
.owner-section {
  padding: var(--pad-section);
  background: var(--color-bg-soft);
  overflow-x: clip;
}
.owner-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: center;
}
.owner-img-wrap {
  position: relative;
  border-radius: var(--radius-card);
  overflow: hidden;
  min-width: 0;
}
.owner-img-wrap img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-card);
}
.owner-text {
  min-width: 0;
}
.owner-text .eyebrow {
  margin-bottom: 12px;
}
h2.owner-name {
  font-family: var(--font-heading);
  font-size: clamp(42px, 6vw, 72px);
  font-weight: 400;
  letter-spacing: .03em;
  line-height: 1;
  margin: 0 0 8px;
  color: var(--color-text);
}
.owner-role {
  font-size: 13px;
  color: var(--color-accent);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin: 0 0 24px;
}
.owner-text p {
  font-size: 15px;
  line-height: 1.75;
  color: var(--color-muted);
  margin: 0 0 16px;
}
.owner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}
@media (max-width: 900px) {
  .owner-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 36px;
  }
}
@media (max-width: 640px) {
  .owner-section { padding: var(--pad-section-mobile); }
  h2.owner-name  { font-size: 52px; }
}

/* ── GLOBAL OVERFLOW / GRID FIX ─────────────────────────────────────────── */
/* All page sections: contain horizontal overflow */
.quick-contact,
.trust,
.owner-section,
.hu-section,
.cform-section,
.location-section,
.site-footer {
  overflow-x: clip;
}
/* Prevent 1fr grid tracks from expanding to min-content on narrow screens */
.qc-grid > *,
.trust-grid > *,
.hu-grid > *,
.contact-grid > *,
.footer-grid > *,
.hu-page-grid > * {
  min-width: 0;
}

/* ── LEISTUNGEN SUB-PAGE ─────────────────────────────────────────────────── */
.svc-detail-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(440px, 1fr));
  gap: 24px;
}
@media (max-width: 640px) {
  .svc-detail-grid { grid-template-columns: 1fr; }
}

.svc-detail-card {
  display: flex;
  gap: 24px;
  padding: 28px;
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: 16px;
  transition: border-color .2s, transform .2s;
}
.svc-detail-card:hover {
  border-color: rgba(225,29,46,.35);
  transform: translateY(-2px);
}
.sdc-icon {
  flex-shrink: 0;
  width: 52px; height: 52px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(225,29,46,.10);
  color: var(--color-accent);
}
.sdc-body h2 {
  font-size: clamp(17px, 2vw, 20px);
  font-weight: 700;
  margin: 0 0 10px;
  color: var(--color-text);
}
.sdc-body p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--color-muted);
  margin: 0 0 14px;
}
.sdc-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.sdc-list li {
  font-size: 13px;
  color: var(--color-muted);
  padding-left: 18px;
  position: relative;
}
.sdc-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--color-accent);
  font-weight: 700;
  font-size: 12px;
}

/* ── FAQ ─────────────────────────────────────────────────────────────────── */
.faq-list { display: flex; flex-direction: column; gap: 8px; }

.faq-item {
  border: 1px solid var(--color-border);
  border-radius: 12px;
  background: var(--color-card);
  overflow: hidden;
  transition: border-color .2s;
}
.faq-item[open] { border-color: rgba(225,29,46,.30); }

.faq-item summary {
  padding: 18px 24px;
  font-size: 15px;
  font-weight: 600;
  color: var(--color-text);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-size: 20px;
  font-weight: 300;
  color: var(--color-accent);
  flex-shrink: 0;
  transition: transform .2s;
}
.faq-item[open] summary::after { transform: rotate(45deg); }

.faq-item p {
  padding: 0 24px 18px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--color-muted);
  margin: 0;
}

/* ── HU-ERINNERUNG SUB-PAGE ──────────────────────────────────────────────── */
.hu-page-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 56px;
  align-items: start;
  max-width: var(--max-w);
  margin: 0 auto;
}
@media (max-width: 860px) {
  .hu-page-grid { grid-template-columns: 1fr; gap: 40px; }
}
.hu-success {
  display: none;
  padding: 40px 32px;
  background: rgba(34,197,94,.08);
  border: 1px solid rgba(34,197,94,.25);
  border-radius: 16px;
  text-align: center;
}
.hu-success.visible { display: block; }
.hu-success h3 { color: #22C55E; margin: 0 0 12px; font-size: 22px; }
.hu-success p { color: var(--color-muted); font-size: 14px; margin: 0; }
