/* ============================================
   Karosseriebau Wisniewski Marl
   Editorial Light · Orange Accent
   Modern & Minimalistisch
   ============================================ */

:root {
  /* Surfaces */
  --bg:           #FFFFFF;
  --bg-soft:      #F7F7F7;
  --bg-strong:    #EDEDED;

  /* Ink */
  --ink:          #0A0A0A;
  --ink-dim:      #3A3A3A;
  --ink-soft:     #737373;
  --ink-meta:     #9A9A9A;

  /* Accent — sattes Karosseriebau-Orange */
  --accent:         #C44818;     /* Hauptakzent für weißen BG — AA 5.3:1 mit Weiß */
  --accent-text:    #C44818;     /* Reine Text-Links auf Weiß */
  --accent-on-dark: #FF8855;     /* Akzent auf dunklem BG — AA 4.6:1 mit #0A0A0A */
  --accent-2:       #DB5A23;     /* hover lighter */
  --accent-soft:    rgba(196, 72, 24, .12);
  --accent-line:    rgba(196, 72, 24, .35);

  /* Lines */
  --hairline:     #E5E5E5;
  --hairline-2:   #D8D8D8;

  /* Layout */
  --max:          1240px;
  --gutter:       clamp(20px, 4vw, 40px);
  --section:      clamp(72px, 10vw, 140px);

  /* Type Scale */
  --display-xl:   clamp(48px, 9vw, 120px);
  --display-lg:   clamp(40px, 7vw, 88px);
  --display:      clamp(32px, 5vw, 64px);
  --h2:           clamp(28px, 4vw, 48px);
  --h3:           clamp(22px, 2.4vw, 32px);
  --h4:           clamp(18px, 1.6vw, 22px);
  --body:         clamp(15px, 1.05vw, 17px);
  --small:        14px;
  --plate:        12px;

  /* Motion */
  --ease:         cubic-bezier(.2, .7, .2, 1);
  --ease-out:     cubic-bezier(.16, 1, .3, 1);
  --d-fast:       .18s;
  --d:            .35s;
  --d-slow:       .6s;
}

/* ============================================
   Reset / Base
   ============================================ */
*, *::before, *::after { box-sizing: border-box; }

html {
  overflow-x: clip;
  color-scheme: light;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: var(--body);
  line-height: 1.6;
  font-feature-settings: "ss01", "cv11";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--d-fast) var(--ease);
}

button {
  border: 0;
  background: transparent;
  font: inherit;
  color: inherit;
  cursor: pointer;
}

::selection { background: var(--accent); color: #fff; }

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ============================================
   Layout Helpers
   ============================================ */
.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.container-wide {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}

section {
  padding: var(--section) 0;
}

.divider {
  height: 1px;
  background: var(--hairline);
  margin: 0;
  border: 0;
}

/* ============================================
   Typography
   ============================================ */
h1, h2, h3, h4, h5, h6 {
  margin: 0 0 .35em;
  font-family: "Inter", system-ui, sans-serif;
  font-weight: 800;
  letter-spacing: -.02em;
  line-height: 1.05;
  color: var(--ink);
}

h1 { font-size: var(--display-lg); }
h2 { font-size: var(--h2); font-weight: 700; }
h3 { font-size: var(--h3); font-weight: 700; }
h4 { font-size: var(--h4); font-weight: 600; }

p { margin: 0 0 1em; color: var(--ink-dim); }
p:last-child { margin-bottom: 0; }

/* Plate-Number — editorial Sektions-Anker */
.plate {
  display: inline-flex;
  align-items: center;
  gap: .5em;
  font-family: "Inter", monospace;
  font-size: var(--plate);
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--accent);
  font-variant-numeric: tabular-nums;
  margin-bottom: 1.5em;
}

.plate::before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 1px;
  background: currentColor;
}

.plate.no-line::before { display: none; }

/* Pull-Quote */
.pull-quote {
  font-style: italic;
  font-weight: 500;
  font-size: clamp(22px, 3vw, 36px);
  line-height: 1.3;
  color: var(--ink);
  border-left: 2px solid var(--accent);
  padding-left: 28px;
  margin: 0;
  max-width: 900px;
}

.pull-quote-center {
  text-align: center;
  border-left: 0;
  padding: 40px 24px;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  font-size: clamp(24px, 3.4vw, 44px);
}

.eyebrow {
  font-size: var(--small);
  color: var(--ink-soft);
  letter-spacing: .04em;
  margin-bottom: .8em;
}

