/* ============================================================
   fem-pow — style.css / Version 2
   Mobile-First, CSS Custom Properties, Manrope
   Breakpoints: 640px (sm), 1024px (lg)

   V2 Änderung:
   - Lead-Hervorhebungen sind deutlich sichtbarer:
     .lead strong { font-weight: 800; color: var(--forest); }
   - Typografie ist konsistent auf Manrope ausgerichtet.
============================================================ */

/* ============================================================
   1. CSS VARIABLES
============================================================ */
:root {
  /* Farben */
  --cream:      #FBF8F3;
  --sand:       #F5F0E8;
  --forest:     #3D4F3C;
  --terracotta: #C97D5D;
  --ink:        #2A2A28;
  --muted:      #6B6B65;

  /* Typografie */
  --font-serif: 'Manrope', system-ui, sans-serif;
  --font-sans:  'Manrope', system-ui, sans-serif;

  /* Schriftgrößen (fluid) */
  --text-xs:   0.75rem;
  --text-sm:   0.875rem;
  --text-base: 1rem;
  --text-lg:   1.125rem;
  --text-xl:   1.25rem;
  --text-2xl:  1.5rem;
  --text-3xl:  2rem;
  --text-4xl:  2.75rem;
  --text-5xl:  3.5rem;

  /* Abstände */
  --space-xs:  0.5rem;
  --space-sm:  1rem;
  --space-md:  1.75rem;
  --space-lg:  3rem;
  --space-xl:  5rem;

  /* Layout */
  --max-width:        1160px;
  --max-width-narrow: 720px;
  --radius:           4px;
  --radius-lg:        8px;
  --transition:       0.2s ease;
}

/* ============================================================
   2. RESET & BASE
============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  font-weight: 400;
  line-height: 1.75;
  color: var(--ink);
  background-color: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

ul, ol {
  list-style: none;
}

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

/* ============================================================
   3. TYPOGRAPHY
============================================================ */
h1, h2, h3 {
  font-family: var(--font-serif);
  font-weight: 500;
  line-height: 1.2;
  color: var(--ink);
}

h1 { font-size: var(--text-3xl); }
h2 { font-size: var(--text-2xl); }
h3 { font-size: var(--text-xl); }

p { margin-bottom: var(--space-sm); }
p:last-child { margin-bottom: 0; }

strong {
  font-weight: 700;
}

.lead strong {
  font-weight: 800;
  color: var(--forest);
}

em { font-style: italic; }

.lead {
  font-size: var(--text-lg);
  color: var(--muted);
  line-height: 1.8;
}

.text-center { text-align: center; }

@media (min-width: 640px) {
  h1 { font-size: var(--text-4xl); }
  h2 { font-size: var(--text-3xl); }
  h3 { font-size: var(--text-2xl); }
}

@media (min-width: 1024px) {
  h1 { font-size: var(--text-5xl); }
}

/* ============================================================
   4. LAYOUT UTILITIES
============================================================ */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: var(--space-md);
}

.container-narrow {
  max-width: var(--max-width-narrow);
}

.section {
  padding-block: var(--space-xl);
}

.section-cream { background-color: var(--cream); }
.section-sand  { background-color: var(--sand); }

.section-title {
  margin-bottom: var(--space-lg);
}

/* ============================================================
   5. BUTTONS
============================================================ */
.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  font-family: var(--font-sans);
  font-size: var(--text-base);
  font-weight: 500;
  letter-spacing: 0.02em;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background-color var(--transition), color var(--transition), transform var(--transition);
  text-align: center;
}

.btn-primary {
  background-color: var(--terracotta);
  color: #fff;
  border: 2px solid var(--terracotta);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background-color: #b56a4a;
  border-color: #b56a4a;
  transform: translateY(-1px);
  outline: none;
}

.link-underline {
  color: var(--terracotta);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--transition);
}

.link-underline:hover {
  color: #b56a4a;
}

