/*
  ANLEITUNG FÜR FRANK:
  Hier unten stehen alle Farben der Website als "Variablen".
  Änderst du hier einen Wert, ändert er sich ÜBERALL auf der Seite.
  · --navy-…  = die dunklen Blautöne (Hintergründe)
  · --cream   = die helle Schriftfarbe / das Logo
  · --orange  = die Akzentfarbe (Buttons, Punkte, Highlights)
  Farbwerte sind Hex-Codes (#rrggbb) — neue findest du z.B. auf htmlcolorcodes.com
  Alles weiter unten in dieser Datei ist Layout/Design — im Zweifel Claude fragen.
*/
:root {
  --navy-950: #0a1120;
  --navy-900: #0e1728;
  --navy-800: #131f34;
  --navy-700: #1a2a45;
  --navy-600: #24395b;
  --cream: #f2ede4;
  --cream-dim: #d8d2c6;
  --slate: #8b96ab;
  --orange: #c97a3d;
  --orange-bright: #e08f4f;
  --font-display: "Space Grotesk", "Inter", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
  --wrap: 1180px;
  --radius: 18px;
}

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

body {
  margin: 0;
  background: var(--navy-950);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.wrap {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 28px;
  position: relative;
  z-index: 1;
}

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--cream);
  letter-spacing: -0.01em;
  margin: 0 0 16px;
}

h1 { font-size: clamp(2.2rem, 4.5vw, 3.6rem); line-height: 1.08; font-weight: 700; }
h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); }
h3 { font-size: 1.15rem; margin-bottom: 10px; }

p { color: var(--slate); margin: 0 0 16px; }

.eyebrow {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--orange-bright);
  margin: 0 0 14px;
}

.section-lede {
  max-width: 620px;
  font-size: 1.08rem;
  color: var(--slate);
}

a { color: inherit; text-decoration: none; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 26px;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--orange-bright), var(--orange));
  color: var(--navy-950);
  box-shadow: 0 8px 24px -8px rgba(201, 122, 61, 0.6);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 30px -8px rgba(201, 122, 61, 0.75); }
.btn-ghost {
  border: 1px solid var(--navy-600);
  color: var(--cream);
}
.btn-ghost:hover { border-color: var(--orange); background: rgba(201, 122, 61, 0.08); }
.btn-lg { padding: 18px 36px; font-size: 1.05rem; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10, 17, 32, 0.72);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(242, 237, 228, 0.07);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-mark { width: 38px; height: 38px; color: var(--cream); flex-shrink: 0; }
.brand-mark .ring { color: var(--cream); }
/* Logo im Header etwas groesser (Footer-Logo bleibt unveraendert) */
.site-header .brand-mark { width: 56px; height: 56px; }

.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-text strong {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.02rem;
  color: var(--cream);
}
.brand-text small {
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  color: var(--slate);
  text-transform: uppercase;
}

.site-nav { display: flex; align-items: center; gap: 32px; }
.site-nav a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--cream-dim);
  transition: color 0.2s ease;
}
.site-nav a:hover { color: var(--orange-bright); }
.nav-cta {
  padding: 10px 20px;
  border-radius: 999px;
  background: var(--navy-700);
  color: var(--cream) !important;
  border: 1px solid var(--navy-600);
}
.nav-cta:hover { border-color: var(--orange); color: var(--orange-bright) !important; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--cream);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 96px 0 80px;
  background:
    radial-gradient(circle at 82% 18%, rgba(201, 122, 61, 0.16), transparent 42%),
    radial-gradient(circle at 10% 90%, rgba(36, 57, 91, 0.5), transparent 55%);
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 40px;
}

.lede {
  font-size: 1.18rem;
  color: var(--cream-dim);
  max-width: 560px;
}

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 8px; }

.hero-visual { display: flex; justify-content: center; align-items: center; padding: 32px; }
.orbit-hero {
  width: 100%;
  max-width: 420px;
  overflow: visible;
  animation: spin 34s linear infinite;
}

.orbit-ring { fill: none; }
.orbit-ring--outer { stroke: rgba(242, 237, 228, 0.12); stroke-width: 0.6; }
.orbit-ring--mid {
  stroke: rgba(242, 237, 228, 0.22);
  stroke-width: 0.6;
  stroke-dasharray: 1.5 4;
  stroke-linecap: round;
}

@keyframes spin { to { transform: rotate(360deg); } }

