/* =====================================================================
   PEAK45 — Landingpage
   Design-System: schwarz/weiß, hoher Kontrast, Montserrat, minimalistisch
   Eine Datei, keine Frameworks. Alles über CSS-Variablen steuerbar.
   ===================================================================== */

/* ----------------------------------------------------------------
   1. Selbst-gehostete Schrift (DSGVO-freundlich, kein Google-CDN)
   Lege die .woff2-Dateien in assets/fonts/ ab (siehe assets/README.md).
   Fehlen die Dateien, greift automatisch der System-Fallback unten.
   ---------------------------------------------------------------- */
@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../assets/fonts/montserrat-400.woff2") format("woff2");
}
@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../assets/fonts/montserrat-600.woff2") format("woff2");
}
@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../assets/fonts/montserrat-700.woff2") format("woff2");
}
@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url("../assets/fonts/montserrat-800.woff2") format("woff2");
}

/* ----------------------------------------------------------------
   2. Design-Tokens
   ---------------------------------------------------------------- */
:root {
  /* Farben – monochrom. Für eine Markenfarbe einfach --accent ändern. */
  --bg: #000000;
  --bg-soft: #0c0c0c;
  --fg: #ffffff;
  --muted: rgba(255, 255, 255, 0.62);
  --line: rgba(255, 255, 255, 0.14);
  --line-strong: rgba(255, 255, 255, 0.28);
  --accent: #ffffff;          /* z.B. auf #ff3b1f o.ä. setzen für Signalfarbe */
  --accent-fg: #000000;       /* Textfarbe auf --accent-Flächen */

  /* Typografie */
  --font: "Montserrat", system-ui, -apple-system, "Segoe UI", Roboto,
    Helvetica, Arial, sans-serif;

  /* Maße */
  --maxw: 1200px;
  --gutter: clamp(1.25rem, 5vw, 4rem);
  --radius: 2px;              /* eckig/klar wie das Original */
  --header-h: 82px;

  --transition: 0.25s ease;
}

/* ----------------------------------------------------------------
   3. Reset & Basis
   ---------------------------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
  -webkit-text-size-adjust: 100%;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation: none !important; transition: none !important; }
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

h1, h2, h3, h4 {
  margin: 0;
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}

p { margin: 0; }

::selection { background: var(--fg); color: var(--bg); }

/* Sichtbarer Fokus für Tastatur-Navigation (Barrierefreiheit) */
:focus-visible {
  outline: 2px solid var(--fg);
  outline-offset: 3px;
}

/* ----------------------------------------------------------------
   4. Layout-Helfer
   ---------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section {
  padding-block: clamp(4.5rem, 11vw, 9rem);
}

/* Invertierte Sektionen (weiß) für Rhythmus statt Farbe */
.section--invert {
  background: var(--fg);
  color: var(--bg);
}
.section--invert .kicker { color: rgba(0, 0, 0, 0.55); }
.section--invert .muted { color: rgba(0, 0, 0, 0.6); }

.section-head {
  max-width: 62ch;
  margin-bottom: clamp(2rem, 5vw, 3.5rem);
}

.kicker {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(2rem, 6vw, 3.6rem);
}

.lead {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: var(--muted);
  margin-top: 1.1rem;
}
.section--invert .lead { color: rgba(0, 0, 0, 0.62); }

.muted { color: var(--muted); }

/* ----------------------------------------------------------------
   5. Buttons
   ---------------------------------------------------------------- */
.btn {
  --btn-bg: var(--fg);
  --btn-fg: var(--bg);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.95rem 1.9rem;
  background: var(--btn-bg);
  color: var(--btn-fg);
  border: 1px solid var(--btn-bg);
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background var(--transition), color var(--transition),
    transform var(--transition);
  white-space: nowrap;
}
.btn:hover {
  background: transparent;
  color: var(--btn-bg);
  transform: translateY(-2px);
}

.btn--outline {
  --btn-bg: transparent;
  --btn-fg: var(--fg);
  border-color: var(--line-strong);
}
.btn--outline:hover {
  background: var(--fg);
  color: var(--bg);
  border-color: var(--fg);
}

