/* =============================================
   IM INNEREN — Tiefgründiges Design
   ============================================= */

:root {
  --bg-deep:    #0c0c12;
  --bg-dark:    #111118;
  --bg-mid:     #161622;
  --bg-surface: #1c1c2a;
  --bg-card:    #1e1e2e;

  --gold:       #c9a96e;
  --gold-light: #e0c48a;
  --gold-dim:   #a07e4a;

  --text:       #e4ddd0;
  --text-dim:   #aba098;
  --text-muted: #bfb5a8;
  --text-faint: #8a8480;

  --border:       rgba(201, 169, 110, 0.15);
  --border-dim:   rgba(255, 255, 255, 0.06);
  --border-card:  rgba(255, 255, 255, 0.04);
  --border-gold:  rgba(201, 169, 110, 0.45);

  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'Inter', system-ui, sans-serif;

  --radius: 4px;
  --nav-h: 68px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  background: var(--bg-deep);
  color: var(--text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* BACKGROUND TEXTURE — subtle dot grid */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(201, 169, 110, 0.06) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
  z-index: 0;
}

/* =============================================
   NAVBAR
   ============================================= */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  background: rgba(12, 12, 18, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-dim);
  transition: background 0.3s, border-color 0.3s;
}

.navbar.scrolled {
  background: rgba(12, 12, 18, 0.97);
  border-bottom-color: var(--border);
}

.nav-inner {
  max-width: 100%;
  margin: 0;
  padding: 0 3rem;
  height: 100%;
  display: flex;
  align-items: center;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-left: auto;
  flex-shrink: 0;
}

/* Mobile overlay — eigener Stacking Context außerhalb der Navbar */
.nav-overlay {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  bottom: auto;
  z-index: 200;
  background: var(--bg-deep);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 1.5rem 0 2rem;
  gap: 0.25rem;
}

.nav-overlay.open { display: flex; }

.nav-overlay-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}

.nav-overlay-links a {
  display: block;
  font-size: 1.1rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
  text-decoration: none;
  padding: 0.85rem 2.5rem;
  border-radius: var(--radius);
  transition: color 0.2s, background 0.2s;
}

.nav-overlay-links a:hover {
  color: var(--gold-light);
  background: rgba(201, 169, 110, 0.08);
}

.nav-logo {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--gold-light);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  letter-spacing: 0.05em;
  transition: opacity 0.2s;
}

.nav-logo:hover { opacity: 0.75; }

.logo-mark {
  color: var(--gold);
  font-size: 1rem;
}

.logo-sub {
  font-size: 0.95em;
  color: var(--gold-dim);
  margin-left: 0.7rem;
  font-weight: 300;
  letter-spacing: 0.04em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-dim);
  text-decoration: none;
  padding: 0.45rem 0.8rem;
  border-radius: var(--radius);
  transition: color 0.2s, background 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold-light);
  background: rgba(201, 169, 110, 0.08);
}

/* Theme toggle button */
.theme-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: rgba(201, 169, 110, 0.07);
  border: 1px solid var(--border-dim);
  border-radius: 50%;
  cursor: pointer;
  color: var(--text-dim);
  transition: background 0.2s, border-color 0.2s, color 0.2s;
  flex-shrink: 0;
}

.theme-toggle:hover {
  background: rgba(201, 169, 110, 0.15);
  border-color: var(--border);
  color: var(--gold-light);
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 110;
  margin-left: auto;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--text-dim);
  transition: transform 0.3s ease, opacity 0.3s ease, width 0.3s ease;
  transform-origin: center;
}

/* → X */
.nav-toggle.open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.nav-toggle.open span:nth-child(2) {
  opacity: 0;
  width: 0;
}

.nav-toggle.open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* =============================================
   HERO
   ============================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: calc(var(--nav-h) + 4rem) 2rem 6rem;
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 40%, rgba(201, 169, 110, 0.07) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 80% 80%, rgba(100, 80, 180, 0.06) 0%, transparent 60%);
  pointer-events: none;
}

/* Decorative lines */
.hero::after {
  content: '';
  position: absolute;
  top: 0; left: 50%; transform: translateX(-50%);
  width: 1px;
  height: 144px;
  background: linear-gradient(to bottom, transparent 0%, var(--gold-dim) 50%, transparent 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 700px;
}

.hero-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2rem;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}

