/* ─────────────────────────────────────────────────────────
   SHARED STYLES - BANN & Associates
───────────────────────────────────────────────────────── */

/* ─────────────────────────────────────────────────────────
   TOKENS
───────────────────────────────────────────────────────── */
:root {
  --navy:       #0B1E38;
  --navy-mid:   #132B48;
  --navy-deep:  #060E1B;
  --gold:       #B8966E;
  --gold-light: #D4B48C;
  --gold-dim:   rgba(184,150,110,0.18);
  --cream:      #F5F3EE;
  --white:      #FFFFFF;
  --text:       #0F1923;
  --muted:      #5C6978;
  --divider:    #DDD8CF;
}

/* ─────────────────────────────────────────────────────────
   RESET
───────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Arsenal', sans-serif;
  font-size: 15px;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { display: block; }

/* ─────────────────────────────────────────────────────────
   UTILITIES
───────────────────────────────────────────────────────── */
.inner { max-width: 1240px; margin: 0 auto; padding: 0 60px; }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.section-label::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--gold);
}

.section-title {
  font-family: 'Arsenal', sans-serif;
  font-size: clamp(34px, 3.6vw, 54px);
  font-weight: 400;
  line-height: 1.08;
  color: var(--text);
}

.why-title {
  white-space: nowrap;
  font-size: clamp(24px, 4vw, 54px);
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gold);
  color: var(--white);
  padding: 13px 30px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: background .2s, transform .2s;
  border: none;
  cursor: pointer;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1.5px solid rgba(255,255,255,.35);
  color: var(--white);
  padding: 13px 30px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: border-color .2s, background .2s;
  background: none;
  cursor: pointer;
}
.btn-ghost:hover { border-color: var(--white); background: rgba(255,255,255,.06); }

.arrow-link {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: gap .2s;
}
.arrow-link .ar { font-size: 16px; transition: transform .2s; }
.arrow-link:hover .ar { transform: translateX(3px); }

.ghost-link {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: color .2s, gap .2s;
}
.ghost-link:hover { color: var(--gold); gap: 14px; }
.ghost-link .ar { font-size: 15px; }

/* ─────────────────────────────────────────────────────────
   NAV
───────────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 60px;
  background: var(--white);
  border-bottom: 1px solid var(--divider);
  transition: background .4s, box-shadow .4s;
}
.nav.solid {
  background: var(--white);
  box-shadow: 0 2px 24px rgba(0,0,0,.08);
}

.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  transition: opacity .2s;
}
.nav-logo:hover { opacity: 0.8; }
.nav-logo img {
  height: 34px;
  width: auto;
}
/* Text fallback if logo doesn't load */
.nav-logo-text {
  font-family: 'Arsenal', sans-serif;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--gold);
}

.nav-links {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  list-style: none;
  gap: 32px;
  align-items: center;
  white-space: nowrap;
}
.nav-links a {
  color: #000000;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: none;
  position: relative;
  padding-bottom: 3px;
  transition: color .2s;
}
.nav-links a::after {
  content: '';
  position: absolute; bottom: 0; left: 0;
  width: 100%; height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s;
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-links a.active {
  color: var(--gold);
}
.nav-links a.active::after {
  transform: scaleX(1);
}

/* Mobile menu link styling */
@media (max-width: 1024px) {
  .nav-links {
    position: static;
    transform: none;
    flex: none;
  }
  .nav-links a {
    color: var(--white);
  }
  .nav-links a:hover {
    color: var(--gold);
  }
}

/* ── SEARCH ── */
.nav-search { 
  margin-left: auto;
  display: flex; 
  align-items: center; 
  padding-right: 20px; 
}
.search-btn { background: none; border: none; color: var(--gold); cursor: pointer; padding: 8px; transition: color .2s; display: flex; align-items: center; justify-content: center; }
.search-btn:hover { color: var(--gold-light); }

.nav-mobile-search-item {
  display: none;
}

.search-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10,25,47,0.98);
  z-index: 9999;
  display: none !important;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .4s ease;
}
.search-overlay.active { display: flex !important; opacity: 1; pointer-events: all; }
.search-close { position: absolute; top: 40px; right: 40px; background: none; border: none; color: var(--white); font-size: 40px; cursor: pointer; transition: transform .3s; }
.search-close:hover { transform: rotate(90deg); color: var(--gold); }
.search-form { width: 100%; max-width: 800px; padding: 0 40px; }
.search-form input {
  width: 100%;
  background: none;
  border: none;
  border-bottom: 2px solid var(--gold);
  color: var(--white);
  font-family: "Arsenal", sans-serif;
  font-size: clamp(32px, 5vw, 64px);
  padding: 20px 0;
  outline: none;
}
.search-form input::placeholder { color: rgba(255,255,255,0.2); }

