/* =============================================
   MONDSCHÖN — Design System
   Redesigned: Earth-first palette, Serif headlines
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400;500;600&family=Plus+Jakarta+Sans:wght@300;400;500;600&display=swap');

:root {
  /* HINTERGRÜNDE — warm, nicht steril */
  --white: #FDFAF6;
  --white-warm: #F5F0E8;
  --sand: #EBE2D5;
  --sand-deep: #D8CCBB;

  /* AUBERGINE — Markenfarbe, Identität */
  --plum: #4A2F3D;           /* Rose-Aubergine: Akzent-Buchstaben, Nummern, Deko */
  --plum-light: #7B5B6A;     /* Heller Plum: für Nummern, dezente Akzente */
  --plum-soft: rgba(74,47,61, 0.08);  /* Hauch von Plum */

  /* TEAL — nur für interaktive Elemente */
  --teal: #5BA4A4;
  --teal-hover: #4A8E8E;
  --teal-soft: rgba(91,164,164, 0.08);
  --teal-deep: #3D7A7A;

  /* TEXT — aubergine-getönt, nie schwarz */
  --text: #2D2028;
  --text-sec: #5E4A54;
  --text-dim: #9B8E94;

  /* DARK SECTIONS — Aubergine Hintergrund */
  --dark: #4A2F3D;
  --dark-deep: #3A2230;
  --footer-bg: #4A2F3D;
  --footer-text: rgba(255,255,255, 0.7);

  /* LINIEN — aubergine-getönt */
  --border: rgba(74,47,61, 0.10);
  --border-warm: rgba(74,47,61, 0.18);

  /* FONTS */
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Plus Jakarta Sans', -apple-system, sans-serif;
}

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

body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* =============================================
   NAVIGATION
============================================= */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  padding: 18px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(253,250,246, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: all 0.4s ease;
}

.nav-brand {
  font-family: var(--font-serif);
  font-size: 34px;
  font-weight: 400;
  font-style: normal;
  color: var(--text);
  text-decoration: none;
  letter-spacing: 0.5px;
}

.nav-brand .a {
  font-weight: 600;
  color: var(--plum);
}

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

.nav-links a {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-sec);
  text-decoration: none;
  letter-spacing: 0.3px;
  transition: color 0.2s ease;
}

.nav-links a:hover { color: var(--text); }

.nav-links a.active { color: var(--teal); }

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 1.5px;
  background: var(--teal);
  border-radius: 1px;
}

.nav-cta {
  font-size: 13px !important;
  font-weight: 600 !important;
  color: white !important;
  background: var(--teal);
  padding: 10px 22px;
  border-radius: 8px;
  transition: all 0.2s ease !important;
}

.nav-cta:hover {
  background: var(--teal-hover) !important;
}

/* Burger Button */
.nav-burger {
  display: block;
  width: 28px;
  height: 20px;
  background: none;
  border: none;
  cursor: pointer;
  position: relative;
  padding: 0;
  z-index: 60;
}

.nav-burger span {
  display: block;
  width: 100%;
  height: 1.5px;
  background: var(--text);
  position: absolute;
  left: 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-burger span:nth-child(1) { top: 0; }
.nav-burger span:nth-child(2) { top: 9px; }
.nav-burger span:nth-child(3) { top: 18px; }

.nav-burger.active span:nth-child(1) {
  top: 9px;
  transform: rotate(45deg);
}

.nav-burger.active span:nth-child(2) { opacity: 0; }

.nav-burger.active span:nth-child(3) {
  top: 9px;
  transform: rotate(-45deg);
}

/* Drawer Overlay */
.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(45,27,46, 0.5);
  z-index: 55;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.drawer-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

/* Drawer */
.drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(380px, 85vw);
  background: var(--white);
  z-index: 56;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

.drawer.active { transform: translateX(0); }

.drawer-header {
  padding: 18px 28px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  border-bottom: 1px solid var(--border);
}

.drawer-close {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-sec);
  border-radius: 6px;
  transition: all 0.2s ease;
}

.drawer-close:hover {
  background: var(--sand);
  color: var(--text);
}

.drawer-nav { padding: 28px; flex: 1; }

.drawer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
}

.drawer-links li {
  border-bottom: 1px solid var(--border);
}

.drawer-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 4px;
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--text);
  text-decoration: none;
  transition: color 0.2s ease;
}

.drawer-links a:hover { color: var(--teal); }
.drawer-links a.active { color: var(--teal); }