.hero-title em {
  font-style: italic;
  color: var(--gold-light);
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--text-dim);
  max-width: 480px;
  margin: 0 auto 2.5rem;
  font-weight: 300;
}

.btn-scroll {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gold);
  text-decoration: none;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid var(--border);
  padding: 0.7rem 1.5rem;
  border-radius: 40px;
  transition: all 0.25s;
}

.btn-scroll:hover {
  background: rgba(201, 169, 110, 0.1);
  border-color: var(--gold-dim);
  transform: translateY(2px);
}

.hero-quote-badge {
  position: absolute;
  bottom: 3rem;
  right: 3rem;
  max-width: 240px;
  border-left: 2px solid var(--gold-dim);
  padding-left: 1.2rem;
  z-index: 1;
}

.hero-quote-badge p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--text-dim);
  line-height: 1.6;
}

/* =============================================
   BAND
   ============================================= */
.band {
  background: var(--bg-surface);
  border-top: 1px solid var(--border-dim);
  border-bottom: 1px solid var(--border-dim);
  padding: 1rem 0;
  overflow: hidden;
}

.band-inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 0 2rem;
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-dim);
  flex-wrap: wrap;
  justify-content: center;
  font-weight: 400;
}

.band-inner .sep {
  color: var(--gold-dim);
  font-size: 0.85rem;
}

/* =============================================
   SECTIONS — Base
   ============================================= */
.section {
  position: relative;
  padding: 8rem 0;
  z-index: 1;
}

.section-dark  { background: var(--bg-dark); }
.section-mid   { background: var(--bg-mid); }
.section-tools { background: var(--bg-deep); }
.section-final {
  background: linear-gradient(to bottom, var(--bg-mid), var(--bg-deep));
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* section-label removed */

/* Two-column grid */
.section-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
  margin-top: 1rem;
}

.section-grid.reverse {
  direction: rtl;
}

.section-grid.reverse > * {
  direction: ltr;
}

.section-text h2,
.section-split-heading {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 1.75rem;
}

.section-split-heading {
  margin-bottom: 2.5rem;
}

.heading-vs {
  font-style: normal;
  color: var(--text);
  font-size: 1.2em;
}

.section-text h2 em,
.section-split-heading em {
  font-style: italic;
  color: var(--gold-light);
}

.section-text .lead {
  font-size: 1.15rem;
  color: var(--text);
  font-weight: 300;
  margin-bottom: 1.25rem;
  line-height: 1.65;
}

.section-text p {
  font-size: 1.05rem;
  color: var(--text-dim);
  margin-bottom: 1.1rem;
}

.section-text blockquote {
  border-left: 2px solid var(--gold);
  padding: 0.75rem 0 0.75rem 1.5rem;
  margin: 1.75rem 0;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--gold-light);
  line-height: 1.55;
}

/* Centered heading layout */
.section-center-title {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--text);
  text-align: center;
  margin-bottom: 1.5rem;
}

.section-center-title em {
  font-style: italic;
  color: var(--gold-light);
}

.section-center-lead {
  text-align: center;
  font-size: 1.1rem;
  color: var(--text-dim);
  max-width: 580px;
  margin: 0 auto 4rem;
  font-weight: 300;
}

/* =============================================
   SECTION ASIDE CARDS
   ============================================= */
.card-highlight {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 1.5rem;
}

.card-icon {
  font-size: 1.75rem;
  margin-bottom: 1rem;
  color: var(--gold);
}

.card-highlight h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 1rem;
}

.card-highlight ul {
  list-style: none;
}

.card-highlight li {
  font-size: 1rem;
  color: var(--text-dim);
  padding: 0.4rem 0;
  border-bottom: 1px solid var(--border-dim);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.card-highlight li::before {
  content: '—';
  color: var(--gold-dim);
  font-size: 0.75rem;
  flex-shrink: 0;
}

.card-highlight li:last-child { border-bottom: none; }

.aurelius-quote {
  padding: 1.5rem;
  border: 1px solid var(--border-card);
  border-radius: 8px;
  background: rgba(201, 169, 110, 0.04);
}

.aurelius-quote p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
  line-height: 1.6;
}

