/* ═══════════════════════════════════════════════════════════════
   DILEK DENIZ YILMAZ · GLOBAL DESIGN SYSTEM
   ═══════════════════════════════════════════════════════════════ */

/* SCHRIFTEN (Google Fonts) */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400;1,500;1,600;1,700&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;1,300;1,400;1,500&family=Allura&family=DM+Mono:wght@300;400&display=swap');

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 17px;
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  overflow-x: hidden;
}

@media (min-width: 768px) {
  body { font-size: 18px; }
}

/* ─────────────────────────────────────────────
   FARBVARIABLEN — Globales Design-System
   Jede Seite überschreibt --bg, --accent
   ──────────────────────────────────────────── */
:root {
  /* Standard-Werte (Startseite) */
  --bg: #F4F2EE;          /* Sehr hellgrau, fast weiß */
  --bg-card: #FFFFFF;
  --text: #1A1A1A;
  --text-soft: #5E5A52;
  --text-muted: #8B8378;
  --accent: #A38968;       /* Gold */
  --accent-soft: #C9A882;
  --accent-glow: #E8D4A8;
  --line: rgba(26, 26, 26, 0.08);
  --shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.06);

  /* Welt-Farben */
  --color-about: #2E4A66;       /* Tiefes Blau (Über mich) */
  --color-about-bg: linear-gradient(135deg, #DDE4ED 0%, #C8D4E2 100%);
  --color-works: #5E6850;       /* Sage (Werke) */
  --color-works-bg: linear-gradient(135deg, #EDF0E5 0%, #E0E5D5 100%);
  --color-codes: #6E665E;       /* Modernes Warmgrau (i-Life-Codes) */
  --color-codes-bg: linear-gradient(135deg, #C8C2BA 0%, #B8B0A6 100%);
  --color-coaching: #1F4D52;    /* Petrol (Coaching) */
  --color-coaching-bg: linear-gradient(135deg, #EFEEE9 0%, #D8DDD8 100%);
  --color-listen: #4A6B70;      /* Petrol (Hör mir zu) */
  --color-listen-bg: linear-gradient(135deg, #D8E0E2 0%, #C8D4D7 100%);
  --color-blog: #7B5FA8;        /* Lavendel (Blog) */
  --color-blog-bg: linear-gradient(135deg, #E8E0F0 0%, #DDD2E8 100%);
  --color-academy: #7A5868;     /* Aubergine (Akademie) */
  --color-academy-bg: linear-gradient(135deg, #E8DEDB 0%, #D8C8C5 100%);
}

/* ─────────────────────────────────────────────
   TYPOGRAPHY-KLASSEN
   ──────────────────────────────────────────── */

.serif {
  font-family: 'Playfair Display', serif;
}

.serif-italic {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 500;
}

.cormorant {
  font-family: 'Cormorant Garamond', serif;
}

.handwritten {
  font-family: 'Allura', cursive;
  font-weight: 400;
}

/* i-LIFE-CODES MARKENZEICHEN
   Einheitliche Schreibweise überall auf der Website */
.brand-codes {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.mono {
  font-family: 'DM Mono', monospace;
}

.eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  display: inline-block;
}

.eyebrow-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
}
.eyebrow-divider::before,
.eyebrow-divider::after {
  content: '';
  width: 30px;
  height: 0.5px;
  background: var(--accent);
}

/* ─────────────────────────────────────────────
   NAVIGATION (auf allen Seiten gleich)
   ──────────────────────────────────────────── */

.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 0.5px solid var(--line);
}

.nav-logo {
  display: inline-flex;
  gap: 0.3rem;
  align-items: baseline;
  text-decoration: none;
}

.nav-letter {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, #E8D4A8 0%, #C9A882 50%, #A38968 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 0.05em;
  filter: drop-shadow(0 1px 1px rgba(163, 137, 104, 0.3));
}

.nav-dot {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: #A38968;
  margin: 0 0.05em;
}

.nav-menu {
  display: none;
  gap: 2rem;
  list-style: none;
}

.nav-menu a {
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--text);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--accent);
}

.nav-cta {
  font-family: 'Inter', sans-serif;
  font-size: 0.6875rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
  border: 1px solid var(--text);
  padding: 0.5rem 1rem;
  border-radius: 24px;
  background: transparent;
  transition: all 0.2s;
}

.nav-cta:hover {
  background: var(--text);
  color: var(--bg);
}

.nav-burger {
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.nav-burger span {
  width: 22px;
  height: 1px;
  background: var(--text);
  transition: all 0.3s;
}

@media (min-width: 900px) {
  .nav-menu { display: flex; }
  .nav-burger { display: none; }
}

/* MOBILE MENÜ - geöffnet */
@media (max-width: 899px) {
  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    flex-direction: column;
    padding: 1.5rem 2rem;
    gap: 1.25rem;
    border-bottom: 0.5px solid var(--line);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  }

  .nav-menu.mobile-open {
    display: flex;
  }

  .nav-menu li {
    list-style: none;
  }

  .nav-menu a {
    font-size: 1rem;
    display: block;
    padding: 0.5rem 0;
  }

  .nav-burger.open span:nth-child(1) {
    transform: rotate(45deg) translate(4px, 4px);
  }

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

  .nav-burger.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
}

/* ─────────────────────────────────────────────
   BUTTONS
   ──────────────────────────────────────────── */

.btn {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  padding: 0.875rem 1.75rem;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.25s;
  border: 1px solid transparent;
  cursor: pointer;
}

.btn-dark {
  background: #1A1A1A;
  color: #FFFFFF;
}
.btn-dark:hover {
  background: #2A2A2A;
  transform: translateY(-1px);
}

.btn-light {
  background: #FFFFFF;
  color: #1A1A1A;
  border-color: #1A1A1A;
}
.btn-light:hover {
  background: #1A1A1A;
  color: #FFFFFF;
}

.btn-bronze {
  background: var(--accent);
  color: #FFFFFF;
}
.btn-bronze:hover {
  background: var(--accent-soft);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border-color: var(--accent);
}
.btn-outline:hover {
  background: var(--accent);
  color: #FFFFFF;
}

/* ─────────────────────────────────────────────
   FOOTER (auf allen Seiten gleich)
   ──────────────────────────────────────────── */

/* VERSION-MARKER v5 - 26.05.2026 - Footer ohne Lücke, Stufe 2/3 Petrol-Korrekturen */
.footer {
  margin-top: 0;
  padding: 4rem 2rem 2.5rem;
  background: #1A1A1A;
  border-top: none;
  text-align: center;
  color: rgba(232, 212, 168, 0.7);
  position: relative;
}

/* Schutz gegen Lücken: Box-Shadow nach oben, der die Lücke kaschiert */
.footer::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 1px;
  background: #1A1A1A;
}

/* Body bekommt schwarze Hintergrundfarbe ab dem Punkt, an dem der Footer beginnt.
   Das verhindert helle Lücken, falls eine Section nicht ganzflächig schließt. */
html {
  background: var(--bg);
}

.footer-logo {
  display: inline-flex;
  gap: 0.3rem;
  align-items: baseline;
  margin-bottom: 1.5rem;
  text-decoration: none;
}

.footer-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1rem;
  color: rgba(232, 212, 168, 0.65);
  margin-bottom: 2rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.75rem;
  margin-bottom: 2.25rem;
  list-style: none;
}