.nav-contact {
  background: var(--gold);
  color: var(--white);
  padding: 10px 22px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: background .2s;
}
.nav-contact:hover { background: var(--gold-light); }

/* Mobile hamburger */
.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  cursor: pointer;
  padding: 8px;
  width: 40px;
  height: 40px;
  z-index: 210;
}
.nav-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all .3s ease;
}
.nav-burger:hover span { background: var(--gold); }

.search-results {
  margin-top: 18px;
  max-height: 48vh;
  overflow: auto;
  display: grid;
  gap: 12px;
}

.search-results-empty {
  color: rgba(255,255,255,0.65);
  font-size: 14px;
  line-height: 1.6;
}

.search-result-item {
  display: block;
  padding: 14px 16px;
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--white);
  transition: border-color .2s, background .2s;
}

.search-result-item:hover {
  border-color: var(--gold);
  background: rgba(184,150,110,0.1);
}

.search-result-meta {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 8px;
}

.search-result-title {
  display: block;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 4px;
}

.search-result-excerpt {
  display: block;
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255,255,255,0.8);
}

/* ─────────────────────────────────────────────────────────
   TICKER
───────────────────────────────────────────────────────── */
.ticker {
  background: var(--navy-mid);
  border-bottom: 1px solid rgba(184,150,110,.18);
}
.ticker-inner {
  display: flex;
  align-items: stretch;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 60px;
}
.ticker-tag {
  flex-shrink: 0;
  background: var(--gold);
  color: var(--white);
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: .24em;
  text-transform: uppercase;
  padding: 0 22px;
  display: flex;
  align-items: center;
  white-space: nowrap;
}
.ticker-items {
  flex: 1;
  overflow: hidden;
  position: relative;
}
.ticker-item {
  display: none;
  align-items: center;
  gap: 20px;
  padding: 18px 28px;
  color: rgba(255,255,255,.75);
  font-size: 13px;
  line-height: 1.45;
  cursor: pointer;
  transition: color .2s;
}
.ticker-item.on { display: flex; }
.ticker-item:hover { color: var(--white); }
.ticker-item .ticker-arrow {
  flex-shrink: 0;
  color: var(--gold);
  font-size: 16px;
  transition: transform .2s;
}
.ticker-item:hover .ticker-arrow { transform: translateX(3px); }
/* Dots */
.ticker-dots {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 22px;
  flex-shrink: 0;
}
.ticker-dots span {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: rgba(255,255,255,.22);
  cursor: pointer;
  transition: background .2s;
}
.ticker-dots span.on { background: var(--gold); }

