/* ==========================================================================
   GLOBAL COLLECTIVE CAPITAL GROUP (GCCG) — HIGH-END EDITORIAL DESIGN SYSTEM
   Ultra-responsive (320px to 4K), Zero-overflow, Modern Luxury & GHL Ready
   ========================================================================== */

:root {
  /* Core Luxury Palette */
  --bg-dark-950: #04070e;
  --bg-dark-900: #070d1a;
  --bg-dark-850: #0b1426;
  --bg-dark-800: #0f1c35;
  --bg-card: rgba(11, 20, 38, 0.75);
  --bg-card-hover: rgba(18, 32, 60, 0.9);
  
  --gold-primary: #c5a880;
  --gold-light: #e8dbcb;
  --gold-bright: #dfb770;
  --gold-muted: #8e775a;
  --gold-glow: rgba(197, 168, 128, 0.2);
  
  --text-primary: #ffffff;
  --text-secondary: #c2cbd8;
  --text-muted: #7e8b9f;
  
  --border-subtle: rgba(197, 168, 128, 0.18);
  --border-light: rgba(255, 255, 255, 0.08);
  --border-active: rgba(197, 168, 128, 0.5);
  
  /* Typography */
  --font-serif: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-mono: 'Space Mono', monospace;
  
  /* Dimensions & Spacing */
  --header-height-desktop: 84px;
  --header-height-mobile: 68px;
  --container-max: 1240px;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 14px;
  
  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-smooth: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ==========================================================================
   RESET & GLOBAL DEFENSIVE BOX-SIZING
   ========================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  overflow-x: hidden;
  max-width: 100vw;
}

body {
  background-color: var(--bg-dark-950);
  color: var(--text-primary);
  font-family: var(--font-sans);
  line-height: 1.6;
  overflow-x: hidden;
  max-width: 100vw;
  position: relative;
  background-image: 
    radial-gradient(circle at 50% 0%, rgba(197, 168, 128, 0.09) 0%, transparent 60%),
    radial-gradient(circle at 80% 30%, rgba(15, 28, 53, 0.5) 0%, transparent 50%),
    linear-gradient(180deg, var(--bg-dark-950) 0%, var(--bg-dark-900) 50%, var(--bg-dark-950) 100%);
  background-attachment: fixed;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all var(--transition-fast);
}

button {
  font-family: inherit;
  border: none;
  background: none;
  cursor: pointer;
}

/* Grid & Flex item overflow protection */
div, section, article, header, footer, main, ul, li {
  min-width: 0;
}

section {
  scroll-margin-top: calc(var(--header-height-desktop) + 20px);
  width: 100%;
  position: relative;
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

@media (max-width: 768px) {
  .container {
    padding: 0 16px;
  }
  section {
    scroll-margin-top: calc(var(--header-height-mobile) + 16px);
  }
}

/* ==========================================================================
   TYPOGRAPHY
   ========================================================================== */
.font-serif { font-family: var(--font-serif); }
.text-gold { color: var(--gold-primary); }
.text-gold-light { color: var(--gold-light); }
.text-muted { color: var(--text-muted); }
.text-center { text-align: center; }

.eyebrow {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-primary);
  display: inline-block;
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.8vw, 3rem);
  font-weight: 400;
  line-height: 1.18;
  color: var(--text-primary);
  letter-spacing: -0.01em;
  margin-bottom: 14px;
  word-wrap: break-word;
}

.section-title em, .section-title span.italic {
  font-style: italic;
  font-weight: 300;
  color: var(--gold-light);
}

.section-subtitle {
  font-size: clamp(0.9rem, 1.4vw, 1.05rem);
  color: var(--text-secondary);
  max-width: 680px;
  line-height: 1.65;
  margin-bottom: 0;
}

.section-subtitle.centered {
  margin-left: auto;
  margin-right: auto;
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  transition: all var(--transition-smooth);
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
  text-align: center;
}

