/*
Theme Name: Sascha Hautau
Theme URI: https://sascha-hautau.de
Author: Sascha Hautau
Description: Premium Landingpage Theme mit ACF Blocks — maximale Performance, kein Elementor.
Version: 1.0.0
Requires at least: 6.0
Requires PHP: 8.0
Text Domain: sascha-hautau
*/

/* ── Local Inter Font ───────────────────────────────────────── */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('./assets/fonts/InterVariable.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;
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('./assets/fonts/InterVariable-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;
}

/* ── CSS Custom Properties ──────────────────────────────────── */
:root {
  --black: #000000;
  --rich-black: #0a0a0a;
  --dark: #111111;
  --dark-card: #161616;
  --dark-surface: #1a1a1a;
  --dark-border: rgba(255,255,255,0.1);
  --light: #f5f5f7;
  --light-card: #ffffff;
  --light-border: rgba(0,0,0,0.08);
  --light-text: #1d1d1f;
  --light-text-secondary: #4a4a4f;
  --silver: #949494;
  --silver-light: #c2c2c7;
  --white: #ffffff;
  --off-white: #f5f5f7;
  --accent: #2B4FCF;
  --accent-hover: #1E3DB5;
  --accent-light: #5A7FEF;
  --accent-on-light: #1B3A9C;
  --accent-dim: rgba(43, 79, 207, 0.08);
  --accent-glow: rgba(43, 79, 207, 0.15);
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-apple: cubic-bezier(0.42, 0, 0.58, 1);
}

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

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

::selection { background: var(--accent); color: var(--white); }
a { color: inherit; text-decoration: none; }
img, video { max-width: 100%; display: block; }
button { border: none; background: none; cursor: pointer; font-family: inherit; }
ul { list-style: none; }

/* ── Skip Link ──────────────────────────────────────────────── */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 10000;
  padding: 12px 24px;
  background: var(--accent);
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 0 0 8px 8px;
  transition: top 0.2s;
}

.skip-link:focus {
  top: 0;
}

/* ── Screen Reader Only ─────────────────────────────────────── */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ── WP Admin-Bar Offset ────────────────────────────────────── */
body.admin-bar .nav { top: 32px; }
@media (max-width: 782px) { body.admin-bar .nav { top: 46px; } }

/* ── Scroll Progress ───────────────────────────────────────── */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--accent);
  z-index: 9999;
  transform-origin: left;
  transform: scaleX(0);
  will-change: transform;
}

body.admin-bar .scroll-progress { top: 32px; }
@media (max-width: 782px) { body.admin-bar .scroll-progress { top: 46px; } }

/* ── Navigation ─────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1100;
  padding: 28px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.6s var(--ease-apple);
}

.nav.scrolled {
  padding: 18px 60px;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(40px) saturate(180%);
  -webkit-backdrop-filter: blur(40px) saturate(180%);
}

.nav-logo {
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--white);
}

.nav-logo-img {
  height: 40px;
  width: auto;
}

.nav-links {
  display: flex;
  gap: 40px;
  align-items: center;
}

.nav-links a {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.75);
  transition: color 0.3s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--white);
  transition: width 0.4s var(--ease-out);
}

.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }

.nav-cta-link {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--black) !important;
  background: var(--white);
  padding: 10px 28px;
  border-radius: 100px;
  transition: all 0.4s var(--ease-out);
}

.nav-cta-link:hover {
  background: var(--accent);
  color: var(--white) !important;
  transform: scale(1.03);
}

.nav-cta-link::after { display: none !important; }

/* Hamburger */
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: 8px;
  z-index: 1100;
}

.nav-burger span {
  width: 24px;
  height: 1.5px;
  background: var(--white);
  transition: all 0.4s var(--ease-out);
}

.nav-burger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-burger.active span:nth-child(2) { opacity: 0; }
.nav-burger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile overlay */
.mobile-nav {
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 1050;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 36px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s var(--ease-apple);
}

.mobile-nav.open { opacity: 1; visibility: visible; }

.mobile-nav a {
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--white);
  transition: color 0.3s;
}

.mobile-nav a:hover { color: var(--accent-light); }

