/* =========================================================
   Zeitbewusst — Design System
   Martina Steffens · Psychotherapie & Entspannung
   ========================================================= */

:root {
  /* Brand Farben (offiziell aus Farbcode-PDF) */
  --c-teal-light: #6493a4;
  --c-teal: #2c5c63;
  --c-teal-deep: #1f474d;
  --c-sage: #c6c4b4;
  --c-cognac: #895121;
  --c-cognac-soft: #a06a36;
  --c-brown: #683c1c;
  --c-rose: #9c6272;
  --c-rose-soft: #b78995;
  --c-cream: #f7f2ea;
  --c-cream-deep: #ebe3d4;
  --c-paper: #fbf7f0;
  --c-white: #f7fbff;
  --c-ink: #2c3a3d;
  --c-ink-soft: #51656a;

  /* Typografie */
  --ff-script: "Parisienne", cursive;
  --ff-serif: "Cormorant Garamond", "Cormorant", Georgia, serif;
  --ff-sans: "Lato", "Helvetica Neue", Arial, sans-serif;

  --fs-hero: clamp(2.6rem, 6vw, 5rem);
  --fs-h1: clamp(2.1rem, 4vw, 3.3rem);
  --fs-h2: clamp(1.75rem, 3vw, 2.6rem);
  --fs-h3: clamp(1.3rem, 2vw, 1.7rem);
  --fs-body: 1.05rem;
  --fs-sm: .9rem;

  /* Layout */
  --radius-sm: 8px;
  --radius: 18px;
  --radius-lg: 28px;
  --radius-pill: 999px;
  --shadow-sm: 0 4px 18px rgba(44,92,99,.08);
  --shadow: 0 12px 40px rgba(44,92,99,.12);
  --maxw: 1200px;
  --gap: clamp(1.25rem, 2vw, 2rem);
  --section-y: clamp(4rem, 8vw, 7rem);
}