/* ─────────────────────────────────────────────────────────
   HERO
───────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy);
}
.hero-media { position: absolute; inset: 0; background-size: cover; background-position: center; background-repeat: no-repeat; z-index: 0; filter: brightness(1.05); }
.hero-pattern { position: absolute; inset: 0; background: linear-gradient(160deg, rgba(11, 30, 56, 0.08) 0%, rgba(19, 43, 72, 0.05) 55%, rgba(11, 30, 56, 0.08) 100%); z-index: 1; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(6,14,27,.35) 0%, rgba(11,30,56,.10) 50%, transparent 100%); z-index: 1; }
.hero-accent { position: absolute; inset: 0; background: radial-gradient(circle at 120% -20%, rgba(184,150,110,.04) 0%, transparent 50%); z-index: 1; }
.hero-body { position: relative; z-index: 2; width: 100%; max-width: 1240px; margin: 0 auto; padding: 0 60px; }
.hero-eyebrow { font-size: 11px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: rgba(255,255,255,.6); margin-bottom: 20px; }
.hero-headline { display: flex; flex-direction: column; gap: 8px; font-size: clamp(28px, 4vw, 40px); font-weight: 400; line-height: 1.25; color: var(--white); margin-bottom: 24px; margin-top: 0; }
.h-line { display: block; overflow: hidden; height: auto; }
.h-inner { display: inline-block; }
.hero-sub { font-size: 16px; line-height: 1.72; color: rgba(255,255,255,.8); max-width: 680px; margin-bottom: 32px; }
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-scroll { position: absolute; bottom: 48px; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 12px; color: rgba(255,255,255,.5); font-size: 11px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; z-index: 2; }
.scroll-track { width: 1px; height: 20px; background: rgba(255,255,255,.25); position: relative; }
.scroll-thumb { position: absolute; top: 2px; left: 50%; transform: translateX(-50%); width: 1px; height: 5px; background: var(--gold); animation: scroll-pulse 1.5s infinite; }
@keyframes scroll-pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }

/* ─────────────────────────────────────────────────────────
   PAGE HERO — for inner pages (services, team, etc.)
───────────────────────────────────────────────────────── */
.page-hero {
  position: relative;
  min-height: 65vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-top: 72px;
  overflow: hidden;
  background: var(--navy);
}
.page-hero-media {
  position: absolute;
  inset: 0;
  background: center 38% / cover no-repeat;
  z-index: 0;
}
.page-hero-pattern {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(11, 30, 56, 0.15) 0%, rgba(19, 43, 72, 0.1) 55%, rgba(11, 30, 56, 0.15) 100%);
  z-index: 1;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(6, 14, 27, 0.1) 0%, rgba(6, 14, 27, 0.05) 50%, rgba(6, 14, 27, 0.02) 100%);
  z-index: 2;
}
.page-hero-body {
  position: relative;
  z-index: 3;
  color: var(--white);
  padding: 60px;
  max-width: 1240px;
  margin: 0;
  text-align: left;
}
.page-hero-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

/* Boxed variation for Articles/Insights */
.page-hero-eyebrow.is-boxed {
  background: var(--white);
  color: var(--navy);
  padding: 8px 16px;
  font-size: 10.5px;
  letter-spacing: 0.26em;
  margin-bottom: 24px;
}

.page-hero-title {
  font-family: 'Arsenal', sans-serif;
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 16px;
  text-align: left;
}
.page-hero-sub {
  font-size: 16px;
  line-height: 1.68;
  color: rgba(255, 255, 255, 0.75);
  max-width: 560px;
}
.page-hero-meta {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.75);
  margin-top: 10px;
}
.page-hero-meta span { display: flex; align-items: center; gap: 8px; }
.page-hero-meta span::before {
  content: ''; display: block; width: 1px; height: 16px; 
  background: rgba(255,255,255,.2);
}
.page-hero-meta span:first-child::before { display: none; }
.breadcrumb {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 24px;
}
.breadcrumb a {
  color: var(--gold);
  text-decoration: none;
}
.breadcrumb .sep {
  margin: 0 8px;
}
.breadcrumb .here {
  color: rgba(255, 255, 255, 0.55);
}

