/* ── TOKENS ────────────────────────────────────── */
:root {
  --navy:   #0a1628;
  --navy2:  #0f1f3d;
  --gold:   #b8902a;
  --gold2:  #d4aa44;
  --green:  #1a6640;
  --red:    #991f1f;
  --ink:    #0d0d0d;
  --mid:    #2e2e2e;
  --sub:    #5a5a5a;
  --faint:  #8a8a8a;
  --rule:   #d4cec4;
  --bg:     #faf8f4;
  --warm:   #f3efe6;
  --cool:   #edf1f8;
  --serif:  'Cormorant', Georgia, serif;
  --body:   'DM Sans', 'Helvetica Neue', sans-serif;
  --mono:   'DM Mono', 'Courier New', monospace;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 15px; scroll-behavior: smooth; }
body { font-family: var(--body); color: var(--mid); -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* ── SHARED NAV ────────────────────────────────── */
.site-nav {
  background: var(--navy);
  border-bottom: 3px solid var(--gold);
  height: 64px;
  display: flex;
  align-items: center;
  padding: 0 64px;
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav-brand {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: #fff;
  margin-right: auto;
}
.nav-brand span { color: var(--gold); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  transition: color .2s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--gold); }
.nav-cta {
  margin-left: 32px;
  background: var(--gold);
  color: var(--navy) !important;
  font-weight: 500;
  padding: 8px 18px;
  font-size: 9px !important;
  letter-spacing: .16em !important;
}
.nav-cta:hover { background: var(--gold2) !important; color: var(--navy) !important; }

/* mobile nav toggle */
.nav-burger { display: none; cursor: pointer; flex-direction: column; gap: 5px; margin-left: 24px; }
.nav-burger span { display: block; width: 22px; height: 2px; background: rgba(255,255,255,.5); border-radius: 2px; }

/* ── SHARED FOOTER ─────────────────────────────── */
.site-footer { background: #060d1a; }
.footer-main {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding: 64px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.footer-brand {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  margin-bottom: 16px;
}
.footer-tagline {
  font-family: var(--serif);
  font-size: 16px;
  color: rgba(255,255,255,.55);
  line-height: 1.65;
  margin-bottom: 20px;
}
.footer-offices {
  font-family: var(--mono);
  font-size: 11px;
  color: rgba(255,255,255,.5);
  line-height: 2;
  letter-spacing: .05em;
}
.footer-col h4 {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.footer-col a {
  display: block;
  font-size: 12.5px;
  color: rgba(255,255,255,.3);
  margin-bottom: 10px;
  transition: color .2s;
}
.footer-col a:hover { color: rgba(255,255,255,.7); }
.footer-bottom {
  padding: 28px 64px;
  font-family: var(--mono);
  font-size: 9.5px;
  color: rgba(255,255,255,.28);
  line-height: 1.9;
  border-top: 1px solid rgba(255,255,255,.06);
  max-width: 100%;
}

@media (max-width: 768px) {
  .site-nav { padding: 0 24px; }
  .nav-links { display: none; }
  .nav-links.open { display: flex; flex-direction: column; position: absolute; top: 64px; left: 0; right: 0; background: var(--navy); padding: 24px; gap: 20px; border-bottom: 1px solid rgba(255,255,255,.1); }
  .nav-burger { display: flex; }
  .footer-main { grid-template-columns: 1fr; gap: 32px; padding: 40px 24px; }
  .footer-bottom { padding: 20px 24px; text-align: left; }
}
