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

/* ─── DESIGN TOKENS ─── */
:root {
  --gold:        #C8972A;
  --gold-light:  #E8C47A;
  --gold-pale:   #F7EDD5;
  --gold-dark:   #8B6315;
  --navy:        #0B1826;
  --navy-mid:    #152236;
  --navy-light:  #1E3350;
  --navy-card:   #162B43;
  --cream:       #FAF8F4;
  --cream-warm:  #F2EDE4;
  --white:       #FFFFFF;
  --slate:       #4A5C6E;
  --slate-light: #7A8D9E;
  --slate-pale:  #B8C5D0;
  --ink:         #0D1F30;
  --border:      #E0D8CC;
  --border-dark: #C8BFB0;

  --f-display: 'Poppins', sans-serif;
  --f-body:    'DM Sans', sans-serif;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.45, 0, 0.55, 1);

  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --radius-xl:  32px;

  --shadow-card: 0 4px 24px rgba(11,24,38,0.08);
  --shadow-hover: 0 16px 56px rgba(11,24,38,0.14);
  --shadow-gold: 0 8px 32px rgba(200,151,42,0.35);
}

/* ─── LOGO IMAGE ─── */
.logo-img {
  height: 40px; width: auto; display: block;
  /* Logo is white-on-black PNG — invert to show on light nav bg */
  filter: invert(1);
  transition: filter 0.3s;
}
.nav.on-dark .logo-img { filter: invert(1); }
.nav.scrolled .logo-img { filter: invert(1); }
.logo-img-footer {
  height: 36px; width: auto; display: block;
  filter: invert(1);
  margin-bottom: 16px;
}

/* ─── LEADER PHOTO ─── */
.leader-avatar-photo {
  width: 200px; height: 200px; border-radius: 50%;
  object-fit: cover; object-position: top center;
  display: block; margin: 0 auto 28px;
  border: 6px solid var(--gold-pale);
  box-shadow: 0 8px 40px rgba(11,24,38,0.25);
}