/* ---------- Reset / Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--ff-sans);
  font-size: var(--fs-body);
  line-height: 1.7;
  color: var(--c-ink);
  background: var(--c-paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; height: auto; }
a { color: var(--c-teal); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--c-cognac); }
button { font: inherit; cursor: pointer; border: 0; background: transparent; }

h1, h2, h3, h4 {
  font-family: var(--ff-serif);
  font-weight: 500;
  color: var(--c-teal-deep);
  line-height: 1.2;
  margin: 0 0 .6em;
  letter-spacing: .01em;
}
h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); }
p { margin: 0 0 1em; }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 1.25rem; }
.narrow    { max-width: 820px;  margin: 0 auto; padding: 0 1.25rem; }
.section   { padding: var(--section-y) 0; position: relative; }

/* ---------- Utility ---------- */
.script { font-family: var(--ff-script); font-weight: 400; color: var(--c-rose); }
.italic-serif { font-family: var(--ff-serif); font-style: italic; font-weight: 400; }
.eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: .25em;
  font-size: .72rem;
  font-weight: 700;
  color: var(--c-teal);
  margin-bottom: 1rem;
}
.eyebrow::before, .eyebrow::after {
  content: ""; display: inline-block; width: 22px; height: 1px;
  background: var(--c-teal); vertical-align: middle; margin: 0 .8em;
  opacity: .55;
}
.center { text-align: center; }
.lead { font-size: 1.2rem; line-height: 1.6; color: var(--c-ink-soft); }
.divider-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--c-cognac); display: inline-block; margin: 0 .7em;
  vertical-align: middle;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .55rem;
  padding: .95rem 1.8rem;
  border-radius: var(--radius-pill);
  font-weight: 700;
  letter-spacing: .04em;
  font-size: .95rem;
  transition: all .25s ease;
  white-space: nowrap;
  cursor: pointer;
}
.btn .arrow { transition: transform .25s ease; }
.btn:hover .arrow { transform: translateX(4px); }
.btn-primary { background: var(--c-teal); color: var(--c-paper); box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--c-teal-deep); color: var(--c-paper); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-featured-cta { background: var(--c-paper); color: var(--c-teal-deep); }
.btn-featured-cta:hover { background: var(--c-cream); color: var(--c-teal-deep); }
.btn-secondary { background: var(--c-cognac); color: var(--c-paper); box-shadow: var(--shadow-sm); }
.btn-secondary:hover { background: var(--c-brown); color: var(--c-paper); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-outline {
  background: transparent; color: var(--c-teal);
  border: 1.5px solid var(--c-teal);
}
.btn-outline:hover { background: var(--c-teal); color: var(--c-paper); }
.btn-ghost { padding: .4rem 0; color: var(--c-teal); font-weight: 700; letter-spacing: .05em; font-size: .9rem; }
.btn-ghost:hover { color: var(--c-cognac); }

/* ---------- Top Bar ---------- */
.topbar {
  background: var(--c-teal-deep);
  color: var(--c-cream);
  font-size: .82rem;
  letter-spacing: .03em;
}
.topbar .container {
  display: flex; justify-content: space-between; align-items: center;
  padding: .55rem 1.25rem; gap: 1rem; flex-wrap: wrap;
}
.topbar a { color: var(--c-cream); }
.topbar a:hover { color: var(--c-rose-soft); }
.topbar .tb-left, .topbar .tb-right { display: flex; gap: 1.5rem; align-items: center; flex-wrap: wrap; }
.topbar .tb-right a { display: inline-flex; align-items: center; gap: .4rem; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(251, 247, 240, .94);
  backdrop-filter: saturate(1.1) blur(8px);
  -webkit-backdrop-filter: saturate(1.1) blur(8px);
  border-bottom: 1px solid rgba(44,92,99,.08);
}
.site-header .container {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 1.25rem;
  gap: 1.75rem;
  flex-wrap: nowrap;
}
.brand { display: flex; align-items: center; gap: .8rem; flex-shrink: 0; }
.brand img { width: 54px; height: auto; }
.brand.brand-logo-only { padding: .2rem 0; }
.brand.brand-logo-only img { width: auto; height: 72px; max-height: 72px; display: block; }
.brand .brand-txt { line-height: 1.05; }
.brand .brand-name {
  font-family: var(--ff-serif);
  font-weight: 500;
  font-size: 1.35rem;
  letter-spacing: .28em;
  color: var(--c-teal-deep);
  text-transform: uppercase;
  white-space: nowrap;
}
.brand .brand-script {
  font-family: var(--ff-script);
  font-size: 1rem;
  color: var(--c-rose);
  margin-top: -.1em;
  white-space: nowrap;
}

nav.main-nav { flex: 1; display: flex; justify-content: center; }
nav.main-nav ul {
  display: flex; gap: 1.4rem; list-style: none; margin: 0; padding: 0;
  flex-wrap: nowrap;
}
nav.main-nav li { white-space: nowrap; }
nav.main-nav a {
  color: var(--c-teal-deep);
  font-weight: 600; letter-spacing: .04em;
  font-size: .9rem;
  padding: .3rem 0;
  position: relative;
  white-space: nowrap;
}
nav.main-nav a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -4px;
  height: 2px; background: var(--c-rose);
  transform: scaleX(0); transform-origin: left; transition: transform .25s ease;
}
nav.main-nav a:hover::after, nav.main-nav a.active::after { transform: scaleX(1); }
nav.main-nav a.active { color: var(--c-cognac); }

.nav-cta { display: inline-flex; flex-shrink: 0; white-space: nowrap; }
.burger {
  display: none; width: 40px; height: 40px; border-radius: 50%;
  background: var(--c-teal); color: var(--c-paper);
  align-items: center; justify-content: center;
}

@media (max-width: 1280px) {
  nav.main-nav ul { gap: 1.1rem; }
  nav.main-nav a { font-size: .85rem; }
}