.btn-gold {
  background: linear-gradient(135deg, #c5a880 0%, #ad8c62 100%);
  color: #04070e;
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 4px 16px rgba(197, 168, 128, 0.25);
}

.btn-gold:hover {
  background: linear-gradient(135deg, #d8be99 0%, #c5a880 100%);
  box-shadow: 0 6px 24px rgba(197, 168, 128, 0.4);
  transform: translateY(-2px);
}

.btn-outline {
  background: rgba(11, 20, 38, 0.5);
  color: var(--text-primary);
  border: 1px solid var(--border-subtle);
  backdrop-filter: blur(8px);
}

.btn-outline:hover {
  background: rgba(197, 168, 128, 0.12);
  border-color: var(--gold-primary);
  color: var(--gold-light);
  transform: translateY(-2px);
}

.btn-text-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-primary);
  padding: 4px 0;
  border-bottom: 1px solid transparent;
}

.btn-text-link:hover {
  color: var(--gold-light);
  border-bottom-color: var(--gold-primary);
  transform: translateX(3px);
}

/* ==========================================================================
   DESKTOP & MOBILE HEADER NAVIGATION (SEPARATED, BALANCED & MODERN)
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(4, 7, 14, 0.88);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border-subtle);
  transition: all var(--transition-smooth);
}

.site-header.scrolled {
  background: rgba(4, 7, 14, 0.98);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height-desktop);
  gap: 20px;
  width: 100%;
}

/* Brand Monogram & Wordmark */
.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.brand-monogram {
  width: 38px;
  height: 38px;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(11, 20, 38, 0.7);
  color: var(--gold-primary);
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1;
}

.brand-text-block {
  display: flex;
  flex-direction: column;
}

.brand-title {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--text-primary);
  line-height: 1.1;
  text-transform: uppercase;
  white-space: nowrap;
}

.brand-sub {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  color: var(--gold-primary);
  text-transform: uppercase;
  white-space: nowrap;
}

/* Desktop Centered Nav Links with Mega-Menu */
.nav-menu {
  display: flex;
  align-items: center;
  list-style: none;
  gap: clamp(20px, 2.5vw, 36px);
  margin: 0;
  padding: 0;
  flex: 0 1 auto;
}

.drawer-cta-wrap {
  display: none !important;
}

.nav-item {
  position: relative;
  flex-shrink: 0;
}

.nav-link {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-secondary);
  padding: 26px 0;
  white-space: nowrap;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.dropdown-chevron {
  color: var(--gold-primary);
  transition: transform var(--transition-fast);
}

.has-dropdown:hover .dropdown-chevron {
  transform: rotate(180deg);
}

.nav-link:hover {
  color: var(--gold-light);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 18px;
  left: 0;
  width: 0%;
  height: 1.5px;
  background: var(--gold-primary);
  transition: width var(--transition-fast);
}

.nav-link:hover::after {
  width: 100%;
}

/* Dropdown Menus */
.dropdown-menu {
  position: absolute;
  top: 100%;
  background: rgba(5, 9, 18, 0.97);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.85);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all var(--transition-smooth);
  z-index: 1050;
  pointer-events: none;
}

.has-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.mega-panel {
  display: grid;
  grid-template-columns: 240px 260px;
  gap: 20px;
  padding: 24px;
  left: -80px;
}

.simple-dropdown {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 16px;
  min-width: 280px;
  left: 0;
}

.dropdown-column {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.dropdown-col-title {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-primary);
  margin-bottom: 8px;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--border-light);
  display: block;
}

.dropdown-item {
  display: block;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
  text-decoration: none;
}

.dropdown-item:hover {
  background: rgba(197, 168, 128, 0.12);
}

.dropdown-item-title {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 2px;
}

.dropdown-item-desc {
  display: block;
  font-size: 0.7rem;
  color: var(--text-muted);
  line-height: 1.35;
}

.dropdown-item.highlight-item {
  background: rgba(197, 168, 128, 0.08);
  border: 1px solid rgba(197, 168, 128, 0.2);
}

