/* =================================================================
   GLANZWERK MANUFAKTUR · Stylesheet
   Premium Fahrzeugaufbereitung · Bornheim & Waltrop
================================================================= */

/* =================================================================
   LOCAL FONTS
================================================================= */
@font-face {
  font-family: 'Bebas Neue';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('Fonts/bebas-neue-v16-latin-regular.woff2') format('woff2');
}

@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('Fonts/cormorant-garamond-v21-latin-regular.woff2') format('woff2');
}

@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('Fonts/cormorant-garamond-v21-latin-500.woff2') format('woff2');
}

@font-face {
  font-family: 'Cormorant Garamond';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url('Fonts/cormorant-garamond-v21-latin-italic.woff2') format('woff2');
}

@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url('Fonts/dm-sans-v17-latin-300.woff2') format('woff2');
}

@font-face {
  font-family: 'DM Sans';
  font-style: italic;
  font-weight: 300;
  font-display: swap;
  src: url('Fonts/dm-sans-v17-latin-300italic.woff2') format('woff2');
}

@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('Fonts/dm-sans-v17-latin-regular.woff2') format('woff2');
}

@font-face {
  font-family: 'DM Sans';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url('Fonts/dm-sans-v17-latin-italic.woff2') format('woff2');
}

@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('Fonts/dm-sans-v17-latin-500.woff2') format('woff2');
}

@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('Fonts/dm-sans-v17-latin-600.woff2') format('woff2');
}

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

:root {
  /* Palette */
  --bg:        #0c1118;
  --bg-2:      #141b25;
  --panel:     #1a2230;
  --line:      rgba(58, 122, 191, 0.18);
  --line-soft: rgba(240, 238, 233, 0.08);
  --blue:      #2b5f8e;
  --blue-2:    #3a7abf;
  --blue-3:    #6aa8de;
  --gold:      #c9a86c;
  --white:     #f0eee9;
  --muted:     #f2f2f2;
  --muted-2:   #eaeaea90;

  /* Type */
  --display: 'Bebas Neue', sans-serif;
  --serif:   'Cormorant Garamond', serif;
  --body:    'DM Sans', sans-serif;

  /* Layout */
  --max:     1440px;
  --pad-x:   clamp(20px, 5vw, 64px);
  --pad-y:   clamp(28px, 4.5vw, 56px);

  /* Header heights */
  --topbar-h:  34px;
  --header-h:  78px;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--white);
  font-family: var(--body);
  font-weight: 300;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--display);
  color: var(--white);
  line-height: 1.05;
  letter-spacing: 1px;
  margin: 0 0 1rem;
}
h1 { font-size: 88px; }
h2 { font-size: 60px; }
h3 { font-size: 40px; }
h4 { font-size: 18px; }
h5 { font-size: 16px; }
h6 { font-size: 14px; }

/* Subtle film-grain noise across the whole page */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.035;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='1'/></svg>");
}

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
}

/* =================================================================
   TOP BAR  ·  Standorte
================================================================= */
.topbar {
  width: 100%;
  background: #070a0e;
  border-bottom: 1px solid var(--line-soft);
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted);
  position: relative;
  z-index: 60;
}
.topbar-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 9px var(--pad-x);
}
.topbar-static {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
}
.topbar-locations { display: flex; gap: 28px; flex-wrap: wrap; }
.topbar-loc { display: inline-flex; align-items: center; gap: 7px; }
.topbar-loc::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue-2);
  box-shadow: 0 0 0 2px rgba(58, 122, 191, 0.18);
}
.topbar-loc strong { color: var(--white); font-weight: 500; letter-spacing: 1.5px; }
.topbar-meta { display: flex; gap: 22px; align-items: center; }
.topbar-meta a:hover { color: var(--blue-3); }
.topbar-ticker { display: none; }
.topbar-ticker-viewport {
  overflow: hidden;
  width: 100%;
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.topbar-ticker-track {
  display: flex;
  width: max-content;
  animation: topbar-marquee 42s linear infinite;
}
.topbar-ticker-group {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding-right: 18px;
  white-space: nowrap;
  flex-shrink: 0;
}
.topbar-ticker-item strong { color: var(--white); font-weight: 500; letter-spacing: 1.5px; }
.topbar-ticker-sep { color: var(--muted-2); opacity: 0.65; }
.topbar-ticker-link:hover { color: var(--blue-3); }

@keyframes topbar-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .topbar-ticker-track { animation: none; }
  .topbar-ticker-viewport { overflow-x: auto; scrollbar-width: none; mask-image: none; }
  .topbar-ticker-viewport::-webkit-scrollbar { display: none; }
}

/* =================================================================
   HEADER  ·  Smart sticky / scroll-reveal
================================================================= */
.site-header {
  position: sticky;
  top: 0;
  width: 100%;
  background: rgba(12, 17, 24, 0.85);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid var(--line);
  z-index: 50;
  transition: transform 380ms cubic-bezier(0.22, 0.61, 0.36, 1);
}
.site-header.is-hidden { transform: translateY(-100%); }
.site-header.is-scrolled { background: rgba(8, 11, 16, 0.95); }

.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 16px var(--pad-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: var(--header-h);
}

.brand { display: flex; align-items: center; gap: 14px; }
.brand-mark {
  width: 44px; height: 44px;
  background: var(--panel);
  display: grid; place-items: center;
  border: 1px solid var(--line);
}
.brand-logo {
  display: block;
  max-height: 56px;
  width: auto;
}
.footer-logo {
  display: block;
  max-height: 260px;
  max-width: 100%;
  width: auto;
  margin-bottom: 0.75rem;
}
.brand-name {
  font-family: var(--display);
  font-size: 20px;
  letter-spacing: 2.5px;
  color: var(--white);
  line-height: 1;
  display: block;
}
.brand-sub {
  font-size: 9.5px;
  letter-spacing: 3px;
  color: var(--gold);
  text-transform: uppercase;
  margin-top: 4px;
  display: block;
}

.nav-primary { display: flex; align-items: center; gap: 34px; }
.nav-primary a {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.25s ease;
  position: relative;
  padding: 6px 0;
}
.nav-primary a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1px;
  background: var(--blue-2);
  transition: width 0.3s ease;
}
.nav-primary a:hover { color: var(--white); }
.nav-primary a:hover::after { width: 100%; }
/* Active page indicator */
.nav-primary a.is-active { color: var(--white); }
.nav-primary a.is-active::after { width: 100%; background: var(--gold); }

.header-cta {
  font-size: 11.5px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  border: 1px solid var(--blue-2);
  padding: 11px 22px;
  background: transparent;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease;
  font-family: var(--body);
  font-weight: 500;
}
.header-cta:hover { background: var(--blue-2); }

/* Burger button (mobile) */
.burger {
  display: none;
  width: 44px; height: 44px;
  background: transparent;
  border: 1px solid var(--line);
  cursor: pointer;
  position: relative;
}
.burger span {
  position: absolute;
  left: 12px; right: 12px;
  height: 1px;
  background: var(--white);
  transition: transform 0.3s ease, top 0.3s ease, opacity 0.2s ease;
}
.burger span:nth-child(1) { top: 16px; }
.burger span:nth-child(2) { top: 21px; }
.burger span:nth-child(3) { top: 26px; }
.burger.is-open span:nth-child(1) { top: 21px; transform: rotate(45deg); }
.burger.is-open span:nth-child(2) { opacity: 0; }
.burger.is-open span:nth-child(3) { top: 21px; transform: rotate(-45deg); }