/* Buttons auf weißen Sektionen */
.section--invert .btn {
  --btn-bg: var(--bg);
  --btn-fg: var(--fg);
}
.section--invert .btn:hover { color: var(--bg); }
.section--invert .btn--outline {
  --btn-fg: var(--bg);
  border-color: rgba(0, 0, 0, 0.28);
}
.section--invert .btn--outline:hover { background: var(--bg); color: var(--fg); }

.btn--sm { padding: 0.7rem 1.3rem; font-size: 0.74rem; }
.btn--block { width: 100%; }

/* ----------------------------------------------------------------
   6. Header / Navigation
   ---------------------------------------------------------------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: background var(--transition), border-color var(--transition),
    backdrop-filter var(--transition);
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(0, 0, 0, 0.82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom-color: var(--line);
}

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

/* Marke = Bild-Logo (assets/images/logo.avif). Der Pfad ist relativ zur CSS-Datei
   und funktioniert daher auf allen Seiten (auch in Unterordnern). Der Text
   "PEAK45" bleibt für Screenreader im DOM, wird aber visuell durch das Logo ersetzt. */
.brand {
  display: inline-block;
  width: 132px;
  height: 57px;
  background: url("../assets/images/logo.png") left center / contain no-repeat;
  text-indent: -9999px;
  overflow: hidden;
  white-space: nowrap;
}
.brand img { height: 40px; width: auto; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color var(--transition);
  position: relative;
}
.nav-links a:hover { color: var(--fg); }
.nav-actions { display: flex; align-items: center; gap: 1rem; }

/* Burger */
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 0;
  position: relative;
}
.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 10px;
  right: 10px;
  height: 2px;
  background: var(--fg);
  transition: transform var(--transition), opacity var(--transition);
}
.nav-toggle span { top: 50%; transform: translateY(-50%); }
.nav-toggle span::before { top: -7px; }
.nav-toggle span::after { top: 7px; }
.nav-toggle.is-open span { background: transparent; }
.nav-toggle.is-open span::before { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span::after { transform: translateY(-7px) rotate(-45deg); }

/* ----------------------------------------------------------------
   7. Hero
   ---------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: var(--header-h);
  overflow: hidden;
}
/* Hintergrund-Ebene: Video ODER Poster-Bild ODER Verlauf (Fallback).
   Fehlen Video und Poster, bleibt der dunkle Verlauf sichtbar. */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  background:
    radial-gradient(120% 90% at 70% 10%, rgba(255, 255, 255, 0.1), transparent 55%),
    linear-gradient(180deg, #0a0a0a 0%, #000 100%);
}
.hero-bg video,
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* Abdunkelung für Text-Lesbarkeit (Kontrast über dem Video/Bild) */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.55) 45%, rgba(0, 0, 0, 0.3) 100%),
    linear-gradient(180deg, transparent 55%, #000 100%);
}

.hero-inner { max-width: 900px; }
.hero--local { min-height: 78svh; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  padding: 0.5rem 1.1rem;
  margin-bottom: 1.8rem;
}
.hero-badge::before {
  content: "";
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--accent);
}

.hero h1 {
  font-size: clamp(2.7rem, 9vw, 6.5rem);
  line-height: 0.95;
}
.hero .lead {
  max-width: 46ch;
  color: rgba(255, 255, 255, 0.75);
}
.hero-actions {
  margin-top: 2.4rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.scroll-cue {
  position: absolute;
  bottom: 1.6rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.68rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--muted);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
}
.scroll-cue::after {
  content: "";
  width: 1px; height: 40px;
  background: linear-gradient(var(--muted), transparent);
  animation: cue 1.8s ease-in-out infinite;
}
@keyframes cue {
  0%, 100% { opacity: 0.3; transform: scaleY(0.6); transform-origin: top; }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ----------------------------------------------------------------
   8. USP / Feature-Karten
   ---------------------------------------------------------------- */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.feature {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2.2rem 1.8rem;
  background: var(--bg-soft);
  transition: border-color var(--transition), transform var(--transition);
}
.feature:hover { border-color: var(--line-strong); transform: translateY(-4px); }
.feature-num {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--muted);
  margin-bottom: 1.4rem;
}
.feature h3 { font-size: 1.35rem; margin-bottom: 0.8rem; }
.feature p { color: var(--muted); font-size: 0.98rem; }

/* ----------------------------------------------------------------
   9. Konzept (Über uns) – Text + Bild
   ---------------------------------------------------------------- */