.dropdown-item.highlight-item:hover {
  background: rgba(197, 168, 128, 0.18);
  border-color: var(--gold-primary);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.header-btn-outline {
  padding: 10px 18px;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
}

.header-btn-gold {
  padding: 10px 20px;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
}

.mobile-toggle {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  color: var(--gold-primary);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  background: rgba(11, 20, 38, 0.7);
  transition: all var(--transition-fast);
}

.mobile-toggle:hover {
  background: rgba(197, 168, 128, 0.15);
  color: #ffffff;
}

/* ==========================================================================
   MOBILE STICKY BOTTOM BANNER (APPEARS ON SCROLL)
   ========================================================================== */
.mobile-sticky-cta {
  display: none;
}

@media (max-width: 900px) {
  .mobile-sticky-cta {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 990;
    padding: 12px 16px;
    background: rgba(4, 7, 14, 0.94);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-top: 1px solid var(--border-subtle);
    box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.7);
    transform: translateY(120%);
    transition: transform var(--transition-smooth);
  }

  .mobile-sticky-cta.visible {
    transform: translateY(0);
  }

  .mobile-sticky-btn {
    width: 100%;
    padding: 14px 20px;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.08em;
  }
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
  position: relative;
  min-height: 90vh;
  padding-top: calc(var(--header-height-desktop) + 60px);
  padding-bottom: 80px;
  display: flex;
  align-items: center;
  background: 
    linear-gradient(180deg, rgba(4, 7, 14, 0.45) 0%, rgba(4, 7, 14, 0.85) 75%, var(--bg-dark-950) 100%),
    url('https://images.unsplash.com/photo-1512917774080-9991f1c4c750?auto=format&fit=crop&w=2000&q=80') center center / cover no-repeat;
}

.hero-overlay-glow {
  position: absolute;
  top: 15%;
  left: 50%;
  transform: translateX(-50%);
  width: min(600px, 90vw);
  height: 500px;
  background: radial-gradient(circle, rgba(197, 168, 128, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 860px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(11, 20, 38, 0.75);
  border: 1px solid var(--border-subtle);
  border-radius: 100px;
  padding: 6px 16px;
  margin-bottom: 20px;
  backdrop-filter: blur(8px);
}

.hero-badge-dot {
  width: 6px;
  height: 6px;
  background-color: var(--gold-primary);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--gold-primary);
}

.hero-badge-text {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-light);
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5.5vw, 4.8rem);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.015em;
  color: var(--text-primary);
  margin-bottom: 20px;
}

.hero-title .gold-span {
  color: var(--gold-primary);
  font-style: italic;
  font-weight: 300;
  display: inline-block;
}

.hero-lead {
  font-size: clamp(0.98rem, 1.6vw, 1.15rem);
  color: var(--text-secondary);
  line-height: 1.68;
  max-width: 720px;
  margin-bottom: 32px;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 44px;
}

.hero-stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding-top: 28px;
  border-top: 1px solid var(--border-subtle);
}

.hero-stat-item {
  display: flex;
  flex-direction: column;
}

.hero-stat-num {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  font-weight: 600;
  color: var(--gold-primary);
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 6px;
  line-height: 1.3;
}

/* ==========================================================================
   PRESS RIBBON
   ========================================================================== */
.press-section {
  padding: 30px 0;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  background: rgba(7, 13, 26, 0.6);
}

.press-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
  text-align: center;
}

.press-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 4vw, 56px);
  flex-wrap: wrap;
}

.press-logo {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  letter-spacing: 0.08em;
  font-weight: 600;
  color: var(--text-secondary);
  opacity: 0.7;
}

/* ==========================================================================
   FOUR DIVISIONS (PILLARS)
   ========================================================================== */
.divisions-section {
  padding: 90px 0;
}

.divisions-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.division-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  backdrop-filter: blur(10px);
  position: relative;
  transition: all var(--transition-smooth);
}

.division-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-active);
  transform: translateY(-5px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.5);
}

.division-num {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--gold-primary);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.division-icon {
  width: 24px;
  height: 24px;
  color: var(--gold-light);
}

