@font-face {
  font-family: "BV Celine";
  src: url("./assets/fonts/bv-celine-regular.ttf") format("truetype");
  font-display: swap;
  font-style: normal;
  font-weight: 400;
}

@font-face {
  font-family: "BV Celine";
  src: url("./assets/fonts/bv-celine-italic.ttf") format("truetype");
  font-display: swap;
  font-style: italic;
  font-weight: 400;
}

:root {
  --champagne: #ede3d4;
  --ivory: #f7f4ee;
  --deep-green: #09322a;
  --warm-gray: #bdb6ac;
  --gold: #c8a24a;
  --gold-deep: #a98536;
  --surface: rgba(247, 244, 238, 0.9);
  --surface-strong: #fbf8f3;
  --text: #09322a;
  --muted: rgba(9, 50, 42, 0.72);
  --line: rgba(9, 50, 42, 0.12);
  --line-strong: rgba(9, 50, 42, 0.2);
  --shadow: 0 18px 40px rgba(9, 50, 42, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.78), transparent 28%),
    radial-gradient(circle at bottom right, rgba(237, 227, 212, 0.52), transparent 24%),
    repeating-linear-gradient(
      165deg,
      rgba(255, 255, 255, 0.26) 0,
      rgba(255, 255, 255, 0.26) 2px,
      rgba(247, 244, 238, 0.18) 2px,
      rgba(247, 244, 238, 0.18) 14px
    ),
    linear-gradient(180deg, #fbf8f3 0%, var(--ivory) 38%, #f1e8dc 100%);
  color: var(--text);
  font-family: Inter, "Avenir Next", "Helvetica Neue", Helvetica, Arial, sans-serif;
  line-height: 1.6;
}

body.freier-redner-page {
  opacity: 0;
  transition: opacity 520ms ease;
}

body.freier-redner-page.page-is-ready {
  opacity: 1;
}

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

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

.shell {
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
}