.concept-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.concept-copy p + p { margin-top: 1.1rem; }
.concept-copy .muted { font-size: 1.05rem; }

.quote {
  margin-top: 2.2rem;
  padding-top: 1.8rem;
  border-top: 1px solid var(--line-strong);
}
.quote blockquote {
  margin: 0;
  font-size: clamp(1.3rem, 2.6vw, 1.9rem);
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}
.quote cite {
  display: block;
  margin-top: 0.9rem;
  font-style: normal;
  font-size: 0.85rem;
  letter-spacing: 0.16em;
  color: var(--muted);
}

/* Medien-/Bild-Slot mit sauberem Platzhalter, falls Bild fehlt */
.media {
  position: relative;
  aspect-ratio: 4 / 5;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background:
    repeating-linear-gradient(45deg, #0e0e0e 0 12px, #0a0a0a 12px 24px);
  display: grid;
  place-items: center;
}
.media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.media .media-ph {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
  text-align: center;
  padding: 1rem;
}

/* ----------------------------------------------------------------
   10. Ablauf (3 Schritte) – verbundene Timeline mit Icon-Badges
   ---------------------------------------------------------------- */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  position: relative;
}
/* gestrichelte Verbindungslinie hinter den Badges (verbindet Schritt 1–3) */
.steps::before {
  content: "";
  position: absolute;
  top: 41px;
  left: 16.66%;
  right: 16.66%;
  height: 2px;
  background: repeating-linear-gradient(90deg,
    rgba(0, 0, 0, 0.22) 0 7px, transparent 7px 15px);
  z-index: 0;
}
.step {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 0.5rem;
}
.step-badge {
  width: 82px;
  height: 82px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  background: var(--bg);
  display: grid;
  place-items: center;
  transition: transform var(--transition), box-shadow var(--transition);
}
.step:hover .step-badge {
  transform: translateY(-5px);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.2);
}
.step-icon { width: 34px; height: 34px; color: var(--fg); }
.step-num {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.45);
  margin-bottom: 0.55rem;
}
.step h3 { font-size: 1.3rem; margin-bottom: 0.6rem; }
.step p { color: rgba(0, 0, 0, 0.62); max-width: 30ch; margin-inline: auto; }

/* ----------------------------------------------------------------
   11. Preise
   ---------------------------------------------------------------- */