/* ============================================================
   6. HEADER & NAVIGATION
============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: var(--cream);
  border-bottom: 1px solid rgba(61, 79, 60, 0.12);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.site-logo {
  font-family: var(--font-serif);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--forest);
  letter-spacing: 0.01em;
  white-space: nowrap;
}

/* Hamburger */
.nav-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  color: var(--ink);
  cursor: pointer;
  padding: 0;
  border-radius: var(--radius);
  transition: color var(--transition);
}

.nav-toggle:hover,
.nav-toggle:focus-visible {
  color: var(--terracotta);
  outline: 2px solid var(--terracotta);
  outline-offset: 2px;
}

.nav-toggle svg {
  width: 22px;
  height: 22px;
}

/* Mobile Nav */
.main-nav {
  display: none;
  position: absolute;
  top: 64px;
  left: 0;
  right: 0;
  background-color: var(--cream);
  border-bottom: 1px solid rgba(61, 79, 60, 0.12);
  padding: var(--space-sm) var(--space-md) var(--space-md);
}

.main-nav.is-open {
  display: block;
}

.main-nav ul {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.main-nav a {
  display: block;
  padding: 0.5rem 0;
  font-size: var(--text-base);
  color: var(--ink);
  transition: color var(--transition);
}

.main-nav a:hover,
.main-nav a:focus-visible,
.main-nav a[aria-current="page"] {
  color: var(--terracotta);
  outline: none;
}

/* Desktop Nav */
@media (min-width: 1024px) {
  .nav-toggle {
    display: none;
  }

  .main-nav {
    display: block;
    position: static;
    background: none;
    border: none;
    padding: 0;
  }

  .main-nav ul {
    flex-direction: row;
    gap: var(--space-md);
  }

  .main-nav a {
    padding: 0;
    font-size: var(--text-sm);
    letter-spacing: 0.03em;
  }
}

/* ============================================================
   7. HERO
============================================================ */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(30, 28, 24, 0.45) 0%,
    rgba(30, 28, 24, 0.55) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: var(--space-md);
  max-width: 800px;
}

.hero-eyebrow {
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: var(--space-md);
}

.hero-headline {
  font-family: var(--font-serif);
  font-size: clamp(var(--text-3xl), 6vw, var(--text-5xl));
  font-weight: 600;
  color: #FBF8F3;
  line-height: 1.15;
  margin-bottom: var(--space-sm);
}

.hero-sub {
  font-family: var(--font-sans);
  font-size: var(--text-lg);
  color: #FBF8F3;
  margin-bottom: var(--space-lg);
  font-weight: 300;
}

.hero-date-banner {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: clamp(0.95rem, 1.6vw, 1.15rem);
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #FBF8F3;
  margin-bottom: var(--space-md);
}

/* ============================================================
   8. TEAM / ÜBER UNS
============================================================ */
.team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  margin-bottom: var(--space-lg);
}

@media (min-width: 640px) {
  .team-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
  }
}

.team-card {
  background-color: var(--cream);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.team-photo-wrap {
  width: 100%;
  overflow: hidden;
}

.team-photo-wrap img {
  width: 100%;
  height: auto;
  display: block;
}

/* Individuelle Justierung pro Portrait — nicht mehr nötig, 
   da Bilder jetzt im Originalverhältnis angezeigt werden */
.team-photo--anna,
.team-photo--josi {
  /* keine besondere Justierung mehr */
}

.team-text {
  padding: var(--space-md);
}

.team-text h3 {
  font-size: var(--text-xl);
  margin-bottom: var(--space-xs);
}

.team-text p {
  color: var(--muted);
  font-size: var(--text-base);
}

.team-note {
  max-width: var(--max-width-narrow);
  margin-inline: auto;
  color: var(--muted);
  font-size: var(--text-sm);
  line-height: 1.7;
  border-top: 1px solid rgba(61, 79, 60, 0.15);
  padding-top: var(--space-md);
}

/* ============================================================
   9. PROGRAMM / TIMELINE
============================================================ */
.programm-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  align-items: start;
}

@media (min-width: 1024px) {
  .programm-layout {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: center;
  }
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.timeline-item {
  display: flex;
  gap: var(--space-md);
  position: relative;
  padding-bottom: var(--space-md);
}

.timeline-item:not(:last-child)::before {
  content: '';
  position: absolute;
  left: 19px;
  top: 42px;
  bottom: 0;
  width: 1px;
  background-color: rgba(61, 79, 60, 0.2);
}

.timeline-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(61, 79, 60, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--forest);
  background-color: var(--cream);
  position: relative;
  z-index: 1;
}

