:root {
  --berry: #a61850;
  --berry-dark: #641033;
  --ember: #c44a28;
  --marigold: #dc8500;
  --forest: #1f5f49;
  --teal: #0f7b83;
  --ink: #252128;
  --muted: #665e66;
  --paper: #fff8ee;
  --ivory: #fffcf6;
  --line: rgba(37, 33, 40, 0.14);
  --shadow: 0 24px 70px rgba(70, 25, 32, 0.16);
  --radius: 8px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ivory);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.6;
}

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

a {
  color: inherit;
}

button,
input,
textarea {
  font: inherit;
}

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

.skip-link:focus {
  width: auto;
  height: auto;
  margin: 1rem;
  padding: 0.75rem 1rem;
  clip: auto;
  z-index: 20;
  background: var(--berry-dark);
  color: white;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 252, 246, 0.95);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.utility-bar {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.45rem max(1rem, calc((100vw - 1180px) / 2));
  background: var(--berry-dark);
  color: white;
  font-size: 0.82rem;
}

.utility-bar p {
  margin: 0;
}

.utility-links {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.utility-links a {
  text-decoration: none;
  opacity: 0.9;
}

.social-links {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(255, 255, 255, 0.46);
  border-radius: 50%;
  color: white;
  opacity: 1;
}

.social-links svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.social-links path {
  fill: currentColor;
  stroke: none;
}

.navbar {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0.65rem 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
}

.brand img {
  width: 62px;
  height: 62px;
  object-fit: contain;
}

.brand strong {
  display: block;
  color: var(--berry);
  font-size: 1.3rem;
  line-height: 1;
}

.brand small {
  color: var(--forest);
  display: block;
  font-size: 0.78rem;
  margin-top: 0.25rem;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  font-weight: 700;
  font-size: 0.95rem;
}

.nav-menu a {
  text-decoration: none;
}

.nav-menu a:not(.nav-cta) {
  color: var(--ink);
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.75rem 1.05rem;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 800;
  border: 2px solid transparent;
  cursor: pointer;
}

.nav-cta,
.button.primary {
  background: var(--berry);
  color: white;
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.72);
  color: white;
}

.menu-button {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  padding: 0.75rem;
}

.menu-button span:not(.sr-only) {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--berry-dark);
}

.hero {
  position: relative;
  min-height: 700px;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: var(--berry-dark);
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(44, 16, 26, 0.9) 0%, rgba(80, 21, 43, 0.74) 34%, rgba(80, 21, 43, 0.2) 66%, rgba(25, 20, 18, 0.16) 100%),
    linear-gradient(0deg, rgba(26, 20, 24, 0.46), rgba(26, 20, 24, 0.08));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(690px, calc(100% - 2rem));
  margin-left: max(1rem, calc((100vw - 1180px) / 2));
  padding: 7rem 0 6rem;
  color: white;
}

.eyebrow {
  margin: 0 0 0.75rem;
  color: var(--marigold);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

.hero h1,
.section-heading h2,
.mission-band h2,
.contact-section h2,
.response-section h2 {
  margin: 0;
  line-height: 1.06;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
}

.hero h1 {
  font-size: clamp(2.25rem, 4.2vw, 4.35rem);
  max-width: 11ch;
}

.hero-copy {
  max-width: 650px;
  margin: 1.35rem 0 0;
  font-size: clamp(1.05rem, 1.8vw, 1.3rem);
  color: rgba(255, 255, 255, 0.9);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}

.section-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 5rem 1rem;
}

.two-column,
.contact-layout,
.response-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(2rem, 5vw, 5rem);
}

.mission-band {
  background: var(--paper);
}

.mission-band h2,
.section-heading h2,
.contact-section h2,
.response-section h2 {
  font-size: clamp(1.85rem, 3.25vw, 3.55rem);
  color: var(--berry-dark);
}

.mission-copy {
  font-size: 1.05rem;
  color: var(--muted);
}

.mission-copy p:first-child {
  margin-top: 0;
}

.impact-section {
  background: var(--ivory);
}