/* ─── RESET ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--f-body);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ─── NAVIGATION ─── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 999;
  height: 76px;
  display: flex; align-items: center;
  padding: 0 5%;
  transition: background 0.4s, box-shadow 0.4s;
}
.nav.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--border), 0 8px 32px rgba(11,24,38,0.08);
}
.nav-inner { max-width: 1280px; margin: 0 auto; width: 100%; display: flex; align-items: center; justify-content: space-between; }

.logo { display: flex; align-items: center; gap: 0; }
.logo-emblem {
  width: 44px; height: 44px; border-radius: 10px;
  background: var(--navy);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; position: relative; overflow: hidden;
}
.logo-emblem::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, transparent 40%, rgba(200,151,42,0.2) 100%);
}
.logo-emblem span { font-family: var(--f-display); font-weight: 800; font-size: 13px; color: var(--gold); letter-spacing: 1px; position: relative; }
.logo-text { display: flex; flex-direction: column; line-height: 1.15; }
.logo-text strong { font-family: var(--f-display); font-weight: 700; font-size: 15px; color: var(--navy); }
.logo-text small { font-size: 10px; color: var(--gold-dark); font-weight: 600; letter-spacing: 1.8px; text-transform: uppercase; }
.nav.on-dark .logo-text strong { color: #fff; }
.nav.on-dark .logo-text small { color: var(--gold-light); }

.nav-links { display: flex; align-items: center; gap: 8px; }
.nav-links a {
  font-size: 14px; font-weight: 500; padding: 8px 14px; border-radius: 8px;
  color: var(--slate); transition: color 0.2s, background 0.2s;
}
.nav-links a:hover { color: var(--navy); background: var(--cream-warm); }
.nav-links a.active { color: var(--navy); font-weight: 600; }
.nav.on-dark .nav-links a { color: rgba(255,255,255,0.7); }
.nav.on-dark .nav-links a:hover { color: #fff; background: rgba(255,255,255,0.08); }
.nav.scrolled .nav-links a { color: var(--slate); }
.nav.scrolled .nav-links a:hover { color: var(--navy); background: var(--cream-warm); }

.nav-cta-btn {
  background: var(--navy); color: #fff !important;
  padding: 10px 22px !important; border-radius: 8px !important;
  font-weight: 600 !important; font-size: 14px !important;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s !important;
  background: none !important;
  border: 1.5px solid var(--gold) !important;
  color: var(--gold) !important;
}
.nav-cta-btn:hover { background: var(--gold) !important; color: var(--navy) !important; transform: none !important; box-shadow: none !important; }
.nav.scrolled .nav-cta-btn { border-color: var(--navy) !important; color: var(--navy) !important; }
.nav.scrolled .nav-cta-btn:hover { background: var(--navy) !important; color: #fff !important; }

.hamburger { display: none; flex-direction: column; gap: 5px; padding: 6px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--navy); border-radius: 2px; transition: 0.3s; }
.nav.on-dark .hamburger span { background: #fff; }

.mobile-menu {
  display: none;
  position: fixed; inset: 0; z-index: 998;
  background: var(--navy);
  flex-direction: column; align-items: center; justify-content: center; gap: 8px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a { font-size: 22px; font-weight: 600; color: rgba(255,255,255,0.7); padding: 12px 24px; transition: color 0.2s; }
.mobile-menu a:hover { color: var(--gold); }

/* ─── SHARED BUTTONS ─── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--f-display); font-weight: 600; font-size: 14px;
  padding: 13px 28px; border-radius: 10px;
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out), background 0.2s;
  letter-spacing: 0.3px;
}
.btn:hover { transform: translateY(-2px); }
.btn-gold {
  background: var(--gold); color: var(--navy);
  box-shadow: var(--shadow-gold);
}
.btn-gold:hover { background: #D4A53A; box-shadow: 0 12px 48px rgba(200,151,42,0.45); }
.btn-dark { background: var(--navy); color: #fff; box-shadow: 0 4px 20px rgba(11,24,38,0.25); }
.btn-dark:hover { background: var(--navy-light); }
.btn-outline-white { border: 1.5px solid rgba(255,255,255,0.4); color: #fff; }
.btn-outline-white:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.7); }
.btn-outline-dark { border: 1.5px solid var(--navy); color: var(--navy); }
.btn-outline-dark:hover { background: var(--navy); color: #fff; }
.btn-lg { padding: 16px 36px; font-size: 15px; border-radius: 12px; }
.btn svg { width: 16px; height: 16px; flex-shrink: 0; }

/* ─── SECTION SHARED ─── */
.section { padding: 110px 5%; }
.section-sm { padding: 72px 5%; }
.wrap { max-width: 1280px; margin: 0 auto; }
.wrap-narrow { max-width: 860px; margin: 0 auto; }
.wrap-mid { max-width: 1080px; margin: 0 auto; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--gold-dark); margin-bottom: 14px;
}
.eyebrow::before { content: ''; width: 24px; height: 2px; background: var(--gold); border-radius: 2px; flex-shrink: 0; }
.eyebrow-light { color: var(--gold-light); }
.eyebrow-light::before { background: var(--gold-light); }

