/* =============================================
   FACETTENREICH – Bordeaux-Palette
   Farben: Bordeaux + Cremeweiß
   Fonts: Playfair Display + DM Sans
   ============================================= */

@font-face {
  font-family: 'DM Sans';
  src: url('assets/fonts/dm-sans-v17-latin-300.woff2') format('woff2');
  font-style: normal;
  font-weight: 300;
  font-display: swap;
}

@font-face {
  font-family: 'DM Sans';
  src: url('assets/fonts/dm-sans-v17-latin-regular.woff2') format('woff2');
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: 'DM Sans';
  src: url('assets/fonts/dm-sans-v17-latin-500.woff2') format('woff2');
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: 'DM Sans';
  src: url('assets/fonts/dm-sans-v17-latin-600.woff2') format('woff2');
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: 'Playfair Display';
  src: url('assets/fonts/playfair-display-v40-latin-regular.woff2') format('woff2');
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: 'Playfair Display';
  src: url('assets/fonts/playfair-display-v40-latin-500.woff2') format('woff2');
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: 'Playfair Display';
  src: url('assets/fonts/playfair-display-v40-latin-700.woff2') format('woff2');
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: 'Playfair Display';
  src: url('assets/fonts/playfair-display-v40-latin-italic.woff2') format('woff2');
  font-style: italic;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: 'Playfair Display';
  src: url('assets/fonts/playfair-display-v40-latin-500italic.woff2') format('woff2');
  font-style: italic;
  font-weight: 500;
  font-display: swap;
}

:root {
  /* Farben – Bordeaux-Palette */
  --cream:          #F5F0EB;
  --bordeaux:       #7A1F2E;
  --bordeaux-light: #C4808E;
  --bordeaux-pale:  #F2D0D6;
  --text-dark:      #2A2A2A;
  --text-muted:     #7A6A62;
  --white:          #ffffff;

  --radius:    20px;
  --radius-lg: 32px;
  --shadow:    0 8px 32px rgba(42, 42, 42, 0.10);
  --shadow-lg: 0 24px 60px rgba(42, 42, 42, 0.14);
}

*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--text-dark);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ── Layout ─────────────────────────────── */
.wrap {
  width: min(1160px, calc(100% - 2.5rem));
  margin-inline: auto;
}

.section {
  padding: clamp(5rem, 10vw, 9rem) 0;
}

/* ── Typography ─────────────────────────── */
h1, h2, h3 {
  font-family: 'Playfair Display', serif;
  line-height: 1.08;
  margin: 0;
  color: var(--text-dark);
}

h1 { font-size: clamp(2.8rem, 6vw, 5.2rem); font-weight: 700; }
h2 { font-size: clamp(2rem, 4.2vw, 3.6rem); font-weight: 500; }
h3 { font-size: 1.35rem; font-weight: 500; }

em {
  font-style: italic;
  color: var(--bordeaux);
  font-weight: 400;
}

p { margin: 0; }

/* ── Tags / Labels ──────────────────────── */
.tag {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: var(--bordeaux);
  color: var(--cream);
  border-radius: 999px;
  padding: 0.3rem 0.85rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  width: fit-content;
}

.tag--muted {
  background: var(--bordeaux);
  color: var(--cream);
}

