/* ============================================================
   Gefühlskraft – Somatic Business Consulting
   Gemeinsames Stylesheet für alle Seiten
   ============================================================ */

/* ---------- Webfont: Tan Mon Cheri (lizenziert) ---------- */
@font-face {
  font-family: "Tan Mon Cheri";
  src: url("fonts/tan-mon-cheri.woff2") format("woff2"),
       url("fonts/tan-mon-cheri.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* ---------- Webfonts: Montserrat & Cormorant Garamond (self-hosted, DSGVO) ---------- */
@font-face {
  font-family: "Montserrat";
  src: url("fonts/montserrat-400.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("fonts/montserrat-500.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("fonts/montserrat-600.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Cormorant Garamond";
  src: url("fonts/cormorant-garamond-500.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Cormorant Garamond";
  src: url("fonts/cormorant-garamond-500-italic.woff2") format("woff2");
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}

/* ---------- Design-Tokens ---------- */
:root {
  --magenta: #990066;
  --plum: #3D0C2E;
  --rose-gold: #ECB4A3;
  --rose-gold-deep: #BC8271;
  --blush: #F9E2DC;
  --blush-light: #FDF4F1;
  --white: #FFFFFF;
  --text: #1C0A14; /* Warm-Schwarz laut Design-Guide */
  --text-soft: #6E5263;

  --font-display: "Tan Mon Cheri", "Playfair Display", Georgia, serif;
  --font-body: "Montserrat", -apple-system, sans-serif;
  --font-serif-text: "Cormorant Garamond", Georgia, serif;

  --radius: 20px;
  --shadow-soft: 0 10px 40px rgba(61, 12, 46, 0.08);
  --transition: all 0.35s ease;
  --maxw: 1120px;
}

/* ---------- Reset & Basis ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text);
  background: var(--blush-light); /* sanfter Blush-Grundton statt Weiß */
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { color: var(--magenta); text-decoration: none; transition: var(--transition); }
a:hover { opacity: 0.8; }

/* ---------- Typografie ---------- */
/* H1: Tan Mon Cherie, nur Großbuchstaben (Kleinbuchstaben sind zu verspielt für lange Zeilen) */
h1 {
  font-family: var(--font-display);
  font-weight: normal;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.35;
  color: var(--plum);
}
h2, h3 {
  font-family: var(--font-body);
  font-weight: 600;
  line-height: 1.3;
  color: var(--plum);
}

h1 { font-size: clamp(1.6rem, 4.2vw, 2.7rem); }
h2 { font-size: clamp(1.6rem, 3.6vw, 2.35rem); margin-bottom: 1rem; }

::selection { background: var(--magenta); color: var(--white); }
:focus-visible { outline: 2px solid var(--magenta); outline-offset: 3px; }
h3 { font-size: clamp(1.15rem, 2.4vw, 1.4rem); margin-bottom: 0.6rem; }

p { margin-bottom: 1.1rem; }
p:last-child { margin-bottom: 0; }

.lead {
  font-family: var(--font-serif-text);
  font-size: clamp(1.2rem, 2.6vw, 1.5rem);
  line-height: 1.6;
  color: var(--text-soft);
}

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--magenta);
  margin-bottom: 0.9rem;
}

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 1.4rem;
}

section { padding: 4.5rem 0; }

.section-blush { background: var(--blush); }

/* Dunkle Blöcke: abgerundete Verlaufs-Karten (Plum zu Magenta) */
.section-plum {
  background: linear-gradient(120deg, var(--plum) 0%, #6B1150 60%, var(--magenta) 130%);
  color: var(--blush);
  border-radius: 28px;
  max-width: min(var(--maxw), calc(100% - 1.8rem));
  margin: 2.5rem auto;
  box-shadow: 0 24px 60px rgba(61, 12, 46, 0.22);
}
.section-plum h2, .section-plum h3 { color: var(--white); }

/* Abschließender Plum-Block am Seitenende: bewusst wieder volle Breite,
   damit der Verlauf direkt in den Footer übergeht statt "abgeschnitten"
   zu wirken. */
.section-plum:last-of-type {
  border-radius: 0;
  max-width: none;
  margin: 0;
  box-shadow: none;
}

.narrow { max-width: 720px; margin-left: auto; margin-right: auto; }
.center { text-align: center; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 0.95rem 2.2rem;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  text-align: center;
}

.btn-primary {
  background: var(--magenta);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--plum);
  opacity: 1;
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--magenta);
  border-color: var(--magenta);
}
.btn-outline:hover {
  background: var(--magenta);
  color: var(--white);
  opacity: 1;
}

.section-plum .btn-primary { background: var(--rose-gold); color: var(--plum); }
.section-plum .btn-primary:hover { background: var(--blush); }

/* ---------- Header / Navigation ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(61, 12, 46, 0.96); /* Plum, leicht transparent */
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(236, 180, 163, 0.22);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 1.4rem;
  max-width: var(--maxw);
  margin: 0 auto;
}