.aurelius-quote cite {
  font-size: 0.88rem;
  letter-spacing: 0.08em;
  color: var(--gold);
  font-style: normal;
}

/* =============================================
   IDENTITY SECTION
   ============================================= */
.identity-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-bottom: 3.5rem;
}

.identity-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: 8px;
  padding: 1.75rem;
  position: relative;
  transition: border-color 0.25s, transform 0.25s;
}

.identity-card:hover {
  border-color: var(--border);
  transform: translateY(-2px);
}

.identity-cross {
  font-size: 1.25rem;
  color: var(--gold-dim);
  margin-bottom: 0.75rem;
  font-family: var(--font-serif);
}

.identity-card h4 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 0.75rem;
}

.identity-card p {
  font-size: 1rem;
  color: var(--text-dim);
  line-height: 1.65;
}

.identity-answer {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  border-top: 1px solid var(--border-dim);
  padding-top: 3rem;
}

.identity-question {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-style: italic;
  color: var(--gold-light);
  margin-bottom: 1.5rem;
}

.identity-answer p {
  font-size: 1.05rem;
  color: var(--text-dim);
  margin-bottom: 1rem;
}

/* =============================================
   TIME VISUAL
   ============================================= */
.time-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  padding: 2rem;
}

.time-ring {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.time-ring::before {
  content: '';
  position: absolute;
  inset: 8px;
  border-radius: 50%;
  border: 1px dashed rgba(201, 169, 110, 0.35);
}

.time-ring::after {
  content: '';
  position: absolute;
  inset: 20px;
  border-radius: 50%;
  border: 1px solid rgba(201, 169, 110, 0.2);
}

.time-center {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(201, 169, 110, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.time-center span {
  font-family: var(--font-serif);
  font-size: 0.85rem;
  color: var(--gold);
  letter-spacing: 0.05em;
}

.time-caption {
  text-align: center;
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.6;
  letter-spacing: 0.03em;
}

/* =============================================
   TOOLS GRID
   ============================================= */
.tools-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 3rem;
}

.tool-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: 8px;
  padding: 1.75rem;
  transition: border-color 0.3s, transform 0.3s;
  position: relative;
  overflow: hidden;
}

.tool-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-dim), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.tool-card:hover {
  border-color: var(--border);
  transform: translateY(-3px);
}

.tool-card:hover::before {
  opacity: 1;
}

.tool-icon {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--gold);
  display: block;
}

.tool-card h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 0.75rem;
}

.tool-card p {
  font-size: 1rem;
  color: var(--text-dim);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.tool-key {
  font-size: 0.85rem;
  color: var(--text-dim);
  letter-spacing: 0.04em;
  border-top: 1px solid var(--border-dim);
  padding-top: 0.75rem;
}

.tool-key strong {
  color: var(--gold);
}

.tools-footer {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  padding: 2.5rem;
  border: 1px solid var(--border-card);
  border-radius: 8px;
  background: rgba(201, 169, 110, 0.03);
}

.tools-footer p {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: var(--text-dim);
  font-style: italic;
  line-height: 1.75;
}

.tools-footer em {
  color: var(--gold-light);
  font-style: normal;
}

/* =============================================
   COMPARE BLOCK
   ============================================= */
.compare-block {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: 8px;
  overflow: hidden;
}

.compare-item {
  padding: 1.75rem;
}

.compare-item h4 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--gold-light);
  margin-bottom: 1rem;
}

.compare-item ul {
  list-style: none;
}

.compare-item li {
  font-size: 1rem;
  color: var(--text-dim);
  padding: 0.35rem 0;
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.compare-item li::before {
  content: '·';
  color: var(--gold-dim);
  font-size: 1.2rem;
  line-height: 1;
  flex-shrink: 0;
}

.compare-divider {
  text-align: center;
  padding: 0.75rem;
  background: var(--border-dim);
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.6rem;
  color: var(--gold);
}

/* =============================================
   FINAL SECTION
   ============================================= */
.final-content {
  max-width: 760px;
  margin: 0 auto;
}

.final-content h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 300;
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 2.5rem;
}

