/* =====================================================================
   VierpfotenStylisch — Stylesheet
   Tierfriseurin & Tierheilpraktikerin · Mannheim
   --------------------------------------------------------------------
   Pflege-Hinweise:
     - Farben & Radien: siehe :root unten (--c-* / --r-* Variablen)
     - Logo: assets/logo.png austauschen (Quadrat, möglichst 1:1)
     - Schriften: DM Serif Display + DM Sans (via Google Fonts in HTML)
   ===================================================================== */

/* ---------- Tokens ---------- */
:root {
  --c-plum:       #8B2078;
  --c-plum-deep:  #5E0E50;
  --c-plum-soft:  #F5E6F0;
  --c-green:      #8DB600;
  --c-green-deep: #6B7F1E;
  --c-green-soft: #EEF6C9;
  --c-cream:      #FBFAF5;   /* Knochenweiss */
  --c-paper:      #FFFFFF;
  --c-sand:       #F1E4CC;
  --c-peach:      #F4C9A8;
  --c-blush:      #FBE5D6;
  --c-ink:        #2A1E1F;
  --c-muted:      #7A6B66;
  --c-line:       #ECE2D1;

  --r-sm: 12px;
  --r-md: 18px;
  --r-lg: 24px;
  --r-xl: 32px;

  --shadow-card: 0 18px 40px -28px rgba(94, 14, 80, .22),
                 0 2px 4px -2px rgba(94, 14, 80, .08);
  --shadow-soft: 0 30px 60px -42px rgba(94, 14, 80, .28);
  --ease: cubic-bezier(.2, .7, .2, 1);
}

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

html, body { margin: 0; padding: 0; }

/* Offset f\u00fcr Anker-Spr\u00fcnge: der sticky Header darf die Ziel-\u00dcberschrift
   nicht verdecken. --header-h wird per JS dynamisch gesetzt (siehe index.html). */
html { scroll-padding-top: calc(var(--header-h, 100px) + 16px); }

body {
  font-family: "DM Sans", ui-sans-serif, system-ui, -apple-system,
               "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  color: var(--c-ink);
  background: var(--c-cream);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

/* ---------- Layout-Helfer ---------- */
.vps-wrap { max-width: 1180px; margin: 0 auto; padding: 0 28px; }

.vps-serif {
  font-family: "DM Serif Display", "Iowan Old Style",
               "Palatino Linotype", Palatino, Georgia, serif;
  font-weight: 400;
  letter-spacing: -.012em;
}

.vps-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--c-plum);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.vps-eyebrow::before {
  content: "";
  width: 22px;
  height: 1.5px;
  background: currentColor;
  display: inline-block;
  border-radius: 2px;
}

.vps-logo-mark {
  background: url("assets/logo.png") center / cover no-repeat;
  display: inline-block;
}

/* ---------- Buttons ---------- */
.vps-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  padding: 14px 22px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .01em;
  border: 1px solid transparent;
  white-space: nowrap;
  transition: transform .2s var(--ease),
              box-shadow .2s var(--ease),
              background-color .2s var(--ease),
              color .2s var(--ease);
  cursor: pointer;
}
.vps-btn:hover  { transform: translateY(-1px); }
.vps-btn:active { transform: translateY(0); }

.vps-btn-primary {
  background: var(--c-plum);
  color: #fff;
  box-shadow: 0 12px 24px -14px rgba(139, 32, 120, .7);
}
.vps-btn-primary:hover { background: var(--c-plum-deep); }

.vps-btn-ghost {
  background: transparent;
  color: var(--c-ink);
  border-color: rgba(42, 30, 31, .18);
}
.vps-btn-ghost:hover {
  border-color: var(--c-plum);
  color: var(--c-plum);
}

.vps-btn .vps-i {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
}

/* ---------- Cards ---------- */
.vps-card {
  background: var(--c-paper);
  border: 1px solid var(--c-line);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-card);
}

