/* Vaulted Influence — shared site styles
   Brand system: navy header/footer bookend, white/cream alternating content
   sections, muted gold accents, Spectral headlines, Source Sans 3 body. */

:root {
  --navy: #1c2b3a;
  --navy-footer: #16232f;
  --cream: #f7f0e0;
  --cream-border: #e6dcc2;
  --gold: #b8860b;
  --gold-fill: #8f6708;
  --gold-fill-hover: #745306;
  --gold-on-navy: #d2a437;
  --ink: #1c2b3a;
  --body: #45566a;
  --muted: #4a5a6d;
}

/* ---------- Header / Nav ---------- */

.site-header {
  background: var(--navy);
  color: #ffffff;
}

.site-header__bar {
  max-width: 1180px;
  margin: 0 auto;
  padding: 20px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
}

.wordmark {
  display: flex;
  align-items: baseline;
  gap: 10px;
  color: #ffffff;
  text-decoration: none;
}
.wordmark:hover { color: #ffffff; text-decoration: none; }
.wordmark__text {
  font-family: Spectral, Georgia, serif;
  font-size: 21px;
  font-weight: 600;
  letter-spacing: 0.01em;
  white-space: nowrap;
}
.wordmark__dot {
  width: 6px;
  height: 6px;
  background: var(--gold);
  display: block;
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 15px;
}

.nav-link {
  color: rgba(255, 255, 255, 0.86);
  text-decoration: none;
  white-space: nowrap;
  padding-bottom: 2px;
}
.nav-link:hover { color: #ffffff; }
.nav-link.is-active {
  color: #ffffff;
  border-bottom: 2px solid var(--gold);
}

.nav-cta {
  background: var(--gold-fill);
  color: #ffffff;
  text-decoration: none;
  padding: 11px 20px;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}
.nav-cta:hover { background: var(--gold-fill-hover); color: #ffffff; text-decoration: none; }
.nav-cta.is-current { border-bottom: 2px solid var(--gold-on-navy); }

.nav-toggle {
  display: none;
  appearance: none;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.28);
  width: 48px;
  height: 44px;
  gap: 5px;
  align-content: center;
  justify-items: center;
  cursor: pointer;
  padding: 0;
}
.nav-toggle:hover { border: 1px solid var(--gold); }
.nav-toggle__bar {
  display: block;
  width: 22px;
  height: 2px;
  background: #ffffff;
}

.nav-mobile-panel {
  display: none;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding: 8px 0 20px;
}

.nav-mobile-link {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-size: 17px;
  padding: 15px 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  display: block;
}
.nav-mobile-link:hover { color: #ffffff; background: rgba(255, 255, 255, 0.05); }
.nav-mobile-link.is-active {
  color: #ffffff;
  border-left: 3px solid var(--gold);
}

.nav-cta-mobile {
  display: block;
  background: var(--gold-fill);
  color: #ffffff;
  text-decoration: none;
  padding: 16px 28px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin: 18px 28px 0;
  text-align: center;
}
.nav-cta-mobile:hover { background: var(--gold-fill-hover); color: #ffffff; }

@media (max-width: 1100px) {
  .nav-desktop { display: none; }
  .nav-toggle { display: grid; }
  .nav-mobile-panel.is-open { display: grid; }
}

/* ---------- Footer ---------- */

.site-footer {
  background: var(--navy-footer);
  color: rgba(255, 255, 255, 0.7);
}
.site-footer__inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 42px 28px;
  display: flex;
  gap: 20px 40px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
}
.footer-word {
  font-family: Spectral, Georgia, serif;
  font-size: 17px;
  color: #ffffff;
}
.footer-links {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
}
.footer-link {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
}
.footer-link:hover { color: #ffffff; }

/* ---------- Buttons & links ---------- */

.btn-gold {
  display: inline-block;
  background: var(--gold-fill);
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.03em;
  border: none;
  cursor: pointer;
  font-family: inherit;
}
.btn-gold:hover { background: var(--gold-fill-hover); color: #ffffff; text-decoration: none; }

.link-ghost {
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
}
.link-ghost:hover { color: #ffffff; text-decoration: none; border-bottom: 1px solid var(--gold); }

.link-ghost-muted {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}
.link-ghost-muted:hover { color: #ffffff; text-decoration: none; border-bottom: 1px solid var(--gold); }

.breadcrumb-link {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
}
.breadcrumb-link:hover { color: #ffffff; text-decoration: none; }

/* Bordered grid cards (practice-area links, specialty links, vertical picker) */
.card-link {
  background: #ffffff;
  text-decoration: none;
  color: var(--ink);
}
.card-link:hover { background: var(--cream); text-decoration: none; color: var(--ink); }

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: 2px;
  background: #e6e1d4;
}

.eyebrow {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-fill);
  font-weight: 700;
}
.eyebrow--on-navy { color: var(--gold-on-navy); }

/* ---------- Base ---------- */

* , *::before, *::after { box-sizing: border-box; }
body { margin: 0; background: #ffffff; color: var(--ink); font-family: "Source Sans 3", Helvetica, Arial, sans-serif; -webkit-font-smoothing: antialiased; }
h1, h2, h3 { margin: 0; font-family: Spectral, Georgia, serif; font-weight: 600; letter-spacing: -0.01em; }
p { margin: 0; }
a { color: var(--gold-fill); text-decoration: none; }
a:hover { color: var(--gold-fill-hover); text-decoration: underline; }
input, textarea { font-family: inherit; }
input:focus, textarea:focus { outline: 2px solid var(--gold); outline-offset: 1px; }
