@font-face {
  font-family: "CrimsonTextLocal";
  src: url("assets/fonts/crimson-text-regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "CrimsonTextLocal";
  src: url("assets/fonts/crimson-text-semibold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "JakartaLocal";
  src: url("assets/fonts/plus-jakarta-regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "JakartaLocal";
  src: url("assets/fonts/plus-jakarta-semibold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #fdeff6;
  --bg-soft: #fff6fb;
  --card: rgba(255, 255, 255, 0.65);
  --card-solid: #fff8fc;
  --line: rgba(206, 168, 190, 0.45);
  --text: #2c2330;
  --muted: #6f6071;
  --accent: #eb4e9a;
  --accent-strong: #cf2f7c;
  --radius-lg: 28px;
  --radius-md: 20px;
  --shadow: 0 24px 70px rgba(147, 64, 116, 0.18);
}

* {
  box-sizing: border-box;
}

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

body {
  font-family: "JakartaLocal", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 8% 10%, rgba(255, 188, 224, 0.9) 0%, transparent 32%),
    radial-gradient(circle at 88% 18%, rgba(255, 216, 236, 0.85) 0%, transparent 30%),
    radial-gradient(circle at 50% 100%, rgba(255, 220, 243, 0.9) 0%, transparent 36%),
    var(--bg);
  line-height: 1.6;
}

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.2;
  background-image: radial-gradient(circle, rgba(0, 0, 0, 0.09) 0.4px, transparent 0.5px);
  background-size: 3px 3px;
  z-index: -1;
}

h1,
h2,
h3 {
  font-family: "CrimsonTextLocal", Georgia, serif;
  margin: 0;
  letter-spacing: -0.015em;
  line-height: 1.08;
}

h1 {
  font-size: clamp(2.4rem, 6.6vw, 5.3rem);
}

h2 {
  font-size: clamp(1.8rem, 4vw, 3.3rem);
}

h3 {
  font-size: clamp(1.25rem, 2.3vw, 1.75rem);
}

p {
  margin: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

.section {
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(2.8rem, 8vw, 7rem) 1.25rem;
}

main {
  padding-top: 6.3rem;
}

.eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.74rem;
  font-weight: 600;
  color: var(--accent-strong);
  margin-bottom: 0.85rem;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 30;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.85rem 1rem;
  background: transparent;
  pointer-events: none;
}

.nav,
.menu-toggle {
  pointer-events: auto;
}

.nav {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.34rem;
  background: rgba(255, 255, 255, 0.48);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 999px;
  backdrop-filter: blur(14px) saturate(140%);
  box-shadow: 0 10px 30px rgba(114, 57, 95, 0.15);
}

.nav a {
  padding: 0.46rem 0.9rem;
  border-radius: 999px;
  font-size: 0.93rem;
  color: #4b3e4f;
}

.nav a:hover {
  background: rgba(255, 255, 255, 0.8);
}

.nav .nav-cta {
  background: var(--accent);
  color: #fff;
  font-weight: 500;
}

.nav .nav-mail {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.7);
}

.nav .nav-cta:hover {
  background: var(--accent-strong);
}

.menu-toggle {
  display: none;
  border: 1px solid rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.53);
  border-radius: 999px;
  padding: 0.5rem 0.9rem;
  font-weight: 600;
  color: #4c3550;
}

.hero {
  display: grid;
  grid-template-columns: 1.16fr 1fr;
  gap: 2.1rem;
  align-items: center;
}

.hero-copy {
  display: grid;
  gap: 1rem;
}

.hero-copy p {
  font-size: clamp(1rem, 1.25vw, 1.1rem);
  color: #3f3347;
}

.hero-visual {
  position: relative;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: -14px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, #ffb5dc, #ffd8ec 50%, #ffe7f4);
  filter: blur(0.2px);
  z-index: -1;
}

.hero-visual img {
  width: 100%;
  display: block;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.hero-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.72rem 1.18rem;
  border-radius: 999px;
  border: 0;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
  background: var(--accent-strong);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid var(--line);
  color: #4f3d53;
}

.section-head {
  margin-bottom: 1.4rem;
}

.leistungen-section {
  max-width: 1320px;
}

.leistungen-section .section-head h2 {
  font-size: clamp(2.2rem, 5vw, 4rem);
}

.cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

.card {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--card);
  backdrop-filter: blur(8px);
  box-shadow: 0 14px 45px rgba(122, 70, 105, 0.12);
}

.card img {
  display: block;
  width: 100%;
  height: 320px;
  object-fit: cover;
  cursor: zoom-in;
  outline: none;
  -webkit-tap-highlight-color: transparent;
}

.card img:focus {
  outline: none;
}

.card img:focus-visible {
  outline: 2px solid rgba(207, 47, 124, 0.55);
  outline-offset: -2px;
}

