@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=DM+Serif+Display:ital@0;1&display=swap');

:root {
  --dark:    #09111e;
  --dark2:   #0f1a2e;
  --dark3:   #162035;
  --gold:    #c49a3c;
  --gold2:   #d4aa52;
  --white:   #ffffff;
  --offwhite:#0f1a2e;
  --light:   rgba(255,255,255,0.06);
  --text:    #ffffff;
  --muted:   rgba(255,255,255,0.55);
  --border:  rgba(255,255,255,0.09);
  --card-bg: rgba(255,255,255,0.04);

  /* Legacy aliases kept for compat */
  --teal:    #09111e;
  --navy:    #0f1a2e;
  --blue:    #c49a3c;
  --cyan:    #c49a3c;

  --sans: 'Inter', system-ui, -apple-system, sans-serif;
  --serif: 'DM Serif Display', Georgia, serif;
  --radius: 4px;
  --max: 1280px;
  --nav-h: 76px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--sans); color: var(--text); background: var(--dark); line-height: 1.6; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; }

/* ── CONTAINER ── */
.container { max-width: var(--max); margin: 0 auto; padding: 0 48px; }
@media(max-width:768px) { .container { padding: 0 24px; } }
@media(max-width:480px) { .container { padding: 0 16px; } }

/* ── NAV ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  height: var(--nav-h);
  background: var(--dark);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: background 0.3s;
}
.nav-inner {
  max-width: var(--max); margin: 0 auto; padding: 0 48px;
  height: 100%; display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  display: flex; align-items: center; gap: 14px;
  font-size: 17px; font-weight: 700; color: var(--white); letter-spacing: -0.3px;
}
.nav-logo-mark {
  width: 36px; height: 36px; border-radius: 4px;
  background: var(--gold); display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 900; color: var(--dark); letter-spacing: -1px;
}
.nav-logo span { color: var(--gold); }
.nav-links { display: flex; align-items: center; gap: 36px; }
.nav-links a {
  font-size: 13px; font-weight: 500; color: rgba(255,255,255,0.6);
  letter-spacing: 0.3px; transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-cta {
  background: var(--gold); color: var(--dark) !important;
  padding: 10px 22px; border-radius: var(--radius);
  font-weight: 700 !important; font-size: 13px !important;
  letter-spacing: 0.2px; transition: opacity 0.2s !important;
}
.nav-cta:hover { opacity: 0.88; }
.page-top { padding-top: var(--nav-h); }

/* ── HERO ── */
.hero {
  background: var(--dark);
  min-height: 88vh;
  display: flex; align-items: center;
  position: relative; overflow: hidden;
  padding: 100px 0 80px;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(135deg, rgba(196,154,60,0.06) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 50%, rgba(196,154,60,0.04) 0%, transparent 70%);
}
.hero-inner {
  position: relative; z-index: 2;
  max-width: 820px;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--gold); margin-bottom: 28px;
}
.hero-eyebrow::before {
  content: ''; display: block; width: 28px; height: 2px;
  background: var(--gold); border-radius: 1px;
}
.hero h1 {
  font-family: var(--serif); font-size: 4.2rem; line-height: 1.1;
  color: var(--white); margin-bottom: 28px; font-weight: 400;
}
.hero h1 em { font-style: italic; color: var(--gold); }
.hero p.lead {
  font-size: 1.15rem; color: rgba(255,255,255,0.65); line-height: 1.75;
  max-width: 580px; margin-bottom: 44px; font-weight: 300;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: var(--radius);
  font-size: 13px; font-weight: 700; letter-spacing: 0.4px;
  text-transform: uppercase; transition: all 0.22s; border: none;
}
.btn-primary { background: var(--gold); color: var(--dark); }
.btn-primary:hover { background: var(--gold2); }
.btn-outline-white {
  background: transparent; color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.25);
}
.btn-outline-white:hover { border-color: rgba(255,255,255,0.6); background: rgba(255,255,255,0.05); }
.btn-outline {
  background: transparent; color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.2);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.btn-dark { background: var(--dark2); color: var(--white); border: 1px solid var(--border); }
.btn-dark:hover { border-color: var(--gold); color: var(--gold); }