.announcement-bar {
  padding: 0.8rem 1rem;
  background: var(--champagne);
  color: var(--deep-green);
  border-bottom: 1px solid rgba(200, 162, 74, 0.34);
  text-align: center;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid var(--line);
  background: rgba(247, 244, 238, 0.9);
  backdrop-filter: blur(12px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 78px;
}

.brand-meta,
.main-nav a,
.header-cta,
.button,
.text-link,
.timeline span,
.hero-card-label,
.trust-grid strong,
.kicker {
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand {
  display: inline-flex;
  flex-direction: column;
  gap: 0.1rem;
}

.brand--with-logo {
  flex-direction: row;
  align-items: center;
  gap: 0.75rem;
}
.brand--with-logo .brand-text {
  display: inline-flex;
  flex-direction: column;
  gap: 0.1rem;
}
.brand-logo {
  height: 44px;
  width: auto;
  display: block;
  flex-shrink: 0;
}
@media (max-width: 560px) {
  .brand-logo { height: 36px; }
}

.brand-script {
  font-family: "BV Celine", cursive;
  font-size: 2.2rem;
  line-height: 0.92;
  color: var(--gold-deep);
}

.brand-meta {
  color: var(--deep-green);
  font-size: 0.78rem;
  font-weight: 500;
}

.main-nav {
  display: flex;
  gap: 1.4rem;
  color: var(--muted);
  font-size: 0.86rem;
}

.main-nav a:hover,
.main-nav a:focus-visible,
.text-link:hover,
.text-link:focus-visible {
  color: var(--gold-deep);
}

/* ═══════════════════════════════════════════════
   DROPDOWN-NAVIGATION (shared: .hp-nav & .main-nav)
   ═══════════════════════════════════════════════ */
.nav-group {
  position: relative;
  display: inline-flex;
  align-items: center;
}
.nav-dropdown-trigger {
  background: none;
  border: 0;
  padding: 0;
  margin: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font: inherit;
  color: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
  transition: color 180ms ease;
}
.nav-dropdown-trigger:hover,
.nav-dropdown-trigger:focus-visible,
.nav-group.is-open .nav-dropdown-trigger {
  color: var(--gold-deep);
  outline: none;
}
.nav-dropdown-trigger .caret {
  font-size: 0.7em;
  transition: transform 180ms ease;
  line-height: 1;
}
.nav-group.is-open .nav-dropdown-trigger .caret {
  transform: rotate(180deg);
}
.nav-dropdown {
  position: absolute;
  /* Kein visueller Spalt mehr zum Trigger – das Dropdown klebt direkt am Button,
     so kann die Maus ohne Abreiss des Hover-Kontakts zum Menüpunkt wandern. */
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-4px);
  background: #fff;
  border-radius: 0.9rem;
  box-shadow: 0 18px 40px rgba(9, 50, 42, 0.16);
  /* Extra-Padding oben für optisches Luftholen (statt echtem Spalt) */
  padding: 1rem 0.6rem 0.6rem;
  min-width: 15rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 180ms ease, visibility 180ms ease, transform 180ms ease;
  z-index: 200;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.nav-group:hover .nav-dropdown,
.nav-group:focus-within .nav-dropdown,
.nav-group.is-open .nav-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown a {
  display: block;
  padding: 0.75rem 1rem;
  border-radius: 0.55rem;
  color: var(--deep-green, #09322a);
  text-transform: none;
  letter-spacing: 0.01em;
  font-size: 0.95rem;
  font-weight: 500;
  transition: background 180ms ease, color 180ms ease;
  white-space: nowrap;
}
.nav-dropdown a:hover,
.nav-dropdown a:focus-visible {
  background: rgba(9, 50, 42, 0.06);
  color: var(--gold-deep);
  outline: none;
}

/* Mobile: Accordion statt Dropdown */
@media (max-width: 760px) {
  .nav-group {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }
  .nav-dropdown-trigger {
    width: 100%;
    justify-content: center;
  }
  .nav-dropdown {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    box-shadow: none;
    background: rgba(9, 50, 42, 0.04);
    border-radius: 0.6rem;
    margin-top: 0.5rem;
    padding: 0.4rem;
    min-width: 0;
    max-height: 0;
    overflow: hidden;
    padding-top: 0;
    padding-bottom: 0;
    transition: max-height 260ms ease, padding 180ms ease;
  }
  .nav-group.is-open .nav-dropdown {
    max-height: 30rem;
    padding-top: 0.4rem;
    padding-bottom: 0.4rem;
    transform: none;
  }
  .nav-dropdown a {
    text-align: center;
  }
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 1.2rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.82rem;
  font-weight: 600;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease;
}

.header-cta,
.button-primary {
  background: var(--deep-green);
  color: var(--ivory);
}

.button-secondary {
  border-color: rgba(247, 244, 238, 0.64);
  background: rgba(247, 244, 238, 0.08);
  color: var(--ivory);
}

.button:hover,
.header-cta:hover {
  transform: translateY(-1px);
}

.hero {
  position: relative;
  min-height: calc(100vh - 116px);
  display: flex;
  align-items: end;
  overflow: clip;
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-image {
  height: 100%;
  object-fit: cover;
}

/* Coaching-Hero: Fokus weiter nach oben, damit der Kopf komplett sichtbar bleibt */
body.coaching-page .hero-image {
  object-position: center 20%;
}

.hero-overlay {
  background:
    linear-gradient(180deg, rgba(9, 50, 42, 0.08) 0%, rgba(9, 50, 42, 0.12) 24%, rgba(9, 50, 42, 0.54) 100%),
    linear-gradient(90deg, rgba(9, 50, 42, 0.48) 0%, rgba(9, 50, 42, 0.14) 48%, rgba(9, 50, 42, 0.05) 100%);
}

.hero-content,
.two-column,
.about-grid,
.process-grid,
.testimonial-grid,
.contact-grid {
  display: grid;
  gap: 2rem;
}

.hero-content {
  position: relative;
  z-index: 1;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.45fr);
  align-items: end;
  padding: 6rem 0 3rem;
}

.hero-copy {
  max-width: 42rem;
  color: var(--ivory);
}

.kicker {
  margin: 0 0 1rem;
  font-size: 0.78rem;
  color: inherit;
}

h1,
h2,
h3,
p,
ul,
blockquote {
  margin: 0;
}

h1 {
  font-size: clamp(3.5rem, 7vw, 6.2rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

h2 {
  font-size: clamp(2.1rem, 3.8vw, 3.5rem);
  line-height: 1.06;
  letter-spacing: -0.025em;
  font-weight: 400;
}

h3 {
  font-size: 1.35rem;
  line-height: 1.15;
  font-weight: 500;
}

.hero-lead {
  max-width: 34rem;
  margin-top: 1.8rem;
  font-size: 1.08rem;
  color: rgba(247, 244, 238, 0.92);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2rem;
}

.hero-card,
.trust-grid div,
.primary-image,
.secondary-image,
.info-cards article,
.timeline article,
.testimonial-copy,
.contact-form,
.memorial-card {
  background: rgba(247, 244, 238, 0.9);
  border: 1px solid rgba(200, 162, 74, 0.16);
  box-shadow: var(--shadow);
}

.hero-card {
  padding: 1.6rem;
  border-radius: 1.6rem;
  color: var(--text);
}

.hero-card-label {
  margin-bottom: 0.9rem;
  color: var(--gold-deep);
  font-size: 0.74rem;
}

.hero-card h2 {
  font-size: 1.85rem;
}

.hero-card ul {
  margin-top: 1.1rem;
  padding-left: 1.2rem;
  color: var(--muted);
}

.hero-card li + li {
  margin-top: 0.6rem;
}

.trust-strip {
  position: relative;
  z-index: 2;
  margin-top: -1.7rem;
}

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

.trust-grid div {
  padding: 1rem 1.1rem;
  border-radius: 1.25rem;
}

.trust-grid strong {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--gold-deep);
  font-size: 0.72rem;
}

.trust-grid span {
  color: var(--muted);
  font-size: 0.98rem;
}

.section,
.testimonial-section,
.contact-section {
  padding: 6rem 0;
}

.section-heading,
.section-copy {
  max-width: 42rem;
}

.section-copy p:not(.kicker),
.section-heading p,
.testimonial-copy span,
.contact-copy p:not(.kicker),
.timeline p,
.info-cards p,
.feature-list,
.contact-form span {
  color: var(--muted);
}

.section-copy p:not(.kicker),
.section-heading p,
.contact-copy p:not(.kicker) {
  margin-top: 1.1rem;
}

.two-column,
.about-grid {
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  align-items: center;
}

.feature-list {
  margin-top: 1.5rem;
  padding-left: 1.2rem;
}

.feature-list li + li {
  margin-top: 0.7rem;
}

.inline-actions,
.contact-direct {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.4rem;
  margin-top: 1.6rem;
}

.text-link {
  color: var(--gold-deep);
  font-size: 0.78rem;
  font-weight: 700;
}

.image-stack {
  position: relative;
  min-height: 38rem;
}

.image-stack figure,
.about-portrait,
.gallery-grid figure,
.process-image,
.testimonial-grid figure {
  margin: 0;
  overflow: hidden;
}

.primary-image {
  position: absolute;
  top: 0;
  right: 0;
  width: min(28rem, 100%);
  aspect-ratio: 4 / 5;
  border-radius: 1.6rem;
}

/* .primary-image als DIREKTES Kind von .two-column (wie auf coaching.html)
   soll als normales Grid-Item fliessen statt absolut zu positionieren.
   Absolut positionierte .primary-image (z.B. innerhalb .image-stack) bleibt unberührt. */
.two-column > .primary-image {
  position: static;
  width: 100%;
  aspect-ratio: auto;
  overflow: hidden;
}
.two-column > .primary-image img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  display: block;
}

.secondary-image {
  position: absolute;
  bottom: 0;
  left: 0;
  width: min(17rem, 54%);
  aspect-ratio: 4 / 5;
  border-radius: 1.35rem;
}

.primary-image img,
.secondary-image img,
.about-portrait img,
.gallery-grid img,
.process-image img,
.testimonial-grid img {
  height: 100%;
  object-fit: cover;
}

.quote-banner {
  padding: 5rem 0;
  background: linear-gradient(180deg, rgba(237, 227, 212, 0.92) 0%, rgba(247, 244, 238, 0.98) 100%);
  text-align: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.quote-banner p {
  max-width: 52rem;
  margin: 0 auto;
  font-family: "BV Celine", cursive;
  font-style: italic;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.22;
  color: var(--gold-deep);
}

.quote-banner span {
  display: inline-block;
  margin-top: 1.3rem;
  color: var(--deep-green);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.8rem;
}

.about-portrait {
  border-radius: 1.6rem;
  aspect-ratio: 4 / 5;
  max-height: 40rem;
  box-shadow: var(--shadow);
}

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

.info-cards article {
  padding: 1.25rem;
  border-radius: 1.2rem;
}

.info-cards strong {
  display: block;
  margin-bottom: 0.6rem;
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.gallery-section {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.36), transparent 25%),
    linear-gradient(180deg, rgba(237, 227, 212, 0.8), rgba(247, 244, 238, 0.96));
}

.center {
  margin: 0 auto 2rem;
  text-align: center;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 1rem;
}

.gallery-grid figure,
.process-image,
.testimonial-grid figure {
  border-radius: 1.4rem;
  box-shadow: var(--shadow);
  aspect-ratio: 1 / 1;
}

.gallery-large {
  aspect-ratio: 4 / 5;
}

.process-grid,
.contact-grid {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.88fr);
  align-items: start;
}

.timeline {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

.timeline article {
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 1rem;
  padding: 1.2rem;
  border-radius: 1.2rem;
}

.timeline span {
  display: inline-flex;
  align-items: start;
  justify-content: center;
  color: var(--gold-deep);
  font-size: 0.78rem;
}

.timeline h3 {
  margin-bottom: 0.5rem;
  font-size: 1.28rem;
}

.process-image {
  aspect-ratio: 4 / 3;
}

.testimonial-section {
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.46), transparent 28%),
    linear-gradient(180deg, rgba(237, 227, 212, 0.74) 0%, rgba(247, 244, 238, 0.98) 100%);
}

.testimonial-grid {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.8fr);
  align-items: stretch;
}

