/* =================================================================
   P.A.R.K GbR – Stylesheet
   Premium, technisch-vertrauenswuerdiger Auftritt fuer die
   Vermietung von Autotransportanhaengern.
   Aufbau:
     1. Lokale Schriften (@font-face, DSGVO-konform)
     2. Design-Tokens (CSS-Variablen)
     3. Reset & Basis
     4. Layout-Helfer
     5. Buttons & UI-Elemente
     6. Header / Navigation
     7. Sektionen (Hero, Leistungen, Prozess ...)
     8. Footer
     9. Animationen & Responsive
   ================================================================= */

/* ---------- 1. Lokale Schriften ---------- */
@font-face {
  font-family: "Space Grotesk";
  src: url("assets/fonts/space-grotesk-500.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Space Grotesk";
  src: url("assets/fonts/space-grotesk-700.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("assets/fonts/inter-400.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("assets/fonts/inter-500.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("assets/fonts/inter-600.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("assets/fonts/inter-700.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* ---------- 2. Design-Tokens ---------- */
:root {
  --ink: #0f172a;
  --slate-900: #1e293b;
  --slate-800: #273549;
  --slate-700: #334155;
  --slate-600: #475569;
  --slate-500: #64748b;
  --slate-400: #94a3b8;
  --slate-300: #cbd5e1;
  --slate-200: #e2e8f0;
  --slate-100: #f1f5f9;
  --bg: #f8fafc;
  --surface: #ffffff;
  --accent: #dc2626;
  --accent-dark: #b91c1c;
  --accent-soft: #fef2f2;
  --ok: #16a34a;

  --font-head: "Space Grotesk", "Segoe UI", system-ui, sans-serif;
  --font-body: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;

  --radius-sm: 10px;
  --radius: 18px;
  --radius-lg: 28px;
  --radius-pill: 999px;

  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.06), 0 2px 8px rgba(15, 23, 42, 0.05);
  --shadow: 0 12px 30px -12px rgba(15, 23, 42, 0.18);
  --shadow-lg: 0 30px 60px -25px rgba(15, 23, 42, 0.35);

  --maxw: 1180px;
  --gutter: clamp(1.2rem, 4vw, 3rem);
  --section-y: clamp(4.5rem, 9vw, 8rem);

  --header-h: 76px;
  --z-header: 50;
  --z-overlay: 60;
  --z-menu: 70;
}

/* ---------- 3. Reset & Basis ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--slate-700);
  background: var(--bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--ink);
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin: 0 0 0.5em;
  font-weight: 700;
}
h1 { font-size: clamp(2.2rem, 5.5vw, 3.9rem); }
h2 { font-size: clamp(1.85rem, 4vw, 2.85rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.45rem); }
p { margin: 0 0 1rem; }
a { color: inherit; text-decoration: none; }
img, svg, video { max-width: 100%; display: block; }
ul { margin: 0; padding: 0; list-style: none; }
:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

/* Skip-Link fuer Tastatur-Navigation */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  background: var(--accent);
  color: #fff;
  padding: 0.7rem 1.1rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
}
.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

/* ---------- 4. Layout-Helfer ---------- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.section { padding-block: var(--section-y); }
.section--tight { padding-block: clamp(3rem, 6vw, 5rem); }
.section--dark {
  background: var(--slate-900);
  color: var(--slate-300);
}
.section--dark h2,
.section--dark h3 { color: #fff; }

.section-head {
  max-width: 680px;
  margin-bottom: clamp(2.2rem, 5vw, 3.5rem);
}
.section-head.center {
  margin-inline: auto;
  text-align: center;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--accent);
  display: inline-block;
}
.section-head.center .eyebrow { justify-content: center; }
.lead {
  font-size: 1.15rem;
  color: var(--slate-600);
}
.section--dark .lead { color: var(--slate-400); }

/* ---------- 5. Buttons & UI ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  min-height: 52px;
  padding: 0.85rem 1.6rem;
  border-radius: var(--radius-pill);
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 0.01em;
  cursor: pointer;
  border: 1px solid transparent;
  transition: background-color .2s ease, color .2s ease, border-color .2s ease,
    box-shadow .2s ease, transform .2s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn--primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 12px 24px -10px rgba(220, 38, 38, 0.6);
}
.btn--primary:hover {
  background: var(--accent-dark);
  box-shadow: 0 16px 30px -10px rgba(220, 38, 38, 0.7);
}
.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--slate-300);
}
.btn--ghost:hover {
  border-color: var(--ink);
  background: var(--slate-100);
}
.btn--light {
  background: #fff;
  color: var(--ink);
}
.btn--light:hover { background: var(--slate-100); }
.btn--outline-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.4);
}
.btn--outline-light:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.08);
}
.btn .icon { width: 18px; height: 18px; }

.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 0.9rem;
  border-radius: var(--radius-pill);
  background: var(--surface);
  border: 1px solid var(--slate-200);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--slate-700);
  box-shadow: var(--shadow-sm);
}

/* ---------- 6. Header / Navigation ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  height: var(--header-h);
  z-index: var(--z-header);
  display: flex;
  align-items: center;
  transition: background-color .3s ease, box-shadow .3s ease, border-color .3s ease;
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled {
  background: rgba(248, 250, 252, 0.85);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom-color: var(--slate-200);
  box-shadow: var(--shadow-sm);
}
.nav {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--ink);
}
.brand img { height: 40px; width: auto; }
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-text strong { font-size: 1.05rem; letter-spacing: 0.04em; }
.brand-text span {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  color: var(--slate-500);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}
.nav-links a {
  font-weight: 500;
  font-size: 0.97rem;
  color: var(--slate-700);
  padding: 0.5rem 0.85rem;
  border-radius: var(--radius-sm);
  transition: color .2s ease, background-color .2s ease;
}
.nav-links a:hover { color: var(--ink); background: var(--slate-100); }
.nav-actions { display: flex; align-items: center; gap: 0.75rem; }

.burger {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid var(--slate-200);
  background: var(--surface);
  border-radius: var(--radius-sm);
  cursor: pointer;
  padding: 0;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
}
.burger span {
  position: relative;
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: background-color .2s ease;
}
.burger span::before,
.burger span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .25s ease, top .25s ease;
}
.burger span::before { top: -7px; }
.burger span::after { top: 7px; }
body.menu-open .burger span { background: transparent; }
body.menu-open .burger span::before { top: 0; transform: rotate(45deg); }
body.menu-open .burger span::after { top: 0; transform: rotate(-45deg); }

/* Mobile-Menue-Panel */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: var(--z-menu);
  display: flex;
  flex-direction: column;
  padding: calc(var(--header-h) + 1.5rem) var(--gutter) 2.5rem;
  background: var(--bg);
  transform: translateX(100%);
  transition: transform .35s cubic-bezier(.4, 0, .2, 1);
  visibility: hidden;
  overflow-y: auto;
}
body.menu-open .mobile-menu { transform: translateX(0); visibility: visible; }
.mobile-menu a.m-link {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 1.5rem;
  color: var(--ink);
  padding: 1rem 0;
  border-bottom: 1px solid var(--slate-200);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.mobile-menu a.m-link span { color: var(--accent); }
.mobile-menu .m-cta { margin-top: 2rem; }
.mobile-menu .m-contact {
  margin-top: auto;
  padding-top: 2rem;
  color: var(--slate-500);
  font-size: 0.95rem;
}
.mobile-menu .m-contact a { color: var(--ink); font-weight: 600; }

/* ---------- 7a. Hero ---------- */
.hero {
  position: relative;
  padding-top: calc(var(--header-h) + clamp(2.5rem, 7vw, 5rem));
  padding-bottom: clamp(3rem, 7vw, 5.5rem);
  background:
    radial-gradient(1200px 600px at 85% -10%, rgba(220, 38, 38, 0.10), transparent 60%),
    linear-gradient(180deg, #fff 0%, var(--bg) 100%);
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--slate-200) 1px, transparent 1px),
    linear-gradient(90deg, var(--slate-200) 1px, transparent 1px);
  background-size: 46px 46px;
  -webkit-mask-image: radial-gradient(900px 500px at 70% 0%, #000, transparent 75%);
  mask-image: radial-gradient(900px 500px at 70% 0%, #000, transparent 75%);
  opacity: 0.5;
  pointer-events: none;
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.hero h1 { margin-bottom: 1.1rem; }
.hero h1 .accent { color: var(--accent); }
.hero-sub {
  font-size: 1.2rem;
  color: var(--slate-600);
  max-width: 48ch;
  margin-bottom: 1.8rem;
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-bottom: 2.2rem;
}
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1.6rem 2rem;
}
.hero-trust .t-item { display: flex; align-items: center; gap: 0.6rem; }
.hero-trust .t-item .icon { width: 22px; height: 22px; color: var(--accent); flex: none; }
.hero-trust .t-item strong { color: var(--ink); display: block; font-size: 1.05rem; }
.hero-trust .t-item small { color: var(--slate-500); font-size: 0.85rem; }

/* Hero-Visual */
.hero-visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--slate-900);
}
.hero-visual img { width: 100%; height: auto; }
.hero-card {
  position: absolute;
  left: 18px;
  bottom: 18px;
  right: 18px;
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 0.9rem 1.1rem;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  box-shadow: var(--shadow);
}
.hero-card .price {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--ink);
}
.hero-card .price small { font-size: 0.8rem; color: var(--slate-500); font-weight: 500; }
.hero-card .stars { color: var(--accent); display: flex; gap: 2px; }
.hero-card .stars .icon { width: 16px; height: 16px; }

/* ---------- 7b. Logos / Trust-Leiste ---------- */
.trustbar {
  border-block: 1px solid var(--slate-200);
  background: var(--surface);
}
.trustbar .container {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2.5rem;
  align-items: center;
  justify-content: space-between;
  padding-block: 1.4rem;
}
.trustbar .ti {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-weight: 600;
  color: var(--slate-700);
  font-size: 0.95rem;
}
.trustbar .ti .icon { width: 24px; height: 24px; color: var(--accent); flex: none; }

/* ---------- 7c. Leistungen (Cards) ---------- */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}
.card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius);
  padding: 2rem 1.8rem;
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  overflow: hidden;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: var(--slate-300);
}
.card .ic {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: var(--accent-soft);
  color: var(--accent);
  margin-bottom: 1.2rem;
}
.card .ic .icon { width: 28px; height: 28px; }
.card h3 { margin-bottom: 0.5rem; }
.card p { color: var(--slate-600); margin-bottom: 0; font-size: 1rem; }