/* ─────────────────────────────────────────────────────────
   ABOUT
───────────────────────────────────────────────────────── */
.about { background: var(--white); padding: 80px 0; }
.about-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 80px; align-items: start; }
.about-copy h2 { margin-top: 16px; margin-bottom: 28px; }
.about-copy p { font-size: 15px; line-height: 1.82; color: var(--text); margin-bottom: 18px; }
.about-copy .btn-primary { margin-top: 24px; margin-bottom: 32px; }
.values-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin-top: 32px; }
.value-item { display: flex; flex-direction: column; }
.value-num { font-family: 'Arsenal', sans-serif; font-size: 36px; font-weight: 700; color: var(--gold); margin-bottom: 8px; }
.value-title { font-size: 14px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; color: var(--navy); margin-bottom: 10px; }
.value-text { font-size: 14px; line-height: 1.62; color: var(--muted); }
.why-list { display: flex; flex-direction: column; gap: 26px; }
.why-item { display: flex; gap: 16px; }
.why-icon { font-size: 24px; flex-shrink: 0; }
.why-text h4 { font-size: 14px; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.why-text p { font-size: 13.5px; line-height: 1.58; color: var(--muted); }

/* ─────────────────────────────────────────────────────────
   FEATURED INTRO
───────────────────────────────────────────────────────── */
.featured-intro { background: var(--white); padding: 80px 0; }
.featured-intro .inner > div { 
  display: grid; 
  grid-template-columns: 1fr 1fr; 
  gap: 80px; 
  align-items: center;
}

/* ─────────────────────────────────────────────────────────
   EXPERTISE
───────────────────────────────────────────────────────── */
.expertise { background: var(--white); padding: 80px 0; }
.expertise-head { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 80px; max-width: 1240px; margin: 0 auto; padding: 80px 60px 40px 60px; padding-top: 0; padding-bottom: 32px; }
.expertise-head .section-label { color: var(--gold-light); }
.ghost-link { display: inline-flex; align-items: center; gap: 8px; color: var(--muted); font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; transition: color 0.2s; }
.ghost-link:hover { color: var(--gold); gap: 8px; }
.ghost-link .ar { font-size: 14px; transition: transform .2s; }
.ghost-link:hover .ar { transform: translateX(4px); }
.expertise-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  margin: 0 auto;
  max-width: 1240px;
  padding: 0 60px;
  width: 100%;
}
.ex-card { position: relative; overflow: hidden; aspect-ratio: 6/7.2; background: #000; cursor: pointer; display: block; transition: transform .3s; }
.ex-card:hover { transform: translateY(-2px); }
.ex-bg { position: absolute; inset: 0; background-size: cover; background-position: center; transition: transform .6s ease; }
.ex-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(6,14,27,.95) 0%, rgba(11,30,56,.35) 58%, transparent 100%); transition: background .35s; }
.ex-card:hover .ex-overlay { background: linear-gradient(to top, rgba(6,14,27,.98) 0%, rgba(11,30,56,.7) 58%, rgba(11,30,56,.2) 100%); }
.ex-card:hover .ex-bg { transform: scale(1.04); }
.ex-arrow { position: absolute; top: 20px; right: 20px; color: var(--gold); font-size: 18px; opacity: 0; transform: translate(2px, -2px); transition: opacity .3s, transform .3s; }
.ex-card:hover .ex-arrow { opacity: 1; transform: translate(0,0); }
.ex-content { position: absolute; bottom: 0; left: 0; right: 0; padding: 26px 22px; }
.ex-tag { font-size: 9.5px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--gold); margin-bottom: 6px; }
.ex-name { font-family: 'Arsenal', sans-serif; font-size: 18px; font-weight: 400; color: var(--white); line-height: 1.2; }

