:root {
  --ink:    #0f1117;
  --paper:  #f5f2ec;
  --accent: #1a3a5c;
  --gold:   #b89a5a;
  --light:  #e8e4db;
  --muted:  #6b6660;
  --white:  #ffffff;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--paper);
  color: var(--ink);
  font-size: 17px;
  line-height: 1.7;
}

/* HEADER */
header {
  background: var(--accent);
  color: var(--white);
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 2px solid var(--gold);
}
.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--white);
  text-decoration: none;
}
.logo span { color: var(--gold); }
nav a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  margin-left: 2rem;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: color 0.2s;
}
nav a:hover { color: var(--gold); }

.menu-toggle {
  display: none;
}

@media (max-width: 768px) {
  header {
    position: relative;
  }

  .menu-toggle {
    display: block;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
  }

  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    padding: 20px;
    flex-direction: column;
    gap: 15px;
    z-index: 999;
  }

  .main-nav.active {
    display: flex;
  }

  .main-nav a {
    display: block;
  }
}

/* FOOTER */
footer {
  background: var(--ink);
  color: rgba(255,255,255,0.4);
  text-align: center;
  padding: 2rem;
  font-size: 0.8rem;
  border-top: 2px solid var(--gold);
}
footer a { color: var(--gold); text-decoration: none; }
footer img { margin-right: 15px; vertical-align: -5px; width: 30px; height: 30px; }

/* SECTION BASE */
section { padding: 5rem 2rem; }
.container { max-width: 960px; margin: 0 auto; }
.section-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}
h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}
p { color: var(--muted); margin-bottom: 1rem; }
p strong { color: var(--ink); }
.divider { width: 48px; height: 2px; background: var(--gold); margin: 1.5rem 0; }

/* BUTTONS */
.btn-primary {
  background: var(--gold);
  color: var(--ink);
  padding: 0.9rem 2.2rem;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-decoration: none;
  text-transform: uppercase;
  transition: opacity 0.2s;
  display: inline-block;
}
.btn-primary:hover { opacity: 0.85; }
.btn-outline {
  border: 1px solid rgba(255,255,255,0.4);
  color: var(--white);
  padding: 0.9rem 2.2rem;
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-decoration: none;
  text-transform: uppercase;
  transition: border-color 0.2s;
  display: inline-block;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

/* HERO */
.hero {
  background: var(--accent);
  color: var(--white);
  padding: 6rem 2rem 5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(184,154,90,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero-label {
  display: inline-block;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.4rem 1.2rem;
  margin-bottom: 2rem;
}
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.15;
  max-width: 820px;
  margin: 0 auto 1.5rem;
}
.hero h1 em { font-style: italic; color: var(--gold); }
.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.75);
  max-width: 600px;
  margin: 0 auto 3rem;
  font-weight: 300;
}
.hero-cta { display: inline-flex; gap: 1rem; flex-wrap: wrap; justify-content: center; }

/* VOR / NACH */
.transformation { background: var(--white); }
.vor-nach-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--light);
  margin-top: 2.5rem;
}
.vor-box, .nach-box { padding: 2rem 2.5rem; }
.vor-box { background: var(--white); }
.nach-box { background: var(--accent); color: var(--white); }
.box-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.5rem;
}
.nach-box .box-label { color: var(--gold); }
.vor-item, .nach-item { display: flex; gap: 1rem; margin-bottom: 1.25rem; font-size: 0.95rem; }
.vor-item { color: var(--muted); }
.nach-item { color: rgba(255,255,255,0.9); }
.vor-item::before { content: '—'; color: var(--light); flex-shrink: 0; }
.nach-item::before { content: '✓'; color: var(--gold); flex-shrink: 0; font-weight: 700; }

/* FÜR WEN */
.fuer-wen { background: var(--paper); }
.berufe-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}
.beruf-card { background: var(--white); border-top: 3px solid var(--gold); padding: 1.5rem; }
.beruf-icon { font-size: 1.5rem; margin-bottom: 0.75rem; }
.beruf-card h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.4rem;
}
.beruf-card p { font-size: 0.82rem; color: var(--muted); margin: 0; }
.warning-box {
  background: var(--accent);
  color: var(--white);
  padding: 2rem 2.5rem;
  margin-top: 2.5rem;
  border-left: 4px solid var(--gold);
}
.warning-box p { color: rgba(255,255,255,0.85); margin: 0; font-size: 1rem; }
.warning-box strong { color: var(--gold); }

