/* ============================================================
   Dominik Groß · Coaching
   Nüchtern, premium, viel Weißraum, ein ruhiger Akzent.
   Font: Montserrat, lokal gehostet (DSGVO-konform).
   ============================================================ */

@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/montserrat-400.woff2') format('woff2');
}
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('../fonts/montserrat-500.woff2') format('woff2');
}
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../fonts/montserrat-600.woff2') format('woff2');
}
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/montserrat-700.woff2') format('woff2');
}

:root {
  --paper: #FAFAF7;
  --paper-alt: #F1F2EE;
  --ink: #20302C;
  --ink-soft: #45524E;
  --muted: #6E7975;
  --hair: rgba(32, 48, 44, .13);
  --accent: #2E6059;          /* ruhiges Tannen-Petrol */
  --accent-dark: #24504A;
  --accent-ink: #E9F0EE;      /* Text auf Akzentfläche */
  --accent-soft: #E3ECE9;     /* zarte Akzentfläche für Hero-Form */
  --shadow: 0 1px 2px rgba(32,48,44,.05), 0 10px 30px rgba(32,48,44,.07);
  --font: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  --radius: 14px;
  --container: 1120px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; animation: none !important; }
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font);
  font-size: 16.5px;
  line-height: 1.68;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding-left: clamp(18px, 4vw, 40px);
  padding-right: clamp(18px, 4vw, 40px);
}

/* ---------- Typography ---------- */
h1, h2, h3 { font-family: var(--font); font-weight: 700; letter-spacing: -.015em; text-wrap: balance; }
h1 { font-size: clamp(30px, 4.2vw, 46px); line-height: 1.12; margin: 0 0 22px; }
h2 { font-size: clamp(24px, 3.1vw, 34px); line-height: 1.18; margin: 0 0 16px; }
h3 { font-size: 18.5px; line-height: 1.35; margin: 0 0 10px; font-weight: 600; }
p { margin: 0 0 1em; }

.eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 16px;
}
.eyebrow-light { color: var(--accent-ink); opacity: .85; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--font);
  font-size: 15.5px;
  font-weight: 600;
  text-decoration: none;
  padding: 14px 28px;
  border-radius: 999px;
  transition: background .18s ease, transform .18s ease, box-shadow .18s ease;
  text-align: center;
}
.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: var(--shadow);
}
.btn-primary:hover { background: var(--accent-dark); transform: translateY(-1px); }
.btn-light {
  background: #fff;
  color: var(--accent-dark);
}
.btn-light:hover { transform: translateY(-1px); box-shadow: var(--shadow); }
.btn-lg { font-size: 16.5px; padding: 16px 34px; }
.btn:focus-visible { outline: 3px solid var(--accent); outline-offset: 3px; }

.cta-note { font-size: 13.5px; color: var(--muted); margin-top: 12px; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in srgb, var(--paper) 88%, transparent);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--hair);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 28px;
  padding-top: 13px;
  padding-bottom: 13px;
}
.wordmark {
  font-size: 17.5px;
  font-weight: 700;
  letter-spacing: -.01em;
  color: var(--ink);
  text-decoration: none;
  line-height: 1.1;
}
.wordmark-sub {
  display: block;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 2px;
}
.main-nav { display: flex; gap: 22px; margin-left: auto; }
.main-nav a {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ink-soft);
  text-decoration: none;
  transition: color .15s;
}
.main-nav a:hover { color: var(--accent); }
.btn-header { font-size: 13.5px; padding: 10px 20px; }

.nav-toggle { display: none; }

/* ---------- Hero ---------- */
.hero {
  padding: clamp(36px, 6vw, 80px) 0 0;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: clamp(24px, 4vw, 56px);
  align-items: end;
}
.hero-copy {
  align-self: start;
  padding-top: clamp(8px, 2.5vw, 36px);
  padding-bottom: clamp(24px, 4vw, 48px);
}
.hero-sub {
  font-size: clamp(16px, 1.9vw, 18px);
  color: var(--ink-soft);
  max-width: 56ch;
  margin-bottom: 30px;
}

/* Freisteller auf gestalteter Fläche */
.hero-figure {
  position: relative;
  align-self: end;
  display: flex;
  justify-content: center;
  min-height: 380px;
}
.hero-shape {
  position: absolute;
  inset: auto 0 0 0;
  height: 78%;
  background: linear-gradient(160deg, var(--accent-soft), color-mix(in srgb, var(--accent) 26%, var(--paper)));
  border-radius: 200px 200px 0 0;   /* Bogen */
}
.hero-figure img {
  position: relative;
  z-index: 1;
  width: min(74%, 360px);
  height: auto;
  filter: drop-shadow(0 18px 30px rgba(32,48,44,.18));
}

