/* ============================================================
   GINYIN — MOBILE CSS v3
   ============================================================
   Wird NUR auf Mobile (max-width: 768px) geladen.
   Desktop ist NICHT betroffen — diese Datei lädt nicht auf Desktop.
   
   Stand: Juni 2026
   ============================================================ */

/* ============================================================
   ⛔ GLOBAL: Überlappungen verhindern, Reset
   ============================================================ */
html, body {
  overflow-x: hidden !important;
  max-width: 100vw;
}

img, svg, video, iframe {
  max-width: 100%;
  height: auto;
}

/* ============================================================
   📐 CONTAINER & LAYOUT
   ============================================================ */
.container,
.hero-inner,
.newsletter-inner,
.pillars-inner,
.collab-inner,
.footer-inner {
  padding-left: 20px !important;
  padding-right: 20px !important;
  max-width: 100% !important;
  width: 100% !important;
}

/* Sections — mehr Atem zwischen Sektionen */
section.section,
section[class*="section-"] {
  padding-top: 56px !important;
  padding-bottom: 56px !important;
}

/* ============================================================
   🔝 NAVIGATION — Logo links + Menü-Button rechts
   ============================================================ */
nav.nav {
  position: relative;
  z-index: 100;
}

.nav-inner {
  padding: 14px 20px !important;
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  gap: 12px;
}

/* Desktop-Navigation auf Mobile verstecken */
.nav-links {
  display: none !important;
}

/* Logo */
.nav-logo,
.nav-brand {
  flex: 0 0 auto;
}
.nav-logo img,
.nav-logo svg {
  max-height: 28px;
  width: auto;
}