.testimonial-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2rem;
  border-radius: 1.6rem;
}

.testimonial-grid figure {
  aspect-ratio: 4 / 3;
}

blockquote {
  margin-top: 1rem;
  font-size: clamp(1.55rem, 2.6vw, 2.2rem);
  line-height: 1.24;
  font-weight: 400;
}

.testimonial-copy span {
  margin-top: 1.4rem;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-section {
  background: linear-gradient(180deg, rgba(247, 244, 238, 0.96), rgba(237, 227, 212, 0.68));
}

.contact-copy {
  max-width: 34rem;
}

.contact-form {
  padding: 1.6rem;
  border-radius: 1.6rem;
}

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

.contact-form label {
  display: block;
  margin-bottom: 1rem;
}

.contact-form span {
  display: block;
  margin-bottom: 0.55rem;
  font-size: 0.84rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 0.92rem 1rem;
  border: 1px solid var(--line-strong);
  border-radius: 1rem;
  background: var(--surface-strong);
  color: var(--text);
  font: inherit;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(200, 162, 74, 0.18);
  border-color: var(--gold);
}

.contact-form .button {
  margin-top: 0.4rem;
}

.brand-lockup {
  max-width: 42rem;
}

.signature-name {
  font-family: "BV Celine", cursive;
  font-size: clamp(4.6rem, 10vw, 7.6rem);
  line-height: 0.88;
  color: #d8b46b;
  text-shadow: 0 8px 24px rgba(9, 50, 42, 0.14);
}

.signature-role {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1rem;
  color: rgba(247, 244, 238, 0.94);
  font-size: 0.9rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
}

.signature-role span {
  width: 5.5rem;
  height: 1px;
  background: rgba(247, 244, 238, 0.54);
}

.signature-tagline {
  margin-top: 1rem;
  font-family: "BV Celine", cursive;
  font-style: italic;
  font-size: clamp(2rem, 4vw, 3rem);
  color: rgba(247, 244, 238, 0.96);
}

.memorial-grid {
  align-items: center;
}

.memorial-card {
  padding: 1.6rem;
  border-radius: 1.4rem;
}

.memorial-card p:not(.hero-card-label) {
  margin-top: 0.8rem;
  color: var(--muted);
}

@media (max-width: 1080px) {
  .hero-content,
  .two-column,
  .about-grid,
  .process-grid,
  .testimonial-grid,
  .contact-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-content {
    padding-top: 8rem;
  }

  .trust-grid,
  .info-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .image-stack {
    min-height: 44rem;
  }

  .gallery-large {
    aspect-ratio: 4 / 3;
  }
}

@media (max-width: 760px) {
  .shell {
    width: min(100% - 24px, 1200px);
  }

  .header-inner {
    flex-wrap: wrap;
    justify-content: center;
    padding: 0.9rem 0;
  }

  .main-nav {
    order: 3;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
  }

  h1 {
    font-size: clamp(2.8rem, 12vw, 4rem);
  }

  h2 {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .brand-script {
    font-size: 1.8rem;
  }

  .signature-name {
    font-size: clamp(3.5rem, 16vw, 5.4rem);
  }

  .signature-role {
    gap: 0.7rem;
    font-size: 0.76rem;
    letter-spacing: 0.22em;
  }

  .signature-role span {
    width: 2.8rem;
  }

  .signature-tagline {
    font-size: clamp(1.6rem, 8vw, 2.2rem);
  }

  .hero-content {
    padding-bottom: 2rem;
  }

  .hero-actions,
  .field-row,
  .trust-grid,
  .info-cards {
    grid-template-columns: 1fr;
  }

  .hero-actions,
  .inline-actions,
  .contact-direct {
    flex-direction: column;
    align-items: flex-start;
  }

  .primary-image,
  .secondary-image {
    position: relative;
    width: 100%;
  }

  .image-stack {
    min-height: auto;
    display: grid;
    gap: 1rem;
  }

  .section,
  .testimonial-section,
  .contact-section {
    padding: 4.5rem 0;
  }

  .quote-banner {
    padding: 4rem 0;
  }

  .timeline article {
    grid-template-columns: 1fr;
  }
}

/* ───────────────────────────────────────────────
   Accessibility: Screen-reader only
   ─────────────────────────────────────────────── */
.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;
}

/* ───────────────────────────────────────────────
   Site Footer
   ─────────────────────────────────────────────── */
.site-footer {
  padding: 2.5rem 0;
  border-top: 1px solid var(--line);
  background: var(--ivory);
}

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

.footer-copy {
  margin: 0;
  font-size: 0.88rem;
  color: var(--muted);
}

.footer-nav {
  display: flex;
  gap: 1.5rem;
}

.footer-nav a {
  font-size: 0.88rem;
  color: var(--muted);
  text-decoration: none;
  transition: color 180ms ease;
}

.footer-nav a:hover {
  color: var(--text);
}

@media (max-width: 760px) {
  .footer-inner {
    flex-direction: column;
    text-align: center;
  }
}

/* ═══════════════════════════════════════════════
   WORT & KLANG SECTION
   ═══════════════════════════════════════════════ */

.wk-section {
  padding: clamp(4rem, 8vw, 7rem) 0;
  background: var(--deep-green, #1a3c2a);
  color: #fff;
}

.wk-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: start;
}

.wk-copy .kicker {
  color: var(--gold, #c9a84c);
}

.wk-copy h2 {
  color: #fff;
  font-size: clamp(1.8rem, 3.2vw, 2.8rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  font-weight: 400;
  margin-bottom: 1.2rem;
}

.wk-copy p {
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.wk-copy strong {
  color: #fff;
}

.wk-features {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.wk-features > div {
  padding: 1rem 1.2rem;
  background: rgba(255,255,255,0.07);
  border-radius: 8px;
  border-left: 3px solid var(--gold, #c9a84c);
}

.wk-features strong {
  display: block;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--gold, #c9a84c);
  margin-bottom: 0.25rem;
}

.wk-features span {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.7);
}

.wk-section .text-link {
  color: var(--gold, #c9a84c);
  border-bottom-color: var(--gold, #c9a84c);
}

.wk-section .text-link:hover {
  color: #fff;
  border-bottom-color: #fff;
}

.wk-images {
  display: grid;
  gap: 1rem;
}

.wk-image-main img,
.wk-image-secondary img {
  width: 100%;
  border-radius: 10px;
  object-fit: cover;
}

.wk-image-main img {
  aspect-ratio: 4 / 5;
}

.wk-image-secondary img {
  aspect-ratio: 16 / 9;
}

@media (max-width: 1080px) {
  .wk-grid {
    grid-template-columns: 1fr;
  }
  .wk-images {
    grid-template-columns: 1fr 1fr;
  }
  .wk-image-main img {
    aspect-ratio: 3 / 4;
  }
}

@media (max-width: 760px) {
  .wk-images {
    grid-template-columns: 1fr;
  }
}

/* --- Wort & Klang – Galerie --- */
.wk-gallery-wrap {
  margin-top: 4rem;
}
.wk-gallery-kicker {
  margin-bottom: 0.4rem;
}
.wk-gallery-title {
  font-family: "BV Celine", "Times New Roman", serif;
  font-size: clamp(1.6rem, 2.4vw, 2.1rem);
  margin: 0 0 1.8rem;
  color: var(--clr-ink, #09322a);
}
.wk-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1rem;
}
.wk-gallery-item {
  position: relative;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(9, 50, 42, 0.14);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.wk-gallery-item:hover,
.wk-gallery-item:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 12px 26px rgba(9, 50, 42, 0.22);
  outline: none;
}
.wk-gallery-item img {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.wk-gallery-hint {
  display: none;
  margin-top: 1rem;
  font-size: 0.9rem;
  color: rgba(9, 50, 42, 0.6);
  text-align: center;
  letter-spacing: 0.04em;
}
@media (max-width: 760px) {
  .wk-gallery {
    display: flex;
    overflow-x: auto;
    gap: 0.8rem;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 0.5rem;
  }
  .wk-gallery-item {
    flex: 0 0 78%;
    scroll-snap-align: center;
  }
  .wk-gallery-hint {
    display: block;
  }
}

/* --- Lightbox --- */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(9, 50, 42, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 2rem;
}
.lightbox[hidden] {
  display: none;
}
.lightbox-image {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  border-radius: 0.6rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}
.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border: 0;
  cursor: pointer;
  border-radius: 50%;
  width: 3rem;
  height: 3rem;
  font-size: 1.4rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}
.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(255, 255, 255, 0.25);
}
.lightbox-close {
  top: 1.3rem;
  right: 1.3rem;
  font-size: 1.8rem;
}
.lightbox-prev {
  left: 1.3rem;
  top: 50%;
  transform: translateY(-50%);
}
.lightbox-next {
  right: 1.3rem;
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 560px) {
  .lightbox-prev { left: 0.5rem; }
  .lightbox-next { right: 0.5rem; }
}

/* ═══════════════════════════════════════════════
   COACHING PAGE (.coaching-page)
   ═══════════════════════════════════════════════ */

body.coaching-page {
  opacity: 0;
  filter: blur(10px);
  transform: scale(1.01);
  transition:
    opacity 520ms ease,
    filter 520ms ease,
    transform 520ms ease;
}

body.coaching-page.page-is-ready {
  opacity: 1;
  filter: blur(0);
  transform: scale(1);
}

/* ═══════════════════════════════════════════════
   HOMEPAGE (.homepage) — all hp- prefixed
   ═══════════════════════════════════════════════ */

body.homepage {
  opacity: 0;
  transition: opacity 520ms ease;
}

html.page-is-ready body.homepage {
  opacity: 1;
}

/* --- Announcement bar (shared, already exists, just text tweak) --- */
.announcement-text {
  margin: 0;
}

/* --- Header --- */
.hp-header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid var(--line);
  background: rgba(247, 244, 238, 0.9);
  backdrop-filter: blur(12px);
}

.hp-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 78px;
}

.hp-brand a {
  display: inline-flex;
  flex-direction: column;
  gap: 0.1rem;
}

.hp-brand-name {
  font-size: 2.2rem;
  line-height: 0.92;
  color: var(--gold-deep);
}

.hp-brand-subtitle {
  color: var(--deep-green);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hp-nav {
  display: flex;
  gap: 1.4rem;
  color: var(--muted);
  font-size: 0.86rem;
}

.hp-nav-link {
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 180ms ease;
}

.hp-nav-link:hover,
.hp-nav-link:focus-visible {
  color: var(--gold-deep);
}

.hp-header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 1.2rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 180ms ease, background-color 180ms ease;
}

.hp-header-cta:hover {
  transform: translateY(-1px);
}

/* --- Hero --- */
.hp-hero {
  position: relative;
  min-height: calc(100vh - 116px);
  display: flex;
  align-items: flex-end;
  overflow: clip;
}

.hp-hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Fokus auf Gesicht, damit der Kopf bei breiten Bildschirmen nicht abgeschnitten wird */
  object-position: center 28%;
}

.hp-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(9, 50, 42, 0.08) 0%, rgba(9, 50, 42, 0.12) 24%, rgba(9, 50, 42, 0.58) 100%),
    linear-gradient(90deg, rgba(9, 50, 42, 0.52) 0%, rgba(9, 50, 42, 0.14) 48%, rgba(9, 50, 42, 0.05) 100%);
}

.hp-hero-content {
  position: relative;
  z-index: 1;
  padding: 6rem 0 3.5rem;
  max-width: 42rem;
  color: var(--ivory);
}

.hp-hero-title {
  font-family: "BV Celine", cursive;
  font-size: clamp(4.6rem, 10vw, 7.6rem);
  line-height: 0.88;
  color: #d8b46b;
  text-shadow: 0 8px 24px rgba(9, 50, 42, 0.14);
  font-weight: 400;
}

.hp-hero-role {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1rem;
  color: rgba(247, 244, 238, 0.94);
  font-size: 0.9rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
}

.hp-hero-tagline {
  margin-top: 1rem;
  font-family: "BV Celine", cursive;
  font-style: italic;
  font-size: clamp(2rem, 4vw, 3rem);
  color: rgba(247, 244, 238, 0.96);
}

.hp-hero-lead {
  max-width: 34rem;
  margin-top: 1.8rem;
  font-size: 1.08rem;
  color: rgba(247, 244, 238, 0.92);
}

.hp-hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2rem;
}