/* ---------- 7d. Split: Ueber uns / Technik ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.split--reverse .split-media { order: 2; }
.split-media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--slate-900);
}
.feature-list { display: grid; gap: 1.1rem; margin-top: 1.5rem; }
.feature-list li {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
}
.feature-list .icon {
  width: 24px;
  height: 24px;
  color: var(--accent);
  flex: none;
  margin-top: 3px;
}
.feature-list strong { color: var(--ink); display: block; }

/* Technische Daten / Spezifikationen */
.specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 1.5rem;
}
.spec {
  background: var(--slate-800);
  border: 1px solid var(--slate-700);
  border-radius: var(--radius);
  padding: 1.3rem 1.4rem;
}
.spec .k {
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--slate-400);
}
.spec .v {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.6rem;
  color: #fff;
  margin-top: 0.3rem;
}
.spec .v small { font-size: 0.85rem; color: var(--slate-400); font-weight: 500; }
.note-placeholder {
  margin-top: 1.3rem;
  font-size: 0.85rem;
  color: var(--slate-400);
  border-left: 3px solid var(--accent);
  padding-left: 0.9rem;
}

/* ---------- 7e. Prozess ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
  counter-reset: step;
}
.step {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius);
  padding: 2rem 1.6rem 1.7rem;
  box-shadow: var(--shadow-sm);
}
.step .num {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.1rem;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--ink);
  color: #fff;
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
}
.step h3 { font-size: 1.15rem; margin-bottom: 0.4rem; }
.step p { font-size: 0.97rem; color: var(--slate-600); margin: 0; }

/* ---------- 7e2. Referenzen / Galerie ---------- */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}
.gallery-item {
  position: relative;
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  background: var(--slate-900);
  aspect-ratio: 4 / 3;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1.6rem 1.1rem 0.9rem;
  color: #fff;
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 0.98rem;
  background: linear-gradient(0deg, rgba(15, 23, 42, 0.85), transparent);
}
.gallery-item figcaption .tag {
  display: block;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fca5a5;
  margin-bottom: 0.15rem;
}

