:root {
  --pink: #b83280;
  --pink-deep: #8e2b6c;
  --pink-soft: #f6e7ef;
  --bar: #c43b7a;
  --cream: #faf6f3;
  --paper: #ffffff;
  --ink: #2c1a26;
  --muted: #6e5564;
  --line: #ead6e0;
  --shadow: 0 24px 60px rgba(142, 43, 108, .10);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "Source Sans 3", "Segoe UI", Arial, sans-serif;
  background:
    radial-gradient(900px 420px at 8% -10%, rgba(196, 59, 122, .10), transparent 55%),
    radial-gradient(700px 380px at 100% 8%, rgba(246, 231, 239, .9), transparent 50%),
    var(--cream);
  color: var(--ink);
  line-height: 1.65;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.wrap { width: min(1120px, calc(100% - 40px)); margin-inline: auto; }

header {
  position: sticky; top: 0; z-index: 40;
  background: #ffffff;
  border-bottom: 3px solid var(--pink);
  box-shadow: 0 8px 24px rgba(142, 43, 108, .08);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; padding: 14px 0;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { width: 46px; height: 46px; }
.brand strong {
  display: block; letter-spacing: .12em; font-size: .72rem;
  color: var(--pink-deep); text-transform: uppercase;
}
.brand small { color: var(--muted); font-size: .8rem; }
nav ul {
  display: flex; gap: 8px; list-style: none;
  color: var(--muted); font-weight: 550; font-size: .95rem;
}
nav a {
  padding: 8px 12px; border-radius: 999px;
}
nav a:hover { color: var(--pink-deep); background: var(--pink-soft); }

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; border: 0; border-radius: 999px;
  padding: 13px 22px; font: inherit; font-weight: 650;
  background: var(--pink); color: #fff; cursor: pointer;
  box-shadow: 0 10px 24px rgba(184, 50, 128, .22);
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}
.btn:hover { transform: translateY(-1px); background: var(--pink-deep); }
.btn-light {
  background: #fff; color: var(--pink-deep);
  border: 1px solid var(--line); box-shadow: none;
}
.btn-light:hover { background: var(--pink-soft); }

.hero {
  display: grid; grid-template-columns: 1.05fr .95fr;
  gap: 56px; align-items: center; padding: 72px 0 28px;
}
.eyebrow {
  color: var(--pink); letter-spacing: .2em; text-transform: uppercase;
  font-size: .7rem; font-weight: 700; margin-bottom: 16px;
}
h1, h2, .serif {
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-weight: 500; line-height: 1.05;
}
h1 { font-size: clamp(2.8rem, 6.2vw, 5rem); margin-bottom: 18px; letter-spacing: -.02em; }
h1 em { font-style: italic; color: var(--pink); }
.lead { color: var(--muted); font-size: 1.12rem; max-width: 36rem; margin-bottom: 28px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 28px; }
.hero-meta {
  display: flex; gap: 22px; flex-wrap: wrap; color: var(--muted); font-size: .92rem;
}
.hero-meta b { display: block; color: var(--ink); font-size: 1.05rem; }
.hero-photo {
  position: relative; border-radius: 32px; overflow: hidden;
  box-shadow: var(--shadow); min-height: 420px;
}
.hero-photo::after {
  content: ""; position: absolute; inset: auto 18px 18px auto;
  width: 42%; height: 28%;
  border: 1px solid rgba(255,255,255,.45);
  border-radius: 18px; pointer-events: none;
}
.hero-photo img { width: 100%; height: 100%; object-fit: cover; min-height: 420px; }

.notice {
  display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  background: #fff; border: 1px solid var(--line);
  border-radius: 20px; padding: 16px 20px; color: var(--pink-deep);
  font-weight: 600; margin: 8px 0 20px;
  box-shadow: var(--shadow);
}

section { padding: 68px 0; }
#leistungen, #preise, #termine { background: transparent; }
.band { background: #fff; border-block: 1px solid var(--line); }
h2 { font-size: clamp(2.1rem, 4vw, 3.3rem); margin-bottom: 12px; }
.intro { color: var(--muted); max-width: 38rem; margin-bottom: 32px; }

.services { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.card {
  background: var(--paper); border: 1px solid var(--line);
  border-radius: 26px; overflow: hidden; box-shadow: var(--shadow);
  transition: transform .22s ease;
}
.card:hover { transform: translateY(-5px); }
.card img { height: 200px; width: 100%; object-fit: cover; }
.card-body { padding: 22px 22px 26px; }
.card h3 { font-size: 1.25rem; margin-bottom: 8px; }
.card p { color: var(--muted); }
.tag {
  display: inline-block; font-size: .72rem; letter-spacing: .12em;
  text-transform: uppercase; color: var(--pink); font-weight: 700; margin-bottom: 8px;
}

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.split img {
  width: 100%; border-radius: 30px; min-height: 360px; object-fit: cover;
  box-shadow: var(--shadow);
}
.list { margin: 20px 0 0; list-style: none; color: var(--muted); }
.list li {
  position: relative; padding: 10px 0 10px 28px;
  border-bottom: 1px solid var(--line);
}
.list li:last-child { border-bottom: 0; }
.list li::before {
  content: ""; position: absolute; left: 0; top: 18px;
  width: 10px; height: 10px; border-radius: 50%; background: var(--pink);
}

.price-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.price-card {
  background: #fff; border: 1px solid var(--line); border-radius: 26px;
  padding: 26px; box-shadow: var(--shadow);
}
.prices { list-style: none; margin-top: 12px; }
.prices li {
  display: flex; justify-content: space-between; gap: 16px; align-items: baseline;
  padding: 14px 0; border-bottom: 1px solid var(--line); color: var(--muted);
}
.prices li:last-child { border-bottom: 0; }
.prices strong { color: var(--ink); font-size: 1.15rem; white-space: nowrap; }

.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 8px; }
.step {
  background: #fff; border: 1px solid var(--line); border-radius: 22px; padding: 22px;
}
.step b {
  display: grid; place-items: center; width: 36px; height: 36px;
  border-radius: 12px; background: var(--pink-soft); color: var(--pink-deep);
  margin-bottom: 12px;
}

.contact-grid { display: grid; grid-template-columns: .92fr 1.08fr; gap: 20px; }
.panel {
  background: var(--paper); border: 1px solid var(--line);
  border-radius: 28px; padding: 30px; box-shadow: var(--shadow);
}
.panel.pink {
  background: linear-gradient(165deg, #c94a86 0%, var(--pink-deep) 100%);
  color: #fff; border: 0;
}
.panel.pink p { color: #fff; }
.panel.pink a { color: #fff; font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }
.panel.pink .btn,
.panel.pink .btn-light {
  background: #fff;
  color: var(--pink-deep);
  border: 2px solid #fff;
  text-decoration: none;
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(0,0,0,.18);
}
.panel.pink .btn-light:hover {
  background: #ffe9f4;
  color: var(--pink-deep);
}
.phone {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.7rem, 3.6vw, 2.5rem); display: block; margin: 8px 0 16px;
}
form { display: grid; gap: 12px; }
label { font-size: .82rem; color: var(--muted); font-weight: 600; }
input, textarea {
  width: 100%; border: 1px solid var(--line); background: #fff;
  border-radius: 14px; padding: 13px 14px; font: inherit; color: var(--ink);
}
textarea { min-height: 110px; resize: vertical; }
input:focus, textarea:focus { outline: 2px solid #e7b4d0; border-color: var(--pink); }

footer {
  border-top: 1px solid var(--line);
  padding: 28px 0 44px; color: var(--muted);
  display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap;
}
footer a:hover { color: var(--pink-deep); }

.legal { max-width: 720px; padding: 56px 0 80px; }
.legal h2 { font-size: 1.5rem; margin: 28px 0 8px; }
.legal p, .legal li { color: var(--muted); }
.legal address { font-style: normal; color: var(--ink); line-height: 1.85; margin: 16px 0; }

.toast {
  position: fixed; right: 20px; bottom: 20px; display: none;
  background: var(--ink); color: #fff; padding: 14px 18px;
  border-radius: 14px; box-shadow: var(--shadow); z-index: 50;
}

@media (max-width: 860px) {
  nav ul { display: none; }
  .hero, .services, .split, .contact-grid, .steps, .price-grid { grid-template-columns: 1fr; }
  .hero { padding-top: 40px; gap: 28px; }
  .hero-photo, .hero-photo img, .split img { min-height: 280px; }
}