@media (max-width: 1140px) {
  nav.main-nav ul { display: none; position: absolute; top: 100%; left: 0; right: 0;
    background: var(--c-paper); flex-direction: column; gap: 0; padding: 1rem 1.25rem 2rem;
    border-bottom: 1px solid rgba(44,92,99,.1); box-shadow: var(--shadow);
  }
  nav.main-nav ul.open { display: flex; }
  nav.main-nav ul li { padding: .7rem 0; border-bottom: 1px solid rgba(44,92,99,.06); }
  .burger { display: inline-flex; }
  .nav-cta { display: none; }
}

/* ---------- Hero ---------- */
.hero {
  padding: clamp(3rem, 6vw, 5rem) 0 clamp(3rem, 5vw, 4rem);
  background: linear-gradient(180deg, var(--c-paper) 0%, var(--c-cream) 100%);
  position: relative; overflow: hidden;
}
.hero-grid {
  display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(1.5rem, 3vw, 3rem);
  align-items: center;
}
@media (max-width: 880px) { .hero-grid { grid-template-columns: 1fr; } }

.hero h1 {
  font-size: clamp(2.2rem, 4.8vw, 4rem);
  line-height: 1.05;
  margin-bottom: .75rem;
  color: var(--c-teal-deep);
}
.hero h1 .script {
  display: block;
  font-size: clamp(2rem, 4.5vw, 3.6rem);
  color: var(--c-rose);
  margin-bottom: .15em;
  font-weight: 400;
}
.hero h1 em { font-style: italic; color: var(--c-cognac); font-weight: 500; }
.hero .lead { max-width: 540px; margin-bottom: 1.1rem; }
.hero .cta-row { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 1.1rem; }
.hero .sig { margin-top: 1.1rem; font-family: var(--ff-script); font-size: 1.6rem; color: var(--c-rose); }
.hero .sig-sub { color: var(--c-ink-soft); font-size: .9rem; letter-spacing: .08em; }

.hero-visual { position: relative; }
.hero-visual .photo-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 4/5;
  position: relative;
}
.hero-visual .photo-wrap img { width: 100%; height: 100%; object-fit: cover; }
.hero-visual .ring-deco {
  position: absolute; right: -30px; top: -30px;
  width: 180px; height: 180px;
  border: 2px solid var(--c-cognac); border-radius: 50%;
  opacity: .35; z-index: -1;
}
.hero-visual .badge {
  position: absolute; bottom: -20px; left: -20px;
  background: var(--c-paper); border-radius: var(--radius);
  padding: 1rem 1.25rem; box-shadow: var(--shadow);
  display: flex; align-items: center; gap: .9rem;
  max-width: 280px;
}
.hero-visual .badge .dot {
  width: 12px; height: 12px; border-radius: 50%;
  background: #7bbf7b; box-shadow: 0 0 0 4px rgba(123,191,123,.25);
  flex-shrink: 0;
}
.hero-visual .badge span { font-size: .85rem; line-height: 1.4; color: var(--c-ink); }
.hero-visual .badge strong { color: var(--c-teal); display: block; }

/* ---------- Page Hero (kleiner für Unterseiten) ---------- */
.page-hero {
  padding: clamp(4rem, 8vw, 7rem) 0 clamp(3rem, 5vw, 4rem);
  background: linear-gradient(180deg, var(--c-cream-deep) 0%, var(--c-cream) 100%);
  position: relative; overflow: hidden;
  text-align: center;
}
.page-hero h1 { font-size: clamp(2.4rem, 5vw, 4rem); margin-bottom: .4em; }
.page-hero h1 .script { display: block; color: var(--c-rose); font-weight: 400; font-size: .55em; margin-bottom: .2em;}
.page-hero p { color: var(--c-ink-soft); max-width: 620px; margin: 0 auto 1.5rem; font-size: 1.1rem; }
.page-hero .crumb {
  color: var(--c-ink-soft); font-size: .82rem; letter-spacing: .1em;
  text-transform: uppercase; margin-bottom: 1.2rem;
}
.page-hero .crumb a { color: var(--c-teal); }