/* ---------- Top-Bar ---------- */
.vps-top {
  background: rgba(250, 244, 232, .85);
  backdrop-filter: saturate(140%) blur(8px);
  -webkit-backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid var(--c-line);
  position: sticky;
  top: 0;
  z-index: 50;
}
.vps-top-inner {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-left: 48px;
  padding-right: 48px;
  max-width: 1220px;
}
.vps-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}
.vps-brand .vps-logo-mark {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  box-shadow: 0 10px 22px -14px rgba(94, 14, 80, .55);
}
.vps-brand-name {
  font-size: 22px;
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -.01em;
}
.vps-brand-name em {
  color: var(--c-plum);
  font-style: normal;
}
.vps-brand-tag {
  display: block;
  margin-top: 6px;
  padding-left: 2px;
  font-size: 11px;
  letter-spacing: .32em;
  color: var(--c-plum);
  text-transform: uppercase;
  font-weight: 700;
}

.vps-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 14px;
  font-weight: 600;
  color: #3F3735;
}
.vps-nav a {
  position: relative;
  padding: 4px 0;
  transition: color .2s var(--ease);
}
.vps-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -2px;
  height: 1.5px;
  background: var(--c-plum);
  transition: right .25s var(--ease);
}
.vps-nav a:hover          { color: var(--c-plum); }
.vps-nav a:hover::after   { right: 0; }

/* ---------- Hero ---------- */
.vps-hero {
  position: relative;
  padding: 56px 0 48px;
  background:
    radial-gradient(60% 50% at 92% 10%, rgba(244, 201, 168, .55), transparent 65%),
    radial-gradient(48% 42% at -5% 95%, rgba(141, 182, 0, .18), transparent 70%),
    radial-gradient(40% 35% at 60% 110%, rgba(139, 32, 120, .10), transparent 70%),
    linear-gradient(180deg, var(--c-cream) 0%, #F6F1E2 100%);
  overflow: hidden;
}
.vps-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(42, 30, 31, .05) 1px, transparent 1.4px);
  background-size: 22px 22px;
  mask-image: linear-gradient(180deg, transparent 0%, #000 30%, transparent 90%);
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 30%, transparent 90%);
  pointer-events: none;
}
.vps-hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 56px;
  align-items: center;
}
.vps-hero h1 {
  margin: 0;
  font-size: clamp(42px, 6.4vw, 80px);
  line-height: 1.02;
  font-weight: 400;
  letter-spacing: -.022em;
}
.vps-hero h1 em {
  color: var(--c-plum);
  font-style: italic;
  font-weight: 400;
}
.vps-hero h1 .underline {
  position: relative;
  display: inline-block;
  padding: 0 .04em;
}
.vps-hero h1 .underline::after {
  content: "";
  position: absolute;
  left: 2%;
  right: 2%;
  bottom: 0.05em;
  height: .22em;
  background: var(--c-peach);
  z-index: -1;
  border-radius: 6px;
}
.vps-hero-lede {
  max-width: 540px;
  color: #3F3735;
  font-size: 17px;
  margin: 24px 0 0;
}

.vps-benefits {
  margin-top: 28px;
  padding: 24px 26px;
  background: rgba(255, 255, 255, .78);
  border: 1px solid rgba(236, 226, 209, .9);
  border-radius: var(--r-lg);
  backdrop-filter: blur(6px);
  box-shadow: 0 24px 50px -36px rgba(94, 14, 80, .30);
}
.vps-benefits h3 {
  margin: 0 0 12px;
  color: var(--c-plum-deep);
  font-size: 18px;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -.005em;
}
.vps-benefits ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
  grid-template-columns: 1fr 1fr;
}
.vps-benefits li {
  position: relative;
  padding-left: 26px;
  color: var(--c-ink);
  font-size: 15px;
  line-height: 1.45;
  font-weight: 500;
}
.vps-benefits li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 14px;
  height: 14px;
  background: var(--c-green);
  border-radius: 50%;
  box-shadow: inset 0 0 0 3px var(--c-cream);
}

.vps-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}
.vps-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 26px;
}
.vps-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .7);
  border: 1px solid var(--c-line);
  font-size: 12.5px;
  font-weight: 600;
  color: #4A413E;
}
.vps-pill .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--c-green);
}
.vps-pill .heart-i {
  width: 14px;
  height: 14px;
  color: var(--c-plum);
  display: inline-flex;
  flex: 0 0 auto;
}
.vps-pill .heart-i svg { width: 100%; height: 100%; display: block; }