/* ── STATS BAR ── */
.stats-bar {
  background: var(--dark2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 52px 0;
}
.stats-bar-inner {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 24px; text-align: center;
}
.stat-item {}
.stat-num {
  font-family: var(--serif); font-size: 3.2rem; color: var(--gold);
  line-height: 1; margin-bottom: 8px;
}
.stat-label {
  font-size: 12px; font-weight: 600; letter-spacing: 1.5px;
  text-transform: uppercase; color: rgba(255,255,255,0.55);
}
.stat-sub { font-size: 12px; color: rgba(255,255,255,0.3); margin-top: 4px; }
@media(max-width:640px) { .stats-bar-inner { grid-template-columns: 1fr 1fr; gap: 32px; } }

/* ── SECTIONS ── */
.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }
.section-dark { background: var(--dark); }
.section-navy { background: var(--dark2); }
.section-light { background: var(--dark2); }
.section-border-top { border-top: 1px solid var(--border); }

.eyebrow {
  display: block; font-size: 11px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 16px;
}
.eyebrow-white { color: var(--gold); }

h2.display {
  font-family: var(--serif); font-size: 2.8rem; font-weight: 400;
  color: var(--white); line-height: 1.2; margin-bottom: 24px;
}
h2.display em { font-style: italic; color: var(--gold); }
h2.display.white { color: var(--white); }
h2.display.white em { color: var(--gold); }
h3.section-title { font-size: 1.4rem; font-weight: 700; color: var(--white); margin-bottom: 16px; }
h3.section-title.white { color: var(--white); }
.section-lead { font-size: 1.05rem; color: rgba(255,255,255,0.6); line-height: 1.8; max-width: 620px; }
.section-lead.white { color: rgba(255,255,255,0.6); }

.divider { width: 48px; height: 3px; background: var(--gold); border-radius: 1px; margin: 20px 0 32px; }
.divider-gold { background: var(--gold); }

/* ── GRID LAYOUTS ── */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.two-col.reverse .two-col-content { order: 2; }
.two-col.reverse .two-col-visual { order: 1; }
.three-col { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.four-col { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
@media(max-width:960px) { .two-col { grid-template-columns: 1fr; gap: 48px; } .three-col { grid-template-columns: 1fr; } .four-col { grid-template-columns: 1fr 1fr; } }
@media(max-width:640px) { .four-col { grid-template-columns: 1fr; } }

/* ── CARDS ── */
.card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius); padding: 36px; transition: box-shadow 0.2s, transform 0.2s, border-color 0.2s;
}
.card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.3); transform: translateY(-2px); border-color: rgba(196,154,60,0.3); }
.card-dark { background: rgba(255,255,255,0.03); border-color: var(--border); }
.card-dark:hover { background: rgba(255,255,255,0.06); border-color: rgba(196,154,60,0.3); }
.card-icon { font-size: 28px; margin-bottom: 16px; }
.card h4 { font-size: 1.1rem; font-weight: 700; color: var(--white); margin-bottom: 10px; }
.card h4.white { color: var(--white); }
.card p { font-size: 14px; color: rgba(255,255,255,0.6); line-height: 1.7; }
.card p.white { color: rgba(255,255,255,0.6); }

/* ── STRATEGY PILLARS ── */
.pillar {
  padding: 40px 0; border-top: 1px solid var(--border);
}
.pillar-num { font-family: var(--serif); font-size: 3rem; color: rgba(255,255,255,0.08); font-weight: 400; margin-bottom: 12px; }
.pillar h4 { font-size: 1.15rem; font-weight: 700; color: var(--white); margin-bottom: 10px; }
.pillar p { font-size: 14px; color: rgba(255,255,255,0.6); line-height: 1.75; }

/* ── TEAM ── */
.team-photo-wrap {
  width: 100%; aspect-ratio: 3/4; background: var(--dark3);
  border-radius: var(--radius); overflow: hidden; margin-bottom: 20px;
  border: 1px solid var(--border);
}
.team-photo-wrap img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.team-name { font-size: 1.2rem; font-weight: 700; color: var(--white); margin-bottom: 4px; }
.team-title { font-size: 12px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: var(--gold); }
.team-card-dark .team-name { color: var(--white); }

/* ── CASE STUDY ── */
.case-study {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.2s;
}
.case-study:hover { border-color: rgba(196,154,60,0.3); }
.case-study-image { width: 100%; height: 320px; overflow: hidden; }
.case-study-image img { width: 100%; height: 100%; object-fit: cover; }
.case-study-body { padding: 40px; }
.case-study-tag {
  display: inline-block; font-size: 10px; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--gold); background: rgba(196,154,60,0.12);
  padding: 4px 12px; border-radius: 2px; margin-bottom: 14px;
}

/* ── QUOTE ── */
.pullquote {
  border-left: 3px solid var(--gold); padding: 28px 40px;
  background: rgba(196,154,60,0.05);
}
.pullquote blockquote { font-family: var(--serif); font-size: 1.4rem; color: var(--white); line-height: 1.6; font-style: italic; }
.pullquote cite { display: block; margin-top: 16px; font-size: 12px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: rgba(255,255,255,0.45); font-style: normal; }

