/* ============================================================
   B&P MENTORING — Design-System 2026
   Farben: PHONOCODE (hell) · Schriften: Instrument Serif / Sans
   Diese Datei gilt für ALLE Seiten. Farbe nur hier ändern.
   ============================================================ */

:root {
  /* --- Grundflächen --- */
  --bg:          #FBF9FF;
  --bg2:         #F4F0FC;
  --panel:       #FFFFFF;
  --panel2:      #F8F5FE;

  /* --- Linien --- */
  --line:        rgba(109, 60, 201, 0.16);
  --line-soft:   rgba(109, 60, 201, 0.09);
  --line-strong: rgba(109, 60, 201, 0.32);

  /* --- Marke: Violett-Spektrum --- */
  --violett:      #6d3cc9;
  --violett-tief: #4a248f;
  --violett-hell: #8b5cf6;
  --violett-soft: #a78bfa;

  /* --- CTA: Pink --- */
  --pink:      #d92f72;
  --pink-hell: #e0407f;

  /* --- Akzent --- */
  --gold: #f0a92b;

  /* --- Schriftfarben --- */
  --ink:      #1a1230;
  --ink-soft: #453a63;
  --muted:    #6b5f8c;

  /* --- Dunkel --- */
  --nacht:  #16112e;
  --nacht2: #221947;

  --serif: 'Instrument Serif', Georgia, serif;
  --sans:  'Instrument Sans', system-ui, -apple-system, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.7;
  font-weight: 400;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
body.menu-open { overflow: hidden; }

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: 0.005em;
}
em { font-style: italic; }

/* ============================================================
   SPEKTRUM-BAND
   ============================================================ */
.spectrum {
  height: 4px;
  width: 100%;
  background: linear-gradient(90deg,
    #3a2472 0%, #6d3cc9 28%, #8b5cf6 52%, #e0407f 78%, #f0a92b 100%);
}
.spectrum-inline {
  height: 6px;
  border-radius: 100px;
  max-width: 420px;
  background: linear-gradient(90deg,
    #3a2472 0%, #6d3cc9 28%, #8b5cf6 52%, #e0407f 78%, #f0a92b 100%);
}

/* ============================================================
   NAVIGATION
   ============================================================ */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(251, 249, 255, 0.88);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line-soft);
}
.nav-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 1.1rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo { display: flex; align-items: center; text-decoration: none; }
.logo img { height: 40px; width: auto; display: block; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.2rem;
  list-style: none;
}
.nav-links a {
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
  text-decoration: none;
  transition: color 0.25s ease;
}
.nav-links a:hover,
.nav-links a.active { color: var(--violett); }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: var(--pink);
  color: #fff !important;
  padding: 0.62rem 1.15rem;
  border-radius: 100px;
  font-size: 0.74rem !important;
  letter-spacing: 0.08em !important;
  font-weight: 600 !important;
  transition: background 0.25s ease, transform 0.25s ease;
}
.nav-cta:hover { background: var(--pink-hell); transform: translateY(-1px); color: #fff !important; }

.hamburger {
  display: none;
  width: 46px; height: 42px;
  background: rgba(109, 60, 201, 0.07);
  border: 1.5px solid var(--line-strong);
  border-radius: 8px;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: background 0.25s ease;
}
.hamburger span {
  display: block;
  width: 20px; height: 2px;
  background: var(--violett);
  border-radius: 2px;
  transition: transform 0.35s cubic-bezier(.2,.8,.2,1);
}
.hamburger.open span:nth-child(1) { transform: translateY(4px) rotate(45deg); }
.hamburger.open span:nth-child(2) { transform: translateY(-4px) rotate(-45deg); }

.menu-backdrop {
  position: fixed; inset: 0;
  background: rgba(26, 18, 48, 0.28);
  z-index: 98;
  opacity: 0; pointer-events: none;
  transition: opacity 0.35s ease;
}
.menu-backdrop.open { opacity: 1; pointer-events: auto; }

/* ============================================================
   BAUSTEINE
   ============================================================ */
.container { max-width: 1240px; margin: 0 auto; }
.container-narrow { max-width: 880px; margin: 0 auto; }

main { flex: 1; }

.kicker {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--violett);
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 1.4rem;
}
.kicker::before {
  content: '';
  width: 34px; height: 1px;
  background: linear-gradient(90deg, var(--violett), transparent);
}
.kicker.center { justify-content: center; }
.kicker.center::before { display: none; }
.kicker.light { color: var(--violett-soft); }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.95rem 1.7rem;
  font-family: var(--sans);
  font-size: 0.83rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-decoration: none;
  border-radius: 100px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.btn-primary { background: var(--pink); color: #fff; }
.btn-primary:hover {
  background: var(--pink-hell);
  transform: translateY(-2px);
  box-shadow: 0 14px 30px -12px rgba(217, 47, 114, 0.6);
}
.btn-secondary {
  color: var(--violett);
  border-color: var(--line-strong);
  background: transparent;
}
.btn-secondary:hover {
  border-color: var(--violett);
  background: rgba(109, 60, 201, 0.06);
  transform: translateY(-2px);
}
.btn-arrow { transition: transform 0.3s; }
.btn:hover .btn-arrow { transform: translateX(4px); }

.textlink {
  color: var(--violett);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-decoration: none;
  border-bottom: 1.5px solid var(--line-strong);
  padding-bottom: 3px;
  transition: all 0.3s;
}
.textlink:hover { color: var(--violett-tief); border-color: var(--violett); }

.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  padding: 2.5rem 0;
  max-width: 880px;
  margin: 0 auto;
}
.divider::before, .divider::after {
  content: ''; flex: 1; height: 1px; background: var(--line-soft);
}
.divider-symbol {
  font-family: var(--serif);
  font-style: italic;
  color: var(--violett-hell);
  font-size: 1.5rem;
}