.timeline-icon svg {
  width: 18px;
  height: 18px;
  stroke-width: 1.5;
}

.timeline-body h3 {
  font-size: var(--text-lg);
  margin-bottom: 0.25rem;
  font-weight: 500;
}

.timeline-body p {
  color: var(--muted);
  font-size: var(--text-base);
}

.programm-image img {
  width: 100%;
  border-radius: var(--radius-lg);
  object-fit: cover;
  max-height: 500px;
}

/* ============================================================
   10. WAS IST ENTHALTEN
============================================================ */
.included-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  align-items: center;
}

@media (min-width: 1024px) {
  .included-layout {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
  }
}

.included-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.included-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  font-size: var(--text-base);
  color: var(--ink);
}

.included-icon {
  flex-shrink: 0;
  color: var(--terracotta);
  margin-top: 2px;
}

.included-icon svg {
  width: 20px;
  height: 20px;
  stroke-width: 1.5;
}

.included-image img {
  width: 100%;
  border-radius: var(--radius-lg);
  object-fit: cover;
  max-height: 480px;
}

/* ============================================================
   11. LOCATION GALERIE
============================================================ */
.location-gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
}

@media (min-width: 640px) {
  .location-gallery {
    grid-template-columns: repeat(3, 1fr);
  }
}

.location-gallery figure {
  overflow: hidden;
  border-radius: var(--radius-lg);
  aspect-ratio: 4 / 3;
}

.location-gallery figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.location-gallery figure:hover img {
  transform: scale(1.03);
}

.location-link {
  margin-top: var(--space-md);
}

/* ============================================================
   12. PREISE & PAKETE
============================================================ */
.preise-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  align-items: start;
}

@media (min-width: 1024px) {
  .preise-layout {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: center;
  }
}

.preise-cards {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.preis-card {
  background-color: var(--cream);
  border: 1px solid rgba(61, 79, 60, 0.15);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
}

.preis-icon {
  color: var(--terracotta);
  margin-bottom: var(--space-xs);
}

.preis-icon svg {
  width: 24px;
  height: 24px;
  stroke-width: 1.5;
}

.preis-card h3 {
  font-size: var(--text-xl);
  margin-bottom: var(--space-xs);
}

.preis-amount {
  font-family: var(--font-serif);
  font-size: var(--text-lg);
  color: var(--forest);
  margin-bottom: var(--space-xs);
}

.preis-vergünstigt {
  color: var(--terracotta);
}

.preis-card p:last-child {
  color: var(--muted);
  font-size: var(--text-sm);
}

.earlybird-hint {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  color: var(--muted);
  font-size: var(--text-sm);
}

.earlybird-hint svg {
  width: 16px;
  height: 16px;
  stroke-width: 1.5;
  flex-shrink: 0;
  color: var(--terracotta);
}

.kostentransparenz-link,
.preistransparenz-link {
  font-size: var(--text-sm);
}

.preise-image img {
  width: 100%;
  border-radius: var(--radius-lg);
  object-fit: cover;
  max-height: 460px;
}

/* ============================================================
   13. ANMELDUNG / TALLY PLACEHOLDER
============================================================ */
.tally-placeholder {
  background-color: var(--sand);
  border: 2px dashed rgba(61, 79, 60, 0.25);
  border-radius: var(--radius-lg);
  padding: var(--space-xl) var(--space-lg);
  text-align: center;
  color: var(--muted);
  font-size: var(--text-base);
  margin-top: var(--space-md);
}

/* ============================================================
   14. FOOTER
============================================================ */
.site-footer {
  background-color: var(--forest);
  color: rgba(255, 255, 255, 0.75);
  padding-block: var(--space-lg);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  text-align: center;
}

.footer-logo {
  font-family: var(--font-serif);
  font-size: var(--text-xl);
  color: rgba(255, 255, 255, 0.9);
  font-weight: 300;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-sm);
}

