:root {
  --blue-900: #07345f;
  --blue-800: #073f78;
  --blue-600: #0d6da8;
  --blue-100: #e7f3fb;
  --green-700: #4f982d;
  --green-500: #76b82a;
  --ink: #162336;
  --muted: #5d6d7e;
  --line: #dce7ee;
  --surface: #ffffff;
  --soft: #f5f9fb;
  --shadow: 0 24px 60px rgba(7, 52, 95, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--surface);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(20px, 5vw, 72px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.brand img {
  display: block;
  width: 174px;
  height: auto;
}

nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 6px 18px;
  color: var(--blue-900);
  font-weight: 700;
  font-size: 0.94rem;
}

nav a,
.button {
  text-decoration: none;
}

nav a:hover {
  color: var(--green-700);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  align-items: center;
  gap: clamp(28px, 5vw, 72px);
  min-height: calc(100vh - 95px);
  padding: clamp(56px, 8vw, 104px) clamp(20px, 5vw, 72px) 54px;
  background:
    linear-gradient(130deg, rgba(231, 243, 251, 0.96), rgba(255, 255, 255, 0.85) 55%, rgba(231, 247, 229, 0.92)),
    radial-gradient(circle at 82% 16%, rgba(118, 184, 42, 0.18), transparent 26%),
    radial-gradient(circle at 12% 82%, rgba(13, 109, 168, 0.13), transparent 30%);
}

.hero h1,
.section h2,
.split-section h2,
.contact-section h2 {
  margin: 0;
  color: var(--blue-900);
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.05;
}

.hero h1 {
  max-width: 850px;
  font-size: clamp(3rem, 7vw, 6.5rem);
}

.lead {
  max-width: 720px;
  color: #293b4d;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--green-700);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 20px;
  border-radius: 6px;
  border: 2px solid transparent;
  font-weight: 800;
  cursor: pointer;
}

.button.primary {
  color: #fff;
  background: var(--blue-800);
}

.button.secondary {
  color: var(--blue-900);
  border-color: var(--green-500);
  background: #fff;
}

.hero-panel {
  align-self: stretch;
  display: grid;
  align-content: center;
  gap: 22px;
  padding: clamp(22px, 4vw, 42px);
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(7, 63, 120, 0.12);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.hero-panel img {
  width: min(100%, 460px);
  margin: 0 auto;
}

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

.stats span {
  min-height: 94px;
  padding: 14px;
  background: var(--soft);
  border-left: 4px solid var(--green-500);
  border-radius: 6px;
  color: var(--muted);
  font-size: 0.92rem;
}

.stats strong {
  display: block;
  color: var(--blue-800);
  font-size: 1.25rem;
}

.section,
.split-section,
.contact-section {
  padding: clamp(60px, 8vw, 96px) clamp(20px, 5vw, 72px);
}

.intro {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 36px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.section h2,
.split-section h2,
.contact-section h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.intro p:last-child,
.wide-copy {
  margin: 0;
  color: var(--muted);
  font-size: 1.12rem;
}

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

.service-grid,
.resource-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.service-grid article,
.resource-grid div,
.response-card {
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.service-grid article {
  min-height: 290px;
}

.icon {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 22px;
  border-radius: 50%;
  color: #fff;
  background: var(--blue-800);
  font-weight: 800;
}

h3 {
  margin: 0 0 10px;
  color: var(--blue-900);
  line-height: 1.25;
}

article p,
.resource-grid p,
.response-card p,
.split-section p,
.contact-section p {
  color: var(--muted);
}

.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(28px, 6vw, 84px);
  background: var(--soft);
}

.split-section.alternate {
  background: #fff;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  padding: 18px 20px;
  border-left: 4px solid var(--green-500);
  background: #fff;
  border-radius: 6px;
  color: var(--blue-900);
  font-weight: 700;
}

.response-card {
  background: linear-gradient(145deg, #fff, #eef8ef);
}

.band {
  background: var(--blue-900);
  color: #fff;
}

.band h2,
.band .eyebrow {
  color: #fff;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

.badge-row span {
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  font-weight: 700;
}

.band .wide-copy {
  max-width: 850px;
  color: rgba(255, 255, 255, 0.82);
}

.resource-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1fr);
  gap: clamp(30px, 6vw, 80px);
  background: linear-gradient(180deg, #fff, var(--blue-100));
}

address {
  display: grid;
  gap: 8px;
  margin-top: 24px;
  font-style: normal;
  color: var(--blue-800);
  font-weight: 700;
}

form {
  display: grid;
  gap: 16px;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

label {
  display: grid;
  gap: 7px;
  color: var(--blue-900);
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 44px;
  padding: 11px 12px;
  border: 1px solid #b9c9d5;
  border-radius: 6px;
  font: inherit;
}

textarea {
  resize: vertical;
}

footer {
  display: grid;
  gap: 4px;
  padding: 30px clamp(20px, 5vw, 72px);
  color: #fff;
  background: var(--blue-900);
  text-align: center;
}

footer span:last-child {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
}

@media (max-width: 980px) {
  .site-header,
  .hero,
  .intro,
  .split-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .site-header {
    position: static;
    align-items: flex-start;
  }

  nav {
    justify-content: flex-start;
  }

  .hero {
    min-height: auto;
  }

  .service-grid,
  .resource-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: 12px 18px;
  }

  .brand img {
    width: 148px;
  }

  nav {
    gap: 8px 12px;
    font-size: 0.88rem;
  }

  .hero,
  .section,
  .split-section,
  .contact-section {
    padding-left: 18px;
    padding-right: 18px;
  }

  .hero h1 {
    font-size: 2.75rem;
  }

  .stats,
  .service-grid,
  .resource-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions .button {
    width: 100%;
  }
}