/* --- Trust Strip --- */
.hp-trust-strip {
  position: relative;
  z-index: 2;
  margin-top: -1.7rem;
}

.hp-trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.hp-trust-item {
  padding: 1rem 1.1rem;
  border-radius: 1.25rem;
  background: rgba(247, 244, 238, 0.9);
  border: 1px solid rgba(200, 162, 74, 0.16);
  box-shadow: var(--shadow);
  text-align: center;
}

.hp-trust-label {
  color: var(--gold-deep);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* --- Services (Zeremonien / Coaching) --- */
.hp-services {
  padding: 6rem 0;
}

.hp-service-block {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
  gap: 2.5rem;
  align-items: center;
}

.hp-service-block-reverse {
  direction: rtl;
}

.hp-service-block-reverse > * {
  direction: ltr;
}

.hp-service-text {
  max-width: 42rem;
}

.hp-service-description {
  margin-top: 1.1rem;
  color: var(--muted);
}

.hp-features {
  margin-top: 1.5rem;
  padding-left: 1.2rem;
  color: var(--muted);
}

.hp-features li + li {
  margin-top: 0.7rem;
}

.hp-service-text .button-primary {
  margin-top: 2rem;
}

/* Prominente "Zur ausführlichen ..."-CTAs, die zur Unterseite führen */
.hp-service-text .hp-deep-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 2.5rem;
  font-size: 1.05rem;
  padding: 1.15rem 2.3rem;
  letter-spacing: 0.02em;
  border-radius: 999px;
  box-shadow: 0 8px 22px rgba(9, 50, 42, 0.18);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.hp-service-text .hp-deep-link:hover,
.hp-service-text .hp-deep-link:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(9, 50, 42, 0.26);
}

