/* =====================================================
   ZUKUNFTSMUT – Martina Schmerold-Tagunoff
   Stylesheet
   ===================================================== */

/* ---- Selbst gehostete Schriften (DSGVO-konform, statt Google-Fonts-CDN) ---- */
/* latin-ext */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: url('fonts/inter-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: url('fonts/inter-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* latin-ext */
@font-face {
  font-family: 'Kumbh Sans';
  font-style: normal;
  font-weight: 700 800;
  font-display: swap;
  src: url('fonts/kumbh-sans-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Kumbh Sans';
  font-style: normal;
  font-weight: 700 800;
  font-display: swap;
  src: url('fonts/kumbh-sans-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* Handschrift (Caveat) für Zitate – latin, OFL-Lizenz */
@font-face {
  font-family: 'Caveat';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('fonts/caveat-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

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

:root {
  /* Farbschema: Royal (Indigoblau) mit Citrus-Orange */
  --orange:     #F07D1A;
  --orange-lt:  #F5A048;
  --orange-pale:#FEF0E4;
  --navy:       #171592;
  --gold:       #F07D1A;
  --orange-rgb: 240,125,26;
  --grad-start: #171592;
  --grad-end:   #3A34D2;
  --card-bg:    #FEF5EA;
  --white:      #FFFFFF;
  --off-white:  #F9F7F4;
  --gray-100:   #F3F4F6;
  --gray-200:   #E5E7EB;
  --gray-500:   #6B7280;
  --gray-700:   #374151;
  --text:       #1F2937;

  --font-serif: 'Kumbh Sans', system-ui, sans-serif;
  --font-sans:  'Inter', system-ui, sans-serif;

  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --radius-xl:  32px;

  --shadow-md:  0 4px 16px rgba(0,0,0,.10);
  --shadow-lg:  0 12px 40px rgba(0,0,0,.14);

  --max-width: 1200px;
  --section-pad: 96px 24px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ---- Typography helpers ---- */
.text-accent { color: var(--orange); }

/* =====================================================
   THEME BAR
   ===================================================== */
/* =====================================================
   NAVIGATION
   ===================================================== */
.nav-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: linear-gradient(180deg, rgba(255,255,255,.97), rgba(255,255,255,.90));
  backdrop-filter: blur(12px);
  transition: box-shadow .3s;
}
.nav-header.scrolled {
  box-shadow: 0 6px 24px rgba(var(--orange-rgb), .14), 0 2px 8px rgba(0,0,0,.06);
}

.nav-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}
.nav-logo-img {
  height: 52px;
  width: 52px;
  border-radius: 10px;
  object-fit: cover;
  display: block;
}
.nav-logo-labels {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.nav-logo-text {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: .12em;
  color: var(--navy);
  line-height: 1.2;
}
.nav-logo-sub {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .04em;
  color: var(--gray-500);
  line-height: 1.2;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-link {
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-size: 16px;
  font-weight: 500;
  color: var(--gray-700);
  transition: color .2s, background .2s;
}
.nav-link:hover { color: var(--orange); background: var(--orange-pale); }

.nav-cta {
  margin-left: 8px;
  padding: 10px 20px;
  background: var(--orange);
  color: var(--white);
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  transition: background .2s, transform .2s;
}
.nav-cta:hover { background: var(--orange-lt); transform: translateY(-1px); }

/* Kräftiger Farbverlaufs-Streifen als untere Kante */
.nav-header::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--grad-start), var(--orange), var(--grad-end));
  box-shadow: 0 2px 12px rgba(var(--orange-rgb), .30);
}
/* Markenname als Farbverlauf */
.nav-logo-text {
  background: linear-gradient(90deg, var(--navy), var(--orange));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
/* Nav-Links: einlaufende Unterstreichung statt Flächen-Hover */
.nav-link { position: relative; }
.nav-link::after {
  content: "";
  position: absolute;
  left: 14px; right: 14px; bottom: 3px;
  height: 2px;
  background: var(--orange);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}
.nav-link:hover { background: transparent; }
.nav-link:hover::after { transform: scaleX(1); }
/* CTA: Farbverlauf + Glow */
.nav-cta {
  background: linear-gradient(135deg, var(--orange), var(--orange-lt));
  box-shadow: 0 4px 14px rgba(var(--orange-rgb), .35);
}
.nav-cta:hover {
  box-shadow: 0 6px 22px rgba(var(--orange-rgb), .50);
  transform: translateY(-2px);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}

/* =====================================================
   SHARED HELPERS
   ===================================================== */
.section-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: var(--section-pad);
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--orange);
  background: var(--orange-pale);
  padding: 6px 16px;
  border-radius: 99px;
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--navy);
  margin-bottom: 20px;
}

.section-subtitle {
  font-size: 17px;
  color: var(--gray-500);
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ---- Buttons ---- */
.btn-primary {
  display: inline-block;
  padding: 14px 28px;
  background: var(--orange);
  color: var(--white);
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 15px;
  transition: background .2s, transform .2s, box-shadow .2s;
  box-shadow: 0 4px 14px rgba(var(--orange-rgb),.35);
}
.btn-primary:hover {
  background: var(--orange-lt);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(var(--orange-rgb),.4);
}

.btn-secondary {
  display: inline-block;
  padding: 14px 28px;
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 15px;
  transition: background .2s, color .2s, transform .2s;
}
.btn-secondary:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-outline {
  display: inline-block;
  padding: 12px 24px;
  background: transparent;
  color: var(--orange);
  border: 2px solid var(--orange);
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 15px;
  transition: background .2s, color .2s;
}
.btn-outline:hover { background: var(--orange); color: var(--white); }

.btn-outline-small {
  display: inline-block;
  padding: 8px 18px;
  background: transparent;
  color: var(--orange);
  border: 1.5px solid var(--orange);
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 600;
  margin-top: 12px;
  transition: background .2s, color .2s;
}
.btn-outline-small:hover { background: var(--orange); color: var(--white); }

.btn-white {
  display: inline-block;
  padding: 14px 32px;
  background: var(--white);
  color: var(--orange);
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 15px;
  box-shadow: var(--shadow-md);
  transition: transform .2s, box-shadow .2s;
}
.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-linkedin {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: #0A66C2;
  color: var(--white);
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 14px;
  transition: opacity .2s, transform .2s;
}
.btn-linkedin:hover { opacity: .9; transform: translateY(-1px); }

/* Platzhalter-Fläche (Calendly-Consent-Gate) */
.calendly-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--gray-100);
  border: 2px dashed var(--gray-200);
  border-radius: var(--radius-lg);
  text-align: center;
  color: var(--gray-500);
  font-size: 14px;
  overflow: hidden;
}
.hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  border-radius: 0;
  display: block;
}
.about-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* =====================================================
   HERO
   ===================================================== */