/* ── Hero ───────────────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-video-wrap video,
.hero-video-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-video-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg,
      rgba(0,0,0,0.3) 0%,
      rgba(0,0,0,0.1) 40%,
      rgba(0,0,0,0.6) 75%,
      rgba(0,0,0,0.95) 100%
    );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 60px 100px;
}

.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--silver-light);
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(20px);
}

.hero-title {
  font-size: clamp(3.2rem, 8vw, 7rem);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -0.04em;
  margin-bottom: 28px;
  max-width: 900px;
}

.hero-title .line {
  display: block;
  overflow: hidden;
  padding: 0.12em 0;
  margin: -0.12em 0;
}

.hero-title .line-inner {
  display: block;
  transform: translateY(110%);
  will-change: transform;
}

.hero-subtitle {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  font-weight: 400;
  color: rgba(255,255,255,0.8);
  max-width: 520px;
  line-height: 1.8;
  margin-bottom: 48px;
  opacity: 0;
  transform: translateY(24px);
}

.hero-actions {
  display: flex;
  gap: 16px;
  align-items: center;
  opacity: 0;
  transform: translateY(24px);
}

/* ── Buttons ────────────────────────────────────────────────── */
.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background: var(--white);
  color: var(--black);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: 100px;
  transition: all 0.4s var(--ease-out);
  position: relative;
  overflow: hidden;
}

.btn-white:hover {
  background: var(--accent);
  color: var(--white);
  transform: scale(1.03);
}

.btn-white .arrow {
  transition: transform 0.3s var(--ease-out);
}
.btn-white:hover .arrow { transform: translateX(3px); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: 100px;
  transition: all 0.4s var(--ease-out);
}

.btn-ghost:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.05);
}

.btn-dark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: 100px;
  transition: all 0.4s var(--ease-out);
}

.btn-dark:hover {
  background: var(--white);
  color: var(--black);
}

/* ── Hero Scroll Cue ────────────────────────────────────────── */
.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: 0;
  transition: opacity 1s 1.8s;
}

.hero-scroll span {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--silver-light);
}

.hero-scroll-line {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,0.15);
  position: relative;
  overflow: hidden;
}

.hero-scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  width: 100%;
  height: 100%;
  background: var(--white);
  animation: scrollPulse 2.4s var(--ease-apple) infinite;
}

@keyframes scrollPulse {
  0% { top: -100%; }
  100% { top: 100%; }
}

/* ── Stats ──────────────────────────────────────────────────── */
.stats {
  padding: 80px 60px;
  border-bottom: 1px solid var(--dark-border);
}

.stats-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px;
}

.stat {
  text-align: center;
  opacity: 0;
  transform: translateY(30px);
}

.stat-value {
  font-size: clamp(2.8rem, 4.5vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 8px;
  color: var(--white);
}

.stat-label {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--silver-light);
}

/* ── Sections Shared ────────────────────────────────────────── */
.section {
  padding: 160px 60px;
  position: relative;
}

.section-eyebrow {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent-light);
  margin-bottom: 20px;
}

.section-title {
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.035em;
  margin-bottom: 20px;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--silver-light);
  max-width: 520px;
  line-height: 1.8;
}

/* Light section button overrides */
.about .btn-white,
.portfolio .btn-white,
.mentoring .btn-white {
  background: var(--accent);
  color: var(--white);
}

.about .btn-white:hover,
.portfolio .btn-white:hover,
.mentoring .btn-white:hover {
  background: var(--accent-hover);
}

.about .btn-ghost,
.portfolio .btn-ghost,
.mentoring .btn-ghost {
  border-color: var(--light-border);
  color: var(--light-text);
}

.about .btn-ghost:hover,
.portfolio .btn-ghost:hover,
.mentoring .btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent-on-light);
}

/* ── Cinematic ──────────────────────────────────────────────── */
.cinematic {
  position: relative;
  height: 80vh;
  min-height: 500px;
  overflow: hidden;
}

.cinematic-media {
  position: absolute;
  inset: 0;
}

.cinematic-media video,
.cinematic-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cinematic-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.7) 100%);
}