.division-title {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.25;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.division-desc {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.55;
  margin-bottom: 18px;
}

.division-list {
  list-style: none;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-top: 1px solid var(--border-light);
  padding-top: 14px;
}

.division-list-item {
  font-size: 0.78rem;
  color: var(--text-muted);
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.4;
}

.division-list-item::before {
  content: '•';
  color: var(--gold-primary);
  font-size: 1.1rem;
  line-height: 1;
}

/* ==========================================================================
   AUDIENCE SECTION ("WE PARTNER WITH VISIONARIES")
   ========================================================================== */
.audience-section {
  padding: 90px 0;
  background: rgba(7, 13, 26, 0.6);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.audience-card {
  background: rgba(11, 20, 38, 0.55);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  transition: all var(--transition-smooth);
}

.audience-card:hover {
  border-color: var(--border-subtle);
  background: rgba(15, 28, 53, 0.8);
  transform: translateY(-3px);
}

.audience-icon-wrap {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  background: rgba(197, 168, 128, 0.1);
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-primary);
  margin-bottom: 16px;
}

.audience-card-title {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.audience-card-desc {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* ==========================================================================
   FRAMEWORK SECTION (BUILD BEYOND BORDERS™)
   ========================================================================== */
.framework-section {
  padding: 100px 0;
}

.framework-card-wrapper {
  background: linear-gradient(145deg, rgba(11, 20, 38, 0.9) 0%, rgba(7, 13, 26, 0.95) 100%);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 48px 36px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
}

.framework-steps-track {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  margin: 40px 0;
}

.framework-step-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.framework-step-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--bg-dark-950);
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-primary);
  margin-bottom: 14px;
  transition: all var(--transition-fast);
}

.framework-step-node:hover .framework-step-icon {
  border-color: var(--gold-primary);
  box-shadow: 0 0 14px var(--gold-glow);
  transform: scale(1.06);
}

.framework-step-title {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.framework-step-desc {
  font-size: 0.72rem;
  color: var(--text-muted);
  line-height: 1.35;
}

.framework-cta-wrap {
  display: flex;
  justify-content: center;
  width: 100%;
}

.framework-btn {
  max-width: 100%;
  white-space: normal;
  text-align: center;
  line-height: 1.35;
  padding: 14px 28px;
}

/* ==========================================================================
   PATHWAY SECTION ("CHOOSE YOUR PATH")
   ========================================================================== */
.pathway-section {
  padding: 90px 0;
  background: radial-gradient(circle at 50% 50%, rgba(11, 20, 38, 0.7) 0%, var(--bg-dark-950) 80%);
}

.pathway-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  margin-top: 44px;
}

.pathway-item-card {
  position: relative;
  height: 290px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  cursor: pointer;
  transition: all var(--transition-smooth);
}

.pathway-img-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  filter: brightness(0.65);
}

.pathway-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(4, 7, 14, 0.1) 0%, rgba(4, 7, 14, 0.95) 85%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px 16px;
}

.pathway-icon-small {
  width: 28px;
  height: 28px;
  color: var(--gold-light);
  margin-bottom: 10px;
}

.pathway-card-heading {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 6px;
  line-height: 1.2;
}

.pathway-card-text {
  font-size: 0.75rem;
  color: var(--text-secondary);
  line-height: 1.35;
}

.pathway-item-card:hover {
  transform: translateY(-5px);
  border-color: var(--gold-primary);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.6);
}

.pathway-item-card:hover .pathway-img-bg {
  transform: scale(1.06);
  filter: brightness(0.8);
}

/* ==========================================================================
   REAL ESTATE SHOWCASE
   ========================================================================== */
.realestate-section {
  padding: 90px 0;
  border-top: 1px solid var(--border-light);
}

.realestate-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.property-showcase-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all var(--transition-smooth);
}

.property-showcase-card:hover {
  border-color: var(--border-active);
  transform: translateY(-5px);
}

.property-img-wrap {
  position: relative;
  height: 220px;
}

.property-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.property-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(4, 7, 14, 0.85);
  border: 1px solid var(--border-subtle);
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-light);
}

.property-card-body {
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
  justify-content: space-between;
}

.property-card-title {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.property-card-desc {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.55;
  margin-bottom: 18px;
}

/* ==========================================================================
   BUSINESS GROWTH SECTION
   ========================================================================== */
.business-growth-section {
  padding: 90px 0;
  background: linear-gradient(180deg, var(--bg-dark-950) 0%, rgba(7, 13, 26, 0.9) 50%, var(--bg-dark-950) 100%);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.growth-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: center;
  margin-top: 48px;
}

.growth-feature-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.growth-feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 20px 18px;
  transition: all var(--transition-smooth);
}

.growth-feature-card:hover {
  border-color: var(--gold-primary);
  background: var(--bg-card-hover);
  transform: translateY(-3px);
}