.section-heading {
  max-width: 800px;
  margin-bottom: 2.25rem;
}

.section-heading.compact {
  max-width: 720px;
}

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

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

.stat-card,
.program-card,
.partner-card,
.response-list article,
.contact-form {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  box-shadow: 0 10px 35px rgba(66, 42, 26, 0.06);
}

.stat-card {
  padding: 1.35rem;
  min-height: 190px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.stat-card strong {
  display: block;
  color: var(--berry);
  font-size: clamp(1.85rem, 3.2vw, 3rem);
  line-height: 1;
  font-family: Georgia, "Times New Roman", serif;
}

.stat-card span {
  color: var(--muted);
  font-weight: 650;
}

.action-section {
  background:
    linear-gradient(135deg, rgba(166, 24, 80, 0.08), rgba(15, 123, 131, 0.08)),
    var(--paper);
}

.action-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(420px, 1.2fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.action-copy {
  max-width: 620px;
}

.action-copy h2 {
  margin-top: 0;
  color: var(--berry-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.8rem, 3vw, 3.1rem);
  line-height: 1.08;
}

.action-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.06rem;
}

.action-photo-collage {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  grid-auto-rows: 158px;
  gap: 0.9rem;
}

.action-photo {
  position: relative;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--ink);
  box-shadow: 0 18px 52px rgba(70, 25, 32, 0.16);
}

.action-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.action-photo figcaption {
  position: absolute;
  left: 0.85rem;
  bottom: 0.85rem;
  max-width: calc(100% - 1.7rem);
  padding: 0.35rem 0.55rem;
  border-radius: var(--radius);
  background: rgba(100, 16, 51, 0.92);
  color: white;
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1.15;
}

.action-photo.main-cut {
  grid-row: span 3;
  clip-path: polygon(0 0, 100% 0, 100% 90%, 88% 100%, 0 100%);
}

.action-photo.notch-cut {
  grid-row: span 2;
  clip-path: polygon(10% 0, 100% 0, 100% 100%, 0 100%, 0 12%);
}

.action-photo.angle-cut {
  clip-path: polygon(0 0, 92% 0, 100% 18%, 100% 100%, 0 100%);
}

.action-photo.forum-cut img {
  object-position: 50% 0;
}

.action-photo.soft-cut {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 12% 100%, 0 82%);
}

.programs-section {
  background:
    linear-gradient(180deg, rgba(31, 95, 73, 0.09), rgba(31, 95, 73, 0)),
    var(--paper);
}

.program-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: 2rem;
  align-items: center;
  margin-bottom: 1.35rem;
}

.program-feature img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.program-feature h3,
.playlist-card h3,
.program-card h3,
.partner-card h3,
.response-list h3 {
  margin: 0 0 0.55rem;
  color: var(--berry-dark);
  line-height: 1.2;
}

.program-feature p,
.playlist-card p,
.program-card p,
.partner-card p,
.response-list p,
.video-hero p,
.resource-band p,
.contact-section p,
.site-footer p {
  color: var(--muted);
}

.check-list {
  list-style: none;
  margin: 1.2rem 0 0;
  padding: 0;
}

.check-list li {
  position: relative;
  padding-left: 1.8rem;
  margin: 0.55rem 0;
  font-weight: 700;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.52rem;
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  background: var(--forest);
}

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

.program-card,
.partner-card,
.response-list article {
  padding: 1.35rem;
}

.program-card span {
  color: var(--teal);
  font-weight: 900;
  display: block;
  margin-bottom: 1rem;
}

