:root {
  --navy: #0b1f3a;
  --navy-soft: #16305a;
  --green: #2f6b4f;
  --green-dark: #234f3b;
  --sage: #a9c8b3;
  --charcoal: #3a3d42;
  --gray: #6b7280;
  --gray-light: #f6f7f8;
  --border: #e7e9ec;
  --white: #ffffff;
  --max: 1120px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 32px;
}

.site-header {
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(6px);
  z-index: 50;
}

.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 88px;
}

.logo img { height: 34px; width: auto; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-links a {
  font-size: 15px;
  font-weight: 500;
  color: var(--navy);
  padding: 6px 0;
  border-bottom: 2px solid transparent;
  transition: border-color .15s ease;
}

.nav-links a:hover,
.nav-links a.active {
  border-bottom-color: var(--green);
}

.nav-cta {
  background: var(--navy);
  color: var(--white) !important;
  padding: 11px 22px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 14px;
  border-bottom: none !important;
}

.nav-cta:hover { background: var(--navy-soft); }

section { padding: 88px 0; }
section.tight { padding: 64px 0; }
.alt-bg { background: var(--gray-light); }

.eyebrow {
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 13px;
  font-weight: 600;
  color: var(--green);
  margin: 0 0 14px;
}

h1 {
  font-size: 46px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  margin: 0 0 20px;
  letter-spacing: -0.01em;
}

h2 {
  font-size: 30px;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 18px;
  letter-spacing: -0.01em;
}

h3 {
  font-size: 19px;
  font-weight: 600;
  color: var(--navy);
  margin: 0 0 10px;
}

p { margin: 0 0 16px; color: var(--charcoal); }

.lede {
  font-size: 19px;
  color: var(--gray);
  max-width: 600px;
  margin: 0 0 34px;
}

.center { text-align: center; margin-left: auto; margin-right: auto; }

.hero { padding: 110px 0 96px; text-align: center; }
.hero h1 { max-width: 760px; margin-left: auto; margin-right: auto; }
.hero .lede { max-width: 640px; margin-left: auto; margin-right: auto; }
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 15px;
  transition: all .15s ease;
}

.btn-primary { background: var(--green); color: var(--white); }
.btn-primary:hover { background: var(--green-dark); }

.btn-secondary {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--border);
}
.btn-secondary:hover { border-color: var(--navy); }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

.process {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  flex-wrap: wrap;
  margin: 40px 0 8px;
}

.process-step {
  flex: 1;
  min-width: 130px;
  text-align: center;
  padding: 22px 12px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
}

.process-step .num {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 12px;
}

.process-arrow { color: var(--sage); font-size: 20px; padding: 0 4px; }

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 26px;
}

.check-list { list-style: none; padding: 0; margin: 0; }
.check-list li {
  padding: 10px 0 10px 30px;
  position: relative;
  border-bottom: 1px solid var(--border);
  color: var(--charcoal);
}
.check-list li:last-child { border-bottom: none; }
.check-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 15px;
  width: 8px; height: 8px;
  background: var(--green);
  border-radius: 50%;
}

.pill-grid { display: flex; flex-wrap: wrap; gap: 12px; }
.pill {
  background: var(--gray-light);
  border: 1px solid var(--border);
  color: var(--navy);
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
}

.divider {
  width: 56px; height: 3px;
  background: var(--green);
  border: none;
  margin: 0 0 24px;
}

.divider.center { margin-left: auto; margin-right: auto; }

.cta-band {
  background: var(--navy);
  color: var(--white);
  text-align: center;
  border-radius: 14px;
  padding: 64px 40px;
}
.cta-band h2 { color: var(--white); }
.cta-band p { color: #c7d0dd; font-size: 17px; }

.about-photo {
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: 12px;
  background: var(--gray-light);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray);
  font-size: 14px;
  text-align: center;
}
.about-photo .ph-icon {
  width: 64px; height: 64px;
  margin: 0 auto 14px;
  border-radius: 50%;
  background: var(--sage);
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 26px; font-weight: 700;
}

.contact-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 56px; }
.form-group { margin-bottom: 18px; }
label { display: block; font-size: 14px; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
input, textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-family: inherit;
  font-size: 15px;
  color: var(--charcoal);
  background: var(--white);
}
input:focus, textarea:focus { outline: none; border-color: var(--green); }
textarea { resize: vertical; min-height: 110px; }
.form-note {
  background: var(--gray-light);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 14px 16px;
  font-size: 13.5px;
  color: var(--gray);
  margin-top: 14px;
}
.contact-side .card { margin-bottom: 18px; }
.contact-side h3 { margin-bottom: 6px; }
.contact-side p { font-size: 14.5px; color: var(--gray); margin-bottom: 4px; }

.site-footer {
  border-top: 1px solid var(--border);
  padding: 48px 0 32px;
  background: var(--gray-light);
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 28px;
}
.footer-links { display: flex; gap: 28px; flex-wrap: wrap; }
.footer-links a { font-size: 14px; color: var(--navy); font-weight: 500; }
.footer-links a:hover { color: var(--green); }
.footer-meta {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  font-size: 13px;
  color: var(--gray);
}
.footer-social a { color: var(--navy); font-weight: 500; margin-left: 18px; }
.footer-social a:first-child { margin-left: 0; }

@media (max-width: 860px) {
  .nav-links { display: none; }
  h1 { font-size: 34px; }
  .grid-2, .grid-3, .grid-4, .contact-grid { grid-template-columns: 1fr; }
  .process { flex-direction: column; }
  .process-arrow { transform: rotate(90deg); }
  section { padding: 56px 0; }
}