/* Logo: offizielle Bilddatei */
.logo { display: block; line-height: 0; }
.logo img {
  height: 52px;
  width: auto;
  display: block;
}
.site-footer .logo img { height: 64px; }
@media (max-width: 480px) {
  .logo img { height: 40px; }
}

.nav-toggle {
  display: block;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.4rem;
}
.nav-toggle .bar {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--blush);
  margin: 6px 0;
  border-radius: 2px;
  transition: var(--transition);
}
.nav-toggle.open .bar:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.open .bar:nth-child(2) { opacity: 0; }
.nav-toggle.open .bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.main-nav {
  display: none;
  width: 100%;
}
.main-nav.open { display: block; }

.main-nav ul {
  list-style: none;
  padding: 0.6rem 0 1rem;
}
.main-nav li { margin: 0.2rem 0; }

.main-nav a {
  display: block;
  padding: 0.55rem 0.4rem;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
  color: var(--blush);
}
.main-nav a:hover, .main-nav a.active { color: var(--rose-gold); opacity: 1; }

.main-nav .nav-cta a {
  display: inline-block;
  margin-top: 0.5rem;
  padding: 0.6rem 1.5rem;
  border-radius: 999px;
  background: var(--rose-gold);
  color: var(--plum);
  font-weight: 600;
}
.main-nav .nav-cta a:hover { background: var(--blush); color: var(--plum); }

/* Desktop-Navigation */
@media (min-width: 900px) {
  .nav-wrap { flex-wrap: nowrap; }
  .nav-toggle { display: none; }
  .main-nav { display: block; width: auto; }
  .main-nav ul {
    display: flex;
    align-items: center;
    gap: 2.4rem;
    padding: 0;
  }
  .main-nav li { margin: 0; }
  .main-nav a { padding: 0.3rem 0; }
  .main-nav .nav-cta a { margin-top: 0; padding: 0.55rem 1.4rem; }
}

/* ---------- Hero ---------- */
.hero {
  /* Signature-Variante laut Design-Guide: Plum-Magenta-Verlauf, Rosé-Gold als Akzent */
  background: linear-gradient(150deg, var(--plum) 0%, #5C0F45 55%, var(--magenta) 130%);
  padding: 7rem 0 6.5rem;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  right: -140px;
  top: -140px;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  border: 1px solid rgba(236, 180, 163, 0.35);
  pointer-events: none;
}
.hero::before {
  content: "";
  position: absolute;
  right: -60px;
  top: -60px;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  border: 1px solid rgba(236, 180, 163, 0.18);
  pointer-events: none;
}

.hero-inner { max-width: 820px; position: relative; }
.hero-inner.center { margin: 0 auto; }

.hero h1 { margin-bottom: 1.8rem; color: var(--white); }

.hero .lead { margin-bottom: 2.6rem; color: var(--rose-gold); }

.hero-note { color: rgba(249, 226, 220, 0.75); }

.hero .btn-primary { background: var(--rose-gold); color: var(--plum); }
.hero .btn-primary:hover { background: var(--blush); }
.hero .btn-outline { border-color: rgba(249, 226, 220, 0.6); color: var(--blush); }
.hero .btn-outline:hover { background: var(--blush); color: var(--plum); }

/* Foto im Hintergrund einer hellen Sektion (Startseite, Einstieg) */
/* Klarheits-Zeile im Hero */
.hero-meta {
  margin: -1.2rem 0 2rem;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(249, 226, 220, 0.9);
}

/* Display-Überschrift (Tan Mon Cherie) auch für H2 */
.h-display {
  font-family: var(--font-display) !important;
  font-weight: normal !important;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Marken-Badge: EmotionsREgulation im Business */
.brand-pill {
  display: inline-block;
  padding: 0.45rem 1.2rem;
  border: 1px solid rgba(236, 180, 163, 0.6);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--rose-gold);
  margin-bottom: 2.1rem;
}

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

.hero-note {
  font-size: 0.85rem;
  color: var(--text-soft);
  margin-top: 1rem;
}

/* ---------- Karten ---------- */
.card-grid {
  display: grid;
  gap: 1.5rem;
  margin-top: 2.5rem;
}
@media (min-width: 700px) {
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .card-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
}

.card {
  background: var(--white);
  border: 1px solid rgba(236, 180, 163, 0.4);
  border-radius: var(--radius);
  padding: 2.2rem 1.8rem;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}
.card:hover { transform: translateY(-4px); }

.card .card-tag {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--magenta);
  margin-bottom: 0.8rem;
}