.card-link {
  display: inline-block;
  margin-top: 1rem;
  color: var(--berry);
  font-weight: 900;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.program-card.accent {
  background: var(--forest);
  color: white;
}

.program-card.accent h3,
.program-card.accent p,
.program-card.accent span {
  color: white;
}

.timeline-section {
  background: var(--berry-dark);
  color: white;
}

.timeline-section .section-heading h2,
.timeline-section .section-heading p {
  color: white;
}

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

.timeline article {
  border-top: 3px solid var(--marigold);
  padding-top: 1.2rem;
}

.timeline time {
  display: block;
  color: var(--marigold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  font-weight: 700;
}

.timeline p {
  color: rgba(255, 255, 255, 0.83);
}

.partners-section {
  background: var(--ivory);
}

.partner-card {
  min-height: 270px;
  display: flex;
  flex-direction: column;
}

.partner-logo-row {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem;
  margin: -0.5rem 0 1.4rem;
}

.partner-logo {
  display: grid;
  place-items: center;
  height: 118px;
  overflow: hidden;
  padding: 0.7rem;
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) - 2px);
  background: #fff;
  box-shadow: 0 10px 35px rgba(66, 42, 26, 0.06);
}

.partner-logo img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 180px;
  max-height: 82px;
  object-fit: contain;
}

.partner-logo.compact-logo img {
  max-width: 92px;
  max-height: 92px;
}

.partner-card a {
  margin-top: auto;
  color: var(--berry);
  font-weight: 900;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.partner-card.featured {
  border-color: rgba(220, 133, 0, 0.55);
  background: #fff4dc;
}

.response-section {
  background: #f1f7f4;
}

.photo-hero {
  background:
    linear-gradient(135deg, rgba(166, 24, 80, 0.1), rgba(220, 133, 0, 0.08)),
    var(--paper);
}

.photo-hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.photo-hero h1 {
  margin: 0;
  color: var(--berry-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.05rem, 3.9vw, 4rem);
  line-height: 1.05;
}

.photo-hero p {
  color: var(--muted);
  font-size: 1.08rem;
}

.photo-hero img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.gallery-index {
  background: var(--ivory);
  border-bottom: 1px solid var(--line);
}

.gallery-index-inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
  padding-block: 1.25rem;
}

.gallery-index a {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  min-height: 76px;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  text-decoration: none;
  box-shadow: 0 10px 35px rgba(66, 42, 26, 0.06);
}

.gallery-index strong {
  color: var(--berry-dark);
  line-height: 1.2;
}

.gallery-index span {
  color: var(--teal);
  font-weight: 900;
  white-space: nowrap;
}

.gallery-section {
  background: var(--ivory);
}

.gallery-section.alt {
  background: var(--paper);
}

.photo-grid {
  display: grid;
  grid-auto-flow: dense;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 170px;
  gap: 1rem;
}

.photo-card {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--ink);
  box-shadow: 0 12px 38px rgba(37, 33, 40, 0.12);
}

.photo-card.wide {
  grid-column: span 2;
  grid-row: span 2;
}

.photo-card.tall {
  grid-row: span 2;
}

.photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease, opacity 220ms ease;
}

.photo-card:hover img,
.photo-card:focus-visible img {
  opacity: 0.86;
  transform: scale(1.035);
}

.photo-card::after {
  content: "View";
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  padding: 0.45rem 0.7rem;
  border-radius: var(--radius);
  background: rgba(100, 16, 51, 0.92);
  color: white;
  font-size: 0.82rem;
  font-weight: 900;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.photo-card:hover::after,
.photo-card:focus-visible::after {
  opacity: 1;
  transform: translateY(0);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: none;
  grid-template-rows: 1fr auto;
  align-items: center;
  justify-items: center;
  gap: 1rem;
  padding: 4.5rem 1rem 1.25rem;
  background: rgba(20, 16, 18, 0.92);
}

.lightbox.is-open {
  display: grid;
}

.lightbox img {
  max-width: min(1120px, 100%);
  max-height: calc(100vh - 8rem);
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
}

.lightbox p {
  margin: 0;
  color: white;
  font-weight: 800;
}

.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  min-height: 44px;
  padding: 0.65rem 0.9rem;
  border: 0;
  border-radius: var(--radius);
  background: white;
  color: var(--berry-dark);
  font-weight: 900;
  cursor: pointer;
}

.video-hero {
  background:
    linear-gradient(135deg, rgba(166, 24, 80, 0.12), rgba(31, 95, 73, 0.12)),
    var(--paper);
}

.video-hero-layout,
.resource-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.video-hero h1 {
  margin: 0;
  color: var(--berry-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.05rem, 3.9vw, 4rem);
  line-height: 1.05;
}