/* Bright accent colour of the active scheme, tinted to 20% */
.hero-bg {
  background: rgba(var(--orange-rgb), 0.2);
}

.hero {
  padding-top: 104px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 48px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
  padding-bottom: 53px;
}

.hero-headline {
  font-family: var(--font-serif);
  font-size: clamp(32px, 4.5vw, 54px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--navy);
  margin-bottom: 24px;
}
.hero-highlight { color: var(--orange); }

.hero-subline {
  font-size: 18px;
  color: var(--gray-500);
  max-width: 500px;
  margin-bottom: 36px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero-trust {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-700);
}
.trust-icon {
  width: 20px;
  height: 20px;
  background: var(--orange);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
}

.hero-image-wrap {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-image-placeholder {
  width: 100%;
  max-width: 460px;
  aspect-ratio: 3/4;
  border-radius: 0;
  overflow: hidden;
}
/* Zitat-Bubble im Hero: Editorial-Design von Schema 4, horizontal gespiegelt,
   rechts neben dem Hero-Bild platziert. */
.hero-card {
  position: absolute;
  bottom: 32px;
  right: -24px;
  left: auto;
  background: var(--navy);
  border-radius: 0;
  border-right: 5px solid var(--orange);
  /* gekappte Ecke oben links (gespiegeltes Schema-4-Design) */
  clip-path: polygon(26px 0, 100% 0, 100% 100%, 0 100%, 0 26px);
  padding: 22px 26px;
  box-shadow: none;
  max-width: 285px;
}
.hero-card p {
  font-family: 'Caveat', cursive;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: .01em;
  color: var(--white);
}
.hero-card small { font-size: 12px; color: var(--orange-lt); font-weight: 600; margin-top: 8px; display: block; }

/* =====================================================
   VALUES BAR
   ===================================================== */
.values-bar {
  background: var(--navy);
  padding: 3px 24px;
}
.values-container {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.value-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 3px 22px;
  color: rgba(255,255,255,.85);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .04em;
}
.value-icon { font-size: 20px; }
.value-divider {
  width: 1px;
  height: 16px;
  background: rgba(255,255,255,.2);
}

/* =====================================================
   ABOUT TEASER
   ===================================================== */
.about-teaser {
  background: var(--off-white);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 72px;
  align-items: center;
}

.about-image-wrap { position: relative; max-width: 380px; }
.about-image-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  max-width: 380px;
  border-radius: 0;
  overflow: hidden;
}
.about-image-second {
  margin-top: 40px;
  position: relative;
  max-width: 380px;
}
.about-photo-second {
  width: 100%;
  height: auto;
  display: block;
}
.about-lead {
  font-size: 18px;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 16px;
  line-height: 1.6;
}
.about-text {
  color: var(--gray-700);
  margin-bottom: 28px;
}