/* ============================================
   Header / Nav
   ============================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, .94);
  backdrop-filter: saturate(180%) blur(18px);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  border-bottom: 1px solid var(--hairline);
  transition: box-shadow var(--d) var(--ease);
}

.site-header.is-scrolled {
  box-shadow: 0 1px 0 var(--hairline-2);
}

.masthead {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px var(--gutter);
  max-width: var(--max);
  margin: 0 auto;
  position: relative;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  letter-spacing: -.01em;
  color: var(--ink);
  z-index: 110;
}

.brand img { width: auto; height: 38px; }

.nav-main {
  display: none;
  gap: 28px;
  align-items: center;
}

.nav-main a {
  font-size: 15px;
  font-weight: 500;
  color: var(--ink-dim);
  position: relative;
  padding: 6px 0;
}

.nav-main a:hover,
.nav-main a.is-active {
  color: var(--ink);
}

.nav-main a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--d) var(--ease);
}

.nav-main a:hover::after,
.nav-main a.is-active::after {
  transform: scaleX(1);
}

.nav-cta {
  /* Tel-Pille immer sichtbar — Karosseriebau, Kunden wollen schnell anrufen.
     Auf Mobile kompakter dargestellt (siehe Media-Query weiter unten). */
}

.tel-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border: 1px solid var(--accent);
  color: var(--accent-text);
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
  transition: background var(--d-fast) var(--ease), color var(--d-fast) var(--ease);
}

.tel-pill::before {
  content: "";
  width: 14px;
  height: 14px;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M6.62 10.79a15.05 15.05 0 0 0 6.59 6.59l2.2-2.2c.27-.27.67-.36 1.02-.24 1.12.37 2.33.57 3.57.57.55 0 1 .45 1 1V20c0 .55-.45 1-1 1A17 17 0 0 1 3 4c0-.55.45-1 1-1h3.5c.55 0 1 .45 1 1 0 1.25.2 2.45.57 3.57.11.35.03.74-.25 1.02l-2.2 2.2z'/></svg>") center / contain no-repeat;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M6.62 10.79a15.05 15.05 0 0 0 6.59 6.59l2.2-2.2c.27-.27.67-.36 1.02-.24 1.12.37 2.33.57 3.57.57.55 0 1 .45 1 1V20c0 .55-.45 1-1 1A17 17 0 0 1 3 4c0-.55.45-1 1-1h3.5c.55 0 1 .45 1 1 0 1.25.2 2.45.57 3.57.11.35.03.74-.25 1.02l-2.2 2.2z'/></svg>") center / contain no-repeat;
}

.tel-pill:hover {
  background: var(--accent);
  color: #fff;
}

@media (max-width: 600px) {
  .tel-pill.nav-cta {
    padding: 8px 12px;
    font-size: 13px;
    gap: 6px;
  }
  .tel-pill.nav-cta::before { width: 12px; height: 12px; }
}

@media (min-width: 900px) {
  .nav-main { display: flex; }
}

/* Burger */
.burger {
  position: relative;
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  z-index: 110;
}

.burger:hover { background: var(--bg-soft); }

.burger-icon,
.burger-icon::before,
.burger-icon::after {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  transition: transform var(--d) var(--ease), opacity var(--d) var(--ease), top var(--d) var(--ease), bottom var(--d) var(--ease);
}

.burger-icon {
  position: relative;
}

.burger-icon::before,
.burger-icon::after {
  content: "";
  position: absolute;
  left: 0;
}

.burger-icon::before { top: -7px; }
.burger-icon::after  { top: 7px; }

body.menu-open .burger-icon { background: transparent; }
body.menu-open .burger-icon::before { top: 0; transform: rotate(45deg); }
body.menu-open .burger-icon::after  { top: 0; transform: rotate(-45deg); }

@media (min-width: 900px) { .burger { display: none; } }

/* Mobile Menu Drawer */
.menu-drawer {
  position: fixed;
  inset: 0;
  background: rgba(255, 255, 255, .98);
  backdrop-filter: blur(20px);
  z-index: 90;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  padding: 88px var(--gutter) 40px;
  transform: translateY(-100%);
  transition: transform var(--d) var(--ease);
  overflow-y: auto;
}

body.menu-open .menu-drawer {
  transform: translateY(0);
}

.menu-drawer .nav-mobile {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.menu-drawer .nav-mobile a {
  font-size: clamp(28px, 7vw, 44px);
  font-weight: 700;
  padding: 14px 0;
  border-bottom: 1px solid var(--hairline);
  color: var(--ink);
  letter-spacing: -.02em;
}

.menu-drawer .nav-mobile a:hover { color: var(--accent); }

.menu-drawer .menu-foot {
  margin-top: 32px;
  display: grid;
  gap: 8px;
  font-size: 14px;
  color: var(--ink-soft);
}

@media (min-width: 900px) {
  .menu-drawer { display: none; }
}

/* Scroll-Progress-Bar */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 0%;
  background: var(--accent);
  z-index: 200;
  transition: width 60ms linear;
  pointer-events: none;
}

