/* =============================================
   FONTS
============================================= */
@font-face {
  font-family: 'ClashDisplay';
  src: url('../assets/fonts/ClashDisplay-Variable.woff2') format('woff2');
  font-weight: 200 700;
  font-display: swap;
}

@font-face {
  font-family: 'Honey';
  src: url('../assets/fonts/HoneyDemo-Light.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

/* =============================================
   VARIABLES
============================================= */
:root {
  --terracotta: #D85A30;
  --lila: #7F77DD;
  --pink: #D4537E;
  --green: #1D9E75;
  --warmgray: #888780;

  --bg-cream: #f8f3ed;
  --bg-blue: #c5edfa;
  --bg-mint: #e5f3ec;
  --bg-lila-light: #ede9fc;
  --bg-peach: #fdf0e7;
  --bg-dark: #35324c;
  --bg-deep: #2d2a44;
  --bg-block: #44415c;

  --palette-purple: #5A20CA;
  --palette-sage: #CBD9CA;
  --palette-sand: #E8D8A5;
  --palette-lime: #D1EF99;
  --palette-lime-bright: #E2FB61;
  --palette-lavender: #DEB0E9;

  --text-dark: #1a1829;
  --text-mid: #4a4760;
  --text-muted: #888780;
  --text-light: #f5f1ec;

  --font-display: 'ClashDisplay', 'DM Sans', system-ui, sans-serif;
  --font-serif: 'Honey', Georgia, serif;
  --font-quote: Georgia, 'Palatino Linotype', serif;

  --max-w: 1200px;
  --section-pad: 6rem 2rem;

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-pill: 100px;

  --ease-organic: cubic-bezier(0.16, 1, 0.3, 1);
}

/* =============================================
   RESET & BASE
============================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; overflow-x: clip; }
body {
  font-family: var(--font-display);
  color: var(--text-dark);
  background: var(--bg-cream);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* =============================================
   UTILITIES
============================================= */
.tag {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.3em 0.85em;
  border-radius: var(--radius-pill);
  background: rgba(0,0,0,0.07);
}

.tag-row { display: flex; flex-wrap: wrap; gap: 0.5rem; }

.section-label {
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.4;
  margin-bottom: 1.25rem;
  display: block;
}

.section-headline {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.025em;
  line-height: 1.05;
  margin-bottom: 2.5rem;
}

.section-intro {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.05rem, 1.8vw, 1.4rem);
  line-height: 1.65;
  max-width: 680px;
  margin-bottom: 3.5rem;
  color: var(--text-mid);
}

/* =============================================
   COOKIE BANNER
============================================= */
#cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--text-dark);
  color: var(--text-light);
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.82rem;
  transform: translateY(100%);
  transition: transform 0.4s var(--ease-organic);
}
#cookie-banner.visible { transform: translateY(0); }
#cookie-banner p { font-family: var(--font-display); font-weight: 300; opacity: 0.7; }
#cookie-dismiss {
  flex-shrink: 0;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.25);
  color: var(--text-light);
  padding: 0.4rem 1.2rem;
  border-radius: var(--radius-pill);
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 500;
  cursor: none;
  transition: background 0.2s;
}
#cookie-dismiss:hover { background: rgba(255,255,255,0.1); }

/* =============================================
   NAVIGATION
============================================= */
#main-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.4s ease, backdrop-filter 0.4s ease, box-shadow 0.4s ease;
}
#main-nav.scrolled {
  background: rgba(248, 243, 237, 0.50);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  box-shadow: 0 1px 0 rgba(0,0,0,0.04);
}

.nav-logo {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
  color: white;
  transition: color 0.4s;
}
#main-nav.scrolled .nav-logo { color: var(--text-dark); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  list-style: none;
}
.nav-links a {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 0.82rem;
  letter-spacing: 0.01em;
  color: rgba(255,255,255,0.8);
  transition: color 0.2s;
}
.nav-links a:hover { color: white; }
#main-nav.scrolled .nav-links a { color: var(--text-mid); }
#main-nav.scrolled .nav-links a:hover { color: var(--text-dark); }

.nav-right { display: flex; align-items: center; gap: 1.25rem; }

