
:root {
  --navy: #17385f;
  --blue: #2f5f92;
  --light-blue: #eef4f8;
  --text: #333333;
  --muted: #666666;
  --border: #d7dde3;
  --white: #ffffff;
  --offwhite: #f7f7f5;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--text);
  background: #ffffff;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.65;
  font-size: 15px;
}

a { color: var(--blue); }

.container {
  width: 1100px;
  max-width: calc(100% - 40px);
  margin: 0 auto;
}

.top-strip {
  background: #f1f3f5;
  border-bottom: 1px solid #dde1e5;
  color: #666;
  font-size: 12px;
}

.top-strip .container {
  min-height: 30px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.site-header {
  background: var(--white);
  border-bottom: 1px solid #d9dee4;
}

.header-row {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  color: var(--navy);
  text-decoration: none;
}

.brand-mark {
  width: 40px;
  height: 40px;
  background: var(--navy);
  color: white;
  display: grid;
  place-items: center;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 21px;
  font-weight: bold;
}

.brand-text strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  letter-spacing: .2px;
  line-height: 1.05;
}

.brand-text span {
  color: #777;
  font-size: 10px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.site-nav a {
  text-decoration: none;
  color: #444;
  padding: 10px 14px;
  font-size: 14px;
  border: 1px solid transparent;
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--navy);
  background: #f5f7f9;
  border-color: #e1e5e9;
}

.menu-button {
  display: none;
  border: 1px solid #cbd2d8;
  background: #fff;
  padding: 8px 10px;
  color: var(--navy);
  font-weight: bold;
  cursor: pointer;
}

.hero {
  background:
    linear-gradient(90deg, rgba(23,56,95,.96), rgba(47,95,146,.86)),
    repeating-linear-gradient(45deg, rgba(255,255,255,.04) 0 2px, transparent 2px 8px);
  color: white;
  padding: 72px 0 66px;
  border-bottom: 4px solid #b8c6d5;
}

.hero-inner {
  max-width: 780px;
}

.eyebrow {
  font-size: 12px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: #d4e2ef;
  margin-bottom: 8px;
}

.hero h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 45px;
  font-weight: normal;
  line-height: 1.18;
  margin: 0 0 18px;
}

.hero p {
  font-size: 18px;
  line-height: 1.65;
  color: #eef4f9;
  margin: 0 0 28px;
  max-width: 720px;
}

.button-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  text-decoration: none;
  padding: 11px 19px;
  border-radius: 2px;
  border: 1px solid transparent;
  font-size: 14px;
  cursor: pointer;
}

.btn-primary {
  background: #ffffff;
  color: var(--navy);
  border-color: #ffffff;
}

.btn-secondary {
  background: transparent;
  color: #ffffff;
  border-color: rgba(255,255,255,.75);
}

.btn-blue {
  background: var(--blue);
  color: white;
  border-color: var(--blue);
}

.btn-blue:hover { background: var(--navy); }

.page-banner {
  background: #eef3f7;
  border-bottom: 1px solid #dce3e8;
  padding: 45px 0;
}

.page-banner h1 {
  font-family: Georgia, "Times New Roman", serif;
  color: var(--navy);
  font-weight: normal;
  font-size: 38px;
  margin: 0 0 8px;
}

.page-banner p {
  margin: 0;
  color: #5d6670;
  font-size: 16px;
  max-width: 760px;
}

.section {
  padding: 58px 0;
}

.section.alt {
  background: var(--offwhite);
  border-top: 1px solid #ececec;
  border-bottom: 1px solid #ececec;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 28px;
}

.section-heading h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: normal;
  color: var(--navy);
  font-size: 32px;
  margin: 0 0 10px;
}

.section-heading p {
  margin: 0;
  color: var(--muted);
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.card {
  background: #fff;
  border: 1px solid var(--border);
  padding: 24px 22px;
  box-shadow: 0 2px 6px rgba(0,0,0,.04);
}

.card-number {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  background: #e9f0f6;
  color: var(--navy);
  font-weight: bold;
  margin-bottom: 15px;
}

.card h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  font-weight: normal;
  color: var(--navy);
  margin: 0 0 10px;
}

.card p { margin: 0 0 12px; color: #5f5f5f; }

.text-link {
  font-size: 13px;
  text-decoration: none;
  font-weight: bold;
}

.text-link:hover { text-decoration: underline; }

.two-col {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 42px;
  align-items: start;
}

.sidebar-box {
  border: 1px solid var(--border);
  background: #f8fafc;
  padding: 22px;
}

.sidebar-box h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: normal;
  color: var(--navy);
  margin: 0 0 12px;
  font-size: 22px;
}