/* ============================================
   Buttons
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 28px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: .01em;
  cursor: pointer;
  transition: transform var(--d-fast) var(--ease), background var(--d-fast) var(--ease), color var(--d-fast) var(--ease), border-color var(--d-fast) var(--ease);
  border: 1px solid transparent;
  white-space: nowrap;
  text-decoration: none;
}

.btn-filled {
  background: var(--accent);
  color: #fff;
}

.btn-filled:hover {
  background: var(--accent-2);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}

.btn-outline:hover {
  background: var(--ink);
  color: #fff;
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--hairline);
}

.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.btn-text {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0;
  background: none;
  color: var(--accent-text);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: .01em;
  position: relative;
}

.btn-text::after {
  content: "→";
  transition: transform var(--d-fast) var(--ease);
}

.btn-text:hover { color: var(--accent-2); }
.btn-text:hover::after { transform: translateX(4px); }

.btn-text.underline { padding-bottom: 2px; border-bottom: 1px solid currentColor; }

/* ============================================
   Hero
   ============================================ */
.hero {
  position: relative;
  min-height: 92vh;
  padding-top: clamp(64px, 10vh, 120px);
  padding-bottom: clamp(64px, 10vh, 120px);
  overflow: hidden;
  background: var(--bg);
}

.hero-grid {
  display: grid;
  gap: 40px;
  align-items: end;
  grid-template-columns: 1fr;
  position: relative;
  z-index: 2;
}

@media (min-width: 1000px) {
  .hero-grid {
    grid-template-columns: 1.4fr 1fr;
    gap: 64px;
  }
}

.hero-headline {
  font-size: var(--display-xl);
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: .95;
  color: var(--ink);
  margin: 0 0 32px;
}

.hero-headline .accent {
  color: var(--accent);
}

.hero-sub {
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.5;
  color: var(--ink-dim);
  max-width: 560px;
  margin: 0 0 40px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 24px;
}

.hero-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--ink-soft);
  font-size: 14px;
}

.hero-meta::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--accent);
}

.hero-image {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 4px;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease-out);
}

.hero-image:hover img { transform: scale(1.02); }

.hero-image-caption {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: rgba(255, 255, 255, .94);
  backdrop-filter: blur(8px);
  padding: 8px 14px;
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--ink);
  border-radius: 2px;
}

@media (min-width: 1000px) {
  .hero-image { aspect-ratio: 3 / 4; }
}

.hero-bg-mark {
  position: absolute;
  inset: auto auto -20% -10%;
  font-size: clamp(180px, 28vw, 380px);
  font-weight: 900;
  color: var(--accent);
  opacity: .04;
  letter-spacing: -.05em;
  line-height: 1;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

/* ============================================
   Quote Strip
   ============================================ */
.quote-strip {
  background: var(--bg-soft);
  padding: clamp(48px, 8vw, 96px) 0;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  text-align: center;
}

.quote-strip blockquote {
  font-style: italic;
  font-size: clamp(22px, 3vw, 38px);
  line-height: 1.3;
  font-weight: 500;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 var(--gutter);
  color: var(--ink);
  position: relative;
}

.quote-strip blockquote::before {
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  background: var(--accent);
  margin: 0 auto 24px;
}

/* ============================================
   Marquee
   ============================================ */
.marquee {
  overflow: hidden;
  background: var(--ink);
  color: #fff;
  padding: 18px 0;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}

.marquee-track {
  display: flex;
  gap: 56px;
  animation: marquee 38s linear infinite;
  white-space: nowrap;
  width: max-content;
}

.marquee span {
  font-size: 14px;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 600;
  color: rgba(255, 255, 255, .7);
}

.marquee span.accent { color: var(--accent-on-dark); }

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

/* ============================================
   Signature Grid (Vorher/Während/Nachher)
   ============================================ */
.signature {
  padding: var(--section) 0;
  position: relative;
}

.signature-head {
  display: grid;
  gap: 16px;
  align-items: end;
  margin-bottom: 56px;
}

@media (min-width: 900px) {
  .signature-head {
    grid-template-columns: 1.5fr 1fr;
  }
}

.signature-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr;
}

@media (min-width: 800px) {
  .signature-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }
}

.signature-tile {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--bg-soft);
  transition: transform var(--d) var(--ease);
}

.signature-tile:nth-child(2) { transform: translateY(-32px); }

@media (min-width: 800px) {
  .signature-tile:hover { transform: translateY(-6px); }
  .signature-tile:nth-child(2):hover { transform: translateY(-38px); }
}