/* Mobile drawer */
.mobile-nav {
  position: fixed;
  inset: 0;
  background: rgba(8, 11, 16, 0.98);
  backdrop-filter: blur(20px);
  z-index: 100;
  transform: translateY(-100%);
  transition: transform 0.45s cubic-bezier(0.22, 0.61, 0.36, 1);
  display: flex;
  flex-direction: column;
  padding: 100px var(--pad-x) 40px;
  overflow-y: auto;
}
.mobile-nav .mobile-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--white);
  font-size: 28px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.mobile-nav .mobile-close:hover {
  color: var(--gold);
}
.mobile-nav.is-open { transform: translateY(0); }
.mobile-nav a {
  font-family: var(--display);
  font-size: 32px;
  letter-spacing: 3px;
  color: var(--white);
  padding: 18px 0;
  border-bottom: 1px solid var(--line-soft);
  display: block;
}
.mobile-nav a.is-active { color: var(--gold); }
.mobile-nav .mn-cta {
  margin-top: 32px;
  font-family: var(--body);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: var(--blue);
  color: var(--white);
  text-align: center;
  padding: 16px;
  border: none;
}
.mobile-nav .mn-foot {
  margin-top: auto;
  padding-top: 32px;
  font-size: 14px;
  letter-spacing: 2px;
  color: var(--muted);
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* =================================================================
   HERO (Homepage)
================================================================= */
.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  height: auto;
  min-height: 0;
  overflow: visible;
  background: var(--bg);
}
.hero-banner {
  position: relative;
  display: flex;
  align-items: flex-end;
  width: 100%;
  height: 760px;
  min-height: 760px;
  overflow: hidden;
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.hero-img { 
  width: 100%; 
  height: 100%;
  max-width: none;
  display: block; 
  object-fit: cover; 
  object-position: center right;
}  

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    rgba(8, 11, 16, 0.95) 0%,
    rgba(8, 11, 16, 0.88) 30%,
    rgba(8, 11, 16, 0.55) 55%,
    rgba(8, 11, 16, 0.10) 80%,
    rgba(8, 11, 16, 0.00) 100%
  );
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad-x) var(--pad-x);
  display: block;
  pointer-events: none;
}
.hero-inner a,
.hero-inner button {
  pointer-events: auto;
}
.hero-content {
  max-width: 720px;
}

.hero-eyebrow {
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--blue-3);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.hero-eyebrow::before {
  content: '';
  width: 36px; height: 1px;
  background: var(--blue-3);
}

.hero-title {
  font-family: var(--display);
  font-size: clamp(54px, 8.5vw, 108px);
  line-height: 0.92;
  letter-spacing: 1px;
  color: var(--white);
  margin-bottom: 0;
  font-weight: 400;
}
.hero-title em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  color: var(--blue-3);
  letter-spacing: 0;
}
.hero-desc {
  max-width: 460px;
  margin-top: 24px;
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.75;
  color: var(--muted);
  font-weight: 300;
  letter-spacing: normal;
}
.hero-actions {
  display: flex;
  flex-wrap: nowrap;
  align-items: stretch;
  gap: 14px;
  margin-top: 42px;
}
.hero-actions .btn {
  flex: 0 1 auto;
  white-space: nowrap;
  justify-content: center;
  text-align: center;
}

.btn {
  font-family: var(--body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 15px 28px;
  cursor: pointer;
  transition: all 0.25s ease;
  border: 1px solid transparent;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.btn-primary { background: var(--blue); color: var(--white); }
.btn-primary:hover { background: var(--blue-2); transform: translateY(-1px); }
.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(240, 238, 233, 0.25);
}
.btn-ghost:hover { border-color: var(--white); }

.hero-stats {
  display: flex;
  flex-wrap: nowrap;
  align-items: stretch;
  justify-content: center;
  gap: 0;
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 40px var(--pad-x) 12px;
  box-sizing: border-box;
  container-type: inline-size;
  container-name: hero-stats;
}
.hero-stats > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 0 1 auto;
  min-width: 0;
  padding: 0 clamp(36px, 5.5vw, 72px);
}
.hero-stats > div + div {
  border-left: 1px solid var(--line-soft);
}
.hero-stats .hstat-num {
  justify-content: center;
}
.hstat-num {
  display: flex;
  align-items: flex-end;
  gap: 0.35rem;
  min-height: 1em;
  font-family: var(--display);
  font-size: 38px;
  color: var(--white);
  line-height: 1;
}
.hstat-num span:not(.hstat-star):not(.hstat-x):not(.sr-only) { color: var(--blue-3); display: inline-flex; align-items: center; }
.hstat-x {
  display: inline-flex;
  align-items: flex-end;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.15em;
  line-height: 0.75;
  color: var(--blue-3);
}
.hstat-star {
  display: inline-flex;
  align-items: flex-end;
  justify-content: center;
  flex-shrink: 0;
  width: 0.82em;
  height: 0.82em;
}
.hstat-star svg {
  display: block;
  width: 1em;
  height: 1em;
  fill: var(--gold);
  filter: drop-shadow(0 0 6px rgba(201, 168, 108, 0.35));
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.hstat-lbl {
  font-size: 10.5px;
  letter-spacing: 2px;
  color: var(--muted);
  text-transform: uppercase;
  margin-top: 8px;
}

/* AI content disclosure (EU AI Act Art. 50) */
.media-ai-label {
  position: absolute;
  left: var(--pad-x);
  top: var(--pad-x);
  bottom: auto;
  z-index: 6;
  margin: 0;
  padding: 6px 10px;
  font-family: var(--body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.4px;
  line-height: 1.2;
  text-transform: uppercase;
  color: var(--white);
  background: rgba(8, 11, 16, 0.72);
  border: 1px solid rgba(240, 238, 233, 0.18);
  pointer-events: none;
}
.hero-media .media-ai-label,
.page-hero .media-ai-label {
  left: var(--pad-x);
  top: var(--pad-x);
  bottom: auto;
  z-index: 6;
}
.hero-video-toggle {
  position: absolute;
  right: var(--pad-x);
  bottom: var(--pad-x);
  top: auto;
  z-index: 8;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1.5px solid rgba(240, 238, 233, 0.85);
  border-radius: 50%;
  background: rgba(240, 238, 233, 0.14);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--white);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  pointer-events: auto;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}
.hero-video-toggle:hover {
  background: rgba(240, 238, 233, 0.28);
  border-color: var(--white);
  transform: scale(1.06);
}
.hero-video-toggle:focus-visible {
  outline: 2px solid var(--blue-3);
  outline-offset: 3px;
}
.hero-video-toggle-icon {
  display: none;
  width: 14px;
  height: 14px;
  position: relative;
}
.hero-video-toggle.is-playing .hero-video-toggle-icon--pause,
.hero-video-toggle:not(.is-playing) .hero-video-toggle-icon--play {
  display: block;
}
.hero-video-toggle-icon--pause::before,
.hero-video-toggle-icon--pause::after {
  content: '';
  position: absolute;
  top: 1px;
  width: 3px;
  height: 12px;
  border-radius: 1px;
  background: currentColor;
}
.hero-video-toggle-icon--pause::before { left: 3px; }
.hero-video-toggle-icon--pause::after { right: 3px; }
.hero-video-toggle-icon--play {
  width: 0;
  height: 0;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 12px solid currentColor;
  margin-left: 2px;
}

/* =================================================================
   PAGE HERO (Subpages)
================================================================= */
.page-hero {
  position: relative;
  display: flex;
  align-items: flex-end;
  width: 100%;
  height: 760px;
  min-height: 760px;
  max-height: none;
  padding: 0 0 var(--pad-x);
  background: var(--bg);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.page-hero .hero-bg,
.page-hero .hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.page-hero .hero-bg {
  z-index: 0;
}
.page-hero .hero-bg picture {
  display: block;
  width: 100%;
  height: 100%;
}
.page-hero .hero-overlay {
  inset: auto 0 0 0;
  width: 100%;
  height: 35%;
  z-index: 1;
  background: linear-gradient(
    to top,
    rgba(8, 11, 16, 0.88) 0%,
    rgba(8, 11, 16, 0.45) 45%,
    rgba(8, 11, 16, 0.12) 75%,
    transparent 100%
  );
}
.page-hero .hero-img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center right;
  display: block;
}
.page-hero .container {
  position: relative;
  z-index: 2;
  width: 100%;
}
.page-hero-title {
  font-family: var(--display);
  font-size: clamp(40px, 6.5vw, 88px);
  line-height: 1;
  letter-spacing: 1px;
  color: var(--white);
  position: relative;
  max-width: none;
  margin: 0;
}
.page-hero-title em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  color: var(--blue-3);
  letter-spacing: 0;
}
.page-hero-sub {
  position: relative;
  font-size: 16px;
  line-height: 1.75;
  color: var(--muted);
  max-width: 600px;
  margin-top: 20px;
}