/* ─────────────────────────────────────────────────────────
   INSIGHTS
───────────────────────────────────────────────────────── */
/* ─────────────────────────────────────────────────────────
   INSIGHTS
───────────────────────────────────────────────────────── */
.article-hero {
  position: relative;
  min-height: 65vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy);
  margin-top: 72px; /* Sync with global nav */
}
.article-hero-media {
  position: absolute;
  inset: 0;
}
.article-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(6,14,27,.97) 0%, rgba(11,30,56,.74) 50%, rgba(11,30,56,.42) 100%);
}
.article-hero-body {
  position: relative; z-index: 2;
  padding: 0 60px;
  max-width: 1240px; margin: 0 auto; width: 100%;
}
.article-hero-label {
  display: inline-block;
  background: var(--white);
  color: var(--navy);
  padding: 8px 16px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.article-hero-title {
  font-family: 'Arsenal', sans-serif;
  font-size: clamp(32px, 4.5vw, 54px);
  font-weight: 400;
  color: var(--white);
  line-height: 1.02;
  margin-bottom: 24px;
  max-width: 960px;
  text-align: left;
}
.article-hero-meta {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.75);
}
.article-hero-meta span {
  display: flex;
  align-items: center;
  gap: 8px;
}
.article-hero-meta span::before {
  content: '';
  display: block;
  width: 1px;
  height: 16px;
  background: rgba(255,255,255,.2);
}
.article-hero-meta span:first-child::before { display: none; }

.insights-sec { background: linear-gradient(160deg, var(--navy-deep) 0%, var(--navy) 50%, var(--navy-mid) 100%); padding: 80px 0; }
.insights-head { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 48px; }
.insights-head .section-label { color: var(--gold-light); }
.insights-head h2 { color: var(--white); }
.insights-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px; }
.ins-card { display: flex; flex-direction: column; gap: 12px; padding: 32px; background: rgba(255,255,255,.03); border: 1px solid rgba(255,255,255,.06); transition: all .3s; cursor: pointer; }
.ins-card:hover { background: rgba(255,255,255,.06); border-color: var(--gold-dim); transform: translateY(-2px); }
.ins-type { font-size: 10px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--gold-light); }
.ins-title { font-family: 'Arsenal', sans-serif; font-size: 22px; font-weight: 400; color: var(--white); line-height: 1.24; }
.ins-excerpt { font-size: 14px; line-height: 1.62; color: rgba(255,255,255,.65); }
.ins-read { display: inline-flex; align-items: center; gap: 6px; font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--gold-light); margin-top: 12px; transition: gap .2s; }
.ins-card:hover .ins-read { gap: 10px; }

/* ─────────────────────────────────────────────────────────
   PEOPLE
───────────────────────────────────────────────────────── */
.people-sec { background: var(--white); padding: 80px 0; }
.people-head { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 48px; }
.people-head h2 { margin-top: 12px; }
.people-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 50px; margin: 0 auto; max-width: 1000px; }
.person-card { position: relative; overflow: hidden; aspect-ratio: 3/4; background: var(--cream); cursor: pointer; display: flex; flex-direction: column; transition: transform .3s; max-width: 280px; margin: 0 auto; width: 100%; }
.person-card:hover { transform: translateY(-4px); }
.person-monogram { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, var(--gold-dim) 0%, rgba(184,150,110,.08) 100%); font-family: 'Arsenal', sans-serif; font-size: 36px; font-weight: 700; color: var(--gold); z-index: 1; }
.person-photo { position: absolute; inset: 0; background-size: cover; background-position: center; filter: grayscale(100%); opacity: 0; transition: opacity .6s, filter .6s; }
.person-card:hover .person-photo { opacity: 1; filter: grayscale(0%); }
.person-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(6,14,27,.92) 0%, rgba(11,30,56,.4) 50%, transparent 100%); opacity: 0; transition: opacity .5s; z-index: 2; }
.person-card:hover .person-overlay { opacity: 1; }
.person-info { position: absolute; bottom: 0; left: 0; right: 0; padding: 20px; display: flex; flex-direction: column; gap: 4px; z-index: 3; transform: translateY(100%); transition: transform .5s; }
.person-card:hover .person-info { transform: translateY(0); }
.person-role { font-size: 10px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); }
.person-name { font-family: 'Arsenal', sans-serif; font-size: 16px; font-weight: 700; color: var(--white); line-height: 1.1; }