.about-cv { margin-bottom: 32px; }
.about-cv .timeline { margin-bottom: 0; }
.about-cv .timeline-title { font-size: 18px; margin-bottom: 20px; }

.about-quals {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 32px;
}
.about-quals-block {}
.quals-title {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--navy);
  margin-bottom: 8px;
}
.quals-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.quals-list li {
  font-size: 14px;
  color: var(--gray-700);
  padding-left: 14px;
  position: relative;
}
.quals-list li::before {
  content: '·';
  position: absolute;
  left: 4px;
  color: var(--orange);
  font-weight: 700;
}
.quals-tags {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.7;
}

.about-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

/* =====================================================
   SERVICES
   ===================================================== */
/* Kartenbereich in derselben Fläche wie die "Über mich"-Sektion.
   Kopfbereich und Band überdecken diese Farbe mit ihrem Orange. */
.services { background: var(--off-white); }

/* Zukunftsmut-Band – orange Vollbreite (wie .hero-bg) */
/* Kopfbereich in derselben Orange-Fläche wie das Band darunter,
   damit das Orange bis an den grauen Abschnitt darüber reicht */
.services-head-bg {
  background: rgba(var(--orange-rgb), 0.2);
  /* flow-root hält den margin-bottom des Headers innerhalb der Fläche,
     sonst entsteht ein weißer Spalt zum Band darunter */
  display: flow-root;
}
.section-container.services-head { padding-bottom: 0; }
.section-container.services-head .section-header { margin-bottom: 28px; }
.section-container.services-body { padding-top: 72px; }

.zm-band {
  background: rgba(var(--orange-rgb), 0.2);
  padding: 44px 0 88px;
}
/* Innenabstand am Inhalt (nicht am Band), damit die Breite bei
   box-sizing: border-box exakt der von .section-container entspricht */
.zm-band-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}
.zm-band-top {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: center;
  margin-bottom: 64px;
}
.zm-band-img {
  width: 100%;
  height: 100%;
  min-height: 380px;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
  display: block;
}
.zm-band-title {
  font-family: var(--font-serif);
  font-size: 34px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--navy);
  margin-bottom: 20px;
}
.zm-band-text p {
  color: var(--gray-700);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 16px;
}
.zm-band-text .zm-band-lead {
  font-family: var(--font-serif);
  font-size: 21px;
  font-weight: 700;
  line-height: 1.35;
  color: var(--navy);
  margin: 28px 0 0;
}
.zm-levels {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}
.zm-level {
  border-top: 3px solid rgba(var(--orange-rgb), .45);
  padding-top: 24px;
}
.zm-level-num {
  display: block;
  font-family: var(--font-serif);
  font-size: 38px;
  font-weight: 800;
  line-height: 1;
  color: var(--orange);
  margin-bottom: 14px;
}
.zm-level h4 {
  font-family: var(--font-serif);
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--navy);
  margin-bottom: 4px;
}
.zm-level-sub {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--orange);
  margin-bottom: 12px;
}
.zm-level p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--gray-700);
}
/* ohne blaues Feld – Typografie wie .zm-band-lead bzw. .text-accent */
.zm-outcome {
  margin-top: 64px;
  padding: 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
}
.zm-outcome-text p {
  font-family: var(--font-serif);
  font-size: 21px;
  font-weight: 700;
  line-height: 1.35;
  color: var(--navy);
}
/* Schlusssatz bleibt im Akzent-Orange */
.zm-outcome-text p strong { color: var(--orange); }
.zm-outcome .btn-primary { flex-shrink: 0; }