.nav-lang {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.5);
  cursor: none;
  display: flex;
  gap: 0.25rem;
  align-items: center;
}
#main-nav.scrolled .nav-lang { color: var(--text-muted); }
.nav-lang span { padding: 0.2em 0.45em; border-radius: 4px; transition: all 0.2s; }
.nav-lang span.active { color: white; background: rgba(255,255,255,0.15); }
#main-nav.scrolled .nav-lang span.active { color: var(--text-dark); background: rgba(0,0,0,0.08); }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.3em;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 0.5rem 1.2rem;
  border-radius: var(--radius-pill);
  background: white;
  color: var(--text-dark);
  transition: transform 0.2s, box-shadow 0.2s;
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 4px 16px rgba(0,0,0,0.15); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: none;
  padding: 4px;
}
.hamburger span { display: block; width: 22px; height: 2px; background: white; border-radius: 2px; transition: background 0.3s; }
#main-nav.scrolled .hamburger span { background: var(--text-dark); }

/* =============================================
   MOBILE MENU
============================================= */
.mobile-menu {
  position: fixed; inset: 0; z-index: 99;
  background:
    radial-gradient(ellipse at 12% 18%, rgba(127,119,221,0.92) 0%, transparent 48%),
    radial-gradient(ellipse at 84% 8%,  rgba(212,83,126,0.88) 0%, transparent 42%),
    radial-gradient(ellipse at 68% 78%, rgba(216,90,48,0.82) 0%, transparent 46%),
    radial-gradient(ellipse at 14% 82%, rgba(29,158,117,0.78) 0%, transparent 38%),
    radial-gradient(ellipse at 48% 48%, rgba(212,83,126,0.35) 0%, transparent 58%),
    #b8b0f0;
  backdrop-filter: blur(0px);
  display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 2rem;
  opacity: 0; pointer-events: none;
  transition: opacity 0.35s ease;
}
.mobile-menu.open { opacity: 1; pointer-events: all; }
.mobile-menu a {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.75rem;
  color: white;
  letter-spacing: -0.01em;
}
.mobile-menu-close {
  position: fixed;
  top: 1.1rem; right: 2rem;
  background: none; border: none; color: white; font-size: 1.4rem; cursor: none; padding: 0.4rem;
  line-height: 1; z-index: 101;
  opacity: 0; pointer-events: none;
  transition: opacity 0.2s ease;
}
.mobile-menu.open ~ nav .mobile-menu-close { opacity: 1; pointer-events: all; }
body.menu-open .hamburger { opacity: 0; pointer-events: none; }
body.menu-open .mobile-menu-close { opacity: 1; pointer-events: all; }

/* ---- Custom cursor (desktop only) ---- */
@media (min-width: 769px) {
  html, body, * { cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1' height='1'/%3E") 0 0, none !important; }
  #cursor {
    position: fixed; width: 30px; height: 30px; border-radius: 50%;
    background: #f5f000; mix-blend-mode: difference;
    pointer-events: none; z-index: 99999;
    left: 0; top: 0; transform: translate(-50%, -50%);
    will-change: transform; opacity: 0;
    transition: opacity 0.15s, width 0.25s var(--ease-organic), height 0.25s var(--ease-organic);
  }
  #cursor.visible { opacity: 1; }
  #cursor.hover { width: 45px; height: 45px; }
}

/* =============================================
   HERO
============================================= */
#hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 9rem 2rem 6rem;
  overflow: hidden;
}

.hero-gradient {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 12% 18%, rgba(127,119,221,0.92) 0%, transparent 48%),
    radial-gradient(ellipse at 84% 8%,  rgba(212, 83,126,0.88) 0%, transparent 42%),
    radial-gradient(ellipse at 68% 78%, rgba(216, 90, 48,0.82) 0%, transparent 46%),
    radial-gradient(ellipse at 14% 82%, rgba( 29,158,117,0.78) 0%, transparent 38%),
    radial-gradient(ellipse at 48% 48%, rgba(212, 83,126,0.35) 0%, transparent 58%),
    #b8b0f0;
  animation: gradientPulse 14s ease-in-out infinite alternate;
}
@keyframes gradientPulse {
  0%   { filter: hue-rotate(0deg)   saturate(1);    brightness(1); }
  50%  { filter: hue-rotate(7deg)   saturate(1.08); brightness(1.02); }
  100% { filter: hue-rotate(-6deg)  saturate(0.96); brightness(0.98); }
}

.hero-grain {
  position: absolute; inset: 0; pointer-events: none;
  opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 220px 220px;
}

.hero-content { position: relative; z-index: 2; max-width: var(--max-w); margin: 0 auto; width: 100%; }