.hp-service-image {
  overflow: hidden;
  border-radius: 1.6rem;
  box-shadow: var(--shadow);
}

.hp-service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 3;
}

/* --- Quote Banner --- */
.hp-quote-banner {
  padding: 5rem 0;
  background: linear-gradient(180deg, rgba(237, 227, 212, 0.92) 0%, rgba(247, 244, 238, 0.98) 100%);
  text-align: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.hp-quote {
  max-width: 52rem;
  margin: 0 auto;
}

.hp-quote p {
  font-family: "BV Celine", cursive;
  font-style: italic;
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  line-height: 1.22;
  color: var(--gold-deep);
}

.hp-quote-author {
  display: block;
  margin-top: 1.3rem;
  color: var(--deep-green);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.8rem;
  font-style: normal;
}

/* --- About --- */
.hp-about {
  padding: 6rem 0;
}

.hp-about-block {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr);
  gap: 2.5rem;
  align-items: center;
}

.hp-about-image {
  overflow: hidden;
  border-radius: 1.6rem;
  aspect-ratio: 4 / 5;
  max-height: 40rem;
  box-shadow: var(--shadow);
}

.hp-about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hp-about-intro {
  margin-top: 1.1rem;
  color: var(--muted);
}

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

.hp-about-card {
  padding: 1.25rem;
  border-radius: 1.2rem;
  background: rgba(247, 244, 238, 0.9);
  border: 1px solid rgba(200, 162, 74, 0.16);
  box-shadow: var(--shadow);
}