.final-content h2 em {
  font-style: italic;
  color: var(--gold-light);
}

.final-content .lead {
  font-size: 1.15rem;
  color: var(--text);
  font-weight: 300;
  margin-bottom: 1.25rem;
}

.final-content p {
  font-size: 1.05rem;
  color: var(--text-dim);
  margin-bottom: 1.25rem;
}

.final-affirmations {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 3.5rem 0;
  border-left: 2px solid var(--gold-dim);
}

.affirmation {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: var(--text-muted);
  padding: 1.25rem 2rem;
  border-bottom: 1px solid var(--border-dim);
  line-height: 1.6;
}

.affirmation:last-child { border-bottom: none; }

.final-closing {
  text-align: center;
  padding: 3rem 0 1rem;
}

.closing-mark {
  font-size: 1.75rem;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.closing-text {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--text-muted);
  font-weight: 300;
}

.closing-text em {
  font-style: italic;
  color: var(--gold-light);
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: var(--bg-deep);
  border-top: 1px solid var(--border-dim);
  padding: 3rem 2rem;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  text-align: center;
}

.footer-logo {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  transition: opacity 0.2s;
}

.footer-logo:hover { opacity: 0.75; }

.footer-motto {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--text-dim);
}

.footer-copy {
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-faint);
}

.footer-divider {
  width: 55%;
  max-width: 360px;
  height: 2px;
  display: block;
  margin: 0.25rem auto;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 0.25rem;
}

.footer-link {
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-dim);
  padding: 0;
  transition: color 0.2s;
}

.footer-link:hover { color: var(--gold); }

a.footer-link {
  text-decoration: none;
}

.footer-link-sep {
  color: var(--text-faint);
  font-size: 0.75rem;
}

.footer-legal {
  font-size: 0.78rem;
  color: var(--text-faint);
  max-width: 560px;
  line-height: 1.6;
}

/* =============================================
   MODALS
   ============================================= */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 500;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.modal-overlay.open { display: flex; }

.modal-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 2.5rem;
  max-width: 680px;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  position: relative;
  scrollbar-width: thin;
}

.modal-box--sm { max-width: 480px; }

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-dim);
  font-size: 1rem;
  line-height: 1;
  padding: 0.25rem 0.5rem;
  border-radius: var(--radius);
  transition: color 0.2s, background 0.2s;
}

.modal-close:hover {
  color: var(--text);
  background: var(--border-dim);
}

.modal-title {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--text);
  margin-bottom: 0.4rem;
}

.modal-sub {
  font-size: 0.9rem;
  color: var(--text-dim);
  margin-bottom: 1.75rem;
  font-style: italic;
}

.modal-intro {
  font-size: 1rem;
  color: var(--text-dim);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-style: italic;
  border-left: 2px solid var(--gold-dim);
  padding-left: 1rem;
}

.modal-box h3 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--gold);
  margin: 1.5rem 0 0.5rem;
}

.modal-box h4 {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text);
  margin: 1rem 0 0.35rem;
  letter-spacing: 0.03em;
}

.modal-box p {
  font-size: 0.92rem;
  color: var(--text-dim);
  line-height: 1.7;
  margin-bottom: 0.6rem;
}

.modal-box a {
  color: var(--gold);
  text-decoration: none;
}

.modal-box a:hover { text-decoration: underline; }

.modal-source {
  font-size: 0.78rem !important;
  color: var(--text-faint) !important;
  margin-top: 1.5rem;
}

/* Kontakt-Formular */
.kontakt-form { display: flex; flex-direction: column; gap: 1rem; }

.form-group { display: flex; flex-direction: column; gap: 0.35rem; }

.form-group label {
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.form-group input,
.form-group textarea {
  background: var(--bg-surface);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius);
  padding: 0.65rem 0.9rem;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s;
  resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--gold-dim);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-faint);
}

.form-submit {
  align-self: flex-end;
  background: var(--gold-dim);
  color: var(--bg-deep);
  border: none;
  border-radius: var(--radius);
  padding: 0.65rem 1.75rem;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s;
}

.form-submit:hover { background: var(--gold); }