.drawer-links a svg {
  width: 16px;
  height: 16px;
  color: var(--text-dim);
  transition: transform 0.2s ease;
}

.drawer-links a:hover svg { transform: translateX(3px); }

.drawer-cta {
  padding: 28px;
  border-top: 1px solid var(--border);
}

.drawer-cta .btn-primary {
  width: 100%;
  justify-content: center;
}

.drawer-footer {
  padding: 20px 28px;
  font-size: 12px;
  color: var(--text-dim);
  line-height: 1.6;
}

.drawer-footer a {
  color: var(--text-sec);
  text-decoration: none;
}

.drawer-footer a:hover { color: var(--text); }

/* Nav-Links versteckt — Drawer übernimmt */
.nav-links { display: none; }

/* =============================================
   COOKIE BANNER
============================================= */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: var(--white);
  border-top: 1px solid var(--border);
  box-shadow: 0 -2px 20px rgba(45,27,46, 0.06);
  padding: 20px 32px;
  display: none;
  animation: slideUp 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.cookie-banner.visible { display: block; }

@keyframes slideUp {
  from { transform: translateY(100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.cookie-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
}

.cookie-text {
  flex: 1;
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-sec);
}

.cookie-text a {
  color: var(--text);
  text-decoration: underline;
  text-decoration-color: var(--sand-deep);
  text-underline-offset: 2px;
}

.cookie-text a:hover { text-decoration-color: var(--text); }

.cookie-actions {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

.cookie-btn {
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
}

.cookie-btn-accept {
  background: var(--text);
  color: white;
}

.cookie-btn-accept:hover { background: #1E1220; }

.cookie-btn-decline {
  background: transparent;
  color: var(--text-sec);
  border: 1px solid var(--sand-deep);
}

.cookie-btn-decline:hover {
  border-color: var(--text-sec);
}

@media (max-width: 600px) {
  .cookie-inner {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }
  .cookie-actions { justify-content: stretch; }
  .cookie-btn { flex: 1; }
}

/* =============================================
   LEGAL PAGES (Impressum, Datenschutz)
============================================= */
.legal-content {
  max-width: 640px;
  margin: 0 auto;
  padding: 160px 24px 100px;
}

.legal-content h1 {
  font-family: var(--font-serif);
  font-size: clamp(36px, 6vw, 52px);
  font-weight: 400;
  font-style: normal;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 40px;
}

.legal-content h2 {
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.3px;
  color: var(--text);
  margin-top: 40px;
  margin-bottom: 12px;
}

.legal-content p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-sec);
  margin-bottom: 16px;
}

.legal-content a {
  color: var(--text);
  text-decoration: underline;
  text-decoration-color: var(--sand-deep);
  text-underline-offset: 2px;
}

.legal-content a:hover { text-decoration-color: var(--text); }

.legal-content ul {
  margin: 8px 0 16px 24px;
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-sec);
}

/* =============================================
   SUBPAGE HERO
============================================= */
.sub-hero {
  position: relative;
  padding: 160px 24px 100px;
  text-align: center;
  background: var(--white);
}

.sub-hero-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 20px;
  opacity: 0;
  animation: revealUp 0.8s ease 0.2s forwards;
}

.sub-hero-title {
  font-family: var(--font-serif);
  font-size: clamp(42px, 8vw, 72px);
  font-weight: 400;
  font-style: normal;
  line-height: 1.05;
  color: var(--text);
  margin-bottom: 24px;
  opacity: 0;
  animation: revealUp 0.8s ease 0.35s forwards;
}

.sub-hero-title strong {
  font-weight: 600;
  font-style: normal;
}

.sub-hero-title .o { color: var(--plum); }
h3 .o { color: var(--plum); }

.sub-hero-lead {
  font-size: clamp(16px, 2.5vw, 19px);
  font-weight: 400;
  line-height: 1.7;
  color: var(--text-sec);
  max-width: 560px;
  margin: 0 auto;
  opacity: 0;
  animation: revealUp 0.8s ease 0.5s forwards;
}

.hero-link,
.sub-hero-lead a {
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1.5px solid var(--teal);
  transition: color 0.2s, border-color 0.2s;
}

.hero-link:hover,
.sub-hero-lead a:hover {
  color: var(--teal);
}

/* =============================================
   CONTENT SECTIONS
============================================= */
.section {
  padding: 100px 24px;
}

