/* ── SHARED STYLES — MAHALA BUSINESS ADVISORS ── */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,700;1,400;1,500&family=DM+Sans:wght@300;400;500;600&display=swap');

:root {
  --navy: #2e2d4d;
  --lavender: #c7b8e4;
  --gold: #cdc06a;
  --gold-dark: #b8a84f;
  --white: #ffffff;
  --off-white: #f8f7f4;
  --text-muted: rgba(255,255,255,0.6);
  --text-dark: #1a1928;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'DM Sans', sans-serif; color: var(--text-dark); background: var(--off-white); overflow-x: hidden; }

/* ANNOUNCEMENT */
.announcement { background: var(--lavender); color: var(--navy); text-align: center; padding: 10px 20px; font-size: 13px; font-weight: 500; }
.announcement a { color: var(--navy); font-weight: 700; text-decoration: underline; margin-left: 6px; }

/* NAV */
nav { background: var(--navy); position: sticky; top: 0; z-index: 100; padding: 0 24px; display: flex; align-items: center; justify-content: space-between; height: 64px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.logo-mark { height: 52px; width: 52px; border-radius: 8px; overflow: hidden; flex-shrink: 0; }
.logo-mark img { width: 100%; height: 100%; object-fit: cover; display: block; }
.nav-links { display: flex; align-items: center; gap: 6px; list-style: none; }
.nav-links li a { color: rgba(255,255,255,0.75); text-decoration: none; font-size: 14px; font-weight: 400; transition: color 0.15s; white-space: nowrap; padding: 0 8px; }
.nav-links li a:hover { color: var(--white); }
.nav-sep { color: rgba(255,255,255,0.2); font-size: 14px; user-select: none; }
.nav-links .dropdown { position: relative; }
.nav-links .dropdown-menu { 
  display: none; 
  position: absolute; 
  top: 100%; 
  left: 0; 
  background: var(--navy); 
  border: 1px solid rgba(255,255,255,0.1); 
  border-radius: 8px; 
  min-width: 240px; 
  padding: 8px 0; 
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}
.nav-links .dropdown-menu.open { display: block; }
/* Remove hover trigger entirely - click only */
.nav-links .dropdown-menu a { display: block; padding: 12px 18px; font-size: 14px; color: rgba(255,255,255,0.75); }
.nav-links .dropdown-menu a:hover { background: rgba(255,255,255,0.05); color: var(--gold); }
.nav-right { display: flex; align-items: center; gap: 16px; }
.nav-social { display: flex; align-items: center; gap: 10px; }
.nav-social a { color: rgba(255,255,255,0.6); transition: color 0.15s; display: flex; align-items: center; }
.nav-social a:hover { color: var(--white); }
.nav-social svg { width: 18px; height: 18px; fill: currentColor; }
.nav-cta { background: var(--gold) !important; color: var(--navy) !important; font-weight: 600 !important; padding: 9px 20px !important; border-radius: 6px !important; border: none !important; text-decoration: none !important; font-size: 14px !important; transition: background 0.15s !important; display: inline-block !important; white-space: nowrap !important; }
.nav-cta:hover { background: var(--gold-dark) !important; }

/* HAMBURGER — mobile only */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; background: none; border: none; z-index: 10; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; }
.mobile-menu { display: none; background: var(--navy); padding: 16px 24px 24px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.mobile-menu.open { display: block; }
.mobile-menu a { display: block; color: rgba(255,255,255,0.8); text-decoration: none; padding: 12px 0; font-size: 16px; border-bottom: 1px solid rgba(255,255,255,0.07); }
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu .mobile-cta { display: block; margin-top: 16px; background: var(--gold); color: var(--navy) !important; font-weight: 600; text-align: center; padding: 14px; border-radius: 8px; font-size: 16px; text-decoration: none; border-bottom: none !important; }

/* PAGE HERO */
.page-hero { background: var(--navy); padding: 64px 24px; text-align: center; background-image: radial-gradient(ellipse at 80% 20%, rgba(199,184,228,0.12) 0%, transparent 50%), radial-gradient(ellipse at 20% 80%, rgba(205,192,106,0.08) 0%, transparent 50%); }
.page-hero .eyebrow { font-size: 11px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; display: block; }
.page-hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(28px, 5vw, 48px); color: var(--white); line-height: 1.15; margin-bottom: 16px; }
.page-hero h1 em { color: var(--gold); font-style: italic; }
.page-hero p { color: rgba(255,255,255,0.65); font-size: 16px; max-width: 520px; margin: 0 auto; line-height: 1.7; }

/* SHARED COMPONENTS */
.section-eyebrow { font-size: 11px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold-dark); margin-bottom: 16px; display: block; }
.section-title { font-family: 'Playfair Display', serif; font-size: clamp(24px, 4vw, 36px); font-weight: 600; color: var(--navy); line-height: 1.2; margin-bottom: 16px; }
.section-sub { font-size: 16px; color: #666; line-height: 1.7; max-width: 540px; margin: 0 auto 40px; }
.btn-primary { background: var(--gold); color: var(--navy); font-weight: 600; font-size: 15px; padding: 14px 28px; border-radius: 8px; text-decoration: none; border: none; cursor: pointer; transition: background 0.15s; display: inline-block; }
.btn-primary:hover { background: var(--gold-dark); }
.btn-secondary { background: transparent; color: var(--navy); font-weight: 500; font-size: 15px; padding: 13px 28px; border-radius: 8px; text-decoration: none; border: 1.5px solid var(--navy); transition: all 0.15s; display: inline-block; }
.btn-secondary:hover { background: var(--navy); color: var(--white); }
.btn-white { background: var(--white); color: var(--navy); font-weight: 600; font-size: 15px; padding: 14px 28px; border-radius: 8px; text-decoration: none; display: inline-block; transition: background 0.15s; }
.btn-white:hover { background: var(--off-white); }

/* CTA BANNER */
.cta-banner { background: var(--navy); padding: 72px 24px; text-align: center; background-image: radial-gradient(ellipse at center, rgba(199,184,228,0.08) 0%, transparent 70%); }
.cta-banner h2 { font-family: 'Playfair Display', serif; font-size: clamp(26px, 4vw, 40px); color: var(--white); margin-bottom: 14px; line-height: 1.2; }
.cta-banner h2 em { color: var(--gold); font-style: italic; }
.cta-banner p { color: rgba(255,255,255,0.6); font-size: 16px; margin-bottom: 32px; }
.cta-banner .note { font-size: 13px; color: rgba(255,255,255,0.3); margin-top: 14px; margin-bottom: 0; }

/* FOOTER */
footer { background: #1a1928; padding: 40px 24px; text-align: center; }
.footer-logo { font-family: 'Playfair Display', serif; font-size: 18px; color: var(--gold); margin-bottom: 16px; }
.footer-links { display: flex; gap: 24px; justify-content: center; flex-wrap: wrap; margin-bottom: 20px; }
.footer-links a { color: rgba(255,255,255,0.5); text-decoration: none; font-size: 13px; transition: color 0.15s; }
.footer-links a:hover { color: var(--white); }
.footer-copy { font-size: 12px; color: rgba(255,255,255,0.25); }

/* RESPONSIVE */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-right { display: none; }
  .hamburger { display: flex; }
  .logo-mark { height: 44px; max-width: 160px; }
  .logo-mark img { height: 44px; max-width: 160px; }
}

@media (max-width: 560px) {
  .pain-grid { grid-template-columns: 1fr !important; }
}