/* =================================================================
   SECTION SHELL
================================================================= */
section { position: relative; }
.section { padding: var(--pad-y) 0; }
.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
  grid-template-rows: auto auto;
  column-gap: clamp(32px, 5vw, 64px);
  row-gap: 14px;
  align-items: start;
  margin-bottom: 48px;
}
.section-head > div:first-child {
  display: contents;
}
.section-label {
  grid-column: 1;
  grid-row: 1;
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--blue-3);
  margin-bottom: 0;
  display: flex;
  align-items: center;
  gap: 14px;
}
.section-label::before {
  content: '';
  width: 28px; height: 1px;
  background: var(--blue-3);
}
.section-title {
  grid-column: 1;
  grid-row: 2;
  font-family: var(--display);
  font-size: clamp(38px, 5vw, 64px);
  line-height: 0.96;
  letter-spacing: 1px;
  color: var(--white);
}
.section-title em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  color: var(--blue-3);
  letter-spacing: 0;
}
.section-intro {
  grid-column: 2;
  grid-row: 2;
  align-self: start;
  font-size: 15px;
  line-height: 1.75;
  color: var(--muted);
  font-weight: 300;
  max-width: 42ch;
  margin: 0;
}

/* =================================================================
   LEISTUNGEN & PREISE
================================================================= */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.service {
  background: var(--bg);
  padding: 38px 32px 32px;
  position: relative;
  transition: background 0.3s ease;
}
.service:hover { background: var(--bg-2); }
.service-title {
  font-family: var(--display);
  font-size: 22px;
  letter-spacing: 2px;
  color: var(--white);
  margin-bottom: 14px;
}
.service-desc {
  font-size: 13.5px;
  line-height: 1.75;
  color: var(--muted);
  margin-bottom: 24px;
}
.service-price {
  font-family: var(--body);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1.5;
  color: var(--white);
  padding-top: 18px;
  border-top: 1px solid var(--line-soft);
}

/* Bg variant for subpage */
.section--bg2 { background: var(--bg-2); }
.services-grid--on-bg2 .service { background: var(--bg-2); }
.services-grid--on-bg2 .service:hover { background: var(--bg); }

.logo-block {
  margin-top: 48px;
}
.logo-block h3 {
  font-family: var(--display);
  font-size: 22px;
  letter-spacing: 1px;
  color: var(--white);
  margin-bottom: 24px;
}
.logo-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}
.logo-grid--partners {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.logo-card {
  height: 148px;
  min-height: 148px;
  box-sizing: border-box;
  background: rgba(26, 26, 36, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 25px;
  overflow: hidden;
  color: var(--white);
  font-size: 15px;
  line-height: 1.4;
  text-decoration: none;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}
a.logo-card {
  cursor: pointer;
}
a.logo-card:focus-visible {
  outline: 2px solid var(--blue-3);
  outline-offset: 3px;
}
.logo-card img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
}
.logo-card--shrink img {
  transform: scale(0.78);
}
.logo-card:hover {
  transform: translateY(-4px);
  border-color: rgba(108, 170, 255, 0.35);
  background: rgba(34, 34, 46, 0.95);
}
.logo-card--porsche .logo-card-brand,
.logo-card--hakvoort .logo-card-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  width: 100%;
  max-width: 100%;
  height: 100%;
}
.logo-card--porsche .logo-card-mark {
  flex: 0 0 70px;
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo-card--hakvoort .logo-card-mark {
  flex: 0 0 78px;
  width: 78px;
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo-card--porsche .logo-card-mark img,
.logo-card--hakvoort .logo-card-mark img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
}
.logo-card--porsche .logo-card-mark img {
  transform: scale(1.06);
}
.logo-card--hakvoort .logo-card-mark img {
  transform: scale(1.08);
}
.logo-card-caption {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 7px;
  min-width: 0;
  text-align: left;
}
.logo-card-caption-top {
  font-family: var(--display);
  font-size: 17px;
  font-weight: 400;
  letter-spacing: 2px;
  line-height: 1;
  text-transform: uppercase;
  color: var(--white);
}
.logo-card-caption-line {
  display: block;
  width: 100%;
  max-width: 108px;
  height: 1px;
  background: rgba(240, 238, 233, 0.38);
}
.logo-card-caption-bottom {
  font-family: var(--display);
  font-size: 17px;
  letter-spacing: 2px;
  line-height: 1;
  text-transform: uppercase;
  color: var(--white);
}

.location-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr);
  gap: 32px;
  align-items: start;
}
.location-map {
  min-height: 520px;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(12, 17, 24, 0.72) 0%, rgba(12, 17, 24, 0.88) 100%),
    url("Images/8E70DC02-5D40-4EC3-BCDD-F2F920E941B1_1_105_c.jpeg") center / cover no-repeat;
  display: block;
  position: relative;
}
.maps-consent {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 28px 24px;
  text-align: center;
  background: rgba(12, 17, 24, 0.42);
}
.maps-consent[hidden] {
  display: none;
}
.maps-consent p {
  margin: 0;
  max-width: 360px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--muted);
}
.maps-consent a {
  color: var(--blue-3);
  border-bottom: 1px solid rgba(106, 168, 222, 0.35);
}
.maps-consent-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  background: var(--blue);
  border: none;
  padding: 14px 22px;
  cursor: pointer;
  transition: background 0.25s ease;
}
.maps-consent-btn:hover {
  background: var(--blue-2);
}
.maps-consent-btn:focus-visible {
  outline: 2px solid var(--blue-3);
  outline-offset: 3px;
}
.maps-consent-ext {
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted) !important;
  border-bottom-color: transparent !important;
}
.maps-consent-ext:hover {
  color: var(--white) !important;
}
.location-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  min-height: 520px;
}
.location-copy {
  padding: 0;
  background: transparent;
  border-radius: 0;
  border: none;
  color: var(--white);
  font-size: 15px;
  line-height: 1.8;
  display: grid;
  gap: 24px;
  min-height: 520px;
}
.location-copy-text {
  display: flex;
  align-items: flex-start;
}
.location-copy p {
  max-width: 560px;
  color: var(--muted);
  margin: 0;
}
.location-copy-image {
  display: grid;
  gap: 16px;
  align-items: start;
}
.location-copy-image img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.location-copy-image h3 {
  color: var(--blue);
  font-family: var(--display);
  font-size: clamp(22px, 2vw, 26px);
  margin: 0;
  letter-spacing: 0.5px;
  position: relative;
  padding-bottom: 12px;
}
.location-directions {
  color: inherit;
  font: inherit;
  letter-spacing: inherit;
  text-decoration: none;
  cursor: pointer;
  transition: color 0.2s ease, opacity 0.2s ease;
}
.location-directions:hover,
.location-directions:focus-visible {
  color: var(--blue-2);
  outline: none;
}
.location-copy-image h3::after {
  content: '';
  display: block;
  width: 80px;
  height: 3px;
  background: var(--blue);
  margin-top: 12px;
  border-radius: 999px;
}
.location-visuals {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
  margin-top: 40px;
}
.location-carousel {
  display: grid;
  gap: 18px;
}
.carousel-head h3 {
  font-family: var(--display);
  font-size: 20px;
  color: var(--white);
  margin: 0;
}
.carousel-box {
  position: relative;
  overflow: hidden;
}
.carousel-box::before,
.carousel-box::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 48px;
  height: 48px;
  background: transparent;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.25s ease, background 0.25s ease, color 0.25s ease;
  pointer-events: none;
  z-index: 10;
  font-weight: bold;
  color: #ffffff;
  font-size: 32px;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.35);
}
.carousel-box::before {
  content: '‹';
  left: 12px;
  transform: translateY(-50%);
}
.carousel-box::after {
  content: '›';
  right: 12px;
  transform: translateY(-50%);
}
.carousel-box:hover::before,
.carousel-box:hover::after {
  opacity: 1;
  background: rgba(255, 255, 255, 0.55);
}
.carousel-box.carousel-box--start::before,
.carousel-box.carousel-box--start:hover::before {
  opacity: 0;
}
.carousel-box.carousel-box--end::after,
.carousel-box.carousel-box--end:hover::after {
  opacity: 0;
}
.carousel-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.carousel-track::-webkit-scrollbar {
  display: none;
}
.carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 15;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
  opacity: 0;
  pointer-events: none;
}
.carousel-nav--prev {
  left: 12px;
}
.carousel-nav--next {
  right: 12px;
}
.carousel-box:hover .carousel-nav {
  opacity: 1;
  pointer-events: auto;
}
.carousel-box.carousel-box--start .carousel-nav--prev,
.carousel-box.carousel-box--start:hover .carousel-nav--prev {
  opacity: 0;
  pointer-events: none;
}
.carousel-box.carousel-box--end .carousel-nav--next,
.carousel-box.carousel-box--end:hover .carousel-nav--next {
  opacity: 0;
  pointer-events: none;
}
.carousel-box:hover .carousel-nav:hover {
  background: rgba(255, 255, 255, 0.72);
  border-radius: 50%;
}
.carousel-card {
  flex: 0 0 100%;
  min-height: 320px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: grid;
  place-items: center;
  text-align: center;
  padding: 32px;
  color: var(--white);
  font-size: 16px;
  line-height: 1.5;
  scroll-snap-align: start;
  overflow: hidden;
  position: relative;
}
.carousel-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  border-radius: 20px;
}
.carousel-card:hover {
  background: rgba(255, 255, 255, 0.08);
}
.location-note {
  margin-top: 0;
  color: var(--muted);
}