/* 4 service cards */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(6, auto);
  column-gap: 24px;
  row-gap: 0;
}

.service-card {
  background: rgba(var(--orange-rgb), 0.2);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--gray-200);
  transition: transform .25s, box-shadow .25s, border-color .25s;
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 6;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--orange);
}
.service-card-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 16px;
}
.service-type {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--orange);
  background: var(--orange-pale);
  padding: 4px 10px;
  border-radius: 99px;
}
.service-card h3 {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--navy);
  margin-bottom: 12px;
  text-align: center;
}
.service-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  margin-bottom: 16px;
}

.service-desc {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.6;
  margin-bottom: 20px;
}
.service-includes { margin-bottom: 16px; }
.includes-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--gray-700);
  margin-bottom: 8px;
}
.service-includes ul {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.service-includes li {
  font-size: 13px;
  color: var(--gray-700);
  padding-left: 14px;
  position: relative;
}
.service-includes li::before {
  content: '·';
  position: absolute;
  left: 4px;
  color: var(--orange);
  font-weight: 700;
}
/* .service-result-tag teilt sich das Tag-Design mit .keynote-tags (siehe unten).
   In den schmalen Karten zusätzlich zentriert und mit etwas mehr Abstand,
   damit die Pillen einzeln lesbar bleiben und Umbrüche ausgewogen wirken. */
.service-card .service-result-tag {
  justify-content: center;
  gap: 8px;
  align-content: center;
}

/* =====================================================
   TESTIMONIALS
   ===================================================== */
/* Bereich: Akzent-/Textfarbe (var --orange); Karten: dunkelblau (var --navy) */
/* heller Orangeton wie im Hero-Bereich; Überschrift nutzt die
   Standardfarben (Navy + Akzent) wie in den übrigen Sektionen */
.testimonials { background: rgba(var(--orange-rgb), 0.2); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 24px;
}

.testimonial-card {
  background: var(--navy);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: transform .25s;
  display: flex;
  flex-direction: column;
}
.testimonial-card:hover { transform: translateY(-4px); }
.testimonial-highlight {
  position: relative;
}

.testimonial-stars {
  color: var(--gold);
  font-size: 16px;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.testimonial-card blockquote {
  flex-grow: 1;
  font-size: 15px;
  color: rgba(255,255,255,.85);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 24px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-avatar-img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid rgba(255,255,255,0.2);
}
.testimonial-author strong { display: block; font-size: 14px; color: var(--white); }
.testimonial-author span { font-size: 12px; color: rgba(255,255,255,.5); }

/* =====================================================
   KEYNOTES
   ===================================================== */
.keynotes { background: var(--off-white); }

.keynotes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.keynote-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--gray-200);
  transition: transform .25s, box-shadow .25s;
  position: relative;
  overflow: hidden;
}
.keynote-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.keynote-number {
  font-family: var(--font-serif);
  font-size: 48px;
  font-weight: 900;
  color: var(--orange-pale);
  line-height: 1;
  margin-bottom: 16px;
  position: absolute;
  top: 20px;
  right: 24px;
}
.keynote-card h3 {
  font-family: var(--font-serif);
  font-size: 19px;
  color: var(--navy);
  margin-bottom: 4px;
  padding-right: 50px;
}
.keynote-subtitle {
  font-size: 13px;
  color: var(--orange);
  font-weight: 600;
  margin-bottom: 14px;
}
.keynote-card p {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.6;
  margin-bottom: 20px;
}
.keynote-tags,
.service-result-tag {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.keynote-tags span,
.service-result-tag span {
  font-size: 11px;
  font-weight: 600;
  color: var(--navy);
  background: var(--gray-100);
  padding: 4px 10px;
  border-radius: 99px;
}

.keynotes-cta {
  text-align: center;
}
/* Typografie wie .zm-band-lead ("Drei Ebenen. Ein Ziel:") im Coaching-Bereich */
.keynotes-cta p {
  font-family: var(--font-serif);
  font-size: 21px;
  font-weight: 700;
  line-height: 1.35;
  color: var(--navy);
  margin-bottom: 20px;
}

/* =====================================================
   STORY / ÜBER MICH (DETAIL)
   ===================================================== */
/* heller Orangeton wie im Hero-Bereich */
.story { background: rgba(var(--orange-rgb), 0.2); }

.story-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 72px;
  align-items: start;
}