.button.quiet {
  border-color: var(--berry);
  color: var(--berry);
  background: rgba(255, 255, 255, 0.55);
}

.crisis-note {
  padding: 1.5rem;
  border-radius: var(--radius);
  background: var(--berry-dark);
  color: white;
  box-shadow: var(--shadow);
}

.crisis-note h2 {
  margin: 0 0 0.6rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.5rem, 2.4vw, 2.35rem);
  line-height: 1.1;
}

.crisis-note p {
  color: rgba(255, 255, 255, 0.82);
}

.crisis-note a {
  color: white;
  font-weight: 900;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.playlist-section {
  background: var(--ivory);
}

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

.playlist-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  box-shadow: 0 10px 35px rgba(66, 42, 26, 0.06);
}

.featured-video-card {
  border-color: rgba(31, 95, 73, 0.35);
  background: #f1f7f4;
}

.video-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: var(--ink);
}

.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-fallback {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0.65rem 0.9rem;
  border-radius: var(--radius);
  background: var(--berry);
  color: white;
  font-size: 0.9rem;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(37, 33, 40, 0.22);
}

.playlist-copy {
  padding: 1.35rem;
}

.playlist-copy span {
  display: block;
  margin-bottom: 0.85rem;
  color: var(--teal);
  font-weight: 900;
}

.provider-info {
  margin: 1.15rem 0;
  padding: 1rem;
  border: 1px solid rgba(31, 95, 73, 0.18);
  border-radius: var(--radius);
  background: var(--ivory);
}

.provider-info h4 {
  margin: 0 0 0.5rem;
  color: var(--forest);
  font-size: 1rem;
  line-height: 1.25;
}

.provider-info p {
  margin: 0 0 0.85rem;
  font-size: 0.95rem;
}

.provider-info dl {
  display: grid;
  gap: 0.45rem;
  margin: 0;
}

.provider-info dl div {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 0.6rem;
}

.provider-info dt {
  color: var(--berry-dark);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

.provider-info dd {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

.provider-info a {
  color: var(--berry);
  overflow-wrap: anywhere;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.video-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}

.video-links a {
  color: var(--berry);
  font-weight: 900;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.resource-card {
  justify-content: center;
  background: #fff4dc;
  border-color: rgba(220, 133, 0, 0.55);
}

.resource-band {
  background: #f1f7f4;
}

.resource-band h2 {
  margin: 0;
  color: var(--berry-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.85rem, 3.25vw, 3.55rem);
  line-height: 1.06;
}

.report-hero {
  background:
    linear-gradient(135deg, rgba(166, 24, 80, 0.12), rgba(220, 133, 0, 0.1)),
    var(--paper);
}

.report-hero-layout,
.report-map-layout,
.report-callout .section-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.report-hero h1,
.report-map-layout h2,
.report-callout h2 {
  margin: 0;
  color: var(--berry-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.05rem, 3.9vw, 4rem);
  line-height: 1.05;
}

.report-hero p,
.report-map-layout p,
.report-callout p,
.chart-card p {
  color: var(--muted);
  font-size: 1.06rem;
}

.report-snapshot {
  display: grid;
  gap: 1rem;
}

.report-snapshot div,
.finding-grid article,
.chart-card,
.agency-grid article,
.recommendation-grid article,
.insight-list article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  box-shadow: 0 10px 35px rgba(66, 42, 26, 0.06);
}

.report-snapshot div,
.finding-grid article,
.chart-card,
.agency-grid article,
.recommendation-grid article {
  padding: 1.35rem;
}

.report-snapshot strong,
.insight-list strong {
  display: block;
  color: var(--berry);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.1rem, 4vw, 4rem);
  line-height: 1;
}

.report-snapshot span,
.insight-list span {
  display: block;
  margin-top: 0.45rem;
  color: var(--muted);
  font-weight: 800;
}

.report-section {
  background: var(--ivory);
}

.report-section.alt {
  background: var(--paper);
}

.finding-grid,
.agency-grid,
.recommendation-grid,
.report-chart-grid {
  display: grid;
  gap: 1rem;
}

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

.finding-grid span {
  display: block;
  margin-bottom: 1rem;
  color: var(--teal);
  font-weight: 900;
}

.finding-grid h3,
.chart-card h3,
.agency-grid h3,
.recommendation-grid h3 {
  margin: 0 0 0.7rem;
  color: var(--berry-dark);
  line-height: 1.2;
}

.finding-grid p,
.agency-grid p,
.recommendation-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

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

.chart-card.wide {
  grid-column: 1 / -1;
}

.bar-chart {
  display: grid;
  gap: 1rem;
  margin: 1.35rem 0;
}

.bar-row {
  display: grid;
  grid-template-columns: minmax(150px, 1.1fr) minmax(0, 1fr) 52px;
  gap: 0.75rem;
  align-items: center;
}

.bar-row span {
  color: var(--muted);
  font-weight: 800;
}

.bar-row strong {
  color: var(--berry-dark);
}

.bar-track {
  height: 16px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(31, 95, 73, 0.13);
}

.bar-track div {
  height: 100%;
  border-radius: inherit;
  background: var(--forest);
}

.bar-track.contrast {
  background: rgba(166, 24, 80, 0.13);
}

.bar-track.contrast div {
  background: var(--berry);
}

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

.metric-ring {
  --ring-color: var(--berry);
  display: grid;
  place-items: center;
  align-content: center;
  min-height: 210px;
  padding: 1.2rem;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, white 0 56%, transparent 57%),
    conic-gradient(var(--ring-color) calc(var(--value) * 1%), rgba(37, 33, 40, 0.1) 0);
  text-align: center;
}