.cinematic-text {
  position: absolute;
  bottom: 80px;
  left: 60px;
  z-index: 2;
  max-width: 700px;
}

.cinematic-text h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}

.cinematic-text p {
  font-size: 1rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
  max-width: 480px;
}

.cinematic-actions {
  display: flex;
  gap: 16px;
  margin-top: 32px;
  flex-wrap: wrap;
}

/* ── About (Light) ──────────────────────────────────────────── */
.about {
  background: var(--light);
  color: var(--light-text);
}

.about .section-eyebrow { color: var(--accent-on-light); }
.about .section-title { color: var(--light-text); }
.about .about-text { color: var(--light-text-secondary); }

.about-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 120px;
  align-items: center;
}

.about-visual {
  position: relative;
}

.about-img {
  width: 100%;
  aspect-ratio: 3/4;
  overflow: hidden;
  border-radius: 8px;
  background: #e0e0e5;
  position: relative;
}

.about-img img,
.about-img video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease-apple);
}

.about-img:hover img,
.about-img:hover video {
  transform: scale(1.03);
}

.about-badge {
  position: absolute;
  bottom: -28px;
  right: -28px;
  background: var(--accent);
  color: var(--white);
  border-radius: 12px;
  padding: 28px 32px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.about-badge-num {
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--white);
}

.about-badge-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  margin-top: 4px;
}

.about-content .section-title { max-width: 450px; color: var(--light-text); }

.about-text {
  color: var(--light-text-secondary);
  font-size: 1.05rem;
  line-height: 1.9;
  margin-bottom: 16px;
}

.about-pillars {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 40px;
}

.pillar {
  padding: 10px 20px;
  border: 1px solid var(--light-border);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--light-text-secondary);
  transition: all 0.3s;
}

.pillar:hover {
  border-color: var(--accent);
  color: var(--accent-on-light);
  background: var(--accent-dim);
}

/* ── Philosophy ─────────────────────────────────────────────── */
.philosophy {
  padding: 150px 60px;
  position: relative;
  overflow: hidden;
  background: var(--black);
}

.philosophy-ghost {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: clamp(10rem, 22vw, 20rem);
  font-weight: 900;
  color: rgba(255,255,255,0.03);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  letter-spacing: -0.06em;
  will-change: transform;
}

.philosophy-inner {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.philosophy-quote {
  font-size: clamp(1.6rem, 3.5vw, 3rem);
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: -0.015em;
}

.philosophy-quote .word {
  display: inline-block;
  color: #848484;
  transition: color 0.4s var(--ease-apple);
  margin-right: 0.28em;
}

.philosophy-quote .word.active {
  color: var(--white);
}

.philosophy-credit {
  margin-top: 48px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--silver-light);
}

/* ── Investment ─────────────────────────────────────────────── */
.investment {
  background: var(--rich-black);
}

.investment-wrap {
  max-width: 1400px;
  margin: 0 auto;
}

.investment-head {
  max-width: 600px;
  margin-bottom: 80px;
}

.investment-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--dark-border);
  border-radius: 16px;
  overflow: hidden;
}

.inv-card {
  background: var(--dark-card);
  padding: 56px 44px;
  position: relative;
  transition: background 0.5s var(--ease-apple);
  opacity: 0;
  transform: translateY(40px);
}

.inv-card:hover {
  background: var(--dark-surface);
}

.inv-card-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 32px;
  color: var(--white);
  opacity: 0.85;
}

.inv-card h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}

.inv-card p {
  font-size: 0.92rem;
  color: var(--silver-light);
  line-height: 1.7;
}

/* ── Portfolio (Light) ──────────────────────────────────────── */
.portfolio {
  background: var(--light);
  color: var(--light-text);
}

.portfolio .section-eyebrow { color: var(--accent-on-light); }
.portfolio .section-title { color: var(--light-text); }
.portfolio .portfolio-note { color: var(--light-text-secondary); }

.portfolio-wrap {
  max-width: 1400px;
  margin: 0 auto;
  overflow: hidden;
}

.portfolio-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 80px;
  gap: 40px;
}

