:root {
  --navy: #12355b;
  --blue: #2f6690;
  --teal: #2a9d8f;
  --light: #f4f8fb;
  --text: #1f2933;
  --white: #ffffff;
  --muted: #52616f;
  --line: #c8d8e6;
  --teal-soft: #e5f5f3;
  --blue-soft: #e8f1f7;
  --error: #9f1d1d;
  --success: #145c43;
  --shadow: 0 18px 45px rgba(18, 53, 91, 0.12);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--text);
  font-family: Inter, "Atkinson Hyperlegible", Arial, sans-serif;
  line-height: 1.6;
}

body,
button,
input,
select,
textarea {
  font: 400 1rem/1.6 Inter, "Atkinson Hyperlegible", Arial, sans-serif;
}

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

a {
  color: inherit;
}

h1,
h2,
h3,
p {
  margin: 0;
}

h1,
h2,
h3 {
  color: var(--navy);
  line-height: 1.1;
  letter-spacing: 0;
}

h1 {
  max-width: 14ch;
  font-size: clamp(2.45rem, 6vw, 5rem);
}

h2 {
  max-width: 15ch;
  font-size: clamp(2rem, 4vw, 3.2rem);
}

h3 {
  font-size: 1.18rem;
}

p {
  color: var(--muted);
}

:focus-visible {
  outline: 4px solid var(--teal);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 20;
  transform: translateY(-160%);
  border-radius: var(--radius);
  background: var(--navy);
  color: var(--white);
  padding: 10px 14px;
  font-weight: 900;
}

.skip-link:focus {
  transform: translateY(0);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
  color: var(--navy);
  text-decoration: none;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  font-weight: 900;
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  color: var(--muted);
  font-size: 0.78rem;
}

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

.site-nav a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  border-radius: var(--radius);
  padding: 8px 12px;
  color: var(--navy);
  font-size: 0.94rem;
  font-weight: 800;
  text-decoration: none;
}

.site-nav a:hover {
  background: var(--blue-soft);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(300px, 0.96fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  min-height: calc(100vh - 84px);
  padding: clamp(42px, 7vw, 88px) clamp(18px, 5vw, 72px) 42px;
  background:
    linear-gradient(120deg, rgba(244, 248, 251, 0.98), rgba(229, 245, 243, 0.78)),
    var(--light);
}

.hero-content {
  display: grid;
  gap: 24px;
  max-width: 790px;
}

.eyebrow {
  color: #1d6f66;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-text {
  max-width: 70ch;
  color: #2d3741;
  font-size: clamp(1.06rem, 2vw, 1.24rem);
}

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

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--navy);
  border-radius: var(--radius);
  padding: 12px 18px;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
}

.button-primary {
  background: var(--navy);
  color: var(--white);
}

.button-primary:hover {
  background: #0b2440;
}

.button-secondary {
  background: var(--white);
  color: var(--navy);
}

.button-secondary:hover {
  background: var(--blue-soft);
}

.hero-media {
  margin: 0;
  align-self: stretch;
  min-height: 430px;
  display: grid;
  overflow: hidden;
  border: 1px solid rgba(18, 53, 91, 0.22);
  border-radius: var(--radius);
  background: var(--navy);
  box-shadow: var(--shadow);
}

.hero-media img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
}

.hero-media figcaption {
  padding: 12px 14px;
  background: var(--navy);
  color: var(--white);
  font-size: 0.9rem;
}

.section {
  padding: clamp(58px, 8vw, 104px) clamp(18px, 5vw, 72px);
}

.section-light {
  background: var(--light);
}

.section-heading {
  display: grid;
  gap: 14px;
  max-width: 860px;
  margin-bottom: 30px;
}

.section-heading p:not(.eyebrow) {
  font-size: 1.08rem;
}

.card-grid,
.problem-grid,
.resource-grid,
.accessibility-grid {
  display: grid;
  gap: 18px;
}

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

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

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

.info-card,
.statement-card,
.resource-card,
.accessibility-grid article,
.form-card,
.about-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 30px rgba(18, 53, 91, 0.08);
}

.info-card,
.statement-card,
.resource-card,
.accessibility-grid article {
  display: grid;
  gap: 12px;
  align-content: start;
  padding: 22px;
}

.statement-card {
  border-top: 6px solid var(--teal);
}

.icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 900;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.process-list li {
  display: grid;
  gap: 12px;
  align-content: start;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 30px rgba(18, 53, 91, 0.08);
}

.process-list span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--teal-soft);
  color: #145a52;
  font-weight: 900;
}

.resource-card a {
  width: fit-content;
  color: var(--navy);
  font-weight: 900;
}

.about-section {
  background: linear-gradient(135deg, var(--navy), #0b2440);
}

.about-card {
  display: grid;
  gap: 16px;
  max-width: 980px;
  padding: clamp(24px, 5vw, 42px);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.22);
}

.about-card h2,
.about-card .eyebrow {
  color: var(--white);
}

.about-card p {
  color: #edf6fb;
}

.accessibility-section {
  background: var(--navy);
}

.accessibility-section h2,
.accessibility-section h3,
.accessibility-section .eyebrow {
  color: var(--white);
}

.accessibility-section p {
  color: #edf6fb;
}

.accessibility-grid article {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 1.18fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
  background: linear-gradient(180deg, var(--white), var(--light));
}

.contact-copy {
  position: sticky;
  top: 112px;
  display: grid;
  gap: 18px;
}

.privacy-note {
  padding: 12px;
  border-left: 5px solid var(--teal);
  background: var(--teal-soft);
  color: #163f3b;
}

.form-card {
  display: grid;
  gap: 16px;
  padding: clamp(20px, 4vw, 30px);
}

.field-group {
  display: grid;
  gap: 6px;
}

label {
  color: var(--navy);
  font-weight: 900;
}

input,
select,
textarea {
  width: 100%;
  border: 2px solid #93adc3;
  border-radius: var(--radius);
  background: var(--white);
  color: var(--text);
  padding: 11px 12px;
}

textarea {
  resize: vertical;
}

input[aria-invalid="true"],
select[aria-invalid="true"],
textarea[aria-invalid="true"] {
  border-color: var(--error);
  box-shadow: 0 0 0 3px rgba(159, 29, 29, 0.14);
}

.checkbox-field {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 12px;
  align-items: start;
}

.checkbox-field input {
  width: 20px;
  height: 20px;
  margin-top: 4px;
}

.error-message {
  min-height: 1.25rem;
  color: var(--error);
  font-weight: 800;
}

.form-status:not(:empty) {
  padding: 12px;
  border: 2px solid var(--success);
  border-radius: var(--radius);
  background: #e6f4ef;
  color: var(--success);
  font-weight: 900;
}

.site-footer {
  display: grid;
  gap: 8px;
  padding: 28px clamp(18px, 5vw, 72px);
  background: #0b2440;
}

.site-footer p {
  color: #edf6fb;
}

@media (max-width: 1180px) {
  .card-grid,
  .problem-grid,
  .resource-grid,
  .accessibility-grid,
  .process-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 920px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-nav {
    justify-content: flex-start;
  }

  .hero,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .contact-copy {
    position: static;
  }
}

@media (max-width: 640px) {
  h1 {
    font-size: 2.55rem;
  }

  .site-nav a {
    flex: 1 1 auto;
    justify-content: center;
    border: 1px solid var(--line);
  }

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

  .hero-media,
  .hero-media img {
    min-height: 300px;
  }

  .card-grid,
  .problem-grid,
  .resource-grid,
  .accessibility-grid,
  .process-list {
    grid-template-columns: 1fr;
  }
}