/* ---------- Sections ---------- */
.section-title {
  text-align: center; max-width: 720px; margin: 0 auto 3rem;
}
.section-title h2 em { color: var(--c-cognac); font-style: italic; }
.section-title .script { font-size: 1.7rem; display: block; margin-bottom: .2em; }

.bg-paper { background: var(--c-paper); }
.bg-cream { background: var(--c-cream); }
.bg-sage  { background: var(--c-sage); }
.bg-teal  { background: var(--c-teal); color: var(--c-paper); }
.bg-teal h2, .bg-teal h3 { color: var(--c-paper); }
.bg-teal .eyebrow { color: var(--c-cream); }
.bg-teal .eyebrow::before, .bg-teal .eyebrow::after { background: var(--c-cream); }
.bg-brown { background: var(--c-brown); color: var(--c-cream); }
.bg-brown h2, .bg-brown h3 { color: var(--c-cream); }

/* ---------- Intro-Paragraph / Quote-Block ---------- */
.intro-block {
  max-width: 780px; margin: 0 auto; text-align: center;
}
.intro-block p { font-family: var(--ff-serif); font-size: 1.4rem; line-height: 1.55; color: var(--c-teal-deep); font-weight: 400; font-style: italic;}
.intro-block p + p { font-family: var(--ff-sans); font-style: normal; font-size: 1.1rem; color: var(--c-ink); margin-top: 1.5rem;}

/* ---------- "Geht es dir auch so?" — Listen-Card ---------- */
.feelings-list {
  background: var(--c-paper);
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 4vw, 3.5rem);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(44,92,99,.08);
}
.feelings-list ul {
  list-style: none; padding: 0; margin: 0;
  columns: 2; column-gap: 3rem;
}
@media (max-width: 720px) { .feelings-list ul { columns: 1; } }
.feelings-list li {
  break-inside: avoid;
  position: relative;
  padding: .75rem 0 .75rem 2rem;
  border-bottom: 1px dashed rgba(44,92,99,.15);
  font-size: 1.02rem; color: var(--c-ink);
  line-height: 1.5;
}
.feelings-list li::before {
  content: "";
  position: absolute; left: 0; top: 1.1rem;
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--c-rose-soft);
  box-shadow: inset 0 0 0 2px var(--c-paper), 0 0 0 1.5px var(--c-rose);
}

/* ---------- Tag Chips ---------- */
.tag-list {
  display: flex; flex-wrap: wrap; gap: .65rem;
  justify-content: center; margin: 2rem auto 1rem;
  max-width: 780px;
}
.tag-chip {
  background: var(--c-paper);
  color: var(--c-teal-deep);
  padding: .55rem 1.2rem;
  border-radius: var(--radius-pill);
  border: 1.5px solid var(--c-teal);
  font-weight: 600;
  font-size: .92rem;
  letter-spacing: .02em;
  transition: all .2s ease;
}
.tag-chip:hover { background: var(--c-teal); color: var(--c-paper); }

/* ---------- 4-Columns Grid (Warnsignale) ---------- */
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
@media (max-width: 980px) { .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .grid-4 { grid-template-columns: 1fr; } }
.signal-card {
  background: var(--c-paper);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  border: 1px solid rgba(44,92,99,.1);
  text-align: center;
  transition: all .25s ease;
}
.signal-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); }
.signal-card .icon {
  width: 58px; height: 58px; border-radius: 50%;
  background: var(--c-cream-deep);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem; font-size: 1.8rem; line-height: 1;
}
.signal-card h3 { font-size: 1.2rem; color: var(--c-teal-deep); margin-bottom: .7rem; }
.signal-card ul { list-style: none; padding: 0; margin: 0; font-size: .92rem; color: var(--c-ink-soft); text-align: left; display: inline-block;}
.signal-card ul li { padding: .25rem 0; padding-left: 1rem; position: relative; }
.signal-card ul li::before { content: "·"; position: absolute; left: .3rem; color: var(--c-cognac); font-weight: bold; }