/* animated orbiting dot along outer ring */
.orbit-dot {
  offset-path: path("M50,4 A46,46 0 1 1 49.9,4");
  animation: orbit 12s linear infinite;
}
@keyframes orbit { to { offset-distance: 100%; } }

@media (prefers-reduced-motion: reduce) {
  .orbit-hero, .orbit-dot { animation: none; }
}

/* ---------- Hero-Zusätze (neue Version) ---------- */
.lede-strong { color: var(--cream); font-weight: 600; }
.hero-focus {
  margin-top: 22px;
  font-family: var(--font-display);
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--slate);
}

/* ---------- 01: Vier Marktstufen ---------- */
.stages {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 44px;
}
.stage {
  position: relative;
  background: var(--navy-800);
  border: 1px solid rgba(242, 237, 228, 0.06);
  border-radius: var(--radius);
  padding: 24px 22px;
}
.stage h3 { font-size: 1rem; margin: 10px 0 0; color: var(--cream-dim); }
.stage-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--slate);
}
.stage--now {
  border-color: rgba(201, 122, 61, 0.55);
  background: rgba(201, 122, 61, 0.08);
}
.stage--now h3 { color: var(--cream); }
.stage--now .stage-num { color: var(--orange-bright); }
.stage-tag {
  position: absolute;
  top: -11px;
  right: 14px;
  padding: 3px 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--orange-bright), var(--orange));
  color: var(--navy-950);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ---------- 02: Fünf Prinzipien (abstrakte Marker) ---------- */
.principle-dots {
  display: flex;
  gap: 18px;
  margin: 40px 0;
  flex-wrap: wrap;
}
.principle-dots span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  border: 1px solid rgba(201, 122, 61, 0.45);
  color: var(--orange-bright);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.85rem;
}

/* ---------- 03: Stakes ---------- */
.stakes-grid { grid-template-columns: 1fr 1fr; margin-top: 36px; }
.stakes-line {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--cream);
  margin: 0;
}

/* ---------- 04: Vier Archetypen (abstrakte Marker) ---------- */
.archetype-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 40px;
  max-width: 560px;
}
.archetype-row span {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1.4;
  border-radius: var(--radius);
  border: 1px solid rgba(242, 237, 228, 0.12);
  background: var(--navy-800);
  color: var(--slate);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.3rem;
}

/* ---------- 06: Value-Chain-Ebenen ---------- */
.layer-stack { max-width: 640px; margin-top: 40px; }
.layer {
  display: flex;
  align-items: center;
  gap: 18px;
  background: var(--navy-800);
  border: 1px solid rgba(242, 237, 228, 0.06);
  border-radius: var(--radius);
  padding: 22px 26px;
}
.layer h3 { margin: 0; font-size: 1.05rem; }
.layer-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--navy-700);
  color: var(--orange-bright);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
}
.layer--agent {
  border-color: rgba(201, 122, 61, 0.55);
  background: rgba(201, 122, 61, 0.08);
}
.layer-arrow {
  text-align: center;
  color: var(--orange-bright);
  font-size: 1.2rem;
  padding: 6px 0;
  max-width: 640px;
}
.layer-caption {
  margin-top: 24px;
  font-family: var(--font-display);
  color: var(--cream-dim);
  font-size: 1.02rem;
}

/* ---------- 07: Methode mit vier Schritten ---------- */
.method-track--four { grid-template-columns: repeat(4, 1fr); }

/* ---------- About & Schluss-Statement ---------- */
.about-copy { max-width: 680px; color: var(--cream-dim); font-size: 1.02rem; }
.grand-quote {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  line-height: 1.35;
  color: var(--cream);
  max-width: 860px;
  margin: 0 0 22px;
}

/* ---------- Sections ---------- */
.section { padding: 100px 0; }
.section-alt { background: var(--navy-900); border-top: 1px solid rgba(242,237,228,0.05); border-bottom: 1px solid rgba(242,237,228,0.05); }

/* ---------- Focus pills ---------- */
.focus-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}
.focus-pill {
  padding: 14px 24px;
  border-radius: 999px;
  border: 1px solid var(--navy-600);
  background: var(--navy-800);
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--cream-dim);
  transition: border-color 0.2s ease, transform 0.2s ease, color 0.2s ease;
}
.focus-pill:hover { border-color: var(--orange); color: var(--cream); transform: translateY(-2px); }