.signature-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.signature-tile-meta {
  position: absolute;
  inset: auto 0 0 0;
  padding: 16px;
  background: linear-gradient(to top, rgba(0, 0, 0, .65), transparent);
  color: #fff;
}

.signature-tile-plate {
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 4px;
}

.signature-tile-caption {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -.01em;
}

/* ============================================
   Service Cards
   ============================================ */
.service-cards {
  padding: var(--section) 0;
  background: var(--bg);
  position: relative;
}

.service-cards-head {
  display: grid;
  gap: 20px;
  margin-bottom: 56px;
}

@media (min-width: 900px) {
  .service-cards-head {
    grid-template-columns: 1.4fr 1fr;
    align-items: end;
  }
}

.service-cards-grid {
  display: grid;
  gap: 0;
  grid-template-columns: 1fr;
  border-top: 1px solid var(--hairline);
  border-left: 1px solid var(--hairline);
}

@media (min-width: 700px)  { .service-cards-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .service-cards-grid { grid-template-columns: repeat(3, 1fr); } }

.service-card {
  border-right: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  padding: 36px 32px;
  background: var(--bg);
  transition: background var(--d) var(--ease), transform var(--d) var(--ease);
  display: flex;
  flex-direction: column;
  position: relative;
}

.service-card:hover {
  background: var(--bg-soft);
  transform: translateY(-2px);
}

.service-card-num {
  font-family: "Inter", monospace;
  font-size: 11px;
  letter-spacing: .18em;
  color: var(--accent);
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 24px;
}

.service-card-title {
  font-size: clamp(22px, 1.8vw, 28px);
  font-weight: 700;
  letter-spacing: -.01em;
  margin: 0 0 14px;
  color: var(--ink);
}

.service-card-desc {
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-dim);
  margin: 0 0 24px;
}

.service-card-link {
  margin-top: auto;
  color: var(--accent-text);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: .02em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.service-card-link::after {
  content: "→";
  transition: transform var(--d-fast) var(--ease);
}

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

/* ============================================
   Service Wraps (Leistungen-Detail)
   ============================================ */
.service-wrap {
  padding: clamp(72px, 10vw, 120px) 0;
  border-bottom: 1px solid var(--hairline);
}

.service-wrap-grid {
  display: grid;
  gap: 48px;
  align-items: center;
  grid-template-columns: 1fr;
}

@media (min-width: 900px) {
  .service-wrap-grid {
    grid-template-columns: 1.1fr 1fr;
    gap: 72px;
  }
}

.service-wrap.reverse .service-wrap-grid > .service-wrap-text {
  order: 2;
}

@media (min-width: 900px) {
  .service-wrap.reverse .service-wrap-grid {
    grid-template-columns: 1fr 1.1fr;
  }
}

.service-wrap-image {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
}

.service-wrap-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease-out);
}

.service-wrap:hover .service-wrap-image img { transform: scale(1.02); }

.service-wrap-title {
  font-size: clamp(32px, 4.5vw, 56px);
  font-weight: 800;
  letter-spacing: -.02em;
  line-height: 1.05;
  margin: 0 0 24px;
}

.service-wrap-desc {
  font-size: clamp(16px, 1.2vw, 18px);
  color: var(--ink-dim);
  line-height: 1.6;
  margin: 0 0 28px;
  max-width: 560px;
}

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

.service-bullets li {
  position: relative;
  padding-left: 28px;
  font-size: 15px;
  color: var(--ink-dim);
}

.service-bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 14px;
  height: 1px;
  background: var(--accent);
}

/* ============================================
   Split Section (Über-Uns Teaser)
   ============================================ */
.split {
  padding: var(--section) 0;
  background: var(--bg);
}

.split-grid {
  display: grid;
  gap: 48px;
  align-items: center;
  grid-template-columns: 1fr;
}

@media (min-width: 900px) {
  .split-grid {
    grid-template-columns: 1fr 1fr;
    gap: 72px;
  }
}

.split-image {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
}

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

.split-content h2 {
  font-size: clamp(32px, 4vw, 56px);
  margin-bottom: 24px;
}

/* ============================================
   USP Band (Firmen & Fuhrparks)
   ============================================ */
.usp-band {
  background: linear-gradient(135deg, var(--bg-soft) 0%, var(--bg) 100%);
  padding: clamp(64px, 9vw, 120px) 0;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  position: relative;
  overflow: hidden;
}

.usp-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 90% 50%, var(--accent-soft), transparent 60%);
  pointer-events: none;
}

.usp-grid {
  display: grid;
  gap: 32px;
  align-items: center;
  grid-template-columns: 1fr;
  position: relative;
}