.hp-about-card h3 {
  margin-bottom: 0.6rem;
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hp-about-card p {
  color: var(--muted);
}

/* --- Contact --- */
.hp-contact {
  padding: 6rem 0;
  background: linear-gradient(180deg, rgba(247, 244, 238, 0.96), rgba(237, 227, 212, 0.68));
}

.hp-contact h2 {
  margin-bottom: 0.6rem;
}

.hp-contact-intro {
  margin-bottom: 2rem;
  color: var(--muted);
}

.hp-contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.4rem;
  margin-bottom: 2.5rem;
}

.hp-contact-item {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 1rem 1.4rem;
  border-radius: 1.2rem;
  background: rgba(247, 244, 238, 0.9);
  border: 1px solid rgba(200, 162, 74, 0.16);
  box-shadow: var(--shadow);
  transition: transform 180ms ease;
}

.hp-contact-item:hover {
  transform: translateY(-2px);
}

.hp-contact-label {
  color: var(--gold-deep);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hp-contact-value {
  color: var(--text);
  font-size: 1.08rem;
}

.hp-contact-form {
  max-width: 640px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  padding: 1.6rem;
  border-radius: 1.6rem;
  background: rgba(247, 244, 238, 0.9);
  border: 1px solid rgba(200, 162, 74, 0.16);
  box-shadow: var(--shadow);
}

.hp-form-group:nth-child(4),
.hp-form-group:nth-child(5) {
  grid-column: span 2;
}

.hp-form-label {
  display: block;
  margin-bottom: 0.55rem;
  font-size: 0.84rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.hp-form-input,
.hp-form-textarea {
  width: 100%;
  padding: 0.92rem 1rem;
  border: 1px solid var(--line-strong);
  border-radius: 1rem;
  background: var(--surface-strong);
  color: var(--text);
  font: inherit;
}

.hp-form-input:focus,
.hp-form-textarea:focus {
  outline: 2px solid rgba(200, 162, 74, 0.18);
  border-color: var(--gold);
}

.hp-form-submit {
  grid-column: span 2;
  margin-top: 0.4rem;
}

.hp-form-notice {
  grid-column: span 2;
  margin: 0;
  font-size: 0.82rem;
  color: var(--muted);
  text-align: center;
}

/* --- Footer --- */
.hp-footer {
  padding: 3rem 0;
  border-top: 1px solid var(--line);
  background: var(--ivory);
}

.hp-footer-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 2rem;
}

.hp-footer-section h3 {
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}

.hp-footer-section p,
.hp-footer-section a {
  font-size: 0.88rem;
  color: var(--muted);
}

.hp-footer-section a:hover {
  color: var(--text);
}

.hp-footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.hp-footer-section li + li {
  margin-top: 0.4rem;
}

.hp-footer-bottom {
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}

.hp-footer-bottom p {
  margin: 0;
  font-size: 0.84rem;
  color: var(--muted);
}

/* --- Homepage Responsive --- */
@media (max-width: 1080px) {
  .hp-service-block,
  .hp-about-block {
    grid-template-columns: 1fr;
  }

  .hp-service-block-reverse {
    direction: ltr;
  }

  .hp-hero {
    min-height: auto;
  }

  .hp-hero-content {
    padding-top: 8rem;
  }

  .hp-trust-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hp-contact-form {
    grid-template-columns: 1fr;
  }

  .hp-form-group:nth-child(4),
  .hp-form-group:nth-child(5) {
    grid-column: span 1;
  }

  .hp-form-submit,
  .hp-form-notice {
    grid-column: span 1;
  }

  .hp-footer-content {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

@media (max-width: 760px) {
  .hp-header-inner {
    flex-wrap: wrap;
    justify-content: center;
    padding: 0.9rem 0;
  }

  .hp-nav {
    order: 3;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
  }

  .hp-hero-title {
    font-size: clamp(3.5rem, 16vw, 5.4rem);
  }

  .hp-hero-tagline {
    font-size: clamp(1.6rem, 8vw, 2.2rem);
  }

  .hp-hero-ctas {
    flex-direction: column;
    align-items: flex-start;
  }

  .hp-trust-grid,
  .hp-about-cards {
    grid-template-columns: 1fr;
  }

  .hp-contact-links {
    flex-direction: column;
  }
}

/* ═══════════════════════════════════════════════
   FORMULARE – Consent-Checkbox + Honeypot
   ═══════════════════════════════════════════════ */
/* Honeypot: unsichtbar für Menschen, aber von Bots ausgefüllt */
.hp-honey,
.form-honey {
  position: absolute !important;
  left: -9999px !important;
  top: auto !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

/* Consent-Zeile */
.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  margin-top: 0.5rem;
  font-size: 0.88rem;
  color: var(--muted, #4a5a55);
  line-height: 1.55;
}
.form-consent input[type="checkbox"] {
  margin-top: 0.2rem;
  flex-shrink: 0;
  accent-color: var(--deep-green, #09322a);
  width: 1.1rem;
  height: 1.1rem;
  cursor: pointer;
}
.form-consent a {
  color: var(--gold-deep, #a0793e);
  text-decoration: underline;
  font-weight: 600;
}
.form-consent a:hover,
.form-consent a:focus-visible {
  color: var(--deep-green, #09322a);
}

/* ═══════════════════════════════════════════════
   TESTIMONIALS – wiederverwendbar auf allen Seiten
   Struktur: <section class="testimonials">
               <div class="shell">
                 <div class="testimonials-intro">...</div>
                 <div class="testimonials-grid">
                   <figure class="testimonial-card">...</figure>
                 </div>
               </div>
             </section>
   ═══════════════════════════════════════════════ */
.testimonials {
  padding: 5rem 0;
  background: rgba(9, 50, 42, 0.025);
}
.testimonials-intro {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto 3rem;
}
.testimonials-intro .kicker {
  display: block;
  color: var(--gold-deep, #a0793e);
  margin-bottom: 0.6rem;
}
.testimonials-title {
  font-family: "BV Celine", serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--deep-green, #09322a);
  margin: 0 0 0.8rem;
  line-height: 1.15;
}
.testimonials-lead {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.65;
  margin: 0;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.testimonial-card {
  background: #fff;
  border: 1px solid rgba(9, 50, 42, 0.06);
  border-radius: 1.1rem;
  padding: 2rem 1.8rem 1.8rem;
  box-shadow: 0 8px 22px rgba(9, 50, 42, 0.06);
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  position: relative;
}
.testimonial-card::before {
  content: "\201C"; /* gerader grosser Anführungstrich */
  position: absolute;
  top: 0.6rem;
  left: 1.2rem;
  font-family: "BV Celine", serif;
  font-size: 3.8rem;
  line-height: 1;
  color: var(--gold, #d4b688);
  opacity: 0.55;
  pointer-events: none;
}
.testimonial-card blockquote {
  margin: 0;
  padding-top: 1.2rem;
  color: var(--ink, #1c2723);
  font-size: 1rem;
  line-height: 1.65;
  font-style: italic;
}
.testimonial-card figcaption {
  border-top: 1px solid rgba(9, 50, 42, 0.08);
  padding-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.testimonial-author {
  font-family: "BV Celine", serif;
  font-size: 1.15rem;
  color: var(--deep-green, #09322a);
  font-style: normal;
}
.testimonial-context {
  font-size: 0.82rem;
  color: var(--muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 500;
  font-style: normal;
}

@media (max-width: 600px) {
  .testimonials {
    padding: 3.5rem 0;
  }
  .testimonial-card {
    padding: 1.8rem 1.5rem 1.5rem;
  }
}

/* ═══════════════════════════════════════════════
   TRUST-BADGES (Empfohlen & Partnerschaften)
   Wiederverwendbar auf allen Seiten
   ═══════════════════════════════════════════════ */
.trust-badges {
  padding: 3.5rem 0;
  background: rgba(212, 182, 136, 0.06);
  border-top: 1px solid rgba(9, 50, 42, 0.06);
  border-bottom: 1px solid rgba(9, 50, 42, 0.06);
}
.trust-badges-intro {
  text-align: center;
  max-width: 38rem;
  margin: 0 auto 2rem;
}
.trust-badges-intro .kicker {
  display: block;
  color: var(--gold-deep, #a0793e);
  margin-bottom: 0.6rem;
}
.trust-badges-title {
  font-family: "BV Celine", serif;
  font-size: clamp(1.5rem, 2.4vw, 1.9rem);
  color: var(--deep-green, #09322a);
  margin: 0 0 0.5rem;
  line-height: 1.2;
}
.trust-badges-lead {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}
.trust-badges-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 2rem 2.5rem;
}
.trust-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 200ms ease, filter 200ms ease, opacity 200ms ease;
  opacity: 0.92;
}
.trust-badge:hover,
.trust-badge:focus-visible {
  transform: translateY(-3px);
  opacity: 1;
  outline: none;
}
.trust-badge img {
  height: 110px;
  width: auto;
  display: block;
  filter: drop-shadow(0 4px 12px rgba(9, 50, 42, 0.12));
}
@media (max-width: 560px) {
  .trust-badges {
    padding: 2.5rem 0;
  }
  .trust-badges-grid {
    gap: 1.5rem;
  }
  .trust-badge img {
    height: 92px;
  }
}

/* ═══════════════════════════════════════════════
   PREISSEITE (.preise-page)
   ═══════════════════════════════════════════════ */
body.preise-page {
  opacity: 0;
  transition: opacity 520ms ease;
}
body.preise-page.page-is-ready {
  opacity: 1;
}

.preis-hero {
  padding: 5rem 0 3rem;
  background: linear-gradient(180deg, rgba(212, 182, 136, 0.1) 0%, rgba(247, 244, 238, 0) 100%);
}
.preis-hero-inner {
  max-width: 52rem;
}
.preis-hero h1 {
  font-family: "BV Celine", serif;
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  margin: 0.8rem 0 1.3rem;
  color: var(--deep-green, #09322a);
  line-height: 1.05;
}
.preis-hero-lead {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 42rem;
}
.preis-anchors {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 0.9rem;
  margin-top: 2rem;
}
.preis-anchor-link {
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  background: rgba(9, 50, 42, 0.06);
  color: var(--deep-green, #09322a);
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}
.preis-anchor-link:hover,
.preis-anchor-link:focus-visible {
  background: var(--deep-green, #09322a);
  color: var(--ivory, #f7f4ee);
  transform: translateY(-1px);
  outline: none;
}

.preis-download {
  margin-top: 1.8rem;
}
.preis-download-button {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  background: var(--deep-green, #09322a);
  color: var(--ivory, #f7f4ee);
  padding: 0.9rem 1.5rem;
  border-radius: 0.8rem;
  box-shadow: 0 8px 22px rgba(9, 50, 42, 0.16);
  transition: transform 200ms ease, box-shadow 200ms ease, background 200ms ease;
}
.preis-download-button:hover,
.preis-download-button:focus-visible {
  background: #0d463b;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(9, 50, 42, 0.24);
  outline: none;
}
.preis-download-icon {
  width: 2.3rem;
  height: 2.3rem;
  border-radius: 50%;
  background: var(--gold, #d4b688);
  color: var(--deep-green, #09322a);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  font-weight: 700;
  flex-shrink: 0;
}
.preis-download-text {
  display: inline-flex;
  flex-direction: column;
  gap: 0.1rem;
  line-height: 1.25;
}
.preis-download-label {
  font-size: 0.98rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}
.preis-download-meta {
  font-size: 0.78rem;
  opacity: 0.72;
  letter-spacing: 0.02em;
}

.preis-section {
  padding: 5rem 0;
}
.preis-section-soft {
  background: rgba(212, 182, 136, 0.06);
}
.preis-section-highlight {
  background: var(--deep-green, #09322a);
  color: var(--ivory, #f7f4ee);
}
.preis-section-highlight .kicker {
  color: rgba(247, 244, 238, 0.75);
}
.preis-section-highlight h2,
.preis-section-highlight h3 {
  color: var(--ivory, #f7f4ee);
}
.preis-section-highlight p {
  color: rgba(247, 244, 238, 0.88);
}
.preis-section-highlight strong {
  color: var(--gold, #d4b688);
}

.preis-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.preis-card {
  background: #fff;
  border: 1px solid rgba(9, 50, 42, 0.08);
  border-radius: 1.1rem;
  padding: 2rem 1.8rem;
  box-shadow: 0 8px 24px rgba(9, 50, 42, 0.06);
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.preis-card-head h3 {
  font-family: "BV Celine", serif;
  font-size: 1.6rem;
  margin: 0.3rem 0 0;
  color: var(--deep-green, #09322a);
  line-height: 1.15;
}
.preis-amount {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding: 0.7rem 0 0.9rem;
  border-top: 1px solid rgba(9, 50, 42, 0.08);
  border-bottom: 1px solid rgba(9, 50, 42, 0.08);
}
.preis-prefix,
.preis-suffix {
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}
.preis-value {
  font-family: "BV Celine", serif;
  font-size: 2rem;
  color: var(--gold-deep, #a0793e);
  font-weight: 500;
  line-height: 1.1;
}
.preis-amount-large .preis-value {
  font-size: 2.6rem;
  color: var(--gold, #d4b688);
}
.preis-includes {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.55;
}
.preis-includes li + li {
  margin-top: 0.5rem;
}
.preis-includes-two-col {
  column-count: 2;
  column-gap: 2rem;
}
.preis-footnote {
  margin: 0;
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.55;
  font-style: italic;
}

/* Kombi Maik & Marco */
.preis-kombi-card {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 2.5rem;
  align-items: center;
  background: rgba(247, 244, 238, 0.06);
  border: 1px solid rgba(212, 182, 136, 0.25);
  border-radius: 1.4rem;
  padding: 2.5rem;
  margin-top: 2.5rem;
}
.preis-kombi-head h3 {
  font-family: "BV Celine", serif;
  font-size: 2rem;
  margin: 0.3rem 0 0;
  line-height: 1.15;
}
.preis-section-highlight .preis-amount {
  border-color: rgba(247, 244, 238, 0.15);
}
.preis-section-highlight .preis-includes {
  color: rgba(247, 244, 238, 0.9);
}
.preis-section-highlight .preis-prefix,
.preis-section-highlight .preis-suffix {
  color: rgba(247, 244, 238, 0.7);
}
.preis-kombi-meta {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.preis-kombi-meta img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 0.9rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}
.preis-kombi-meta a {
  color: var(--gold, #d4b688);
  font-weight: 600;
  text-decoration: underline;
}

/* Bonus-Block (Paar-Coaching) */
.preis-bonus {
  margin-top: 3rem;
  padding: 2rem 2.2rem;
  background: rgba(212, 182, 136, 0.12);
  border-left: 4px solid var(--gold-deep, #a0793e);
  border-radius: 0.8rem;
}
.preis-bonus h3 {
  font-family: "BV Celine", serif;
  font-size: 1.45rem;
  margin: 0.3rem 0 0.8rem;
  color: var(--deep-green, #09322a);
}
.preis-bonus p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

/* Rahmenbedingungen */
.preis-rahmen-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.2rem;
  margin-top: 2.5rem;
}
.preis-rahmen-card {
  background: #fff;
  border: 1px solid rgba(9, 50, 42, 0.08);
  border-radius: 1rem;
  padding: 1.6rem 1.5rem;
  box-shadow: 0 6px 18px rgba(9, 50, 42, 0.05);
}
.preis-rahmen-card h3 {
  font-family: "BV Celine", serif;
  font-size: 1.35rem;
  margin: 0;
  color: var(--deep-green, #09322a);
}
.preis-rahmen-amount {
  font-family: "BV Celine", serif;
  font-size: 1.5rem;
  color: var(--gold-deep, #a0793e);
  margin: 0.5rem 0 0.9rem;
  font-weight: 500;
}
.preis-rahmen-card p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

/* FAQ */
.preis-faq-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 3rem;
  align-items: start;
}
.preis-faq article {
  padding: 1.2rem 0;
  border-bottom: 1px solid rgba(9, 50, 42, 0.08);
}
.preis-faq article:first-child {
  padding-top: 0;
}
.preis-faq h3 {
  font-family: "BV Celine", serif;
  font-size: 1.25rem;
  margin: 0 0 0.6rem;
  color: var(--deep-green, #09322a);
}
.preis-faq p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

/* Responsive Preisseite */
@media (max-width: 900px) {
  .preis-kombi-card {
    grid-template-columns: 1fr;
    padding: 1.8rem;
  }
  .preis-faq-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .preis-includes-two-col {
    column-count: 1;
  }
}
@media (max-width: 560px) {
  .preis-hero {
    padding: 3.5rem 0 2rem;
  }
  .preis-section {
    padding: 3.5rem 0;
  }
  .preis-card {
    padding: 1.6rem 1.4rem;
  }
}