/* Process steps — desktop looks like the original grid */
.process-carousel.carousel-box {
  overflow: visible;
  margin-top: 8px;
}
.process-carousel::before,
.process-carousel::after,
.process-carousel .carousel-nav {
  display: none !important;
}
.process-carousel .carousel-track.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  overflow: visible;
  scroll-snap-type: none;
  margin: 0;
  padding: 0;
}
.process-step {
  background: var(--bg);
  padding: 36px 28px;
  min-width: 0;
  flex: none;
  border-radius: 0;
  border: none;
  display: block;
  text-align: left;
  place-items: unset;
  color: inherit;
  font-size: inherit;
  line-height: inherit;
  scroll-snap-align: unset;
  position: static;
}
.process-step:hover {
  background: var(--bg);
}
.process-num {
  font-family: var(--display);
  font-size: 38px;
  color: var(--blue-3);
  line-height: 1;
  margin-bottom: 16px;
}
.process-title {
  font-family: var(--display);
  font-size: 18px;
  letter-spacing: 2px;
  color: var(--white);
  margin-bottom: 10px;
}
.process-desc {
  font-size: 13px;
  line-height: 1.7;
  color: var(--muted);
  margin: 0;
}

/* All services — split layout */
.all-services-layout {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 3fr);
  gap: clamp(40px, 6vw, 88px);
  align-items: start;
}
.all-services-copy {
  position: sticky;
  top: calc(var(--header-h) + 28px);
  padding-top: 4px;
}
.all-services-copy .section-label {
  margin-bottom: 14px;
}
.all-services-copy .section-title {
  margin-bottom: 18px;
}
.all-services-copy .section-intro {
  max-width: 34ch;
  margin: 0;
}

/* All services accordion */
.services-list {
  margin-top: 0;
  padding-top: 0;
  border-top: 1px solid var(--line-soft);
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: none;
  min-width: 0;
}
.services-acc {
  border-bottom: 1px solid var(--line-soft);
}
.services-acc summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0;
  font-family: var(--display);
  font-size: 20px;
  letter-spacing: 2px;
  color: var(--white);
  transition: color 0.2s ease;
}
.services-acc summary::-webkit-details-marker {
  display: none;
}
.services-acc summary::after {
  content: '+';
  flex-shrink: 0;
  font-family: var(--body);
  font-size: 22px;
  font-weight: 300;
  line-height: 1;
  color: var(--blue-3);
  transition: color 0.2s ease;
}
.services-acc[open] summary {
  color: var(--white);
}
.services-acc[open] summary::after {
  content: '\2212';
  color: var(--blue-3);
}
.services-acc summary:hover {
  color: var(--blue-3);
}
.services-acc ul {
  list-style: none;
  padding: 0 0 18px;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}
.services-acc li {
  font-size: 14px;
  color: var(--muted);
  padding: 8px 0;
  border-bottom: 1px solid var(--line-soft);
  letter-spacing: 0.3px;
}
.services-acc li:last-child {
  border-bottom: none;
}

/* =================================================================
   BEFORE / AFTER
================================================================= */
.ba-section {
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.ba-section .section-head { margin-bottom: 48px; text-align: left; }
.ba-wrap {
  position: relative;
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  user-select: none;
  cursor: ew-resize;
  overflow: hidden;
  border: 1px solid var(--line);
}
.ba-before, .ba-after { position: absolute; inset: 0; overflow: hidden; }
.ba-before-img, .ba-after-img {
  width: 100%; height: 100%;
  position: relative;
}
.ba-before-img {
  background: radial-gradient(ellipse 70% 50% at 50% 60%, #2e2818 0%, #14110a 60%, #08070d 100%);
}
.ba-after-img {
  background: radial-gradient(ellipse 80% 55% at 50% 55%, #1a3a5c 0%, #0d2035 55%, #060f1a 100%);
}
.ba-before-img::before, .ba-after-img::before {
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='120' height='120'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='1.4' numOctaves='2'/></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='0.4'/></svg>");
  opacity: 0.3;
  mix-blend-mode: overlay;
}
.ba-label-tag {
  position: absolute;
  bottom: 24px;
  font-family: var(--display);
  font-size: 14px;
  letter-spacing: 5px;
  padding: 8px 16px;
  backdrop-filter: blur(6px);
}
.ba-before .ba-label-tag {
  left: 24px;
  color: rgba(255, 255, 255, 0.6);
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.15);
}
.ba-after .ba-label-tag {
  right: 24px;
  color: var(--white);
  background: rgba(43, 95, 142, 0.7);
  border: 1px solid rgba(106, 168, 222, 0.4);
}
.car-svg {
  position: absolute;
  bottom: 18%;
  left: 50%;
  transform: translateX(-50%);
  width: 76%;
}
.ba-after { clip-path: inset(0 50% 0 0); }
.ba-divider {
  position: absolute;
  top: 0; bottom: 0;
  width: 2px;
  background: var(--white);
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  pointer-events: none;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.5);
}
.ba-handle {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--white);
  z-index: 11;
  display: grid;
  place-items: center;
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.15), 0 4px 18px rgba(0, 0, 0, 0.4);
  pointer-events: none;
}
.ba-arrows { display: flex; gap: 4px; }
.ba-arrow-l, .ba-arrow-r {
  width: 0; height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
}
.ba-arrow-l { border-right: 8px solid var(--blue); }
.ba-arrow-r { border-left: 8px solid var(--blue); }
.ba-hint {
  text-align: center;
  margin-top: 22px;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--muted);
}

/* =================================================================
   GLANZWERK x SCHAWE
================================================================= */
.schawe-bg { background: linear-gradient(180deg, var(--bg) 0%, #080c12 100%); }

.schawe-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
  gap: 64px;
  align-items: center;
}
.schawe-preview .schawe-grid {
  grid-template-columns: minmax(0, 1.65fr) minmax(0, 0.75fr);
  gap: 56px;
}
.schawe-visual {
  position: relative;
  aspect-ratio: 4 / 5;
  background: #080c12;
  border: 1px solid var(--line);
  overflow: hidden;
  isolation: isolate;
}
.schawe-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
  display: block;
  z-index: 0;
}
.schawe-visual.schawe-video-wrap::before,
.schawe-visual.schawe-video-wrap::after {
  content: none !important;
  display: none !important;
}
.schawe-video-wrap .hero-video-toggle {
  right: 16px;
  bottom: 16px;
}
.schawe-preview .schawe-visual {
  aspect-ratio: 16 / 10;
}
.schawe-visual-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transform: scale(1.06);
  z-index: 0;
}
.schawe-preview .schawe-visual-bg {
  transform: none;
  object-position: center 42%;
}
.schawe-visual::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: -4px;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    to top,
    #080c12 0%,
    rgba(8, 12, 18, 0.95) 10%,
    rgba(8, 12, 18, 0.75) 28%,
    rgba(8, 12, 18, 0.45) 48%,
    rgba(8, 12, 18, 0.18) 68%,
    rgba(8, 12, 18, 0.04) 80%,
    transparent 90%
  );
}
.schawe-preview .schawe-visual::before {
  background: linear-gradient(
    to top,
    #080c12 0%,
    rgba(8, 12, 18, 0.94) 8%,
    rgba(8, 12, 18, 0.72) 26%,
    rgba(8, 12, 18, 0.4) 48%,
    rgba(8, 12, 18, 0.14) 68%,
    rgba(8, 12, 18, 0.03) 80%,
    transparent 90%
  );
}
.schawe-x {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  place-items: center;
  font-family: var(--display);
  letter-spacing: 4px;
}
.schawe-x .x-line {
  text-align: center;
  line-height: 1;
}
.schawe-x .x-glanzwerk { font-size: clamp(40px, 7vw, 88px); color: var(--white); }
.schawe-x .x-x {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(60px, 10vw, 130px);
  color: var(--blue-3);
  margin: 12px 0;
  letter-spacing: 0;
}
.schawe-x .x-schawe { font-size: clamp(40px, 7vw, 88px); color: var(--gold); }
.schawe-preview .schawe-x {
  inset: auto 0 0;
  top: auto;
  height: auto;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 0 clamp(16px, 3vw, 32px) clamp(18px, 2.5vw, 28px);
}
.schawe-preview .schawe-x-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 2vw, 22px);
  flex-wrap: wrap;
}
.schawe-preview .schawe-x .x-glanzwerk,
.schawe-preview .schawe-x .x-schawe {
  font-size: clamp(34px, 4.8vw, 62px);
}
.schawe-preview .schawe-x .x-x {
  font-size: clamp(40px, 5.8vw, 72px);
  margin: 0;
  line-height: 1;
}
.schawe-x-arrow {
  display: none;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  margin-left: 4px;
  color: var(--white);
  border: 1.5px solid rgba(240, 238, 233, 0.55);
  border-radius: 50%;
  transition: color 0.25s ease, border-color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}
