@import url("https://assets.mlcdn.com/fonts.css?version=1781001");

:root {
  --weinrot:    #870059;
  --weinrot-dk: #6a0047;
  --gold:       #C9A227;
  --gold-lt:    #D4AF37;
  --creme:      #FDF6EC;
  --creme-dk:   #F5ECD8;
  --weiss:      #ffffff;
  --grau-lt:    #E8E0D8;
  --grau-mid:   #999090;
  --text:       #505050;
  --text-dk:    #2a2020;
  --font-heading: 'Lora', Georgia, serif;
  --font-body:    'Mulish', 'Muli', sans-serif;
}

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

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

body {
  font-family: var(--font-body);
  color: var(--text);
  line-height: 1.8;
  background: var(--creme);
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--weinrot); text-decoration: none; }

.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3 {
  font-family: var(--font-heading);
  color: var(--weinrot);
  line-height: 1.25;
}
h1 { font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 700; }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.4rem); font-weight: 600; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); font-weight: 600; }
h1 em, h2 em, h3 em { font-style: italic; }

/* ── HEADER ── */
.site-header {
  background: var(--weiss);
  border-bottom: 1px solid var(--grau-lt);
  padding: 18px 0;
  text-align: center;
}
.site-header__name {
  font-family: var(--font-heading);
  color: var(--weinrot);
  font-size: 1.3rem;
  font-weight: 700;
  text-decoration: none;
}
.site-header__sub {
  font-family: var(--font-body);
  font-variant: small-caps;
  color: var(--grau-mid);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  display: block;
  margin-top: 2px;
}

/* ── BUTTONS ── */
.btn--primary {
  background: var(--weinrot);
  color: #fff;
  font-family: var(--font-body);
  font-weight: 700;
  padding: 18px 48px;
  border-radius: 4px;
  border: none;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s;
}
.btn--primary:hover { background: var(--weinrot-dk); }

.btn--gold {
  background: var(--gold-lt);
  color: #fff;
  font-family: var(--font-body);
  font-weight: 700;
  padding: 18px 48px;
  border-radius: 4px;
  border: none;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s;
}
.btn--gold:hover { background: #b8911f; }

.btn--gold-outline {
  background: transparent;
  color: var(--gold-lt);
  border: 2px solid var(--gold-lt);
  font-family: var(--font-body);
  font-weight: 700;
  padding: 16px 44px;
  border-radius: 4px;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: all 0.2s;
}
.btn--gold-outline:hover { background: var(--gold-lt); color: #fff; }

/* ── HERO ── */
.hero {
  background: url('claude-hg.jpg') center center / cover no-repeat;
  position: relative;
  padding: 80px 0 72px;
  text-align: center;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(253, 246, 236, 0.9);
}
.hero .container {
  position: relative;
  z-index: 1;
}
.hero__badge {
  display: inline-block;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 6px 18px;
  border-radius: 20px;
  margin-bottom: 28px;
  letter-spacing: 0.03em;
}
.hero__image {
  max-width: 680px;
  width: 100%;
  border-radius: 8px;
  margin: 0 auto 32px;
}
.hero h1 { margin-bottom: 8px; font-size: clamp(2.8rem, 6vw, 4.2rem); }
.hero__tagline {
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 3vw, 1.6rem);
  font-style: italic;
  color: var(--gold);
  margin-bottom: 28px;
}
.hero__sub {
  max-width: 640px;
  margin: 0 auto 36px;
  font-size: 1.05rem;
  line-height: 1.7;
}
.hero__trust {
  margin-top: 18px;
  font-size: 0.82rem;
  color: var(--grau-mid);
}

/* ── EARLYBIRD BANNER ── */
.earlybird-banner {
  background: var(--gold);
  color: #fff;
  text-align: center;
  padding: 12px 24px;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
}

/* ── STATS BAR ── */
.stats-bar {
  background: var(--weinrot);
  padding: 36px 0;
}
.stats-bar__grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
}
.stats-bar__item {
  text-align: center;
  padding: 12px 36px;
  color: #fff;
  flex: 1;
}
.stats-bar__item + .stats-bar__item {
  border-left: 1px solid rgba(255,255,255,0.15);
}
.stats-bar__num {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  display: block;
  line-height: 1.2;
}
.stats-bar__label {
  font-size: 0.78rem;
  opacity: 0.85;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 4px;
  display: block;
}

/* ── SECTIONS ── */
.section {
  padding: 72px 0;
}
.section--white { background: var(--weiss); }
.section--creme { background: var(--creme); }
.section--creme-dk { background: var(--creme-dk); }
.section--weinrot {
  background: var(--weinrot);
  color: #fff;
}
.section--weinrot h2 { color: #fff; }
.section--weinrot p { color: rgba(255,255,255,0.9); }

.section h2 { margin-bottom: 28px; }
.section p + p { margin-top: 16px; }

.text-center { text-align: center; }

/* ── PROBLEM ── */
.problem p {
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}
.problem blockquote {
  border-left: 3px solid var(--gold);
  padding: 16px 24px;
  margin: 28px auto;
  max-width: 600px;
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--weinrot);
}

/* ── FÜR WEN ── */
.fuer-wen__list {
  max-width: 680px;
  margin: 0 auto 36px;
  list-style: none;
}
.fuer-wen__list li {
  padding: 12px 0;
  padding-left: 32px;
  position: relative;
  line-height: 1.7;
}
.fuer-wen__list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--weinrot);
  font-weight: 700;
  font-size: 1.1rem;
}
.fuer-wen__list strong { color: var(--text-dk); }