.section-title {
  font-family: var(--f-display); font-weight: 800;
  font-size: clamp(32px, 4.5vw, 54px);
  color: var(--navy); line-height: 1.1; letter-spacing: -0.5px;
}
.section-title-light { color: #fff; }
.section-desc {
  font-size: 17px; color: var(--slate); line-height: 1.85; max-width: 560px;
  margin-top: 18px;
}
.section-desc-light { color: rgba(255,255,255,0.65); }

/* ─── GOLD DIVIDER ─── */
.gold-line { width: 56px; height: 3px; background: linear-gradient(90deg, var(--gold), var(--gold-light)); border-radius: 2px; margin: 20px 0; }

/* ─── PAGE HERO BANNER (inner pages) ─── */
.page-hero {
  min-height: 560px;
  background: var(--navy);
  display: flex; align-items: flex-end;
  padding: 100px 5% 88px;
  position: relative; overflow: hidden;
}
.page-hero-img {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0.15;
}
.page-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(11,24,38,0.3) 0%, rgba(11,24,38,0.8) 100%);
}
.page-hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(200,151,42,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200,151,42,0.05) 1px, transparent 1px);
  background-size: 64px 64px;
}
.page-hero-content { position: relative; z-index: 2; max-width: 1280px; margin: 0 auto; width: 100%; }
.page-hero-breadcrumb { font-size: 13px; color: rgba(255,255,255,0.4); margin-bottom: 20px; display: flex; align-items: center; gap: 8px; }
.page-hero-breadcrumb a { color: rgba(255,255,255,0.5); transition: color 0.2s; }
.page-hero-breadcrumb a:hover { color: var(--gold-light); }
.page-hero-breadcrumb span { color: var(--gold); }
.page-hero h1 { font-family: var(--f-display); font-weight: 800; font-size: clamp(36px, 5vw, 64px); color: #fff; line-height: 1.1; letter-spacing: -0.5px; }
.page-hero h1 em { font-style: normal; color: var(--gold); }
.page-hero p { font-size: 18px; color: rgba(255,255,255,0.65); margin-top: 16px; max-width: 580px; line-height: 1.7; }

/* ─── CARDS ─── */
.card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out);
  overflow: hidden;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }

/* ─── REVEAL ANIMATION ─── */
.reveal {
  opacity: 0; transform: translateY(32px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ─── FOOTER ─── */
.footer { background: #070F18; padding: 80px 5% 40px; }
.footer-inner { max-width: 1280px; margin: 0 auto; }
.footer-top { display: grid; grid-template-columns: 2.2fr 1fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 56px; border-bottom: 1px solid rgba(255,255,255,0.06); }
.footer-brand-desc { font-size: 14px; color: rgba(255,255,255,0.38); line-height: 1.8; margin: 18px 0 24px; max-width: 280px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 36px; height: 36px; border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.4); font-size: 14px;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.footer-social a:hover { border-color: var(--gold); color: var(--gold); background: rgba(200,151,42,0.08); }
.footer-col h5 { font-family: var(--f-display); font-size: 11px; font-weight: 700; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 20px; }
.footer-col li { margin-bottom: 12px; }
.footer-col a { font-size: 14px; color: rgba(255,255,255,0.38); transition: color 0.2s; }
.footer-col a:hover { color: var(--gold-light); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 32px; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.22); }
.footer-bottom a { color: rgba(255,255,255,0.3); font-size: 13px; transition: color 0.2s; }
.footer-bottom a:hover { color: var(--gold); }

/* ─── TAG / BADGE ─── */
.tag {
  display: inline-flex; align-items: center;
  background: var(--cream-warm); border: 1px solid var(--border);
  border-radius: 100px; padding: 5px 14px;
  font-size: 12px; font-weight: 600; color: var(--slate);
  text-transform: uppercase; letter-spacing: 0.8px;
}
.tag-gold { background: var(--gold-pale); border-color: var(--gold-light); color: var(--gold-dark); }
.tag-navy { background: var(--navy); color: rgba(255,255,255,0.7); border-color: var(--navy-light); }

/* ─── STAT NUMBERS ─── */
.stat-number { font-family: var(--f-display); font-weight: 800; font-size: 52px; line-height: 1; color: var(--gold); }
.stat-label { font-size: 14px; color: var(--slate); font-weight: 500; margin-top: 6px; }

/* ─── QUOTE BLOCK ─── */
.quote-block {
  border-left: 3px solid var(--gold); padding: 16px 20px;
  background: var(--gold-pale); border-radius: 0 10px 10px 0;
  margin-top: 20px;
}
.quote-block p { font-size: 14px; font-style: italic; color: var(--navy); line-height: 1.7; }

/* ─── REGION CHIP ─── */
.region-chip {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.2px;
  color: var(--gold-dark);
}
.region-chip::before { content: '●'; font-size: 6px; color: var(--gold); }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .footer-top { grid-template-columns: 1fr 1fr 1fr; }
}
@media (max-width: 768px) {
  .section { padding: 72px 5%; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
@media (max-width: 480px) {
  .footer-top { grid-template-columns: 1fr; }
}

/* ─── ELEGANT SVG ICONS ─── */
.svc-feat-icon {
  flex-shrink: 0;
  width: 36px; height: 36px;
  background: var(--gold-pale);
  border: 1px solid var(--gold-light);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-dark);
}
.svc-feat-icon svg { width: 18px; height: 18px; stroke: var(--gold-dark); }
.badge-icon { display: flex; align-items: center; }
.badge-icon svg { width: 20px; height: 20px; }
.strength-icon svg { width: 28px; height: 28px; }
.strength-icon { height: 56px; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.co-ov-icon svg { width: 32px; height: 32px; }
.co-ov-icon { height: 48px; display: flex; align-items: center; justify-content: center; margin-bottom: 14px; }
.phil-icon svg { width: 32px; height: 32px; }
.phil-icon { height: 44px; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.info-icon { width: 28px; height: 28px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.info-icon svg { width: 18px; height: 18px; }
.info-card-title svg { width: 20px; height: 20px; }
.vm-card h4 { display: flex; align-items: center; gap: 8px; }

/* ═══════════════════════════════════════════
   DESKTOP TYPOGRAPHY UPGRADE
   ═══════════════════════════════════════════ */
body { font-size: 17px; }

/* Paragraphs everywhere — larger, more readable */
p { font-size: 17px; line-height: 1.85; }
.section-desc { font-size: 18px; line-height: 1.9; }
.page-hero p { font-size: 19px; line-height: 1.75; }
.leader-bio { font-size: 16px; line-height: 1.85; }
.co-main p { font-size: 17px; line-height: 1.9; }
.svc-feat-text p { font-size: 15px; line-height: 1.75; }
.svc-content p.lead { font-size: 17px; line-height: 1.9; }
.vm-card p { font-size: 15px; line-height: 1.75; }
.footer-brand-desc { font-size: 15px; }
.footer-col a { font-size: 15px; }
.quote-block p { font-size: 16px; line-height: 1.8; }
.svc-quote { font-size: 15px; line-height: 1.7; }
.co-cap span { font-size: 14px; }
.co-meta-val { font-size: 15px; }
.co-tagline { font-size: 17px; }
.leader-quote { font-size: 15px; line-height: 1.75; }
.impact-card p { font-size: 14px; line-height: 1.7; }
.strength-card p { font-size: 15px; line-height: 1.75; }
.value-card p { font-size: 16px; line-height: 1.8; }
.phil-card p { font-size: 16px; line-height: 1.8; }
.region-card .region-op { font-size: 14px; }
.office-ops { font-size: 15px; line-height: 1.7; }
.faq-a p { font-size: 16px; line-height: 1.8; }
.form-label { font-size: 14px; }
.info-text { font-size: 15px; line-height: 1.65; }
.partner-card p { font-size: 15px; line-height: 1.75; }
.hero-desc { font-size: 17px; line-height: 1.85; }
.svc-card p { font-size: 15px; line-height: 1.7; }
.co-card p { font-size: 14px; line-height: 1.7; }
.office-card .office-ops { font-size: 14px; }

/* ═══════════════════════════════════════════
   MOBILE FIXES — overflow, alignment, spacing
   ═══════════════════════════════════════════ */
@media (max-width: 768px) {

  /* Global overflow prevention */
  html, body { overflow-x: hidden; width: 100%; }
  * { box-sizing: border-box; max-width: 100%; }
  img { max-width: 100%; height: auto; }

  /* Section spacing */
  .section, .section-sm { padding: 60px 20px; }
  .wrap, .wrap-narrow, .wrap-mid { padding: 0; max-width: 100%; }

  /* Typography scaling */
  p, .section-desc, .page-hero p, .hero-desc,
  .co-main p, .svc-content p.lead,
  .leader-bio, .value-card p, .phil-card p { font-size: 15px; line-height: 1.8; }

  .section-title { font-size: clamp(26px, 7vw, 36px); }
  .page-hero h1 { font-size: clamp(28px, 8vw, 44px); }

  /* NAV */
  .nav { padding: 0 20px; }
  .nav-inner { padding: 0; }

  /* PAGE HERO */
  .page-hero { padding: 100px 20px 60px; min-height: auto; }
  .page-hero-content { width: 100%; }

  /* HERO section */
  .hero-inner { padding: 110px 20px 64px; grid-template-columns: 1fr; gap: 40px; }
  .hero-h1 { font-size: clamp(36px, 9vw, 52px); }
  .hero-panel { width: 100%; }
  .hero-stats-row { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .hero-stat-num { font-size: 28px; }
  .hero-actions { flex-direction: column; gap: 12px; }
  .hero-actions .btn { width: 100%; justify-content: center; text-align: center; }
  .hero-regions-tags { gap: 8px; }

  /* INTRO BAND */
  .intro-band { padding: 28px 20px; }
  .intro-band-inner { flex-direction: column; gap: 28px; }
  .intro-band-stats { justify-content: space-around; width: 100%; gap: 16px; }

  /* WHO WE ARE */
  .who-grid { grid-template-columns: 1fr; gap: 36px; }
  .vm-cards { grid-template-columns: 1fr; gap: 14px; }
  .value-chips { flex-wrap: wrap; gap: 8px; }

  /* SERVICE CARDS */
  .svc-grid { grid-template-columns: 1fr; gap: 16px; }
  .svc-card { width: 100%; }

  /* COMPANIES STRIP */
  .co-strip { grid-template-columns: 1fr 1fr; gap: 14px; }

  /* LEADER CARDS */
  .leader-cards { grid-template-columns: 1fr; gap: 20px; }
  .leader-card { flex-direction: column; padding: 28px 20px; gap: 18px; }
  .leader-initials { width: 64px; height: 64px; font-size: 18px; }

  /* CTA BAND */
  .cta-band { padding: 64px 20px; }
  .cta-band-actions { flex-direction: column; gap: 12px; }
  .cta-band-actions .btn { width: 100%; justify-content: center; }

  /* STATS BAND */
  .stats-band { padding: 48px 20px; }
  .stats-band .container,
  .stats-showcase .wrap { grid-template-columns: repeat(2, 1fr); gap: 28px 20px; }
  .showcase-stat { border-right: none; border-bottom: none; }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(0,0,0,0.12); padding-bottom: 20px; }
  .stat-item:nth-child(even) { border-bottom: none; }
  .stat-num, .showcase-num { font-size: 40px; }

  /* FOOTER */
  .footer { padding: 52px 20px 32px; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 10px; }

  /* SERVICE PAGE specific */
  .svc-sec { padding: 64px 20px; }
  .svc-layout, .svc-layout.flip { grid-template-columns: 1fr; direction: ltr; gap: 36px; }
  .svc-layout.flip .svc-img-wrap, .svc-layout.flip .svc-content { direction: ltr; }
  .svc-features { gap: 10px; }
  .svc-feat { padding: 14px 14px; gap: 12px; }
  .svc-feat-icon { width: 38px; height: 38px; flex-shrink: 0; }
  .svc-feat-text h4 { font-size: 14px; }
  .svc-img-badge { left: 16px; bottom: -16px; padding: 10px 14px; gap: 8px; }
  .svc-img-badge i { font-size: 18px; }
  .svc-img-badge span { font-size: 11px; }
  .svc-tab { padding: 14px 14px; font-size: 12px; }
  .svc-tab i { display: none; }

  /* COMPANIES PAGE */
  .co-strip { grid-template-columns: 1fr 1fr; gap: 12px; }
  .co-strip-card { padding: 22px 14px; }
  .co-detail { padding: 60px 20px; }
  .co-layout, .co-layout.flip { grid-template-columns: 1fr; direction: ltr; }
  .co-layout.flip .co-sidebar, .co-layout.flip .co-main { order: unset; direction: ltr; }
  .co-sidebar { position: static; }
  .co-logo-box { max-width: 140px; aspect-ratio: 1; }
  .co-logo-box i { font-size: 38px; }
  .co-cap-grid { grid-template-columns: 1fr; gap: 8px; }
  .co-meta { padding: 18px; }

  /* LEADERSHIP PAGE */
  .leader-layout, .leader-layout.flip { grid-template-columns: 1fr; direction: ltr; }
  .leader-layout.flip .leader-sidebar, .leader-layout.flip .leader-content { order: unset; }
  .leader-full { padding: 60px 20px; }
  .leader-avatar-photo { width: 140px; height: 140px; }
  .impact-grid { grid-template-columns: 1fr; gap: 12px; }
  .philosophy-grid { grid-template-columns: 1fr; gap: 16px; }
  .leader-quote-big { padding: 32px 24px; }
  .leader-quote-big p { font-size: 17px; }
  .leader-quote-big .qmark { font-size: 56px; }

  /* ABOUT PAGE */
  .strength-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .strength-card { padding: 24px 16px; }
  .region-cards { grid-template-columns: 1fr 1fr; gap: 14px; }
  .values-grid { grid-template-columns: 1fr; gap: 16px; }
  .story-grid { grid-template-columns: 1fr; gap: 36px; }
  .value-num { font-size: 40px; }

  /* CONTACT PAGE */
  .contact-layout { grid-template-columns: 1fr; gap: 36px; }
  .contact-form-wrap { padding: 28px 20px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .offices-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .office-card { padding: 20px 16px; }

  /* Buttons on mobile */
  .btn { padding: 13px 24px; font-size: 14px; }
  .btn-lg { padding: 14px 28px; font-size: 14px; }

  /* Presence / region grid */
  .region-cards { grid-template-columns: 1fr 1fr; gap: 14px; }
  .region-card { padding: 22px 16px; }

  /* Eyebrow centered on mobile when page titles centered */
  .page-hero-breadcrumb { font-size: 12px; flex-wrap: wrap; }
}

@media (max-width: 480px) {
  .section { padding: 52px 16px; }
  .svc-sec, .co-detail, .leader-full { padding: 52px 16px; }
  .page-hero { padding: 90px 16px 52px; }
  .hero-inner { padding: 100px 16px 56px; }
  .co-strip { grid-template-columns: 1fr; }
  .strength-grid { grid-template-columns: 1fr; }
  .region-cards { grid-template-columns: 1fr; }
  .offices-grid { grid-template-columns: 1fr; }
  .hero-stats-row { grid-template-columns: repeat(2,1fr); gap: 8px; }
  .hero-region-tag { font-size: 11px; padding: 4px 12px; }
  .stats-band .container,
  .stats-showcase .wrap { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr; }
  .cta-band { padding: 52px 16px; }
  .intro-band { padding: 24px 16px; }
  p, .section-desc { font-size: 15px; }
}

/* Inline CTA section mobile fix */
.cta-section-inline { padding: 80px 5% !important; }
@media (max-width: 768px) {
  .cta-section-inline { padding: 64px 20px !important; }
  /* Fix any element that might cause horizontal scroll */
  .hero-glow { display: none; }
  .hero-grid { display: none; }
  .page-hero-grid { display: none; }
  .cta-band-grid { display: none; }
  .svc-img-wrap { overflow: hidden; }
  .co-img-wrap { overflow: hidden; }
  /* Prevent grid blowout */
  .hero-stats-row > *, .co-strip > *, .svc-grid > * { min-width: 0; }
  /* Text overflow */
  h1, h2, h3, h4, p, span, a { word-break: break-word; overflow-wrap: break-word; }
  /* Leader sidebar logo box centering */
  .co-logo-box { margin: 0 auto; }
  /* Stat numbers */
  .stat-num { font-size: 38px; }
  .stat-label { font-size: 13px; }
}

/* ─── REGION FLAG ICON BOX (about page) ─── */
.region-flag {
  width: 56px; height: 56px; border-radius: 14px;
  background: rgba(200,151,42,0.15);
  border: 1px solid rgba(200,151,42,0.25);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.region-flag i { font-size: 26px; color: var(--gold); }

/* ─── FOOTER SOCIAL ICONS (Boxicons) ─── */
.footer-social a i { font-size: 16px; }

/* ─── IMPACT CARD HEADINGS with inline Boxicons ─── */
.impact-card h5 { display: flex; align-items: center; gap: 8px; font-size: 14px; }
.impact-card h5 i { font-size: 18px; flex-shrink: 0; }
.leader-highlight h4 { display: flex; align-items: center; gap: 10px; }
.leader-highlight h4 i { font-size: 22px; flex-shrink: 0; }

/* ─── PHIL ICON (leadership philosophy) ─── */
.phil-icon i { font-size: 32px; color: var(--gold); }

/* ═══════════════════════════════════════════════════════
   FIX 1: NAV — Always visible background on inner pages
   Inner pages (data-dark=false) get solid white nav always
   ═══════════════════════════════════════════════════════ */
.nav[data-dark="false"] {
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--border), 0 4px 24px rgba(11,24,38,0.07);
}
.nav[data-dark="false"] .nav-links a {
  color: var(--slate);
}
.nav[data-dark="false"] .nav-links a:hover {
  color: var(--navy);
  background: var(--cream-warm);
}
.nav[data-dark="false"] .nav-links a.active {
  color: var(--navy);
  font-weight: 600;
}
.nav[data-dark="false"] .nav-cta-btn {
  border-color: var(--navy) !important;
  color: var(--navy) !important;
}
.nav[data-dark="false"] .nav-cta-btn:hover {
  background: var(--navy) !important;
  color: #fff !important;
}
.nav[data-dark="false"] .hamburger span {
  background: var(--navy);
}
.nav[data-dark="false"] .logo-img {
  filter: invert(1);
}

/* Homepage hero nav stays transparent/dark until scroll */
.nav.on-dark:not(.scrolled) {
  background: transparent;
}
.nav.on-dark.scrolled {
  background: rgba(255,255,255,0.98);
  box-shadow: 0 1px 0 var(--border), 0 8px 32px rgba(11,24,38,0.08);
}
.nav.on-dark.scrolled .nav-links a { color: var(--slate); }
.nav.on-dark.scrolled .nav-links a:hover { color: var(--navy); }
.nav.on-dark.scrolled .nav-cta-btn {
  border-color: var(--navy) !important;
  color: var(--navy) !important;
}
.nav.on-dark.scrolled .nav-cta-btn:hover {
  background: var(--navy) !important;
  color: #fff !important;
}
.nav.on-dark.scrolled .hamburger span { background: var(--navy); }
.nav.on-dark.scrolled .logo-img { filter: invert(1); }

/* ═══════════════════════════════════════════════════════
   FIX 2: FOOTER — Increase text visibility significantly
   ═══════════════════════════════════════════════════════ */
.footer-brand-desc {
  color: rgba(255,255,255,0.72) !important;
}
.footer-col h5 {
  color: rgba(255,255,255,0.85) !important;
}
.footer-col a,
.footer-col li a {
  color: rgba(255,255,255,0.65) !important;
}
.footer-col a:hover,
.footer-col li a:hover {
  color: var(--gold-light) !important;
}
.footer-bottom p {
  color: rgba(255,255,255,0.55) !important;
}
.footer-bottom a {
  color: rgba(255,255,255,0.55) !important;
}
.footer-bottom a:hover {
  color: var(--gold) !important;
}
.footer-social a {
  color: rgba(255,255,255,0.65) !important;
  border-color: rgba(255,255,255,0.2) !important;
}
.footer-social a:hover {
  color: var(--gold) !important;
  border-color: var(--gold) !important;
}

/* ─── LOGO FILTER CORRECTION ─── */
/* Logo PNG is white-on-black. On white/light nav: show as dark (no invert = black shows) */
/* Actually logo is white text on black bg — we need to make the bg transparent */
/* Use filter: brightness(0) to make it fully black on light nav */
.logo-img {
  height: 40px; width: auto; display: block;
  filter: brightness(0) invert(0); /* black logo on light bg */
  transition: filter 0.3s;
}
/* On dark hero background: make logo white */
.nav.on-dark:not(.scrolled) .logo-img {
  filter: brightness(0) invert(1); /* white logo on dark bg */
}
/* When scrolled (white nav): black logo */
.nav.on-dark.scrolled .logo-img,
.nav[data-dark="false"] .logo-img {
  filter: brightness(0) invert(0); /* black logo */
}

/* ═══════════════════════════════════════════
   LOGO FIX — transparent PNG, no black box
   Logo content is WHITE → invert to dark on light nav
   ═══════════════════════════════════════════ */
.logo-img {
  height: 40px; width: auto; display: block;
  filter: invert(1); /* white logo → dark on light bg */
  transition: filter 0.3s;
}
/* On dark hero: keep white */
.nav.on-dark:not(.scrolled) .logo-img {
  filter: invert(0); /* white stays white */
}
/* On white/light nav (scrolled or inner pages): make dark */
.nav.on-dark.scrolled .logo-img,
.nav[data-dark="false"] .logo-img {
  filter: invert(1); /* white → dark */
}
.logo-img-footer {
  height: 36px; width: auto; display: block;
  filter: invert(0); /* white stays white on dark footer */
  margin-bottom: 16px;
}

/* ─── FOOTER BOTTOM — Brand Vadhyar credit ─── */
.footer-bottom a {
  color: rgba(255,255,255,0.6) !important;
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid rgba(200,151,42,0.4);
  padding-bottom: 1px;
  transition: color 0.2s, border-color 0.2s;
}
.footer-bottom a:hover {
  color: var(--gold) !important;
  border-color: var(--gold);
}

/* ═══════════════════════════════════════════
   HERO MOBILE ALIGNMENT — override conflicts
   ═══════════════════════════════════════════ */
@media (max-width: 768px) {
  /* Ensure hero never overflows horizontally */
  .hero { width: 100%; overflow-x: hidden; }
  .hero-inner { width: 100%; max-width: 100%; overflow: hidden; }
  .hero-left { width: 100%; max-width: 100%; }

  /* Decorative blobs — hide so they don't cause overflow */
  .hero-glow { display: none; }

  /* Pill wraps cleanly */
  .hero-pill { flex-wrap: wrap; }

  /* Buttons always full-width stacked */
  .hero-actions { flex-direction: column; width: 100%; }
  .hero-actions .btn {
    width: 100% !important;
    display: flex !important;
    justify-content: center !important;
  }

  /* Region tags wrap nicely */
  .hero-regions-tags { flex-wrap: wrap; }

  /* Prevent any text overflow */
  .hero-h1, .hero-tagline, .hero-desc { max-width: 100%; }
}

/* ═══════════════════════════════════════════
   ABOUT PAGE — mobile button row fix
   ═══════════════════════════════════════════ */
@media (max-width: 768px) {
  /* Any flex button row wraps and goes full width */
  div[style*="display:flex"][style*="flex-wrap:wrap"] .btn,
  div[style*="display: flex"][style*="flex-wrap: wrap"] .btn {
    flex: 1 1 100%;
    justify-content: center;
    text-align: center;
    margin-left: 0 !important;
  }

  /* Center-aligned description blocks don't overflow */
  div[style*="max-width:680px"],
  div[style*="max-width: 680px"] {
    max-width: 100% !important;
    padding: 0 !important;
  }

  /* About story images */
  .about-story { overflow: hidden; }
  .story-img, .story-img-small {
    width: 100%;
    max-width: 100%;
    height: auto;
  }

  /* Eyebrow inside centered divs */
  .presence-section .eyebrow,
  .values-full .eyebrow {
    display: flex;
    justify-content: flex-start;
  }

  /* Value card last (navy bg) */
  .value-card[style*="background:var(--navy)"] {
    padding: 28px 20px;
  }
}