.footer-links a {
  font-family: 'Inter', sans-serif;
  font-size: 0.6875rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #C9A882;
  text-decoration: none;
  transition: color 0.3s, text-shadow 0.3s;
}

.footer-links a:hover {
  color: #E8D4A8;
  text-shadow: 0 0 12px rgba(232, 212, 168, 0.4);
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 0.5px solid rgba(201, 168, 130, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #C9A882;
  text-decoration: none;
  transition: all 0.3s;
  position: relative;
  font-size: 0;
  overflow: hidden;
  background: rgba(232, 212, 168, 0.03);
}

.footer-social a:hover {
  border-color: #E8D4A8;
  background: rgba(232, 212, 168, 0.08);
  transform: translateY(-1px);
}

/* LinkedIn (folgt) - sanft gedimmt */
.footer-social a[aria-label*="LinkedIn"] {
  opacity: 0.35;
  pointer-events: none;
}

/* Icons als SVG-Hintergrundbilder
   Buchstaben (IG, YT, FB, IN, TT) bleiben im HTML, 
   werden aber unsichtbar gemacht (font-size: 0 oben) */
.footer-social a::before {
  content: '';
  width: 18px;
  height: 18px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  display: block;
  opacity: 0.85;
  transition: opacity 0.3s;
}

.footer-social a:hover::before {
  opacity: 1;
}

/* Instagram */
.footer-social a[aria-label="Instagram"]::before {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23C9A882' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'><rect x='2' y='2' width='20' height='20' rx='5' ry='5'/><path d='M16 11.37A4 4 0 1 1 12.63 8 4 4 0 0 1 16 11.37z'/><line x1='17.5' y1='6.5' x2='17.51' y2='6.5'/></svg>");
}
.footer-social a[aria-label="Instagram"]:hover::before {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23E8D4A8' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'><rect x='2' y='2' width='20' height='20' rx='5' ry='5'/><path d='M16 11.37A4 4 0 1 1 12.63 8 4 4 0 0 1 16 11.37z'/><line x1='17.5' y1='6.5' x2='17.51' y2='6.5'/></svg>");
}

/* YouTube */
.footer-social a[aria-label="YouTube"]::before {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23C9A882' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'><path d='M22.54 6.42a2.78 2.78 0 0 0-1.94-2C18.88 4 12 4 12 4s-6.88 0-8.6.46a2.78 2.78 0 0 0-1.94 2A29 29 0 0 0 1 11.75a29 29 0 0 0 .46 5.33A2.78 2.78 0 0 0 3.4 19c1.72.46 8.6.46 8.6.46s6.88 0 8.6-.46a2.78 2.78 0 0 0 1.94-2 29 29 0 0 0 .46-5.25 29 29 0 0 0-.46-5.33z'/><polygon points='9.75 15.02 15.5 11.75 9.75 8.48 9.75 15.02'/></svg>");
}
.footer-social a[aria-label="YouTube"]:hover::before {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23E8D4A8' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'><path d='M22.54 6.42a2.78 2.78 0 0 0-1.94-2C18.88 4 12 4 12 4s-6.88 0-8.6.46a2.78 2.78 0 0 0-1.94 2A29 29 0 0 0 1 11.75a29 29 0 0 0 .46 5.33A2.78 2.78 0 0 0 3.4 19c1.72.46 8.6.46 8.6.46s6.88 0 8.6-.46a2.78 2.78 0 0 0 1.94-2 29 29 0 0 0 .46-5.25 29 29 0 0 0-.46-5.33z'/><polygon points='9.75 15.02 15.5 11.75 9.75 8.48 9.75 15.02'/></svg>");
}

/* Facebook */
.footer-social a[aria-label="Facebook"]::before {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23C9A882' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'><path d='M18 2h-3a5 5 0 0 0-5 5v3H7v4h3v8h4v-8h3l1-4h-4V7a1 1 0 0 1 1-1h3z'/></svg>");
}
.footer-social a[aria-label="Facebook"]:hover::before {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23E8D4A8' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'><path d='M18 2h-3a5 5 0 0 0-5 5v3H7v4h3v8h4v-8h3l1-4h-4V7a1 1 0 0 1 1-1h3z'/></svg>");
}

/* LinkedIn (folgt) */
.footer-social a[aria-label*="LinkedIn"]::before {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23C9A882' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'><path d='M16 8a6 6 0 0 1 6 6v7h-4v-7a2 2 0 0 0-2-2 2 2 0 0 0-2 2v7h-4v-7a6 6 0 0 1 6-6z'/><rect x='2' y='9' width='4' height='12'/><circle cx='4' cy='4' r='2'/></svg>");
}

/* TikTok */
.footer-social a[aria-label="TikTok"]::before {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23C9A882' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'><path d='M9 12a4 4 0 1 0 4 4V4a5 5 0 0 0 5 5'/></svg>");
}
.footer-social a[aria-label="TikTok"]:hover::before {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23E8D4A8' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'><path d='M9 12a4 4 0 1 0 4 4V4a5 5 0 0 0 5 5'/></svg>");
}

.footer-copyright {
  font-family: 'DM Mono', monospace;
  font-size: 0.6875rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(201, 168, 130, 0.6);
  margin-top: 0.5rem;
}

/* ─────────────────────────────────────────────
   ALLGEMEINE LAYOUT-KLASSEN
   ──────────────────────────────────────────── */

.section {
  padding: 4rem 1.5rem;
}

@media (min-width: 768px) {
  .section { padding: 5rem 3rem; }
}

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

.container-narrow {
  max-width: 720px;
  margin: 0 auto;
}

.section-title {
  font-family: 'Inter', sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 0.25rem;
}

@media (min-width: 768px) {
  .section-title { font-size: 2.25rem; }
}

.section-title-italic {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 2rem;
  font-weight: 500;
  color: var(--text);
  line-height: 1;
  letter-spacing: -0.01em;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .section-title-italic { font-size: 2.5rem; }
}

/* ─────────────────────────────────────────────
   CARDS / DOORS — die 6 Bereich-Karten
   ──────────────────────────────────────────── */

/* Haupt-Karten (groß, gestapelt) */
.main-doors {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.main-door {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  text-decoration: none;
  color: var(--text);
  box-shadow: var(--shadow);
  transition: all 0.3s;
  min-height: 200px;
}

.main-door:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.main-door-content {
  padding: 1.75rem 2rem;
  flex: 1;
  position: relative;
  z-index: 2;
}

.main-door-tag {
  font-family: 'Inter', sans-serif;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: 0.875rem;
  display: inline-block;
}

.main-door-title {
  font-family: 'Inter', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin-bottom: 0.625rem;
}

.main-door-title-serif {
  font-family: 'Playfair Display', serif;
  font-size: 1.625rem;
  font-weight: 400;
  color: var(--text);
  line-height: 1;
  letter-spacing: -0.01em;
}

.main-door-italic {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.625rem;
  font-weight: 500;
  line-height: 1;
}

.main-door-text {
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 300;
  color: var(--text-soft);
  line-height: 1.65;
  margin-bottom: 1rem;
  max-width: 320px;
}

@media (min-width: 768px) {
  .main-door {
    aspect-ratio: 2.6;
    min-height: 240px;
  }
  .main-door-title,
  .main-door-title-serif,
  .main-door-italic {
    font-size: 2rem;
  }
}

/* Karten-spezifische Farbwelten */
.door-about {
  background: var(--color-about-bg);
}
.door-about .main-door-tag,
.door-about .main-door-italic {
  color: var(--color-about);
}

.door-works {
  background: var(--color-works-bg);
}
.door-works .main-door-tag {
  color: var(--color-works);
}
.door-works .main-door-italic {
  color: #8B5A52;
}

.door-codes {
  background: var(--color-codes-bg);
}
.door-codes .main-door-tag,
.door-codes .main-door-italic {
  color: var(--color-codes);
}

.door-coaching {
  background: var(--color-coaching-bg);
}
.door-coaching .main-door-tag,
.door-coaching .main-door-italic {
  color: var(--color-coaching);
}

/* Tuer-spezifische Buttons - jeder Button nimmt die Farbe seiner Tuer */
.door-about .btn-dark {
  background: var(--color-about);
  border-color: var(--color-about);
  color: white;
}
.door-about .btn-dark:hover {
  background: #1A3550;
  border-color: #1A3550;
}

.door-works .btn-dark {
  background: var(--color-works);
  border-color: var(--color-works);
  color: white;
}
.door-works .btn-dark:hover {
  background: #4A5340;
  border-color: #4A5340;
}

.door-coaching .btn-dark {
  background: var(--color-coaching);
  border-color: var(--color-coaching);
  color: white;
}
.door-coaching .btn-dark:hover {
  background: #143437;
  border-color: #143437;
}

/* Mini-Karten (klein, in 3er Grid) */
.mini-doors {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}

@media (min-width: 600px) {
  .mini-doors { gap: 1rem; }
}

.mini-door {
  border-radius: 14px;
  padding: 1.25rem 0.75rem;
  text-align: center;
  text-decoration: none;
  color: var(--text);
  box-shadow: var(--shadow);
  transition: all 0.25s;
  display: block;
}

.mini-door:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.mini-door-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 0.875rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  background-size: 70%;
  background-repeat: no-repeat;
  background-position: center;
}

.mini-door-tag {
  font-family: 'Inter', sans-serif;
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}

.mini-door-title {
  font-family: 'Inter', sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.mini-door-italic {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1rem;
  font-weight: 500;
  display: block;
  margin: 0.125rem 0 0.5rem;
}

.mini-door-link {
  font-family: 'Inter', sans-serif;
  font-size: 0.625rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
}

.door-listen {
  background: var(--color-listen-bg);
}
.door-listen .mini-door-icon {
  border: 0.5px solid var(--color-listen);
  color: var(--color-listen);
}
.door-listen .mini-door-tag,
.door-listen .mini-door-italic,
.door-listen .mini-door-link {
  color: var(--color-listen);
}

.door-blog {
  background: var(--color-blog-bg);
}
.door-blog .mini-door-icon {
  border: 0.5px solid var(--color-blog);
  color: var(--color-blog);
}
.door-blog .mini-door-tag,
.door-blog .mini-door-italic,
.door-blog .mini-door-link {
  color: var(--color-blog);
}

.door-academy {
  background: var(--color-academy-bg);
}
.door-academy .mini-door-icon {
  border: 0.5px solid var(--color-academy);
  color: var(--color-academy);
}
.door-academy .mini-door-tag,
.door-academy .mini-door-italic,
.door-academy .mini-door-link {
  color: var(--color-academy);
}

/* ─────────────────────────────────────────────
   POPUP (Spiegelheft Lead-Magnet)
   ──────────────────────────────────────────── */

.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(26, 26, 26, 0.6);
  backdrop-filter: blur(6px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 1rem;
  opacity: 0;
  transition: opacity 0.4s;
}

.popup-overlay.show {
  display: flex;
  opacity: 1;
}

.popup-box {
  background: #FFFFFF;
  border-radius: 20px;
  max-width: 480px;
  width: 100%;
  padding: 2.5rem 1.75rem;
  position: relative;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
  transform: translateY(20px);
  transition: transform 0.4s;
}

.popup-overlay.show .popup-box {
  transform: translateY(0);
}

.popup-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 28px;
  height: 28px;
  border: none;
  background: transparent;
  cursor: pointer;
  font-size: 1.25rem;
  color: var(--text-muted);
  line-height: 1;
}

.popup-flower {
  width: 90px;
  height: 90px;
  margin: 0 auto 1rem;
  background-image: url('images/blatt-funnel.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.popup-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #B0807A;
  margin-bottom: 0.875rem;
}

.popup-title {
  font-family: 'Inter', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.1;
  margin-bottom: 0.25rem;
  letter-spacing: -0.02em;
}

.popup-italic {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.625rem;
  font-weight: 500;
  color: #B0807A;
  margin-bottom: 1rem;
  line-height: 1;
}

.popup-text {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1rem;
  color: var(--text-soft);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.popup-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

@media (min-width: 480px) {
  .popup-form { flex-direction: row; }
}

.popup-input {
  flex: 1;
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  padding: 0.875rem 1.25rem;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: #FAFAFA;
}

.popup-input:focus {
  outline: none;
  border-color: var(--accent);
}

.popup-skip {
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  font-size: 0.6875rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-decoration: underline;
}

/* ─────────────────────────────────────────────
   ANIMATIONS
   ──────────────────────────────────────────── */

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

@keyframes float {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg);
  }
  50% {
    transform: translate(8px, -10px) rotate(2deg);
  }
}

.fade-up {
  animation: fadeUp 0.8s ease-out;
}

/* ─────────────────────────────────────────────
   BLUMEN-DEKORATIONEN
   ──────────────────────────────────────────── */

.flower-decoration {
  position: absolute;
  pointer-events: none;
  z-index: 1;
  opacity: 0.85;
}

/* ═══════════════════════════════════════════════════════════════
   BEWEGUNG & LEBENDIGKEIT
   Sechs Schichten, die der Seite Atem geben.
   Alle Animationen respektieren die Lese-Präferenz
   "prefers-reduced-motion" und schalten sich dann ab.
   ═══════════════════════════════════════════════════════════════ */

/* ─── SCHICHT EINS: REVEAL BEIM SCROLLEN ─── */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

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

/* Verzögerungs-Stufen für gestaffeltes Erscheinen */
.reveal[data-delay="1"] { transition-delay: 0.08s; }
.reveal[data-delay="2"] { transition-delay: 0.16s; }
.reveal[data-delay="3"] { transition-delay: 0.24s; }
.reveal[data-delay="4"] { transition-delay: 0.32s; }
.reveal[data-delay="5"] { transition-delay: 0.40s; }

/* Sanfter Reveal von links für Symbole */
.reveal-left {
  opacity: 0;
  transform: translateX(-32px);
  transition: opacity 1s cubic-bezier(0.22, 1, 0.36, 1),
              transform 1s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-left.is-visible {
  opacity: 1;
  transform: translateX(0);
}

/* Sanfter Reveal von rechts */
.reveal-right {
  opacity: 0;
  transform: translateX(32px);
  transition: opacity 1s cubic-bezier(0.22, 1, 0.36, 1),
              transform 1s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-right.is-visible {
  opacity: 1;
  transform: translateX(0);
}

/* Zoom-Reveal für Hero-Elemente */
.reveal-zoom {
  opacity: 0;
  transform: scale(0.96);
  transition: opacity 1.1s cubic-bezier(0.22, 1, 0.36, 1),
              transform 1.1s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-zoom.is-visible {
  opacity: 1;
  transform: scale(1);
}

/* ─── SCHICHT ZWEI: PARALLAX-TIEFE ─── */
/* Wird über data-parallax-Attribut und JS gesteuert */

.parallax {
  will-change: transform;
  transition: transform 0.05s linear;
}

/* ─── SCHICHT DREI: SCHWEBENDE SYMBOLE (ATEMSCHLEIFE) ─── */

@keyframes atem-schleife {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg);
  }
  33% {
    transform: translate(4px, -6px) rotate(0.5deg);
  }
  66% {
    transform: translate(-3px, -3px) rotate(-0.3deg);
  }
}

@keyframes atem-schleife-sanft {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

/* Spezial-Variante für das Funnel-Blütenblatt,
   das in der Original-Position eine 8-Grad-Drehung hat */
@keyframes atem-schleife-rotated {
  0%, 100% {
    transform: rotate(8deg) translate(0, 0);
  }
  50% {
    transform: rotate(8deg) translate(0, -8px);
  }
}

/* Mobile Variante: Blütenblatt schwebt mit 8-Grad-Drehung (rechts neben Text) */
@keyframes atem-schleife-rotated-mobil {
  0%, 100% {
    transform: rotate(8deg) translateY(0);
  }
  50% {
    transform: rotate(8deg) translateY(-6px);
  }
}

.atem-schleife {
  animation: atem-schleife 8s ease-in-out infinite;
}

.atem-schleife-sanft {
  animation: atem-schleife-sanft 6s ease-in-out infinite;
}

.atem-schleife-rotated {
  animation: atem-schleife-rotated-mobil 6s ease-in-out infinite;
}

@media (min-width: 768px) {
  .atem-schleife-rotated {
    animation: atem-schleife-rotated 6s ease-in-out infinite;
  }
}

/* Verzögerungen, damit nicht alles synchron schwebt */
.atem-schleife[data-rhythmus="2"] { animation-delay: 1s; }
.atem-schleife[data-rhythmus="3"] { animation-delay: 2.5s; }
.atem-schleife[data-rhythmus="4"] { animation-delay: 4s; }

/* ─── SCHICHT VIER: TIEFE BEI DEN TÜREN ─── */

.main-door {
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  transform-style: preserve-3d;
}

.main-door::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0) 100%);
  opacity: 0;
  transition: opacity 0.6s;
  pointer-events: none;
  z-index: 1;
}