.card p { font-size: 0.95rem; color: var(--text-soft); flex-grow: 1; }

.card .card-link {
  margin-top: 1.2rem;
  font-weight: 600;
  font-size: 0.92rem;
}

.einstiege-heading {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  max-width: 920px;
  margin: 0 auto;
}
.einstiege-heading-copy {
  text-align: center;
  flex: 0 1 auto;
}

.quiz-stamp-spacer {
  flex-shrink: 0;
  width: 172px;
  height: 1px;
}

.card-grid-centered {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.quiz-stamp {
  flex-shrink: 0;
  width: 172px;
  height: 172px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--magenta), var(--plum) 80%);
  color: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  text-decoration: none;
  padding: 1.8rem;
  box-shadow: 0 18px 42px rgba(153, 0, 102, 0.3);
  transform: rotate(7deg);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.quiz-stamp:hover {
  transform: rotate(7deg) scale(1.06);
  box-shadow: 0 22px 48px rgba(153, 0, 102, 0.36);
}
.quiz-stamp-eyebrow {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--rose-gold);
  margin-bottom: 0.35rem;
}
.quiz-stamp-title {
  font-family: var(--font-display);
  font-size: 1.7rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.quiz-stamp-cta {
  font-size: 0.68rem;
  font-weight: 600;
}
@media (max-width: 640px) {
  .einstiege-heading { gap: 1.5rem; }
  .quiz-stamp-spacer { display: none; }
  .quiz-stamp { transform: rotate(5deg); }
  .quiz-stamp:hover { transform: rotate(5deg) scale(1.06); }
}

.card-price {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--plum);
  margin-top: 0.8rem;
}

.card .card-date {
  font-family: var(--font-body);
  font-size: clamp(1.15rem, 2.4vw, 1.4rem);
  line-height: 1.3;
  letter-spacing: 0.01em;
  font-weight: 500;
  color: var(--magenta);
  margin-top: 1.2rem;
}
.card-date strong { font-weight: inherit; }


/* ---------- RE:guard: Beschützer:innen-Appetizer ---------- */
.beschuetzer-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.6rem;
  margin-top: 2.5rem;
}
.beschuetzer-avatar {
  width: 128px;
  text-align: center;
  cursor: pointer;
}
.beschuetzer-avatar img,
.beschuetzer-avatar .avatar-placeholder {
  width: 128px;
  height: 128px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: var(--shadow-soft);
  border: 3px solid var(--white);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.beschuetzer-avatar:hover img {
  transform: scale(1.06);
  box-shadow: 0 18px 42px rgba(153, 0, 102, 0.25);
}
.beschuetzer-avatar .avatar-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(150deg, var(--rose-gold), var(--blush));
  color: var(--plum);
  font-family: var(--font-display);
  font-size: 1.8rem;
}
.beschuetzer-avatar span {
  display: block;
  margin-top: 0.7rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-soft);
}
@media (max-width: 480px) {
  .beschuetzer-avatar { width: 100px; }
  .beschuetzer-avatar img, .beschuetzer-avatar .avatar-placeholder { width: 100px; height: 100px; }
}

/* Lightbox für die großen Original-Portraits */
.beschuetzer-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(28, 10, 20, 0.85);
  align-items: center;
  justify-content: center;
  padding: 2rem;
  cursor: zoom-out;
}
.beschuetzer-lightbox.open { display: flex; }
.beschuetzer-lightbox img {
  max-width: min(90vw, 620px);
  max-height: 85vh;
  width: auto;
  height: auto;
  border-radius: 18px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}