.vps-hero-art {
  position: relative;
  aspect-ratio: 1 / 1;
  max-height: 480px;
  border-radius: var(--r-xl);
  background: transparent;
  display: grid;
  place-items: center;
  overflow: hidden;
}
.vps-hero-art .vps-logo-mark {
  width: 100%;
  aspect-ratio: 1;
  border-radius: var(--r-xl);
  box-shadow: 0 24px 60px -28px rgba(0, 0, 0, .35);
  position: relative;
}

/* ---------- Marquee-Strip ---------- */
.vps-strip {
  background: var(--c-ink);
  color: var(--c-cream);
  padding: 18px 0;
  overflow: hidden;
  position: relative;
}
.vps-marquee {
  display: flex;
  gap: 56px;
  white-space: nowrap;
  animation: vps-marq 38s linear infinite;
  font-weight: 700;
  letter-spacing: .06em;
  font-size: 14px;
}
.vps-marquee span {
  display: inline-flex;
  align-items: center;
  gap: 18px;
}
.vps-marquee i {
  font-style: normal;
  color: var(--c-peach);
  font-size: 8px;
  vertical-align: middle;
}
.vps-marquee em {
  color: var(--c-green);
  font-style: normal;
}
@keyframes vps-marq {
  from { transform: translateX(0);    }
  to   { transform: translateX(-50%); }
}

/* ---------- Sections (Basis) ---------- */
.vps-section { padding: 56px 0; }
.vps-section--alt {
  background: linear-gradient(180deg, #F6F1E2 0%, var(--c-cream) 100%);
}
.vps-head {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 40px;
  align-items: end;
  margin-bottom: 36px;
}
.vps-head h2 {
  margin: 0;
  font-size: clamp(34px, 4.6vw, 56px);
  line-height: 1.05;
  font-weight: 400;
  letter-spacing: -.018em;
}
.vps-head h2 em {
  color: var(--c-plum);
  font-style: italic;
  font-weight: 400;
}
.vps-head p {
  margin: 0;
  color: var(--c-muted);
  max-width: 460px;
}

/* ---------- Leistungen ---------- */
.vps-services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.vps-service {
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  transition: transform .25s var(--ease),
              box-shadow .25s var(--ease),
              border-color .25s var(--ease);
}
.vps-service:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 60px -36px rgba(94, 14, 80, .35),
              0 4px 8px -4px rgba(94, 14, 80, .10);
  border-color: rgba(139, 32, 120, .25);
}
.vps-service .vps-icon {
  width: 60px;
  height: 60px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--c-blush), var(--c-peach));
  display: grid;
  place-items: center;
  color: var(--c-plum-deep);
  margin-bottom: 24px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .6);
}
.vps-service:nth-child(2) .vps-icon {
  background: linear-gradient(135deg, #F5E6F0, #E8C4DE);
  color: var(--c-plum-deep);
}
.vps-service:nth-child(3) .vps-icon {
  background: linear-gradient(135deg, var(--c-green-soft), #BBDD66);
  color: var(--c-green-deep);
}
.vps-service .vps-icon svg { width: 30px; height: 30px; }
.vps-service h3 {
  margin: 0 0 6px;
  font-size: 28px;
  line-height: 1.1;
  letter-spacing: -.012em;
  font-weight: 400;
}
.vps-service .vps-tagline {
  margin: 0 0 14px;
  color: var(--c-plum-deep);
  font-weight: 700;
  font-size: 16px;
}
.vps-service p {
  margin: 0 0 14px;
  color: var(--c-muted);
  font-size: 16px;
  line-height: 1.55;
}
.vps-service .vps-ideal-title {
  margin: 18px 0 8px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--c-ink);
}
.vps-service ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}
.vps-service ul li {
  position: relative;
  padding-left: 22px;
  font-size: 15px;
  line-height: 1.45;
  color: var(--c-ink);
}
.vps-service ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 12px;
  height: 2px;
  background: var(--c-plum);
  border-radius: 2px;
}