@media (min-width: 900px) {
  .usp-grid {
    grid-template-columns: 1fr 1.2fr;
    gap: 64px;
  }
}

.usp-grid h2 {
  font-size: clamp(32px, 4vw, 52px);
  margin: 0;
}

/* ============================================
   Metapher Band
   ============================================ */
.metapher {
  position: relative;
  height: clamp(380px, 60vh, 620px);
  overflow: hidden;
  background: var(--ink);
}

.metapher img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .55;
  transition: transform 1.2s var(--ease-out), opacity .6s var(--ease);
}

.metapher:hover img { transform: scale(1.03); opacity: .65; }

.metapher-content {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  color: #fff;
  z-index: 2;
}

.metapher-content .plate { color: var(--accent-on-dark); }

.metapher-content blockquote {
  font-style: italic;
  font-weight: 500;
  font-size: clamp(28px, 4.5vw, 56px);
  line-height: 1.15;
  max-width: 900px;
  margin: 0;
  letter-spacing: -.01em;
}

/* ============================================
   Process Steps (Ablauf)
   ============================================ */
.process {
  padding: var(--section) 0;
}

.process-grid {
  display: grid;
  gap: 32px;
  grid-template-columns: 1fr;
  margin-top: 48px;
}

@media (min-width: 700px)  { .process-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .process-grid { grid-template-columns: repeat(4, 1fr); } }

.process-step {
  border-top: 2px solid var(--ink);
  padding-top: 24px;
  position: relative;
  transition: border-color var(--d) var(--ease);
}

.process-step:hover { border-color: var(--accent); }

.process-step-num {
  font-size: 14px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 12px;
}

.process-step h3 {
  font-size: 22px;
  margin: 0 0 12px;
}

.process-step p {
  font-size: 15px;
  color: var(--ink-dim);
  margin: 0;
}

/* ============================================
   CTA Band
   ============================================ */
.cta-band {
  background: var(--ink);
  color: #fff;
  padding: clamp(64px, 9vw, 120px) 0;
  position: relative;
  overflow: hidden;
}

.cta-band::after {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--accent-soft) 0%, transparent 70%);
  pointer-events: none;
}

.cta-grid {
  display: grid;
  gap: 32px;
  align-items: center;
  grid-template-columns: 1fr;
  position: relative;
}

@media (min-width: 900px) {
  .cta-grid {
    grid-template-columns: 1.6fr 1fr;
  }
}

.cta-band h2 {
  color: #fff;
  font-size: clamp(32px, 4.5vw, 56px);
  margin: 0;
}

.cta-band .plate { color: var(--accent-on-dark); }

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

.cta-band .btn-outline {
  border-color: rgba(255, 255, 255, .3);
  color: #fff;
}

.cta-band .btn-outline:hover {
  background: #fff;
  color: var(--ink);
  border-color: #fff;
}

/* ============================================
   Page Header (alle Sub-Seiten)
   ============================================ */
.page-header {
  padding: clamp(80px, 12vw, 160px) 0 clamp(48px, 8vw, 96px);
  border-bottom: 1px solid var(--hairline);
  background: var(--bg);
}

.page-header-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr;
}

@media (min-width: 900px) {
  .page-header-grid { grid-template-columns: 1.6fr 1fr; align-items: end; }
}

.page-header h1 {
  font-size: var(--display-lg);
  margin: 0;
}

.page-header-sub {
  font-size: clamp(17px, 1.5vw, 21px);
  color: var(--ink-dim);
  line-height: 1.5;
  margin: 0;
  max-width: 480px;
  align-self: end;
}

.page-header.center-legal {
  text-align: center;
}

.page-header.center-legal .page-header-grid {
  grid-template-columns: 1fr;
  justify-items: center;
}

/* ============================================
   Trio (Über-Uns Werte)
   ============================================ */
.trio {
  padding: var(--section) 0;
  background: var(--bg-soft);
}

.trio-grid {
  display: grid;
  gap: 32px;
  grid-template-columns: 1fr;
  margin-top: 48px;
}

@media (min-width: 800px) { .trio-grid { grid-template-columns: repeat(3, 1fr); } }

.trio-card {
  background: var(--bg);
  border: 1px solid var(--hairline);
  padding: 36px 32px;
  transition: border-color var(--d) var(--ease), transform var(--d) var(--ease);
}

.trio-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
}

.trio-card h3 {
  font-size: 22px;
  margin: 0 0 14px;
}

.trio-card p {
  font-size: 15px;
  color: var(--ink-dim);
  margin: 0;
}

/* ============================================
   Galerie
   ============================================ */
.gallery {
  padding: var(--section) 0;
}