.hero-pretag {
  font-family: var(--font-display);
  font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 2rem;
}

.hero-headline {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: clamp(3.5rem, 9.5vw, 8.5rem);
  line-height: 0.93;
  letter-spacing: -0.025em;
  color: white;
  text-transform: uppercase;
  margin-bottom: 1.75rem;
}
.hero-line { display: block; white-space: nowrap; }
@media (max-width: 480px) {
  .hero-headline { font-size: 10.5vw; }
}

.hero-subheadline {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(1.15rem, 2.2vw, 1.7rem);
  color: rgba(255,255,255,0.82);
  margin-bottom: 1.75rem;
}

.hero-body {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 0.97rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.78);
  max-width: 580px;
  margin-bottom: 2.25rem;
}

.hero-tags { margin-bottom: 2.25rem; }
.hero-tags .tag { background: rgba(255,255,255,0.16); color: rgba(255,255,255,0.88); backdrop-filter: blur(6px); }

.hero-ctas { display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; margin-bottom: 3.5rem; }

.btn-primary {
  display: inline-flex; align-items: center; gap: 0.3em;
  font-family: var(--font-display); font-weight: 600; font-size: 0.92rem; letter-spacing: 0.01em;
  padding: 0.85rem 2rem; border-radius: var(--radius-pill);
  background: white; color: var(--text-dark);
  transition: transform 0.25s var(--ease-organic), box-shadow 0.25s var(--ease-organic);
}
.btn-primary:hover { transform: translateY(-2px) scale(1.02); box-shadow: 0 8px 32px rgba(0,0,0,0.2); }

.btn-ghost {
  font-family: var(--font-display); font-weight: 400; font-size: 0.92rem;
  color: rgba(255,255,255,0.78);
  display: inline-flex; align-items: center; gap: 0.4em;
  transition: color 0.2s, gap 0.25s;
}
.btn-ghost:hover { color: white; gap: 0.7em; }

.hero-footer-line {
  font-family: var(--font-display); font-weight: 300;
  font-size: 0.92rem; color: rgba(255,255,255,0.48);
}

/* =============================================
   SECTION SHARED
============================================= */
.section { position: relative; padding: var(--section-pad); overflow: visible; }

.section-inner { position: relative; z-index: 2; max-width: var(--max-w); margin: 0 auto; }

/* ---- Botanical plant animation (scroll-driven) ---- */
.plant {
  position: absolute;
  bottom: -55px;
  left: -6%;
  width: 75%;
  pointer-events: none; user-select: none; z-index: 1;
  transform-origin: bottom left;
  will-change: transform, opacity;
}
.plant img { width: 100%; height: auto; display: block; }

@media (min-width: 769px) {
  .plant { left: 14%; }
}
@media (max-width: 768px) {
  .section { overflow-x: clip; }
  .plant { width: 220%; }
  .plant img { width: 100%; height: auto; }
  .bio-text { margin-bottom: 3.5rem; }
  .facts-grid { margin-bottom: 4rem; }
  .ausbildung { margin-bottom: 4rem; }
}

/* ---- Fade-in ---- */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s var(--ease-organic), transform 0.9s var(--ease-organic);
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* =============================================
   SECTION 2, WAS DICH ERWARTET
============================================= */
#was-dich-erwartet { background: var(--bg-blue); }
#was-dich-erwartet .section-headline { color: #4f46fa; }

.values-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; margin-bottom: 1.25rem;
}
.value-card {
  background: rgba(255,255,255,0.72); border-radius: var(--radius-md); padding: 2rem; border-top: 4px solid;
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
}
.value-card-full { grid-column: 1 / -1; }
.value-card-num { display: none; }
.value-card-title { font-family: var(--font-display); font-weight: 600; font-size: 1.05rem; letter-spacing: -0.01em; margin-bottom: 0.7rem; color: #4f46fa; }
.value-card-body { font-family: var(--font-display); font-weight: 400; font-size: 1rem; line-height: 1.65; color: var(--text-mid); }

.timeline { margin: 4.5rem 0; position: relative; padding-left: 2.5rem; }
.timeline::before {
  content: '';
  position: absolute; left: 8px; top: 8px; bottom: 8px; width: 2px;
  background: linear-gradient(to bottom, var(--lila), var(--pink), var(--green));
  border-radius: 2px;
}
.timeline-item { position: relative; margin-bottom: 3.25rem; }
.timeline-item:last-child { margin-bottom: 0; }
.timeline-dot {
  position: absolute; left: -2.5rem; top: 0.3rem;
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--bg-cream); border: 3px solid; z-index: 1;
}
.timeline-phase { font-size: 0.68rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 0.4rem; }
.timeline-title { font-family: var(--font-display); font-weight: 600; font-size: 1.2rem; letter-spacing: -0.01em; margin-bottom: 0.7rem; }
.timeline-body { font-family: var(--font-display); font-weight: 400; font-size: 1rem; line-height: 1.72; color: var(--text-mid); margin-bottom: 0.9rem; max-width: 560px; }