/* Fotos in Split-/Hero-Bereichen sauber einpassen */
.media-photo { aspect-ratio: 16 / 10; }
.media-photo img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- 7f. Bewertungen (Marquee) ---------- */
.reviews { overflow: hidden; }
.reviews-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}
.rating-badge {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  background: var(--surface);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-pill);
  padding: 0.7rem 1.2rem;
  box-shadow: var(--shadow-sm);
}
.rating-badge .stars { color: var(--accent); display: flex; gap: 2px; }
.rating-badge .stars .icon { width: 18px; height: 18px; }
.rating-badge strong { font-family: var(--font-head); color: var(--ink); }

.marquee {
  position: relative;
  display: flex;
  gap: 1.4rem;
  width: max-content;
  animation: marquee 48s linear infinite;
}
.marquee:hover { animation-play-state: paused; }
.reviews-track {
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.review {
  width: 340px;
  flex: none;
  background: var(--surface);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius);
  padding: 1.6rem;
  box-shadow: var(--shadow-sm);
}
.review .stars { color: var(--accent); display: flex; gap: 2px; margin-bottom: 0.9rem; }
.review .stars .icon { width: 16px; height: 16px; }
.review p { color: var(--slate-700); font-size: 1rem; }
.review .who { display: flex; align-items: center; gap: 0.8rem; margin-top: 1.2rem; }
.review .avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  display: grid;
  place-items: center;
  font-family: var(--font-head);
  font-weight: 700;
  flex: none;
}
.review .who strong { display: block; color: var(--ink); font-size: 0.95rem; }
.review .who small { color: var(--slate-500); font-size: 0.8rem; }

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

