/* ============================================================
   ProCars Oldenburg — DARK variant stylesheet
   Near-black editorial look, neon red/teal duotone accents,
   glass surfaces, glow, grid + grain texture. Motion-first.
   Same markup/classes as main.css — visual layer only.
   ============================================================ */

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

:root {
  --cream:      #14171B;   /* stands in for "paper" tone, kept dark here */
  --cream-2:    #101317;
  --cream-3:    #0C0E11;
  --ink:        #F4F1EA;
  --ink-soft:   #ACA69C;
  --muted:      #6E685F;
  --red:        #FF3C40;
  --red-deep:   #FF1F23;
  --red-dark:   #C21518;
  --teal:       #35E0C0;
  --teal-deep:  #1FBFA2;
  --white:      #FFFFFF;
  --bg:         #08090B;
  --bg-2:       #0D0F12;
  --card:       rgba(255, 255, 255, 0.035);
  --card-solid: #121417;
  --line:       rgba(255, 255, 255, 0.10);
  --line-strong: rgba(255, 255, 255, 0.18);
  --red-glow:   rgba(255, 60, 64, 0.45);
  --teal-glow:  rgba(53, 224, 192, 0.35);
  --shadow-lg:  0 40px 80px -24px rgba(0, 0, 0, 0.75);
  --shadow-md:  0 18px 44px -18px rgba(0, 0, 0, 0.65);
  --radius:     18px;
  --font-body:  'Archivo', system-ui, sans-serif;
  --font-disp:  'Archivo Black', 'Archivo', system-ui, sans-serif;
  --font-mono:  'JetBrains Mono', ui-monospace, monospace;
  --ease-out:   cubic-bezier(0.16, 1, 0.3, 1);
  --ease-back:  cubic-bezier(0.34, 1.56, 0.64, 1);
}

html { scroll-behavior: smooth; background: var(--bg); color-scheme: dark; overflow-x: hidden; }
html:focus-within { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  position: relative;
}

img { max-width: 100%; display: block; }
a { color: inherit; }
button { font-family: inherit; cursor: pointer; }
::selection { background: var(--red); color: var(--white); }

.container { max-width: 1200px; margin: 0 auto; padding: 0 28px; }

/* ---------- ambient background fx (fixed, behind everything) ---------- */
.bg-fx { position: fixed; inset: 0; z-index: 0; pointer-events: none; overflow: visible; }
.bg-fx .blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(160px);
  opacity: 0.6;
  animation: drift 22s ease-in-out infinite alternate;
}
.bg-fx .blob-1 { width: 620px; height: 620px; background: radial-gradient(circle, rgba(255, 60, 64,0.65) 0%, rgba(255, 60, 64,0.32) 35%, rgba(255, 60, 64,0.08) 60%, transparent 82%); top: -260px; left: -220px; }
.bg-fx .blob-2 { width: 620px; height: 620px; background: radial-gradient(circle, rgba(53,224,192,0.45) 0%, rgba(53,224,192,0.2) 35%, rgba(53,224,192,0.05) 60%, transparent 82%); top: 40%; right: -300px; animation-delay: -8s; }
.bg-fx .blob-3 { width: 560px; height: 560px; background: radial-gradient(circle, rgba(255, 60, 64,0.32) 0%, rgba(255, 60, 64,0.14) 35%, rgba(255, 60, 64,0.03) 60%, transparent 82%); bottom: -300px; left: 15%; animation-delay: -14s; }
@keyframes drift {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(40px, -30px) scale(1.08); }
}
.bg-fx .grid-overlay {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.045) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, #000 40%, transparent 100%);
}
.bg-fx .grain {
  position: absolute; inset: -10%;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}

/* ---------- display typography ---------- */
.disp {
  font-family: var(--font-disp);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.015em;
  line-height: 0.92;
}
.disp-italic { transform: skewX(-7deg); display: inline-block; }
.outline-text {
  color: transparent;
  -webkit-text-stroke: 2px rgba(255, 255, 255, 0.18);
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal);
}
.kicker::before {
  content: '';
  width: 34px; height: 2px;
  background: linear-gradient(90deg, var(--teal), transparent);
}