.pricing {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: stretch;
}
.price-card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2.2rem 1.9rem;
  background: var(--bg-soft);
  transition: border-color var(--transition), transform var(--transition);
}
.price-card:hover { border-color: var(--line-strong); transform: translateY(-4px); }
.price-card.is-featured {
  border-color: var(--fg);
  background: #101010;
}
.price-badge {
  align-self: flex-start;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: var(--accent);
  color: var(--accent-fg);
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  margin-bottom: 1.2rem;
}
.price-name {
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
}
.price-amount {
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
  margin-bottom: 0.3rem;
}
.price-amount .amount {
  font-size: clamp(2.4rem, 5vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}
.price-amount .period { color: var(--muted); font-size: 0.9rem; }
.price-features {
  list-style: none;
  margin: 1.6rem 0 2rem;
  padding: 0;
  display: grid;
  gap: 0.75rem;
  flex: 1;
}
.price-features li {
  display: flex;
  gap: 0.7rem;
  font-size: 0.95rem;
  color: var(--muted);
}
.price-features li::before {
  content: "→";
  color: var(--fg);
  flex: none;
}
.price-note {
  margin-top: 1.6rem;
  font-size: 0.82rem;
  color: var(--muted);
}

/* ----------------------------------------------------------------
   12. Kontakt
   ---------------------------------------------------------------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.form-row { margin-bottom: 1.3rem; }
.form-row label {
  display: block;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.55rem;
}
.form-row input,
.form-row textarea {
  width: 100%;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line-strong);
  color: var(--fg);
  font-family: inherit;
  font-size: 1rem;
  padding: 0.75rem 0.1rem;
  transition: border-color var(--transition);
}
.form-row textarea { resize: vertical; min-height: 130px; }
.form-row input:focus,
.form-row textarea:focus {
  outline: none;
  border-bottom-color: var(--fg);
}
.form-row input::placeholder,
.form-row textarea::placeholder { color: rgba(255,255,255,0.3); }

/* Validierungszustände */
.form-row.has-error input,
.form-row.has-error textarea { border-bottom-color: #ff5a4d; }
.field-error {
  display: none;
  margin-top: 0.45rem;
  font-size: 0.78rem;
  color: #ff8a80;
}
.form-row.has-error .field-error { display: block; }

/* Datenschutz-Einwilligung (Checkbox) */
.form-consent .checkbox {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  cursor: pointer;
  font-size: 0.86rem;
  line-height: 1.5;
  color: var(--muted);
}
.form-consent input[type="checkbox"] {
  width: 18px;
  height: 18px;
  min-width: 18px;
  margin-top: 0.15rem;
  padding: 0;
  border: 0;
  accent-color: var(--fg);
  flex: none;
}
.form-consent a { color: var(--fg); text-decoration: underline; text-underline-offset: 2px; }

.form-status {
  margin-top: 1rem;
  font-size: 0.9rem;
  min-height: 1.2em;
}
.form-status.ok { color: #7CFFB2; }
.form-status.err { color: #ff8a80; }

/* Kontakt-Infobox */
.contact-info {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem 1.8rem;
  background: var(--bg-soft);
}
.contact-info h3 { font-size: 1.1rem; margin-bottom: 1.2rem; }
.contact-info address {
  font-style: normal;
  color: var(--muted);
  line-height: 1.9;
}
.contact-info a:hover { color: var(--fg); }
.contact-info .divider {
  height: 1px; background: var(--line); margin: 1.4rem 0;
}

/* ----------------------------------------------------------------
   13. Footer
   ---------------------------------------------------------------- */
.site-footer {
  border-top: 1px solid var(--line);
  padding-block: clamp(3rem, 6vw, 4.5rem) 2rem;
  background: var(--bg);
}
.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--line);
}
.footer-brand .brand { width: 139px; height: 60px; margin-bottom: 1.2rem; }
.footer-brand p { color: var(--muted); max-width: 34ch; font-size: 0.95rem; }
.footer-col h4 {
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  color: var(--muted);
  margin-bottom: 1.1rem;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.7rem; }
.footer-col a { color: var(--muted); font-size: 0.95rem; transition: color var(--transition); }
.footer-col a:hover { color: var(--fg); }
.footer-bottom {
  padding-top: 1.8rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.82rem;
  color: var(--muted);
}
.footer-bottom nav { display: flex; gap: 1.4rem; }

/* ----------------------------------------------------------------
   14. Scroll-Reveal (wird per JS aktiviert; ohne JS bleibt alles sichtbar)
   ---------------------------------------------------------------- */
.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.js .reveal.is-visible {
  opacity: 1;
  transform: none;
}
.reveal[data-delay="1"] { transition-delay: 0.08s; }
.reveal[data-delay="2"] { transition-delay: 0.16s; }

/* ----------------------------------------------------------------
   15. Toast (Buchen-Platzhalter)
   ---------------------------------------------------------------- */
.toast {
  position: fixed;
  left: 50%;
  bottom: 2rem;
  transform: translate(-50%, 150%);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  background: var(--fg);
  color: var(--bg);
  padding: 0.9rem 1.4rem;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 600;
  z-index: 200;
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1),
    opacity 0.3s ease, visibility 0.3s;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
  max-width: calc(100vw - 2rem);
  text-align: center;
}
.toast.show { transform: translate(-50%, 0); opacity: 1; visibility: visible; }

/* Legal-Seiten (Impressum/Datenschutz) */
.legal {
  padding-top: calc(var(--header-h) + clamp(2rem, 6vw, 4rem));
  padding-bottom: clamp(3rem, 8vw, 6rem);
}
.legal h1 { font-size: clamp(2rem, 6vw, 3.2rem); margin-bottom: 2rem; }
.legal h2 {
  font-size: 1.25rem;
  margin: 2.4rem 0 0.8rem;
  text-transform: none;
  letter-spacing: 0;
}
.legal p, .legal address, .legal li { color: var(--muted); font-style: normal; }
.legal p + p { margin-top: 0.7rem; }
.legal a { text-decoration: underline; text-underline-offset: 3px; }
.legal a:hover { color: var(--fg); }
.legal ul { padding-left: 1.2rem; }
.legal .back {
  display: inline-block;
  margin-bottom: 2rem;
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.note {
  border: 1px solid var(--line-strong);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius);
  padding: 1.1rem 1.3rem;
  margin: 1.5rem 0;
  color: var(--muted);
  font-size: 0.9rem;
  background: var(--bg-soft);
}
.note strong { color: var(--fg); }

/* ----------------------------------------------------------------
   16. Responsive
   ---------------------------------------------------------------- */
@media (max-width: 960px) {
  .concept-grid,
  .contact-grid { grid-template-columns: 1fr; }
  .concept-grid .media { max-width: 460px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

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

  /* Logo auf dem Handy etwas kompakter */
  .brand { width: 106px; height: 46px; }

  /* Mobile Navigation */
  .nav-toggle { display: block; }
  .nav-links {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: rgba(0, 0, 0, 0.97);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--line);
    padding: 0.5rem var(--gutter) 1.5rem;
    max-height: calc(100svh - var(--header-h));
    overflow-y: auto;
    clip-path: inset(0 0 100% 0);
    transition: clip-path 0.35s ease;
  }
  .nav-links.is-open { clip-path: inset(0 0 0 0); }
  .nav-links a {
    width: 100%;
    padding: 1rem 0;
    font-size: 1rem;
    border-bottom: 1px solid var(--line);
  }
  /* CTA-Button bleibt auch mobil sichtbar (neben dem Menü-Icon), etwas kompakter */
  .nav-actions .btn { padding: 0.6rem 1rem; font-size: 0.7rem; }

  .grid-3,
  .steps,
  .pricing { grid-template-columns: 1fr; }
  .steps::before { display: none; } /* Verbindungslinie nur auf Desktop */

  /* Ablauf-Badges auf Handy/Tablet proportional verkleinern */
  .step-badge { width: 60px; height: 60px; margin-bottom: 1.1rem; }
  .step-icon { width: 28px; height: 28px; }

  .price-card.is-featured { order: -1; } /* beliebtes Paket zuerst auf Mobil */
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
}

/* =====================================================================
   17. Erweiterungen: Video-Hero-Ebenen, Standorte, Karte, FAQ,
       Breadcrumb, Magazin (mehrseitige Struktur)
   ===================================================================== */

/* Hero-Hintergrund: Poster-Bild + optionales Video übereinander.
   Ohne Videodatei zeigt sich das Poster; ohne Poster der Verlauf. */
.hero-bg > .hero-poster,
.hero-bg > .hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-poster { z-index: 0; }
.hero-video { z-index: 1; }
/* Video spart Daten/Bewegung: auf Mobil und bei "reduzierte Bewegung" aus
   -> das Poster-Bild übernimmt. */
@media (prefers-reduced-motion: reduce) {
  .hero-video { display: none; }
}
@media (max-width: 820px) {
  .hero-video { display: none; }
}

/* ---- Standorte-Übersicht (Startseite) ---- */
.locations {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.location-card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-soft);
  transition: border-color var(--transition), transform var(--transition);
}
.location-card:hover { border-color: var(--line-strong); transform: translateY(-4px); }
.location-card .media {
  aspect-ratio: 16 / 10;
  border: 0;
  border-radius: 0;
  border-bottom: 1px solid var(--line);
}
.location-card-body {
  padding: 1.6rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}