.portfolio-note {
  font-size: 0.78rem;
  color: var(--light-text-secondary);
  max-width: 380px;
  text-align: right;
  line-height: 1.7;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.port-card {
  background: var(--light-card);
  border: 1px solid var(--light-border);
  border-radius: 12px;
  padding: 24px;
  text-align: center;
  transition: all 0.5s var(--ease-out);
  opacity: 0;
  transform: translateY(30px);
  aspect-ratio: 3 / 2;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  overflow: hidden;
}

.port-card:hover {
  border-color: var(--accent);
  transform: translateY(-6px);
  box-shadow: 0 24px 64px rgba(0,0,0,0.08);
}

.port-card-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.port-card-logo img {
  max-height: 72px;
  max-width: 80%;
  width: auto;
  object-fit: contain;
  filter: grayscale(100%);
  transition: filter 0.4s var(--ease-out);
}

.port-card:hover .port-card-logo img {
  filter: grayscale(0%);
}

.port-card-logo span {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--light-text-secondary);
  padding: 10px 20px;
  border: 1px solid var(--light-border);
  border-radius: 6px;
}

.port-card h4 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--light-text);
}

.port-card p {
  font-size: 0.8rem;
  color: var(--light-text-secondary);
}

/* ── Portfolio 2 (mit Holding) ──────────────────────────────── */
.portfolio-holding-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 64px;
  position: relative;
}

.portfolio-holding-row::after {
  content: '';
  position: absolute;
  bottom: -64px;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 64px;
  background: rgba(0,0,0,0.12);
}

.port-card--holding {
  width: calc(33.333% - 14px);
}

.port-card--holding .port-card-logo img {
  max-height: 120px;
  filter: none;
}

.port-card--holding:hover .port-card-logo img {
  filter: none;
}

@media (max-width: 768px) {
  .port-card--holding {
    width: 100%;
  }
}

/* ── Book ───────────────────────────────────────────────────── */
.book {
  background: var(--black);
}

.book-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 120px;
  align-items: center;
}

.book-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.book-mockup-img {
  max-width: 560px;
  width: 100%;
  position: relative;
  transition: transform 0.8s var(--ease-out);
}

.book-mockup-img:hover { transform: scale(1.03) rotate(-1deg); }

.book-mockup-img img {
  width: 100%;
  height: auto;
  filter: drop-shadow(30px 30px 60px rgba(0,0,0,0.5));
}

.book-glow {
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(43, 79, 207, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  z-index: -1;
  filter: blur(60px);
}

.book-info h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}

.book-info p {
  font-size: 1.02rem;
  color: var(--silver-light);
  line-height: 1.85;
  margin-bottom: 12px;
}

.book-checks {
  margin: 36px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.book-checks li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.92rem;
  color: var(--silver-light);
}

.book-checks li svg { color: var(--accent-light); flex-shrink: 0; }

/* ── Mentoring (Light) ──────────────────────────────────────── */
.mentoring {
  background: var(--off-white);
  color: var(--light-text);
}

.mentoring .section-eyebrow { color: var(--accent-on-light); }
.mentoring .section-title { color: var(--light-text); }
.mentoring .section-desc { color: var(--light-text-secondary); }

.mentoring-wrap {
  max-width: 1400px;
  margin: 0 auto;
}

.mentoring-head {
  max-width: 600px;
  margin-bottom: 80px;
}

.mentoring-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.ment-card {
  background: var(--light-card);
  border: 1px solid var(--light-border);
  border-radius: 16px;
  padding: 52px 44px;
  position: relative;
  overflow: hidden;
  transition: all 0.5s var(--ease-out);
  opacity: 0;
  transform: translateY(30px);
}

.ment-card:hover {
  border-color: var(--accent);
  box-shadow: 0 16px 48px rgba(0,0,0,0.06);
}

.ment-card .num {
  position: absolute;
  top: 28px;
  right: 36px;
  font-size: 4.5rem;
  font-weight: 900;
  line-height: 1;
  color: rgba(0,0,0,0.05);
  letter-spacing: -0.04em;
}

.ment-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 14px;
  letter-spacing: -0.01em;
  color: var(--light-text);
}