/* ---------- Signals-list (Stressige Warnsignale) ---------- */
.signals-list {
  max-width: 760px; margin: 0 auto; padding: 2.4rem 2.6rem;
  background: #fff; border: 1px solid var(--c-sage);
  border-radius: 22px; box-shadow: var(--shadow-xs);
}
.signals-list ul {
  list-style: none; padding: 0; margin: 0;
  display: grid; grid-template-columns: repeat(2, 1fr); gap: .7rem 2rem;
  color: var(--c-ink-soft); font-size: 1rem;
}
@media (max-width: 640px) { .signals-list ul { grid-template-columns: 1fr; } .signals-list { padding: 1.8rem; } }
.signals-list ul li {
  padding: .4rem 0 .4rem 1.6rem; position: relative;
  border-bottom: 1px dashed rgba(198, 196, 180, 0.6);
}
.signals-list ul li:last-child,
.signals-list ul li:nth-last-child(2):nth-child(odd) { border-bottom: none; }
.signals-list ul li::before {
  content: ""; position: absolute; left: 0; top: .85rem;
  width: .55rem; height: .55rem; border-radius: 50%;
  background: var(--c-rose); opacity: .75;
}

/* ---------- Ziele-Liste (was sich verändern kann) ---------- */
.goals-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: .8rem 2rem;
  max-width: 780px; margin: 0 auto;
}
@media (max-width: 640px) { .goals-grid { grid-template-columns: 1fr; } }
.goals-grid li {
  list-style: none;
  padding: .8rem 0 .8rem 2.2rem;
  position: relative;
  border-bottom: 1px solid rgba(44,92,99,.1);
  font-size: 1.03rem;
}
.goals-grid li::before {
  content: "✓"; position: absolute; left: 0; top: .65rem;
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--c-teal); color: var(--c-paper);
  font-size: .85rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}

/* ---------- Check-List (Haken-Liste, einspaltig) ---------- */
.check-list {
  list-style: none; padding: 0; margin: 1.25rem 0;
}
.check-list li {
  padding: .7rem 0 .7rem 2.2rem;
  position: relative;
  border-bottom: 1px solid rgba(44,92,99,.1);
  font-size: 1.03rem;
  line-height: 1.5;
}
.check-list li:last-child { border-bottom: none; }
.check-list li::before {
  content: "✓"; position: absolute; left: 0; top: .55rem;
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--c-teal); color: var(--c-paper);
  font-size: .85rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}

/* ---------- Method-Cards (Methoden-Seite Grid) ---------- */
.method-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
}
@media (max-width: 900px) { .method-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .method-grid { grid-template-columns: 1fr; } }
.method-card {
  background: var(--c-paper);
  border: 1px solid rgba(44,92,99,.1);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all .25s ease;
}
.method-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.method-card .num {
  font-family: var(--ff-serif);
  font-size: 2.4rem;
  color: var(--c-cognac);
  font-style: italic;
  font-weight: 500;
  line-height: 1;
  margin-bottom: .5rem;
  display: block;
}
.method-card .mc-body { padding: 2rem 1.6rem; }
.method-card h3 { margin-bottom: .6rem; }
.method-card p { color: var(--c-ink-soft); font-size: .97rem; margin: 0; }