/* ---------- 7f2. Kalender / Verfügbarkeit ---------- */
.calendar-wrap {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr;
  gap: clamp(1.5rem, 4vw, 2.5rem);
  align-items: start;
  max-width: 960px;
  margin-inline: auto;
}
.calendar {
  background: var(--surface);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: clamp(1.2rem, 3vw, 1.8rem);
  box-shadow: var(--shadow);
}
.cal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.1rem;
}
.cal-head strong {
  font-family: var(--font-head);
  font-size: 1.2rem;
  color: var(--ink);
}
.cal-nav {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--slate-200);
  background: var(--bg);
  color: var(--ink);
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background-color .2s ease, border-color .2s ease;
}
.cal-nav:hover { background: var(--slate-100); border-color: var(--slate-300); }
.cal-nav .icon { width: 20px; height: 20px; }
.cal-weekdays,
.cal-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
}
.cal-weekdays {
  margin-bottom: 6px;
}
.cal-weekdays span {
  text-align: center;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--slate-400);
  padding-bottom: 0.3rem;
}
.cal-day {
  aspect-ratio: 1 / 1;
  border: 1px solid var(--slate-200);
  border-radius: 10px;
  background: var(--surface);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--slate-700);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background-color .15s ease, border-color .15s ease, color .15s ease, transform .15s ease;
  -webkit-tap-highlight-color: transparent;
}
.cal-day.empty {
  border: 0;
  background: transparent;
  cursor: default;
}
.cal-day.is-free:hover {
  border-color: var(--ink);
  transform: translateY(-2px);
}
.cal-day.is-past {
  color: var(--slate-300);
  background: var(--slate-100);
  cursor: not-allowed;
  border-color: transparent;
}
.cal-day.is-reserved {
  background: var(--accent-soft);
  border-color: #fecaca;
  color: #b91c1c;
  cursor: not-allowed;
  text-decoration: line-through;
}
.cal-day.is-pending {
  background: #fff7ed;
  border-color: #fed7aa;
  color: #c2680c;
  cursor: not-allowed;
}
.cal-day.is-selected,
.cal-day.in-range {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}
.cal-day.in-range:not(.is-selected) {
  background: rgba(220, 38, 38, 0.14);
  border-color: rgba(220, 38, 38, 0.3);
  color: var(--accent-dark);
}
.cal-day.is-today { box-shadow: inset 0 0 0 2px var(--slate-300); }