.quote-block {
  background: rgba(120, 190, 225, 0.62); color: var(--text-dark);
  border-radius: var(--radius-lg); padding: 3.5rem;
  margin-top: 4.5rem; position: relative; overflow: hidden; z-index: 2;
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
}
.quote-block::before {
  content: '\201C'; position: absolute; top: 50%; left: 1rem; transform: translateY(-60%);
  font-family: var(--font-serif); font-size: 18rem; line-height: 0;
  opacity: 0.07; color: var(--text-dark); pointer-events: none;
}
.quote-text { font-family: var(--font-quote); font-style: italic; font-weight: 400; font-size: clamp(1.25rem, 2.5vw, 1.9rem); line-height: 1.42; position: relative; z-index: 1; }

/* =============================================
   SECTION 3, FÜR WEN
============================================= */
#fuer-wen { background: var(--bg-mint); }
#fuer-wen .section-headline { color: #08bb47; }

.audience-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; margin-bottom: 1.25rem; }
.audience-card { background: rgba(255,255,255,0.72); border-radius: var(--radius-md); padding: 2rem; border-left: 4px solid; backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); }
.audience-card-title { font-family: var(--font-display); font-weight: 600; font-size: 1.02rem; letter-spacing: -0.01em; margin-bottom: 0.7rem; color: #08bb47; }
.audience-card-body { font-family: var(--font-display); font-weight: 400; font-size: 1rem; line-height: 1.65; color: var(--text-mid); margin-bottom: 1rem; }

.and-all-others {
  background: rgba(203, 217, 202, 0.68); color: var(--text-dark); border-radius: var(--radius-md);
  padding: 2.5rem; display: flex; align-items: center; justify-content: space-between; gap: 2rem;
  margin-bottom: 1.25rem; position: relative; z-index: 2;
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
}
.and-all-others-text h3 { font-family: var(--font-display); font-weight: 700; font-size: 1.25rem; letter-spacing: -0.01em; margin-bottom: 0.7rem; }
.and-all-others-text p { font-family: var(--font-display); font-weight: 400; font-size: 1rem; line-height: 1.65; color: var(--text-mid); max-width: 560px; }
.no-gatekeeping {
  flex-shrink: 0;
  font-family: var(--font-display); font-size: 0.65rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.45em 1em; border: 1px solid rgba(0,0,0,0.15); border-radius: var(--radius-pill);
  white-space: nowrap; color: var(--text-muted);
}

.not-for { background: rgba(255,255,255,0.72); border-radius: var(--radius-md); padding: 2rem; border-left: 4px solid var(--warmgray); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); }
.not-for h4 { font-family: var(--font-display); font-weight: 600; font-size: 0.78rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--warmgray); margin-bottom: 0.65rem; }
.not-for p { font-family: var(--font-display); font-weight: 400; font-size: 1rem; line-height: 1.65; color: var(--text-mid); }

/* =============================================
   SECTION 4, ANGEBOT
============================================= */
#angebot { background: var(--bg-lila-light); }
#angebot .section-headline { color: #8017db; }