.beschuetzer-lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.8rem;
  background: none;
  border: none;
  color: var(--blush);
  font-size: 2.4rem;
  line-height: 1;
  cursor: pointer;
  padding: 0.3rem 0.6rem;
}
.beschuetzer-lightbox-close:hover { color: var(--rose-gold); }

/* ---------- Zitat / Einstieg ---------- */
.einstieg-photo {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.einstieg-photo img {
  width: 100%;
  aspect-ratio: 16 / 7;
  object-fit: cover;
  object-position: center 22%;
  display: block;
}
.einstieg-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(61, 12, 46, 0.6), rgba(61, 12, 46, 0) 45%);
}
.einstieg-photo-caption {
  position: absolute;
  left: 1.8rem;
  bottom: 1.5rem;
  z-index: 1;
  color: var(--white);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
}
@media (max-width: 640px) {
  .einstieg-photo img { aspect-ratio: 4 / 5; object-position: center 15%; }
}

.quote-block {
  font-family: var(--font-serif-text);
  font-style: italic;
  font-size: clamp(1.4rem, 3vw, 1.95rem);
  line-height: 1.5;
  color: var(--plum);
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}
.quote-block::before {
  content: "";
  display: block;
  width: 56px;
  height: 3px;
  background: var(--rose-gold);
  margin: 0 auto 2rem;
  border-radius: 2px;
}
.quote-block.no-rule::before {
  display: none;
}

/* ---------- Über-mich-Teaser ---------- */
.about-teaser {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}
@media (min-width: 820px) {
  .about-teaser { grid-template-columns: 5fr 7fr; }
  /* Bild rechts, Text links (wenn der Blick nach rechts geht) */
  .about-teaser.img-right { grid-template-columns: 7fr 5fr; }
  .about-teaser.img-right .portrait-img { order: 2; }
}

.portrait-img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  display: block;
}

.cutout-img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 22px 38px rgba(61, 12, 46, 0.2));
}

.figure-bg-photo { position: relative; overflow: visible; padding-bottom: 2rem; min-height: 480px; }
.danke-text { max-width: 520px; }
.figure-bg-img {
  position: absolute;
  right: 2%;
  bottom: -40px;
  width: 620px;
  max-width: 60%;
  height: auto;
  pointer-events: none;
  filter: drop-shadow(0 26px 44px rgba(61, 12, 46, 0.2));
}
@media (max-width: 760px) {
  .figure-bg-img { display: none; }
}
.figure-wide {
  margin-top: 3rem;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.figure-wide img { width: 100%; display: block; }

.portrait-placeholder {
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  background: linear-gradient(150deg, var(--rose-gold), var(--blush));
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1.5rem;
  color: var(--plum);
  font-size: 0.85rem;
  font-style: italic;
}

/* ---------- Zahlen-Band ---------- */
.stats-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  text-align: center;
}
@media (min-width: 700px) {
  .stats-grid { grid-template-columns: repeat(3, 1fr); }
}
.stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3rem);
  color: var(--rose-gold);
  line-height: 1.1;
  margin-bottom: 0.4rem;
}
.stat span { font-size: 0.9rem; color: var(--blush); }

/* ---------- Rollen-Tags ---------- */
.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
  max-width: 760px;
  margin: 2rem auto 0;
}
.tag-cloud span {
  padding: 0.45rem 1.1rem;
  border: 1px solid var(--rose-gold);
  border-radius: 999px;
  font-size: 0.85rem;
  color: var(--plum);
  background: var(--white);
}

/* ---------- Für-wen-Checkliste ---------- */
.checklist {
  list-style: none;
  max-width: 640px;
  margin: 1.5rem auto 0;
  text-align: left;
}
.checklist li {
  position: relative;
  padding: 0.5rem 0 0.5rem 2.6rem;
  font-size: 1rem;
}
.checklist li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 1.7rem;
  height: 1.7rem;
  border-radius: 50%;
  background: var(--magenta);
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ---------- Auf-einen-Blick-Box ---------- */
.facts-box {
  background: var(--white);
  border: 1.5px solid var(--rose-gold);
  border-radius: var(--radius);
  padding: 2.2rem 2rem;
  max-width: 680px;
  margin: 2.5rem auto 0;
  box-shadow: var(--shadow-soft);
}
.facts-box h3 { margin-bottom: 1.2rem; }
.facts-box dl {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.55rem 1.4rem;
  font-size: 0.95rem;
}
.facts-box dt {
  font-weight: 600;
  color: var(--magenta);
  white-space: nowrap;
}
.facts-box dd { margin: 0; }