.story-lead {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 20px;
  line-height: 1.4;
  letter-spacing: -0.01em;
}
.story-text p {
  color: var(--gray-700);
  margin-bottom: 16px;
  font-size: 16px;
}

/* Timeline */
.timeline-title {
  font-family: var(--font-serif);
  font-size: 22px;
  color: var(--navy);
  margin-bottom: 28px;
}
.timeline {
  position: relative;
  padding-left: 24px;
  margin-bottom: 40px;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 8px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: var(--gray-200);
}
.timeline-item {
  position: relative;
  margin-bottom: 28px;
}
.timeline-dot {
  position: absolute;
  left: -24px;
  top: 6px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--gray-200);
  border: 2px solid var(--white);
  box-shadow: 0 0 0 2px var(--gray-200);
}
.timeline-dot-accent {
  background: var(--orange);
  box-shadow: 0 0 0 2px var(--orange-pale);
}
.timeline-year {
  font-size: 12px;
  font-weight: 700;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: .08em;
  display: block;
  margin-bottom: 4px;
}
.timeline-content p {
  font-size: 14px;
  color: var(--gray-700);
}

.story-bubble {
  background: var(--orange);
  color: var(--white);
  border-radius: var(--radius-xl);
  padding: 40px 36px;
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: -0.01em;
  box-shadow: var(--shadow-lg);
  align-self: center;
}

.story-image-wrap {
  position: relative;
  padding-bottom: 24px;
}
.story-img {
  width: 100%;
  border-radius: 0;
  object-fit: cover;
  display: block;
}
/* Formatierung wie die Hero-Bubble: Schema-4-Design, gespiegelt, rechts */
.story-image-badge {
  position: absolute;
  bottom: 56px;
  right: -16px;
  left: auto;
  background: var(--navy);
  color: var(--white);
  border-radius: 0;
  border-right: 5px solid var(--orange);
  clip-path: polygon(26px 0, 100% 0, 100% 100%, 0 100%, 0 26px);
  padding: 22px 26px;
  box-shadow: none;
  font-size: 14px;
  font-weight: 700;
  max-width: 260px;
  line-height: 1.5;
}

/* Zitat-Bubbles (Hero & Story) nutzen einheitlich das Schema-4-Design –
   siehe .hero-card und .story-image-badge oben. */

.story-books h4 {
  font-family: var(--font-serif);
  font-size: 18px;
  color: var(--navy);
  margin-bottom: 12px;
}
.book-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.book-list li {
  font-size: 14px;
  color: var(--gray-700);
  padding: 10px 16px;
  background: var(--off-white);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--orange);
}

/* =====================================================
   CTA BANNER
   ===================================================== */
.cta-banner {
  background: var(--navy);
  padding: 0 24px;
  overflow: hidden;
}
.cta-banner-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 380px 1fr;
  align-items: center;
  gap: 64px;
}
.cta-banner-image {
  align-self: stretch;
  display: flex;
  align-items: flex-end;
}
.cta-banner-img {
  width: 100%;
  height: auto;
  display: block;
}
.cta-banner-content {
  padding: 80px 0;
  text-align: left;
}
@media (max-width: 900px) {
  .cta-banner { padding: 60px 24px; }
  .cta-banner-inner { grid-template-columns: 1fr; gap: 32px; }
  .cta-banner-image { display: none; }
  .cta-banner-content { padding: 0; text-align: center; }
}
.cta-banner h2 {
  font-family: var(--font-serif);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--orange);
  margin-bottom: 16px;
}
.cta-banner p {
  font-size: 18px;
  color: rgba(255,255,255,.85);
  margin-bottom: 32px;
  line-height: 1.6;
}

/* =====================================================
   CONTACT
   ===================================================== */
.contact { background: var(--off-white); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 72px;
  align-items: start;
}

.contact-info p {
  color: var(--gray-700);
  margin-bottom: 32px;
  font-size: 16px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 32px;
}
.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.contact-item strong { display: block; font-size: 14px; color: var(--navy); font-weight: 600; }
.contact-item span,
.contact-item a { font-size: 15px; color: var(--gray-500); }
.contact-item a:hover { color: var(--orange); }