.schawe-x-arrow svg {
  width: 18px;
  height: 18px;
  display: block;
}
.schawe-x-arrow:hover {
  color: var(--white);
  border-color: var(--white);
  background: rgba(43, 95, 142, 0.35);
  transform: translateX(3px);
}
.schawe-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(58, 122, 191, 0.12) 0%, transparent 50%, rgba(201, 168, 108, 0.1) 100%);
}
.schawe-loc-pin {
  position: absolute;
  bottom: 24px;
  left: 24px;
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--muted);
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 8px;
}
.schawe-loc-pin::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--blue-3);
  border-radius: 50%;
}

.schawe-text h2,
.schawe-text .h2-style {
  font-family: var(--display);
  font-size: clamp(36px, 4.5vw, 56px);
  line-height: 1;
  letter-spacing: 1px;
  color: var(--white);
  margin: 0 0 24px;
}
.schawe-text h2 em,
.schawe-text .h2-style em {
  font-family: var(--serif);
  font-style: italic;
  color: var(--blue-3);
  font-weight: 400;
}
.schawe-text > p:not(.hero-eyebrow),
.schawe-story-desktop p,
.schawe-story-mobile p {
  font-size: 15px;
  line-height: 1.85;
  color: var(--muted);
  max-width: 540px;
  margin-bottom: 28px;
}
.schawe-story-mobile {
  display: none;
}
.schawe-preview .hero-eyebrow {
  margin-bottom: 14px;
}
.schawe-preview .schawe-text h2 {
  margin: 0 0 28px;
}
.schawe-text .btn { margin-top: 4px; }
.schawe-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px 32px;
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--line-soft);
}
.schawe-feature h4 {
  font-family: var(--display);
  font-size: 18px;
  letter-spacing: 3px;
  color: var(--gold);
  margin-bottom: 8px;
}
.schawe-feature p {
  font-size: 13px;
  color: var(--muted);
  margin: 0;
}

/* =================================================================
   ÜBER UNS  ·  Video focus
================================================================= */
.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 64px;
  align-items: center;
}
.video-wrap {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid var(--line);
  background: #050810;
}
.video-wrap--soon {
  cursor: default;
}
.video-thumb {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(ellipse at 50% 60%, rgba(58, 122, 191, 0.4) 0%, transparent 50%),
    linear-gradient(135deg, #0a1422 0%, #1a2840 50%, #050810 100%);
}
.video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: saturate(0.85) brightness(0.72);
  transform: scale(1.02);
}
.video-thumb svg {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  opacity: 0.6;
}
.video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 11, 16, 0.1) 0%, rgba(8, 11, 16, 0.6) 100%);
  display: grid;
  place-items: center;
  transition: background 0.3s ease;
}
.video-wrap:not(.video-wrap--soon):hover .video-overlay {
  background: linear-gradient(180deg, rgba(8, 11, 16, 0.0) 0%, rgba(8, 11, 16, 0.5) 100%);
}
.video-play {
  width: 96px; height: 96px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  border: 1.5px solid var(--white);
  display: grid;
  place-items: center;
  transition: transform 0.3s ease, background 0.3s ease;
}
.video-play::before {
  content: '';
  width: 0; height: 0;
  border-top: 14px solid transparent;
  border-bottom: 14px solid transparent;
  border-left: 22px solid var(--white);
  margin-left: 6px;
}
.video-wrap:not(.video-wrap--soon):hover .video-play {
  transform: scale(1.08);
  background: rgba(58, 122, 191, 0.25);
}
.video-soon-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 24px;
  text-align: center;
  background: linear-gradient(
    180deg,
    rgba(8, 11, 16, 0.35) 0%,
    rgba(8, 11, 16, 0.62) 45%,
    rgba(8, 11, 16, 0.78) 100%
  );
}
.video-soon-badge {
  margin: 0;
  padding: 8px 16px;
  font-family: var(--display);
  font-size: 15px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--white);
  border: 1px solid rgba(240, 238, 233, 0.35);
  background: rgba(8, 11, 16, 0.45);
}
.video-soon-text {
  margin: 0;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(18px, 2.4vw, 28px);
  font-weight: 400;
  color: var(--blue-3);
  letter-spacing: 0.02em;
}
.video-caption {
  position: absolute;
  bottom: 24px;
  left: 24px;
  color: var(--white);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 10px;
}
.video-caption::before {
  content: '';
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #e63946;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50%     { opacity: 0.4; }
}
.video-wrap-large {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
}
.video-section .container {
  max-width: 1440px;
}

.about-text h2,
.about-text .h2-style {
  font-family: var(--display);
  font-size: clamp(36px, 4.5vw, 60px);
  line-height: 0.96;
  letter-spacing: 1px;
  color: var(--white);
  margin: 18px 0 28px;
}
.about-text h2 em,
.about-text .h2-style em {
  font-family: var(--serif);
  font-style: italic;
  color: var(--blue-3);
  font-weight: 400;
}
.about-text p {
  font-size: 15px;
  line-height: 1.85;
  color: var(--muted);
  margin-bottom: 18px;
}
.about-quote {
  font-family: var(--serif);
  font-style: italic;
  font-size: 19px;
  line-height: 1.5;
  color: var(--white);
  padding: 24px 0 24px 24px;
  border-left: 2px solid var(--blue-2);
  margin: 28px 0;
  max-width: 460px;
}
.about-meister {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 12px 20px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
  margin-top: 12px;
}
.about-meister-num {
  font-family: var(--display);
  font-size: 28px;
  color: var(--gold);
  line-height: 1;
}
.about-meister-text {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  line-height: 1.4;
}
.about-meister-text strong { color: var(--white); display: block; font-weight: 500; }

/* Reasons grid (Über uns subpage) */
.reasons {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.reason {
  background: var(--bg-2);
  padding: 36px 28px;
}
.reason-icon {
  width: 48px; height: 48px;
  border: 1px solid var(--blue-2);
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  color: var(--blue-3);
}
.reason h3 {
  font-family: var(--display);
  font-size: 18px;
  letter-spacing: 2px;
  color: var(--white);
  margin-bottom: 10px;
}
.reason h3 strong {
  color: var(--gold);
  font-weight: normal;
  display: block;
  font-size: 13px;
  letter-spacing: 3px;
  margin-bottom: 4px;
}
.reason p {
  font-size: 13px;
  line-height: 1.7;
  color: var(--muted);
}

/* =================================================================
   INSTAGRAM
================================================================= */
.ig-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 48px;
}
.ig-head > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}
.ig-head .section-title {
  margin-bottom: 0;
}
.ig-follow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11.5px;
  line-height: 1;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  border: 1px solid var(--line);
  padding: 13px 22px;
  transition: all 0.25s ease;
  white-space: nowrap;
}
.ig-follow-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.ig-follow:hover { border-color: var(--blue-2); background: rgba(43, 95, 142, 0.1); }