.check-list,
.service-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.check-list li,
.service-list li {
  position: relative;
  padding: 9px 0 9px 22px;
  border-bottom: 1px solid #e5e8eb;
}

.check-list li:last-child,
.service-list li:last-child { border-bottom: 0; }

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--blue);
  font-weight: bold;
}

.service-list li::before {
  content: "•";
  position: absolute;
  left: 5px;
  color: var(--blue);
  font-weight: bold;
}

.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-top: 30px;
}

.feature {
  border-left: 4px solid #7f9fbc;
  padding: 4px 0 4px 18px;
}

.feature h4 {
  margin: 0 0 5px;
  color: var(--navy);
  font-size: 16px;
}

.feature p {
  margin: 0;
  color: #666;
  font-size: 14px;
}

.process {
  counter-reset: step;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.process-item {
  background: #fff;
  border: 1px solid var(--border);
  padding: 20px 16px;
  min-height: 205px;
}

.process-item::before {
  counter-increment: step;
  content: counter(step);
  display: block;
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  background: var(--navy);
  color: white;
  margin-bottom: 14px;
  font-weight: bold;
}

.process-item h3 {
  font-size: 16px;
  margin: 0 0 8px;
  color: var(--navy);
}

.process-item p {
  margin: 0;
  font-size: 13px;
  color: #666;
}

.service-block {
  padding: 34px 0;
  border-bottom: 1px solid #e3e6e8;
}

.service-block:last-child { border-bottom: 0; }

.service-block h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: normal;
  color: var(--navy);
  font-size: 29px;
  margin: 0 0 5px;
}

.service-tagline {
  color: var(--blue);
  font-weight: bold;
  margin-bottom: 14px;
}

.leadership-card {
  border: 1px solid var(--border);
  background: #fff;
  display: grid;
  grid-template-columns: 180px 1fr;
}

.leader-photo {
  min-height: 200px;
  background:
    linear-gradient(135deg, #d9e2ea, #eef2f5);
  display: grid;
  place-items: center;
  color: #667b8d;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 58px;
  border-right: 1px solid var(--border);
}

.leader-content { padding: 28px; }

.leader-content h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  color: var(--navy);
  font-size: 25px;
  font-weight: normal;
}

.leader-title {
  color: #777;
  margin: 4px 0 15px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .8px;
}

.cta-band {
  background: var(--navy);
  color: white;
  padding: 38px 0;
}

.cta-band .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.cta-band h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: normal;
  margin: 0 0 5px;
  font-size: 28px;
}

.cta-band p {
  margin: 0;
  color: #d9e4ee;
}

.contact-box {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 28px;
  border: 1px solid var(--border);
  background: #fff;
  padding: 25px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.form-group { margin-bottom: 12px; }

label {
  display: block;
  font-size: 12px;
  font-weight: bold;
  color: #4e5963;
  margin-bottom: 4px;
}

input, textarea {
  width: 100%;
  border: 1px solid #c8cfd6;
  padding: 10px;
  font: inherit;
  background: #fff;
}

textarea { min-height: 105px; resize: vertical; }

.form-note {
  margin-top: 10px;
  font-size: 12px;
  color: #777;
}

.footer {
  background: #202a34;
  color: #c9d0d6;
  padding: 34px 0 18px;
  font-size: 13px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr .8fr 1fr;
  gap: 35px;
}

.footer h4 {
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: normal;
  font-size: 18px;
  margin: 0 0 10px;
}

.footer a {
  color: #dbe3ea;
  text-decoration: none;
  display: block;
  padding: 3px 0;
}

.footer a:hover { text-decoration: underline; }

.footer-bottom {
  border-top: 1px solid #3b4650;
  margin-top: 25px;
  padding-top: 15px;
  color: #929da7;
  font-size: 12px;
}

.small-caps {
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 11px;
  color: #7a8793;
}

@media (max-width: 900px) {
  .grid-3, .process { grid-template-columns: repeat(2, 1fr); }
  .two-col, .contact-box { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .cta-band .container { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 700px) {
  .top-strip { display: none; }
  .header-row { min-height: 70px; }
  .menu-button { display: inline-block; }
  .site-nav {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid #d9dee4;
    padding: 8px 20px 12px;
    z-index: 20;
  }
  .site-nav.open { display: block; }
  .site-nav a { display: block; }
  .hero { padding: 52px 0 48px; }
  .hero h1 { font-size: 36px; }
  .hero p { font-size: 16px; }
  .grid-3, .process, .feature-row, .footer-grid, .form-row { grid-template-columns: 1fr; }
  .leadership-card { grid-template-columns: 1fr; }
  .leader-photo { min-height: 140px; border-right: 0; border-bottom: 1px solid var(--border); }
  .section { padding: 45px 0; }
}