/* ============================================================
   UNTERSEITEN — Kopfbereich
   ============================================================ */
.page-hero { padding: 9rem 3rem 3.5rem; position: relative; overflow: hidden; }
.page-hero::before {
  content: '';
  position: absolute;
  top: -18%; right: -10%;
  width: 560px; height: 560px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.14) 0%, transparent 68%);
  pointer-events: none;
}
.page-hero > * { position: relative; z-index: 2; }

.breadcrumb {
  max-width: 1240px;
  margin: 0 auto 1.6rem;
  font-family: var(--sans);
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.breadcrumb a { color: var(--violett); text-decoration: none; transition: color 0.3s; }
.breadcrumb a:hover { color: var(--violett-tief); }
.breadcrumb .sep { opacity: 0.45; }

.page-hero-content { max-width: 1240px; margin: 0 auto; }
.page-hero-content.center { text-align: center; max-width: 1000px; }
.page-hero-content.center .kicker { justify-content: center; }
.page-hero-content.center .kicker::before { display: none; }

.page-hero h1 {
  font-size: clamp(2.8rem, 6.5vw, 5.4rem);
  color: var(--ink);
  margin-bottom: 1.3rem;
}
.page-hero h1 em {
  background: linear-gradient(90deg, var(--violett), var(--violett-hell) 55%, var(--pink-hell));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.page-hero h1 .reg {
  font-size: 0.36em;
  vertical-align: super;
  font-style: normal;
  color: var(--violett-hell);
  margin-left: 0.25em;
  -webkit-text-fill-color: var(--violett-hell);
}
.page-hero-sub {
  font-size: 1.15rem;
  line-height: 1.65;
  color: var(--ink-soft);
  max-width: 640px;
}
.page-hero-content.center .page-hero-sub { margin-left: auto; margin-right: auto; }

.page-hero-grid {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 4.5rem;
  align-items: end;
}

/* Portrait mit Rahmen */
.portrait-wrapper { position: relative; padding: 22px; }
.portrait-wrapper::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 1.5px solid var(--line-strong);
  border-radius: 10px;
  transform: translate(14px, 14px);
}
.portrait {
  aspect-ratio: 4/5;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  z-index: 2;
  background: var(--panel2);
}
.portrait img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* ============================================================
   DUNKLE FEATURE-BOX
   ============================================================ */
.dark-frame {
  background: linear-gradient(150deg, var(--nacht2), var(--nacht));
  border-radius: 20px;
  padding: 5rem 4rem;
  position: relative;
  overflow: hidden;
  color: #fff;
  max-width: 1240px;
  margin: 0 auto;
}
.dark-frame::before {
  content: '';
  position: absolute;
  top: -30%; right: -10%;
  width: 620px; height: 620px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.30) 0%, transparent 66%);
  pointer-events: none;
}
.dark-frame::after {
  content: '';
  position: absolute;
  bottom: -40%; left: -8%;
  width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(224, 64, 127, 0.22) 0%, transparent 68%);
  pointer-events: none;
}
.dark-frame > * { position: relative; z-index: 2; }
.dark-frame h2 { color: #fff; }
.dark-frame h2 em {
  background: linear-gradient(90deg, var(--violett-soft), var(--pink-hell), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.dark-frame p { color: rgba(255, 255, 255, 0.82); }
.dark-frame b { color: #fff; font-weight: 600; }

/* ============================================================
   TEXT-SEKTIONEN (Rechtstexte, Fliesstext)
   ============================================================ */
.textblock { padding: 2.4rem 0; border-top: 1px solid var(--line-soft); position: relative; }
.textblock:last-child { border-bottom: 1px solid var(--line-soft); }
.textblock h2 {
  font-size: 1.8rem;
  margin-bottom: 1.3rem;
  color: var(--ink);
}
.textblock h2 em { color: var(--violett); }
.textblock p {
  color: var(--ink-soft);
  font-size: 0.98rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}
.textblock p:last-child { margin-bottom: 0; }
.textblock p strong { color: var(--ink); font-weight: 600; }
.textblock a {
  color: var(--violett);
  text-decoration: none;
  border-bottom: 1px solid var(--line-strong);
  transition: all 0.3s;
}
.textblock a:hover { color: var(--violett-tief); border-color: var(--violett); }

.textblock ul { list-style: none; margin: 1rem 0 1.4rem; }
.textblock ul li {
  padding: 0.35rem 0 0.35rem 1.4rem;
  position: relative;
  color: var(--ink-soft);
  font-size: 0.98rem;
  line-height: 1.75;
}
.textblock ul li::before {
  content: '';
  position: absolute;
  left: 0.15rem; top: 1rem;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--violett-hell);
}
.textblock ul li strong { color: var(--ink); font-weight: 600; }

.section-num {
  position: absolute;
  top: 2.7rem; left: -3.4rem;
  font-family: var(--serif);
  font-style: italic;
  color: var(--violett-soft);
  font-size: 1rem;
}

.data-grid { display: grid; grid-template-columns: 200px 1fr; gap: 0.9rem 2.4rem; }
.data-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--violett);
  padding-top: 0.2rem;
}
.data-value { color: var(--ink); font-size: 0.96rem; line-height: 1.6; }
.data-value a { color: var(--ink); border-bottom: 1px solid var(--line-strong); text-decoration: none; }
.data-value a:hover { color: var(--violett); }
.data-value-note { color: var(--muted); font-size: 0.85rem; font-style: italic; }

.toc {
  margin: 1.5rem 0 3rem;
  padding: 1.8rem 2.2rem;
  background: var(--panel);
  border: 1px solid var(--line-soft);
  border-left: 3px solid var(--violett-hell);
  border-radius: 12px;
}
.toc-title {
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--violett);
  margin-bottom: 0.9rem;
}
.toc ol { counter-reset: tocnum; list-style: none; column-count: 2; column-gap: 2rem; }
.toc ol li {
  counter-increment: tocnum;
  padding: 0.28rem 0;
  font-size: 0.9rem;
  break-inside: avoid;
}
.toc ol li::before {
  content: counter(tocnum, decimal-leading-zero) ".";
  color: var(--violett-soft);
  margin-right: 0.6rem;
  font-family: var(--serif);
  font-style: italic;
}
.toc ol li a { color: var(--ink-soft); text-decoration: none; transition: color 0.3s; }
.toc ol li a:hover { color: var(--violett); }