.growth-feature-icon {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-sm);
  background: rgba(197, 168, 128, 0.1);
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-primary);
  margin-bottom: 12px;
}

.growth-feature-title {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.growth-feature-desc {
  font-size: 0.78rem;
  color: var(--text-secondary);
  line-height: 1.45;
}

.growth-media-box {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  min-height: 380px;
}

.growth-media-box img {
  width: 100%;
  height: 100%;
  min-height: 380px;
}

.growth-media-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(4, 7, 14, 0.2) 0%, rgba(4, 7, 14, 0.95) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px 24px;
}

/* ==========================================================================
   ADVISORY & PRICING
   ========================================================================== */
.advisory-section {
  padding: 90px 0;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  max-width: 900px;
  margin: 48px auto 0;
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 36px 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  transition: all var(--transition-smooth);
}

.pricing-card.featured {
  border-color: var(--gold-primary);
  background: linear-gradient(160deg, rgba(15, 28, 53, 0.9) 0%, rgba(7, 13, 26, 0.95) 100%);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  right: 24px;
  background: var(--gold-primary);
  color: var(--bg-dark-950);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
}

.pricing-title {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.pricing-subtitle {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.pricing-rate-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border-light);
}

.pricing-amount {
  font-family: var(--font-serif);
  font-size: 2.6rem;
  font-weight: 600;
  color: var(--gold-primary);
  line-height: 1;
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}

.pricing-feature-item {
  font-size: 0.82rem;
  color: var(--text-secondary);
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.4;
}

.pricing-feature-item svg {
  width: 16px;
  height: 16px;
  color: var(--gold-primary);
  flex-shrink: 0;
  margin-top: 2px;
}

/* ==========================================================================
   FOUNDER SECTION
   ========================================================================== */
.founder-section {
  padding: 100px 0;
  background: rgba(7, 13, 26, 0.6);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.founder-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 48px;
  align-items: center;
}

.founder-portrait-wrap {
  position: relative;
  max-width: 440px;
  margin: 0 auto;
}

.founder-img-frame {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
}

.founder-img-frame img {
  width: 100%;
  aspect-ratio: 4/5;
}

.founder-stats-badge {
  background: var(--bg-dark-850);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  margin-top: 16px;
}

.founder-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  text-align: center;
}

.founder-stat-val {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--gold-primary);
  line-height: 1;
}

.founder-stat-lbl {
  font-size: 0.62rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 4px;
}

.founder-name {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 3.8vw, 3.2rem);
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.founder-role {
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--gold-light);
  margin-bottom: 20px;
  text-transform: uppercase;
}

.founder-bio {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 24px;
}

/* ==========================================================================
   NETWORK & CTA BANNER
   ========================================================================== */
.cta-banner-section {
  padding: 80px 0;
  background: radial-gradient(circle at 50% 50%, rgba(197, 168, 128, 0.1) 0%, rgba(4, 7, 14, 0.98) 80%);
  text-align: center;
}

.cta-banner-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 32px;
  flex-wrap: wrap;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  background: #020408;
  border-top: 1px solid var(--border-light);
  padding: 70px 0 36px;
  font-size: 0.82rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr 1.2fr;
  gap: 32px;
  margin-bottom: 48px;
}

.footer-col-title {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-primary);
  margin-bottom: 16px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-link {
  color: var(--text-muted);
}

.footer-link:hover {
  color: var(--gold-light);
}

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--text-muted);
  font-size: 0.75rem;
  flex-wrap: wrap;
  gap: 12px;
}

/* ==========================================================================
   INTERACTIVE MULTI-STEP MODAL (CONCIERGE)
   ========================================================================== */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(2, 4, 8, 0.9);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-smooth);
}

.modal-backdrop.active {
  opacity: 1;
  visibility: visible;
}

.modal-container {
  background: var(--bg-dark-850);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  max-width: 640px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.85);
  position: relative;
  padding: 32px 28px;
  transform: translateY(20px);
  transition: transform var(--transition-smooth);
}

.modal-backdrop.active .modal-container {
  transform: translateY(0);
}

.modal-close-btn {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-light);
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.intake-step {
  display: none;
}

.intake-step.active {
  display: block;
  animation: fadeIn 0.25s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(4px); }
  to { opacity: 1; transform: translateY(0); }
}