/* ---------- Offer Cards ---------- */
.offer-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
}
@media (max-width: 880px) { .offer-grid { grid-template-columns: 1fr; } }
.offer-card {
  background: var(--c-paper);
  border: 1px solid rgba(44,92,99,.1);
  border-radius: var(--radius-lg);
  padding: 2.2rem 1.8rem;
  position: relative;
  transition: all .25s ease;
  display: flex; flex-direction: column;
}
.offer-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.offer-card.featured { background: var(--c-teal); color: var(--c-paper); border-color: var(--c-teal);}
.offer-card.featured h3, .offer-card.featured .price { color: var(--c-paper); }
.offer-card.featured .price small { color: rgba(255, 255, 255, .85); }
.offer-card.featured .fine { color: rgba(251, 247, 240, .75); }
.offer-card.featured .badge-featured {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--c-cognac); color: var(--c-paper);
  padding: .3rem 1rem; border-radius: var(--radius-pill);
  font-size: .75rem; letter-spacing: .1em; text-transform: uppercase; font-weight: 700;
}
.offer-card h3 { font-size: 1.35rem; margin-bottom: .4em; }
.offer-card .price {
  font-family: var(--ff-serif);
  font-size: 2.2rem;
  color: var(--c-cognac);
  font-weight: 500;
  margin: .8rem 0;
}
.offer-card .price small { font-size: .85rem; color: var(--c-ink-soft); display: block; margin-top: .2em; }
.offer-card ul { list-style: none; padding: 0; margin: 1rem 0 1.5rem;}
.offer-card ul li { padding: .4rem 0 .4rem 1.5rem; position: relative; font-size: .95rem; }
.offer-card ul li::before { content: "✓"; position: absolute; left: 0; color: var(--c-cognac); font-weight: 700; }
.offer-card.featured ul li::before { color: var(--c-rose-soft); }
.offer-card .btn { margin-top: auto; align-self: flex-start; }

/* ---------- Quote Section ---------- */
.quote-section {
  background: #ffffff;
  text-align: center;
}
.quote-section .quote-mark {
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: clamp(5rem, 10vw, 8rem);
  line-height: 1;
  color: var(--c-teal-deep);
  margin: 0 0 .2rem;
  font-weight: 500;
}
.quote-section blockquote {
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: clamp(1.5rem, 2.8vw, 2.15rem);
  line-height: 1.45;
  color: var(--c-teal-deep);
  margin: 0 0 1.4rem;
  font-weight: 500;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}
.quote-section cite {
  display: inline-block;
  font-style: normal;
  color: var(--c-cognac);
  font-size: .9rem;
  letter-spacing: .22em;
  text-transform: uppercase;
}

/* ---------- Quote Block (inline) ---------- */
.quote-block {
  text-align: center; max-width: 780px; margin: 0 auto;
  position: relative; padding: 2rem 0;
}
.quote-block::before {
  content: "\201C";
  font-family: var(--ff-serif);
  font-size: 10rem;
  color: var(--c-cognac);
  opacity: .2;
  position: absolute;
  top: -2rem; left: 50%;
  transform: translateX(-50%);
  line-height: 1;
  font-weight: 500;
}
.quote-block blockquote {
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  line-height: 1.45;
  color: var(--c-teal-deep);
  margin: 0 0 1.2rem;
  font-weight: 500;
}
.quote-block cite {
  font-style: normal;
  color: var(--c-ink-soft);
  font-size: .95rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}

/* ---------- Split Section (Image + Text) ---------- */
.split {
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}
@media (max-width: 880px) { .split { grid-template-columns: 1fr; } }
.split.reverse > :first-child { order: 2; }
@media (max-width: 880px) { .split.reverse > :first-child { order: 0; } }
.split img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  width: 100%; height: 100%; object-fit: cover;
  aspect-ratio: 4/5;
}