/* ---------- Value grid ---------- */
.value-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.value-grid--five { grid-template-columns: repeat(5, 1fr); gap: 18px; }
.value-grid--five .value-card { padding: 26px 20px; }
.value-grid--five .value-card h3 { font-size: 1rem; }
.value-card {
  background: var(--navy-800);
  border: 1px solid rgba(242, 237, 228, 0.06);
  border-radius: var(--radius);
  padding: 30px 26px;
  transition: transform 0.25s ease, border-color 0.25s ease;
}
.value-card:hover { transform: translateY(-4px); border-color: rgba(201, 122, 61, 0.4); }
.value-index {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--orange-bright);
  letter-spacing: 0.05em;
}
.value-card p { font-size: 0.94rem; margin-bottom: 0; }

/* ---------- Contrast (don't/do) ---------- */
.contrast-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 24px;
}
.contrast-card {
  border-radius: var(--radius);
  padding: 34px 32px;
}
.contrast-dont {
  background: rgba(180, 70, 60, 0.07);
  border: 1px solid rgba(180, 70, 60, 0.28);
}
.contrast-dont .eyebrow { color: #d98f85; }
.contrast-do {
  background: rgba(201, 122, 61, 0.08);
  border: 1px solid rgba(201, 122, 61, 0.35);
}
.contrast-card ul { margin: 0; padding-left: 20px; color: var(--cream-dim); }
.contrast-card li { margin-bottom: 10px; font-size: 0.98rem; }
.contrast-card li:last-child { margin-bottom: 0; }

/* ---------- Method ---------- */
.method-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 44px;
  position: relative;
}
.method-step {
  background: var(--navy-800);
  border: 1px solid rgba(242, 237, 228, 0.06);
  border-radius: var(--radius);
  padding: 34px 28px;
  position: relative;
}
.method-letter {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange-bright), var(--orange));
  color: var(--navy-950);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 18px;
}
.method-step p { margin-bottom: 0; font-size: 0.95rem; }

/* ---------- Track record ---------- */
.stats-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: 48px 0 64px;
}
.stat {
  padding: 26px 24px;
  border-radius: var(--radius);
  background: var(--navy-800);
  border: 1px solid rgba(242, 237, 228, 0.06);
}
.stat strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2.2rem;
  line-height: 1.1;
  color: var(--orange-bright);
  margin-bottom: 8px;
}
.stat span { font-size: 0.85rem; color: var(--slate); line-height: 1.45; display: block; }

/* Sektion 08 — Label ueber dem Werdegang */
.arc-label { margin-top: 52px; }

.timeline {
  position: relative;
  padding-left: 36px;
  margin-bottom: 64px;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 10px;
  bottom: 10px;
  width: 1px;
  background: linear-gradient(to bottom, var(--orange), rgba(201, 122, 61, 0.1));
}
.tl-item { position: relative; padding-bottom: 52px; }
.tl-item:last-child { padding-bottom: 0; }
.tl-item::before {
  content: "";
  position: absolute;
  left: -33px;
  top: 8px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 5px rgba(201, 122, 61, 0.18);
}
.tl-meta {
  display: flex;
  gap: 18px;
  align-items: baseline;
  flex-wrap: wrap;
  margin-bottom: 8px;
}
.tl-years {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange-bright);
}
.tl-company {
  font-size: 0.85rem;
  color: var(--slate);
  letter-spacing: 0.04em;
}
.tl-item h3 { font-size: 1.3rem; margin-bottom: 8px; }
.tl-item > p { max-width: 640px; font-size: 0.98rem; }
.tl-item ul { margin: 14px 0 0; padding-left: 20px; color: var(--cream-dim); max-width: 680px; }
.tl-item li { margin-bottom: 8px; font-size: 0.95rem; }
.tl-item li strong { color: var(--cream); font-weight: 600; }

.philosophy-wide { max-width: 720px; }

/* Sektion 05 — Block "How the work is set up" (freier Berater + Netzwerk) */
.setup { margin-top: 52px; }
.setup .section-lede { max-width: 680px; margin: 0 0 18px; }
.setup .section-lede:last-child { margin-bottom: 0; }
.setup strong { color: var(--cream); font-weight: 600; }

/* Sektion 05 — die drei Karten darunter */
.setup-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 34px;
}
.setup-card {
  background: var(--navy-800);
  border: 1px solid rgba(242, 237, 228, 0.06);
  border-radius: var(--radius);
  padding: 30px 26px;
}
.setup-card::before {
  content: "";
  display: block;
  width: 34px;
  height: 3px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--orange-bright), var(--orange));
  margin-bottom: 18px;
}
.setup-card h3 {
  font-family: var(--font-display);
  color: var(--cream);
  font-size: 1.05rem;
  margin-bottom: 12px;
}
.setup-card p { margin-bottom: 0; font-size: 0.95rem; }