.cal-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.3rem;
  margin-top: 1.3rem;
  padding-top: 1.1rem;
  border-top: 1px solid var(--slate-200);
  font-size: 0.85rem;
  color: var(--slate-600);
}
.cal-legend span { display: inline-flex; align-items: center; gap: 0.5rem; }
.dot {
  width: 14px;
  height: 14px;
  border-radius: 4px;
  display: inline-block;
  border: 1px solid var(--slate-200);
}
.dot--free { background: var(--surface); }
.dot--res { background: var(--accent-soft); border-color: #fecaca; }
.dot--pend { background: #fff7ed; border-color: #fed7aa; }

.calendar-aside {
  position: sticky;
  top: calc(var(--header-h) + 1rem);
}
.cal-selection {
  background: var(--surface);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius);
  padding: 1.2rem 1.3rem;
  box-shadow: var(--shadow-sm);
  margin-bottom: 1rem;
}
.cal-sel-label {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--slate-400);
}
.cal-selection strong {
  display: block;
  font-family: var(--font-head);
  font-size: 1.15rem;
  color: var(--ink);
  margin-top: 0.25rem;
}
.calendar-aside .btn { width: 100%; margin-bottom: 0.7rem; }
.cal-hint { font-size: 0.85rem; color: var(--slate-500); margin: 0.6rem 0 0; }

/* ---------- 7g. Standort ---------- */
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: stretch;
}
.location-info {
  background: var(--surface);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: clamp(1.8rem, 4vw, 2.6rem);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}
.location-info .info-row {
  display: flex;
  gap: 0.9rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--slate-200);
}
.location-info .info-row:last-of-type { border-bottom: 0; }
.location-info .info-row .icon { width: 22px; height: 22px; color: var(--accent); flex: none; margin-top: 3px; }
.location-info .info-row strong { color: var(--ink); display: block; }
.location-info .info-row a { color: var(--slate-700); }
.location-info .info-row a:hover { color: var(--accent); }
.location-info .btn { margin-top: 1.5rem; }
.map-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--slate-200);
  min-height: 320px;
}
.map-frame img { width: 100%; height: 100%; object-fit: cover; }
.map-pin-label {
  position: absolute;
  top: 18px;
  left: 18px;
  background: rgba(255, 255, 255, 0.94);
  padding: 0.6rem 1rem;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--ink);
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.map-pin-label .icon { width: 16px; height: 16px; color: var(--accent); }