/* ── FEATURED NUMBER ── */
.featured-number { text-align: center; padding: 48px 32px; }
.featured-number .num { font-family: var(--serif); font-size: 5rem; color: var(--gold); line-height: 1; }
.featured-number .label { font-size: 13px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-top: 8px; }

/* ── LOGO BAR ── */
.logo-bar { display: flex; gap: 48px; align-items: center; flex-wrap: wrap; }
.logo-bar-item { font-size: 14px; font-weight: 700; color: rgba(255,255,255,0.35); letter-spacing: 0.5px; }

/* ── CTA SECTION ── */
.cta-section { background: var(--dark2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 96px 0; text-align: center; }
.cta-section h2 { font-family: var(--serif); font-size: 3rem; color: var(--white); margin-bottom: 20px; }
.cta-section p { color: rgba(255,255,255,0.6); font-size: 1.05rem; max-width: 520px; margin: 0 auto 40px; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── FOOTER ── */
footer { background: #050c14; border-top: 1px solid var(--border); padding: 64px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand p { font-size: 13px; color: rgba(255,255,255,0.35); line-height: 1.7; margin-top: 16px; max-width: 280px; }
.footer-col h5 { font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,0.25); margin-bottom: 16px; }
.footer-col a { display: block; font-size: 13px; color: rgba(255,255,255,0.5); margin-bottom: 10px; transition: color 0.2s; }
.footer-col a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.06); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; }
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.25); }
@media(max-width:900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media(max-width:540px) { .footer-grid { grid-template-columns: 1fr; } .footer-bottom { flex-direction: column; gap: 8px; text-align: center; } }

/* ── MOBILE NAV ── */
.nav-hamburger { display: none; flex-direction: column; justify-content: space-between; width: 26px; height: 18px; background: none; border: none; padding: 0; }
.nav-hamburger span { display: block; width: 100%; height: 2px; background: rgba(255,255,255,0.6); border-radius: 1px; transition: all 0.3s; }
.nav-hamburger.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-hamburger.active span:nth-child(2) { opacity: 0; }
.nav-hamburger.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
.nav-mobile-overlay { display: none; position: fixed; inset: 0; z-index: 999; background: var(--dark); align-items: center; justify-content: center; }
.nav-mobile-overlay.active { display: flex; }
.nav-mobile-menu { display: flex; flex-direction: column; align-items: center; gap: 28px; }
.nav-mobile-menu a { font-family: var(--serif); font-size: 1.8rem; color: var(--white); }
.nav-mobile-menu a:hover { color: var(--gold); }
.nav-mobile-menu .nav-cta { font-family: var(--sans) !important; font-size: 13px !important; padding: 12px 28px !important; margin-top: 8px; }
.nav-mobile-close { position: absolute; top: 24px; right: 28px; background: none; border: none; color: rgba(255,255,255,0.5); font-size: 2.2rem; cursor: pointer; }
@media(max-width:860px) { .nav-hamburger { display: flex; } .nav-links { display: none; } }

/* ── MISC ── */
.text-center { text-align: center; }
.text-center .divider { margin-left: auto; margin-right: auto; }
.text-center .section-lead { margin-left: auto; margin-right: auto; }
.mb8 { margin-bottom: 8px; }
.mb16 { margin-bottom: 16px; }
.mb24 { margin-bottom: 24px; }
.mb32 { margin-bottom: 32px; }
.mb48 { margin-bottom: 48px; }
.mb64 { margin-bottom: 64px; }
.tag {
  display: inline-block; font-size: 11px; font-weight: 600;
  letter-spacing: 0.5px; padding: 4px 12px; border-radius: 2px;
  background: rgba(196,154,60,0.12); color: var(--gold); margin: 3px 3px 3px 0;
}

/* ── LEGACY ALIASES (consulting/speaker pages) ── */
:root {
  --navy: #0f1a2e;
  --navy2: #0a1628;
  --navy3: #0d1f35;
  --gold: #c49a3c;
  --gold-light: rgba(196,154,60,0.12);
  --text2: rgba(255,255,255,0.65);
  --white: #ffffff;
  --slate: #162035;
  --slate2: #1a2540;
  --border: rgba(255,255,255,0.09);
  --radius: 4px;
  --sans: 'Inter', system-ui, sans-serif;
  --serif: 'DM Serif Display', Georgia, serif;
  --muted: rgba(255,255,255,0.55);
}