/* ── KURSINHALT ── */
.kurs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 36px;
}
.kurs-card {
  background: var(--weiss);
  border: 1px solid var(--grau-lt);
  border-radius: 6px;
  padding: 32px 28px;
}
.kurs-card__week {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 8px;
}
.kurs-card h3 { margin-bottom: 12px; }
.kurs-card p { font-size: 0.92rem; line-height: 1.7; }
.kurs-card--full { grid-column: 1 / -1; }

.kurs-format {
  margin-top: 36px;
  text-align: center;
  padding: 24px;
  background: var(--creme-dk);
  border-radius: 6px;
  font-size: 0.92rem;
}

/* ── BIO ── */
.bio-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.bio-photo {
  border-radius: 5px;
  transform: scaleX(-1);
  aspect-ratio: 3/4;
  object-fit: cover;
  width: 100%;
}
.bio-stats {
  list-style: none;
  margin-top: 24px;
  display: flex;
  gap: 24px;
}
.bio-stats li {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--weinrot);
}

/* ── TESTIMONIAL ── */
.testimonial-stripe {
  background: var(--weinrot);
  padding: 56px 0;
  text-align: center;
}
.testimonial-stripe blockquote {
  font-family: var(--font-heading);
  font-style: italic;
  color: #fff;
  font-size: 1.25rem;
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.6;
}
.testimonial-stripe cite {
  display: block;
  margin-top: 20px;
  font-style: normal;
  color: rgba(255,255,255,0.7);
  font-size: 0.85rem;
}

/* ── FAQ ── */
.faq-list {
  max-width: 680px;
  margin: 0 auto;
}
.faq-list details {
  background: var(--weiss);
  border: 1px solid var(--grau-lt);
  border-radius: 6px;
  margin-bottom: 12px;
}
.faq-list summary {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--weinrot);
  padding: 18px 24px;
  cursor: pointer;
  font-size: 1rem;
  list-style: none;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::before {
  content: "+";
  margin-right: 12px;
  font-weight: 700;
  font-size: 1.2rem;
}
.faq-list details[open] summary::before { content: "−"; }
.faq-list details div {
  padding: 0 24px 18px;
  line-height: 1.7;
  font-size: 0.95rem;
}

/* ── ANMELDUNG ── */
.anmeldung {
  text-align: center;
}
.anmeldung__card {
  background: var(--weiss);
  border: 2px solid var(--weinrot);
  border-radius: 8px;
  padding: 48px 40px;
  max-width: 600px;
  margin: 0 auto;
}
.anmeldung__preis {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--weinrot);
  margin: 20px 0 4px;
}
.anmeldung__earlybird {
  color: var(--gold);
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 16px;
}
.anmeldung__includes {
  list-style: none;
  margin: 20px 0 28px;
  font-size: 0.92rem;
}
.anmeldung__includes li { padding: 4px 0; }
.anmeldung__contact {
  margin-top: 20px;
  font-size: 0.85rem;
  color: var(--grau-mid);
}
.anmeldung__contact a { color: var(--weinrot); }

/* ── FINAL CTA ── */
.final-cta {
  text-align: center;
  padding: 72px 0;
}
.final-cta p {
  max-width: 560px;
  margin: 0 auto 32px;
}
.final-cta__sign {
  margin-top: 32px;
  font-size: 0.92rem;
  color: rgba(255,255,255,0.8);
}

/* ── FOOTER ── */
.site-footer {
  background: var(--weinrot-dk);
  padding: 28px 0;
  text-align: center;
}
.site-footer__links {
  margin-bottom: 10px;
}
.site-footer__links a {
  color: #ffffff;
  margin: 0 12px;
  font-size: 0.82rem;
  text-decoration: none;
}
.site-footer__links a:hover { text-decoration: underline; }
.site-footer__copy {
  color: #ffffff;
  font-size: 0.75rem;
}

/* ── DANKE SEITE ── */
.danke-content {
  text-align: center;
  padding: 80px 0;
  max-width: 600px;
  margin: 0 auto;
}
.danke-content h1 { margin-bottom: 24px; }
.danke-content p { margin-bottom: 16px; }
.danke-content .btn--gold-outline { margin-top: 32px; }
.danke-sign {
  margin-top: 36px;
  font-size: 0.92rem;
  color: var(--grau-mid);
}
.danke-billing {
  margin-top: 40px;
  font-size: 0.78rem;
  color: var(--grau-mid);
  line-height: 1.6;
}

/* ── RESPONSIVE ── */
@media (max-width: 760px) {
  .stats-bar__grid {
    flex-direction: column;
    gap: 0;
  }
  .stats-bar__item {
    padding: 16px 24px;
    min-width: 140px;
  }
  .stats-bar__item + .stats-bar__item {
    border-left: none;
    border-top: 1px solid rgba(255,255,255,0.15);
  }
  .kurs-grid { grid-template-columns: 1fr; }
  .bio-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .bio-grid .bio-text { order: 1; }
  .bio-grid .bio-img { order: 2; text-align: center; }
  .bio-photo { max-width: 320px; margin: 0 auto; }
  .bio-stats { flex-wrap: wrap; justify-content: center; }
  .anmeldung__card { padding: 36px 24px; }
}

@media (max-width: 480px) {
  .hero { padding: 56px 0 48px; }
  .btn--primary, .btn--gold { padding: 16px 32px; font-size: 0.88rem; }
  .section { padding: 56px 0; }
}