/* ── Buttons ────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  border: none;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  transition: transform 200ms ease, box-shadow 200ms ease, background 200ms ease;
}

.btn:hover { transform: translateY(-2px); }

.btn-pill {
  border-radius: 999px;
  padding: 0.7rem 1.4rem;
  background: var(--bordeaux-pale);
  color: var(--bordeaux);
  border: 1px solid rgba(122, 31, 46, 0.25);
}

.btn-pill:hover {
  background: var(--bordeaux);
  color: var(--cream);
  box-shadow: 0 8px 24px rgba(122,31,46,0.35);
}

.btn--dark {
  background: var(--bordeaux);
  color: var(--cream);
  border-color: var(--bordeaux);
}

.btn--dark:hover {
  background: var(--bordeaux);
  filter: brightness(0.88);
  box-shadow: 0 8px 24px rgba(122,31,46,0.35);
}

.btn--light {
  background: rgba(255,255,255,0.92);
  color: var(--text-dark);
  border-color: rgba(255,255,255,0.6);
}

.btn--outline {
  background: transparent;
  color: var(--text-dark);
  border: 1.5px solid rgba(42,42,42,0.22);
}

.btn--outline:hover {
  background: var(--bordeaux);
  color: var(--cream);
}

.btn-text {
  background: none;
  color: var(--text-muted);
  padding: 0.7rem 0;
  font-weight: 500;
  font-size: 0.9rem;
  border: none;
  transition: color 200ms ease;
}

.btn-text:hover { color: var(--bordeaux); transform: none; }

/* ── Scroll Reveal ──────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 600ms cubic-bezier(0.22,1,0.36,1),
              transform 600ms cubic-bezier(0.22,1,0.36,1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal--delay  { transition-delay: 90ms; }
.reveal--delay2 { transition-delay: 180ms; }
.reveal--delay3 { transition-delay: 270ms; }

/* ── HEADER ─────────────────────────────── */
.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 200;
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
  background: rgba(245, 240, 235, 0.75);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  box-shadow: 0 1px 0 rgba(122,31,46,0.10), 0 4px 24px rgba(42,42,42,0.07);
  transition: background 250ms ease, box-shadow 250ms ease;
}

.header.scrolled {
  background: rgba(245, 240, 235, 0.88);
  box-shadow: 0 1px 0 rgba(122,31,46,0.16), 0 4px 24px rgba(42,42,42,0.10);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  min-height: 72px;
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.45rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  letter-spacing: -0.01em;
  margin-right: auto;
}

.logo-diamant {
  height: 48px;
  width: auto;
  flex-shrink: 0;
}

.logo-schrift {
  height: 60px;
  width: auto;
}

.footer-logo-img {
  height: 190px;
  width: auto;
  display: block;
}

.nav {
  display: flex;
  gap: 2rem;
}

.nav a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-dark);
  transition: color 180ms ease;
  position: relative;
}

.nav a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -3px;
  width: 0; height: 1.5px;
  background: var(--bordeaux);
  transition: width 220ms ease;
}

.nav a:hover { color: var(--bordeaux); }
.nav a:hover::after { width: 100%; }

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 40px; height: 40px;
  background: none;
  border: 1px solid rgba(42,42,42,0.15);
  border-radius: 10px;
  padding: 10px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}

.burger span {
  display: block;
  width: 18px; height: 1.5px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: transform 220ms ease, opacity 180ms ease;
}

.burger[aria-expanded="true"] span:first-child {
  transform: translateY(3px) rotate(45deg);
}

.burger[aria-expanded="true"] span:last-child {
  transform: translateY(-3px) rotate(-45deg);
}

/* ── HERO ───────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  padding-top: 100px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  pointer-events: none;
}

.hero-blob {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(242,208,214,0.65), transparent 70%);
  top: -100px; right: -150px;
  animation: blobDrift 14s ease-in-out infinite alternate;
}

.hero-blob--2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(122,31,46,0.12), transparent 70%);
  bottom: 0; left: -100px;
  animation: blobDrift 18s ease-in-out infinite alternate-reverse;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
  padding: clamp(2rem, 6vw, 5rem) 0;
}

.hero-text {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  animation: rise 900ms cubic-bezier(0.22,1,0.36,1) both;
}

.hero-text h1 {
  margin-top: 0.5rem;
  color: var(--text-dark);
}

.hero-text > p {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 44ch;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
}

.hero-social-proof {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 500;
}

.avatars {
  display: flex;
}

.avatars img {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 2px solid var(--cream);
  margin-left: -8px;
  object-fit: cover;
}

.avatars img:first-child { margin-left: 0; }

/* Hero Visual */
.hero-visual {
  position: relative;
  animation: rise 900ms 150ms cubic-bezier(0.22,1,0.36,1) both;
}

.hero-card--main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/5;
}

.hero-card--main img {
  width: 100%; height: 100%;
  object-fit: cover;
}