.footer-nav a {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.65);
  transition: color var(--transition);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-nav a:hover {
  color: #fff;
}

.footer-copy {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 0;
}

/* ============================================================
   15. KOSTENTRANSPARENZ PAGE
============================================================ */
.pt-page {
  padding-top: calc(var(--space-xl) + var(--space-sm));
}

.page-title {
  font-size: clamp(var(--text-3xl), 5vw, var(--text-5xl));
  font-weight: 600;
  margin-bottom: var(--space-md);
  color: var(--forest);
}

.kosten-liste {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.kosten-item {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding-block: var(--space-md);
  border-bottom: 1px solid rgba(61, 79, 60, 0.12);
}

.kosten-item:last-child {
  border-bottom: none;
}

.kosten-icon {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background-color: rgba(201, 125, 93, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--terracotta);
}

.kosten-icon svg {
  width: 18px;
  height: 18px;
  stroke-width: 1.5;
}

.kosten-text {
  display: flex;
  flex: 1;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

.kosten-text strong {
  font-weight: 500;
  color: var(--ink);
}

.kosten-betrag {
  font-family: var(--font-serif);
  font-size: var(--text-lg);
  color: var(--forest);
  white-space: nowrap;
}

/* ============================================================
   16. FOCUS STYLES (Accessibility)
============================================================ */
:focus-visible {
  outline: 2px solid var(--terracotta);
  outline-offset: 3px;
}

/* ============================================================
   17. SKIP LINK (Accessibility)
============================================================ */
.skip-link {
  position: absolute;
  top: -100%;
  left: var(--space-sm);
  background: var(--terracotta);
  color: #fff;
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius);
  font-size: var(--text-sm);
  z-index: 999;
  transition: top var(--transition);
}

.skip-link:focus {
  top: var(--space-xs);
}

/* Timeline time badge */
.timeline-time {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  font-weight: 400;
  color: var(--muted);
  margin-left: 0.4rem;
}

/* Section title sub-label */
.section-title-sub {
  font-family: var(--font-sans);
  font-size: var(--text-lg);
  font-weight: 300;
  color: var(--muted);
  font-style: italic;
}

/* Preis-Hinweis Badge */
.preis-hinweis--badge {
  display: flex;
  align-items: flex-start;
  gap: 0.4rem;
  background-color: rgba(201, 125, 93, 0.08);
  border-left: 3px solid var(--terracotta);
  border-radius: var(--radius);
  padding: 0.6rem 0.75rem;
  font-size: var(--text-sm);
  color: var(--muted);
  margin-top: var(--space-xs);
}

.preis-hinweis--badge svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  margin-top: 2px;
  stroke-width: 1.5;
  color: var(--terracotta);
}

.preise-zahlungshinweis {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  color: var(--muted);
  font-size: var(--text-sm);
  margin-top: var(--space-sm);
}

.preise-zahlungshinweis svg {
  width: 15px;
  height: 15px;
  stroke-width: 1.5;
  color: var(--terracotta);
  flex-shrink: 0;
}

/* Stornobedingungen */
.storno-block {
  background-color: var(--sand);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  margin-bottom: var(--space-md);
}

.storno-title {
  font-size: var(--text-lg);
  margin-bottom: var(--space-sm);
}

.storno-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.storno-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  font-size: var(--text-sm);
  color: var(--muted);
}

.storno-icon {
  flex-shrink: 0;
  color: var(--terracotta);
  margin-top: 2px;
}

.storno-icon svg {
  width: 16px;
  height: 16px;
  stroke-width: 1.5;
}

/* ============================================================
   "WAS IST ENTHALTEN — UND WAS NICHT" SEKTION
============================================================ */

.enthalten-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  margin-top: var(--space-lg);
}

@media (min-width: 768px) {
  .enthalten-layout {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
  }
}

.enthalten-block {
  background: var(--cream);
  padding: var(--space-lg);
  border-radius: 8px;
}

.enthalten-block-title {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin: 0 0 var(--space-md) 0;
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--ink);
}

.enthalten-block-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  flex-shrink: 0;
}

.enthalten-block-icon--yes {
  background: var(--forest);
  color: var(--cream);
}

