@font-face {
  font-family: Manrope;
  src: url("/assets/fonts/manrope-400.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: Manrope;
  src: url("/assets/fonts/manrope-600.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: Manrope;
  src: url("/assets/fonts/manrope-700.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Nunito Sans";
  src: url("/assets/fonts/nunito-sans-400.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Nunito Sans";
  src: url("/assets/fonts/nunito-sans-600.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

:root {
  --white: #fff5d9;
  --black: #182241;
  --accent: #536c7c;
  --light-accent: #7b949c;
  --dark-accent: #213c4e;
  --bg: var(--white);
  --bg-elev: #fffaf0;
  --ink: var(--black);
  --muted: var(--accent);
  --line: #e4d7b4;
  --emergency: var(--dark-accent);
  --emergency-bg: var(--white);
  --header: var(--white);
  --header-ink: var(--black);
  --max: 70rem;
  --font-heading: Manrope, "Segoe UI", sans-serif;
  --font-body: "Nunito Sans", "Segoe UI", sans-serif;
  --radius: 0;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body.nav-open { overflow: hidden; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--ink);
  background: var(--bg);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent-2); }
a:hover { color: var(--accent); }
h1, h2, h3 { font-family: var(--font-heading); line-height: 1.2; font-weight: 700; color: var(--ink); }
h1 { font-size: clamp(1.85rem, 4vw, 2.75rem); margin: 0 0 0.75rem; }
h2 { font-size: clamp(1.35rem, 2.5vw, 1.75rem); margin: 0 0 0.75rem; }
h3 { font-size: 1.1rem; margin: 0 0 0.4rem; }
p { margin: 0 0 1rem; }
ul { margin: 0; padding: 0; list-style: none; }

.skip {
  position: absolute;
  left: 1rem;
  top: -4rem;
  background: var(--black);
  color: var(--white);
  padding: 0.5rem 0.85rem;
  z-index: 100;
}
.skip:focus { top: 1rem; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  color: var(--header-ink);
  background: var(--header);
}
.header-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  margin: 0 auto;
  padding: clamp(0.85rem, 2.4vw, 2rem) 4vw;
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.logo { flex: 0 0 auto; }
.logo img {
  height: auto;
  width: auto;
  max-height: 90px;
}
.nav-toggle {
  display: none;
  margin-left: auto;
  background: transparent;
  border: 0;
  color: var(--header-ink);
  width: 44px;
  height: 44px;
  cursor: pointer;
  padding: 0;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 1px;
  background: currentColor;
  margin: 7px auto;
}
.site-nav { margin-left: auto; }
.site-nav ul {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1.4vw;
}
.site-nav a {
  color: var(--header-ink);
  text-decoration: none;
  font-weight: 400;
  font-family: var(--font-body);
  font-size: 1rem;
  letter-spacing: 0;
}
.site-nav a[aria-current="page"],
.site-nav a:hover { text-decoration: underline; text-underline-offset: 0.35em; }

main { flex: 1; }
.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 2.5rem 1.25rem 3.5rem;
}
.hero-bleed {
  position: relative;
  isolation: isolate;
  min-height: min(70vh, 44rem);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--black);
  color: var(--white);
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: hsla(225.37, 46.07%, 17.45%, 0.15);
  pointer-events: none;
}
.hero-bleed .hero-copy {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
  padding-top: 4.5rem;
  padding-bottom: 4.5rem;
}
.hero-bleed h1 { color: var(--white); font-size: clamp(2rem, 5vw, 4rem); font-weight: 500; }
.hero-bleed .lede {
  font-size: 1.15rem;
  color: var(--white);
}

.band-light {
  background: var(--white);
  color: var(--black);
  padding: 3rem 4vw;
  text-align: center;
}
.band-light .wrap { padding-top: 0; padding-bottom: 0; max-width: 48rem; }
.emergency {
  background: var(--white);
  padding: 0;
  margin: 0;
  border: 0;
  text-align: center;
}
.emergency p { text-align: center; margin: 0 auto; }
.emergency strong { color: var(--black); }

.map-band { width: 100%; background: var(--white); }
.map-frame {
  display: block;
  width: 100%;
  height: min(49.34vw, 28rem);
  min-height: 16rem;
  border: 0;
}

.page-hero {
  position: relative;
  min-height: 12rem;
  display: flex;
  align-items: flex-end;
  background: #1a2422 center/cover no-repeat;
  color: #fff;
}
.page-hero .wrap { padding-top: 4rem; padding-bottom: 2rem; }
.page-hero h1 { color: #fff; }

.providers {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
  margin-top: 1.5rem;
}
.provider-card {
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}
.provider-card img {
  width: 100%;
  height: 240px;
  object-fit: contain;
  background: var(--white);
}
.provider-card .body { padding: 1rem 1.1rem 1.2rem; }
.provider-card h2 { font-size: 1.15rem; margin-bottom: 0.2rem; }
.provider-card .role { color: var(--muted); margin: 0; font-size: 0.95rem; }
.provider-card .more { margin: 0.7rem 0 0; font-weight: 600; color: var(--accent-2); }

.resource-list { display: grid; gap: 1.5rem; margin-top: 1.5rem; }
.resource-card {
  display: grid;
  grid-template-columns: minmax(0, 280px) minmax(0, 1fr);
  gap: 1.5rem;
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
}
.resource-card img {
  width: 100%;
  height: 100%;
  min-height: 180px;
  object-fit: cover;
}
.resource-card .body { padding: 1.25rem 1.25rem 1.4rem 0; }
.resource-card .kicker { color: var(--muted); margin: 0 0 0.4rem; font-size: 0.95rem; }
.resource-card .visit { font-weight: 600; color: var(--accent-2); margin: 0.75rem 0 0; }

.bio { display: grid; grid-template-columns: minmax(0, 280px) minmax(0, 1fr); gap: 2rem; align-items: start; }
.bio img { width: 100%; border-radius: var(--radius); background: #e8efe9; }
.directions { display: grid; gap: 1.25rem; }
.direction {
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.15rem 1.25rem;
}
.direction h2 { font-size: 1.15rem; }
.direction p { margin: 0; }

.site-footer { margin-top: auto; }
.footer-band {
  background: var(--black);
  color: var(--white);
}
.footer-band a { color: var(--white); }
.footer-grid {
  max-width: var(--max);
  margin: 0 auto;
  padding: 2.75rem 4vw;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.75rem;
}
.footer-band h2 {
  color: var(--white);
  font-size: 1.15rem;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  margin-bottom: 0.6rem;
}
.footer-band p { margin: 0 0 0.35rem; color: var(--white); }
.footer-bottom {
  background: var(--white);
  color: var(--black);
  text-align: center;
  padding: 1.5rem 4vw 2rem;
  font-size: 0.95rem;
}
.footer-bottom p { margin: 0; }
.footer-bottom a { color: var(--black); }

.error {
  text-align: center;
  padding: 5rem 1.25rem;
}
.error .code {
  font-family: var(--font-heading);
  font-size: 4.5rem;
  line-height: 1;
  margin: 0 0 0.5rem;
}
.btn {
  display: inline-block;
  margin-top: 1rem;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  padding: 0.7rem 1.2rem;
  border-radius: 999px;
}
.btn:hover { background: var(--accent-2); color: #fff; }

@media (max-width: 800px) {
  .bio, .resource-card { grid-template-columns: 1fr; }
  .resource-card .body { padding: 0 1.15rem 1.25rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .nav-toggle { display: inline-block; }
  .site-nav {
    display: none;
    position: fixed;
    inset: 0;
    background: var(--black);
    padding: 7rem 8vw 2rem;
    z-index: 30;
  }
  .site-nav.is-open { display: block; }
  .site-nav ul { flex-direction: column; align-items: flex-start; gap: 1.35rem; }
  .site-nav a { font-size: 1.65rem; color: var(--white); }
  .header-inner { position: relative; }
  .logo { z-index: 35; }
  .nav-toggle { z-index: 35; }
  .logo img { max-height: 64px; }
}

@media (max-width: 520px) {
  .logo img { max-height: 52px; }
}