.hero-card--float {
  position: absolute;
  bottom: 2.5rem;
  left: -2rem;
  background: white;
  border-radius: var(--radius);
  padding: 0.7rem 1rem;
  box-shadow: var(--shadow);
  animation: floatY 4s ease-in-out infinite alternate;
}

.float-pill {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-dark);
  white-space: nowrap;
}

.hero-card--badge {
  position: absolute;
  top: 2rem;
  right: -1.5rem;
  background: var(--bordeaux);
  color: var(--cream);
  border-radius: var(--radius);
  padding: 0.9rem 1.1rem;
  text-align: center;
  box-shadow: var(--shadow);
  animation: floatY 5s 1s ease-in-out infinite alternate;
}

.badge-num {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1;
}

.badge-label {
  font-size: 0.68rem;
  font-weight: 500;
  opacity: 0.7;
  margin-top: 0.2rem;
  display: block;
}

/* ── ABOUT ──────────────────────────────── */
.about { background: var(--white); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: center;
}

.about-photo {
  position: relative;
}

.photo-frame {
  position: relative;
  display: inline-block;
  width: 100%;
}

.photo-inner {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--bordeaux-pale);
}

.about-photo-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.photo-deco {
  position: absolute;
  width: 180px; height: 180px;
  border: 2px solid var(--bordeaux-pale);
  border-radius: 50%;
  bottom: -2rem; right: -2rem;
  z-index: -1;
}

.about-stat-card {
  position: absolute;
  top: 2rem; right: -2rem;
  background: var(--bordeaux);
  color: var(--cream);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  text-align: center;
  box-shadow: var(--shadow);
}

.about-stat-card strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1;
}

.about-stat-card span {
  font-size: 0.72rem;
  opacity: 0.65;
  font-weight: 500;
}

.about-copy {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.about-copy h2 { margin-top: 0.5rem; }

.about-copy p { color: var(--text-muted); line-height: 1.75; }

.about-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 0.5rem;
  flex-wrap: wrap;
}

/* ── ABLAUF (vorher: FEATURES) ────────────── */
.features { background: var(--cream); }

.section-head {
  text-align: center;
  margin-bottom: 3.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.section-head--left {
  text-align: left;
  align-items: flex-start;
}

.section-head h2 { margin-top: 0.25rem; }

.ablauf-list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 760px;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  counter-reset: ablauf;
  position: relative;
}

.ablauf-list::before {
  content: '';
  position: absolute;
  left: 2.05rem;
  top: 1.6rem;
  bottom: 1.6rem;
  width: 2px;
  background: linear-gradient(to bottom, rgba(122,31,46,0.5), rgba(122,31,46,0.1));
  border-radius: 2px;
}

.ablauf-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.4rem;
  align-items: flex-start;
  padding: 0.4rem 0;
  position: relative;
}

.ablauf-num {
  display: grid;
  place-items: center;
  width: 3.4rem;
  height: 3.4rem;
  border-radius: 50%;
  background: var(--white);
  color: var(--bordeaux);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.15rem;
  border: 1.5px solid rgba(122,31,46,0.25);
  box-shadow: 0 4px 14px rgba(42,42,42,0.06);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.ablauf-text {
  padding-top: 0.55rem;
}

.ablauf-text h3 {
  font-size: 1.2rem;
  font-family: 'Playfair Display', serif;
  font-weight: 500;
  color: var(--text-dark);
  margin: 0 0 0.35rem;
}

.ablauf-text p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.65;
  margin: 0;
}

/* ── FLIP CARDS (Pakete) ─────────────────── */
.services {
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.services::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 100%, rgba(242,208,214,0.45), transparent);
  pointer-events: none;
}

.services .wrap { position: relative; z-index: 1; }

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

.flip-card {
  height: 460px;
  perspective: 1200px;
  cursor: pointer;
}

.flip-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 650ms cubic-bezier(0.4, 0.2, 0.2, 1);
  border-radius: var(--radius-lg);
}

.flip-card.is-flipped .flip-inner {
  transform: rotateY(180deg);
}

.flip-front,
.flip-back {
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  overflow: hidden;
  transition: box-shadow 240ms ease, transform 240ms ease;
}