.contact-promise {
  display: flex;
  gap: 14px;
  background: var(--orange-pale);
  border-radius: var(--radius-md);
  padding: 20px;
  border: 1px solid rgba(var(--orange-rgb),.2);
}
.promise-icon { font-size: 22px; flex-shrink: 0; }
.contact-promise p { font-size: 14px; color: var(--gray-700); line-height: 1.6; margin: 0; }

.calendly-container {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-md);
}
.calendly-header { margin-bottom: 24px; }
.calendly-header h3 {
  font-family: var(--font-serif);
  font-size: 24px;
  color: var(--navy);
  margin-bottom: 8px;
}
.calendly-header p { font-size: 15px; color: var(--gray-500); }

.calendly-placeholder {
  min-height: 320px;
  gap: 16px;
  padding: 40px;
}
.calendly-icon { font-size: 48px; }
.calendly-placeholder p { font-size: 15px; color: var(--gray-700); }
.calendly-note { font-size: 13px; color: var(--gray-500); text-align: center; }

/* =====================================================
   CONTACT FORM
   ===================================================== */
.cf-section { background: var(--off-white); }
.cf-wrap { max-width: 960px; }

.cf-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  grid-template-areas:
    "photo form"
    "info  form";
  gap: 64px;
  align-items: start;
}
.cf-photo { grid-area: photo; }
.cf-info { grid-area: info; padding-top: 8px; }
.cf-form { grid-area: form; }
.cf-photo {
  width: 100%;
  display: block;
  margin-bottom: 28px;
  box-shadow: var(--shadow-md);
}

@media (max-width: 768px) {
  /* Bild auf Mobil unter das Formular */
  .cf-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "info"
      "form"
      "photo";
    gap: 40px;
  }
  .cf-photo { margin-bottom: 0; }
}

.cf-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.cf-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.cf-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--orange);
}
.cf-input {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  /* 16px verhindert das automatische Hineinzoomen von iOS Safari beim Fokus */
  font-size: 16px;
  color: var(--text);
  background: var(--white);
  transition: border-color .2s;
  outline: none;
}
.cf-input:focus { border-color: var(--orange); }
.cf-textarea {
  resize: vertical;
  min-height: 150px;
}
.cf-checkbox-wrap {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.cf-checkbox {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--orange);
  cursor: pointer;
}
.cf-checkbox-label {
  font-size: 14px;
  color: var(--gray-700);
  line-height: 1.6;
  cursor: pointer;
}

.cf-status {
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.5;
}
.cf-status.success {
  background: #f0faf0;
  color: #1a6e1a;
  border: 1px solid #a3d9a3;
}
.cf-status.error {
  background: #fff0f0;
  color: #c0392b;
  border: 1px solid #f5b7b1;
}
.cf-submit:disabled {
  opacity: .65;
  cursor: not-allowed;
  transform: none !important;
}

/* =====================================================
   FOOTER
   ===================================================== */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,.7);
}
.footer-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 64px 24px 32px;
}
.footer-main {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0;
}
/* Logo-Lockup wie im Header, für dunklen Footer eingefärbt */
.footer-logo {
  display: inline-flex;
  align-items: flex-start;
  gap: 18px;
}
.footer-logo-img {
  height: 72px;
  width: 72px;
  border-radius: 12px;
  object-fit: cover;
  display: block;
}
.footer-logo-labels {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.footer-logo-text {
  font-family: var(--font-serif);
  font-size: 25px;
  font-weight: 700;
  letter-spacing: .12em;
  color: var(--white);
  line-height: 1.2;
}
.footer-logo-sub {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .04em;
  color: rgba(255,255,255,.55);
  line-height: 1.2;
}

.footer-links h4,
.footer-contact h4 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--white);
  margin-bottom: 16px;
}
.footer-links ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 14px;
  color: rgba(255,255,255,.55);
  transition: color .2s;
}
.footer-links a:hover { color: var(--orange); }

