/* ============================================================
   GINYIN — MOBILE CSS (v2 — KOMPLETT NEU)
   ============================================================
   Wird NUR auf Mobile (max-width: 768px) geladen.
   Desktop ist NICHT betroffen.
   ============================================================ */

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

* {
  max-width: 100%;
}

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

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

/* Sections — mehr Atem zwischen Sektionen */
.section,
section {
  padding-top: 60px !important;
  padding-bottom: 60px !important;
}

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

.nav-inner {
  padding: 16px 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 {
  flex: 0 0 auto;
}
.nav-logo img,
.nav-logo svg {
  max-height: 32px;
  width: auto;
}

/* Brand-Text falls Logo Text-basiert */
.nav-brand {
  font-size: 18px !important;
}

/* 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: 8px 16px;
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  letter-spacing: 0.3em;
  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: 18px;
  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: 24px;
  color: var(--cream, #F8F0E2);
  text-decoration: none;
  letter-spacing: -0.01em;
  text-align: center;
}
.mobile-menu-overlay a em {
  font-style: italic;
  color: var(--butter, #F0C658);
}

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

/* ============================================================
   🎯 HERO — be her, before you become her
   ============================================================ */
.hero {
  min-height: auto !important;
  padding: 50px 0 70px !important;
  text-align: center;
}

/* Hide scroll hint on mobile (causes overlaps) */
.hero-scroll-hint,
.scroll-hint,
.scroll-indicator {
  display: none !important;
}

/* Logo im Hero */
.hero-logo,
.hero-logo-img {
  width: 65vw !important;
  max-width: 280px !important;
  margin: 0 auto 20px !important;
  display: block;
}

/* Hauptslogan "be her, before you become her" */
.hero-tagline,
.hero-headline {
  font-size: clamp(32px, 9vw, 44px) !important;
  line-height: 1.05 !important;
  letter-spacing: -0.02em !important;
  margin-bottom: 20px !important;
  padding: 0 8px !important;
}

/* Hero-Subline (für Frauen die zwischen Erfolg und ...) */
.hero-subline,
.hero-description,
.hero-lead {
  font-size: 15px !important;
  line-height: 1.55 !important;
  margin-bottom: 28px !important;
  padding: 0 4px !important;
  max-width: 100% !important;
}

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

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

/* ============================================================
   📊 SECTION-LABEL & HEADLINES (alle Sektionen)
   ============================================================ */
.section-label {
  font-size: 10px !important;
  letter-spacing: 0.3em !important;
  margin-bottom: 18px !important;
}

.section-headline {
  font-size: clamp(28px, 8vw, 38px) !important;
  line-height: 1.1 !important;
  margin-bottom: 20px !important;
  padding: 0 4px !important;
}

.section-intro,
.section-subline {
  font-size: 15px !important;
  line-height: 1.55 !important;
  margin-bottom: 28px !important;
  padding: 0 4px !important;
}

/* ============================================================
   ✨ QUIZ-TEASER (Cocoa Section "Welcher Weg ist deiner?")
   ============================================================ */
.quiz-teaser {
  padding: 60px 0 !important;
}

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

.quiz-teaser-headline {
  font-size: clamp(28px, 9vw, 42px) !important;
  line-height: 1.05 !important;
  margin-bottom: 20px !important;
}

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

.quiz-teaser-btn {
  padding: 16px 28px !important;
  font-size: 10px !important;
  letter-spacing: 0.3em !important;
}

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

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

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

.pillar-num {
  font-size: 12px !important;
  margin-bottom: 8px !important;
}
.pillar-headline,
.pillar-title {
  font-size: 22px !important;
  line-height: 1.15 !important;
  margin-bottom: 12px !important;
}
.pillar-text,
.pillar-description {
  font-size: 14px !important;
  line-height: 1.55 !important;
  margin-bottom: 18px !important;
}

.pillar-actions {
  margin-top: 16px !important;
  gap: 4px !important;
}
.pillar-action {
  font-size: 13px !important;
  padding: 10px 0 !important;
}

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

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

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

.collab-attribution {
  font-size: 12px !important;
  margin-top: 16px !important;
}

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

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

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

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

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

.newsletter-headline {
  font-size: clamp(28px, 9vw, 42px) !important;
  line-height: 1.05 !important;
  margin-bottom: 16px !important;
}

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

.newsletter-embed-wrap {
  padding: 12px 10px !important;
  margin: 20px auto !important;
  max-width: 100% !important;
}
.newsletter-embed-wrap iframe {
  min-height: 700px !important;
  height: 700px !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: 32px 20px !important;
  margin-bottom: 32px !important;
}
.footer-newsletter-inner {
  flex-direction: column !important;
  align-items: stretch !important;
  gap: 18px !important;
  text-align: center;
}
.footer-newsletter-left {
  text-align: center;
}
.footer-newsletter-title {
  font-size: 20px !important;
  line-height: 1.2 !important;
}
.footer-newsletter-text {
  font-size: 13px !important;
  margin-top: 6px !important;
}
.footer-newsletter-btn {
  width: 100% !important;
  justify-content: center !important;
  padding: 16px 24px !important;
  font-size: 11px !important;
  letter-spacing: 0.3em !important;
}

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

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

.footer-col {
  text-align: left;
}
.footer-col h4 {
  font-size: 11px !important;
  letter-spacing: 0.3em !important;
  margin-bottom: 14px !important;
}
.footer-col ul {
  padding: 0;
}
.footer-col ul li {
  padding: 6px 0 !important;
}
.footer-col ul li a,
.footer-col a {
  font-size: 14px !important;
}

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

/* Footer Bottom */
.footer-bottom {
  flex-direction: column !important;
  gap: 12px !important;
  text-align: center;
  padding-top: 20px !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: 14px 28px !important;
  font-size: 11px !important;
  letter-spacing: 0.3em !important;
}

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