/* ── GRAND FLOOR — SHARED NAV + MOBILE STYLES ── */

/* Reset */
*, *::before, *::after { box-sizing: border-box; }

/* Desktop nav */
.gf-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.4rem 4rem;
  background: rgba(7,7,11,0.95);
  border-bottom: 1px solid rgba(201,168,76,0.15);
  position: sticky;
  top: 0;
  z-index: 200;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.gf-nav.transparent {
  background: rgba(7,7,11,0.0);
  border-bottom-color: transparent;
  position: fixed;
  left: 0; right: 0;
  transition: background 0.4s, border-color 0.4s;
}
.gf-nav.transparent.scrolled {
  background: rgba(7,7,11,0.95);
  border-bottom-color: rgba(201,168,76,0.15);
}

.nav-left, .nav-right {
  display: flex;
  gap: 2.2rem;
  align-items: center;
}

.gf-nav a {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.63rem;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #F0E8D8;
  text-decoration: none;
  opacity: 0.78;
  transition: opacity 0.2s, color 0.2s;
  white-space: nowrap;
}
.gf-nav a:hover, .gf-nav a.active {
  opacity: 1;
  color: #C9A84C;
}

.nav-logo {
  text-align: center;
  flex-shrink: 0;
}
.nav-logo img {
  height: 50px;
  width: auto;
  display: block;
  margin: 0 auto;
  filter: drop-shadow(0 0 10px rgba(201,168,76,0.35));
}
.nav-logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.35em;
  color: #C9A84C;
  text-transform: uppercase;
  display: block;
  margin-top: 0.2rem;
  white-space: nowrap;
}

/* Hamburger button — hidden on desktop */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 2px;
  z-index: 210;
  flex-shrink: 0;
}
.nav-hamburger span {
  display: block;
  width: 100%;
  height: 1px;
  background: #C9A84C;
  transition: transform 0.3s, opacity 0.3s;
  transform-origin: center;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Mobile drawer */
.nav-drawer {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(7,7,11,0.98);
  z-index: 199;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.nav-drawer.open {
  opacity: 1;
  pointer-events: all;
}
.nav-drawer a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 300;
  letter-spacing: 0.15em;
  color: #F0E8D8;
  text-decoration: none;
  text-transform: uppercase;
  padding: 1rem 2rem;
  opacity: 0.75;
  transition: opacity 0.2s, color 0.2s;
  text-align: center;
}
.nav-drawer a:hover, .nav-drawer a.active {
  opacity: 1;
  color: #C9A84C;
}
.nav-drawer-logo {
  margin-bottom: 3rem;
  text-align: center;
}
.nav-drawer-logo img {
  height: 56px;
  filter: drop-shadow(0 0 14px rgba(201,168,76,0.4));
}
.nav-drawer-rule {
  width: 40px;
  height: 1px;
  background: rgba(201,168,76,0.3);
  margin: 1.5rem auto;
}
.nav-drawer-contact {
  margin-top: 2rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  color: #8a7e68;
  text-transform: uppercase;
  text-decoration: none !important;
  opacity: 0.6 !important;
  font-size: 0.65rem !important;
}

/* ── MOBILE BREAKPOINT ── */
@media (max-width: 820px) {
  .gf-nav {
    padding: 1rem 1.5rem;
  }
  .nav-left, .nav-right {
    display: none;
  }
  .nav-hamburger {
    display: flex;
  }
  .nav-drawer {
    display: flex;
  }
  /* logo smaller */
  .nav-logo img { height: 42px; }
  .nav-logo-text { font-size: 0.95rem; letter-spacing: 0.3em; }
}

/* ── GLOBAL MOBILE FIXES ── */
@media (max-width: 820px) {
  /* Visuals grid: 2 cols on tablet, 1 col on phone */
  .visuals-grid { grid-template-columns: 1fr 1fr !important; }
}
@media (max-width: 480px) {
  .visuals-grid { grid-template-columns: 1fr !important; }
  .visual-item { aspect-ratio: 4/3 !important; }
}

/* Split sections stack on mobile */
@media (max-width: 760px) {
  .split { display: block !important; }
  .split-img { min-height: 280px; width: 100%; }
  .split-img img { height: 280px; width: 100%; object-fit: cover; }
  .split-img-overlay { display: none; }
  .split-body { padding: 2.5rem 1.5rem !important; }
  .split-num { font-size: 2.5rem !important; }
  .split-title { font-size: 1.6rem !important; }
}

/* Schedule table: scroll on mobile */
@media (max-width: 900px) {
  .week-header, .week-grid {
    min-width: 600px;
  }
  .schedule-overflow {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border: 1px solid #2a2418;
  }
}

/* Hero CTAs stack */
@media (max-width: 600px) {
  .hero-ctas { flex-direction: column !important; align-items: stretch !important; width: 80%; margin: 0 auto; }
  .btn-primary, .btn-secondary { text-align: center; }
}

/* Forms full width */
@media (max-width: 600px) {
  .form-grid { grid-template-columns: 1fr !important; }
  .form-box { padding: 24px 16px !important; }
}

/* Pricing grid 2 col → 1 col */
@media (max-width: 560px) {
  .pricing-grid { grid-template-columns: 1fr !important; }
}

/* Contact grid */
@media (max-width: 820px) {
  .contact-grid { grid-template-columns: 1fr !important; gap: 3rem !important; }
}

/* Trust strip scroll */
@media (max-width: 680px) {
  .trust-strip {
    overflow-x: auto;
    justify-content: flex-start;
    padding: 24px 20px;
    gap: 24px;
  }
  .trust-divider { display: none; }
}

/* Cohort strip */
@media (max-width: 680px) {
  .cohort-strip {
    flex-direction: column;
    gap: 18px;
    padding: 24px 20px;
  }
  .ci-sep { display: none; }
}

/* Trainers grid */
@media (max-width: 680px) {
  .trainers-grid { grid-template-columns: 1fr !important; }
}

/* Journey steps */
@media (max-width: 500px) {
  .j-step { gap: 1.5rem; }
  .j-num { width: 44px; height: 44px; font-size: 1.1rem; }
  .j-title { font-size: 1.2rem !important; }
}

/* Schedule strip */
@media (max-width: 720px) {
  .schedule-strip .wrap { grid-template-columns: 1fr !important; gap: 2.5rem !important; }
  .week-grid { grid-template-columns: repeat(5, 1fr) !important; font-size: 0.6rem; }
}

/* VIP pillars */
@media (max-width: 700px) {
  .pillars-flow { grid-template-columns: 1fr !important; }
  .pf-item { padding: 2.5rem 1.8rem !important; }
}

/* Intro + manifesto padding */
@media (max-width: 600px) {
  .intro { padding: 5rem 1.5rem 3.5rem !important; }
  .manifesto { padding: 6rem 1.5rem 4rem !important; }
  .manifesto-text { font-size: 1.4rem !important; }
  .invitation h2 { font-size: 2rem !important; }
  .opener-headline { font-size: 2.6rem !important; }
  .qb-text { font-size: 1.3rem !important; }
}

/* Footer */
@media (max-width: 600px) {
  footer { padding: 2rem 1rem; }
  .footer-nav { gap: 1rem; }
}
