:root {
  --dark: #224f63;
  --blue: #45b5d3;
  --gold: #e0bd4f;
  --light: #f4fafc;
  --text: #1c2b32;
  --muted: #5f6f76;
}

* { box-sizing: border-box; }
body { margin: 0; font-family: Arial, Helvetica, sans-serif; color: var(--text); line-height: 1.6; background: white; }
a { color: inherit; }
.site-header { position: sticky; top: 0; z-index: 10; display: flex; align-items: center; justify-content: space-between; padding: 14px 6vw; background: rgba(255,255,255,.95); box-shadow: 0 2px 20px rgba(0,0,0,.08); }
.brand img { height: 66px; width: auto; display: block; }
nav { display: flex; gap: 22px; font-weight: 700; color: var(--dark); }
nav a { text-decoration: none; }
.hero { min-height: 72vh; display: grid; place-items: center; text-align: center; padding: 80px 6vw; background: linear-gradient(rgba(244,250,252,.94), rgba(244,250,252,.94)), url('/assets/logo.jpeg') center/520px no-repeat; }
.hero-content { max-width: 900px; }
.eyebrow { text-transform: uppercase; letter-spacing: .18em; color: var(--blue); font-weight: 800; font-size: .85rem; }
h1 { font-size: clamp(2.7rem, 6vw, 5.5rem); line-height: 1; color: var(--dark); margin: 12px 0 18px; }
h2 { font-size: clamp(2rem, 4vw, 3rem); line-height: 1.1; color: var(--dark); margin: 0 0 18px; }
h3 { color: var(--dark); margin-top: 0; }
.lead { font-size: 1.25rem; max-width: 780px; margin: 0 auto 28px; color: var(--muted); }
.actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.button { display: inline-block; border-radius: 999px; padding: 13px 24px; text-decoration: none; font-weight: 800; border: 2px solid var(--dark); cursor: pointer; }
.primary { background: var(--dark); color: white; }
.secondary { background: white; color: var(--dark); }
.mission { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; padding: 60px 6vw; background: var(--dark); color: white; }
.mission h2 { color: white; }
.section { padding: 80px 6vw; }
.alt { background: var(--light); }
.section-copy { max-width: 900px; }
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 28px; }
article { background: white; padding: 26px; border-radius: 20px; box-shadow: 0 10px 35px rgba(34,79,99,.10); border-top: 5px solid var(--blue); }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 42px; align-items: start; }
.notice { border-left: 5px solid var(--gold); padding: 14px 18px; background: #fff8df; font-weight: 700; }
form { background: white; padding: 28px; border-radius: 20px; box-shadow: 0 10px 35px rgba(34,79,99,.12); }
label { display: block; font-weight: 700; margin-bottom: 14px; color: var(--dark); }
input, select, textarea { width: 100%; margin-top: 6px; padding: 12px 14px; border: 1px solid #c8d6dc; border-radius: 10px; font: inherit; }
button { font: inherit; }
.center { text-align: center; }
.center p { max-width: 760px; margin-left: auto; margin-right: auto; }
footer { text-align: center; padding: 40px 6vw; background: var(--dark); color: white; }
footer img { width: 220px; max-width: 70%; background: white; border-radius: 14px; padding: 10px; }

@media (max-width: 850px) {
  .site-header { flex-direction: column; gap: 12px; }
  nav { flex-wrap: wrap; justify-content: center; gap: 12px; font-size: .95rem; }
  .mission, .cards, .split { grid-template-columns: 1fr; }
  .hero { background-size: 320px; }
}