.ment-card p {
  font-size: 0.92rem;
  color: var(--light-text-secondary);
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

/* ── Contact ────────────────────────────────────────────────── */
.contact {
  background: var(--black);
}

.contact-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 120px;
  align-items: center;
}

.contact-info { display: flex; flex-direction: column; gap: 40px; }

.contact-block { display: flex; gap: 16px; }

.contact-block-icon {
  width: 44px;
  height: 44px;
  background: var(--accent-dim);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-light);
  flex-shrink: 0;
}

.contact-block h3 {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-light);
  margin-bottom: 4px;
}

.contact-block p { color: var(--silver-light); font-size: 0.95rem; }

/* Contact Portrait */
.contact-portrait {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.contact-portrait-img {
  width: 320px;
  aspect-ratio: 3/4;
  overflow: hidden;
  border-radius: 12px;
  margin-bottom: 24px;
}

.contact-portrait-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease-apple);
}

.contact-portrait-img:hover img {
  transform: scale(1.03);
}

.contact-portrait-name {
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--white);
  margin-bottom: 4px;
}

.contact-portrait-role {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--silver-light);
}

/* ── Kontakt + Formular Block ───────────────────────────────── */
.cf-block { background: var(--black); }

.cf-wrap {
    max-width: 1400px;
    margin: 0 auto;
}

.cf-head { margin-bottom: 60px; }

.cf-grid {
    display: grid;
    grid-template-columns: auto minmax(300px, 560px);
    gap: 40px;
    align-items: stretch;
    width: fit-content;
}

/* Portrait */
.cf-portrait { display: block; height: 100%; }

.cf-portrait-img {
    position: relative;
    width: 320px;
    height: 100%;
    min-height: 420px;
    overflow: hidden;
    border-radius: 12px;
}

.cf-portrait-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
    transition: transform 1.2s var(--ease-apple);
}

.cf-portrait-img:hover img { transform: scale(1.03); }

.cf-portrait-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px 24px 24px;
    background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, transparent 100%);
}

.cf-portrait-name {
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    color: var(--white);
    margin-bottom: 3px;
}

.cf-portrait-role {
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.03em;
    color: rgba(255,255,255,0.75);
}

.cf-portrait-placeholder {
    width: 320px;
    min-height: 420px;
    background: var(--dark-card);
    border: 1px dashed var(--dark-border);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--silver);
    font-size: 0.85rem;
}

/* Formular Card */
.cf-form-card {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: 20px;
    padding: 32px 36px 36px;
    box-sizing: border-box;
}

.cf-no-form {
    color: var(--silver);
    font-size: 0.9rem;
    text-align: center;
    padding: 40px 0;
}

/* CF7 Formular-Styling innerhalb des Blocks */
.cf-form-card .wpcf7 { width: 100%; }

.cf-form-card .wpcf7-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cf-form-card .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.cf-form-card .form-label {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent-light);
}

.cf-form-card .wpcf7-form-control-wrap { display: block; width: 100%; }

.cf-form-card input.wpcf7-form-control,
.cf-form-card select.wpcf7-form-control,
.cf-form-card textarea.wpcf7-form-control {
    background: var(--dark-surface);
    border: 1px solid var(--dark-border);
    border-radius: 10px;
    padding: 11px 14px;
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.9rem;
    line-height: 1.5;
    width: 100%;
    outline: none;
    transition: border-color 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out);
    -webkit-appearance: none;
    appearance: none;
}

.cf-form-card input.wpcf7-form-control::placeholder,
.cf-form-card textarea.wpcf7-form-control::placeholder { color: var(--silver); }

.cf-form-card input.wpcf7-form-control:focus,
.cf-form-card select.wpcf7-form-control:focus,
.cf-form-card textarea.wpcf7-form-control:focus {
    border-color: var(--accent-light);
    box-shadow: 0 0 0 3px var(--accent-glow);
}

.cf-form-card textarea.wpcf7-form-control {
    resize: vertical;
    min-height: 80px;
    max-height: 160px;
}

/* Select Pfeil */
.cf-form-card select.wpcf7-form-control {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23949494' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 44px;
    cursor: pointer;
}