/* ---------- CTA Banner ---------- */
.cta-banner {
  background: linear-gradient(135deg, var(--c-teal) 0%, var(--c-teal-deep) 100%);
  color: var(--c-paper);
  padding: clamp(3rem, 6vw, 5rem) clamp(2rem, 4vw, 4rem);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-banner::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(156, 98, 114, .25), transparent 50%),
              radial-gradient(circle at 80% 80%, rgba(137, 81, 33, .25), transparent 50%);
  pointer-events: none;
}
.cta-banner > * { position: relative; z-index: 1; }
.cta-banner h2 { color: var(--c-paper); font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
.cta-banner h2 em { color: var(--c-rose-soft); }
.cta-banner p { color: rgba(251, 247, 240, .88); max-width: 560px; margin: 0 auto 2rem; }
.cta-banner .cta-row { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }
.cta-banner .btn-primary { background: var(--c-paper); color: var(--c-teal-deep); }
.cta-banner .btn-primary:hover { background: var(--c-cream); color: var(--c-teal-deep); }
.cta-banner .btn-outline { color: var(--c-paper); border-color: var(--c-paper); }
.cta-banner .btn-outline:hover { background: var(--c-paper); color: var(--c-teal-deep); }

/* ---------- Timeline (Qualifikationen) ---------- */
.timeline { border-left: 2px solid var(--c-teal); padding-left: 2rem; margin-left: 1rem; }
.timeline-item { position: relative; padding-bottom: 1.5rem; }
.timeline-item::before {
  content: ""; position: absolute; left: -2.55rem; top: .35rem;
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--c-paper); border: 3px solid var(--c-cognac);
}
.timeline-year {
  font-family: var(--ff-serif); font-style: italic;
  color: var(--c-cognac); font-size: 1.05rem; margin-bottom: .2rem;
}
.timeline-item h4 { font-size: 1.1rem; color: var(--c-teal-deep); margin: 0 0 .3rem; }
.timeline-item p { margin: 0; font-size: .92rem; color: var(--c-ink-soft); }

/* ---------- Kurs-Cards ---------- */
.course-card {
  background: var(--c-paper);
  border: 1px solid rgba(44,92,99,.1);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1.5rem;
  align-items: center;
  margin-bottom: 1rem;
  transition: all .2s ease;
}
.course-card:hover { transform: translateX(4px); box-shadow: var(--shadow-sm); }
.course-card .course-icon {
  width: 72px; height: 72px; border-radius: 50%;
  background: var(--c-cream);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem;
  border: 2px solid var(--c-teal);
}
.course-card h3 { margin-bottom: .2rem; font-size: 1.3rem;}
.course-card .course-meta { color: var(--c-ink-soft); font-size: .88rem; margin-bottom: .5rem;}
.course-card .course-meta span { margin-right: 1rem;}
.course-card .course-price {
  font-family: var(--ff-serif); font-size: 1.7rem; color: var(--c-cognac);
  font-weight: 500;
}
@media (max-width: 780px) {
  .course-card { grid-template-columns: 1fr; text-align: center; padding: 1.5rem; }
  .course-card .course-icon { margin: 0 auto; }
}

/* ---------- Praxis-Info Boxen (Kontakt) ---------- */
.info-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem;
}
@media (max-width: 780px) { .info-grid { grid-template-columns: 1fr; } }
.info-card {
  background: var(--c-paper);
  border-radius: var(--radius-lg);
  padding: 2.2rem;
  border: 1.5px solid var(--c-teal);
  border-radius: var(--radius-lg);
}
.info-card h3 {
  display: flex; align-items: center; gap: .7rem;
  font-size: 1.25rem; margin-bottom: 1rem;
}
.info-card h3::before {
  content: ""; width: 36px; height: 36px; border-radius: 50%;
  background: var(--c-teal); display: inline-flex; flex-shrink: 0;
}
.info-card p { margin: .2rem 0; font-size: .98rem; color: var(--c-ink); }
.info-card .info-label { color: var(--c-ink-soft); font-size: .82rem; letter-spacing: .1em; text-transform: uppercase; margin-top: 1rem; }