.section-alt {
  background: var(--white-warm);
}

.section-warm {
  background: var(--sand);
}

.section-inner {
  max-width: 860px;
  margin: 0 auto;
}

.section-wide {
  max-width: 1100px;
  margin: 0 auto;
}

/* Separator */
.sep {
  height: 1px;
  background: var(--sand-deep);
}

/* Section header */
.s-head {
  text-align: center;
  margin-bottom: 55px;
}

.s-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 12px;
}

.s-title {
  font-family: var(--font-serif);
  font-size: clamp(30px, 4.5vw, 48px);
  font-weight: 400;
  font-style: normal;
  line-height: 1.15;
  color: var(--text);
}

.s-title strong {
  font-weight: 600;
  font-style: normal;
}

.s-intro {
  text-align: center;
  max-width: 520px;
  margin: 16px auto 0;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-sec);
}

/* =============================================
   CONTENT TYPOGRAPHY
============================================= */
.content h2 {
  font-family: var(--font-serif);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 400;
  font-style: normal;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 21px;
}

.content h2 strong {
  font-weight: 600;
  font-style: normal;
}

.content h3 {
  font-size: 17px;
  font-weight: 600;
  line-height: 1.3;
  color: var(--text);
  margin-bottom: 10px;
  margin-top: 34px;
}

.content p {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
  color: var(--text-sec);
  margin-bottom: 21px;
}

.content p:last-child { margin-bottom: 0; }

.highlight {
  color: var(--teal);
  font-weight: 500;
}

/* Pull quote */
.pull-quote {
  font-family: var(--font-serif);
  font-size: clamp(24px, 3.5vw, 34px);
  font-weight: 400;
  font-style: normal;
  line-height: 1.35;
  color: var(--text);
  text-align: center;
  max-width: 600px;
  margin: 55px auto;
  padding: 40px 0;
  border-top: 1px solid var(--sand-deep);
  border-bottom: 1px solid var(--sand-deep);
}

.pull-quote .em {
  font-weight: 600;
  font-style: normal;
  color: var(--teal);
}

/* =============================================
   SEQUENCE (FIVE MOVES Steps)
============================================= */
.sequence {
  display: flex;
  flex-direction: column;
}

.seq-step {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 34px;
  padding: 40px 0;
  border-bottom: 1px solid var(--sand-deep);
}

.seq-step:first-child {
  border-top: 1px solid var(--sand-deep);
}

.seq-label {
  text-align: right;
  padding-top: 4px;
}

.seq-name {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--teal);
}

.seq-num {
  font-family: var(--font-serif);
  font-size: 44px;
  font-weight: 300;
  color: var(--sand-deep);
  line-height: 1;
  margin-top: 4px;
}

.seq-body h3 {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 500;
  font-style: normal;
  color: var(--text);
  margin-bottom: 8px;
  margin-top: 0;
}

.seq-body p {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.75;
  color: var(--text-sec);
}

/* =============================================
   FORMAT CARDS
============================================= */
.formats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.format-card {
  background: var(--white);
  border-radius: 12px;
  padding: 36px 28px;
  border: 1px solid var(--border);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
}

.format-card:hover {
  transform: translateY(-3px);
}

.format-icon {
  font-size: 28px;
  margin-bottom: 16px;
  color: var(--teal);
}

.format-card h3 {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 500;
  font-style: normal;
  color: var(--text);
  margin-bottom: 6px;
  margin-top: 0;
}

.format-tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 16px;
}

.format-card p {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--text-sec);
  margin-bottom: 21px;
  flex: 1;
}

.course-card { overflow: hidden; padding: 0; }
.course-card-img { width: 100%; height: 180px; object-fit: cover; display: block; }
.course-card .format-tag,
.course-card h3,
.course-card p,
.course-card .course-meta,
.course-card .course-badge,
.course-card .course-spots,
.course-card .btn-sm { padding-left: 28px; padding-right: 28px; }
.course-card .format-tag { margin-top: 21px; }
.course-card .btn-sm { margin-bottom: 28px; }

.course-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--teal);
  margin-bottom: 8px;
}

.course-spots {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--earth-deep);
  margin-top: 4px;
  margin-bottom: 4px;
}

.course-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-sec);
  margin-bottom: 8px;
}

.course-meta span::before {
  content: '';
  display: inline-block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--teal);
  margin-right: 6px;
  vertical-align: middle;
}

