/* ============================================================
   ProCars Oldenburg — main stylesheet
   Cream/red editorial look, heavy display type, motion-first
   ============================================================ */

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

:root {
  --cream:      #F6E9D6;
  --cream-2:    #F0DEC3;
  --cream-3:    #EAD4B4;
  --ink:        #1E1611;
  --ink-soft:   #4A3D33;
  --muted:      #8A7A6A;
  --red:        #D5432C;
  --red-deep:   #B23320;
  --red-dark:   #8E2717;
  --white:      #FFFFFF;
  --card:       #FDF6EA;
  --line:       rgba(30, 22, 17, 0.14);
  --shadow-lg:  0 30px 60px -20px rgba(30, 22, 17, 0.35);
  --shadow-md:  0 16px 40px -16px rgba(30, 22, 17, 0.28);
  --radius:     18px;
  --font-body:  'Archivo', system-ui, sans-serif;
  --font-disp:  'Archivo Black', 'Archivo', system-ui, sans-serif;
  --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; }
html:focus-within { scroll-behavior: smooth; }

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

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; }

/* ---------- 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(30, 22, 17, 0.22);
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red);
}
.kicker::before {
  content: '';
  width: 34px; height: 2px;
  background: var(--red);
}

.section { padding: 110px 0; position: relative; }
.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; color: var(--red); }
.section-head p { color: var(--ink-soft); font-size: 1.05rem; max-width: 560px; }

/* ---------- 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: var(--red); color: var(--white); box-shadow: 0 10px 26px -10px rgba(213, 67, 44, 0.7); }
.btn-red::after {
  content: '';
  position: absolute; inset: 0; z-index: -1;
  background: var(--red-deep);
  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 16px 34px -10px rgba(178, 51, 32, 0.75); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 2px solid var(--ink);
}
.btn-ghost:hover { background: var(--ink); color: var(--cream); transform: translateY(-2px); }
.btn-light { background: var(--white); color: var(--red-deep); }
.btn-light:hover { transform: translateY(-2px); box-shadow: 0 14px 30px -12px rgba(0,0,0,0.4); }

/* ============================================================
   Preloader
   ============================================================ */
#loader {
  position: fixed; inset: 0; z-index: 2000;
  background: var(--ink);
  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(--cream);
  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;
}
/* Blur/background lives on a pseudo-element, not .site-header itself, so the
   header never gets backdrop-filter/transform — which would otherwise turn it
   into a containing block for #mainNav's position:fixed mobile overlay. */
.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(246, 233, 214, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--line), 0 12px 30px -18px rgba(30,22,17,0.3);
}
.site-header.scrolled {
  padding: 10px 0;
}
.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-badge {
  background: var(--red);
  color: var(--white);
  font-family: var(--font-disp);
  text-transform: uppercase;
  font-size: 1.02rem;
  letter-spacing: 0.01em;
  padding: 7px 14px 6px;
  transform: skewX(-7deg);
  border-radius: 4px;
  box-shadow: 3px 3px 0 rgba(30, 22, 17, 0.85);
  transition: transform 0.3s var(--ease-back);
}
.logo:hover .logo-badge { transform: skewX(-7deg) translateY(-2px); }
.logo-sub {
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.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: var(--red);
  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(--red); }
.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 { background: var(--cream); }
.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;
}
.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(30, 22, 17, 0.10);
  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(30, 22, 17, 0.06);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 18px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 26px;
}
.hero-kicker .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--red);
  animation: blink 1.6s ease infinite;
}
@keyframes blink { 0%,100% { opacity: 1; } 50% { opacity: 0.25; } }

.hero-title {
  font-family: var(--font-disp);
  text-transform: uppercase;
  line-height: 0.88;
  position: relative;
  margin-bottom: 8px;
}
.hero-title .line { display: block; overflow: hidden; }
.hero-title .word { display: inline-block; transform: skewX(-7deg); }
.hero-title .l1 {
  font-size: clamp(3.4rem, 12vw, 10.5rem);
  color: var(--red);
  text-shadow: 4px 4px 0 rgba(30, 22, 17, 0.9);
  position: relative; z-index: 3;
}
.hero-title .l2 {
  font-size: clamp(2.2rem, 8vw, 7rem);
  color: transparent;
  -webkit-text-stroke: 2.5px rgba(30, 22, 17, 0.75);
  margin-top: -0.04em;
  position: relative;
  z-index: 1;
}
.hero-sub {
  max-width: 620px;
  margin: 22px auto 34px;
  color: var(--ink-soft);
  font-size: clamp(1rem, 1.6vw, 1.14rem);
}
.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);
  position: relative;
  transform: translateZ(0);
}
.hero-photo img {
  width: 100%;
  height: clamp(260px, 42vw, 430px);
  object-fit: cover;
  transform: scale(1.06);
  transition: transform 0.2s linear;
  will-change: transform;
}
.hero-photo::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(30,22,17,0) 55%, rgba(30,22,17,0.45));
  pointer-events: none;
}