/* ---------- Contact Form ---------- */
.contact-form {
  display: grid; gap: 1rem; max-width: 640px; margin: 0 auto;
}
.contact-form .row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 580px) { .contact-form .row-2 { grid-template-columns: 1fr; } }
.contact-form label {
  font-size: .85rem; font-weight: 600; color: var(--c-teal-deep);
  letter-spacing: .04em;
}
.contact-form input, .contact-form select, .contact-form textarea {
  width: 100%;
  padding: .9rem 1rem;
  border: 1.5px solid rgba(44,92,99,.2);
  border-radius: var(--radius);
  background: var(--c-paper);
  font-family: var(--ff-sans); font-size: 1rem;
  color: var(--c-ink);
  transition: border-color .2s ease;
}
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus {
  outline: none; border-color: var(--c-teal);
}
.contact-form textarea { min-height: 140px; resize: vertical; }
.contact-form .gdpr { display: flex; gap: .6rem; font-size: .85rem; color: var(--c-ink-soft); }
.contact-form .gdpr input { width: auto; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--c-teal-deep);
  color: var(--c-cream);
  padding: clamp(3rem, 5vw, 5rem) 0 2rem;
  margin-top: var(--section-y);
}
.site-footer a { color: var(--c-cream); }
.site-footer a:hover { color: var(--c-rose-soft); }
.footer-grid {
  display: grid; grid-template-columns: 1.2fr 1fr 1fr 1fr; gap: 2rem;
  margin-bottom: 3rem;
}
@media (max-width: 880px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 580px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-grid h4 {
  color: var(--c-cream);
  font-family: var(--ff-serif);
  font-size: 1.1rem; margin: 0 0 1rem;
  font-weight: 500;
  letter-spacing: .04em;
}
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid ul li { padding: .3rem 0; font-size: .92rem; }
.footer-grid p { font-size: .92rem; margin: .3rem 0; color: rgba(251, 247, 240, .8); line-height: 1.6;}
.footer-brand {
  display: flex; align-items: center; gap: 1rem; margin-bottom: 1rem;
}
.footer-brand img { width: 60px; filter: brightness(0) invert(1); opacity: .9;}
.footer-brand--logo-only img { width: 140px; }
.footer-brand .brand-name { color: var(--c-cream); font-size: 1.1rem; letter-spacing: .28em; font-family: var(--ff-serif);}
.footer-brand .brand-script { color: var(--c-rose-soft); font-family: var(--ff-script); font-size: 1rem;}
.footer-bottom {
  border-top: 1px solid rgba(251, 247, 240, .15);
  padding-top: 1.5rem;
  display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap;
  font-size: .82rem; color: rgba(251, 247, 240, .7);
}
.footer-bottom nav a { margin-right: 1.2rem; }
.disclaimer-note {
  background: rgba(251, 247, 240, .06);
  border-radius: var(--radius);
  padding: 1.2rem 1.5rem;
  font-size: .85rem; color: rgba(251, 247, 240, .8);
  margin-bottom: 2.5rem;
  line-height: 1.6;
}
.disclaimer-note strong { color: var(--c-rose-soft); }

/* ---------- Wildflower Border (Signature Visual) ---------- */
.wildflower-border {
  height: clamp(90px, 11vh, 130px);
  background-color: var(--c-cream);
  background-image: url("../img/wildflowers.svg");
  background-repeat: repeat-x;
  background-size: auto 100%;
  background-position: center bottom;
  opacity: 1;
  pointer-events: none;
  margin-top: 0;
}

/* ---------- Scroll Reveal (ruhig) ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .8s ease, transform .8s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Ornamente ---------- */
.ornament-circle {
  position: absolute; border-radius: 50%;
  pointer-events: none; z-index: 0;
}
.ornament-circle.c1 { width: 320px; height: 320px; border: 2px solid var(--c-sage); opacity: .3; top: -80px; right: -80px; }
.ornament-circle.c2 { width: 180px; height: 180px; background: var(--c-cream-deep); opacity: .6; bottom: -60px; left: -40px; }

/* ---------- Small helpers ---------- */
.mt-0 { margin-top: 0; }
.mt-2 { margin-top: 2rem; }
.mb-0 { margin-bottom: 0; }
.mb-2 { margin-bottom: 2rem; }