.ig-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.ig-tile {
  aspect-ratio: 1 / 1;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: var(--panel);
}
.ig-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}
.ig-tile:hover .ig-photo { transform: scale(1.05); }
.ig-tile::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(8, 11, 16, 0);
  transition: background 0.3s ease;
}
.ig-tile:hover::after { background: rgba(8, 11, 16, 0.55); }
.ig-tile-overlay {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 2;
}
.ig-tile:hover .ig-tile-overlay { opacity: 1; }
.ig-heart {
  color: var(--white);
  font-size: 13px;
  letter-spacing: 2px;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* =================================================================
   KONTAKT
================================================================= */
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.contact-info, .contact-form-wrap {
  background: var(--bg-2);
  padding: clamp(36px, 5vw, 56px);
}
.contact-info h2,
.contact-info .h2-style {
  font-family: var(--display);
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1;
  color: var(--white);
  margin: 14px 0 32px;
}
.contact-info h2 em,
.contact-info .h2-style em {
  font-family: var(--serif);
  font-style: italic;
  color: var(--blue-3);
  font-weight: 400;
}
.contact-info > p {
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 380px;
}
.contact-locations {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.contact-loc {
  padding: 20px;
  border: 1px solid var(--line-soft);
  background: rgba(255, 255, 255, 0.02);
}
.contact-loc-label {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--blue-3);
  margin-bottom: 10px;
}
.contact-loc h3 {
  font-family: var(--display);
  font-size: 22px;
  letter-spacing: 2px;
  color: var(--white);
  margin-bottom: 10px;
}
.contact-loc address {
  font-style: normal;
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.7;
}
.contact-loc address a:hover { color: var(--blue-3); }

.contact-form { display: flex; flex-direction: column; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 22px; }
.form-group label {
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--muted);
}
.form-group input,
.form-group select,
.form-group textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--line);
  padding: 11px 0;
  color: var(--white);
  font-size: 15px;
  font-family: var(--body);
  outline: none;
  width: 100%;
  transition: border-color 0.2s ease;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-bottom-color: var(--blue-2); }
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--muted-2); }
.form-group select {
  color: var(--white);
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'><path d='M1 1l5 5 5-5' stroke='%237d8a9c' fill='none' stroke-width='1.2'/></svg>");
  background-repeat: no-repeat;
  background-position: right 4px center;
  background-size: 12px;
  padding-right: 24px;
}
.form-group select option { background: var(--bg-2); color: var(--white); }
.form-group textarea {
  min-height: 110px;
  resize: vertical;
  padding-top: 11px;
  line-height: 1.6;
}
.form-consent {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin: 8px 0 24px;
  font-size: 12px;
  color: var(--muted);
  line-height: 1.6;
}
.form-consent input[type="checkbox"] {
  margin-top: 3px;
  accent-color: var(--blue-2);
  width: 14px; height: 14px;
  flex-shrink: 0;
}
.form-consent a { color: var(--blue-3); border-bottom: 1px solid var(--line); }
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  line-height: 1;
}
.btn-wa-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  display: block;
  overflow: visible;
}
.form-submit {
  align-self: flex-start;
  background: var(--blue);
  color: var(--white);
  font-family: var(--body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: none;
  padding: 16px 36px;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease;
}
.form-submit:hover { background: var(--gold); color: var(--white); }

/* FAQ */
.faq { margin-top: 48px; }
.faq-item {
  border-top: 1px solid var(--line-soft);
  padding: 24px 0;
}
.faq-item:last-child { border-bottom: 1px solid var(--line-soft); }
.faq-q {
  font-family: var(--display);
  font-size: 19px;
  letter-spacing: 2px;
  color: var(--white);
  margin-bottom: 10px;
}
.faq-a {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.75;
  max-width: 720px;
}

/* =================================================================
   STRIP CTA
================================================================= */
.strip {
  background: var(--blue);
  width: 100%;
}
.strip-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 26px var(--pad-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.strip-text {
  font-family: var(--display);
  font-size: clamp(20px, 2vw, 26px);
  letter-spacing: 2px;
  color: var(--white);
}
.strip-text em {
  font-family: var(--serif);
  font-style: italic;
  color: rgba(255, 255, 255, 0.8);
}
.strip-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  color: var(--blue);
  font-family: var(--body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: none;
  padding: 16px 36px;
  line-height: 1;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease;
}
.strip-btn:hover { background: var(--gold); color: var(--white); }

/* =================================================================
   LEGAL PAGES (Impressum, Datenschutz, AGB)
================================================================= */
.legal-page {
  padding-top: calc(var(--header-h) + var(--topbar-h) + clamp(32px, 5vw, 56px));
  padding-bottom: clamp(48px, 8vw, 96px);
}
.legal-title {
  font-family: var(--display);
  font-size: clamp(42px, 6vw, 72px);
  line-height: 0.96;
  letter-spacing: 1px;
  color: var(--white);
  margin: 0 0 clamp(36px, 5vw, 56px);
}
.legal-content {
  max-width: 720px;
}
.legal-content--columns {
  max-width: none;
}
@media (min-width: 900px) {
  .legal-content--columns {
    column-count: 2;
    column-gap: clamp(32px, 4vw, 56px);
    column-fill: balance;
  }
  .legal-content--columns h2,
  .legal-content--columns h3,
  .legal-content--columns p,
  .legal-content--columns .legal-list > li {
    break-inside: avoid;
    page-break-inside: avoid;
  }
}
.legal-content h2 {
  font-family: var(--display);
  font-size: clamp(22px, 2.5vw, 28px);
  letter-spacing: 1px;
  color: var(--white);
  margin: 36px 0 14px;
}
.legal-content h2:first-child {
  margin-top: 0;
}
.legal-content p {
  font-size: 15px;
  line-height: 1.85;
  color: var(--muted);
  margin: 0 0 8px;
}
.legal-content a {
  color: var(--blue-3);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s ease;
}
.legal-content a:hover {
  color: var(--white);
}
.legal-content h3 {
  font-family: var(--display);
  font-size: clamp(18px, 2vw, 22px);
  letter-spacing: 1px;
  color: var(--white);
  margin: 28px 0 10px;
}
.legal-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.legal-list > li {
  margin: 0;
}
.legal-list--bullets {
  margin: 12px 0 16px;
  padding-left: 1.1em;
  list-style: disc;
}
.legal-list--bullets > li {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}
.legal-placeholder {
  color: var(--gold);
  font-weight: 500;
}

/* =================================================================
   FOOTER
================================================================= */
.site-footer {
  background: #050810;
  border-top: 1px solid var(--line);
}
.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 56px var(--pad-x) 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  align-items: start;
  margin-bottom: 48px;
}
.footer-brand-text {
  font-family: var(--serif);
  font-style: italic;
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 320px;
  margin-top: 18px;
}
.footer-social {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.footer-social-link {
  width: 28px;
  height: 28px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  background: transparent;
  transition: color 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}
.footer-social-link svg {
  width: 13px;
  height: 13px;
  display: block;
}
.footer-social-link:hover {
  color: var(--white);
  border-color: var(--blue-3);
  background: rgba(43, 95, 142, 0.18);
}
.footer-social-link:focus-visible {
  outline: 2px solid var(--blue-3);
  outline-offset: 2px;
}
.footer-bottom-end {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-left: auto;
}
.footer-col h4 {
  font-family: var(--display);
  font-size: 22px;
  letter-spacing: 3px;
  color: var(--gold);
  margin-bottom: 18px;
}
.footer-group {
  border: none;
  padding: 0;
}
.footer-group summary {
  display: none;
  font-family: var(--display);
  font-size: 16px;
  letter-spacing: 3px;
  color: var(--gold);
  cursor: pointer;
  list-style: none;
  border: none;
  padding: 0;
  margin: 0 0 18px;
  justify-content: space-between;
  align-items: center;
}
.footer-group summary::-webkit-details-marker {
  display: none;
}
.footer-group summary::after {
  content: "+";
  font-size: 18px;
  line-height: 1;
  margin-left: 12px;
}
.footer-group[open] summary::after {
  content: "−";
}
@media (min-width: 1025px) {
  .footer-group {
    display: block;
  }
  .footer-group summary {
    display: none;
  }
  .footer-group h4 {
    display: block;
  }
  .footer-group ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-col a { font-size: 15px; color: var(--muted); transition: color 0.2s ease; }
.footer-col a:hover { color: var(--white); }

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid var(--line-soft);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted-2);
}
.footer-bottom a:hover { color: var(--blue-3); }
.footer-tagline { color: var(--blue-3); }

/* =================================================================
   RESPONSIVE
================================================================= */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .logo-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .location-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .location-visuals { grid-template-columns: 1fr; }
  .location-map {
    min-height: 0;
    height: auto;
    aspect-ratio: 16 / 10;
  }
  .location-map iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    min-height: 0 !important;
    max-height: 100%;
  }
  .location-copy {
    min-height: 0;
    margin-top: 0;
    padding-top: 0;
  }
  .carousel-card { min-width: 280px; }
  .all-services-layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .all-services-copy {
    position: static;
    top: auto;
  }
  .all-services-copy .section-intro {
    max-width: none;
  }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .schawe-grid, .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .schawe-visual {
    aspect-ratio: 16 / 11;
    max-width: 600px;
  }
  .schawe-preview .schawe-visual {
    aspect-ratio: 16 / 10;
    max-width: none;
  }
  .schawe-visual-bg {
    object-position: center 17%;
  }
  .schawe-visual::before {
    background: linear-gradient(
      to top,
      #080c12 0%,
      rgba(8, 12, 18, 0.95) 12%,
      rgba(8, 12, 18, 0.72) 32%,
      rgba(8, 12, 18, 0.4) 52%,
      rgba(8, 12, 18, 0.14) 72%,
      rgba(8, 12, 18, 0.03) 84%,
      transparent 94%
    );
  }
  .schawe-preview .schawe-visual::before {
    background: linear-gradient(
      to top,
      #080c12 0%,
      rgba(8, 12, 18, 0.94) 10%,
      rgba(8, 12, 18, 0.7) 30%,
      rgba(8, 12, 18, 0.38) 52%,
      rgba(8, 12, 18, 0.12) 70%,
      rgba(8, 12, 18, 0.03) 82%,
      transparent 92%
    );
  }
  .schawe-x {
    align-items: flex-end;
    justify-content: center;
    padding: 0 16px 52px;
  }
  .schawe-preview .schawe-x {
    padding: 0 16px 20px;
  }
  .schawe-preview .schawe-x .x-glanzwerk,
  .schawe-preview .schawe-x .x-schawe {
    font-size: clamp(28px, 7vw, 44px);
  }
  .schawe-preview .schawe-x .x-x {
    font-size: clamp(34px, 8.5vw, 52px);
    margin: 0;
  }
  .schawe-x .x-glanzwerk,
  .schawe-x .x-schawe {
    font-size: clamp(28px, 7.5vw, 44px);
  }
  .schawe-x .x-x {
    font-size: clamp(38px, 11vw, 58px);
    margin: 4px 0;
  }
  .schawe-loc-pin {
    bottom: 16px;
    left: 16px;
  }
}

