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

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

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

.top-strip a {
  color: #fff;
  text-decoration: none;
}

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

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

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

.hero {
  color: #fff;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(17, 26, 63, .18);
  z-index: 1;
}

.hero-caption__text {
  font-size: clamp(2.25rem, 5vw, 4.35rem);
  font-weight: 800;
  line-height: 1.08;
  text-transform: uppercase;
  text-shadow: 0 3px 16px rgba(0, 0, 0, .42);
}

.hero-arrow {
  border: 0;
  border-radius: 6px;
  color: #fff;
  background: rgba(0, 0, 0, .32);
}

.hero-arrow:hover {
  background: rgba(17, 26, 63, .72);
}

.panel,
.quick-card {
  background: #fff;
  border: 1px solid rgba(223, 228, 238, .9);
  border-radius: 8px;
  box-shadow: 0 18px 45px rgba(24, 32, 51, .09);
}

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

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

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

.quote-title {
  color: var(--brand);
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1.05;
}

.image-preview {
  border-radius: 8px;
  box-shadow: 0 12px 26px rgba(24, 32, 51, .12);
}

.image-preview img {
  transition: transform .22s ease, filter .22s ease;
}

.photo-strip button:hover .image-preview img,
.photo-strip button:focus-visible .image-preview img {
  transform: scale(1.045);
  filter: saturate(1.05) contrast(1.03);
}

.photo-strip button:focus-visible .image-preview {
  outline: 3px solid rgba(30, 47, 104, .3);
  outline-offset: 3px;
}

.image-lightbox__image {
  background: #f4f7fb;
}

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

footer a {
  color: #fff;
}