/* ---------- FAQ ---------- */
.faq {
  max-width: 720px;
  margin: 2rem auto 0;
}
.faq details {
  background: var(--white);
  border: 1px solid rgba(236, 180, 163, 0.5);
  border-radius: 14px;
  margin-bottom: 0.8rem;
  overflow: hidden;
}
.faq summary {
  cursor: pointer;
  padding: 1.1rem 1.4rem;
  font-weight: 600;
  font-size: 0.98rem;
  color: var(--plum);
  list-style: none;
  position: relative;
  padding-right: 3rem;
  transition: color 0.25s ease;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  position: absolute;
  right: 1.3rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--magenta);
  transition: transform 0.3s ease;
}
.faq details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq summary:hover { color: var(--magenta); }
.faq details p {
  padding: 0 1.4rem 1.2rem;
  font-size: 0.95rem;
  color: var(--text-soft);
}

/* ---------- Kundenstimmen ---------- */
.testimonial-grid {
  display: grid;
  gap: 1.5rem;
  margin-top: 2.5rem;
}
@media (min-width: 700px) {
  .testimonial-grid { grid-template-columns: repeat(2, 1fr); }
}
.testimonial {
  background: var(--white);
  border: 1px solid rgba(236, 180, 163, 0.4);
  border-radius: var(--radius);
  padding: 2rem 1.8rem;
  box-shadow: var(--shadow-soft);
}
.testimonial blockquote {
  font-family: var(--font-serif-text);
  font-style: italic;
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--text);
  margin-bottom: 1.4rem;
}
.testimonial-person {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}
.testimonial-person img,
.testimonial-person .avatar-placeholder {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  background: linear-gradient(150deg, var(--rose-gold), var(--blush));
  flex-shrink: 0;
}
.testimonial-person strong {
  display: block;
  font-size: 0.92rem;
  color: var(--plum);
}
.testimonial-person span {
  font-size: 0.8rem;
  color: var(--text-soft);
}

/* ---------- Kontaktformular ---------- */
.contact-form label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--plum);
  margin-bottom: 0.4rem;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text);
  padding: 0.85rem 1rem;
  border: 1.5px solid var(--blush);
  border-radius: 14px;
  margin-bottom: 1.4rem;
  background: var(--white);
  transition: border-color 0.25s ease;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--magenta);
}
.contact-form .form-note {
  margin-top: 1rem;
  font-size: 0.85rem;
  color: var(--text-soft);
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--plum);
  color: var(--blush);
  padding: 4rem 0 2rem;
  font-size: 0.9rem;
}

.footer-grid {
  display: grid;
  gap: 2.2rem;
  margin-bottom: 2.5rem;
}
@media (min-width: 700px) {
  .footer-grid { grid-template-columns: 1.6fr 1fr 1fr 1fr; }
}

.site-footer .logo { color: var(--blush); }
.site-footer .logo span { color: var(--rose-gold); }

.footer-logo-center {
  display: block;
  width: fit-content;
  margin: 0 auto 1rem;
}

.site-footer h4 {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--rose-gold);
  margin-bottom: 0.9rem;
}

.site-footer ul { list-style: none; }
.site-footer li { margin-bottom: 0.45rem; }
.site-footer a { color: var(--blush); }
.site-footer a:hover { color: var(--rose-gold); opacity: 1; }

.footer-bottom-center {
  border-top: 1px solid rgba(236, 180, 163, 0.25);
  padding-top: 2rem;
  margin-top: 0.5rem;
  text-align: center;
  font-size: 0.8rem;
  color: rgba(249, 226, 220, 0.7);
}
.footer-bottom-center p { margin: 0.3rem 0; }
.footer-bottom-center a { color: rgba(249, 226, 220, 0.7); }
.footer-bottom-center a:hover { color: var(--rose-gold); }

.footer-social {
  display: flex;
  justify-content: center;
  gap: 0.9rem;
  margin: 0 0 1.4rem;
}
.footer-social a,
.footer-social span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(236, 180, 163, 0.35);
  color: rgba(249, 226, 220, 0.85);
  transition: color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.footer-social svg { width: 17px; height: 17px; }