.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 48px;
  border-bottom: 1px solid var(--hairline);
  padding-bottom: 24px;
}

.gallery-pill {
  padding: 10px 20px;
  border: 1px solid var(--hairline);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-dim);
  transition: all var(--d-fast) var(--ease);
  cursor: pointer;
}

.gallery-pill:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.gallery-pill.is-active {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.gallery-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 700px)  { .gallery-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1100px) { .gallery-grid { grid-template-columns: repeat(4, 1fr); } }

.gallery-tile {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--bg-soft);
  cursor: zoom-in;
  transition: transform var(--d) var(--ease);
}

.gallery-tile.tall { aspect-ratio: 3 / 4; }
.gallery-tile.wide { aspect-ratio: 4 / 3; }

.gallery-tile:hover { transform: translateY(-4px); }

.gallery-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease-out), filter .3s var(--ease);
}

.gallery-tile:hover img {
  transform: scale(1.04);
}

.gallery-tile-meta {
  position: absolute;
  inset: auto 0 0 0;
  padding: 14px 16px;
  background: linear-gradient(to top, rgba(0, 0, 0, .7), transparent);
  color: #fff;
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 600;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity var(--d) var(--ease), transform var(--d) var(--ease);
}

.gallery-tile:hover .gallery-tile-meta {
  opacity: 1;
  transform: translateY(0);
}

.gallery-tile-plate {
  color: var(--accent);
  font-weight: 700;
  margin-right: 8px;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 10, .96);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 300;
  padding: 40px;
  cursor: zoom-out;
}

.lightbox.is-open {
  display: flex;
  animation: lightbox-in var(--d) var(--ease);
}

@keyframes lightbox-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.lightbox img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  cursor: default;
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  background: #fff;
  color: var(--ink);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 600;
  cursor: pointer;
}

/* ============================================
   Kontakt-Form
   ============================================ */
.kontakt {
  padding: var(--section) 0;
}

.kontakt-grid {
  display: grid;
  gap: 48px;
  grid-template-columns: 1fr;
}

@media (min-width: 900px) {
  .kontakt-grid {
    grid-template-columns: 1.6fr 1fr;
    gap: 64px;
  }
}

.form-card {
  background: var(--bg);
  border: 1px solid var(--hairline);
  padding: 40px;
}

.form-row {
  display: grid;
  gap: 20px;
  margin-bottom: 20px;
  grid-template-columns: 1fr;
}

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

@media (max-width: 700px) {
  .form-row.two { grid-template-columns: 1fr; }
}

.form-field { display: grid; gap: 6px; }

.form-field label {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-dim);
  letter-spacing: .02em;
  text-transform: uppercase;
}

.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  padding: 14px 16px;
  font: inherit;
  font-size: 15px;
  color: var(--ink);
  background: var(--bg);
  border: 1px solid var(--hairline);
  border-radius: 4px;
  transition: border-color var(--d-fast) var(--ease);
}

.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}

.form-field textarea {
  min-height: 140px;
  resize: vertical;
  font-family: inherit;
}

.form-radios {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.form-radio-pill {
  position: relative;
  cursor: pointer;
}

.form-radio-pill input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.form-radio-pill span {
  display: inline-block;
  padding: 10px 18px;
  border: 1px solid var(--hairline);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-dim);
  transition: all var(--d-fast) var(--ease);
}

.form-radio-pill:hover span {
  border-color: var(--accent);
  color: var(--accent);
}

.form-radio-pill input:checked + span {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 24px;
}

.form-consent input[type="checkbox"] {
  margin-top: 4px;
  width: 18px;
  height: 18px;
  accent-color: var(--accent);
  cursor: pointer;
}

.form-consent label {
  font-size: 14px;
  color: var(--ink-dim);
  line-height: 1.5;
  cursor: pointer;
}

.form-consent a { color: var(--accent-text); text-decoration: underline; }

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

.form-status {
  margin-top: 16px;
  padding: 14px 18px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 500;
  display: none;
}

.form-status.success {
  display: block;
  background: var(--accent-soft);
  border: 1px solid var(--accent);
  color: var(--accent);
}

.form-status.error {
  display: block;
  background: rgba(220, 38, 38, .08);
  border: 1px solid #DC2626;
  color: #B91C1C;
}

/* Aside (Kontakt) */
.kontakt-aside {
  background: var(--bg-soft);
  padding: 40px;
  display: grid;
  gap: 32px;
  align-content: start;
  align-self: start;
}

.kontakt-aside h3 {
  font-size: 18px;
  margin: 0 0 8px;
}

.kontakt-aside .meta {
  font-size: 14px;
  color: var(--ink-dim);
  font-style: normal;
  line-height: 1.6;
}