.philosophy {
  margin: 0;
  padding: 32px;
  border-left: 3px solid var(--orange);
  background: var(--navy-800);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.philosophy p {
  color: var(--cream);
  font-family: var(--font-display);
  font-size: 1.1rem;
  line-height: 1.5;
  margin-bottom: 14px;
}
.philosophy cite {
  font-style: normal;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--slate);
}

/* ---------- CTA ---------- */
.section-cta {
  text-align: center;
  background:
    radial-gradient(circle at 50% 0%, rgba(201, 122, 61, 0.14), transparent 55%),
    var(--navy-900);
}
.cta-inner { display: flex; flex-direction: column; align-items: center; }
.cta-mark { width: 56px; height: 56px; margin-bottom: 24px; }
.cta-inner .section-lede { margin-left: auto; margin-right: auto; margin-bottom: 32px; }

/* ---------- Footer ---------- */
.site-footer { padding: 44px 0; border-top: 1px solid rgba(242, 237, 228, 0.07); }
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-meta { color: var(--slate); font-size: 0.85rem; margin: 0; }
.footer-legal { display: flex; gap: 10px; align-items: center; color: var(--slate); font-size: 0.85rem; }
.footer-legal a { color: var(--slate); transition: color 0.2s ease; }
.footer-legal a:hover { color: var(--orange-bright); }

/* ---------- Rechtsseiten (Impressum / Datenschutz) ---------- */
.legal-page { padding: 72px 0 96px; min-height: 60vh; }
.legal-wrap { max-width: 720px; }
.legal-wrap h1 { font-size: clamp(1.9rem, 3vw, 2.6rem); margin-bottom: 32px; }
.legal-wrap h2 {
  font-size: 1.05rem;
  margin: 36px 0 10px;
  color: var(--orange-bright);
}
.legal-wrap p { color: var(--cream-dim); font-size: 0.97rem; }
.legal-wrap a { color: var(--orange-bright); }
.legal-wrap a:hover { text-decoration: underline; }

/* ---------- About portrait (rundes Foto) ---------- */
.about-grid {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 40px;
  align-items: center;
  margin-top: 16px;
}
.about-portrait {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--navy-800);
  box-shadow: 0 0 0 2px var(--orange);
}
@media (max-width: 700px) {
  .about-grid { grid-template-columns: 1fr; justify-items: start; gap: 24px; }
  .about-portrait { width: 140px; height: 140px; }
}

/* ---------- Reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .value-grid { grid-template-columns: repeat(2, 1fr); }
  .contrast-grid { grid-template-columns: 1fr; }
  .method-track { grid-template-columns: 1fr; }
  .setup-cards { grid-template-columns: 1fr; }
  .method-track--four { grid-template-columns: repeat(2, 1fr); }
  .stats-strip { grid-template-columns: repeat(2, 1fr); }
  .stages { grid-template-columns: repeat(2, 1fr); }
  .stakes-grid { grid-template-columns: 1fr; }
  .philosophy { border-radius: var(--radius); }
}

@media (max-width: 840px) {
  .site-nav {
    position: fixed;
    inset: 78px 0 0 0;
    height: calc(100vh - 78px);
    background: var(--navy-950);
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 36px 28px;
    gap: 26px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
  }
  .site-nav.is-open { transform: translateX(0); }
  .site-nav a { font-size: 1.15rem; }
  .nav-cta { order: 10; }
  .nav-toggle { display: flex; }

  .hero-inner { grid-template-columns: 1fr; text-align: left; }
  .hero-visual { order: -1; max-width: 260px; margin: 0 auto 12px; }
  .orbit-hero { max-width: 240px; }
}

@media (max-width: 600px) {
  .section { padding: 72px 0; }
  .value-grid { grid-template-columns: 1fr; }
  .stats-strip { grid-template-columns: 1fr; gap: 14px; }
  .stages { grid-template-columns: 1fr; }
  .method-track--four { grid-template-columns: 1fr; }
  .archetype-row { grid-template-columns: repeat(2, 1fr); }
  .timeline { padding-left: 28px; }
  .tl-item::before { left: -25px; }
  .hero { padding: 56px 0 60px; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
}