.btn-sm {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--teal);
  text-decoration: none;
  transition: gap 0.2s ease;
}

.btn-sm:hover { gap: 10px; color: var(--earth-deep); }

.btn-sm svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

/* =============================================
   BUTTONS — Solid, confident, no gimmicks
============================================= */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--teal);
  color: white;
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  padding: 16px 32px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s ease;
}

.btn-primary:hover {
  background: var(--teal-hover);
}

/* Legacy class name support */
.btn-sage {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--teal);
  color: white;
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  padding: 16px 32px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s ease;
}

.btn-sage:hover {
  background: var(--teal-hover);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--text-sec);
  font-family: inherit;
  font-size: 15px;
  font-weight: 400;
  padding: 16px 32px;
  border: 1px solid var(--sand-deep);
  border-radius: 8px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s ease;
}

.btn-outline:hover {
  border-color: var(--text-sec);
  color: var(--text);
}

/* =============================================
   ABOUT / ÜBER MICH
============================================= */
.about {
  padding: 120px 24px;
  background: var(--white);
}

.about-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 60px;
  align-items: start;
}

.about-image img {
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
  aspect-ratio: 3 / 4;
}

.about-image-placeholder {
  width: 100%;
  aspect-ratio: 3 / 4;
  background: var(--sand);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 13px;
  color: var(--text-dim);
  font-size: 13px;
  letter-spacing: 1px;
  border: 1px dashed var(--sand-deep);
}

.about-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 16px;
}

.about-title {
  font-family: var(--font-serif);
  font-size: clamp(30px, 4vw, 42px);
  font-weight: 400;
  font-style: normal;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 30px;
}

.about-title strong {
  font-weight: 600;
  font-style: normal;
}

.about-text p {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.8;
  color: var(--text-sec);
  margin-bottom: 18px;
}

.about-text p:last-of-type { margin-bottom: 0; }

.about-links { margin-top: 34px; }

@media (max-width: 900px) {
  .about-inner {
    grid-template-columns: 1fr;
    max-width: 560px;
    gap: 40px;
  }

  .about-image-placeholder {
    max-width: 300px;
    margin: 0 auto;
  }

  .about { padding: 80px 24px; }
}

/* =============================================
   CTA SECTION
============================================= */
.cta-section {
  padding: 100px 24px;
  text-align: center;
  background: var(--white-warm);
  border-top: 1px solid var(--sand-deep);
}

.cta-content {
  max-width: 500px;
  margin: 0 auto;
}

.cta-content .s-title {
  margin-bottom: 16px;
}

.cta-content p {
  font-size: 16px;
  color: var(--text-sec);
  line-height: 1.7;
  margin: 0 auto 34px;
}

/* =============================================
   FOOTER
============================================= */
.footer {
  padding: 55px 24px;
  text-align: center;
  background: var(--footer-bg);
  color: var(--footer-text);
}

.footer-brand {
  font-family: var(--font-serif);
  font-size: 38px;
  font-weight: 400;
  font-style: normal;
  color: rgba(255,255,255, 0.9);
  margin-bottom: 12px;
}

.footer-brand .a {
  font-weight: 600;
  color: var(--teal);  /* Teal auf dunklem Plum-Hintergrund für Kontrast */
}

.footer p {
  font-size: 13px;
  color: var(--footer-text);
  line-height: 1.6;
}

.footer a {
  color: rgba(255,255,255, 0.5);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer a:hover { color: rgba(255,255,255, 0.85); }

.footer-emr {
  margin-top: 18px;
  margin-bottom: 4px;
}

.footer-emr img {
  height: 32px;
  width: auto;
  opacity: 0.7;
  transition: opacity 0.2s ease;
  filter: brightness(0) invert(1);
}

.footer-emr img:hover {
  opacity: 0.9;
}

/* =============================================
   ANIMATIONS — minimal, intentional
============================================= */
@keyframes revealUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes revealTitle {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: all 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =============================================
   RESPONSIVE
============================================= */
@media (max-width: 900px) {
  .formats {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .nav { padding: 14px 24px; }

  .sub-hero { padding: 130px 24px 80px; }

  .section { padding: 80px 24px; }

  .seq-step {
    grid-template-columns: 80px 1fr;
    gap: 21px;
  }

  .seq-num { font-size: 36px; }
}

@media (max-width: 480px) {
  .seq-step {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .seq-label {
    text-align: left;
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .seq-num { font-size: 28px; margin-top: 0; }
}
