/* ── SHARED MOBILE STYLES ─────────────────────────────────────────────────── */

/* Hide custom cursor on touch devices */
@media (hover: none), (pointer: coarse) {
  body { cursor: auto !important; }
  .cursor, .cursor-dot, .cursor-ring { display: none !important; }
}

/* ── NAV: hamburger button ────────────────────────────────────────────────── */
.nav-menu-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 4px;
  cursor: pointer;
  position: absolute;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1002;
}
.nav-menu-btn span {
  display: block;
  width: 20px;
  height: 1.5px;
  background: rgba(245,240,232,0.85);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ── MOBILE NAV OVERLAY ───────────────────────────────────────────────────── */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(5,5,7,0.97);
  backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  transform: translateX(100%);
  transition: transform 0.45s cubic-bezier(0.16,1,0.3,1);
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav-links {
  list-style: none;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 0;
  margin: 0;
}
.mobile-nav-links a {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.6rem;
  letter-spacing: 0.08em;
  color: rgba(245,240,232,0.9);
  text-decoration: none;
  transition: color 0.3s;
}
.mobile-nav-links a:hover,
.mobile-nav-links a.active { color: #c9a84c; }
.mobile-nav-cta {
  margin-top: 1rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #c9a84c;
  border: 1px solid rgba(201,168,76,0.5);
  padding: 0.75rem 2rem;
  text-decoration: none;
  transition: background 0.3s, color 0.3s;
}
.mobile-nav-cta:hover {
  background: rgba(201,168,76,0.12);
}
.mobile-nav-close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  background: none;
  border: none;
  color: #c9a84c;
  font-size: 1.5rem;
  cursor: pointer;
  line-height: 1;
  padding: 0.5rem;
}

/* ── BREAKPOINTS ──────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  /* Hero: shift background right so Mo's face is centred on narrow screens */
  .hero-photo {
    background-position: 70% top !important;
  }

  /* Offers category cards: shrink for mobile */
  .cat-card { width: 260px !important; height: 360px !important; }
  .cat-card-word { font-size: 2.6rem !important; }
  .cat-card-sig { height: 110px !important; }
  .cat-card-tagline { font-size: 0.78rem !important; }

  /* Offer carousel cards: smaller default + constrained hover expansion */
  .offer-ocard { width: 220px !important; height: 340px !important; }
  .offer-ocard.hovered { width: 340px !important; height: 280px !important; }

  /* Offers proceed bar: push below ticker + nav, tighten padding */
  .proceed-bar {
    top: 108px !important;
    padding: 0.9rem 1.25rem !important;
  }
  .proceed-count { font-size: 0.52rem !important; letter-spacing: 0.15em !important; max-width: 55%; }
  .proceed-btn { padding: 0.75rem 1.25rem !important; font-size: 0.52rem !important; white-space: nowrap; }

  /* Social proof badge: tighter, more refined on mobile */
  .hero-social-proof { gap: 0.6rem !important; margin-bottom: 1.25rem !important; }
  .hsp-avatar { width: 28px !important; height: 28px !important; margin-left: -9px !important; }
  .hsp-tagline { font-size: 0.78rem !important; line-height: 1.25 !important; }
  .hsp-stars { font-size: 0.5rem !important; }
  .hsp-stat { font-size: 0.48rem !important; }

  /* Hero hook text: allow wrapping and reduce min size so it fits */
  .hero-hook {
    white-space: normal !important;
    font-size: clamp(1.5rem, 5.5vw, 2.6rem) !important;
  }
  .hero-hook-top, .hero-hook-bottom {
    font-size: clamp(1.3rem, 4.8vw, 2.2rem) !important;
    margin-left: 0 !important;
  }
  .hero-copy-block {
    padding: 0 1rem !important;
  }

  .nav-links, .nav-cta { display: none !important; }
  .nav-menu-btn { display: flex; }

  /* Nav logo sizing */
  .nav-logo img { height: 70px !important; }

  /* Volume control: hide on mobile to avoid overlap */
  .vol-ctrl { display: none !important; }

  /* Keep nav below the ticker bar so it never overlaps */
  nav { top: 34px !important; }

  /* Mode card images: center on mobile so face is visible, not hands */
  .mode-card-img { object-position: center !important; }

  /* Mode cards: shorter aspect ratio on mobile */
  .mode-card-img { aspect-ratio: 3/5 !important; }

  /* "Speak with Mo" label: tighten letter-spacing so it doesn't clip */
  .moments-cat-label { letter-spacing: 0.2em !important; font-size: 0.5rem !important; }
}

@media (max-width: 640px) {
  /* Section padding reduction — applies universally */
  section, .content-area, .offers-hero, .breadcrumb {
    padding-left: 1.25rem !important;
    padding-right: 1.25rem !important;
  }
  nav {
    padding: 0.75rem 1.25rem !important;
  }
}

@media (max-width: 420px) {
  .mobile-nav-links a { font-size: 1.3rem; }
}