/* ---------- Über mich ---------- */
.vps-about {
  background: linear-gradient(135deg, var(--c-plum-deep) 0%, var(--c-plum) 100%);
  color: var(--c-cream);
  border-radius: var(--r-xl);
  padding: 56px;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 48px;
  position: relative;
  overflow: hidden;
}
.vps-about::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(50% 40% at 100% 0%, rgba(141, 182, 0, .22), transparent 60%),
    radial-gradient(40% 35% at 0% 100%, rgba(244, 201, 168, .18), transparent 60%);
  pointer-events: none;
}
.vps-about > * { position: relative; }
.vps-about .vps-eyebrow         { color: var(--c-peach); }
.vps-about .vps-eyebrow::before { background: var(--c-peach); }
.vps-about h2 {
  margin: 0 0 18px;
  font-size: clamp(32px, 3.6vw, 48px);
  line-height: 1.06;
  font-weight: 400;
  letter-spacing: -.018em;
}
.vps-about h2 em {
  color: var(--c-peach);
  font-style: italic;
  font-weight: 400;
}
.vps-about p {
  color: rgba(255, 255, 255, .88);
  margin: 0 0 14px;
  font-size: 16px;
  line-height: 1.6;
}
.vps-about h3 {
  margin: 26px 0 8px;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -.005em;
  display: flex;
  align-items: center;
  gap: 10px;
}
.vps-about h3 .vps-i {
  width: 34px;
  height: 34px;
  padding: 6px;
  background: rgba(255, 255, 255, .14);
  border-radius: 10px;
}
.vps-about ul {
  margin: 18px 0 26px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}
.vps-about li {
  position: relative;
  padding-left: 26px;
  color: rgba(255, 255, 255, .92);
  font-size: 16px;
  line-height: 1.5;
}
.vps-about li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 14px;
  height: 2px;
  background: var(--c-peach);
  border-radius: 2px;
}
.vps-about-portrait {
  background: var(--c-paper);
  border-radius: var(--r-lg);
  padding: 18px;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-self: start;
}
.vps-about-portrait .vps-logo-mark {
  width: 100%;
  aspect-ratio: 1;
  border-radius: var(--r-md);
}
.vps-portrait-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 4px 6px 8px;
}
.vps-portrait-meta b      { color: var(--c-ink); font-size: 15px; }
.vps-portrait-meta span   { color: var(--c-muted); font-size: 12.5px; letter-spacing: .04em; }
.vps-portrait-meta .vps-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--c-plum-soft);
  color: var(--c-plum);
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 14px;
  flex: 0 0 auto;
}
.vps-about .vps-btn-primary {
  background: var(--c-cream);
  color: var(--c-plum-deep);
  box-shadow: 0 12px 24px -14px rgba(0, 0, 0, .4);
}
.vps-about .vps-btn-primary:hover {
  background: var(--c-peach);
  color: var(--c-plum-deep);
}

/* ---------- FAQ ---------- */
.vps-faq { border-top: 1px solid var(--c-line); }
.vps-faq-item { border-bottom: 1px solid var(--c-line); }
.vps-faq-q {
  width: 100%;
  padding: 24px 0;
  border: 0;
  background: transparent;
  color: var(--c-ink);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  font-size: 20px;
  text-align: left;
  cursor: pointer;
  transition: color .2s var(--ease);
}
.vps-faq-q:hover { color: var(--c-plum); }
.vps-faq-q b {
  font-family: "DM Serif Display", "Iowan Old Style",
               "Palatino Linotype", Palatino, Georgia, serif;
  font-weight: 400;
  letter-spacing: -.01em;
  font-size: 24px;
}
.vps-plus {
  width: 36px;
  height: 36px;
  border: 1px solid var(--c-line);
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  transition: transform .25s var(--ease),
              background-color .2s var(--ease),
              color .2s var(--ease),
              border-color .2s var(--ease);
  color: var(--c-ink);
}
.vps-plus svg { width: 14px; height: 14px; }
.vps-faq-q[aria-expanded="true"] .vps-plus {
  background: var(--c-plum);
  color: #fff;
  border-color: var(--c-plum);
  transform: rotate(45deg);
}
.vps-faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s var(--ease);
}
.vps-faq-a > div {
  padding: 0 0 24px;
  color: var(--c-muted);
  max-width: 760px;
  font-size: 16px;
  line-height: 1.6;
}