.cf-form-card select.wpcf7-form-control option { background: var(--dark); color: var(--white); }

/* Acceptance / Consent */
.cf-form-card .wpcf7-acceptance { display: block; }

.cf-form-card .wpcf7-list-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    margin: 0;
}

.cf-form-card .wpcf7-list-item input[type="checkbox"] {
    width: 18px;
    height: 18px;
    min-width: 18px;
    border: 1px solid var(--dark-border);
    border-radius: 5px;
    background: var(--dark-surface);
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    margin-top: 2px;
    transition: background 0.2s, border-color 0.2s;
    padding: 0;
}

.cf-form-card .wpcf7-list-item input[type="checkbox"]:checked {
    background: var(--accent);
    border-color: var(--accent);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 14'%3E%3Cpath d='M2 7l4 4 6-6' stroke='%23fff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
}

.cf-form-card .wpcf7-list-item input[type="checkbox"]:focus-visible {
    box-shadow: 0 0 0 3px var(--accent-glow);
    outline: none;
}

.cf-form-card .wpcf7-list-item-label {
    font-size: 0.8rem;
    color: var(--silver);
    line-height: 1.6;
}

.cf-form-card .wpcf7-list-item-label a {
    color: var(--accent-light);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.cf-form-card .wpcf7-list-item-label a:hover { color: var(--white); }

/* Submit Button */
.cf-form-card input.wpcf7-submit {
    display: block;
    width: 100%;
    padding: 16px 36px;
    background: var(--white);
    color: var(--black);
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    border-radius: 100px;
    border: none;
    cursor: pointer;
    transition: background 0.4s var(--ease-out), color 0.4s var(--ease-out), transform 0.4s var(--ease-out);
    margin-top: 4px;
}

.cf-form-card input.wpcf7-submit:hover {
    background: var(--accent);
    color: var(--white);
    transform: scale(1.02);
}

/* Validierungs- & Response-Meldungen */
.cf-form-card .wpcf7-not-valid-tip {
    display: block;
    font-size: 0.75rem;
    color: #ff6b6b;
    margin-top: 5px;
}

.cf-form-card .wpcf7-response-output {
    margin-top: 12px;
    padding: 12px 16px;
    border-radius: 10px;
    font-size: 0.85rem;
    border: 1px solid transparent;
    display: none;
}

.cf-form-card .wpcf7 .wpcf7-response-output {
    display: block;
}

.cf-form-card .wpcf7-mail-sent-ok {
    background: rgba(52,199,89,0.12);
    border-color: rgba(52,199,89,0.35);
    color: #34c759;
}

.cf-form-card .wpcf7-mail-sent-ng,
.cf-form-card .wpcf7-aborted,
.cf-form-card .wpcf7-spam-blocked {
    background: rgba(255,107,107,0.1);
    border-color: rgba(255,107,107,0.3);
    color: #ff6b6b;
}

.cf-form-card .wpcf7-validation-errors,
.cf-form-card .wpcf7-acceptance-missing {
    background: rgba(255,179,0,0.1);
    border-color: rgba(255,179,0,0.3);
    color: #ffb300;
}

.cf-form-card .wpcf7-mail-sent-ok {
    background: rgba(52,199,89,0.1);
    border-color: rgba(52,199,89,0.3);
    color: #34c759;
}

.cf-form-card .wpcf7-mail-sent-ng,
.cf-form-card .wpcf7-aborted,
.cf-form-card .wpcf7-spam-blocked,
.cf-form-card .wpcf7-validation-errors {
    background: rgba(255,107,107,0.1);
    border-color: rgba(255,107,107,0.3);
    color: #ff6b6b;
}

/* Responsive */
@media (max-width: 1024px) {
    .cf-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        width: 100%;
    }
    .cf-portrait-img {
        width: 100%;
        max-width: 420px;
        height: auto;
        min-height: unset;
        aspect-ratio: 3/4;
    }
    .cf-form-card {
        height: auto;
        justify-content: flex-start;
        padding: 32px;
    }
    .cf-head { margin-bottom: 40px; }
}

