/* ── Mobile-menu Book Now link (hidden above the mobile breakpoint) ── */
.nav-cta-mobile { display: none; }

/* ── Hamburger button (hidden on desktop) ──────────────────────── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 4px;
  flex-shrink: 0;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #ccc;
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
  transform-origin: center;
}
.nav-hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.is-open span:nth-child(2) { opacity: 0; }
.nav-hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Mobile breakpoint ─────────────────────────────────────────── */
@media (max-width: 768px) {

  /* NAV */
  nav { position: sticky; }
  .nav-inner { padding: 0 20px; }
  .nav-hamburger { display: flex; }
  .nav-cta { display: none; }

  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: rgba(7,7,10,0.98);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    padding: 24px 20px 28px;
    gap: 24px;
    z-index: 99;
  }
  .nav-links.open { display: flex; }
  .nav-links a {
    font-size: 16px;
    letter-spacing: 0.1em;
    color: #f0f0f0;
  }
  .nav-links a.active { color: #FF7A1A; }

  /* Higher-specificity selector so this survives polish.css's `.nav-links a` !important overrides */
  .nav-links a.nav-cta-mobile {
    display: block;
    margin-top: 8px;
    padding: 14px 20px;
    border-radius: 8px;
    background: linear-gradient(135deg, #FF7A1A, #D91CB5, #8B00D4);
    color: #fff !important;
    text-align: center;
    text-decoration: none;
    font-size: 14px !important;
    font-weight: 700;
    letter-spacing: 0.08em !important;
    text-transform: uppercase;
  }

  /* COMMON SECTION PADDING — uniform vertical rhythm on mobile */
  section, .about, .club, .contact, .faq,
  .services-section, .locations, .gallery-section,
  .page-header, .cta-banner, .pricing-section {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }

  .about, .club, .contact, .faq, .locations, .cta-banner {
    padding-top: var(--section-y-mobile, 72px) !important;
    padding-bottom: var(--section-y-mobile, 72px) !important;
  }

  .page-header {
    padding-top: 72px !important;
    padding-bottom: 56px !important;
  }

  .services-section, .pricing-section, .gallery-section {
    padding-top: 0 !important;
    padding-bottom: var(--section-y-mobile, 72px) !important;
  }

  .locations + .locations {
    padding-top: 40px !important;
  }

  /* HERO */
  .hero-content { padding: 60px 20px; }
  .hero-sub { margin-bottom: 36px; }

  /* ABOUT */
  .about-grid {
    grid-template-columns: 1fr !important;
    gap: 40px;
  }
  .about-img { aspect-ratio: 16/9; height: auto; }

  /* CLUB */
  .club-features {
    grid-template-columns: 1fr !important;
    max-width: 100%;
  }

  /* CONTACT */
  .form-grid { grid-template-columns: 1fr !important; }
  .contact-card { padding: 24px 20px; }
  .contact-links { gap: 8px; }
  .contact-link { font-size: 14px; padding: 9px 14px; }

  /* SERVICES */
  .services-grid { grid-template-columns: 1fr !important; }
  .venues-grid   { grid-template-columns: 1fr !important; }

  /* GALLERY BENTO */
  .bento-top {
    grid-template-columns: 1fr !important;
    grid-template-rows: auto !important;
  }
  .bento-top .img-tall {
    grid-row: 1 !important;
    aspect-ratio: 16/9;
    height: auto !important;
    width: 100%;
  }
  .bento-top .img-half {
    aspect-ratio: 16/9;
    height: auto !important;
    width: 100%;
  }
  .bento-bottom { grid-template-columns: 1fr !important; }
  .bento-bottom .img-wide { grid-column: span 1 !important; }

  /* PRICING */
  .pricing-grid { grid-template-columns: 1fr !important; gap: 24px !important; }
  .price-card { box-shadow: 0 8px 32px rgba(0,0,0,0.5); }

  /* FOOTER */
  footer { padding: 32px 20px; }
  .footer-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
  }
}