/* =============================================
   SCROLL REVEAL ANIMATIONS
   ============================================= */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 900px) {
  .section-grid,
  .section-grid.reverse {
    grid-template-columns: 1fr;
    gap: 3rem;
    direction: ltr;
  }

  .section-grid.reverse > * { direction: ltr; }

  .tools-grid { grid-template-columns: repeat(3, 1fr); }
  .identity-grid { grid-template-columns: repeat(2, 1fr); }

  .hero-quote-badge { display: none; }
}

@media (max-width: 1130px) {
  .nav-toggle { display: flex; }
  .nav-inner { padding: 0 1.25rem; }

  /* Desktop nav-right verstecken, Overlay übernimmt */
  .nav-right--desktop {
    display: none !important;
  }

  .theme-toggle {
    width: 44px;
    height: 44px;
  }

  .section { padding: 5rem 0; }

  .tools-grid { grid-template-columns: repeat(2, 1fr); }

  .hero-title    { font-size: 2.14rem; }
  .hero-eyebrow  { font-size: 0.58rem; }
  .hero-sub      { font-size: 0.82rem; }

  .section-text h2,
  .section-split-heading,
  .section-center-title { font-size: clamp(1.4rem, 4vw, 2rem); }

  .section-text .lead,
  .final-content .lead  { font-size: 0.84rem; }

  .section-text p,
  .final-content p      { font-size: 0.84rem; }

  .footer-motto  { font-size: 0.92rem; }
  .footer-copy   { font-size: 0.68rem; }
  .footer-legal  { font-size: 0.62rem; }

  .btn-scroll {
    font-size: 0.68rem;
    padding: 0.6rem 1.28rem;
  }

  .nav-overlay-links a {
    font-size: 0.94rem;
    padding: 0.72rem 2.13rem;
  }

  .theme-toggle {
    width: 37px;
    height: 37px;
  }

  .form-submit {
    font-size: 0.72rem;
    padding: 0.55rem 1.49rem;
  }

  .band-inner { gap: 1rem; }

  .theme-toggle {
    width: 44px;
    height: 44px;
  }
}

@media (max-width: 385px) {
  .nav-logo { font-size: 1.125rem; }

  .logo-dash { display: none; }
}

@media (max-width: 730px) {
  .section-text .lead,
  .final-content .lead { font-size: 1.05rem; }

  .identity-card h4,
  .tool-card h3,
  .card-highlight h3 { font-size: 0.72rem; }

  .identity-card p,
  .tool-card p,
  .card-highlight li { font-size: 0.65rem; }

  .tool-key { font-size: 0.55rem; }

  .tool-icon { margin-bottom: 0.5rem; }

  .compare-item h4 { font-size: 0.72rem; }
  .compare-item li { font-size: 0.65rem; }
  .compare-divider { font-size: 1.1rem; }
}

/* =============================================
   LIGHT MODE
   ============================================= */
body.light {
  --bg-deep:    #f0ece4;
  --bg-dark:    #e8e4dc;
  --bg-mid:     #e2ddd6;
  --bg-surface: #d8d3cb;
  --bg-card:    #ece8e0;

  --text:       #100e0a;
  --text-dim:   #2a2722;
  --text-muted: #3a3530;
  --text-faint: #3e3b36;

  --border:       rgba(90, 60, 20, 0.35);
  --border-dim:   rgba(0, 0, 0, 0.18);
  --border-card:  rgba(60, 35, 10, 0.55);
  --border-gold:  rgba(90, 60, 20, 0.55);

  --gold:       #6a4618;
  --gold-light: #4a3010;
  --gold-dim:   #7a5820;
}

body.light::before {
  background-image:
    radial-gradient(circle, rgba(140, 100, 50, 0.08) 1px, transparent 1px);
}

body.light .navbar {
  background: rgba(240, 236, 228, 0.90);
}

body.light .navbar.scrolled {
  background: rgba(240, 236, 228, 0.98);
}

body.light .hero-bg-pattern {
  background:
    radial-gradient(ellipse 80% 60% at 50% 40%, rgba(201, 169, 110, 0.12) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 80% 80%, rgba(100, 80, 180, 0.05) 0%, transparent 60%);
}

body.light .nav-right {
  background: rgba(240, 236, 228, 0.98);
}

body.light .closing-text em      { color: var(--gold-light); }