.metric-ring strong {
  display: block;
  color: var(--berry-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.4rem;
  line-height: 1;
}

.metric-ring span {
  max-width: 120px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 850;
  line-height: 1.2;
}

.teal-ring {
  --ring-color: var(--teal);
}

.gold-ring {
  --ring-color: var(--marigold);
}

.stacked-bar {
  display: flex;
  overflow: hidden;
  min-height: 64px;
  border-radius: var(--radius);
  background: var(--line);
}

.stacked-bar span {
  display: grid;
  place-items: center;
  min-width: 56px;
  color: white;
  font-weight: 900;
}

.stacked-bar span:nth-child(1),
.legend-list span:nth-child(1) i {
  background: var(--berry);
}

.stacked-bar span:nth-child(2),
.legend-list span:nth-child(2) i {
  background: var(--forest);
}

.stacked-bar span:nth-child(3),
.legend-list span:nth-child(3) i {
  background: var(--teal);
}

.stacked-bar span:nth-child(4),
.legend-list span:nth-child(4) i {
  background: var(--marigold);
}

.stacked-bar span:nth-child(5),
.legend-list span:nth-child(5) i {
  background: var(--ember);
}

.legend-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: 1rem;
}

.legend-list span {
  display: flex;
  gap: 0.45rem;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 750;
  line-height: 1.3;
}

.legend-list i {
  flex: 0 0 auto;
  width: 12px;
  height: 12px;
  margin-top: 0.2rem;
  border-radius: 50%;
}

.agency-grid strong {
  display: block;
  margin-top: 1rem;
  color: var(--forest);
  line-height: 1.3;
}

.report-map-layout {
  align-items: start;
}

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

.insight-list article {
  padding: 1.15rem;
}

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

.report-callout {
  background: var(--berry-dark);
  color: white;
}

.report-callout h2,
.report-callout p {
  color: white;
}

.report-callout p {
  opacity: 0.82;
}

.response-list {
  display: grid;
  gap: 1rem;
}

.contact-section {
  background:
    linear-gradient(135deg, rgba(166, 24, 80, 0.1), rgba(15, 123, 131, 0.09)),
    var(--paper);
}

.contact-form {
  display: grid;
  gap: 1rem;
  padding: 1.35rem;
}

.contact-form label {
  display: grid;
  gap: 0.35rem;
  font-weight: 800;
  color: var(--berry-dark);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0.85rem 0.9rem;
  background: var(--ivory);
  color: var(--ink);
}

