:root {
  --brand: #1e2f68;
  --brand-dark: #111a3f;
  --ink: #182033;
  --muted: #647084;
  --line: #dfe4ee;
  --wash: #f4f7fb;
  --gold: #c8954a;
  --white: #fff;
}

body {
  color: var(--ink);
  background: var(--wash);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

a {
  color: var(--brand);
}

.top-strip {
  background: var(--brand-dark);
  color: var(--white);
}

.top-strip a {
  color: var(--white);
  text-decoration: none;
}

.navbar {
  background: var(--white);
  box-shadow: 0 1px 20px rgba(24, 32, 51, .08);
}

.nav-link {
  color: var(--ink);
  font-weight: 600;
  font-size: .95rem;
}

.nav-link.active,
.nav-link:hover {
  color: var(--brand);
}

.site-hero {
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(17, 26, 63, .84), rgba(30, 47, 104, .52)),
    var(--hero-image, url("../img/hd-banner.jpg")) center / cover;
}

.site-hero h1 {
  font-size: clamp(2rem, 4.5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.02;
}

.site-hero .lead {
  color: rgba(255, 255, 255, .88);
}

.section-kicker {
  color: var(--gold);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .04em;
  font-size: .85rem;
}

.quote-title,
.page-title {
  color: var(--brand);
  font-weight: 800;
  line-height: 1.05;
}

.quote-title {
  font-size: clamp(2rem, 4vw, 3.3rem);
}

.page-title {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
}

.panel,
.icon-card,
.document-card,
.contact-card,
.resource-card {
  background: var(--white);
  border: 1px solid rgba(223, 228, 238, .9);
  border-radius: 8px;
  box-shadow: 0 18px 45px rgba(24, 32, 51, .09);
}

.icon-card,
.document-card,
.resource-card {
  color: var(--ink);
  text-decoration: none;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.icon-card:hover,
.document-card:hover,
.resource-card:hover {
  transform: translateY(-2px);
  border-color: var(--brand);
  box-shadow: 0 12px 26px rgba(30, 47, 104, .14);
}

.icon-chip {
  width: 44px;
  height: 44px;
  display: inline-grid;
  place-items: center;
  border-radius: 8px;
  background: rgba(30, 47, 104, .1);
  color: var(--brand);
  margin-bottom: 1rem;
}

.document-card .icon-chip {
  width: 100%;
  height: 70px;
  margin-bottom: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .7), rgba(255, 255, 255, 0)),
    rgba(30, 47, 104, .1);
  color: var(--brand);
  font-size: 1.55rem;
}

.document-card__logo-chip {
  width: 100%;
  height: 70px;
  display: inline-grid;
  place-items: center;
  border-radius: 8px;
  background: #fff;
  border: 1px solid rgba(223, 228, 238, .95);
  margin-bottom: 0;
  padding: .55rem;
}

.document-card__logo-chip img {
  max-width: 100%;
  max-height: 48px;
  object-fit: contain;
}

.document-card__action {
  color: var(--brand);
  font-size: .92rem;
  font-weight: 800;
}

.page-image,
.photo-grid img {
  border-radius: 8px;
}

.step-marker {
  width: 30px;
  height: 30px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(200, 149, 74, .16);
  color: #8a5f20;
  font-weight: 800;
  font-size: .85rem;
}

.btn-primary {
  background: var(--brand);
  border-color: var(--brand);
}

.btn-primary:hover,
.btn-primary:focus {
  background: var(--brand-dark);
  border-color: var(--brand-dark);
}

.btn-outline-primary {
  color: var(--brand);
  border-color: var(--brand);
}

.btn-outline-primary:hover,
.btn-outline-primary:focus {
  color: var(--white);
  background: var(--brand);
  border-color: var(--brand);
}

.accordion-button {
  color: var(--ink);
  font-weight: 800;
}

.accordion-button:not(.collapsed) {
  color: var(--brand);
  background: rgba(30, 47, 104, .08);
}

.form-label {
  color: #344054;
  font-weight: 700;
  font-size: .9rem;
}

.form-control,
.form-select {
  border-radius: 6px;
  border-color: #cfd6e2;
  min-height: 44px;
}

.text-muted-strong {
  color: var(--muted);
}

.site-footer {
  background: var(--brand-dark);
  color: rgba(255, 255, 255, .78);
}

.site-footer a {
  color: var(--white);
}