.kontakt-aside .meta a:hover { color: var(--accent); }

/* Maps */
.map-section {
  padding: clamp(64px, 9vw, 120px) 0;
}

.map-wrap {
  position: relative;
  aspect-ratio: 21 / 9;
  overflow: hidden;
  background: var(--bg-soft);
  border: 1px solid var(--hairline);
}

@media (max-width: 700px) {
  .map-wrap { aspect-ratio: 4 / 5; }
}

.map-wrap iframe { width: 100%; height: 100%; border: 0; }

.map-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
  background: var(--bg-soft);
}

.map-placeholder p {
  max-width: 480px;
  margin-bottom: 20px;
  color: var(--ink-dim);
}

/* Direkt-Kontakt-Band */
.direct-band {
  background: var(--bg-soft);
  padding: clamp(48px, 8vw, 96px) 0;
  text-align: center;
  border-top: 1px solid var(--hairline);
}

.direct-band h3 {
  font-size: clamp(22px, 2.5vw, 32px);
  margin: 0 0 24px;
}

.direct-band .actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

/* ============================================
   Footer
   ============================================ */
.site-footer {
  background: var(--bg);
  border-top: 1px solid var(--hairline);
  padding: 64px 0 32px;
  color: var(--ink-dim);
  font-size: 14px;
}

.footer-grid {
  display: grid;
  gap: 40px;
  grid-template-columns: 1fr;
  margin-bottom: 48px;
}

@media (min-width: 700px)  { .footer-grid { grid-template-columns: 1.5fr repeat(3, 1fr); } }

.footer-brand img { height: 40px; width: auto; max-width: 200px; margin-bottom: 16px; }

.footer-brand p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink-soft);
}

.footer-label {
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 14px;
  font-weight: 600;
}

.footer-grid ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.footer-grid a {
  color: var(--ink);
  font-size: 14px;
}

.footer-grid a:hover { color: var(--accent); }

.footer-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid var(--hairline);
  font-size: 13px;
  color: var(--ink-soft);
}

/* ============================================
   Cookie Banner
   ============================================ */
.cookie-banner {
  position: fixed;
  inset: auto 24px 24px 24px;
  z-index: 250;
  background: var(--ink);
  color: #fff;
  border-radius: 4px;
  padding: 24px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  display: none;
  box-shadow: 0 12px 40px rgba(0, 0, 0, .25);
}

.cookie-banner.is-visible { display: block; animation: cookie-in .4s var(--ease); }

@keyframes cookie-in {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.cookie-banner h4 {
  font-size: 16px;
  margin: 0 0 8px;
  color: #fff;
}

.cookie-banner p {
  font-size: 13px;
  color: rgba(255, 255, 255, .8);
  margin: 0 0 16px;
}

.cookie-banner a { color: var(--accent-on-dark); text-decoration: underline; }

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.cookie-btn {
  flex: 1;
  min-width: 120px;
  padding: 12px 16px;
  font-size: 13px;
  font-weight: 600;
  border-radius: 4px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all var(--d-fast) var(--ease);
}

.cookie-btn.primary {
  background: var(--accent);
  color: #fff;
}

.cookie-btn.primary:hover { background: var(--accent-2); }

.cookie-btn.secondary {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, .25);
}