/* ---------- 7h. Kontakt ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
.contact-aside .quick {
  display: grid;
  gap: 1rem;
  margin-top: 1.8rem;
}
.contact-aside .quick a {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--slate-700);
  border-radius: var(--radius);
  padding: 1rem 1.2rem;
  transition: border-color .2s ease, background-color .2s ease;
}
.contact-aside .quick a:hover { border-color: var(--accent); background: rgba(220, 38, 38, 0.08); }
.contact-aside .quick .icon { width: 24px; height: 24px; color: var(--accent); flex: none; }
.contact-aside .quick strong { color: #fff; display: block; }
.contact-aside .quick small { color: var(--slate-400); }

.form-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: clamp(1.7rem, 4vw, 2.6rem);
  box-shadow: var(--shadow-lg);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field { margin-bottom: 1.1rem; }
.field label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--ink);
  margin-bottom: 0.4rem;
}
.field input,
.field textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink);
  background: var(--bg);
  border: 1px solid var(--slate-300);
  border-radius: var(--radius-sm);
  padding: 0.85rem 1rem;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.15);
}
.field textarea { min-height: 140px; resize: vertical; }
.field input[type="date"] { min-height: 52px; }
.field-hint {
  margin: -0.3rem 0 1.1rem;
  font-size: 0.85rem;
  color: var(--slate-500);
}
.field-hint a { color: var(--accent); font-weight: 600; }

.consent {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  margin: 0.4rem 0 1.3rem;
  font-size: 0.9rem;
  color: var(--slate-600);
}
.consent input {
  width: 22px;
  height: 22px;
  margin-top: 2px;
  flex: none;
  accent-color: var(--accent);
  cursor: pointer;
}
.consent a { color: var(--accent); font-weight: 600; text-decoration: underline; }

.form-note {
  margin-top: 1rem;
  font-size: 0.9rem;
  padding: 0.85rem 1rem;
  border-radius: var(--radius-sm);
  display: none;
}
.form-note.show { display: block; }
.form-note.ok { background: #ecfdf5; color: #065f46; border: 1px solid #a7f3d0; }
.form-note.err { background: var(--accent-soft); color: var(--accent-dark); border: 1px solid #fecaca; }
.btn[aria-busy="true"] { opacity: 0.7; pointer-events: none; }

/* ---------- 8. Footer ---------- */
.site-footer {
  background: var(--ink);
  color: var(--slate-400);
  padding-top: clamp(3.5rem, 7vw, 5rem);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
}
.site-footer .brand { color: #fff; margin-bottom: 1rem; }
.site-footer .brand-text strong { color: #fff; }
.site-footer .brand-text span { color: var(--slate-400); }
.footer-about { max-width: 36ch; font-size: 0.95rem; }
.footer-col h4 {
  color: #fff;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.1rem;
}
.footer-col a,
.footer-col p { color: var(--slate-400); font-size: 0.95rem; display: block; margin-bottom: 0.6rem; }
.footer-col a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-block: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.8rem;
  font-size: 0.85rem;
}
.powered { text-align: right; }
.powered a { color: var(--slate-400); }
.powered .wb { color: #22b8e0; font-weight: 600; }

/* ---------- 8b. Rechtstexte (Impressum / Datenschutz) ---------- */
.legal-hero {
  padding-top: calc(var(--header-h) + clamp(2.5rem, 6vw, 4rem));
  padding-bottom: clamp(1.5rem, 4vw, 2.5rem);
  background: linear-gradient(180deg, #fff, var(--bg));
  border-bottom: 1px solid var(--slate-200);
}
.legal-back {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--slate-600);
  margin-bottom: 1rem;
}
.legal-back:hover { color: var(--accent); }
.legal-back .icon { width: 16px; height: 16px; }
.legal-body { padding-block: clamp(2.5rem, 6vw, 4rem); }
.legal-body .container { max-width: 820px; }
.legal-body h2 {
  font-size: clamp(1.3rem, 2.5vw, 1.7rem);
  margin-top: 2.5rem;
}
.legal-body h2:first-child { margin-top: 0; }
.legal-body h3 { margin-top: 1.6rem; font-size: 1.1rem; }
.legal-body p, .legal-body li { color: var(--slate-600); }
.legal-body ul { list-style: disc; padding-left: 1.3rem; margin-bottom: 1rem; }
.legal-body li { margin-bottom: 0.4rem; }
.legal-body a { color: var(--accent); text-decoration: underline; }
.legal-placeholder {
  background: var(--accent-soft);
  border: 1px dashed #fca5a5;
  border-radius: var(--radius-sm);
  padding: 0.8rem 1.1rem;
  color: var(--accent-dark);
  font-size: 0.92rem;
  margin: 1rem 0;
}

/* ---------- 9. Scroll-Reveal & Responsive ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .7s ease, transform .7s ease;
}
[data-reveal].is-visible { opacity: 1; transform: none; }
[data-reveal-delay="1"] { transition-delay: .08s; }
[data-reveal-delay="2"] { transition-delay: .16s; }
[data-reveal-delay="3"] { transition-delay: .24s; }

/* Tablet */
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { order: -1; max-width: 560px; }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: 1fr; }
  .split--reverse .split-media { order: 0; }
  .location-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .calendar-wrap { grid-template-columns: 1fr; }
  .calendar-aside { position: static; }
}

/* Mobile */
@media (max-width: 720px) {
  .nav-links, .nav-actions .btn { display: none; }
  .burger { display: inline-flex; }
  .cards { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr 1fr; gap: 0.9rem; }
  .specs { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { justify-content: center; text-align: center; }
  .powered { text-align: center; width: 100%; }
  .reviews-head { flex-direction: column; align-items: flex-start; }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .marquee { animation: none; }
  [data-reveal] { opacity: 1; transform: none; transition: none; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}