/* ---------- Sections ---------- */
.section { padding: clamp(56px, 8vw, 104px) 0; }
.section-alt { background: var(--paper-alt); }
.section-head { max-width: 760px; margin-bottom: clamp(32px, 4vw, 52px); }
.section-intro { font-size: 17px; color: var(--ink-soft); }

/* ---------- Cards (Situationen) ---------- */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 18px;
}
.card {
  background: #fff;
  border: 1px solid var(--hair);
  border-radius: var(--radius);
  padding: 26px 26px 20px;
  box-shadow: var(--shadow);
}
.card-quote {
  font-size: 17px;
  line-height: 1.45;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 12px;
  letter-spacing: -.005em;
}
.card-text { font-size: 14.5px; color: var(--muted); margin: 0; }
.cards-outro {
  max-width: 720px;
  margin: 34px 0 0;
  font-size: 17px;
  color: var(--ink-soft);
  border-left: 3px solid var(--accent);
  padding-left: 18px;
}

/* ---------- Manifest / Haltung ---------- */
.section-accent {
  background: var(--accent-dark);
  color: var(--accent-ink);
}
.manifesto { max-width: 800px; }
.manifesto blockquote { margin: 0 0 26px; padding: 0; }
.manifesto blockquote p {
  font-size: clamp(22px, 3vw, 32px);
  line-height: 1.3;
  font-weight: 700;
  letter-spacing: -.015em;
  margin: 0 0 6px;
  text-wrap: balance;
  color: #fff;
}
.manifesto-text { font-size: 16.5px; line-height: 1.7; opacity: .92; max-width: 68ch; margin: 0; }

/* ---------- Story ---------- */
.story-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}
.story-photo { margin: 0; position: sticky; top: 96px; }
.story-photo img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: top;
}
.story-copy p { color: var(--ink-soft); max-width: 62ch; }
.story-punch {
  font-size: 19px;
  font-weight: 600;
  font-style: italic;
  color: var(--ink) !important;
  border-left: 3px solid var(--accent);
  padding-left: 18px;
  margin: 26px 0;
  letter-spacing: -.005em;
}
.stats-row {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(24px, 4vw, 56px);
  margin-top: 34px;
  padding-top: 26px;
  border-top: 1px solid var(--hair);
}
.stat { display: flex; flex-direction: column; }
.stat-num {
  font-size: 34px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  font-variant-numeric: tabular-nums;
  letter-spacing: -.02em;
}
.stat-label { font-size: 13.5px; color: var(--muted); margin-top: 7px; max-width: 16ch; }

/* ---------- Arbeitsweise ---------- */
.principles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: clamp(20px, 3vw, 36px);
  margin-bottom: clamp(36px, 5vw, 56px);
}
.principle h3 { color: var(--ink); }
.principle h3::before {
  content: "";
  display: block;
  width: 34px;
  height: 3px;
  background: var(--accent);
  border-radius: 2px;
  margin-bottom: 14px;
}
.principle p { font-size: 15px; color: var(--ink-soft); margin: 0; }

.themen {
  background: #fff;
  border: 1px solid var(--hair);
  border-radius: var(--radius);
  padding: clamp(24px, 3.5vw, 40px);
  box-shadow: var(--shadow);
}
.themen-title { margin-bottom: 18px; }
.themen-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 10px 28px;
}
.themen-list li {
  position: relative;
  padding-left: 26px;
  font-size: 15.5px;
  color: var(--ink-soft);
}
.themen-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .5em;
  width: 12px;
  height: 12px;
  border: 2px solid var(--accent);
  border-radius: 50%;
}

/* ---------- Ablauf / Erstgespräch ---------- */
.ablauf-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}
.steps {
  list-style: none;
  counter-reset: step;
  margin: 0 0 30px;
  padding: 0;
  display: grid;
  gap: 22px;
}
.steps li {
  counter-increment: step;
  position: relative;
  padding-left: 58px;
}
.steps li::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: 2px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-size: 17px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.steps h3 { margin-bottom: 4px; }
.steps p { font-size: 15px; color: var(--ink-soft); margin: 0; }
.ablauf-photo { margin: 0; }
.ablauf-photo img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.ablauf-photo figcaption {
  font-size: 13px;
  color: var(--muted);
  margin-top: 12px;
}