.section { padding: 110px 0; position: relative; z-index: 1; }
.section-head { max-width: 720px; margin-bottom: 56px; }
.section-head h2 {
  font-family: var(--font-disp);
  text-transform: uppercase;
  font-size: clamp(2rem, 4.6vw, 3.4rem);
  line-height: 0.95;
  margin: 14px 0 18px;
}
.section-head h2 em {
  font-style: normal;
  background: linear-gradient(100deg, var(--red) 20%, #FF6669 60%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.section-head p { color: var(--ink-soft); font-size: 1.05rem; max-width: 560px; }
.section-head .section-sub { color: var(--ink); font-weight: 700; font-size: 1.16rem; margin-bottom: 10px; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 999px;
  border: 0;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: transform 0.35s var(--ease-back), box-shadow 0.35s ease, background 0.25s ease, color 0.25s ease;
  isolation: isolate;
}
.btn svg { transition: transform 0.35s var(--ease-back); flex: none; }
.btn:hover svg { transform: translateX(4px); }
.btn-red {
  background: linear-gradient(135deg, #FF4A4E, var(--red-deep));
  color: var(--white);
  box-shadow: 0 10px 30px -8px var(--red-glow), 0 0 0 1px rgba(255,255,255,0.08) inset;
}
.btn-red::after {
  content: '';
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(135deg, var(--red-deep), var(--red-dark));
  transform: translateY(101%);
  transition: transform 0.35s var(--ease-out);
  border-radius: inherit;
}
.btn-red:hover::after { transform: translateY(0); }
.btn-red:hover { transform: translateY(-2px); box-shadow: 0 20px 44px -10px var(--red-glow); }
.btn-ghost {
  background: rgba(255, 255, 255, 0.02);
  color: var(--ink);
  border: 2px solid var(--line-strong);
}
.btn-ghost:hover { background: rgba(255,255,255,0.08); border-color: var(--teal); color: var(--white); transform: translateY(-2px); box-shadow: 0 0 0 1px var(--teal-glow), 0 14px 30px -14px var(--teal-glow); }
.btn-light { background: var(--white); color: var(--red-dark); }
.btn-light:hover { transform: translateY(-2px); box-shadow: 0 16px 34px -12px rgba(0,0,0,0.55); }

/* ============================================================
   Preloader
   ============================================================ */
#loader {
  position: fixed; inset: 0; z-index: 2000;
  background: var(--bg);
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.7s var(--ease-out);
}
#loader.done { transform: translateY(-100%); }
#loader .loader-logo {
  font-family: var(--font-disp);
  font-size: clamp(1.6rem, 5vw, 2.6rem);
  text-transform: uppercase;
  color: var(--ink);
  transform: skewX(-7deg);
  animation: loaderPulse 1.1s ease infinite alternate;
}
#loader .loader-logo b { color: var(--red); font-weight: inherit; }
@keyframes loaderPulse { from { opacity: 0.55; } to { opacity: 1; } }

/* ============================================================
   Header
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  transition: padding 0.3s ease;
  padding: 18px 0;
}
.site-header::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  transition: background 0.3s ease, backdrop-filter 0.3s ease, box-shadow 0.3s ease;
}
.site-header.scrolled::before {
  background: rgba(8, 9, 11, 0.72);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--line), 0 20px 40px -24px rgba(0,0,0,0.6);
}
.site-header.scrolled {
  padding: 10px 0;
}
.site-header.scrolled .logo-img { height: 44px; }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }

.logo {
  display: inline-flex; align-items: center; gap: 12px;
  text-decoration: none;
}
.logo-img {
  height: 76px;
  width: auto;
  display: block;
  filter: drop-shadow(0 0 14px var(--red-glow));
  transition: transform 0.3s var(--ease-back), height 0.3s ease;
}
.logo:hover .logo-img { transform: translateY(-2px); }

.main-nav { display: flex; align-items: center; gap: 34px; }
.main-nav a.nav-link {
  text-decoration: none;
  font-weight: 600;
  font-size: 0.94rem;
  color: var(--ink);
  position: relative;
  padding: 4px 0;
}
.main-nav a.nav-link::after {
  content: '';
  position: absolute; left: 0; bottom: 0;
  width: 100%; height: 2px;
  background: linear-gradient(90deg, var(--red), var(--teal));
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s var(--ease-out);
}
.main-nav a.nav-link:hover::after { transform: scaleX(1); transform-origin: left; }

.header-cta { display: flex; align-items: center; gap: 14px; }
.header-phone {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 700; font-size: 0.92rem;
  text-decoration: none; color: var(--ink);
  transition: color 0.2s ease;
}
.header-phone:hover { color: var(--teal); }
.header-cta .btn { padding: 11px 22px; font-size: 0.88rem; }

/* burger */
.burger {
  display: none;
  background: none; border: 0;
  width: 44px; height: 44px;
  position: relative; z-index: 1001;
}
.burger span {
  display: block;
  width: 26px; height: 3px;
  background: var(--ink);
  margin: 5px auto;
  border-radius: 2px;
  transition: transform 0.3s var(--ease-out), opacity 0.2s ease;
}
.burger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ============================================================
   Hero
   ============================================================ */
.hero {
  min-height: min(100svh, 1000px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  padding-top: 130px;
  overflow: hidden;
  z-index: 1;
}
.hero-bg-word {
  position: absolute;
  top: 12%;
  left: 50%;
  transform: translateX(-50%) skewX(-7deg);
  font-family: var(--font-disp);
  font-size: clamp(6rem, 22vw, 19rem);
  text-transform: uppercase;
  line-height: 1;
  white-space: nowrap;
  color: transparent;
  -webkit-text-stroke: 2px rgba(255, 255, 255, 0.07);
  pointer-events: none;
  user-select: none;
}
.hero-inner {
  position: relative;
  text-align: center;
  z-index: 2;
}
.hero-kicker {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 18px;
  font-family: var(--font-mono);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 26px;
  backdrop-filter: blur(8px);
}
.hero-kicker .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 12px var(--teal-glow);
  animation: blink 1.6s ease infinite;
}
@keyframes blink { 0%,100% { opacity: 1; } 50% { opacity: 0.25; } }

/* conversational lead-in above the headline */
.hero-eyebrow {
  max-width: 660px;
  margin: 0 auto 20px;
  color: var(--ink-soft);
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  line-height: 1.55;
}
.hero-eyebrow em {
  font-style: italic;
  font-weight: 600;
  color: var(--ink);
}
/* short benefit headline: display face, mixed case so the sentence stays readable */
.hero-title {
  font-family: var(--font-disp);
  text-transform: none;
  line-height: 1.02;
  letter-spacing: -0.02em;
  font-size: clamp(1.75rem, 4.2vw, 3.4rem);
  max-width: 1060px;
  margin: 0 auto;
  position: relative;
  /* both sentences wrap on phones — balance keeps the split lines even */
  text-wrap: balance;
}
.hero-title em {
  font-style: normal;
  background: linear-gradient(100deg, #FF6669 0%, var(--red) 45%, var(--red-deep) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* service quick-picks under the headline — jump to the form with the chip preselected */
/* Grid, not flex-wrap: fixed column counts can never produce a stray 3+1 row
   or collapse to one-per-column when the label or font scales up. */
.hero-services {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  max-width: 560px;
  margin: 30px auto 0;
}
.hero-svc {
  display: flex; flex-direction: column; align-items: center; gap: 9px;
  min-width: 0;
  padding: 14px 12px;
  border-radius: 16px;
  border: 1px solid transparent;
  text-decoration: none;
  color: var(--ink-soft);
  transition: transform 0.3s var(--ease-out), color 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}
.hero-svc .ico {
  width: 54px; height: 54px;
  border-radius: 16px;
  background: rgba(255, 60, 64, 0.12);
  border: 1px solid rgba(255, 60, 64, 0.22);
  color: #FF6669;
  display: grid; place-items: center;
  transition: background 0.25s ease, box-shadow 0.25s ease, transform 0.3s var(--ease-back);
}
/* icons carry fine detail (tread, caliper, springs) — keep them large enough to read */
.hero-svc .ico svg { width: 29px; height: 29px; }
.hero-svc span:last-child { font-weight: 700; font-size: 0.87rem; }
.hero-svc:hover {
  color: var(--ink);
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.03);
  transform: translateY(-4px);
}
.hero-svc:hover .ico {
  background: rgba(255, 60, 64, 0.2);
  box-shadow: 0 0 24px -6px var(--red-glow);
  transform: scale(1.06);
}
.hero-sub {
  max-width: 620px;
  margin: 24px auto 30px;
  color: var(--ink-soft);
  font-size: clamp(1rem, 1.6vw, 1.14rem);
}
.hero-micro {
  margin-top: 16px;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
}
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* hero visual */
.hero-visual {
  position: relative;
  max-width: 900px;
  margin: 56px auto 0;
  z-index: 2;
  padding: 0 28px;
}
.hero-photo {
  border-radius: 26px 26px 0 0;
  overflow: hidden;
  box-shadow: var(--shadow-lg), 0 0 0 1px var(--line-strong);
  position: relative;
  transform: translateZ(0);
}
.hero-photo img {
  width: 100%;
  height: clamp(260px, 42vw, 430px);
  object-fit: cover;
  transform: scale(1.16);
  transition: transform 0.2s linear;
  will-change: transform;
  filter: grayscale(0.15) brightness(0.82) contrast(1.12);
}
.hero-photo::after {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(8,9,11,0) 45%, rgba(8,9,11,0.75)),
    linear-gradient(100deg, rgba(255, 60, 64,0.28), rgba(53,224,192,0.16) 70%);
  mix-blend-mode: hard-light;
  pointer-events: none;
}

/* hero chips: spring-in entrance (staggered), then JS drifts them apart on
   scroll at different speeds — intentionally NOT the floaty loop used elsewhere */
.hero-chip {
  position: absolute;
  background: rgba(18, 20, 23, 0.75);
  border: 1px solid var(--line);
  backdrop-filter: blur(10px);
  border-radius: 14px;
  box-shadow: var(--shadow-md);
  padding: 12px 18px;
  display: flex; align-items: center; gap: 10px;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--ink);
  z-index: 4;
  animation: chipIn 0.9s var(--ease-back) backwards;
  will-change: transform;
}
.hero-chip small { display: block; font-weight: 600; color: var(--muted); font-size: 0.72rem; letter-spacing: 0.06em; text-transform: uppercase; }
.hero-chip .big { font-family: var(--font-disp); font-size: 1.15rem; line-height: 1; }
.chip-rating { top: -26px; left: -8px; animation-delay: 0.7s; }
.chip-years  { top: 34%; right: -14px; animation-delay: 0.9s; }
.chip-open   { bottom: 36px; left: -20px; animation-delay: 1.1s; }
.chip-star { color: #FFC24B; }
.chip-check {
  width: 22px; height: 22px; flex: none;
  border-radius: 50%;
  background: rgba(53, 224, 192, 0.16);
  color: var(--teal);
  display: grid; place-items: center;
}
@keyframes chipIn {
  from { opacity: 0; transform: translateY(30px) rotate(-5deg) scale(0.8); }
  to   { opacity: 1; transform: none; }
}

/* hero price bar */
.hero-pricebar {
  position: relative;
  z-index: 3;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 28px;
}
.hero-pricebar-inner {
  background: rgba(18, 20, 23, 0.85);
  backdrop-filter: blur(14px);
  border: 1px solid var(--line);
  border-top: 1px solid rgba(255,255,255,0.18);
  color: var(--ink);
  border-radius: 0 0 26px 26px;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.priceslot {
  padding: 26px 34px;
  display: flex; align-items: center; gap: 18px;
  position: relative;
}
.priceslot + .priceslot::before {
  content: '';
  position: absolute; left: 0; top: 20%; bottom: 20%;
  width: 1px; background: var(--line);
}
.priceslot .tag {
  font-family: var(--font-mono);
  font-size: 0.68rem; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ink-soft);
}
.priceslot .amount {
  font-family: var(--font-disp);
  font-size: clamp(1.5rem, 3.4vw, 2.3rem);
  color: var(--red);
  transform: skewX(-7deg);
  filter: brightness(1.3);
  text-shadow: 0 0 24px var(--red-glow);
}
.priceslot .desc { font-size: 0.82rem; color: var(--ink-soft); line-height: 1.45; }

/* ============================================================
   Marquee
   ============================================================ */
.marquee {
  background: linear-gradient(90deg, var(--red-deep), var(--red-dark));
  color: var(--ink);
  overflow: hidden;
  padding: 16px 0;
  transform: rotate(-1.3deg) scale(1.02);
  margin: 70px 0 0;
  box-shadow: 0 20px 44px -20px var(--red-glow);
  position: relative;
  z-index: 1;
}
.marquee-track {
  display: flex;
  gap: 48px;
  width: max-content;
  animation: marquee 26s linear infinite;
}
.marquee span {
  font-family: var(--font-disp);
  text-transform: uppercase;
  font-size: 1.15rem;
  white-space: nowrap;
  display: inline-flex; align-items: center; gap: 48px;
}
.marquee .sep { width: 9px; height: 9px; background: var(--teal); border-radius: 50%; flex: none; box-shadow: 0 0 8px var(--teal-glow); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ============================================================
   Services
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}
/* full-width banner-style card (Kupplung & Getriebe) */
.service-card.wide { grid-column: 1 / -1; }
.service-card.wide .wide-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.service-card.wide .wide-inner > div { max-width: 640px; }
.service-card.wide .service-link { flex: none; margin-top: 0; }
.service-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  backdrop-filter: blur(10px);
  transition: transform 0.45s var(--ease-out), box-shadow 0.45s ease, border-color 0.35s ease;
}
.service-card:hover { transform: translateY(-8px); border-color: var(--red); box-shadow: var(--shadow-lg), 0 0 40px -12px var(--red-glow); }
.service-media { position: relative; overflow: hidden; aspect-ratio: 16 / 8.2; }
.service-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(0.2) brightness(0.8) contrast(1.1);
  transition: transform 0.7s var(--ease-out), filter 0.5s ease;
}
.service-media::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(200deg, rgba(255, 60, 64,0.22), rgba(8,9,11,0.35) 60%);
  mix-blend-mode: hard-light;
  pointer-events: none;
}
.service-card:hover .service-media img { transform: scale(1.07); filter: grayscale(0) brightness(0.9) contrast(1.1); }
.service-price {
  position: absolute;
  left: 18px; bottom: 18px;
  background: rgba(8,9,11,0.85);
  border: 1px solid var(--line-strong);
  color: var(--ink);
  border-radius: 999px;
  padding: 8px 18px;
  font-weight: 800;
  font-size: 0.88rem;
  z-index: 1;
}
.service-price b { color: #FF8A6E; }
.service-body { padding: 26px 28px 30px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.service-body h3 {
  font-family: var(--font-disp);
  text-transform: uppercase;
  font-size: 1.35rem;
}
.service-body p { color: var(--ink-soft); font-size: 0.95rem; flex: 1; }
/* the pain-point line is the hook — it leads the card, not the description */
.service-body .service-problem {
  color: var(--ink);
  font-weight: 700;
  font-size: 1.02rem;
  line-height: 1.4;
  flex: none;
  margin-bottom: 2px;
}
.service-card.highlight .service-body .service-problem { color: var(--white); }

/* illustrated media slot for services without a photo (Bremsen, Kupplung) */
.graphic-media {
  display: grid; place-items: center;
  background:
    radial-gradient(circle at 50% 45%, rgba(255, 60, 64, 0.14), transparent 62%),
    linear-gradient(160deg, rgba(255,255,255,0.05), rgba(255,255,255,0.01));
  border-bottom: 1px solid var(--line);
}
.graphic-media .svc-art {
  width: 62%;
  max-width: 190px;
  color: var(--red);
  opacity: 0.85;
  filter: drop-shadow(0 0 26px var(--red-glow));
}
.spin-slow { animation: spin 26s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.service-card:hover .graphic-media .svc-art { opacity: 1; }
.service-link {
  display: inline-flex; align-items: center; gap: 10px;
  font-weight: 700; font-size: 0.9rem;
  color: var(--teal);
  text-decoration: none;
  margin-top: 6px;
}
.service-link .arr {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, #FF4A4E, var(--red-deep));
  color: var(--white);
  display: grid; place-items: center;
  transition: transform 0.35s var(--ease-back);
}
.service-card:hover .service-link .arr { transform: rotate(-45deg); }

/* highlight card (Bremsen) */
.service-card.highlight {
  background: linear-gradient(150deg, var(--red) 0%, var(--red-dark) 100%);
  border-color: rgba(255,255,255,0.14);
  color: var(--white);
  box-shadow: 0 0 60px -20px var(--red-glow);
}
.service-card.highlight:hover { box-shadow: var(--shadow-lg), 0 0 70px -14px var(--red-glow); }
.service-card.highlight .service-body h3 { color: var(--white); }
.service-card.highlight .service-body p { color: rgba(255, 255, 255, 0.85); }
.service-card.highlight .service-link { color: var(--white); }
.service-card.highlight .service-link .arr { background: rgba(255,255,255,0.16); color: var(--white); }
.highlight-free {
  font-family: var(--font-disp);
  text-transform: uppercase;
  font-size: clamp(2.2rem, 4vw, 3rem);
  line-height: 0.95;
  transform: skewX(-7deg);
  padding: 34px 28px 0;
  text-shadow: 3px 3px 0 rgba(0, 0, 0, 0.35);
}
.highlight-disc {
  position: absolute;
  right: -46px; top: -46px;
  width: 190px; height: 190px;
  opacity: 0.18;
  animation: spin 22s linear infinite;
}

/* ============================================================
   Stats band
   ============================================================ */
.stats-band {
  background: var(--bg-2);
  color: var(--ink);
  padding: 90px 0;
  position: relative; z-index: 1;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}
.stat .num {
  font-family: var(--font-disp);
  font-size: clamp(2.6rem, 5.4vw, 4.2rem);
  color: var(--red);
  filter: brightness(1.3);
  transform: skewX(-7deg);
  display: inline-block;
  line-height: 1;
  text-shadow: 0 0 30px var(--red-glow);
}
.stat:nth-child(2n) .num { color: var(--teal); text-shadow: 0 0 30px var(--teal-glow); }
.stat .num sup { font-size: 0.5em; }
.stat .lbl {
  margin-top: 10px;
  font-family: var(--font-mono);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

/* ============================================================
   Why us
   ============================================================ */
.why-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 70px;
  align-items: center;
  position: relative; z-index: 1;
}
.why-photo { position: relative; }
.why-photo .frame {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transform: rotate(-2deg);
  position: relative;
}
.why-photo .frame img { width: 100%; height: 460px; object-fit: cover; filter: grayscale(0.15) brightness(0.82) contrast(1.1); }
.why-photo .frame::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(200deg, rgba(53,224,192,0.2), rgba(8,9,11,0.35) 65%);
  mix-blend-mode: hard-light;
}
.why-photo .accent-box {
  position: absolute;
  inset: 22px -22px -22px 22px;
  border: 2px solid var(--teal);
  border-radius: var(--radius);
  z-index: -1;
  transform: rotate(1.5deg);
  box-shadow: 0 0 40px -10px var(--teal-glow);
}
.why-stamp {
  position: absolute;
  bottom: -30px;
  right: -12px;
  background: linear-gradient(135deg, #FF4A4E, var(--red-deep));
  color: var(--white);
  border-radius: 16px;
  padding: 18px 24px;
  box-shadow: var(--shadow-md), 0 0 30px -8px var(--red-glow);
  transform: rotate(3deg);
  font-weight: 700;
}
.why-stamp .big { font-family: var(--font-disp); font-size: 1.7rem; display: block; line-height: 1; }
.why-stamp small { font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; opacity: 0.85; }

.checklist { list-style: none; display: grid; gap: 18px; margin-top: 34px; }
.checklist li {
  display: flex; gap: 16px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 18px 22px;
  backdrop-filter: blur(10px);
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s ease, border-color 0.3s ease;
}
.checklist li:hover { transform: translateX(8px); border-color: var(--teal); box-shadow: var(--shadow-md), 0 0 30px -14px var(--teal-glow); }
.checklist .check {
  flex: none;
  width: 40px; height: 40px;
  border-radius: 12px;
  background: linear-gradient(135deg, #FF4A4E, var(--red-deep));
  color: var(--white);
  display: grid; place-items: center;
}
.checklist b { display: block; font-size: 1.02rem; }
.checklist span.sub { color: var(--ink-soft); font-size: 0.9rem; }

/* ============================================================
   FAQ (tabs + accordion)
   ============================================================ */
.faq-tabs {
  display: flex; flex-wrap: wrap; gap: 12px;
  margin-bottom: 40px;
}
.faq-tab {
  border: 2px solid var(--line-strong);
  background: rgba(255,255,255,0.02);
  color: var(--ink);
  border-radius: 999px;
  padding: 11px 24px;
  font-weight: 700;
  font-size: 0.92rem;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.3s var(--ease-back);
}
.faq-tab:hover { transform: translateY(-2px); border-color: var(--teal); }
.faq-tab.active { background: linear-gradient(135deg, #FF4A4E, var(--red-deep)); border-color: transparent; color: var(--white); }

.faq-panel { display: none; }
.faq-panel.active { display: grid; gap: 14px; animation: fadeUp 0.45s var(--ease-out); }
@keyframes fadeUp { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }

.faq-item {
  background: var(--card);
  border: 1px solid var(--line);
  border-left: 3px solid transparent;
  border-radius: 14px;
  overflow: hidden;
  backdrop-filter: blur(10px);
  transition: border-color 0.3s ease;
}
.faq-item[open] { border-color: var(--red); border-left-color: var(--red); }
.faq-item summary {
  list-style: none;
  display: flex; justify-content: space-between; align-items: center; gap: 18px;
  padding: 20px 26px;
  font-weight: 700;
  cursor: pointer;
  user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .plus {
  flex: none;
  width: 30px; height: 30px;
  border-radius: 50%;
  border: 2px solid var(--line-strong);
  display: grid; place-items: center;
  font-weight: 800;
  transition: transform 0.35s var(--ease-out), background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}
.faq-item[open] summary .plus {
  transform: rotate(45deg);
  background: var(--red); border-color: var(--red); color: var(--white);
}
.faq-item .faq-body { padding: 0 26px 22px; color: var(--ink-soft); font-size: 0.96rem; }

/* ============================================================
   Testimonials
   ============================================================ */
.reviews { background: var(--bg-2); position: relative; z-index: 1; border-top: 1px solid var(--line); }
/* review wall — grid, not a one-at-a-time slider, so the section reads as "many" */
.rating-band {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 24px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px 30px;
  margin-bottom: 26px;
  backdrop-filter: blur(10px);
}
.rating-score { display: flex; align-items: center; gap: 18px; }
.rating-score .score {
  font-family: var(--font-disp);
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  line-height: 1;
  background: linear-gradient(100deg, #FF6669, var(--red-deep));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.rating-score .score-meta { display: flex; flex-direction: column; gap: 4px; }
.rating-score .stars { color: #FFC24B; letter-spacing: 3px; font-size: 1.05rem; }
.rating-score .src {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--ink-soft); font-size: 0.88rem; font-weight: 600;
}
.g-logo { flex: none; display: block; }

.review-wall {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.review-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 28px 26px;
  display: flex; flex-direction: column; gap: 16px;
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-md);
  transition: transform 0.4s var(--ease-out), border-color 0.3s ease;
}
.review-card:hover { transform: translateY(-5px); border-color: var(--line-strong); }
.review-top { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.review-stars { color: #FFC24B; letter-spacing: 3px; font-size: 1rem; }
.review-text { font-size: 1rem; font-weight: 500; line-height: 1.6; color: var(--ink); flex: 1; }
.review-who { display: flex; align-items: center; gap: 14px; font-weight: 700; font-size: 0.92rem; }
.review-who .avatar {
  width: 42px; height: 42px; border-radius: 50%; flex: none;
  background: linear-gradient(135deg, var(--teal), var(--teal-deep));
  color: var(--bg);
  display: grid; place-items: center;
  font-family: var(--font-disp);
}
.review-who small { display: block; color: var(--muted); font-weight: 600; }

.trust-row {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 12px;
  margin-top: 30px;
}
.trust-item {
  display: inline-flex; align-items: center; gap: 9px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 11px 20px;
  font-weight: 600; font-size: 0.88rem;
  color: var(--ink-soft);
}
.trust-item svg { color: var(--teal); flex: none; }

/* ============================================================
   CTA band
   ============================================================ */
.cta-band {
  background: linear-gradient(135deg, var(--red-deep), var(--red-dark) 70%);
  color: var(--white);
  padding: 90px 0;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.cta-band::before, .cta-band::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.14);
}
.cta-band::before { width: 420px; height: 420px; top: -220px; left: -140px; }
.cta-band::after { width: 520px; height: 520px; bottom: -260px; right: -120px; border-color: rgba(53,224,192,0.28); }
.cta-inner { position: relative; z-index: 2; text-align: center; max-width: 760px; margin: 0 auto; }
.cta-inner h2 {
  font-family: var(--font-disp);
  text-transform: uppercase;
  font-size: clamp(2rem, 5vw, 3.6rem);
  line-height: 0.95;
  margin-bottom: 18px;
  text-shadow: 3px 3px 0 rgba(0, 0, 0, 0.35);
}
.cta-inner p { color: rgba(255, 255, 255, 0.88); font-size: 1.08rem; margin-bottom: 34px; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   Contact + form
   ============================================================ */
/* stacked layout: form is the focus, info cards follow below it */
.contact-stack {
  display: flex;
  flex-direction: column;
  position: relative; z-index: 1;
}
.contact-stack .section-head { margin-bottom: 40px; }
.contact-stack .form-card,
.contact-stack .contact-info { width: 100%; max-width: 980px; margin-left: auto; margin-right: auto; }
.contact-info { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 22px; }
.info-card { flex-direction: column; }
.info-card {
  display: flex; gap: 18px; align-items: flex-start;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 20px 22px;
  backdrop-filter: blur(10px);
  transition: transform 0.3s var(--ease-out), border-color 0.3s ease;
}
.info-card:hover { transform: translateY(-4px); border-color: var(--teal); }
.info-card .ico {
  flex: none;
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(53, 224, 192, 0.12);
  color: var(--teal);
  display: grid; place-items: center;
}
.info-card b { display: block; font-size: 0.98rem; margin-bottom: 2px; }
.info-card p, .info-card a { color: var(--ink-soft); font-size: 0.92rem; text-decoration: none; }
.info-card a:hover { color: var(--teal); }
.hours-row { display: flex; justify-content: space-between; gap: 20px; font-size: 0.92rem; color: var(--ink-soft); }
.hours-row b { color: var(--ink); font-weight: 700; }
.hours-row .closed { color: var(--red); font-weight: 700; }
.maps-link {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 6px;
  font-weight: 700; font-size: 0.88rem;
  color: var(--teal) !important;
}

/* form card */
.form-card {
  /* The corner glows are backgrounds, not pseudo-elements, so they clip to the
     rounded box on their own. That lets the card stay overflow:visible and the
     open service dropdown extend past its bottom edge instead of being cut off. */
  background:
    radial-gradient(140px 140px at calc(100% - 20px) 20px, rgba(255, 60, 64, 0.35), transparent 68%),
    radial-gradient(130px 130px at 30px calc(100% + 10px), rgba(53, 224, 192, 0.22), transparent 68%),
    var(--card-solid);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 44px 46px 46px;
  color: var(--ink);
  box-shadow: var(--shadow-lg);
  position: relative;
}
/* matches .section-head h2 exactly, so the card headline reads as a section title */
.form-card h3 {
  font-family: var(--font-disp);
  text-transform: uppercase;
  font-size: clamp(2rem, 4.6vw, 3.4rem);
  line-height: 0.95;
  margin-bottom: 14px;
}
.form-card h3 em {
  font-style: normal;
  background: linear-gradient(100deg, var(--red) 20%, #FF6669 60%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.form-card .form-sub { color: var(--ink-soft); font-size: 0.94rem; margin-bottom: 30px; }

/* z-index 2 keeps the open service dropdown above the submit row below it —
   both are stacking contexts, so the menu cannot escape this one on its own */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; position: relative; z-index: 2; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.field label .opt { color: var(--muted); text-transform: none; letter-spacing: 0; font-weight: 500; font-family: var(--font-body); }
.field input, .field select, .field textarea {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 13px 16px;
  color: var(--ink);
  font-family: inherit;
  font-size: 0.95rem;
  transition: border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
  width: 100%;
}
.field input::placeholder, .field textarea::placeholder { color: var(--muted); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--red);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 0 0 3px var(--red-glow);
}
.field select { appearance: none; -webkit-appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23F4F1EA' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; }
.field select option { background: var(--card-solid); color: var(--ink); }
.field textarea { min-height: 110px; resize: vertical; }

/* file dropzone */
.dropzone {
  border: 2px dashed var(--line-strong);
  border-radius: 12px;
  padding: 20px;
  display: flex; align-items: center; gap: 16px;
  cursor: pointer;
  transition: border-color 0.25s ease, background 0.25s ease;
  position: relative;
}
.dropzone:hover, .dropzone.drag { border-color: var(--red); background: rgba(255, 60, 64, 0.06); }
.dropzone input[type='file'] { position: absolute; inset: 0; opacity: 0; cursor: pointer; width: 100%; height: 100%; }
.dropzone .dz-ico {
  flex: none;
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(255, 60, 64, 0.16);
  color: #FF8A6E;
  display: grid; place-items: center;
}
.dropzone .dz-text b { display: block; font-size: 0.92rem; }
.dropzone .dz-text span { font-size: 0.8rem; color: var(--ink-soft); }
.dropzone.has-file { border-style: solid; border-color: var(--teal); }
.dropzone.has-file .dz-ico { background: rgba(53, 224, 192, 0.18); color: var(--teal); }

/* service multi-select dropdown — custom, because a native <select multiple>
   cannot be styled and its ctrl-click multi-select is unusable on touch */
.svc-select { position: relative; }
.svc-trigger {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 13px 16px;
  color: var(--ink);
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  text-align: left;
  transition: border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}
.svc-trigger:hover { border-color: var(--line-strong); }
.svc-trigger:focus-visible,
.svc-select.open .svc-trigger {
  outline: none;
  border-color: var(--red);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 0 0 3px var(--red-glow);
}
.svc-trigger-text { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.svc-trigger-text.placeholder { color: var(--muted); font-weight: 500; }
.svc-caret { flex: none; color: var(--ink-soft); transition: transform 0.3s var(--ease-out); }
.svc-select.open .svc-caret { transform: rotate(180deg); }

.svc-menu {
  position: absolute; top: calc(100% + 8px); left: 0; right: 0;
  z-index: 30;
  background: #171A1E;
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  padding: 6px;
  box-shadow: var(--shadow-lg);
  display: flex; flex-direction: column;
  max-height: 360px;
  overflow-y: auto;
  opacity: 0;
  transform: translateY(-8px) scale(0.98);
  transform-origin: top center;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.25s var(--ease-out);
}
.svc-select.open .svc-menu { opacity: 1; transform: none; pointer-events: auto; }
.svc-option {
  display: flex; align-items: center; gap: 12px;
  background: none; border: 0;
  border-radius: 9px;
  padding: 11px 12px;
  color: var(--ink-soft);
  font-family: inherit; font-size: 0.93rem; font-weight: 600;
  text-align: left;
  transition: background 0.18s ease, color 0.18s ease;
}
.svc-option:hover, .svc-option:focus-visible { outline: none; background: rgba(255, 255, 255, 0.06); color: var(--ink); }
.svc-option .svc-box {
  flex: none;
  width: 20px; height: 20px;
  border-radius: 6px;
  border: 1.5px solid var(--line-strong);
  display: grid; place-items: center;
  color: transparent;
  transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}
.svc-option[aria-selected="true"] { color: var(--ink); }
.svc-option[aria-selected="true"] .svc-box {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}
/* invisible mirror input so the browser enforces "required" on the selection */
.svc-select .chips-value {
  position: absolute; left: 18px; bottom: 4px;
  width: 1px; height: 1px;
  opacity: 0; border: 0; padding: 0;
  pointer-events: none;
}

.form-submit-row { margin-top: 22px; display: flex; align-items: center; gap: 20px; flex-wrap: wrap; position: relative; z-index: 1; }
.form-submit-row .btn { padding: 16px 38px; font-size: 1rem; }
.form-note { font-size: 0.78rem; color: var(--muted); max-width: 320px; line-height: 1.5; }
.form-note a { color: var(--ink-soft); }

/* success message rendered by forms.js */
.swelis-form-success {
  background: rgba(53, 224, 192, 0.12);
  border: 1px solid rgba(53, 224, 192, 0.4);
  color: #B7F3E4;
  border-radius: 14px;
  padding: 34px 30px;
  font-size: 1.05rem;
  font-weight: 600;
  text-align: center;
  animation: fadeUp 0.5s var(--ease-out);
}

/* ============================================================
   Footer
   ============================================================ */
.site-footer {
  background: var(--cream-3);
  color: var(--ink-soft);
  padding: 80px 0 0;
  margin-top: 110px;
  position: relative; z-index: 1;
  border-top: 1px solid var(--line);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 60px;
}
.footer-brand .logo-img { height: 92px; }
.footer-brand p { margin-top: 18px; font-size: 0.92rem; max-width: 300px; }
.footer-col h4 {
  color: var(--ink);
  font-family: var(--font-mono);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.footer-col ul { list-style: none; display: grid; gap: 12px; }
.footer-col a { color: var(--ink-soft); text-decoration: none; font-size: 0.94rem; transition: color 0.2s ease, padding-left 0.25s var(--ease-out); }
.footer-col a:hover { color: var(--teal); padding-left: 6px; }
.footer-col li { font-size: 0.94rem; }
.footer-bottom {
  border-top: 1px solid var(--line);
  padding: 24px 0;
  display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap;
  font-size: 0.82rem;
  color: var(--muted);
}
.footer-bottom a { color: var(--ink-soft); text-decoration: none; margin-left: 18px; }
.footer-bottom a:hover { color: var(--ink); }

/* back-to-top */
#toTop {
  position: fixed;
  right: 26px; bottom: 26px;
  width: 52px; height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, #FF4A4E, var(--red-deep));
  color: var(--white);
  border: 0;
  display: grid; place-items: center;
  box-shadow: var(--shadow-md), 0 0 24px -8px var(--red-glow);
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s var(--ease-back), box-shadow 0.2s ease;
  z-index: 800;
}
#toTop.show { opacity: 1; transform: none; pointer-events: auto; }
#toTop:hover { box-shadow: var(--shadow-md), 0 0 34px -6px var(--red-glow); }

/* theme toggle (links between light/dark variant pages) */
.theme-toggle {
  position: fixed;
  left: 26px; bottom: 26px;
  z-index: 800;
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--card-solid);
  border: 1px solid var(--line-strong);
  color: var(--ink);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.01em;
  padding: 12px 18px 12px 14px;
  border-radius: 999px;
  box-shadow: var(--shadow-md);
  transition: transform 0.3s var(--ease-back), box-shadow 0.3s ease, border-color 0.2s ease;
}
.theme-toggle svg { flex: none; color: #FFC24B; }
.theme-toggle:hover { transform: translateY(-3px); border-color: var(--teal); box-shadow: var(--shadow-md), 0 0 30px -10px var(--teal-glow); }
@media (max-width: 520px) { .theme-toggle span { display: none; } .theme-toggle { padding: 12px; } }

/* ============================================================
   Legal pages (impressum / datenschutz) — kept for parity
   ============================================================ */
.legal-main { max-width: 820px; margin: 0 auto; padding: 170px 28px 100px; position: relative; z-index: 1; }
.legal-main h1 {
  font-family: var(--font-disp);
  text-transform: uppercase;
  font-size: clamp(2.4rem, 6vw, 4rem);
  line-height: 0.95;
  margin: 16px 0 12px;
}
.legal-main h1 em { font-style: normal; color: var(--red); }
.legal-lead { color: var(--ink-soft); margin-bottom: 44px; max-width: 560px; }
.legal-block {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 38px;
  margin-bottom: 22px;
  backdrop-filter: blur(10px);
  transition: border-color 0.3s ease, transform 0.3s var(--ease-out);
}
.legal-block:hover { border-color: rgba(255, 60, 64, 0.5); }
.legal-block h2 {
  font-family: var(--font-disp);
  text-transform: uppercase;
  font-size: 1.15rem;
  margin-bottom: 14px;
  display: flex; align-items: center; gap: 12px;
}
.legal-block h2::before {
  content: '';
  width: 22px; height: 3px;
  background: var(--red);
  flex: none;
}
.legal-block h3 { font-size: 1rem; margin: 20px 0 8px; }
.legal-block p, .legal-block li { color: var(--ink-soft); font-size: 0.96rem; margin-bottom: 8px; }
.legal-block ul { padding-left: 20px; }
.legal-block a { color: var(--teal); text-decoration: none; font-weight: 600; }
.legal-block a:hover { text-decoration: underline; }

/* ============================================================
   Reveal-on-scroll
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
  transition-delay: var(--d, 0s);
}
.reveal.in { opacity: 1; transform: none; }
.reveal-left { transform: translateX(-46px); }
.reveal-right { transform: translateX(46px); }
.reveal-left.in, .reveal-right.in { transform: none; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1020px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr; gap: 80px; }
  .why-photo { max-width: 560px; }
  .contact-info { grid-template-columns: 1fr; }
  .review-wall { grid-template-columns: repeat(2, 1fr); }
  .info-card { flex-direction: row; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 820px) {
  .section { padding: 80px 0; }
  /* Ambient blobs are heavy on mobile GPUs (large blur + infinite animation
     + grain composite); trim them down instead of cutting the look entirely. */
  .bg-fx .blob { filter: blur(70px); animation: none; }
  .bg-fx .grain { display: none; }
  .main-nav {
    position: fixed;
    inset: 0;
    overflow-y: auto;
    background: var(--bg);
    flex-direction: column;
    justify-content: center;
    gap: 30px;
    transform: translateY(-100%);
    visibility: hidden;
    transition: transform 0.5s var(--ease-out), visibility 0s linear 0.5s;
    z-index: 1000;
  }
  .main-nav.open {
    transform: none;
    visibility: visible;
    transition: transform 0.5s var(--ease-out), visibility 0s linear 0s;
  }
  .main-nav a.nav-link {
    color: var(--ink);
    font-family: var(--font-disp);
    text-transform: uppercase;
    font-size: 1.6rem;
  }
  .burger { display: block; }
  /* booking button stays pinned on mobile — main conversion path for ad traffic */
  .header-cta { gap: 10px; }
  .header-cta .btn { padding: 10px 16px; font-size: 0.8rem; white-space: nowrap; }
  .header-phone { display: none; }
  .hero-bg-word { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .hero-pricebar-inner { grid-template-columns: 1fr; }
  .priceslot + .priceslot::before { left: 10%; right: 10%; top: 0; bottom: auto; width: auto; height: 1px; }
  .form-grid { grid-template-columns: 1fr; }
  .form-card { padding: 34px 26px 38px; }
  .review-wall { grid-template-columns: 1fr; }
  .review-card { padding: 26px 24px; }
  .rating-band { justify-content: center; text-align: center; }
  .chip-years { display: none; }
  .why-photo .frame img { height: 340px; }
  .legal-block { padding: 26px 22px; }
}

@media (max-width: 520px) {
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .hero-chip { display: none; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .trust-item { font-size: 0.82rem; padding: 9px 15px; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-bottom a { margin: 0 9px; }
}

/* Service picks: 4-across stays down to larger phones, where the tiles just get
   more compact. Only genuinely narrow phones fall back to 2x2 — never 1 per row. */
@media (max-width: 620px) {
  .hero-services { gap: 6px; max-width: 460px; }
  .hero-svc { padding: 12px 4px; gap: 7px; }
  .hero-svc .ico { width: 46px; height: 46px; border-radius: 13px; }
  .hero-svc .ico svg { width: 25px; height: 25px; }
  .hero-svc span:last-child { font-size: 0.74rem; }
}
@media (max-width: 399px) {
  .hero-services { grid-template-columns: repeat(2, minmax(0, 1fr)); max-width: 300px; }
  .hero-svc { padding: 13px 8px; }
  .hero-svc span:last-child { font-size: 0.8rem; }
}

/* ============================================================
   Reduced motion
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .marquee-track { animation: none; }
  .bg-fx .blob { animation: none; }
}