.location-status {
  align-self: flex-start;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.28rem 0.7rem;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  color: var(--muted);
  margin-bottom: 0.4rem;
}
.location-status.is-open {
  background: var(--accent);
  color: var(--accent-fg);
  border-color: var(--accent);
}
.location-city { font-size: 1.4rem; }
.location-addr { color: var(--muted); font-size: 0.92rem; line-height: 1.7; }
.location-card .btn { margin-top: 1.2rem; }
.location-card.is-soon { opacity: 0.72; }

/* ---- Standort-Infos + Karte ---- */
.local-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
.info-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 1.4rem; }
.info-list .info-label {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.3rem;
}
.info-list address { font-style: normal; line-height: 1.7; }
.info-list a:hover { color: var(--fg); }

/* DSGVO-freundlicher Karten-Platzhalter (kein Auto-Embed von Google Maps).
   Später optional durch eine einwilligungsbasierte Karte ersetzen. */
.map-card {
  position: relative;
  aspect-ratio: 4 / 3;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 1.5rem;
  gap: 1rem;
  background:
    radial-gradient(circle at 50% 40%, rgba(255, 255, 255, 0.08), transparent 55%),
    repeating-linear-gradient(0deg, #0e0e0e 0 24px, #0a0a0a 24px 25px),
    repeating-linear-gradient(90deg, #0e0e0e 0 24px, #0a0a0a 24px 25px);
}
.map-card .pin {
  width: 18px;
  height: 18px;
  border-radius: 50% 50% 50% 0;
  background: var(--accent);
  transform: rotate(-45deg);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.6);
}
.map-card .map-addr { font-size: 0.9rem; color: var(--muted); }

/* Eingebettete Straßenkarte (OpenStreetMap) */
.map-embed {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--bg-soft);
}
.map-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  /* Dark-Look: helle OSM-Karte wird invertiert & farbkorrigiert -> dunkle Karte */
  filter: invert(1) hue-rotate(180deg) brightness(0.92) contrast(0.9);
}