/* ---------- Kontakt ---------- */
.vps-welcome {
  margin: -8px 0 32px;
  padding: 22px 28px;
  background: linear-gradient(135deg, var(--c-blush), var(--c-sand));
  border-radius: var(--r-lg);
  color: var(--c-plum-deep);
  font-family: "DM Serif Display", "Iowan Old Style", Georgia, serif;
  font-size: clamp(20px, 2.2vw, 26px);
  line-height: 1.25;
  font-weight: 400;
  letter-spacing: -.01em;
  display: flex;
  align-items: center;
  gap: 18px;
  box-shadow: 0 18px 40px -32px rgba(94, 14, 80, .4);
}
.vps-welcome::before {
  content: "";
  flex: 0 0 auto;
  width: 6px;
  align-self: stretch;
  border-radius: 4px;
  background: var(--c-plum);
}

.vps-contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.vps-contact-card { padding: 36px; }
.vps-contact-card h3 {
  margin: 0 0 24px;
  font-size: 30px;
  line-height: 1.1;
  font-weight: 400;
  letter-spacing: -.012em;
}
.vps-contact-list { display: grid; gap: 18px; }
.vps-contact-row {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding-top: 18px;
  border-top: 1px solid var(--c-line);
}
.vps-contact-row:first-child { border-top: 0; padding-top: 0; }
.vps-contact-row .vps-c-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  flex: 0 0 auto;
  background: var(--c-plum-soft);
  color: var(--c-plum);
  display: grid;
  place-items: center;
}
.vps-contact-row .vps-c-icon svg { width: 20px; height: 20px; }
.vps-contact-row strong {
  display: block;
  font-size: 16px;
  margin-top: 2px;
}
.vps-contact-row strong a {
  color: var(--c-plum);
  transition: color .2s var(--ease);
}
.vps-contact-row strong a:hover { color: var(--c-plum-deep); }
.vps-contact-row p {
  margin: 6px 0 0;
  color: var(--c-muted);
  font-size: 15px;
  line-height: 1.5;
}
.vps-small {
  display: block;
  color: var(--c-muted);
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 700;
}
.vps-policy {
  margin-top: 24px;
  padding: 20px;
  border-radius: var(--r-md);
  background: var(--c-cream);
  border: 1px solid var(--c-line);
  color: var(--c-ink);
  font-size: 15px;
  line-height: 1.55;
}
.vps-policy b {
  display: block;
  margin-bottom: 6px;
  color: var(--c-plum-deep);
}

/* ---------- Formular ---------- */
.vps-form label {
  display: block;
  font-size: 11px;
  color: var(--c-muted);
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 700;
  margin: 0 0 8px;
}
.vps-form .vps-field { margin-bottom: 16px; }
.vps-form input,
.vps-form select,
.vps-form textarea {
  width: 100%;
  border: 1px solid var(--c-line);
  border-radius: 12px;
  padding: 13px 14px;
  font: inherit;
  background: var(--c-cream);
  color: var(--c-ink);
  transition: border-color .2s var(--ease),
              background-color .2s var(--ease),
              box-shadow .2s var(--ease);
}
.vps-form input:focus,
.vps-form select:focus,
.vps-form textarea:focus {
  outline: none;
  border-color: var(--c-plum);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(139, 32, 120, .10);
}
.vps-form textarea { min-height: 110px; resize: vertical; }
.vps-form button { width: 100%; margin-top: 6px; }
.vps-form-note {
  font-size: 14px;
  color: var(--c-muted);
  margin: 14px 0 0;
  line-height: 1.5;
}

/* ---------- Impressum / Rechtliches ---------- */
.vps-legal {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.vps-legal-card { padding: 36px; }
.vps-legal-card h3 {
  margin: 0 0 24px;
  font-size: 28px;
  font-weight: 400;
  letter-spacing: -.012em;
  line-height: 1.1;
}
.vps-legal dl { margin: 0; }
.vps-legal dt {
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--c-muted);
  margin-top: 20px;
}
.vps-legal dt:first-of-type { margin-top: 0; }
.vps-legal dd {
  margin: 6px 0 0;
  color: var(--c-ink);
  font-size: 16px;
  line-height: 1.6;
}
.vps-legal dd a        { color: var(--c-plum); }
.vps-legal dd a:hover  { color: var(--c-plum-deep); }
.vps-placeholder {
  color: var(--c-plum);
  font-style: italic;
  background: var(--c-plum-soft);
  padding: 2px 8px;
  border-radius: 4px;
  font-size: .92em;
}
.vps-legal-note {
  margin-top: 24px;
  padding: 30px 36px;
  background: var(--c-cream);
  border-radius: var(--r-lg);
  border: 1px solid var(--c-line);
}
.vps-legal-note h4 {
  margin: 22px 0 6px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .01em;
  color: var(--c-plum-deep);
}
.vps-legal-note h4:first-child { margin-top: 0; }
.vps-legal-note p {
  margin: 0;
  color: var(--c-ink);
  font-size: 15px;
  line-height: 1.65;
  max-width: 80ch;
}
.vps-legal-note a        { color: var(--c-plum); }
.vps-legal-note a:hover  { color: var(--c-plum-deep); }

