:root {
  --navy: #10233f;
  --blue: #1d4f91;
  --sky: #eaf2fb;
  --ink: #1d2530;
  --muted: #66717f;
  --line: #d9e1e8;
  --white: #ffffff;
  --offwhite: #f8fafc;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
.wrap { width: min(var(--max), calc(100% - 40px)); margin: 0 auto; }
.narrow { max-width: 800px; }
.centered { text-align: center; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav-wrap {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand { text-decoration: none; display: flex; flex-direction: column; line-height: 1.05; }
.brand-name { font-weight: 900; letter-spacing: .06em; font-size: 1.18rem; color: var(--navy); }
.brand-sub { font-size: .72rem; letter-spacing: .14em; margin-top: 7px; color: var(--blue); font-weight: 700; }
.nav-button {
  text-decoration: none;
  padding: 11px 16px;
  border: 1px solid var(--navy);
  border-radius: 999px;
  font-size: .88rem;
  font-weight: 700;
}

.hero {
  background: linear-gradient(135deg, #f7faff 0%, #e9f1fa 100%);
  padding: 70px 0;
  border-bottom: 1px solid var(--line);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 58px;
  align-items: center;
}
.eyebrow, .section-label {
  margin: 0 0 12px;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: .78rem;
  font-weight: 800;
}
h1, h2, h3 { color: var(--navy); margin-top: 0; line-height: 1.12; }
h1 { font-size: clamp(2.8rem, 6vw, 5.4rem); letter-spacing: -.045em; margin-bottom: 24px; }
h2 { font-size: clamp(2rem, 4vw, 3.25rem); letter-spacing: -.03em; margin-bottom: 20px; }
h3 { font-size: 1.35rem; margin-bottom: 10px; }
.lead { font-size: 1.16rem; color: #3c4754; max-width: 650px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin: 28px 0 20px; }
.button {
  display: inline-block;
  text-decoration: none;
  padding: 14px 22px;
  border-radius: 8px;
  font-weight: 800;
}
.button.primary { background: var(--navy); color: var(--white); }
.button.secondary { border: 1px solid var(--navy); color: var(--navy); background: var(--white); }
.status { font-size: .9rem; color: var(--muted); max-width: 620px; }
.hero-photo-wrap { position: relative; }
.hero-photo-wrap::before {
  content: "";
  position: absolute;
  inset: 18px -18px -18px 18px;
  border: 2px solid #9db4ce;
  border-radius: 22px;
}
.hero-photo {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center top;
  border-radius: 22px;
  position: relative;
  box-shadow: 0 18px 50px rgba(16,35,63,.16);
}

.intro { padding: 95px 0; }
.intro p:not(.section-label) { font-size: 1.08rem; color: #4c5663; }

.priorities { padding: 95px 0; background: var(--navy); }
.priorities .section-label { color: #a9c4e7; }
.priorities h2 { color: var(--white); }
.priority-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 35px;
}
.card {
  background: #173355;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 16px;
  padding: 28px;
}
.card-number { color: #9fc0e7; font-weight: 800; font-size: .8rem; letter-spacing: .12em; }
.card h3 { color: var(--white); margin-top: 22px; }
.card p { color: #d7e0eb; margin-bottom: 0; }

.family-section { padding: 95px 0; background: var(--offwhite); }
.family-copy { max-width: 760px; margin-bottom: 38px; }
.family-copy p:not(.section-label) { color: #4e5966; font-size: 1.06rem; }
.photo-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.photo-grid img { width: 100%; height: auto; object-fit: contain; object-position: center top; border-radius: 18px; }

.updates { padding: 95px 0; }
.updates p:not(.section-label) { color: #4e5966; font-size: 1.04rem; }
.update-list-wrap {
  margin-top: 30px;
  display: grid;
  gap: 16px;
  text-align: left;
}
.update-item {
  background: var(--offwhite);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 18px 20px;
}
.update-item p { margin: 0; }
.update-item p + p { margin-top: 8px; }
.update-item a {
  color: var(--blue);
  font-weight: 700;
  text-decoration: none;
}
.update-item a:hover { text-decoration: underline; }
.update-date {
  color: var(--navy);
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  font-size: .82rem;
}
.pending-box {
  display: inline-block;
  text-align: left;
  margin-top: 24px;
  background: var(--sky);
  border: 1px solid #cbd9e8;
  padding: 20px 24px;
  border-radius: 12px;
  color: var(--navy);
}

.site-footer { background: #0b1a2d; color: #d8e1eb; padding: 38px 0; font-size: .88rem; }
.footer-grid { display: flex; justify-content: space-between; gap: 30px; align-items: flex-end; }
.site-footer p { margin: 8px 0 0; }
.footer-disclaimer { text-align: right; color: #b8c6d7; }

@media (max-width: 850px) {
  .hero-grid { grid-template-columns: 1fr; gap: 42px; }
  .priority-grid, .photo-grid { grid-template-columns: 1fr; }
  .footer-grid { flex-direction: column; align-items: flex-start; }
  .footer-disclaimer { text-align: left; }
}

@media (max-width: 560px) {
  .wrap { width: min(var(--max), calc(100% - 28px)); }
  .nav-wrap { min-height: 72px; }
  .nav-button { display: none; }
  .brand-name { font-size: 1rem; }
  .brand-sub { font-size: .62rem; }
  .hero { padding: 48px 0 58px; }
  .hero-photo-wrap::before { inset: 10px -8px -10px 8px; }
  .intro, .priorities, .family-section, .updates { padding: 68px 0; }
}