/* floating chips */
.hero-chip {
  position: absolute;
  background: var(--white);
  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;
  z-index: 4;
  animation: floaty 5s ease-in-out infinite;
}
.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: 0s; }
.chip-years  { top: 34%; right: -14px; animation-delay: 1.4s; }
.chip-open   { bottom: 36px; left: -20px; animation-delay: 2.6s; }
.chip-star { color: #E8A200; }
@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* rotating badge */
.spin-badge {
  position: absolute;
  right: 34px;
  top: -58px;
  width: 116px; height: 116px;
  z-index: 5;
  text-decoration: none;
  display: grid;
  place-items: center;
  filter: drop-shadow(0 14px 24px rgba(30,22,17,0.35));
  transition: transform 0.4s var(--ease-back);
}
.spin-badge:hover { transform: scale(1.08); }
.spin-badge svg.ring { position: absolute; inset: 0; width: 100%; height: 100%; animation: spin 14s linear infinite; }
.spin-badge .core {
  width: 58px; height: 58px;
  background: var(--red);
  border-radius: 50%;
  display: grid; place-items: center;
  color: var(--white);
}
@keyframes spin { to { transform: rotate(360deg); } }

/* hero price bar (inspo-style) */
.hero-pricebar {
  position: relative;
  z-index: 3;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 28px;
}
.hero-pricebar-inner {
  background: var(--ink);
  color: var(--cream);
  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: rgba(246, 233, 214, 0.18);
}
.priceslot .tag {
  font-size: 0.7rem; font-weight: 800;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(246, 233, 214, 0.6);
}
.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.25);
}
.priceslot .desc { font-size: 0.82rem; color: rgba(246, 233, 214, 0.75); line-height: 1.45; }

/* ============================================================
   Marquee
   ============================================================ */
.marquee {
  background: var(--red);
  color: var(--cream);
  overflow: hidden;
  padding: 16px 0;
  transform: rotate(-1.3deg) scale(1.02);
  margin: 70px 0 0;
  box-shadow: 0 14px 30px -18px rgba(178, 51, 32, 0.8);
}
.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(--cream); border-radius: 50%; flex: none; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ============================================================
   Services
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}
.service-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: transform 0.45s var(--ease-out), box-shadow 0.45s ease;
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.service-media { position: relative; overflow: hidden; aspect-ratio: 16 / 8.2; }
.service-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out);
}
.service-card:hover .service-media img { transform: scale(1.07); }
.service-price {
  position: absolute;
  left: 18px; bottom: 18px;
  background: var(--ink);
  color: var(--cream);
  border-radius: 999px;
  padding: 8px 18px;
  font-weight: 800;
  font-size: 0.88rem;
}
.service-price b { color: #FF7A5C; }
.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; }
.service-link {
  display: inline-flex; align-items: center; gap: 10px;
  font-weight: 700; font-size: 0.9rem;
  color: var(--red-deep);
  text-decoration: none;
  margin-top: 6px;
}
.service-link .arr {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--red);
  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: var(--red); border-color: var(--red-deep); color: var(--white); }
.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: var(--white); color: var(--red); }
.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(30, 22, 17, 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(--ink); color: var(--cream); padding: 90px 0; }
.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;
}
.stat .num sup { font-size: 0.5em; }
.stat .lbl {
  margin-top: 10px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(246, 233, 214, 0.65);
}

/* ============================================================
   Why us
   ============================================================ */
.why-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 70px;
  align-items: center;
}
.why-photo { position: relative; }
.why-photo .frame {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transform: rotate(-2deg);
}
.why-photo .frame img { width: 100%; height: 460px; object-fit: cover; }
.why-photo .accent-box {
  position: absolute;
  inset: 22px -22px -22px 22px;
  border: 2px solid var(--red);
  border-radius: var(--radius);
  z-index: -1;
  transform: rotate(1.5deg);
}
.why-stamp {
  position: absolute;
  bottom: -30px;
  right: -12px;
  background: var(--red);
  color: var(--white);
  border-radius: 16px;
  padding: 18px 24px;
  box-shadow: var(--shadow-md);
  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;
  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(--red); box-shadow: var(--shadow-md); }