/* ---------- Datenschutz ---------- */
.vps-privacy { padding: 44px 48px; }
.vps-privacy h3 {
  margin: 28px 0 10px;
  font-size: 22px;
  font-weight: 400;
  letter-spacing: -.01em;
  color: var(--c-ink);
  line-height: 1.15;
}
.vps-privacy h3:first-child { margin-top: 0; }
.vps-privacy p {
  margin: 0 0 12px;
  color: var(--c-ink);
  font-size: 16px;
  line-height: 1.65;
  max-width: 78ch;
}
.vps-privacy p b { color: var(--c-ink); font-weight: 700; }
.vps-privacy a {
  color: var(--c-plum);
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-thickness: 1px;
}
.vps-privacy a:hover { color: var(--c-plum-deep); }

/* ---------- Footer ---------- */
.vps-footer {
  background: var(--c-paper);
  border-top: 1px solid var(--c-line);
  padding: 32px 0;
  color: var(--c-muted);
  font-size: 13px;
}
.vps-footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
}
.vps-footer-links {
  display: flex;
  gap: 18px;
}
.vps-footer a {
  color: var(--c-muted);
  transition: color .2s var(--ease);
}
.vps-footer a:hover { color: var(--c-plum); }

/* ---------- Floating WhatsApp-Button (mobil) ---------- */
.vps-fab {
  display: none;
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--c-plum);
  color: #fff;
  align-items: center;
  justify-content: center;
  box-shadow: 0 16px 32px -10px rgba(94, 14, 80, .55),
              0 4px 10px -2px rgba(0, 0, 0, .18);
  z-index: 60;
  transition: transform .2s var(--ease),
              background-color .2s var(--ease),
              box-shadow .2s var(--ease);
}
.vps-fab:hover {
  background: var(--c-plum-deep);
  transform: translateY(-2px);
}
.vps-fab:active { transform: translateY(0); }
.vps-fab svg { width: 26px; height: 26px; }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .vps-nav { display: none; }
  .vps-top-inner { padding: 16px 28px; gap: 12px; }
  .vps-hero { padding: 36px 0 40px; }
  .vps-hero-grid,
  .vps-head,
  .vps-about,
  .vps-contact   { grid-template-columns: 1fr; }
  .vps-services  { grid-template-columns: 1fr; }
  .vps-legal     { grid-template-columns: 1fr; }
  .vps-legal-card { padding: 28px; }
  .vps-legal-note { padding: 24px 26px; }
  .vps-privacy   { padding: 32px 28px; }
  .vps-hero-art  { aspect-ratio: 1 / 1; padding: 24px; max-height: none; }
  .vps-section   { padding: 36px 0; }
  .vps-about     { padding: 36px; }
  .vps-benefits ul { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  /* Header kompakter: breiten WhatsApp-Button raus, stattdessen schwebender FAB unten rechts. */
  .vps-top .vps-btn-primary { display: none; }
  .vps-fab { display: inline-flex; }

  .vps-top-inner {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    padding-left: 28px;
    padding-right: 28px;
  }
  .vps-top-inner > .vps-btn { width: 100%; }
  .vps-brand-name { font-size: 20px; }
  .vps-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 22px;
    padding-top: 4px;
    font-size: 15px;
  }
  .vps-footer-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 14px;
  }
  .vps-footer-inner > div { justify-content: center; }
}
@media (max-width: 560px) {
  .vps-wrap { padding: 0 20px; }
  .vps-brand-name { font-size: 19px; }
  .vps-actions .vps-btn { width: 100%; }
  .vps-contact-card { padding: 26px; }
  .vps-about {
    padding: 28px;
    border-radius: var(--r-lg);
  }
  .vps-welcome { padding: 18px 20px; }
}