/* FRONT – Hell, mit Inhalt */
.flip-front {
  background: var(--cream);
  color: var(--text-dark);
  border: 1.5px solid rgba(122,31,46,0.18);
  box-shadow: 0 6px 24px rgba(42,42,42,0.06);
  display: flex;
  flex-direction: column;
}

.flip-card:hover .flip-front {
  box-shadow: 0 14px 36px rgba(42,42,42,0.12);
}

.flip-front--featured {
  background: var(--cream);
  border-color: rgba(122,31,46,0.32);
}

.flip-front--premium {
  background: var(--cream);
  border-color: rgba(122,31,46,0.40);
}

.flip-front-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1.75rem 1.6rem;
}

.flip-front-image {
  width: 100%;
  height: 138px;
  object-fit: cover;
  border-radius: 0.85rem;
  border: 1px solid rgba(122,31,46,0.16);
  margin-bottom: 0.65rem;
}

.flip-front-content h3 {
  color: var(--text-dark);
  font-size: 1.35rem;
  font-family: 'Playfair Display', serif;
  font-weight: 500;
  margin: 0;
}

.flip-front-tagline {
  color: var(--text-muted);
  font-size: 0.86rem;
  line-height: 1.5;
  margin: 0 0 0.4rem;
}

.flip-front-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  flex: 1;
}

.flip-front-list li {
  font-size: 0.86rem;
  color: var(--text-dark);
  padding-left: 1.35rem;
  position: relative;
  line-height: 1.45;
}

.flip-front-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--bordeaux);
  font-weight: 700;
}

.flip-hint {
  display: inline-block;
  margin-top: 0.4rem;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--bordeaux);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.flip-badge {
  display: inline-flex;
  background: var(--bordeaux);
  color: var(--cream);
  border-radius: 999px;
  padding: 0.22rem 0.7rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  width: fit-content;
  margin-bottom: 0.2rem;
}

.flip-badge--soft {
  background: var(--bordeaux-pale);
  color: var(--bordeaux);
}

/* BACK – Detailseite */
.flip-back {
  background: var(--bordeaux);
  color: var(--cream);
  transform: rotateY(180deg);
  display: flex;
  flex-direction: column;
  padding: 1.9rem 1.6rem;
  gap: 0.9rem;
  z-index: 1;
}

.flip-back-title {
  color: var(--cream);
  font-size: 1.2rem;
  font-family: 'Playfair Display', serif;
  font-weight: 500;
  margin: 0;
}

.flip-back-desc {
  font-size: 0.86rem;
  color: rgba(245,240,235,0.85);
  line-height: 1.6;
  margin: 0;
  flex: 1;
}

.flip-back-meta {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.flip-back-price {
  font-family: 'Playfair Display', serif;
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--cream);
  line-height: 1.1;
}

.flip-back-duration {
  font-size: 0.75rem;
  color: rgba(245,240,235,0.55);
  line-height: 1.4;
}

.btn--accent {
  background: var(--bordeaux-light);
  color: var(--cream);
  border-color: transparent;
  width: fit-content;
  box-shadow: 0 6px 18px rgba(122,31,46,0.30);
  margin-top: auto;
}

.btn--accent:hover {
  background: var(--bordeaux-light);
  filter: brightness(0.88);
  box-shadow: 0 10px 24px rgba(122,31,46,0.40);
}

/* Ghost button für hellen Hintergrund (CTA-Sektion) */
.btn--ghost-light {
  background: transparent;
  color: var(--bordeaux);
  border: 1.5px solid var(--bordeaux);
}

.btn--ghost-light:hover {
  background: var(--bordeaux);
  color: var(--cream);
  border-color: var(--bordeaux);
  box-shadow: 0 8px 24px rgba(122,31,46,0.25);
}


/* ── REVIEWS ─────────────────────────────── */
.reviews { background: var(--cream); }

.reviews-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1.25rem;
  align-items: stretch;
}

.review-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: transform 240ms ease;
}

.review-card:hover { transform: translateY(-4px); }

.review-card--featured {
  position: relative;
  overflow: hidden;
  padding: 0;
  background: var(--bordeaux);
}

.review-bg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.35;
}