/* ─────────────────────────────────────────────────────────
   FOOTER
───────────────────────────────────────────────────────── */
footer {
  background: var(--white);
  padding: 80px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1.2fr;
  gap: 60px;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.footer-brand .f-logo {
  height: 34px;
  width: auto;      /* Prevents width collapse on mobile */
  display: block;   /* Ensures proper spacing in grid layouts */
  margin-bottom: 24px;
}
.f-logo-text {
  font-family: 'Arsenal', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: .04em;
  margin-bottom: 24px;
  display: block;
}
.footer-tagline {
  font-family: 'Arsenal', sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 800;
  color: var(--muted);
  line-height: 1.55;
  margin-bottom: 28px;
}
.footer-social {
  display: flex;
  gap: 10px;
}
.f-social-btn {
  width: 38px; height: 38px;
  border: 1px solid var(--divider);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  transition: border-color .2s, color .2s, background .2s;
}
.f-social-btn:hover { border-color: var(--gold); color: var(--gold); background: var(--cream); }
.f-social-btn svg { width: 24px; height: 24px; fill: currentColor; display: block; }

.footer-col h5 {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 22px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 11px; }
.footer-col ul a {
  color: var(--muted);
  font-size: 14px;
  transition: color .2s;
}
.footer-col ul a:hover { color: var(--gold); }

.footer-contact p {
  font-size: 13px;
  line-height: 1.7;
  color: var(--muted);
  margin-bottom: 5px;
}
.footer-contact strong { color: var(--text); }

.footer-bottom {
  padding: 26px 0 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
.footer-bottom p { font-size: 12px; color: var(--muted); }
.footer-bottom-links { display: flex; gap: 22px; }
.footer-bottom-links a {
  font-size: 12px;
  color: var(--muted);
  transition: color .2s;
}
.footer-bottom-links a:hover { color: rgba(255,255,255,.55); }

/* ─────────────────────────────────────────────────────────
   SCROLL REVEAL
───────────────────────────────────────────────────────── */
.rv {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .72s ease, transform .72s ease;
}
.rv.in { opacity: 1; transform: translateY(0); }

/* ─────────────────────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .inner,
  .ticker-inner { padding: 0 36px; }
  .nav { padding: 0 36px; }
  body.menu-lock { overflow: hidden; }
  .nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 300;
  }
  .nav::before {
    content: '';
    position: fixed;
    inset: 0;
    background: rgba(6,14,27,0.72);
    opacity: 0;
    pointer-events: none;
    transition: opacity .32s ease;
    z-index: 180;
  }
  .nav.menu-open::before {
    opacity: 1;
    pointer-events: auto;
  }
  .nav-links {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: auto;
    transform: translateX(100%);
    width: min(92vw, 420px);
    margin: 0;
    padding: 80px 48px;
    gap: 0;
    background: var(--white);
    border-left: 1px solid var(--divider);
    z-index: 205;
    opacity: 0;
    pointer-events: none;
    transition: transform .4s cubic-bezier(0.22, 1, 0.36, 1), opacity .3s ease;
  }
  .nav.menu-open .nav-links {
    transform: translateX(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav-links li {
    width: 100%;
    border-bottom: 1px solid var(--divider);
  }
  .nav-links li:first-child { border-top: 1px solid var(--divider); }
  .nav-burger { display: flex; }
  .nav.menu-open .nav-burger span:nth-child(1) { transform: translateY(6px) rotate(45deg); background: var(--text); }
  .nav.menu-open .nav-burger span:nth-child(2) { opacity: 0; }
  .nav.menu-open .nav-burger span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); background: var(--text); }
  .nav.menu-open .nav-search { display: none; }
  .nav-links a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--navy);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 24px 0;
    transition: color .3s;
  }
  .nav-links a::after {
    content: '→';
    font-size: 18px;
    font-weight: 300;
    color: var(--gold);
    opacity: 0;
    transform: translateX(-10px);
    transition: opacity .3s, transform .3s;
    display: block;
  }
  .nav-links a:hover,
  .nav-links a.active {
    color: var(--gold);
  }
  .nav-links a:hover::after,
  .nav-links a.active::after {
    opacity: 1;
    transform: translateX(0);
  }
  .nav-mobile-search-item {
    display: block;
    margin-top: auto;
    padding-top: 14px;
    border-top: 1px solid rgba(255,255,255,0.16);
  }
  .nav-mobile-search-btn {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 1px solid rgba(184,150,110,0.5);
    border-radius: 999px;
    color: var(--white);
    padding: 0;
    cursor: pointer;
    transition: border-color .2s, color .2s;
  }
  .nav-mobile-search-btn:hover {
    border-color: var(--gold-light);
    color: var(--gold-light);
  }
  .about, .insights-sec, .people-sec { padding: 80px 0; }
  .expertise { padding-top: 80px; }
  .expertise-head { padding: 0 36px; }
  .expertise-grid { padding: 0 36px; }
  .featured-intro .inner > div { grid-template-columns: 1fr !important; gap: 48px !important; }
  .about-grid { gap: 54px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .page-hero { min-height: 48vh; margin-top: 60px; }
  .page-hero-body { padding: 48px; }
}

@media (max-width: 820px) {
  .about-grid { grid-template-columns: 1fr; }
  .insights-grid { grid-template-columns: 1fr; }
  .people-grid { grid-template-columns: 1fr 1fr; }
  .careers-band-content { flex-direction: column; align-items: flex-start; gap: 32px; }
  .insights-head { flex-direction: column; align-items: flex-start; gap: 16px; }
  .people-head  { flex-direction: column; align-items: flex-start; gap: 16px; }
  .expertise-head { flex-direction: column; align-items: flex-start; gap: 12px; }
  .expertise-grid { grid-template-columns: repeat(2, 1fr); }
  .featured-intro .inner > div { grid-template-columns: 1fr !important; gap: 32px !important; }
  .page-hero { min-height: 40vh; margin-top: 52px; }
  .page-hero-body { padding: 36px; }
}

@media (max-width: 560px) {
  .inner, .ticker-inner, .expertise-head { padding: 0 20px !important; }
  .nav { padding: 0 20px; }
  .about, .insights-sec, .people-sec { padding: 64px 0; }
  .people-grid { grid-template-columns: 1fr; }
  .expertise-grid { grid-template-columns: 1fr; gap: 3px; padding: 0; }
  .ex-card { aspect-ratio: auto; min-height: 260px; }
  .featured-intro .inner > div { grid-template-columns: 1fr !important; gap: 24px !important; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .careers-band-content { padding: 48px 36px; }
  .about, .insights-sec, .people-sec,
  .expertise { padding-left: 0; padding-right: 0; }
  .expertise-head { 
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px !important;
    margin-bottom: 48px !important;
    padding-top: 0 !important;
    width: 100% !important;
    max-width: none !important;
  }
  .page-hero { min-height: 36vh; margin-top: 44px; }
  .page-hero-body { padding: 20px; }
  .page-hero-title { font-size: clamp(28px, 4vw, 36px); }
  .expertise-head .section-label { margin-left: 0; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.1ms !important; }
}

/* Hero Carousel */
.hero-carousel {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.carousel-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  animation: carousel-fade 16s 2 forwards;
}
.carousel-slide:nth-child(1) { animation-delay: 0s; }
.carousel-slide:nth-child(2) { animation-delay: 8s; }

@keyframes carousel-fade {
  /* 7s visible, 2s fade, 7s hidden */
  0%, 44% { opacity: 1; z-index: 1; }
  57%, 100% { opacity: 0; z-index: 0; }
  100% { opacity: 1; z-index: 0; }
}