.angebot-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; margin-bottom: 1.75rem; }
.angebot-card { background: rgba(255,255,255,0.72); border-radius: var(--radius-md); padding: 2.5rem; border-top: 5px solid; backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); min-width: 0; }
.angebot-card-type { font-size: 0.65rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; opacity: 0.4; margin-bottom: 0.9rem; }
.angebot-card-title { font-family: var(--font-display); font-weight: 700; font-size: 1.25rem; letter-spacing: -0.02em; margin-bottom: 0.25rem; color: #8017db; }
.angebot-price { font-family: var(--font-display); font-weight: 700; font-size: 1.35rem; letter-spacing: -0.01em; margin-bottom: 1.1rem; color: #8017db; }
.angebot-card-body { font-family: var(--font-display); font-weight: 400; font-size: 1rem; line-height: 1.65; color: var(--text-mid); margin-bottom: 1.1rem; }

.featured-package {
  background: rgba(180, 148, 240, 0.62); color: var(--text-dark);
  border-radius: var(--radius-lg); padding: 3rem;
  margin-bottom: 1.75rem; position: relative; overflow: hidden; z-index: 2;
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
}
.featured-package::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse at 0% 100%, rgba(90,32,202,0.15) 0%, transparent 52%),
    radial-gradient(ellipse at 100% 0%, rgba(222,176,233,0.30) 0%, transparent 50%);
}
.package-badge {
  display: inline-block;
  font-family: var(--font-display); font-size: 0.68rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.55em 1.1em; border-radius: var(--radius-pill);
  background: var(--lila); color: white; margin-bottom: 1.5rem;
}
.featured-package h3 { font-family: var(--font-display); font-weight: 700; font-size: 1.75rem; letter-spacing: -0.02em; margin-bottom: 0.3rem; position: relative; z-index: 1; color: #8017db; }
.featured-package .sub { font-family: var(--font-display); font-weight: 400; font-size: 1rem; color: var(--text-dark); margin-bottom: 1.5rem; position: relative; z-index: 1; }
.featured-package .price { font-family: var(--font-display); font-weight: 700; font-size: 2.4rem; letter-spacing: -0.02em; margin-bottom: 0.4rem; position: relative; z-index: 1; color: #8017db; }
.featured-package .price-note { font-family: var(--font-display); font-weight: 400; font-size: 0.87rem; color: var(--text-dark); margin-bottom: 1.4rem; position: relative; z-index: 1; }
.featured-package p { font-family: var(--font-display); font-weight: 400; font-size: 1rem; line-height: 1.65; color: var(--text-mid); max-width: 560px; position: relative; z-index: 1; }

.an-long {
  border: 0.5px solid rgba(0,0,0,0.1);
  border-left: 3px solid var(--lila);
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.72);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  overflow: hidden;
  margin-bottom: 1.25rem;
}
.an-long-inner { padding: 1.5rem 2rem; }
.an-long-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.4rem;
}
.an-long-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #8017db;
  margin-bottom: 0.6rem;
}
.an-long-body {
  font-family: var(--font-display);
  font-size: 0.9rem;
  line-height: 1.75;
  color: var(--text-mid);
  max-width: 620px;
}
.an-long-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 0.85rem;
}
.an-long-tag {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 3px 10px;
  border: 0.5px solid rgba(0,0,0,0.12);
  border-radius: var(--radius-pill);
  color: var(--text-muted);
}

.angebot-info-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; margin-bottom: 1.75rem; }
.info-card { background: rgba(255,255,255,0.72); border-radius: var(--radius-md); padding: 1.75rem; backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); }
.info-card h4 { font-family: var(--font-display); font-weight: 600; font-size: 0.82rem; letter-spacing: 0.04em; margin-bottom: 0.5rem; color: #8017db; }
.info-card p { font-family: var(--font-display); font-weight: 400; font-size: 1rem; line-height: 1.6; color: var(--text-mid); }

.angebot-closing {
  background: rgba(180, 148, 240, 0.62); color: var(--text-dark);
  border-radius: var(--radius-lg); padding: 2.5rem 3rem;
  font-family: var(--font-quote); font-style: italic; font-weight: 400;
  font-size: clamp(1rem, 1.8vw, 1.35rem); line-height: 1.5;
  position: relative; overflow: hidden;
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  margin-bottom: 1.75rem;
}
.angebot-closing::before {
  content: '\201C'; position: absolute; top: 50%; left: 1rem; transform: translateY(-50%);
  font-family: var(--font-serif); font-size: 16rem; line-height: 1;
  opacity: 0.07; color: var(--text-dark); pointer-events: none;
}

/* =============================================
   SECTION 5, ÜBER MICH
============================================= */
#ueber-mich { background: #e079d4; color: #832086; }
#ueber-mich .section-label { color: rgba(255,255,255,0.6); }
#ueber-mich .section-headline { color: #832086; }

#ueber-mich .ueber-pronouns { color: #832086; }
#ueber-mich .identity-tags .tag { background: rgba(131,32,134,0.1); color: #832086; border-color: rgba(131,32,134,0.18); }
#ueber-mich .identity-tags .tag-accent { background: rgba(131,32,134,0.18); color: #832086; border-color: rgba(131,32,134,0.28); }
#ueber-mich .bio-text p { color: #6b1a6e; }
#ueber-mich .fact-item h5 { color: rgba(131,32,134,0.5); }
#ueber-mich .fact-item p { color: #832086; }
#ueber-mich .ausbildung > h3 { color: rgba(131,32,134,0.5); }
#ueber-mich .ausbildung-item { border-bottom-color: rgba(131,32,134,0.15); }
#ueber-mich .aus-year { color: rgba(131,32,134,0.5); }
#ueber-mich .aus-title { color: #832086; }
#ueber-mich .aus-sub { color: rgba(131,32,134,0.55); }
#ueber-mich .aus-status { background: rgba(255,255,255,0.32); color: #832086; backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); }
#ueber-mich .ueber-closing-quote { color: #efb1df; }
#ueber-mich .ueber-closing-quote p { color: #efb1df; }

.ueber-pronouns { font-size: 0.78rem; font-weight: 400; color: rgba(255,255,255,0.38); letter-spacing: 0.06em; margin-bottom: 2.25rem; }

.identity-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 3rem; }
.identity-tags .tag { background: rgba(255,255,255,0.07); color: rgba(255,255,255,0.78); border: 1px solid rgba(255,255,255,0.1); }
.identity-tags .tag-accent { background: rgba(212,83,126,0.18); color: rgba(255,255,255,0.92); border: 1px solid rgba(212,83,126,0.28); }