.contact-box {
  background: var(--panel);
  border: 1px solid var(--line-soft);
  border-left: 3px solid var(--violett-hell);
  border-radius: 12px;
  padding: 1.5rem 1.8rem;
  margin: 1.4rem 0;
}
.contact-box p { margin: 0; color: var(--ink); font-size: 0.95rem; }

/* ============================================================
   FINALE CTA-BOX
   ============================================================ */
.final-cta { padding: 5rem 3rem 7rem; }
.final-cta-frame {
  max-width: 900px;
  margin: 0 auto;
  background: var(--panel);
  border: 1px solid var(--line-soft);
  border-radius: 20px;
  padding: 4.5rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-cta-frame::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, #3a2472, #6d3cc9 28%, #8b5cf6 52%, #e0407f 78%, #f0a92b);
}
.final-cta-content { max-width: 640px; margin: 0 auto; position: relative; z-index: 2; }
.final-cta h2 { font-size: clamp(2rem, 4.4vw, 3.2rem); margin-bottom: 1.3rem; }
.final-cta h2 em { color: var(--violett); }
.final-cta p {
  color: var(--ink-soft);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 2.4rem;
  max-width: 520px;
  margin-left: auto; margin-right: auto;
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--nacht);
  color: rgba(255, 255, 255, 0.7);
  padding: 5rem 3rem 2rem;
  margin-top: auto;
}
.footer-grid {
  max-width: 1240px;
  margin: 0 auto 3rem;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr;
  gap: 4rem;
}
.footer-brand .logo img { height: 52px; margin-bottom: 1.2rem; }
.footer-brand p { font-size: 0.88rem; line-height: 1.7; max-width: 320px; opacity: 0.75; }
.footer-col h4 {
  font-family: var(--sans);
  color: var(--violett-soft);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  margin-bottom: 1.3rem;
}
.footer-col ul { list-style: none; column-count: 1; }
.footer-col li { margin-bottom: 0.6rem; padding: 0; }
.footer-col li::before { content: none; }
.footer-col a {
  color: rgba(255, 255, 255, 0.68);
  text-decoration: none;
  font-size: 0.88rem;
  border-bottom: none;
  transition: color 0.3s;
}
.footer-col a:hover { color: var(--violett-soft); }
.footer-address {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.88rem;
  line-height: 1.7;
  margin-bottom: 1.1rem;
  font-style: normal;
}
.footer-contact-list { margin-bottom: 1.4rem; }
.footer-contact-list li { margin-bottom: 0.35rem; }
.footer-legal {
  padding-top: 1.1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  gap: 1.4rem;
}
.footer-legal li { margin-bottom: 0; }
.footer-legal a { font-size: 0.75rem; }