/* Mobile Menü-Button */
.mobile-menu-toggle {
  display: flex !important;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: 1px solid var(--butter-deep, #D9A938);
  color: var(--cream, #F8F0E2);
  padding: 7px 14px;
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-weight: 600;
  cursor: pointer;
  border-radius: 2px;
  white-space: nowrap;
}
.mobile-menu-toggle:active {
  background: var(--butter, #F0C658);
  color: var(--cocoa, #382016);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
  display: flex !important;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  background: var(--cocoa, #382016);
  z-index: 9999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  padding: 80px 24px 40px;
  overflow-y: auto;
}
.mobile-menu-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu-overlay a {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: 22px;
  color: var(--cream, #F8F0E2);
  text-decoration: none;
  letter-spacing: -0.01em;
  text-align: center;
  padding: 4px 0;
}
.mobile-menu-overlay a em {
  font-style: italic;
  color: var(--butter, #F0C658);
}

.mobile-menu-close {
  position: absolute;
  top: 14px;
  right: 20px;
  background: transparent;
  border: none;
  color: var(--cream, #F8F0E2);
  font-size: 32px;
  cursor: pointer;
  padding: 4px 12px;
  font-weight: 300;
  line-height: 1;
}

/* ============================================================
   🎯 HERO — Hauptproblem: Überlappung, zu groß
   ============================================================ */
.hero {
  min-height: auto !important;
  padding: 40px 0 60px !important;
  text-align: center;
}

/* SCROLL-INDICATOR komplett ausblenden — verursachte die Überlappung! */
.scroll-indicator,
.scroll-indicator-line,
.hero-scroll-hint,
.scroll-hint {
  display: none !important;
}

/* Hero Logo */
.hero-logo,
.hero-logo-img {
  width: 60vw !important;
  max-width: 240px !important;
  margin: 0 auto 18px !important;
  display: block;
}

/* Hauptslogan "be her, before you become her" — kompakter */
.hero-tagline,
.hero-headline {
  font-size: clamp(28px, 8.5vw, 42px) !important;
  line-height: 1.05 !important;
  letter-spacing: -0.02em !important;
  margin-bottom: 18px !important;
  padding: 0 4px !important;
}

/* Hero-Subline */
.hero-subline,
.hero-description,
.hero-lead {
  font-size: 14px !important;
  line-height: 1.55 !important;
  margin-bottom: 26px !important;
  padding: 0 8px !important;
  max-width: 100% !important;
}

/* Hero Founder Card */
.hero-founder {
  gap: 10px !important;
  margin-top: 18px !important;
  flex-wrap: wrap;
  justify-content: center;
}
.hero-founder-text {
  font-size: 11px !important;
  letter-spacing: 0.15em !important;
}

/* Hero CTAs */
.hero-cta,
.hero-cta-row a,
.hero-buttons a,
.hero-actions a {
  padding: 14px 26px !important;
  font-size: 10px !important;
  letter-spacing: 0.25em !important;
  width: auto !important;
  display: inline-flex !important;
}
.hero-cta-row,
.hero-buttons,
.hero-actions {
  flex-direction: column !important;
  gap: 12px !important;
  align-items: center;
  justify-content: center;
}

/* ============================================================
   📊 SECTION-LABEL & HEADLINES — alle Sektionen
   ============================================================ */
.section-label {
  font-size: 10px !important;
  letter-spacing: 0.25em !important;
  margin-bottom: 16px !important;
}
.section-num {
  font-size: 9px !important;
}

.section-headline {
  font-size: clamp(26px, 7.5vw, 36px) !important;
  line-height: 1.1 !important;
  margin-bottom: 18px !important;
  padding: 0 4px !important;
}

.section-intro,
.section-subline {
  font-size: 14px !important;
  line-height: 1.6 !important;
  margin-bottom: 26px !important;
  padding: 0 4px !important;
}

/* ============================================================
   ✨ QUIZ-TEASER (Cocoa Section)
   ============================================================ */
.quiz-teaser {
  padding: 56px 0 !important;
}

.quiz-teaser-eyebrow {
  font-size: 10px !important;
  letter-spacing: 0.3em !important;
  margin-bottom: 14px !important;
}

.quiz-teaser-headline {
  font-size: clamp(26px, 8.5vw, 40px) !important;
  line-height: 1.05 !important;
  margin-bottom: 18px !important;
}

.quiz-teaser-text,
.quiz-teaser-subline {
  font-size: 14px !important;
  line-height: 1.55 !important;
  margin-bottom: 24px !important;
  padding: 0 4px !important;
}

.quiz-teaser-btn {
  padding: 14px 26px !important;
  font-size: 10px !important;
  letter-spacing: 0.25em !important;
}

/* ============================================================
   🏛️ PILLARS (3 Säulen)
   ============================================================ */
.pillars-header {
  grid-template-columns: 1fr !important;
  gap: 18px !important;
  margin-bottom: 32px !important;
  text-align: center;
}

.pillars-grid {
  grid-template-columns: 1fr !important;
  gap: 28px !important;
}

.pillar {
  border-right: none !important;
  border-bottom: 0.5px solid rgba(240, 198, 88, 0.15);
  min-height: auto !important;
  padding: 0 0 28px 0 !important;
}
.pillar:last-child {
  border-bottom: none;
  padding-bottom: 0 !important;
}

.pillar-num {
  font-size: 11px !important;
  margin-bottom: 8px !important;
}
.pillar-headline,
.pillar-title {
  font-size: 20px !important;
  line-height: 1.15 !important;
  margin-bottom: 10px !important;
}
.pillar-text,
.pillar-description {
  font-size: 13px !important;
  line-height: 1.55 !important;
  margin-bottom: 16px !important;
}

.pillar-actions {
  margin-top: 14px !important;
  gap: 4px !important;
}
.pillar-action {
  font-size: 12px !important;
  padding: 9px 0 !important;
}

/* ============================================================
   🤝 COLLAB / FOUNDERS Section
   ============================================================ */
.collab {
  padding: 56px 0 !important;
}
.collab-row {
  flex-direction: column !important;
  gap: 22px !important;
}

.collab-image,
.collab-image img {
  width: 100% !important;
  max-width: 280px !important;
  margin: 0 auto !important;
}

.collab-text,
.collab-quote {
  font-size: 15px !important;
  line-height: 1.55 !important;
}

.collab-attribution {
  font-size: 11px !important;
  margin-top: 14px !important;
}

/* ============================================================
   🎙️ PODCAST / PRACTICE / CARDS
   ============================================================ */
.podcast-grid,
.practice-grid,
.cards-grid,
.offers-grid {
  grid-template-columns: 1fr !important;
  gap: 16px !important;
}

.podcast-card,
.practice-card,
.offer-card {
  padding: 22px !important;
}

.card-title,
.podcast-card h3,
.practice-card h3 {
  font-size: 18px !important;
  line-height: 1.2 !important;
}

.card-text {
  font-size: 13px !important;
  line-height: 1.55 !important;
}

/* ============================================================
   📧 NEWSLETTER SECTION (Alfima Embed)
   ============================================================ */
.newsletter,
.newsletter-section,
section.newsletter {
  padding: 56px 0 !important;
}

.newsletter-headline {
  font-size: clamp(26px, 8.5vw, 40px) !important;
  line-height: 1.05 !important;
  margin-bottom: 14px !important;
}

.newsletter-subline,
.newsletter-text {
  font-size: 14px !important;
  line-height: 1.55 !important;
  margin-bottom: 22px !important;
}

.newsletter-embed-wrap {
  padding: 10px 8px !important;
  margin: 18px auto !important;
  max-width: 100% !important;
}
.newsletter-embed-wrap iframe {
  min-height: 700px !important;
  height: 700px !important;
  width: 100% !important;
}

.newsletter-cta-meta {
  font-size: 10px !important;
  letter-spacing: 0.2em !important;
  gap: 8px !important;
  flex-wrap: wrap;
  justify-content: center;
}

.newsletter-disclaimer {
  font-size: 11px !important;
}

/* ============================================================
   🦶 FOOTER — aufgeräumt
   ============================================================ */

/* Footer Newsletter Box */
.footer-newsletter {
  padding: 28px 20px !important;
  margin-bottom: 28px !important;
}
.footer-newsletter-inner {
  flex-direction: column !important;
  align-items: stretch !important;
  gap: 16px !important;
  text-align: center;
}
.footer-newsletter-left {
  text-align: center;
}
.footer-newsletter-title {
  font-size: 18px !important;
  line-height: 1.2 !important;
}
.footer-newsletter-text {
  font-size: 12px !important;
  margin-top: 6px !important;
}
.footer-newsletter-btn {
  width: 100% !important;
  justify-content: center !important;
  padding: 14px 22px !important;
  font-size: 10px !important;
  letter-spacing: 0.25em !important;
}

/* Footer Top Spalten */
.footer-top {
  grid-template-columns: 1fr !important;
  gap: 30px !important;
  text-align: left;
  padding: 28px 0 !important;
}

.footer-brand-block {
  text-align: left;
  margin-bottom: 6px;
}
.footer-logo,
.footer-brand-logo {
  max-width: 120px;
  margin-bottom: 10px;
}
.footer-brand-tagline,
.footer-brand-text {
  font-size: 12px !important;
  line-height: 1.5 !important;
}

.footer-col {
  text-align: left;
}
.footer-col h4 {
  font-size: 10px !important;
  letter-spacing: 0.25em !important;
  margin-bottom: 12px !important;
}
.footer-col ul {
  padding: 0;
}
.footer-col ul li {
  padding: 5px 0 !important;
}
.footer-col ul li a,
.footer-col a {
  font-size: 13px !important;
}

/* Footer Social Icons */
.footer-social {
  gap: 10px !important;
  padding: 14px 0 !important;
  margin-bottom: 18px !important;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-social-label {
  font-size: 9px !important;
  letter-spacing: 0.25em !important;
  margin-right: 4px !important;
}
.footer-social-link {
  width: 30px !important;
  height: 30px !important;
}
.footer-social-link svg {
  width: 13px !important;
  height: 13px !important;
}

/* Footer Bottom */
.footer-bottom {
  flex-direction: column !important;
  gap: 12px !important;
  text-align: center;
  padding-top: 18px !important;
}
.footer-copy {
  font-size: 11px !important;
}
.footer-legal {
  font-size: 11px !important;
  flex-wrap: wrap;
  justify-content: center !important;
  gap: 14px !important;
}
.footer-legal a {
  font-size: 11px !important;
}

/* ============================================================
   🎁 BUTTONS — Allgemein responsive
   ============================================================ */
.btn,
.cta-button,
button[type="submit"] {
  width: auto;
  padding: 13px 26px !important;
  font-size: 10px !important;
  letter-spacing: 0.25em !important;
}

/* Wenn Buttons gestapelt werden sollten */
.btn-stack,
.button-group {
  flex-direction: column !important;
  gap: 12px !important;
  align-items: stretch !important;
}

/* ============================================================
   🎁 Extra-Klasse für KLEINSTE Screens (320-380px)
   ============================================================ */
@media (max-width: 380px) {
  .hero-tagline,
  .hero-headline {
    font-size: clamp(24px, 7.5vw, 32px) !important;
  }
  .section-headline {
    font-size: clamp(22px, 7vw, 30px) !important;
  }
  .quiz-teaser-headline {
    font-size: clamp(22px, 7vw, 32px) !important;
  }
  .newsletter-headline {
    font-size: clamp(22px, 7vw, 32px) !important;
  }
  .container {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }
}