/* ---- FAQ (natives <details>, funktioniert ohne JS) ---- */
.faq { max-width: 820px; border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 1.3rem 0;
  font-weight: 700;
  font-size: 1.05rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 1;
  color: var(--muted);
  transition: transform var(--transition), color var(--transition);
  flex: none;
}
.faq details[open] summary::after { content: "\2013"; color: var(--fg); }
.faq summary:hover { color: var(--fg); }
.faq-a { padding: 0 0 1.4rem; color: var(--muted); max-width: 68ch; }
.faq-a p + p { margin-top: 0.7rem; }

/* FAQ auf weißen (invertierten) Sektionen lesbar halten */
.section--invert .faq { border-top-color: rgba(0, 0, 0, 0.14); }
.section--invert .faq details { border-bottom-color: rgba(0, 0, 0, 0.14); }
.section--invert .faq summary::after { color: rgba(0, 0, 0, 0.45); }
.section--invert .faq details[open] summary::after { color: var(--bg); }
.section--invert .faq summary:hover { color: var(--bg); }
.section--invert .faq-a { color: rgba(0, 0, 0, 0.62); }

/* ---- Breadcrumb ---- */
.breadcrumb {
  padding-top: calc(var(--header-h) + 1.5rem);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  color: var(--muted);
}
.breadcrumb a { color: var(--muted); }
.breadcrumb a:hover { color: var(--fg); }
.breadcrumb span { margin: 0 0.5rem; opacity: 0.5; }

/* ---- Magazin: Artikelliste ---- */
.article-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.article-card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-soft);
  transition: border-color var(--transition), transform var(--transition);
}
.article-card:hover { border-color: var(--line-strong); transform: translateY(-4px); }
.article-card .media { aspect-ratio: 16 / 9; border: 0; border-radius: 0; border-bottom: 1px solid var(--line); }
.article-card-body { padding: 1.6rem 1.5rem; display: flex; flex-direction: column; gap: 0.7rem; flex: 1; }
.post-meta { font-size: 0.74rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); }
.article-card h3 { font-size: 1.25rem; }
.article-card p { color: var(--muted); font-size: 0.95rem; }
.article-card .read-more { margin-top: auto; font-size: 0.8rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; }

/* ---- Magazin: Artikel (Fließtext) ---- */
.prose { max-width: 68ch; }
.prose > * + * { margin-top: 1.2rem; }
.prose h2 { font-size: clamp(1.5rem, 3.5vw, 2rem); margin-top: 2.6rem; text-transform: none; letter-spacing: -0.01em; }
.prose h3 { font-size: 1.25rem; margin-top: 1.8rem; text-transform: none; letter-spacing: 0; }
.prose p, .prose li { color: rgba(255, 255, 255, 0.78); font-size: 1.05rem; line-height: 1.75; }
.prose ul, .prose ol { padding-left: 1.3rem; display: grid; gap: 0.5rem; }
.prose strong { color: var(--fg); }
.prose blockquote {
  border-left: 3px solid var(--accent);
  padding-left: 1.3rem;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--fg);
}
.article-hero { max-width: 820px; }
.article-hero h1 { font-size: clamp(2rem, 6vw, 3.4rem); margin: 1rem 0; }

/* ---- Responsive für neue Blöcke ---- */
@media (max-width: 960px) {
  .locations { grid-template-columns: 1fr; }
  .local-grid { grid-template-columns: 1fr; }
  .local-grid .map-card { max-width: 520px; }
  .article-list { grid-template-columns: 1fr; }
}