.review-content {
  position: relative;
  z-index: 1;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  height: 100%;
}

.stars { font-size: 0.9rem; letter-spacing: 0.15em; color: #e8a854; margin: 0; }

blockquote {
  margin: 0;
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-style: italic;
  color: var(--text-dark);
  line-height: 1.5;
}

.review-card--featured blockquote { color: var(--cream); }

.review-author {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-top: auto;
}

.review-author strong { display: block; font-size: 0.88rem; font-weight: 600; }
.review-author span   { display: block; font-size: 0.75rem; color: var(--text-muted); }

.review-author--light strong { color: var(--cream); }
.review-author--light span   { color: rgba(245,240,235,0.55); }

.review-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--bordeaux-pale);
  color: var(--bordeaux);
  font-weight: 700;
  font-size: 0.85rem;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.review-avatar--light {
  background: rgba(245,240,235,0.2);
  color: var(--cream);
}

/* ── FAQ ─────────────────────────────────── */
.faq { background: var(--white); }

.faq-inner {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 5rem;
  align-items: start;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

details {
  background: var(--cream);
  border-radius: var(--radius);
  border: 1.5px solid transparent;
  transition: border-color 200ms ease, box-shadow 200ms ease;
  overflow: hidden;
}

details[open] {
  border-color: var(--bordeaux-light);
  box-shadow: 0 4px 20px rgba(42,42,42,0.07);
}

summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 1.25rem;
  font-weight: 600;
  font-size: 0.92rem;
  cursor: pointer;
  user-select: none;
  color: var(--text-dark);
}

summary::-webkit-details-marker { display: none; }

summary::after {
  content: '+';
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--bordeaux-pale);
  color: var(--bordeaux);
  font-size: 1.1rem;
  font-weight: 400;
  display: grid;
  place-items: center;
  transition: background 200ms, transform 250ms;
  line-height: 1;
}

details[open] summary::after {
  content: '−';
  background: var(--bordeaux);
  color: var(--cream);
}

details p {
  padding: 0 1.25rem 1.1rem;
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ── CTA ─────────────────────────────────── */
.cta-section {
  background: var(--cream);
  padding: clamp(5rem, 10vw, 9rem) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-blob { display: none; }

.cta-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.cta-inner .tag { background: var(--bordeaux); color: var(--cream); }
.cta-inner h2   { color: var(--text-dark); }
.cta-inner > p  { color: var(--text-muted); font-size: 1rem; max-width: 44ch; line-height: 1.7; }

.cta-actions {
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 0.5rem;
}

/* ── CONTACT MODAL ───────────────────────── */
.modal {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 1.25rem;
  z-index: 500;
  pointer-events: none;
  opacity: 0;
  transition: opacity 220ms ease;
}

.modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(23, 16, 19, 0.64);
  backdrop-filter: blur(3px);
}

.modal-card {
  position: relative;
  width: min(620px, 100%);
  background: var(--cream);
  border: 1px solid rgba(42,42,42,0.12);
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
  padding: clamp(1.25rem, 4vw, 2rem);
  z-index: 1;
  display: grid;
  gap: 0.85rem;
}

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

.modal-card > p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 0.4rem;
}

.modal-close {
  position: absolute;
  right: 0.7rem;
  top: 0.7rem;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 999px;
  border: 1px solid rgba(42,42,42,0.12);
  background: var(--white);
  color: var(--text-dark);
  font-size: 1.35rem;
  cursor: pointer;
}

.contact-form {
  display: grid;
  gap: 0.6rem;
}

.contact-form label {
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--text-dark);
}

.contact-form input,
.contact-form textarea {
  border: 1px solid rgba(42,42,42,0.15);
  border-radius: 12px;
  background: var(--white);
  padding: 0.72rem 0.85rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  color: var(--text-dark);
}

.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(196,128,142,0.35);
  border-color: var(--bordeaux-light);
}

.checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  margin: 0.35rem 0 0.25rem;
}

.checkbox-row input {
  margin-top: 0.22rem;
}

.checkbox-row span {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.45;
}