.footer-contact p { font-size: 14px; margin-bottom: 6px; }
.footer-contact a { color: rgba(255,255,255,.55); transition: color .2s; }
.footer-contact a:hover { color: var(--orange); }

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,.35); }
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { font-size: 12px; color: rgba(255,255,255,.35); transition: color .2s; }
.footer-legal a:hover { color: var(--white); }

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 1100px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: none;
    gap: 24px;
  }
  .service-card {
    grid-row: auto;
    grid-template-rows: auto auto auto 1fr auto auto auto;
  }
  .keynotes-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    padding-top: 136px;
    text-align: center;
  }
  .hero-subline { margin: 0 auto 36px; }
  .hero-actions { justify-content: center; }
  .hero-trust { justify-content: center; }
  .hero-image-wrap { order: -1; }
  .hero-card { right: 0; left: auto; }

  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-image-wrap { max-width: 300px; margin: 0 auto; }
  .about-image-second { max-width: 300px; margin: 40px auto 0; }

  .zm-band-top { grid-template-columns: 1fr; gap: 36px; margin-bottom: 48px; }
  .zm-band-title { font-size: 27px; }
  .zm-band-img { min-height: 0; }
  .zm-levels { grid-template-columns: 1fr; gap: 36px; }
  .zm-outcome { flex-direction: column; align-items: flex-start; padding: 0; }

  .testimonials-grid { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto 24px; }

  .story-grid { grid-template-columns: 1fr; gap: 40px; }

  .contact-grid { grid-template-columns: 1fr; gap: 40px; }

  .nav-toggle { display: flex; }
  .nav-menu {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 16px;
    border-bottom: 1px solid var(--gray-200);
    box-shadow: var(--shadow-md);
    gap: 4px;
  }
  .nav-menu.open { display: flex; }
  .nav-cta { margin-left: 0; width: 100%; text-align: center; }
}

@media (max-width: 640px) {
  :root { --section-pad: 64px 20px; }

  .zm-band-inner { padding: 0 20px; }

  .values-container { gap: 0; }
  .value-item { padding: 4px 12px; font-size: 12px; }
  .value-divider { display: none; }

  .services-grid { grid-template-columns: 1fr; }
  .keynotes-grid { grid-template-columns: 1fr; }

  .footer-main { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* =====================================================
   LEGAL PAGES (Datenschutz, Impressum)
   ===================================================== */
.legal-container {
  max-width: 760px;
  margin: 0 auto;
  padding: 72px 24px 96px;
}
.legal-title {
  font-family: var(--font-serif);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--navy);
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 2px solid var(--gray-200);
}
.legal-container h2 {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  margin-top: 40px;
  margin-bottom: 12px;
}
.legal-container p {
  color: var(--gray-700);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 16px;
}
.legal-container a {
  color: var(--orange);
  text-decoration: underline;
}
.legal-container a:hover {
  color: var(--orange-lt);
}

/* =====================================================
   PROFIL-SEITE
   ===================================================== */
.profile-intro {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 32px;
  align-items: start;
  margin-bottom: 8px;
}
.profile-figure { margin: 0; }
.profile-figure img {
  width: 100%;
  display: block;
  border-radius: 0;
  box-shadow: var(--shadow-lg);
}
.profile-figure figcaption {
  margin-top: 12px;
  font-size: 13px;
  line-height: 1.6;
  color: var(--gray-500);
}
.profile-figure figcaption a {
  display: inline-block;
  font-weight: 600;
  margin-bottom: 4px;
}
.legal-container .profile-lead {
  font-size: 19px;
  line-height: 1.7;
  color: var(--navy);
  font-weight: 500;
}
.profile-facts {
  list-style: none;
  margin: 0;
  padding: 0;
}
.profile-facts li {
  display: flex;
  gap: 16px;
  padding: 10px 0;
  border-bottom: 1px solid var(--gray-200);
  font-size: 15px;
  color: var(--gray-700);
  line-height: 1.6;
}
.profile-facts li strong {
  flex: 0 0 180px;
  color: var(--navy);
}
.legal-container .profile-list {
  margin: 0 0 16px;
  padding-left: 20px;
  color: var(--gray-700);
  font-size: 16px;
  line-height: 1.8;
}
.legal-container .profile-list li { margin-bottom: 8px; }

@media (max-width: 640px) {
  .profile-intro { grid-template-columns: 1fr; gap: 24px; }
  .profile-figure img { max-width: 280px; }
  .profile-facts li { flex-direction: column; gap: 2px; }
  .profile-facts li strong { flex: none; }
}

/* =====================================================
   SCROLL ANIMATIONS
   ===================================================== */
.fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .6s ease, transform .6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