.cookie-btn.secondary:hover { border-color: #fff; }

@media (max-width: 600px) {
  .cookie-banner { inset: auto 16px 16px 16px; padding: 18px; }
}

/* ============================================
   Reveal Animations — verstärkt sichtbar
   ============================================ */
.reveal {
  transform: translateY(60px);
  opacity: 0;
  transition: transform 1s var(--ease-out), opacity .8s var(--ease-out);
  will-change: transform, opacity;
}

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

.stagger > * {
  transform: translateY(40px);
  opacity: 0;
  transition: transform .9s var(--ease-out), opacity .7s var(--ease-out);
}

.stagger > *:nth-child(1) { transition-delay: 0s; }
.stagger > *:nth-child(2) { transition-delay: .12s; }
.stagger > *:nth-child(3) { transition-delay: .24s; }
.stagger > *:nth-child(4) { transition-delay: .36s; }
.stagger > *:nth-child(5) { transition-delay: .48s; }
.stagger > *:nth-child(6) { transition-delay: .60s; }

.stagger.is-visible > * {
  transform: translateY(0);
  opacity: 1;
}

/* ============================================
   Scroll-Progress-Bar verstärkt
   ============================================ */
.scroll-progress {
  height: 3px;
  box-shadow: 0 0 12px rgba(196, 72, 24, .5);
}

/* ============================================
   Compare-Slider (Before / After) Vorher / Nachher
   ============================================ */
.before-after-section {
  padding: var(--section) 0;
  background: var(--bg);
}

.before-after-grid {
  display: grid;
  gap: 56px;
  grid-template-columns: 1fr;
  margin-top: 56px;
}

.before-after-item {
  display: grid;
  gap: 20px;
}

.before-after-meta {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.before-after-num {
  font-family: "Inter", monospace;
  font-size: 11px;
  letter-spacing: .18em;
  color: var(--accent);
  text-transform: uppercase;
  font-weight: 700;
}

.before-after-title {
  font-size: clamp(22px, 2.4vw, 32px);
  font-weight: 700;
  margin: 0;
  letter-spacing: -.01em;
}

.before-after-caption {
  font-size: 14px;
  color: var(--ink-soft);
  font-style: italic;
}

.compare {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--bg-soft);
  user-select: none;
  cursor: ew-resize;
  border: 1px solid var(--hairline);
}

@media (max-width: 700px) {
  .compare { aspect-ratio: 4 / 5; }
}

.compare-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.compare-after {
  z-index: 1;
}

.compare-before-wrap {
  position: absolute;
  inset: 0;
  width: 50%;
  overflow: hidden;
  z-index: 2;
  will-change: width;
}

.compare-before-wrap .compare-img {
  width: 100vw;
  max-width: none;
  height: 100%;
}

/* Damit die Bilder nicht stretchen wenn before-wrap kleiner wird:
   Wir nutzen object-position 0% 50% auf vor-Bild via parent */
.compare-before-wrap .compare-img-inner {
  position: absolute;
  inset: 0;
  height: 100%;
  width: var(--compare-w, 100%);
  object-fit: cover;
}

.compare-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 4px;
  background: #fff;
  transform: translateX(-50%);
  z-index: 5;
  pointer-events: none;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, .15), 0 4px 24px rgba(0, 0, 0, .35);
}

.compare-handle::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 56px;
  height: 56px;
  background: #fff;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 4px 24px rgba(0, 0, 0, .35), 0 0 0 1px rgba(0, 0, 0, .12);
}

.compare-handle::after {
  content: "‹ ›";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 22px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -2px;
  z-index: 1;
}

.compare-label {
  position: absolute;
  top: 16px;
  padding: 6px 14px;
  background: rgba(0, 0, 0, .75);
  color: #fff;
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 700;
  border-radius: 999px;
  z-index: 4;
  pointer-events: none;
  backdrop-filter: blur(6px);
}

.compare-label--before {
  left: 16px;
  background: rgba(196, 72, 24, .92); /* accent */
}

.compare-label--after {
  right: 16px;
  background: rgba(10, 10, 10, .85);
}

.compare-hint {
  margin-top: 12px;
  font-size: 13px;
  color: var(--ink-soft);
  text-align: center;
  letter-spacing: .04em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.compare-hint::before,
.compare-hint::after {
  content: "↔";
  color: var(--accent);
  font-weight: 700;
  font-size: 16px;
}

/* Image-Reveal mit clip-path */
.clip-reveal {
  clip-path: inset(0 100% 0 0);
  transition: clip-path 1.2s var(--ease-out);
}

.clip-reveal.is-visible {
  clip-path: inset(0 0 0 0);
}

/* prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal, .stagger > *, .clip-reveal {
    transform: none !important;
    clip-path: none !important;
  }
  .marquee-track { animation: none !important; }
}

/* ============================================
   Legal Pages (Impressum / Datenschutz)
   ============================================ */
.legal {
  max-width: 800px;
  margin: 0 auto;
  padding: var(--section) var(--gutter);
}

.legal h2 {
  font-size: clamp(24px, 2.6vw, 32px);
  margin: 48px 0 16px;
  letter-spacing: -.01em;
}

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

.legal h3 {
  font-size: 18px;
  margin: 24px 0 8px;
}

.legal p, .legal li {
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink-dim);
}

.legal ul { padding-left: 20px; margin: 0 0 16px; }

.legal a { color: var(--accent-text); text-decoration: underline; }

/* ============================================
   404
   ============================================ */
.notfound {
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 80px var(--gutter);
}

.notfound h1 {
  font-size: clamp(80px, 14vw, 200px);
  color: var(--accent);
  margin: 0 0 16px;
  letter-spacing: -.04em;
}

.notfound p {
  font-size: 18px;
  max-width: 480px;
  margin: 0 0 32px;
}

/* ============================================
   Utilities
   ============================================ */
.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;
}

.text-accent { color: var(--accent-text); }
.text-soft { color: var(--ink-soft); }
.center { text-align: center; }
.no-margin { margin: 0; }
