/* ═══════════════════════════════════════════════
   TOKENS
════════════════════════════════════════════════ */
:root {
  --font:          'Times New Roman', Times, serif;
  --navy:          #160425;
  --purple:        #3D2B6E;
  --purple-hover:  #50399a;
  --gold:          #C4A832;
  --gold-dim:      rgba(196,168,50,0.35);
  --cream:         #faf8f4;
  --gray-bg:       #dbdbdb;
  --text:          #1a1512;
  --muted:         #6b6358;
  --border:        #ccc8bc;
  --radius:        4px;
  --t:             0.22s ease;
  --shadow-card:   0 2px 14px rgba(0,0,0,0.08);
  --shadow-hover:  0 10px 32px rgba(61,43,110,0.18);
}

/* ═══════════════════════════════════════════════
   RESET
════════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; font-size: 16px; }
body  { font-family: var(--font); background: var(--cream); color: var(--text); }
img   { display: block; max-width: 100%; }
a     { text-decoration: none; }

/* ═══════════════════════════════════════════════
   NAV
════════════════════════════════════════════════ */
.nav {
  position: sticky; top: 0; z-index: 200;
  background: var(--navy);
  height: 70px;
  display: flex; align-items: center;
  padding: 0 40px;
  transition: box-shadow 0.3s;
}
.nav.scrolled { box-shadow: 0 3px 24px rgba(0,0,0,0.45); }
.nav-inner {
  max-width: 1260px; width: 100%; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-brand {
  display: flex; align-items: center; gap: 12px;
}
.nav-logo-wrap {
  background: #fff; border-radius: 4px; padding: 3px 7px;
  display: flex; align-items: center; flex-shrink: 0;
}
.nav-logo-wrap img { height: 34px; width: auto; object-fit: contain; }
.nav-firm {
  font-family: var(--font); font-size: 23px; font-weight: 700;
  color: var(--gold); letter-spacing: 0.2px; line-height: 1.15;
}
.nav-right { display: flex; align-items: center; gap: 22px; }
.nav-link {
  font-family: var(--font); font-size: 15px;
  color: rgba(255,255,255,0.82);
  transition: color var(--t);
}
.nav-link:hover { color: var(--gold); }
.nav-phone {
  font-family: var(--font); font-size: 15px;
  color: rgba(255,255,255,0.82);
  display: flex; align-items: center; gap: 7px;
  transition: color var(--t);
}
.nav-phone:hover { color: #fff; }
.nav-phone i { color: var(--gold); font-size: 12px; }
/* Plain nav CTA (no box) — used on the bio page */
.nav-cta {
  font-family: var(--font); font-size: 15px;
  color: var(--gold); font-weight: 700;
  transition: color var(--t);
}
.nav-cta:hover { color: #fff; }

/* ═══════════════════════════════════════════════
   SHARED SECTION ELEMENTS
════════════════════════════════════════════════ */
.section-inner { max-width: 1260px; margin: 0 auto; }
.section-label {
  font-family: var(--font); font-size: 11px;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 10px;
}
.section-head { text-align: center; margin-bottom: 38px; }
.section-head h2 {
  font-family: var(--font); font-size: 34px; font-weight: 700;
  color: var(--text); line-height: 1.15; margin-bottom: 10px;
}
.section-head p {
  font-family: var(--font); font-size: 14px;
  color: var(--muted); line-height: 1.75;
  max-width: 600px; margin: 0 auto;
}
.gold-rule {
  width: 48px; height: 3px; background: var(--gold);
  border-radius: 2px; margin: 14px auto 0;
}

/* ═══════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════════ */
.site-footer {
  background: #2c2c2c; padding: 20px 40px;
}
.footer-inner {
  max-width: 1260px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.footer-brand { display: flex; align-items: center; gap: 10px; }
.footer-logo {
  height: 36px; width: auto;
  background: #fff; border-radius: 3px; padding: 2px 5px;
}
.footer-name {
  font-family: var(--font); font-size: 14px;
  font-weight: 700; color: var(--gold);
}
.footer-copy {
  font-family: var(--font); font-size: 12px;
  color: rgba(255,255,255,0.42);
}

/* ═══════════════════════════════════════════════
   SCROLL REVEAL
════════════════════════════════════════════════ */
.reveal {
  opacity: 0; transform: translateY(22px);
  transition: opacity 0.55s, transform 0.55s;
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ═══════════════════════════════════════════════
   RESPONSIVE — SHARED (nav + footer)
══════════════════════════════════════════════════ */
@media (max-width: 768px) {
  .nav { padding: 0 20px; }
  .nav-right { gap: 12px; }
  .nav-phone span { display: none; }
  .site-footer { padding: 20px; }
  .footer-inner { flex-direction: column; text-align: center; gap: 8px; }
}
@media (max-width: 480px) {
  .nav { padding: 0 12px; }
  .nav-firm { font-size: 15px; }
  .nav-right { gap: 8px; }
  .nav-link { font-size: 12px; }
  .nav-phone span { display: none; }
  .site-footer { padding: 14px; }
  .footer-name { font-size: 12px; }
  .footer-copy { font-size: 10px; }
}