@media (max-width: 768px) {
    .cf-portrait-img { max-width: 100%; aspect-ratio: 4/3; }
    .cf-portrait-overlay { padding: 32px 20px 20px; }
    .cf-form-card { padding: 24px; }
    .cf-form-card .form-row { grid-template-columns: 1fr; }
    .cf-head { margin-bottom: 32px; }
}

@media (max-width: 480px) {
    .cf-portrait-img { aspect-ratio: 3/4; }
    .cf-form-card { padding: 20px; }
}

/* ── Footer ─────────────────────────────────────────────────── */
.footer {
  background: var(--black);
  border-top: 1px solid var(--dark-border);
  padding: 80px 60px 40px;
}

.footer-inner { max-width: 1400px; margin: 0 auto; }

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-brand-name {
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.footer-brand-desc {
  font-size: 0.85rem;
  color: var(--silver-light);
  line-height: 1.7;
  max-width: 280px;
}

.footer-col h4 {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 20px;
  color: var(--white);
}

.footer-col a {
  display: block;
  font-size: 0.85rem;
  color: var(--silver-light);
  margin-bottom: 12px;
  transition: color 0.3s;
}

.footer-col a:hover { color: var(--white); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 40px;
  border-top: 1px solid var(--dark-border);
}

.footer-copy { font-size: 0.75rem; color: var(--silver-light); }

.footer-socials { display: flex; gap: 12px; }

.footer-socials a {
  width: 36px;
  height: 36px;
  border: 1px solid var(--dark-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--silver-light);
  transition: all 0.3s;
}

.footer-socials a:hover { border-color: var(--accent-light); color: var(--accent-light); }

/* ── Reveal Animations ──────────────────────────────────────── */
[data-reveal] {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.9s var(--ease-apple), transform 0.9s var(--ease-apple);
}

[data-reveal].visible {
  opacity: 1;
  transform: translateY(0);
}

[data-reveal-delay="1"] { transition-delay: 0.1s; }
[data-reveal-delay="2"] { transition-delay: 0.2s; }
[data-reveal-delay="3"] { transition-delay: 0.3s; }
[data-reveal-delay="4"] { transition-delay: 0.4s; }

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .section { padding: 120px 32px; }
  .nav { padding: 20px 32px; }
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .hero-content { padding: 0 32px 80px; }
  .about-grid { grid-template-columns: 1fr; gap: 60px; }
  .about-img { max-width: 500px; }
  .investment-cards { grid-template-columns: 1fr; gap: 1px; }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-scroll { display: none; }
  .book-grid { grid-template-columns: 1fr; gap: 60px; }
  .book-visual { order: -1; }
  .contact-grid { grid-template-columns: 1fr; gap: 60px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
  .cinematic-text { left: 32px; bottom: 60px; }
  .stats { padding: 60px 32px; }
  .philosophy { padding: 120px 32px; }
  .footer { padding: 60px 32px 30px; }
}

@media (max-width: 768px) {
  .section { padding: 100px 20px; }
  .nav { padding: 16px 20px; }
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .hero-content { padding: 0 20px 60px; }
  .stats { padding: 60px 20px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .portfolio-head { flex-direction: column; align-items: flex-start; }
  .portfolio-note { text-align: left; }
  .port-card { padding: 16px; }
  .port-card-logo img { max-height: 52px; max-width: 90%; }
  .mentoring-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 20px; text-align: center; }
  .cinematic { height: 60vh; min-height: 350px; }
  .cinematic-text { left: 20px; bottom: 40px; }
  .philosophy { padding: 100px 20px; }
  .about-img { max-height: 300px; aspect-ratio: auto; }
  .contact-portrait-img { max-height: 300px; aspect-ratio: auto; }
  .footer { padding: 50px 20px 30px; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 2.6rem; }
  .section-title { font-size: 2rem; }
  .about-badge { right: 0; bottom: -20px; }
  .cinematic-actions { flex-direction: column; align-items: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ── Focus Visible ──────────────────────────────────────────── */
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--accent-light);
  outline-offset: 3px;
  border-radius: 4px;
}

.nav-cta-link:focus-visible {
  outline-offset: 4px;
  border-radius: 100px;
}

.btn-white:focus-visible,
.btn-ghost:focus-visible,
.btn-dark:focus-visible {
  outline-offset: 4px;
  border-radius: 100px;
}

@media print {
  .scroll-progress, .nav, .hero-scroll { display: none; }
  body { background: #fff; color: #000; }
}

/* ── WYSIWYG inner-<p> reset ──────────────────────────────────── */
/* WYSIWYG wraps content in <p> tags — reset browser default margins
   so layout stays identical to the old plain-text output.          */
.hero-subtitle p,
.section-desc p,
.about-text p,
.portfolio-note p,
.cinematic-body p,
.book-body p,
.inv-card-text p,
.ment-card-text p {
  margin: 0;
}
.hero-subtitle p + p,
.section-desc p + p,
.about-text p + p,
.cinematic-body p + p,
.book-body p + p,
.inv-card-text p + p,
.ment-card-text p + p {
  margin-top: 0.75em;
}

/* ===================== LEGAL PLACEHOLDER ===================== */
.legal-placeholder {
  color: var(--accent-on-light);
  background: rgba(43, 79, 207, 0.08);
  border: 1px dashed rgba(43, 79, 207, 0.4);
  border-radius: 4px;
  padding: 1px 8px;
  font-style: italic;
  cursor: help;
}

/* ===================== PAGE HERO ===================== */
.page-hero {
  background: var(--black);
  padding: 180px 60px 80px;
  border-bottom: 1px solid var(--dark-border);
  position: relative;
  overflow: hidden;
}

.page-hero-ghost {
  position: absolute;
  top: 50%;
  right: -40px;
  transform: translateY(-50%);
  font-size: clamp(8rem, 18vw, 16rem);
  font-weight: 900;
  color: rgba(255,255,255,0.025);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  letter-spacing: -0.06em;
  line-height: 1;
}

.page-hero-inner {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.page-hero-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--silver);
  margin-bottom: 48px;
  transition: color 0.3s;
}

.page-hero-back:hover { color: var(--white); }

.page-hero-back svg {
  transition: transform 0.3s var(--ease-out);
}

.page-hero-back:hover svg { transform: translateX(-3px); }

.page-hero-title {
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -0.04em;
  color: var(--white);
  max-width: 800px;
}

/* ===================== LEGAL CONTENT ===================== */
.legal {
  background: var(--light);
  padding: 80px 60px 140px;
}

.legal-inner {
  max-width: 800px;
  margin: 0 auto;
}

.legal-inner h2 {
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: -0.015em;
  margin: 56px 0 14px;
  color: var(--light-text);
}

.legal-inner h2:first-child { margin-top: 0; }

.legal-inner h3 {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin: 32px 0 10px;
  color: var(--light-text);
}

.legal-inner p {
  font-size: 0.95rem;
  color: var(--light-text-secondary);
  line-height: 1.9;
  margin-bottom: 12px;
}

.legal-inner a {
  color: var(--accent-on-light);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.25s;
}

.legal-inner a:hover { color: var(--accent); }

.legal-inner ul,
.legal-inner ol {
  margin: 0 0 16px;
  padding-left: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.legal-inner ul li,
.legal-inner ol li {
  font-size: 0.95rem;
  color: var(--light-text-secondary);
  line-height: 1.8;
  padding-left: 20px;
  position: relative;
}

.legal-inner ul li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--accent-on-light);
  font-size: 0.8rem;
}

.legal-inner ol { counter-reset: legal-counter; }

.legal-inner ol li { counter-increment: legal-counter; }

.legal-inner ol li::before {
  content: counter(legal-counter) '.';
  position: absolute;
  left: 0;
  color: var(--accent-on-light);
  font-size: 0.85rem;
  font-weight: 600;
}

.legal-inner hr {
  border: none;
  border-top: 1px solid var(--light-border);
  margin: 56px 0;
}

@media (max-width: 1024px) {
  .page-hero { padding: 160px 32px 72px; }
  .legal { padding: 72px 32px 120px; }
}

@media (max-width: 768px) {
  .page-hero { padding: 140px 20px 60px; }
  .page-hero-ghost { display: none; }
  .legal { padding: 60px 20px 100px; }
}