.footer-bridge {
  max-width: 1240px;
  margin: 0 auto;
  padding: 1.8rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  text-align: center;
}
.footer-bridge-label {
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--violett-soft);
  margin-bottom: 0.6rem;
}
.footer-bridge a {
  color: #fff;
  text-decoration: none;
  font-family: var(--serif);
  font-size: 1.6rem;
  font-style: italic;
  transition: color 0.3s;
}
.footer-bridge a:hover { color: var(--violett-soft); }
.footer-bridge-meta {
  display: block;
  margin-top: 0.4rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}

.footer-bottom {
  max-width: 1240px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.5);
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
}

/* ============================================================
   RESPONSIVE — gilt für alle Seiten
   ============================================================ */
@media (max-width: 1000px) {
  .nav-inner { padding: 0.9rem 1.5rem; }
  .nav-links {
    position: fixed;
    top: 68px; right: 16px;
    width: 290px;
    max-width: calc(100vw - 32px);
    flex-direction: column;
    align-items: stretch;
    gap: 0.25rem;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid var(--line);
    border-radius: 14px;
    box-shadow: 0 20px 50px -18px rgba(26, 18, 48, 0.3);
    padding: 0.6rem;
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s cubic-bezier(.2,.8,.2,1), opacity 0.3s;
    z-index: 101;
  }
  .nav-links.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav-links li { width: 100%; }
  .nav-links a {
    display: block;
    padding: 0.85rem 1rem;
    border-radius: 9px;
    font-size: 0.76rem;
    color: var(--ink);
  }
  .nav-links a:hover { background: var(--violett); color: #fff; }
  .nav-cta { justify-content: center; margin-top: 0.35rem; }
  .hamburger { display: flex; }

  .page-hero { padding: 7rem 1.5rem 2.5rem; }
  .page-hero-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .portrait-wrapper { max-width: 340px; margin: 0 auto; }

  .dark-frame { padding: 3rem 1.8rem; border-radius: 16px; }
  .toc ol { column-count: 1; }
  .data-grid { grid-template-columns: 1fr; gap: 0.2rem 0; }
  .data-label { padding-top: 0; margin-bottom: 0.15rem; }
  .data-value { margin-bottom: 1.1rem; }
  .section-num { display: none; }

  .final-cta { padding: 4rem 1.5rem 5rem; }
  .final-cta-frame { padding: 3rem 1.5rem; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.2rem; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
}

@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; gap: 2.4rem; }
  footer { padding: 4rem 1.5rem 2rem; }
}
