:root {
  --ink: #142036;
  --muted: #5f6874;
  --line: #dfe4ea;
  --paper: #fbfcff;
  --white: #ffffff;
  --navy: #101c5a;
  --blue: #2d65a7;
  --blue-dark: #172a7a;
  --steel: #7d8a9a;
  --silver: #eef1f5;
  --sky: #eaf4ff;
  --shadow: 0 24px 70px rgba(20, 32, 54, .13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

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

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

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 20;
  padding: .75rem 1rem;
  background: var(--ink);
  color: var(--white);
  border-radius: 6px;
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(251, 252, 255, .92);
  border-bottom: 1px solid rgba(223, 228, 234, .9);
  backdrop-filter: blur(16px);
}

.nav-shell {
  width: min(1180px, calc(100% - 32px));
  min-height: 112px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: .85rem;
  text-decoration: none;
  padding: .55rem .85rem .55rem .6rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(135deg, #ffffff 0%, #edf5ff 45%, #dfe5ee 100%);
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 156px;
  height: 86px;
  aspect-ratio: 16 / 9;
  padding: .45rem;
  border-radius: 8px;
  overflow: hidden;
  background: transparent;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

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

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

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.35rem;
  font-size: .95rem;
  font-weight: 700;
}

.nav-links a {
  text-decoration: none;
  color: #334650;
}

.nav-links a:hover {
  color: var(--blue-dark);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.hero {
  width: min(1180px, calc(100% - 32px));
  min-height: calc(100vh - 76px);
  margin: 0 auto;
  padding: 64px 0 46px;
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(360px, 1.05fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 4.5rem);
}

.eyebrow {
  margin: 0 0 .75rem;
  color: var(--blue-dark);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  max-width: 680px;
  font-size: clamp(2.15rem, 4.1vw, 3.75rem);
  line-height: 1.08;
  letter-spacing: 0;
  color: var(--navy);
}

.hero-lede {
  max-width: 670px;
  margin: 1.4rem 0 0;
  font-size: clamp(1.04rem, 1.8vw, 1.25rem);
  color: #41545e;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: .85rem 1.15rem;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

.button.primary {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 14px 28px rgba(45, 101, 167, .22);
}

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

.button:hover {
  transform: translateY(-1px);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .8rem;
  margin: 1.75rem 0 0;
}

.hero-stats div {
  padding: 1rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.hero-stats dt {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--blue-dark);
}

.hero-stats dd {
  margin: .15rem 0 0;
  color: var(--muted);
  font-size: .88rem;
}

.hero-media {
  position: relative;
}

.hero-media::before {
  content: "";
  position: absolute;
  inset: -18px 18px 18px -18px;
  z-index: -1;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--silver), var(--sky));
}

.hero-media img {
  aspect-ratio: 16 / 10;
  width: 100%;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.intro-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border-block: 1px solid var(--line);
}

.intro-band div {
  padding: clamp(1.25rem, 3vw, 2rem);
  background: var(--white);
}

.intro-band strong,
.intro-band span {
  display: block;
}

.intro-band strong {
  color: var(--navy);
  font-size: 1.05rem;
}

.intro-band span {
  margin-top: .35rem;
  color: var(--muted);
}

.section,
.contact-section,
.coverage {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(3.25rem, 6vw, 5.75rem) 0;
  scroll-margin-top: 92px;
}

.hero,
.intro-band,
.program-section,
.site-footer {
  scroll-margin-top: 92px;
}

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

.section-heading h2,
.coverage h2,
.contact-copy h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(1.8rem, 3.2vw, 3rem);
  line-height: 1.1;
  letter-spacing: 0;
}

.section-heading p:not(.eyebrow),
.coverage p,
.contact-copy p {
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: 1.04rem;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.service-card {
  min-height: 255px;
  padding: 1.35rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.service-card .icon {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: var(--silver);
  color: var(--blue-dark);
  font-weight: 800;
}

.service-card h3,
.program-list h3,
.steps h3 {
  margin: 1rem 0 .45rem;
  color: var(--navy);
  font-size: 1.25rem;
  line-height: 1.18;
}

.service-card p,
.program-list p,
.steps p {
  margin: 0;
  color: var(--muted);
}

.accent-card {
  background: #f2f6fb;
  border-color: #c9d7e8;
}

.image-feature {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
  margin-top: 1rem;
  padding: clamp(1rem, 3vw, 1.5rem);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.image-feature img,
.section-photo {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.image-feature h3 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(1.45rem, 2.4vw, 2.2rem);
  line-height: 1.12;
}

.image-feature p:not(.eyebrow) {
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: 1.04rem;
}

.program-section {
  padding: clamp(3.25rem, 6vw, 5.75rem) max(16px, calc((100vw - 1180px) / 2));
  background: var(--navy);
  color: var(--white);
}

.section-heading.light h2,
.section-heading.light p {
  color: var(--white);
}

.section-heading.light .eyebrow {
  color: #b9d9ff;
}

.program-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.program-list article {
  padding: 1.5rem;
  min-height: 300px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 8px;
  background: rgba(255, 255, 255, .07);
}

.program-list span {
  display: inline-block;
  color: #b9d9ff;
  font-weight: 800;
  font-size: .86rem;
}

.program-list h3,
.program-list p {
  color: var(--white);
}

.program-notes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.program-notes article {
  padding: 1.15rem;
  border-radius: 8px;
  background: rgba(255, 255, 255, .93);
  color: var(--ink);
}

.program-notes strong {
  display: block;
  color: var(--navy);
  font-size: 1rem;
}

.program-notes p {
  margin: .45rem 0 0;
  color: #4c5e68;
  font-size: .94rem;
}

.official-links {
  max-width: 760px;
  margin: 1.25rem 0 0;
  display: grid;
  gap: .55rem;
}

.official-links p {
  margin: 0;
  color: rgba(255, 255, 255, .86);
  font-size: .98rem;
}

.official-links a {
  color: #b9d9ff;
  font-weight: 800;
}

.split {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.steps {
  list-style: none;
  display: grid;
  gap: 1rem;
  margin: 0;
  padding: 0;
}

.steps li {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 1rem;
  padding: 1.25rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.steps span {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 8px;
  background: var(--blue);
  color: var(--white);
  font-weight: 800;
}

.steps h3 {
  margin-top: 0;
}

.section-photo {
  margin-top: 1.5rem;
}

.coverage {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 2rem;
  align-items: center;
  padding-block: 3rem;
  border-block: 1px solid var(--line);
}

.contact-section {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.contact-options {
  display: flex;
  flex-wrap: wrap;
  gap: .7rem;
  margin-top: 1.5rem;
}

.contact-options a,
.contact-options span {
  padding: .6rem .75rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--navy);
  text-decoration: none;
  font-weight: 700;
  font-size: .92rem;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  padding: clamp(1rem, 3vw, 1.5rem);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

label {
  display: grid;
  gap: .4rem;
  color: var(--navy);
  font-weight: 800;
  font-size: .92rem;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #cddbd5;
  border-radius: 8px;
  padding: .85rem .9rem;
  font: inherit;
  color: var(--ink);
  background: #fdfefb;
}

textarea {
  resize: vertical;
}

.hidden-field {
  display: none;
}

.full {
  grid-column: 1 / -1;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem max(16px, calc((100vw - 1180px) / 2));
  background: var(--ink);
  color: var(--white);
}

.site-footer p {
  margin: 0;
  max-width: 720px;
  color: rgba(255, 255, 255, .78);
}

.site-footer p:first-child {
  color: var(--white);
  font-weight: 800;
}

.thanks-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 2rem;
  background:
    linear-gradient(135deg, rgba(234, 244, 255, .85), rgba(251, 252, 255, .95)),
    var(--paper);
}

.thanks-shell {
  width: min(720px, 100%);
}

.thanks-brand {
  width: fit-content;
  margin-bottom: 1.5rem;
}

.thanks-card {
  padding: clamp(1.5rem, 5vw, 3rem);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.thanks-card h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
}

.thanks-card p:not(.eyebrow) {
  margin: 1rem 0 1.5rem;
  color: var(--muted);
  font-size: 1.1rem;
}

@media (max-width: 900px) {
  .nav-toggle {
    display: inline-block;
  }

  .nav-links {
    position: absolute;
    inset: 76px 16px auto 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: .5rem;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    padding: .9rem;
  }

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

  .hero {
    min-height: auto;
    padding-top: 42px;
  }

  .hero-media {
    order: -1;
  }

  .hero-media::before {
    inset: -10px 10px 10px -10px;
  }

  .intro-band,
  .service-grid,
  .program-list,
  .program-notes,
  .image-feature {
    grid-template-columns: 1fr;
  }

  .service-card,
  .program-list article {
    min-height: auto;
  }
}

@media (max-width: 620px) {
  .brand small {
    display: none;
  }

  h1 {
    font-size: clamp(2.05rem, 10vw, 2.85rem);
  }

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

  .contact-form .button {
    width: 100%;
  }

  .steps li {
    grid-template-columns: 1fr;
  }
}