/* CURRICULUM */
.curriculum { background: var(--white); }
.module-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(420px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.module-card { border: 1px solid var(--light); padding: 2rem; position: relative; }
.module-num {
  position: absolute;
  top: -1px;
  left: -1px;
  background: var(--gold);
  color: var(--ink);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 0.3rem 0.75rem;
  text-transform: uppercase;
}
.module-card h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  margin: 1.5rem 0 1rem;
  color: var(--ink);
}
.module-card ul { list-style: none; padding: 0; }
.module-card ul li {
  font-size: 0.88rem;
  color: var(--muted);
  padding: 0.4rem 0;
  border-bottom: 1px solid var(--light);
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
}
.module-card ul li:last-child { border-bottom: none; }
.module-card ul li::before { content: '›'; color: var(--gold); font-weight: 700; flex-shrink: 0; }

/* METHODE */
.methode { background: var(--accent); color: var(--white); }
.methode .section-label { color: var(--gold); }
.methode h2 { color: var(--white); }
.methode p { color: rgba(255,255,255,0.7); }
.methode-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(255,255,255,0.08);
  margin-top: 2.5rem;
}
.methode-item { background: rgba(255,255,255,0.03); padding: 2rem; }
.methode-item .num {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  color: rgba(184,154,90,0.25);
  font-weight: 900;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.methode-item h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.methode-item p { font-size: 0.85rem; color: rgba(255,255,255,0.55); margin: 0; }
.niveaus {
  margin-top: 3rem;
  background: rgba(255,255,255,0.05);
  padding: 2rem;
  border-left: 3px solid var(--gold);
}
.niveaus h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.niveau-row { display: flex; gap: 1rem; margin-bottom: 0.5rem; font-size: 0.88rem; color: rgba(255,255,255,0.7); }
.niveau-row strong { color: var(--white); min-width: 140px; }

/* ORT */
.ort { background: var(--paper); }
.ort-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; margin-top: 2rem; }
.ort-detail-item { display: flex; gap: 1rem; margin-bottom: 1.25rem; align-items: flex-start; }
.ort-detail-item .icon { font-size: 1.1rem; flex-shrink: 0; margin-top: 0.1rem; }
.ort-detail-item div { font-size: 0.92rem; color: var(--muted); }
.ort-detail-item div strong { color: var(--ink); display: block; }
.tagesplan { background: var(--white); border: 1px solid var(--light); padding: 2rem; }
.tagesplan h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.time-row { display: flex; gap: 1rem; padding: 0.5rem 0; border-bottom: 1px solid var(--light); font-size: 0.85rem; }
.time-row:last-child { border-bottom: none; }
.time { min-width: 90px; font-weight: 600; color: var(--accent); }
.activity { color: var(--muted); }
.time-row.highlight .activity { color: var(--ink); font-weight: 500; }
.time-row.free .activity { color: var(--gold); }
.week-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 1.25rem 0 0.5rem;
}

/* BARBARA */
.barbara { background: var(--white); }
.barbara-grid { display: grid; grid-template-columns: 1fr 2fr; gap: 4rem; align-items: start; }
.barbara-visual {
  background: var(--accent);
  aspect-ratio: 3/4;
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
  position: relative;
  overflow: hidden;
}
.barbara-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(184,154,90,0.15) 0%, transparent 60%);
}
.barbara-visual .initials {
  font-family: 'Playfair Display', serif;
  font-size: 6rem;
  font-weight: 900;
  color: rgba(255,255,255,0.06);
  position: absolute;
  top: 1rem;
  right: 1rem;
  line-height: 1;
}
.barbara-visual .name-tag { position: relative; z-index: 1; }
.barbara-visual .name-tag .name { font-family: 'Playfair Display', serif; font-size: 1.2rem; color: var(--white); font-weight: 700; }
.barbara-visual .name-tag .role { font-size: 0.75rem; color: var(--gold); letter-spacing: 0.1em; text-transform: uppercase; }
.stat-row { display: flex; gap: 2rem; margin: 2rem 0; flex-wrap: wrap; }
.stat .num { font-family: 'Playfair Display', serif; font-size: 2.5rem; font-weight: 900; color: var(--accent); line-height: 1; }
.stat .label { font-size: 0.78rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.08em; }