.contact-success {
  margin-top: 0.15rem;
  padding: 0.65rem 0.8rem;
  border-radius: 10px;
  background: rgba(72, 158, 101, 0.12);
  color: #27643f;
  font-size: 0.86rem;
}
.contact-error {
  margin-top: 0.15rem;
  padding: 0.65rem 0.8rem;
  border-radius: 10px;
  background: rgba(180, 40, 40, 0.08);
  color: #8b1a1a;
  font-size: 0.86rem;
}

/* ── ANFRAGE MODAL ───────────────────────── */
.modal-card--anfrage {
  width: min(480px, 100%);
  gap: 0.5rem;
}

.modal-card--anfrage h3 em {
  font-style: italic;
  color: var(--bordeaux);
  font-weight: 400;
}

.anfrage-options {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-top: 0.6rem;
}

.anfrage-option {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  background: var(--white);
  border: 1.5px solid rgba(42,42,42,0.12);
  border-radius: 14px;
  padding: 0.9rem 1rem;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  text-align: left;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.anfrage-option:hover {
  border-color: var(--bordeaux-light);
  background: var(--bordeaux-pale);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(42,42,42,0.08);
}

.anfrage-option-icon {
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 50%;
  background: var(--bordeaux-pale);
  color: var(--bordeaux);
  font-size: 1.2rem;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.anfrage-option-icon--whatsapp {
  background: #25d366;
  color: white;
}

.anfrage-option-text {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  flex: 1;
}

.anfrage-option-text strong {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-dark);
}

.anfrage-option-text span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.anfrage-phone {
  margin-top: 0.8rem;
  padding: 0.9rem 1rem;
  border-radius: 14px;
  background: var(--bordeaux-pale);
  border: 1px dashed var(--bordeaux-light);
  text-align: center;
}

.anfrage-phone-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin: 0 0 0.25rem;
}

.anfrage-phone-number {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--bordeaux);
}

.anfrage-phone-number:hover {
  color: var(--bordeaux-light);
}

/* ── FOOTER ──────────────────────────────── */
.footer {
  background: var(--white);
  color: var(--text-dark);
  padding: 4rem 0 2rem;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(42,42,42,0.10);
}

.footer-brand .logo { color: var(--text-dark); margin-bottom: 0.75rem; }
.footer-brand p { font-size: 0.85rem; line-height: 1.6; color: var(--text-muted); }

.footer-col { display: flex; flex-direction: column; gap: 0.55rem; }

.footer-col h4 {
  color: var(--text-dark);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 0 0.5rem;
}

.footer-col a {
  font-size: 0.85rem;
  color: var(--bordeaux);
  transition: color 180ms ease;
}
.footer-col a:hover { color: var(--text-dark); }


.contact-social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.social-icon {
  width: 0.95rem;
  height: 0.95rem;
  display: inline-flex;
}

.social-icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.newsletter-form {
  display: flex;
  gap: 0;
  border-radius: 999px;
  overflow: hidden;
  border: 1px solid rgba(42,42,42,0.15);
}

.newsletter-form input {
  flex: 1;
  background: rgba(42,42,42,0.04);
  border: none;
  color: var(--text-dark);
  padding: 0.65rem 1rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.82rem;
  outline: none;
  min-width: 0;
}

.newsletter-form input::placeholder { color: rgba(42,42,42,0.35); }

.newsletter-form input:focus { background: rgba(42,42,42,0.08); }

.newsletter-form button {
  background: var(--bordeaux);
  color: var(--cream);
  border: none;
  padding: 0.65rem 1rem;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 700;
  transition: background 200ms;
}

.newsletter-form button:hover { background: var(--bordeaux-light); color: var(--cream); }

.newsletter-hint {
  font-size: 0.75rem;
  color: rgba(42,42,42,0.40);
  margin-top: 0.4rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  padding-top: 1.5rem;
}

.footer-bottom small { font-size: 0.78rem; color: var(--text-muted); }

.legal {
  display: flex;
  gap: 1.25rem;
}

.legal a {
  font-size: 0.78rem;
  color: var(--bordeaux);
  transition: color 180ms;
}

.legal a:hover { color: var(--text-dark); }