.checklist .check {
  flex: none;
  width: 40px; height: 40px;
  border-radius: 12px;
  background: var(--red);
  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(--ink);
  background: transparent;
  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, transform 0.3s var(--ease-back);
}
.faq-tab:hover { transform: translateY(-2px); }
.faq-tab.active { background: var(--ink); color: var(--cream); }

.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-radius: 14px;
  overflow: hidden;
  transition: border-color 0.3s ease;
}
.faq-item[open] { border-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(--ink);
  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(--cream-2); }
.review-slider { position: relative; max-width: 820px; margin: 0 auto; }
.review-track { position: relative; min-height: 320px; }
.review-card {
  position: absolute; inset: 0;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 48px 54px;
  display: flex; flex-direction: column; justify-content: center; gap: 22px;
  opacity: 0;
  transform: translateX(60px) scale(0.97);
  transition: opacity 0.55s var(--ease-out), transform 0.55s var(--ease-out);
  pointer-events: none;
  box-shadow: var(--shadow-md);
}
.review-card.active { opacity: 1; transform: none; pointer-events: auto; }
.review-stars { color: #E8A200; letter-spacing: 4px; font-size: 1.15rem; }
.review-text { font-size: clamp(1.1rem, 2vw, 1.35rem); font-weight: 500; line-height: 1.55; }
.review-who { display: flex; align-items: center; gap: 14px; font-weight: 700; font-size: 0.94rem; }
.review-who .avatar {
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--red);
  color: var(--white);
  display: grid; place-items: center;
  font-family: var(--font-disp);
}
.review-who small { display: block; color: var(--muted); font-weight: 600; }
.review-quote {
  position: absolute;
  top: 26px; right: 40px;
  font-family: var(--font-disp);
  font-size: 6rem;
  line-height: 1;
  color: rgba(213, 67, 44, 0.14);
  user-select: none;
}
.review-nav { display: flex; justify-content: center; align-items: center; gap: 18px; margin-top: 32px; }
.review-btn {
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 2px solid var(--ink);
  background: transparent;
  display: grid; place-items: center;
  transition: background 0.25s ease, color 0.25s ease, transform 0.3s var(--ease-back);
  color: var(--ink);
}
.review-btn:hover { background: var(--ink); color: var(--cream); transform: scale(1.08); }
.review-dots { display: flex; gap: 8px; }
.review-dot {
  width: 10px; height: 10px;
  border-radius: 999px;
  border: 0;
  background: rgba(30, 22, 17, 0.25);
  transition: width 0.3s var(--ease-out), background 0.3s ease;
  padding: 0;
}
.review-dot.active { width: 30px; background: var(--red); }

/* ============================================================
   CTA band
   ============================================================ */
.cta-band {
  background: var(--red);
  color: var(--white);
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}
.cta-band::before, .cta-band::after {
  content: '';
  position: absolute;
  width: 420px; height: 420px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.14);
}
.cta-band::before { top: -220px; left: -140px; }
.cta-band::after { bottom: -260px; right: -120px; width: 520px; height: 520px; }
.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(30, 22, 17, 0.3);
}
.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
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 60px;
  align-items: start;
}
.contact-info { display: grid; gap: 16px; margin-top: 34px; }
.info-card {
  display: flex; gap: 18px; align-items: flex-start;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 20px 22px;
  transition: transform 0.3s var(--ease-out), border-color 0.3s ease;
}
.info-card:hover { transform: translateX(6px); border-color: var(--red); }
.info-card .ico {
  flex: none;
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(213, 67, 44, 0.12);
  color: var(--red);
  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(--red); }
.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(--red-deep) !important;
}