.main-door:hover {
  transform: translateY(-6px) scale(1.005);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.10);
}

.main-door:hover::before {
  opacity: 1;
}

.main-door-content {
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.main-door:hover .main-door-content {
  transform: translateZ(20px);
}

/* Mini-Türen ebenfalls mit Tiefe */
.mini-door {
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.mini-door:hover {
  transform: translateY(-5px) scale(1.01);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.10);
}

.mini-door-icon {
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.mini-door:hover .mini-door-icon {
  transform: scale(1.1) rotate(-2deg);
}

/* ─── SCHICHT FÜNF: HERO-PARALLAX ─── */
/* Wird über JS und CSS Transform gesteuert */

.hero-hi,
.hero-name {
  will-change: transform, opacity;
  transition: opacity 0.6s ease-out;
}

/* ─── SCHICHT SECHS: LOGO-ATMUNG ─── */

@keyframes logo-atem {
  0%, 100% {
    filter: drop-shadow(0 1px 1px rgba(163, 137, 104, 0.3));
  }
  50% {
    filter: drop-shadow(0 1px 4px rgba(232, 212, 168, 0.5));
  }
}

.nav-logo .nav-letter {
  animation: logo-atem 5s ease-in-out infinite;
}

.nav-logo .nav-letter:nth-child(3) {
  animation-delay: 0.5s;
}

.nav-logo .nav-letter:nth-child(5) {
  animation-delay: 1s;
}

/* ─── BARRIEREFREIHEIT: ANIMATIONEN ABSCHALTEN ─── */

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .reveal-left,
  .reveal-right,
  .reveal-zoom {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .atem-schleife,
  .atem-schleife-sanft {
    animation: none;
  }

  .nav-logo .nav-letter {
    animation: none;
  }

  .main-door:hover,
  .mini-door:hover {
    transform: none;
  }

  .parallax {
    transform: none !important;
  }
}