@media (max-width: 720px) {
  .logo-card--porsche,
  .logo-card--hakvoort {
    height: auto;
    min-height: 148px;
    padding: 18px 14px;
    overflow: visible;
  }
  .logo-card--porsche .logo-card-brand,
  .logo-card--hakvoort .logo-card-brand {
    flex-direction: column;
    gap: 10px;
  }
  .logo-card--porsche .logo-card-mark,
  .logo-card--hakvoort .logo-card-mark {
    flex: 0 0 54px;
    width: 54px;
    height: 54px;
  }
  .logo-card--porsche .logo-card-mark {
    flex: 0 0 auto;
    width: 62px;
    height: 86px;
  }
  .logo-card--porsche .logo-card-mark img,
  .logo-card--hakvoort .logo-card-mark img {
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    object-position: center;
    transform: none;
  }
  .logo-card--porsche .logo-card-caption,
  .logo-card--hakvoort .logo-card-caption {
    align-items: center;
    text-align: center;
  }
  .logo-card--porsche .logo-card-caption-top,
  .logo-card--hakvoort .logo-card-caption-top,
  .logo-card--porsche .logo-card-caption-bottom,
  .logo-card--hakvoort .logo-card-caption-bottom {
    font-size: 13px;
    letter-spacing: 1.4px;
  }
  .logo-card--porsche .logo-card-caption-top {
    font-size: 11px;
    letter-spacing: 1.1px;
  }
  .logo-card--porsche .logo-card-caption-line,
  .logo-card--hakvoort .logo-card-caption-line {
    max-width: 92px;
  }
  .logo-card--porsche .logo-card-caption-line {
    max-width: 118px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 24px;
  }
  .footer-grid > div,
  .footer-group {
    width: 100%;
    max-width: 620px;
  }
  .footer-grid > div {
    text-align: center;
  }
  .footer-group {
    justify-self: stretch;
  }
  .footer-group summary {
    display: flex;
    justify-content: space-between;
    font-size: 22px;
    letter-spacing: 3px;
    padding: 10px 0;
    margin-bottom: 0;
  }
  .footer-group h4 {
    display: none;
  }
  .footer-group ul {
    display: none;
  }
  .footer-group[open] ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-bottom: 8px;
  }
  .footer-col a {
    font-size: 16px;
  }
  .ig-grid { grid-template-columns: repeat(3, 1fr); }
  .reasons { grid-template-columns: repeat(2, 1fr); }
  .process:not(.carousel-track) { grid-template-columns: repeat(2, 1fr); }
  .process-carousel .carousel-track.process {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  :root { --header-h: 64px; }

  .topbar-inner { font-size: 10px; padding: 8px 0; }
  .topbar-static { display: none; }
  .topbar-ticker { display: block; }

  .nav-primary, .header-cta { display: none; }
  .burger { display: block; }
  .header-inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
  }
  .brand {
    grid-column: 2;
    justify-self: center;
  }
  .burger {
    grid-column: 3;
    justify-self: end;
  }

  .page-hero {
    height: 42vh;
    min-height: 280px;
    max-height: 380px;
    padding-bottom: var(--pad-x);
  }
  .page-hero--schawe .hero-img {
    object-position: center 18%;
  }
  .page-hero-sub {
    display: none;
  }

  .schawe-story-desktop {
    display: none;
  }
  .schawe-story-mobile {
    display: block;
  }

  .schawe-bg:not(.schawe-preview) .schawe-grid {
    display: flex;
    flex-direction: column;
    gap: 36px;
  }
  .schawe-bg:not(.schawe-preview) .schawe-text {
    order: 1;
  }
  .schawe-bg:not(.schawe-preview) .schawe-visual {
    order: 2;
    width: 100%;
    max-width: none;
    aspect-ratio: 16 / 10;
    margin: 8px 0 12px;
  }

  .hero {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    height: auto;
    min-height: 0;
    overflow: visible;
  }
  .hero-banner {
    display: block;
    height: auto;
    min-height: 0;
    overflow: visible;
  }
  .hero-media {
    position: relative;
    inset: auto;
    width: 100%;
    height: 52vh;
    min-height: 340px;
    max-height: 460px;
    flex-shrink: 0;
  }
  .hero-bg,
  .hero-overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
  }
  .hero-overlay {
    background: linear-gradient(
      180deg,
      rgba(8, 11, 16, 0.35) 0%,
      rgba(8, 11, 16, 0.15) 40%,
      rgba(8, 11, 16, 0.55) 75%,
      rgba(8, 11, 16, 0.82) 100%
    );
  }
  .page-hero .hero-overlay {
    inset: auto 0 0 0;
    height: 35%;
    width: 100%;
    background: linear-gradient(
      to top,
      rgba(8, 11, 16, 0.88) 0%,
      rgba(8, 11, 16, 0.45) 45%,
      rgba(8, 11, 16, 0.12) 75%,
      transparent 100%
    );
  }
  .hero-img {
    object-position: 68% 28%;
  }
  .hero-inner {
    position: static;
    z-index: 2;
    display: block;
    width: 100%;
    max-width: none;
    min-height: 0;
    margin: 0;
    padding: 0;
  }
  .hero-content {
    display: block;
    max-width: none;
  }
  .hero-copy {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 3;
    height: 52vh;
    min-height: 340px;
    max-height: 460px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 0 var(--pad-x) var(--pad-x);
    box-sizing: border-box;
    pointer-events: none;
  }
  .hero-eyebrow {
    margin-bottom: 12px;
  }
  .hero-video-toggle {
    width: 34px;
    height: 34px;
    border-width: 1px;
  }
  .hero-video-toggle:hover {
    transform: none;
  }
  .hero-video-toggle-icon--pause::before,
  .hero-video-toggle-icon--pause::after {
    top: 2px;
    width: 2.5px;
    height: 10px;
  }
  .hero-video-toggle-icon--pause::before { left: 4px; }
  .hero-video-toggle-icon--pause::after { right: 4px; }
  .hero-video-toggle-icon--play {
    border-top-width: 5px;
    border-bottom-width: 5px;
    border-left-width: 9px;
    margin-left: 1px;
  }
  .hero-desc {
    position: relative;
    z-index: 2;
    max-width: none;
    margin: 0;
    padding: 24px var(--pad-x) 0;
    background: var(--bg);
    font-size: 14.5px;
    line-height: 1.7;
  }
  .hero-actions {
    position: relative;
    z-index: 2;
    margin-top: 0;
    gap: 8px;
    width: 100%;
    background: var(--bg);
    padding: 22px var(--pad-x) 0;
    box-sizing: border-box;
  }
  .hero-actions .btn {
    flex: 1 1 0;
    min-width: 0;
    font-size: clamp(8.5px, 2.55vw, 11px);
    letter-spacing: clamp(0.4px, 0.28vw, 1.5px);
    padding: 13px clamp(8px, 2vw, 16px);
  }
  .hero-stats {
    margin-top: 0;
    padding: 28px var(--pad-x) var(--pad-x);
    max-width: none;
    justify-content: center;
  }
  .hero-stats > div {
    padding: 0 clamp(18px, 5vw, 36px);
  }
  .hstat-num {
    font-size: clamp(28px, 8vw, 36px);
  }
  .hstat-lbl {
    font-size: 9.5px;
    letter-spacing: 1.4px;
  }
  @container hero-stats (max-width: 520px) {
    .hero-stat--optional {
      display: none;
    }
  }

  .section-head {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    row-gap: 20px;
    margin-bottom: 40px;
  }
  .section-head > div:first-child {
    display: block;
  }
  .section-label {
    grid-column: auto;
    grid-row: auto;
    margin-bottom: 14px;
  }
  .section-title {
    grid-column: auto;
    grid-row: auto;
  }
  .section-intro {
    grid-column: auto;
    grid-row: auto;
    max-width: none;
  }

  .services-grid { grid-template-columns: 1fr; }
  .location-grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .location-map {
    min-height: 420px;
    height: auto;
    aspect-ratio: 3 / 4;
  }
  .location-map iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    min-height: 0 !important;
    max-height: 100%;
  }
  .location-copy {
    min-height: 0;
    margin-top: 0;
    padding-top: 0;
    gap: 14px;
  }
  .location-copy-text {
    margin: 0;
    padding: 0;
  }
  .carousel-card { min-width: 100%; }

  .carousel-box::before,
  .carousel-box::after {
    opacity: 1;
    background: rgba(255, 255, 255, 0.55);
    color: #ffffff;
  }
  .carousel-box.carousel-box--start::before {
    opacity: 0;
  }
  .carousel-box.carousel-box--end::after {
    opacity: 0;
  }
  .carousel-nav {
    opacity: 1;
    pointer-events: auto;
  }
  .carousel-box.carousel-box--start .carousel-nav--prev {
    opacity: 0;
    pointer-events: none;
  }
  .carousel-box.carousel-box--end .carousel-nav--next {
    opacity: 0;
    pointer-events: none;
  }

  .process-carousel.carousel-box {
    overflow: hidden;
    padding-top: 32px;
  }
  .process-carousel::before,
  .process-carousel::after {
    display: none !important;
  }
  .process-carousel .carousel-nav {
    display: flex !important;
    top: 0;
    transform: none;
    width: 28px;
    height: 28px;
    opacity: 0.85;
    pointer-events: auto;
    background: transparent;
    border-radius: 0;
    color: var(--blue-2);
    font-size: 26px;
    font-weight: 400;
    line-height: 1;
    text-shadow: none;
  }
  .process-carousel .carousel-nav::before {
    display: block;
    line-height: 1;
  }
  .process-carousel .carousel-nav--prev {
    left: auto;
    right: 30px;
  }
  .process-carousel .carousel-nav--prev::before {
    content: '‹';
  }
  .process-carousel .carousel-nav--next {
    right: 2px;
  }
  .process-carousel .carousel-nav--next::before {
    content: '›';
  }
  .process-carousel.carousel-box--start .carousel-nav--prev,
  .process-carousel.carousel-box--end .carousel-nav--next {
    opacity: 0.28;
    pointer-events: none;
  }
  .process-carousel:hover .carousel-nav,
  .process-carousel:hover .carousel-nav:hover {
    background: transparent;
    border-radius: 0;
  }
  .process-carousel .carousel-track.process {
    display: flex;
    grid-template-columns: none;
    gap: 12px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    background: transparent;
    border: none;
    margin: 0;
    padding: 0 4px;
  }
  .process-carousel .process-step {
    flex: 0 0 82%;
    width: 82%;
    max-width: 320px;
    min-width: 0;
    scroll-snap-align: start;
    border: 1px solid var(--line);
    background: var(--bg);
    padding: 36px 28px;
    text-align: left;
    display: block;
    border-radius: 0;
  }

  .services-acc summary {
    font-size: 18px;
    padding: 18px 0;
  }

  .ba-wrap { aspect-ratio: 4 / 3; }
  .ba-handle { width: 40px; height: 40px; }

  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; gap: 0; }

  .strip-inner { flex-direction: column; align-items: flex-start; gap: 16px; }
  .strip-text { font-size: 18px; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-grid > div:first-child {
    display: flex;
    justify-content: center;
  }
  .footer-grid > div:first-child .brand {
    justify-content: center;
  }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .footer-bottom-end {
    margin-left: 0;
    width: 100%;
    justify-content: space-between;
  }

  .ig-grid { grid-template-columns: repeat(2, 1fr); }
  .ig-head {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
    column-gap: 12px;
    margin-bottom: 40px;
  }
  .ig-follow {
    justify-self: end;
    align-self: end;
    padding: 11px 14px;
    font-size: 10.5px;
    letter-spacing: 1.5px;
  }
  .ig-head > div {
    gap: 14px;
    min-width: 0;
  }
  .ig-head .section-label {
    margin-bottom: 0;
  }
  .ig-head .section-title {
    font-size: clamp(28px, 7.2vw, 42px);
    white-space: nowrap;
    line-height: 1;
  }

  .schawe-preview .schawe-grid {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }
  .schawe-preview .schawe-text {
    display: contents;
  }
  .schawe-preview .hero-eyebrow {
    order: 1;
    margin-bottom: 14px;
  }
  .schawe-preview .schawe-text h2 {
    order: 2;
    margin: 0 0 clamp(20px, 4vw, 28px);
    max-width: none;
  }
  .schawe-preview .schawe-visual {
    order: 3;
    width: 100%;
    max-width: none;
    margin-bottom: 0;
  }
  .schawe-preview .schawe-desc {
    display: none;
  }
  .schawe-preview .schawe-text .btn {
    display: none;
  }
  .schawe-preview .schawe-x-arrow {
    display: inline-flex;
  }
  .schawe-preview .schawe-x-row {
    flex-wrap: nowrap;
    gap: clamp(8px, 2vw, 16px);
  }
  .schawe-preview .schawe-x .x-glanzwerk,
  .schawe-preview .schawe-x .x-schawe {
    font-size: clamp(26px, 7vw, 40px);
  }
  .schawe-preview .schawe-x .x-x {
    font-size: clamp(30px, 8vw, 46px);
  }

  .schawe-features { grid-template-columns: 1fr; }
  .reasons { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero-title { font-size: clamp(44px, 13vw, 64px); }
  .hero-stat--optional { display: none; }
  .ig-head .section-title {
    font-size: clamp(24px, 6.5vw, 34px);
  }
  .ig-follow {
    padding: 10px 12px;
    gap: 6px;
  }
}