/* form card */
.form-card {
  background: var(--ink);
  border-radius: 24px;
  padding: 44px 46px 46px;
  color: var(--cream);
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.form-card::before {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 280px; height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(213, 67, 44, 0.35), transparent 68%);
  pointer-events: none;
}
.form-card h3 {
  font-family: var(--font-disp);
  text-transform: uppercase;
  font-size: 1.7rem;
  margin-bottom: 6px;
}
.form-card .form-sub { color: rgba(246, 233, 214, 0.65); font-size: 0.94rem; margin-bottom: 30px; }

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(246, 233, 214, 0.72);
}
.field label .opt { color: rgba(246, 233, 214, 0.4); text-transform: none; letter-spacing: 0; font-weight: 600; }
.field input, .field select, .field textarea {
  background: rgba(246, 233, 214, 0.07);
  border: 1px solid rgba(246, 233, 214, 0.18);
  border-radius: 10px;
  padding: 13px 16px;
  color: var(--cream);
  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: rgba(246, 233, 214, 0.35); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--red);
  background: rgba(246, 233, 214, 0.1);
  box-shadow: 0 0 0 3px rgba(213, 67, 44, 0.25);
}
.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='%23F6E9D6' 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(--ink); color: var(--cream); }
.field textarea { min-height: 110px; resize: vertical; }

/* file dropzone */
.dropzone {
  border: 2px dashed rgba(246, 233, 214, 0.3);
  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(213, 67, 44, 0.08); }
.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(213, 67, 44, 0.18);
  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: rgba(246, 233, 214, 0.55); }
.dropzone.has-file { border-style: solid; border-color: #55B685; }
.dropzone.has-file .dz-ico { background: rgba(85, 182, 133, 0.18); color: #7BDCA9; }

/* booking widget inside dark card */
.booking-wrap {
  background: var(--cream);
  border-radius: 14px;
  padding: 8px;
}
.booking-wrap .swb { --swb-accent: #D5432C; --swb-bg: transparent; box-shadow: none !important; border: 0 !important; }

.form-submit-row { margin-top: 22px; display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.form-submit-row .btn { padding: 16px 38px; font-size: 1rem; }
.form-note { font-size: 0.78rem; color: rgba(246, 233, 214, 0.5); max-width: 320px; line-height: 1.5; }
.form-note a { color: rgba(246, 233, 214, 0.75); }

/* success message rendered by forms.js */
.swelis-form-success {
  background: rgba(85, 182, 133, 0.14);
  border: 1px solid rgba(85, 182, 133, 0.5);
  color: #C4EED8;
  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(--ink);
  color: rgba(246, 233, 214, 0.75);
  padding: 80px 0 0;
  margin-top: 110px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 60px;
}
.footer-brand .logo-badge { font-size: 1.15rem; }
.footer-brand p { margin-top: 18px; font-size: 0.92rem; max-width: 300px; }
.footer-col h4 {
  color: var(--cream);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.footer-col ul { list-style: none; display: grid; gap: 12px; }
.footer-col a { color: rgba(246, 233, 214, 0.65); 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(--red); padding-left: 6px; filter: brightness(1.4); }
.footer-col li { font-size: 0.94rem; }
.footer-bottom {
  border-top: 1px solid rgba(246, 233, 214, 0.12);
  padding: 24px 0;
  display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap;
  font-size: 0.82rem;
  color: rgba(246, 233, 214, 0.45);
}
.footer-bottom a { color: rgba(246, 233, 214, 0.6); text-decoration: none; margin-left: 18px; }
.footer-bottom a:hover { color: var(--cream); }

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

/* 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(--ink);
  color: var(--cream);
  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, background 0.2s ease;
}
.theme-toggle svg { flex: none; }
.theme-toggle:hover { transform: translateY(-3px); background: var(--red); box-shadow: 0 16px 34px -12px rgba(213,67,44,0.6); }
@media (max-width: 520px) { .theme-toggle span { display: none; } .theme-toggle { padding: 12px; } }

/* ============================================================
   Legal pages (impressum / datenschutz)
   ============================================================ */
.legal-main { max-width: 820px; margin: 0 auto; padding: 170px 28px 100px; }
.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;
  transition: border-color 0.3s ease, transform 0.3s var(--ease-out);
}
.legal-block:hover { border-color: rgba(213, 67, 44, 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(--red-deep); 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-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 820px) {
  .section { padding: 80px 0; }
  .main-nav {
    position: fixed;
    inset: 0;
    overflow-y: auto;
    background: var(--ink);
    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(--cream);
    font-family: var(--font-disp);
    text-transform: uppercase;
    font-size: 1.6rem;
  }
  .burger { display: block; }
  .header-cta .btn { display: none; }
  .header-phone { 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-card { padding: 36px 28px; }
  .review-track { min-height: 400px; }
  .chip-years { display: none; }
  .spin-badge { width: 92px; height: 92px; top: -44px; right: 16px; }
  .spin-badge .core { width: 46px; height: 46px; }
  .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; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-bottom a { margin: 0 9px; }
}

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