* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: Georgia, "Times New Roman", Times, serif;
  color: #222;
  background: #f7f4ee;
  line-height: 1.55;
  font-size: 18px;
}
a { color: #1a3358; }
img { max-width: 100%; display: block; }
.wrap { width: min(920px, calc(100% - 36px)); margin: 0 auto; }
header {
  border-bottom: 1px solid #d8d2c6;
  background: #f7f4ee;
}
.top {
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; padding: 14px 0;
  flex-wrap: wrap;
}
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; color: #222; }
.mark {
  width: 32px; height: 32px; flex: none;
  background: #1a3358;
  display: grid; place-items: center;
}
.mark svg { width: 20px; height: 20px; display: block; }
.brand strong { font-size: 22px; letter-spacing: .08em; }
.brand span { display: block; font-family: system-ui, sans-serif; font-size: 12px; color: #666; margin-top: 1px; }
nav { display: flex; gap: 16px; flex-wrap: wrap; font-family: system-ui, sans-serif; font-size: 14px; }
nav a { color: #444; }
.hero {
  min-height: 70vh;
  display: grid;
  align-items: end;
  background: #16243c url("/img/hero.jpg") center/cover no-repeat;
  position: relative;
  border-bottom: 0;
  padding: 0;
}
.hero::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(22,36,60,.25) 0%, rgba(22,36,60,.82) 100%);
}
.hero .wrap { position: relative; z-index: 1; color: #f7f4ee; padding: 18vh 0 56px; }
.hero .kicker { color: #ead9a8; }
.hero .lede { color: #eee8dc; }
.kicker {
  font-family: system-ui, sans-serif;
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #666;
  margin-bottom: 10px;
}
h1, h2, h3 { line-height: 1.2; font-weight: 700; }
h1 { font-size: clamp(34px, 6vw, 52px); max-width: 16ch; margin-bottom: 14px; }
h2 { font-size: clamp(24px, 3vw, 32px); margin-bottom: 8px; }
.lede { max-width: 38em; font-size: 20px; }
.btn {
  display: inline-block; margin-top: 22px; padding: 10px 14px;
  background: #f7f4ee; color: #1a3358; text-decoration: none;
  font-family: system-ui, sans-serif; font-size: 15px;
}
.btn.ghost { background: transparent; color: #f7f4ee; border: 1px solid rgba(247,244,238,.55); margin-left: 8px; }
section { padding: 56px 0; border-bottom: 1px solid #d8d2c6; }
.cream { background: #efeae0; }
.navy { background: #1a3358; color: #eee8dc; }
.navy h2, .navy .kicker, .navy a { color: #eee8dc; }
.navy a { color: #ead9a8; }
.split { display: grid; grid-template-columns: 1.2fr .8fr; gap: 40px; }
.split p + p, .stack p + p { margin-top: 14px; }
ul.plain { margin: 14px 0 0 18px; }
ul.plain li { margin-bottom: 6px; }
table { width: 100%; border-collapse: collapse; font-size: 16px; font-family: system-ui, sans-serif; }
th, td { text-align: left; vertical-align: top; padding: 10px 12px; border-bottom: 1px solid #d8d2c6; }
th { background: #1a3358; color: #fff; font-weight: 600; }
td:first-child { font-weight: 600; width: 22%; }
.cards { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 16px; margin-top: 18px; }
.card { background: #fff; padding: 18px; border: 1px solid #d8d2c6; }
.card h3 { font-size: 18px; margin-bottom: 6px; }
.card p { font-family: system-ui, sans-serif; font-size: 15px; color: #444; }
.team { display: grid; grid-template-columns: 1fr 1fr; gap: 0; margin-top: 8px; border-top: 1px solid #d8d2c6; }
.person { padding: 16px 0; border-bottom: 1px solid #d8d2c6; }
.person h3 { font-size: 18px; }
.role { font-family: system-ui, sans-serif; font-size: 13px; color: #666; margin: 2px 0 8px; }
.person p { font-family: system-ui, sans-serif; font-size: 15px; color: #444; }
.faq details { border-bottom: 1px solid #d8d2c6; padding: 12px 0; }
.faq summary { cursor: pointer; font-weight: 700; }
.faq p { margin-top: 8px; font-family: system-ui, sans-serif; font-size: 16px; color: #444; }
form { display: grid; gap: 8px; font-family: system-ui, sans-serif; }
input, select, textarea {
  font: inherit; padding: 10px 12px; border: 1px solid #b9b3a7; background: #fff;
}
button[type=submit] {
  font: inherit; font-weight: 600; padding: 10px 14px; border: 0;
  background: #1a3358; color: #fff; cursor: pointer; width: fit-content;
}
footer { background: #16243c; color: #c4bdb0; padding: 36px 0 24px; font-family: system-ui, sans-serif; font-size: 14px; }
footer a { color: #ead9a8; }
.foot { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 24px; margin-bottom: 20px; }
.tiny { font-size: 12px; max-width: 70ch; }
@media (max-width: 800px) {
  .split, .cards, .team, .foot { grid-template-columns: 1fr; }
  .btn.ghost { margin-left: 0; }
  h1 { max-width: none; }
  .hero { min-height: 62vh; }
}