/* PREIS */
.preis { background: var(--paper); }
.preis-main {
  background: var(--white);
  border-top: 4px solid var(--gold);
  padding: 3rem;
  max-width: 560px;
  margin-top: 2.5rem;
}
.preis-amount-big {
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.25rem;
}
.preis-main-sub { font-size: 0.88rem; color: var(--muted); margin-bottom: 2rem; }
.preis-includes-main { list-style: none; padding: 0; margin-bottom: 1.5rem; }
.preis-includes-main li {
  font-size: 0.92rem;
  color: var(--muted);
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--light);
  display: flex;
  gap: 0.6rem;
  align-items: center;
}
.preis-includes-main li:last-child { border-bottom: none; }
.preis-includes-main li::before { content: '✓'; color: var(--gold); font-weight: 700; flex-shrink: 0; }
.preis-unterkunft-note { font-size: 0.82rem; color: var(--muted); border-top: 1px solid var(--light); padding-top: 1rem; margin-top: 0.5rem; }
.preis-rate-note { font-size: 0.78rem; color: rgba(107,102,96,0.6); margin-top: 0.5rem; margin-bottom: 0; }

/* NACH DEM KURS */
.nach-kurs { background: var(--ink); color: var(--white); }
.nach-kurs .section-label { color: var(--gold); }
.nach-kurs h2 { color: var(--white); }
.nach-kurs p { color: rgba(255,255,255,0.65); }
.discord-box { background: rgba(255,255,255,0.04); border: 1px solid rgba(184,154,90,0.3); padding: 2.5rem; margin-top: 2.5rem; }
.discord-box h3 { font-family: 'DM Sans', sans-serif; font-size: 1rem; font-weight: 600; color: var(--white); margin-bottom: 1rem; }
.discord-points { list-style: none; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
.discord-points li { font-size: 0.88rem; color: rgba(255,255,255,0.6); display: flex; gap: 0.6rem; }
.discord-points li::before { content: '›'; color: var(--gold); font-weight: 700; }

/* CTA */
.cta-section { background: var(--accent); color: var(--white); text-align: center; padding: 6rem 2rem; }
.cta-section h2 { color: var(--white); max-width: 640px; margin: 0 auto 1rem; }
.cta-section p { color: rgba(255,255,255,0.7); max-width: 480px; margin: 0 auto 2.5rem; }
.cta-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.termin-badge {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  background: rgba(184,154,90,0.12);
  border: 1px solid rgba(184,154,90,0.3);
  padding: 1rem 2rem;
  margin-bottom: 3rem;
}
.termin-badge .t-label { font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); }
.termin-badge .t-date { font-family: 'Playfair Display', serif; font-size: 1.4rem; font-weight: 700; color: var(--white); }
.termin-badge .t-sub { font-size: 0.78rem; color: rgba(255,255,255,0.5); }

/* PAGE CONTENT (Impressum, Datenschutz etc.) */
.page-content {
  background: var(--white);
  padding: 5rem 2rem;
}
.page-content .container { max-width: 760px; }
.page-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.5rem;
}
.page-content h2 {
  font-size: 1.3rem;
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
  color: var(--ink);
}
.page-content h3 {
  font-size: 1.1rem;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--ink);
}
.page-content p { color: var(--muted); margin-bottom: 1rem; }
.page-content a { color: var(--accent); }
.page-content ul, .page-content ol {
  padding-left: 1.5rem;
  color: var(--muted);
  margin-bottom: 1rem;
}
.page-content li { margin-bottom: 0.4rem; }

/* RESPONSIVE */
@media (max-width: 768px) {
  nav { display: none; }
  .vor-nach-grid { grid-template-columns: 1fr; }
  .methode-grid { grid-template-columns: 1fr; }
  .ort-grid { grid-template-columns: 1fr; }
  .barbara-grid { grid-template-columns: 1fr; }
  .discord-points { grid-template-columns: 1fr; }
  .module-grid { grid-template-columns: 1fr; }
}