/* ---------- FAQ ---------- */
.faq-container { max-width: 780px; }
.faq-item {
  background: #fff;
  border: 1px solid var(--hair);
  border-radius: var(--radius);
  margin-bottom: 12px;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 19px 54px 19px 24px;
  font-size: 16.5px;
  font-weight: 600;
  position: relative;
  transition: color .15s;
  letter-spacing: -.005em;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
  font-weight: 400;
  color: var(--accent);
  transition: transform .2s;
}
.faq-item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-item summary:hover { color: var(--accent); }
.faq-item p {
  padding: 0 24px 22px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 15.5px;
  max-width: 68ch;
}

/* ---------- Final CTA ---------- */
.final-cta {
  background: var(--accent-dark);
  color: var(--accent-ink);
}
.final-cta-inner {
  text-align: center;
  max-width: 640px;
}
.final-cta h2 { color: #fff; }
.final-cta p { font-size: 17px; opacity: .9; margin-bottom: 30px; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,.75);
  padding: 48px 0 28px;
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255,255,255,.14);
}
.site-footer .wordmark { color: #fff; margin: 0 0 6px; }
.footer-tag { font-size: 13.5px; margin: 0; color: rgba(255,255,255,.6); }
.footer-nav { display: flex; flex-wrap: wrap; gap: 20px; align-items: center; }
.footer-nav a {
  color: rgba(255,255,255,.75);
  text-decoration: none;
  font-size: 14px;
  transition: color .15s;
}
.footer-nav a:hover { color: #fff; }
.footer-meta { padding-top: 22px; }
.footer-meta p { font-size: 12.5px; color: rgba(255,255,255,.45); margin: 0; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .hero-grid,
  .story-grid,
  .ablauf-grid { grid-template-columns: 1fr; }
  .hero { padding-top: 24px; }
  .hero-grid { gap: 8px; }
  .hero-copy { padding-bottom: 0; order: 1; }
  .hero-figure { order: 2; margin-top: 34px; min-height: 300px; }
  .hero-figure img { width: min(64%, 300px); }
  .story-photo { position: static; max-width: 420px; }
  .main-nav { display: none; }
  .btn-header { display: none; }
  .nav-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    margin-left: auto;
    width: 44px;
    height: 44px;
    padding: 10px;
    background: none;
    border: 1px solid var(--hair);
    border-radius: 10px;
    cursor: pointer;
  }
  .nav-toggle span {
    display: block;
    height: 2px;
    background: var(--ink);
    border-radius: 2px;
    transition: transform .2s, opacity .2s;
  }
  .nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
  .nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .nav-open .main-nav {
    display: flex;
    flex-direction: column;
    gap: 4px;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: var(--paper);
    border-bottom: 1px solid var(--hair);
    padding: 12px clamp(18px, 4vw, 40px) 20px;
    box-shadow: var(--shadow);
  }
  .nav-open .main-nav a { padding: 10px 0; font-size: 16.5px; }
}

@media (max-width: 520px) {
  body { font-size: 15.5px; }
  .stats-row { gap: 20px; }
  .stat-num { font-size: 28px; }
  .btn-lg { width: 100%; }
}

/* ============================================================
   Wow-Layer: Kapitel-Motiv, Reveals, Mikro-Interaktionen
   ============================================================ */

/* Kapitel-Ziffern als stilles Marken-Motiv („nächstes Kapitel") */
.section[data-chapter] { position: relative; overflow: hidden; }
.section[data-chapter]::before {
  content: attr(data-chapter);
  position: absolute;
  top: clamp(8px, 2vw, 20px);
  right: clamp(4px, 3vw, 28px);
  font-size: clamp(110px, 16vw, 210px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -.04em;
  color: var(--accent);
  opacity: .06;
  pointer-events: none;
  user-select: none;
}
.section-accent[data-chapter]::before { color: #fff; opacity: .07; }
@media (max-width: 900px) {
  .section[data-chapter]::before {
    font-size: clamp(64px, 18vw, 96px);
    top: 10px;
    right: 10px;
  }
}

/* Hero: Highlight-Wort mit handgezeichnetem Unterstrich */
.hl {
  font-style: normal;
  position: relative;
  white-space: nowrap;
}
.hl::after {
  content: "";
  position: absolute;
  left: -2%;
  right: -2%;
  bottom: .02em;
  height: .18em;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 12' preserveAspectRatio='none'%3E%3Cpath d='M2 9 C 20 3, 45 2, 70 5 S 95 8, 98 6' fill='none' stroke='%232E6059' stroke-width='3.2' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat center / 100% 100%;
  transform-origin: left center;
}

/* Einstiegs-Choreografie (Hero) */
@media (prefers-reduced-motion: no-preference) {
  .hero-copy > * {
    opacity: 0;
    transform: translateY(16px);
    animation: rise .7s cubic-bezier(.22,.8,.36,1) forwards;
  }
  .hero-copy > *:nth-child(1) { animation-delay: .05s; }
  .hero-copy > *:nth-child(2) { animation-delay: .15s; }
  .hero-copy > *:nth-child(3) { animation-delay: .28s; }
  .hero-copy > *:nth-child(4) { animation-delay: .42s; }
  .hero-figure img {
    opacity: 0;
    transform: translateY(30px);
    animation: rise .9s cubic-bezier(.22,.8,.36,1) .3s forwards;
  }
  .hero-shape {
    transform-origin: bottom center;
    transform: scaleY(0);
    animation: grow .8s cubic-bezier(.22,.8,.36,1) .15s forwards;
  }
  .hl::after {
    transform: scaleX(0);
    animation: draw .6s cubic-bezier(.22,.8,.36,1) .9s forwards;
  }
  /* Scroll-Reveals */
  .reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity .65s cubic-bezier(.22,.8,.36,1), transform .65s cubic-bezier(.22,.8,.36,1);
  }
  .reveal.in-view { opacity: 1; transform: none; }
  .cards-grid .card:nth-child(2), .principles-grid .principle:nth-child(2) { transition-delay: .08s; }
  .cards-grid .card:nth-child(3), .principles-grid .principle:nth-child(3) { transition-delay: .16s; }
  .cards-grid .card:nth-child(4) { transition-delay: .08s; }
  .cards-grid .card:nth-child(5) { transition-delay: .16s; }
  .cards-grid .card:nth-child(6) { transition-delay: .24s; }
}
@keyframes rise { to { opacity: 1; transform: none; } }
@keyframes grow { to { transform: scaleY(1); } }
@keyframes draw { to { transform: scaleX(1); } }

/* Mikro-Interaktionen */
.card { transition: transform .25s cubic-bezier(.22,.8,.36,1), box-shadow .25s; }
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 2px 4px rgba(32,48,44,.06), 0 18px 44px rgba(32,48,44,.12);
}
.btn-primary, .btn-light { position: relative; }
.btn-lg::after {
  content: "→";
  display: inline-block;
  margin-left: 8px;
  transition: transform .2s;
}
.btn-lg:hover::after { transform: translateX(4px); }

/* ---------- Lebendiger Hintergrund: Haltungs-Sektion ---------- */
@media (prefers-reduced-motion: no-preference) {
  .section-accent {
    background: linear-gradient(115deg,
      #24504A 0%, #1E443F 30%, #2A5A53 55%, #24504A 80%, #204944 100%);
    background-size: 260% 260%;
    animation: drift 22s ease-in-out infinite alternate;
  }
  @keyframes drift {
    from { background-position: 0% 40%; }
    to   { background-position: 100% 60%; }
  }
}

/* ---------- Rechtsseiten ---------- */
.legal-container { max-width: 720px; }
.legal h1 { font-size: clamp(28px, 3.6vw, 40px); margin-bottom: 8px; }
.legal-sub { color: var(--muted); font-size: 14.5px; margin-bottom: 36px; }
.legal h2 { font-size: 18px; margin: 30px 0 8px; }
.legal p { color: var(--ink-soft); font-size: 15.5px; }
.legal a { color: var(--accent); }
.legal-back { margin-top: 44px; }
.legal-back a { text-decoration: none; font-weight: 600; }

/* ---------- Logo ---------- */
.wordmark { display: flex; align-items: center; }
.wordmark img { height: 38px; width: auto; }
.site-footer .wordmark { margin: 0 0 10px; }
.site-footer .wordmark img { height: 34px; }
@media (max-width: 480px) {
  .wordmark img { height: 30px; }
}

/* ============================================================
   Lebendigkeits-Layer: Aurora, Fortschritt, Mikro-Effekte
   ============================================================ */

/* Sanfte Farbflächen im Hero (Aurora, sehr dezent) */
.hero { position: relative; }
.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  pointer-events: none;
  z-index: 0;
}
.hero::before {
  width: 420px; height: 420px;
  left: -120px; top: -80px;
  background: radial-gradient(circle, #DDEAE6 0%, transparent 70%);
  opacity: .9;
}
.hero::after {
  width: 380px; height: 380px;
  right: -60px; top: 30%;
  background: radial-gradient(circle, #EFE9DA 0%, transparent 70%);
  opacity: .7;
}
.hero .container { position: relative; z-index: 1; }
@media (prefers-reduced-motion: no-preference) {
  .hero::before { animation: aurora1 16s ease-in-out infinite alternate; }
  .hero::after  { animation: aurora2 20s ease-in-out infinite alternate; }
  @keyframes aurora1 { from { transform: translate(0,0) scale(1); } to { transform: translate(50px,30px) scale(1.12); } }
  @keyframes aurora2 { from { transform: translate(0,0) scale(1.08); } to { transform: translate(-40px,-24px) scale(1); } }
}

/* Lese-Fortschritt (Kapitel-Metapher) */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 100%;
  transform: scaleX(0);
  transform-origin: left;
  background: linear-gradient(90deg, var(--accent), #4E837B);
  z-index: 60;
  pointer-events: none;
}

/* Kapitel-Ziffern: leichte Tiefe beim Scrollen */
.section[data-chapter]::before {
  transform: translateY(var(--chapter-shift, 0px));
  will-change: transform;
}

/* Nav-Links: wachsender Unterstrich */
.main-nav a { position: relative; padding-bottom: 3px; }
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .22s ease;
}
.main-nav a:hover::after { transform: scaleX(1); }

/* Karten: Akzentlinie beim Hover */
.card { position: relative; overflow: hidden; }
.card::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 3px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease;
}
.card:hover::after { transform: scaleX(1); }

/* ---------- Conversion-Elemente ---------- */
.section-cta { margin-top: 30px; }
.cta-alt { font-size: 14.5px; opacity: .85; margin-top: 18px; }
.cta-alt a { color: #fff; font-weight: 600; }

/* Sticky-CTA für Mobile: erscheint nach dem Hero */
.mobile-cta {
  display: none;
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 55;
  padding: 10px clamp(14px, 4vw, 24px) calc(10px + env(safe-area-inset-bottom));
  background: color-mix(in srgb, var(--paper) 92%, transparent);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid var(--hair);
  transform: translateY(110%);
  transition: transform .3s cubic-bezier(.22,.8,.36,1);
}
.mobile-cta .btn { display: block; width: 100%; }
.mobile-cta.visible { transform: translateY(0); }
@media (max-width: 900px) {
  .mobile-cta { display: block; }
  body { scroll-padding-bottom: 70px; }
}

/* ---------- Cookie-Consent-Banner ---------- */
.consent-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 70;
  padding: clamp(14px, 3vw, 22px);
  transform: translateY(110%);
  transition: transform .35s cubic-bezier(.22,.8,.36,1);
}
.consent-banner.visible { transform: translateY(0); }
.consent-inner {
  max-width: 860px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--hair);
  border-radius: var(--radius);
  box-shadow: 0 6px 40px rgba(32,48,44,.18);
  padding: 22px 24px;
  display: flex;
  gap: 22px;
  align-items: center;
  flex-wrap: wrap;
}
.consent-text { flex: 1 1 380px; }
.consent-title { font-weight: 700; margin: 0 0 4px; font-size: 15.5px; }
.consent-text p { margin: 0; font-size: 13.5px; color: var(--ink-soft); line-height: 1.55; }
.consent-text a { color: var(--accent); }
.consent-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.consent-actions .btn { font-size: 14px; padding: 11px 20px; }
.consent-accept { background: var(--accent); color: #fff; }
.consent-accept:hover { background: var(--accent-dark); }
.consent-decline { background: var(--paper-alt); color: var(--ink); border: 1px solid var(--hair); }
.consent-decline:hover { background: #E6E8E3; }
@media (max-width: 560px) {
  .consent-actions { width: 100%; }
  .consent-actions .btn { flex: 1; }
}

/* ---------- Calendly-Buchung (Click-to-Load) ---------- */
.booking { width: 100%; }
.booking-placeholder {
  background: #fff;
  border: 1px solid var(--hair);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 22px;
  text-align: center;
}
.booking-placeholder img {
  border-radius: 10px;
  margin-bottom: 18px;
}
.booking-placeholder p { font-size: 15.5px; color: var(--ink-soft); margin: 0 0 14px; }
.booking-note { font-size: 12px !important; color: var(--muted) !important; margin: 12px 0 0 !important; }
.booking iframe {
  width: 100%;
  height: 720px;
  border: 0;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

/* Inline-Links im Story-Text */
.story-copy a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid color-mix(in srgb, var(--accent) 40%, transparent);
  transition: border-color .15s;
}
.story-copy a:hover { border-bottom-color: var(--accent); }