.card-body {
  padding: 1.2rem;
  display: grid;
  gap: 0.52rem;
}

.card-body h3 {
  font-size: clamp(1.5rem, 2.2vw, 2rem);
}

.card-body p {
  color: var(--muted);
  font-size: 1.02rem;
}

.card-price {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-top: 0.6rem;
  padding-top: 0.85rem;
  border-top: 1px solid var(--line);
}

.price-main {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.price-note {
  font-size: 0.78rem;
  color: var(--muted);
  opacity: 0.7;
}

.combo-hint {
  margin-top: 2.5rem;
  text-align: center;
  padding: 2.5rem 2rem;
  background: linear-gradient(135deg, rgba(235, 78, 154, 0.12) 0%, rgba(207, 47, 124, 0.08) 100%);
  border: 1.5px solid rgba(235, 78, 154, 0.35);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.combo-hint-icon {
  font-size: 1.8rem;
  color: var(--accent);
  line-height: 1;
}

.combo-hint-title {
  font-family: "CrimsonTextLocal", Georgia, serif;
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  font-weight: 600;
  color: var(--accent-strong);
  margin: 0;
}

.combo-hint-text {
  max-width: 480px;
  color: var(--text);
  margin: 0 0 0.5rem;
  line-height: 1.6;
}

.price-amount {
  font-family: "CrimsonTextLocal", Georgia, serif;
  font-size: clamp(1.7rem, 2.8vw, 2.1rem);
  font-weight: 600;
  line-height: 1;
  color: var(--accent-strong);
  letter-spacing: -0.02em;
}

.price-unit {
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--muted);
  padding: 0.25rem 0.6rem;
  background: rgba(235, 78, 154, 0.09);
  border-radius: 999px;
  border: 1px solid rgba(235, 78, 154, 0.18);
}

.split {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 2rem;
  align-items: start;
}

.steps {
  margin: 0;
  padding-left: 1.1rem;
  display: grid;
  gap: 1rem;
}

.steps li {
  border-left: 3px solid rgba(235, 78, 154, 0.35);
  padding-left: 0.85rem;
}

.steps h3 {
  margin-bottom: 0.24rem;
}

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

.faq-list {
  display: grid;
  gap: 0.75rem;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 0.9rem 1rem;
  background: var(--card);
  backdrop-filter: blur(10px);
}

.faq-list summary {
  font-weight: 600;
  cursor: pointer;
}

.faq-list p {
  margin-top: 0.62rem;
  color: var(--muted);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.testimonial-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  background: var(--card);
  backdrop-filter: blur(8px);
  box-shadow: 0 14px 45px rgba(122, 70, 105, 0.1);
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.testimonial-stars {
  color: var(--accent);
  font-size: 1.1rem;
  letter-spacing: 0.06em;
}

.testimonial-card blockquote {
  margin: 0;
  padding: 0;
  flex: 1;
}

.testimonial-card blockquote p {
  font-family: "CrimsonTextLocal", Georgia, serif;
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  color: #3f3347;
  line-height: 1.65;
}

.testimonial-card footer {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  margin-top: auto;
  padding-top: 0.85rem;
  border-top: 1px solid var(--line);
}

.testimonial-card footer strong {
  font-size: 0.95rem;
  color: var(--text);
}

.testimonial-card footer span {
  font-size: 0.78rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.testimonial-source {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.25rem;
}

.testimonial-source span {
  font-size: 0.75rem;
  color: var(--muted);
  text-transform: none;
  letter-spacing: 0;
}

.testimonials-cta {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

@media (max-width: 860px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}

.contact {
  padding-top: 1rem;
}

.contact-panel {
  max-width: 760px;
  margin: 0 auto;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(1.25rem, 3vw, 2.1rem);
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.74), rgba(255, 240, 249, 0.78));
  box-shadow: 0 20px 50px rgba(141, 69, 114, 0.16);
  display: grid;
  gap: 0.9rem;
  text-align: center;
}

.contact-panel p {
  color: var(--muted);
}

.contact-panel .btn {
  justify-self: center;
}

.contact-actions {
  display: flex;
  gap: 0.7rem;
  justify-content: center;
  flex-wrap: wrap;
}

.seo-section {
  padding-top: clamp(3.5rem, 7vw, 6rem);
}

.seo-panel {
  max-width: 920px;
  margin: 0 auto;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(1.4rem, 3vw, 2.4rem);
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(8px);
  box-shadow: 0 16px 40px rgba(141, 69, 114, 0.12);
  display: grid;
  gap: 1rem;
}

.seo-panel h3 {
  margin-top: 0.4rem;
  font-size: clamp(1.3rem, 2.4vw, 1.8rem);
}

.seo-panel p {
  color: var(--muted);
}

.site-footer {
  text-align: center;
  color: #7b667a;
  font-size: 0.92rem;
  border-top: 1px solid rgba(207, 168, 194, 0.4);
  padding: 1.1rem 1rem;
  margin-top: 2rem;
}

.site-footer a {
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.footer-love {
  color: var(--accent);
  font-size: 0.82rem;
}

.legal-section {
  max-width: 1280px;
}

.legal-page {
  background:
    radial-gradient(circle at 15% 10%, rgba(255, 209, 234, 0.7) 0%, transparent 38%),
    radial-gradient(circle at 82% 85%, rgba(255, 225, 242, 0.8) 0%, transparent 36%),
    linear-gradient(180deg, #fff7fc 0%, #fdeff7 100%);
  min-height: 100svh;
  display: flex;
  flex-direction: column;
}

.legal-page .noise {
  opacity: 0.1;
}

.legal-page main {
  flex: 1;
  display: flex;
}

.legal-page .legal-section {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: clamp(5rem, 9vh, 7.5rem);
  padding-bottom: clamp(2rem, 5vh, 4rem);
}

.legal-page .site-footer {
  margin-top: 0;
}

.legal-card {
  width: min(1100px, 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(1.4rem, 3vw, 2.4rem);
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(8px);
  box-shadow: 0 20px 50px rgba(141, 69, 114, 0.16);
  display: grid;
  gap: 1rem;
}

.legal-address {
  font-style: normal;
  display: grid;
  gap: 0.2rem;
  color: var(--muted);
  line-height: 1.75;
}

.legal-body {
  display: grid;
  gap: 0.5rem;
  color: var(--muted);
  line-height: 1.75;
}

.legal-body h2 {
  color: var(--text);
  font-size: 1rem;
  font-weight: 600;
  margin-top: 1rem;
  margin-bottom: 0;
}

.legal-body p,
.legal-body ul {
  margin: 0;
}

.legal-body ul {
  padding-left: 1.25rem;
  display: grid;
  gap: 0.2rem;
}

.legal-body a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-updated {
  font-size: 0.85rem;
  margin-top: 1rem;
  opacity: 0.6;
}

.has-lightbox-open {
  overflow: hidden;
}

.image-overlay {
  position: fixed;
  inset: 0;
  z-index: 140;
  display: grid;
  place-items: center;
  padding: clamp(1rem, 3vw, 2rem);
  background: rgba(18, 9, 18, 0.78);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.image-overlay.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.image-overlay__img {
  width: auto;
  max-width: min(94vw, 1400px);
  max-height: 88vh;
  object-fit: contain;
  border-radius: 18px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.42);
}

.image-overlay__close {
  position: fixed;
  top: 1rem;
  right: 1rem;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  color: #2f2333;
  font-size: 1.7rem;
  line-height: 1;
  cursor: pointer;
}

.floating-google {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 999px;
  padding: 0.5rem 0.9rem 0.5rem 0.6rem;
  background: #fff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  z-index: 100;
}

.floating-google:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.18);
}

.floating-google-logo {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.floating-google-info {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.floating-google-stars {
  font-size: 0.75rem;
  color: #fbbc05;
  letter-spacing: 0.5px;
}

.floating-google-label {
  font-size: 0.68rem;
  color: #5f6368;
  font-weight: 600;
  white-space: nowrap;
}

.floating-wa {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  border-radius: 999px;
  padding: 0.45rem 0.72rem;
  color: #fff;
  background: #25d366;
  box-shadow: 0 10px 28px rgba(19, 94, 49, 0.28);
}

.floating-wa img {
  width: 19px;
  height: 19px;
  border-radius: 50%;
}

.reveal {
  opacity: 1;
  transform: translateY(0);
}

.js .reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .hero,
  .split {
    grid-template-columns: 1fr;
  }

  .cards {
    grid-template-columns: 1fr 1fr;
  }

  .card img {
    height: 280px;
  }
}

@media (max-width: 760px) {
  main {
    padding-top: 5.3rem;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .nav {
    position: fixed;
    top: 64px;
    left: 1rem;
    right: 1rem;
    display: none;
    border-radius: 20px;
    padding: 0.6rem;
    gap: 0.45rem;
    flex-direction: column;
    align-items: stretch;
    background: rgba(255, 255, 255, 0.78);
  }

  .nav a {
    padding: 0.62rem 0.85rem;
    text-align: center;
  }

  .nav.is-open {
    display: flex;
  }

  .cards {
    grid-template-columns: 1fr;
  }

  .card img {
    height: 240px;
  }

  .floating-wa span {
    display: none;
  }

  .floating-google-label {
    display: none;
  }

  .floating-google {
    bottom: 1rem;
    padding: 0.5rem;
    border-radius: 999px;
  }
}