.footer-social a:hover {
  color: var(--rose-gold);
  border-color: var(--rose-gold);
  transform: translateY(-2px);
}
.footer-social span.disabled {
  opacity: 0.4;
  cursor: default;
}

/* ---------- Hero-Entrance: ruhige, gestaffelte Text-Animation ---------- */
@keyframes riseIn {
  from { opacity: 0; transform: translateY(26px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero .brand-pill,
.hero h1,
.hero .lead,
.hero-actions,
.hero-note {
  animation: riseIn 0.85s cubic-bezier(0.22, 0.61, 0.36, 1) both;
}
.hero h1 { animation-delay: 0.12s; }
.hero .lead { animation-delay: 0.26s; }
.hero-actions { animation-delay: 0.42s; }
.hero-note { animation-delay: 0.55s; }

/* ---------- Marken-Laufband ---------- */
.marquee {
  overflow: hidden;
  background: linear-gradient(100deg, var(--plum), #6B1150 70%, var(--magenta) 140%);
  padding: 1.1rem 0;
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 48s linear infinite;
}
.marquee-group {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.marquee-group span {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 1.02rem;
  color: var(--rose-gold);
  white-space: nowrap;
  padding-right: 1.6rem;
}
.marquee-group i {
  font-style: normal;
  color: rgba(236, 180, 163, 0.45);
  padding-right: 1.6rem;
}
@keyframes marquee {
  to { transform: translateX(-50%); }
}
.marquee:hover .marquee-track { animation-play-state: paused; }

/* ---------- Organische Formen als Hintergrund-Akzente ---------- */
section { position: relative; }
section > .container { position: relative; z-index: 1; }

.section-blush { overflow: hidden; }
.section-blush::before {
  content: "";
  position: absolute;
  left: -160px;
  top: -120px;
  width: 460px;
  height: 460px;
  border-radius: 58% 42% 55% 45% / 48% 55% 45% 52%;
  background: radial-gradient(circle, rgba(236, 180, 163, 0.28), transparent 70%);
  pointer-events: none;
}
.section-blush::after {
  content: "";
  position: absolute;
  right: -120px;
  bottom: -140px;
  width: 380px;
  height: 380px;
  border-radius: 45% 55% 48% 52% / 55% 45% 55% 45%;
  border: 1.5px solid rgba(236, 180, 163, 0.5);
  pointer-events: none;
}

.section-plum { overflow: hidden; }
.section-plum::before {
  content: "";
  position: absolute;
  right: -100px;
  top: -100px;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  border: 1.5px dotted rgba(236, 180, 163, 0.4);
  pointer-events: none;
}

/* Foto als Hintergrund mit Plum-Überlagerung (Kontrast bleibt gewahrt) */
.section-photo {
  background:
    linear-gradient(rgba(61, 12, 46, 0.85), rgba(61, 12, 46, 0.85)),
    url("img/iris-strasse.jpg") center 30% / cover no-repeat;
}
.section-photo-teich {
  background:
    linear-gradient(rgba(249, 226, 220, 0.88), rgba(249, 226, 220, 0.88)),
    url("img/bad-nauheim-teich.jpg") center 55% / cover no-repeat;
}

/* ---------- Mikro-Interaktionen ---------- */
.btn::after {
  content: "\2192";
  display: inline-block;
  max-width: 0;
  opacity: 0;
  transform: translateX(-8px);
  overflow: hidden;
  vertical-align: middle;
  transition: all 0.3s ease;
}
.btn:hover::after {
  max-width: 1.2em;
  opacity: 1;
  transform: translateX(0);
  margin-left: 0.45em;
}

.card:hover {
  border-color: rgba(153, 0, 102, 0.3);
  box-shadow: 0 18px 50px rgba(153, 0, 102, 0.1);
}

.card-link {
  display: inline-block;
  transition: transform 0.3s ease;
}
.card-link:hover { transform: translateX(4px); opacity: 1; }

/* ---------- Sanftes Einblenden ---------- */
.fade-in {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  .fade-in { opacity: 1; transform: none; transition: none; }
  .hero .brand-pill, .hero h1, .hero .lead, .hero-actions, .hero-note { animation: none; }
  .marquee-track { animation: none; }
  html { scroll-behavior: auto; }
}