/* ── BACK TO TOP ─────────────────────────── */
.back-to-top {
  position: fixed;
  right: clamp(0.9rem, 2.5vw, 1.6rem);
  bottom: clamp(0.9rem, 2.5vw, 1.6rem);
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 1px solid rgba(42,42,42,0.15);
  background: rgba(245, 240, 235, 0.92);
  color: var(--text-dark);
  box-shadow: var(--shadow);
  font-size: 1.25rem;
  line-height: 1;
  display: grid;
  place-items: center;
  cursor: pointer;
  z-index: 360;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity 220ms ease, transform 220ms ease, background 200ms ease, color 200ms ease;
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.back-to-top:hover {
  background: var(--bordeaux);
  color: var(--cream);
}

/* ── ANIMATIONS ──────────────────────────── */
@keyframes rise {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes blobDrift {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(40px, -30px) scale(1.08); }
}

@keyframes floatY {
  from { transform: translateY(0); }
  to   { transform: translateY(-10px); }
}

/* ── RESPONSIVE ──────────────────────────── */
@media (max-width: 1024px) {
  .hero-inner        { grid-template-columns: 1fr; gap: 3rem; }
  .hero-visual       { display: none; }
  .about-grid        { grid-template-columns: 1fr; gap: 3rem; }
  .about-photo       { display: block; max-width: 220px; margin: 0 auto; }
  .about-photo .photo-deco,
  .about-photo .about-stat-card { display: none; }
  .flip-grid         { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid      { grid-template-columns: 1fr; }
  .faq-inner         { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-inner      { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 680px) {
  body.menu-open { overflow: hidden; }

  /* Header auf Mobil: Creme-Hintergrund solid */
  .header {
    background: var(--cream) !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    box-shadow: 0 1px 0 rgba(122,31,46,0.08) !important;
    transform: none !important;
    opacity: 1 !important;
    pointer-events: auto !important;
  }

  .hero { padding-top: 80px; }
  .about-photo { max-width: 160px; }

  .nav, .header .btn-pill { display: none; }

  .burger {
    display: flex;
    margin-left: auto;
    z-index: 205;
  }

  /* ── Vollbild-Menü ──
     Das ::before übernimmt backdrop-filter alleine –
     das ist der einzige zuverlässige Weg auf iOS Safari & Android Chrome.
     Das Element selbst bleibt transparent, nur das Pseudo-Element blurt. */
  .nav.open {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0.2rem;
    position: fixed;
    inset: 0;
    background: var(--cream);
    padding: 5rem 2rem 3rem;
    z-index: 202;
    animation: menuFadeIn 280ms cubic-bezier(0.22,1,0.36,1) both;
  }

  /* Frosted-Glass-Schicht als Pseudo-Element – entfernt, da background solid */
  .nav.open::before {
    display: none;
  }

  .nav.open a {
    padding: 0.4rem 0;
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    line-height: 1.2;
    color: var(--text-dark);
    letter-spacing: 0.01em;
    text-align: center;
    border-bottom: none;
    position: relative;
    z-index: 1;
  }

  .nav.open a:hover { color: var(--bordeaux); }

  .nav.open a::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -2px;
    width: 0;
    height: 1.5px;
    background: var(--bordeaux);
    transform: translateX(-50%);
    transition: width 220ms ease;
  }

  .nav.open a:hover::after { width: 60%; }

  .flip-grid     { grid-template-columns: 1fr; }
  .footer-inner  { grid-template-columns: 1fr; }

  .ablauf-list::before { left: 1.55rem; }
  .ablauf-num {
    width: 2.6rem;
    height: 2.6rem;
    font-size: 0.95rem;
  }
  .ablauf-item { gap: 1rem; }
  .ablauf-text { padding-top: 0.25rem; }
  .ablauf-text h3 { font-size: 1.05rem; }
  .hero-actions  { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { text-align: center; }
  .cta-actions   { flex-direction: column; align-items: center; }
  .back-to-top {
    right: 0.75rem;
    bottom: 3rem;
    width: 42px;
    height: 42px;
    font-size: 1.1rem;
  }
}

@keyframes menuFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