.ueber-columns { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; margin-bottom: 4rem; }
.ueber-col-right { position: sticky; top: 6.5rem; align-self: start; }
.ueber-portrait { width: 100%; display: block; filter: drop-shadow(0 16px 48px rgba(0,0,0,0.22)); }
.ueber-portrait-mobile { display: none; }

.bio-text { margin-bottom: 3rem; }
.bio-text p { font-family: var(--font-display); font-weight: 400; font-size: 1rem; line-height: 1.82; color: rgba(255,255,255,0.72); margin-bottom: 1.4rem; }
.bio-text p:last-child { margin-bottom: 0; }

.facts-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-bottom: 0; }
.fact-item h5 { font-size: 0.65rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.3); margin-bottom: 0.4rem; }
.fact-item p { font-family: var(--font-display); font-weight: 400; font-size: 0.88rem; color: rgba(255,255,255,0.78); }

.ausbildung { margin-bottom: 0; margin-top: 3rem; }
.ausbildung > h3 { font-size: 0.65rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.3); margin-bottom: 1.25rem; }
.ausbildung-item { display: grid; grid-template-columns: 56px 1fr auto; gap: 1rem; align-items: start; padding: 1.1rem 0; border-bottom: 1px solid rgba(255,255,255,0.06); }
.ausbildung-item:last-child { border-bottom: none; }
.aus-year { font-size: 0.75rem; font-weight: 600; color: rgba(255,255,255,0.3); padding-top: 0.1rem; }
.aus-title { font-family: var(--font-display); font-weight: 400; font-size: 0.9rem; color: rgba(255,255,255,0.8); margin-bottom: 0.18rem; }
.aus-sub { font-family: var(--font-display); font-weight: 300; font-size: 0.78rem; color: rgba(255,255,255,0.32); }
.aus-status { font-size: 0.62rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; padding: 0.3em 0.7em; border-radius: var(--radius-pill); white-space: nowrap; }
.aus-status.soon  { background: rgba(216,90,48,0.18);  color: #f0845a; }
.aus-status.planned { background: rgba(127,119,221,0.18); color: #a09ae0; }
.aus-status.active  { background: rgba(29,158,117,0.18);  color: #3dc99a; }

.ueber-closing-quote { background: #90198c; color: var(--text-dark); border-radius: var(--radius-lg); padding: 3rem; margin-top: 4rem; position: relative; overflow: hidden; backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); }
.ueber-closing-quote::before { content: '\201C'; position: absolute; top: 50%; left: 1rem; transform: translateY(-60%); font-family: var(--font-serif); font-size: 18rem; line-height: 0; opacity: 0.07; color: var(--text-dark); pointer-events: none; }
.ueber-closing-quote p { font-family: var(--font-quote); font-style: italic; font-weight: 400; font-size: clamp(1.1rem, 2vw, 1.6rem); line-height: 1.42; color: var(--text-dark); position: relative; z-index: 1; }

/* =============================================
   SECTION 6, SICHERHEIT
============================================= */
#sicherheit { background: var(--bg-peach); }

.safer-contact-title {
  font-family: var(--font-serif); font-weight: 300;
  font-size: clamp(3rem, 9vw, 7rem); letter-spacing: -0.03em; line-height: 1; text-transform: uppercase;
  margin-bottom: 3rem;
  background: linear-gradient(130deg, var(--terracotta) 0%, var(--pink) 50%, var(--lila) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

.sicherheit-intro { font-family: var(--font-display); font-weight: 400; font-size: 1rem; line-height: 1.72; color: var(--text-mid); max-width: 580px; margin-bottom: 2.75rem; }

.accordion-item { background: rgba(255,255,255,0.72); border-radius: var(--radius-md); margin-bottom: 0.7rem; overflow: hidden; backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); }
.accordion-item summary {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.4rem 1.65rem; cursor: none; list-style: none;
  font-family: var(--font-display); font-weight: 600; font-size: 0.97rem; letter-spacing: -0.01em;
}
.accordion-item summary::-webkit-details-marker { display: none; }
.accordion-chevron { width: 20px; height: 20px; transition: transform 0.3s var(--ease-organic); opacity: 0.38; flex-shrink: 0; }
.accordion-item[open] .accordion-chevron { transform: rotate(180deg); }
.accordion-body {
  padding: 0 1.65rem;
  overflow: hidden;
  transition: height 0.38s var(--ease-organic);
}
.accordion-item[open] .accordion-body {
  padding-bottom: 1.65rem;
}
.accordion-body p { font-family: var(--font-display); font-weight: 400; font-size: 1rem; line-height: 1.7; color: var(--text-mid); margin-bottom: 0.8rem; }
.accordion-body p:last-child { margin-bottom: 0; }
.accordion-body .tag-row { margin-top: 0.9rem; }

.emotional-safety { background: rgba(255, 230, 200, 0.35); color: var(--text-dark); border-radius: var(--radius-lg); padding: 2.75rem; margin: 2rem 0; position: relative; z-index: 2; backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); }
.emotional-safety h3 { font-family: var(--font-display); font-weight: 700; font-size: 1.35rem; margin-bottom: 0.9rem; letter-spacing: -0.01em; color: #d85a30; }
.emotional-safety p { font-family: var(--font-display); font-weight: 400; font-size: 1rem; line-height: 1.72; color: var(--text-mid); max-width: 560px; }

.sicherheit-closing { font-family: var(--font-display); font-weight: 400; font-size: 1rem; color: var(--text-muted); padding-top: 1.25rem; line-height: 1.65; max-width: 500px; }

/* =============================================
   SECTION 7, KONTAKT
============================================= */
#kontakt { background: #72ceba; color: #3c10ab; }
#kontakt .section-label { color: #3c10ab; opacity: 1; }
#kontakt .section-headline { color: #3c10ab; }

.kontakt-intro { font-family: var(--font-display); font-weight: 400; font-size: 1.15rem; color: rgba(60,16,171,0.65); margin-bottom: 3rem; line-height: 1.65; }

.kontakt-channels { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-bottom: 3rem; }
.kontakt-channel {
  display: inline-flex; align-items: center; gap: 0.6em;
  background: rgba(60,16,171,0.07); border: 1px solid rgba(60,16,171,0.18); border-radius: var(--radius-pill);
  padding: 0.65rem 1.4rem; font-family: var(--font-display); font-weight: 500; font-size: 0.88rem; color: rgba(60,16,171,0.85);
  transition: background 0.2s, border-color 0.2s;
}
.kontakt-channel:hover { background: rgba(60,16,171,0.13); border-color: rgba(60,16,171,0.3); }

.kontakt-form-note { font-size: 0.68rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(60,16,171,0.6); margin-bottom: 0.9rem; }
.kontakt-form { max-width: 640px; }

.form-group { margin-bottom: 0.9rem; }
.form-group label { display: block; font-size: 0.68rem; font-weight: 600; letter-spacing: 0.09em; text-transform: uppercase; color: rgba(60,16,171,1); margin-bottom: 0.45rem; }
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%; background: rgba(255,255,255,0.35); border: 1px solid rgba(60,16,171,0.2); border-radius: var(--radius-sm);
  padding: 0.8rem 1.05rem; font-family: var(--font-display); font-size: 0.9rem; font-weight: 500;
  color: #3c10ab; transition: border-color 0.2s, background 0.2s; outline: none; -webkit-appearance: none;
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
}
.form-group input::placeholder, .form-group textarea::placeholder { color: rgba(60,16,171,0.58); }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: rgba(60,16,171,0.45); background: rgba(255,255,255,0.5); }
.form-group textarea { min-height: 130px; resize: vertical; line-height: 1.65; }
.form-group select option { background: rgb(70, 130, 133); color: white; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.9rem; }

.form-submit {
  display: inline-flex; align-items: center; gap: 0.4em; margin-top: 0.9rem;
  font-family: var(--font-display); font-weight: 600; font-size: 0.92rem;
  padding: 0.85rem 2.2rem; border-radius: var(--radius-pill);
  background: #3c10ab; color: white; border: none; cursor: none;
  transition: transform 0.2s var(--ease-organic), box-shadow 0.2s var(--ease-organic);
}
.form-submit:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(60,16,171,0.28); }
.form-submit:disabled { opacity: 0.55; transform: none; box-shadow: none; cursor: wait; }

.kontakt-success { display: none; padding: 1.5rem 1.75rem; background: rgba(60,16,171,0.08); border-radius: var(--radius-md); margin-bottom: 1.5rem; color: #3c10ab; font-size: 0.95rem; line-height: 1.65; }
.kontakt-field-error { display: block; color: rgba(180,4,151,0.85); font-size: 0.75rem; margin-top: 0.3rem; min-height: 1em; }

.diskretion-note { margin-top: 2.25rem; padding: 1.4rem 1.65rem; border: 1px solid rgba(60,16,171,0.18); border-radius: var(--radius-md); font-family: var(--font-display); font-weight: 400; font-size: 0.85rem; line-height: 1.65; color: rgba(60,16,171,0.7); }

/* =============================================
   FOOTER
============================================= */
footer {
  background: #3c10ab; border-top: none;
  padding: 1.75rem 2rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
}
footer p { font-family: var(--font-display); font-size: 0.72rem; font-weight: 500; color: #72ceba; }
footer a { color: #72ceba; transition: color 0.2s; }
footer a:hover { color: #9addd1; }

/* =============================================
   LANGUAGE SWITCH
============================================= */
[data-lang="de"] .lang-en { display: none; }
[data-lang="en"] .lang-de { display: none; }

/* =============================================
   RESPONSIVE
============================================= */
@media (max-width: 900px) {
  :root { --section-pad: 5rem 1.5rem; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-cta { display: none; }
  .values-grid { grid-template-columns: 1fr; }
  .value-card-full { grid-column: 1; }
  .audience-grid { grid-template-columns: 1fr; }
  .angebot-grid { grid-template-columns: 1fr; }
  .angebot-info-row { grid-template-columns: 1fr; }
  .facts-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .and-all-others { flex-direction: column; align-items: flex-start; }
  #main-nav {
    background: rgba(20, 18, 38, 0.38);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
  }
  #main-nav.scrolled {
    background: rgba(20, 18, 38, 0.55);
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
    box-shadow: none;
  }
  #main-nav .nav-logo,
  #main-nav.scrolled .nav-logo { color: white; }
  #main-nav .nav-lang,
  #main-nav.scrolled .nav-lang { color: rgba(255,255,255,0.5); }
  #main-nav .nav-lang span.active,
  #main-nav.scrolled .nav-lang span.active { color: white; background: rgba(255,255,255,0.15); }
  #main-nav .hamburger span,
  #main-nav.scrolled .hamburger span { background: white; }
  .ueber-columns { grid-template-columns: 1fr; gap: 0; }
  .ueber-portrait-mobile { display: block; width: 65%; max-width: 260px; margin: 0 0 2rem; }
  .ueber-portrait-desktop { display: none; }
}

@media (max-width: 600px) {
  :root { --section-pad: 3.75rem 1.25rem; }
  .hero-ctas { flex-direction: column; align-items: flex-start; }
  .facts-grid { grid-template-columns: 1fr; }
  .quote-block { padding: 2.25rem 1.75rem; }
  .featured-package { padding: 1.85rem; }
  .emotional-safety { padding: 1.85rem; }
}