.enthalten-block-icon--no {
  background: var(--sand);
  color: var(--muted);
}

.enthalten-block-icon svg {
  width: 18px;
  height: 18px;
  stroke-width: 2;
}

.enthalten-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.enthalten-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  font-size: var(--text-base);
  line-height: 1.5;
  color: var(--ink);
}

.enthalten-list--no li {
  color: var(--muted);
}

.included-icon {
  flex-shrink: 0;
  color: var(--terracotta);
  margin-top: 2px;
}

.included-icon--no {
  color: var(--muted);
  opacity: 0.7;
}

.included-icon svg {
  width: 18px;
  height: 18px;
  stroke-width: 1.5;
}

/* ============================================================
   PREISE-SEKTION: NEUE KARTEN-LAYOUT MIT BILD
============================================================ */

.preise-cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  margin-top: var(--space-lg);
  margin-bottom: var(--space-lg);
}

@media (min-width: 768px) {
  .preise-cards-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
  }
}

.preis-card-neu {
  background: var(--cream);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.preis-card-neu:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.preis-card-image {
  width: 100%;
  height: 320px;
  overflow: hidden;
}

.preis-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.preis-card-body {
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.preis-card-neu h3 {
  font-size: var(--text-xl);
  margin: 0 0 var(--space-xs) 0;
  color: var(--ink);
}

.preis-untertitel {
  color: var(--muted);
  font-size: var(--text-sm);
  margin: 0 0 var(--space-md) 0;
  font-style: italic;
}

.preis-phasen {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
}

.preis-phase {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-sm) var(--space-md);
  border-radius: 6px;
  background: var(--sand);
}

.preis-phase--regulaer {
  background: var(--forest);
  color: var(--cream);
}

.preis-phase-label {
  font-size: var(--text-sm);
  font-weight: 500;
}

.preis-phase-datum {
  font-size: var(--text-xs);
  opacity: 0.8;
  font-weight: 400;
  display: block;
  margin-top: 2px;
}

.preis-phase-betrag {
  font-size: var(--text-lg);
  font-weight: 700;
  font-family: var(--font-serif, var(--font-sans));
  white-space: nowrap;
}

.preis-phase-betrag--struck {
  font-size: var(--text-base);
  font-weight: 600;
}

.preis-hinweis {
  font-size: var(--text-sm);
  color: var(--muted);
  margin: 0;
  margin-top: auto;
}

.preis-hinweis--badge {
  display: flex;
  align-items: flex-start;
  gap: var(--space-xs);
  background: var(--sand);
  border-left: 3px solid var(--terracotta);
  padding: var(--space-sm) var(--space-md);
  border-radius: 4px;
  line-height: 1.4;
}

.preis-hinweis--badge svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: var(--terracotta);
  margin-top: 2px;
}

.preise-zahlungshinweis {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
  color: var(--muted);
  font-size: var(--text-sm);
  margin: var(--space-md) auto;
  width: 100%;
}

.preise-zahlungshinweis svg {
  width: 16px;
  height: 16px;
  color: var(--terracotta);
}

.kostentransparenz-link-neu,
.preistransparenz-link-neu {
  margin-top: var(--space-sm);
}

/* ============================================================
   FINAL V2 OVERRIDE — sichtbare Hervorhebungen
   Muss am Ende der Datei stehen, damit es alte strong-Regeln überschreibt.
============================================================ */
.lead strong {
  font-weight: 800;
  color: var(--forest);
}


/* ============================================================
   FINAL V5 OVERRIDES — sichtbare Fettung + saubere Team-Bilder
   Muss am Ende der Datei stehen, damit fruehere Regeln ueberschrieben werden.
============================================================ */
strong,
.lead strong,
.team-text strong,
.timeline-body strong,
.enthalten-list strong,
.team-note-box strong,
.programm-konzept strong {
  font-weight: 800;
  color: var(--forest);
}

.team-card {
  overflow: hidden;
}

.team-photo-wrap {
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--sand);
}

.team-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.team-photo-wrap img.team-photo--josi {
  object-fit: cover !important;
  object-position: center center;
  background: transparent;
}