.contact-form textarea {
  resize: vertical;
}

.honeypot {
  display: none;
}

.form-status {
  min-height: 1.5rem;
  margin: 0;
  color: var(--forest);
  font-weight: 800;
}

.form-status.is-error {
  color: var(--berry);
}

.site-footer {
  background: var(--ink);
  color: white;
}

.footer-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 3rem;
  padding-block: 3rem;
}

.site-footer img {
  width: 96px;
  height: 96px;
  object-fit: contain;
  background: white;
  border-radius: var(--radius);
  padding: 0.35rem;
}

.site-footer h2 {
  margin: 0 0 0.5rem;
  font-size: 1rem;
}

.site-footer p {
  color: rgba(255, 255, 255, 0.75);
}

.source-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.source-links a {
  color: white;
  font-weight: 800;
}

.social-footer-links {
  margin-top: 0.85rem;
}

@media (max-width: 920px) {
  .utility-bar {
    display: none;
  }

  .navbar {
    min-height: 72px;
  }

  .menu-button {
    display: block;
  }

  .nav-menu {
    position: absolute;
    left: 1rem;
    right: 1rem;
    top: calc(100% + 0.5rem);
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.65rem;
    background: white;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

  .nav-menu.is-open {
    display: flex;
  }

  .nav-menu a {
    padding: 0.8rem;
  }

  .nav-cta {
    margin-top: 0.35rem;
  }

  .hero {
    min-height: 630px;
  }

  .hero h1 {
    max-width: 12ch;
  }

  .two-column,
  .contact-layout,
  .response-layout,
  .photo-hero-layout,
  .video-hero-layout,
  .report-hero-layout,
  .report-map-layout,
  .report-callout .section-inner,
  .resource-layout,
  .program-feature,
  .action-layout,
  .footer-layout {
    grid-template-columns: 1fr;
  }

  .action-photo-collage {
    grid-auto-rows: 150px;
  }

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

  .program-grid,
  .playlist-grid,
  .partner-grid,
  .partner-logo-row,
  .finding-grid,
  .agency-grid,
  .recommendation-grid,
  .report-chart-grid,
  .legend-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ring-grid {
    grid-template-columns: 1fr;
    max-width: 280px;
    margin-inline: auto;
  }

  .gallery-index-inner {
    grid-template-columns: 1fr;
  }

  .photo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 150px;
  }
}

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

  .brand strong {
    font-size: 1.05rem;
  }

  .brand small {
    font-size: 0.72rem;
  }

  .hero {
    min-height: 690px;
  }

  .hero-shade {
    background:
      linear-gradient(180deg, rgba(64, 16, 36, 0.9) 0%, rgba(64, 16, 36, 0.76) 48%, rgba(64, 16, 36, 0.35) 100%),
      linear-gradient(0deg, rgba(26, 20, 24, 0.44), rgba(26, 20, 24, 0));
  }

  .hero-content {
    padding-top: 5rem;
  }

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

  .button,
  .nav-cta {
    width: 100%;
  }

  .section-inner {
    padding-block: 3.5rem;
  }

  .stat-grid,
  .program-grid,
  .playlist-grid,
  .partner-grid,
  .timeline,
  .finding-grid,
  .agency-grid,
  .recommendation-grid,
  .report-chart-grid,
  .legend-list,
  .insight-list {
    grid-template-columns: 1fr;
  }

  .partner-logo-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .bar-row {
    grid-template-columns: 1fr 52px;
  }

  .bar-row span {
    grid-column: 1 / -1;
  }

  .provider-info dl div {
    grid-template-columns: 1fr;
    gap: 0.1rem;
  }

  .action-photo-collage {
    grid-template-columns: 1fr;
    grid-auto-rows: 230px;
  }

  .action-photo.main-cut,
  .action-photo.notch-cut {
    grid-row: auto;
  }

  .photo-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 250px;
  }

  .photo-card.wide,
  .photo-card.tall {
    grid-column: auto;
    grid-row: auto;
  }

  .stat-card {
    min-height: 150px;
  }
}