.intake-step-indicator {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
}

.step-pill {
  flex: 1;
  height: 3px;
  background: var(--border-light);
  border-radius: 2px;
}

.step-pill.active {
  background: var(--gold-primary);
}

.options-choice-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.option-choice-card {
  background: rgba(11, 20, 38, 0.5);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  cursor: pointer;
}

.option-choice-card.selected {
  border-color: var(--gold-primary);
  background: rgba(197, 168, 128, 0.12);
}

.form-group {
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold-light);
}

.form-input, .form-select, .form-textarea {
  background: rgba(4, 7, 14, 0.85);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  color: var(--text-primary);
  font-family: inherit;
  font-size: 0.88rem;
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--gold-primary);
}

/* ==========================================================================
   RESPONSIVE MEDIA QUERIES (FLAWLESS TABLET & MOBILE)
   ========================================================================== */
@media (max-width: 1180px) {
  .nav-menu {
    display: none;
  }

  .nav-actions {
    display: none;
  }

  .mobile-toggle {
    display: flex;
  }

  .divisions-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pathway-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .framework-steps-track {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* MOBILE DRAWER NAVIGATION */
@media (max-width: 1180px) {
  .nav-menu.mobile-open {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    position: fixed;
    top: var(--header-height-desktop);
    left: 0;
    width: 100%;
    height: calc(100vh - var(--header-height-desktop));
    background: rgba(4, 7, 14, 0.98);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    padding: 28px 20px 40px;
    gap: 16px;
    border-top: 1px solid var(--border-subtle);
    overflow-y: auto;
    z-index: 999;
  }

  .nav-menu.mobile-open .nav-item {
    width: 100%;
    border-bottom: 1px solid var(--border-light);
  }

  .nav-menu.mobile-open .nav-link {
    font-size: 1.05rem;
    padding: 12px 0;
    color: var(--text-primary);
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
  }

  .nav-menu.mobile-open .dropdown-chevron {
    display: none;
  }

  .nav-menu.mobile-open .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 8px 0 16px 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-width: 0;
    pointer-events: auto;
  }

  .nav-menu.mobile-open .mega-panel {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 8px 0 16px 12px;
  }

  .nav-menu.mobile-open .dropdown-item {
    padding: 6px 0;
    background: transparent !important;
    border: none !important;
  }

  .nav-menu.mobile-open .dropdown-item-title {
    font-size: 0.9rem;
    color: var(--gold-light);
  }

  .nav-menu.mobile-open .dropdown-item-desc {
    font-size: 0.72rem;
    color: var(--text-muted);
  }

  .drawer-cta-wrap {
    display: flex !important;
    margin-top: 20px;
    flex-direction: column;
    gap: 12px;
    width: 100%;
  }

  .drawer-cta-wrap .btn {
    width: 100%;
    padding: 14px;
    font-size: 0.85rem;
  }
}

@media (max-width: 768px) {
  .nav-container {
    height: var(--header-height-mobile);
  }

  .nav-menu.mobile-open {
    top: var(--header-height-mobile);
    height: calc(100vh - var(--header-height-mobile));
    padding: 20px 16px 36px;
  }

  .brand-title {
    font-size: 0.9rem;
  }

  .brand-sub {
    font-size: 0.52rem;
  }

  .hero-section {
    padding-top: calc(var(--header-height-mobile) + 36px);
    padding-bottom: 60px;
    min-height: auto;
  }

  .hero-stats-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .divisions-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .audience-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .framework-card-wrapper {
    padding: 28px 16px;
  }

  .framework-steps-track {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .framework-btn {
    width: 100%;
    padding: 14px 16px;
    font-size: 0.78rem;
  }

  .pathway-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .pathway-item-card {
    height: 190px;
  }

  .realestate-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .growth-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .growth-feature-list {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .growth-media-box {
    min-height: 280px;
  }

  .growth-media-box img {
    min-height: 280px;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .founder-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .founder-stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .options-choice-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn {
    width: 100%;
  }

  /* Prevent any button overflow on small mobile */
  .btn {
    max-width: 100%;
    white-space: normal;
    text-align: center;
    line-height: 1.35;
  }
}
