:root {
  --ink: #303030;
  --muted: #727272;
  --line: #e3e3e3;
  --paper: #ffffff;
  --soft: #f6f6f6;
  --dark: #292929;
  --red: #d64a3a;
  --red-dark: #b43d30;
  --gold: #e0a52c;
  --green: #548c55;
  --blue: #4e91aa;
  --shadow: 0 12px 35px rgba(0, 0, 0, 0.14);
  font-family: Lato, Arial, Helvetica, sans-serif;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: #fff;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.topbar {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 9px clamp(18px, 6vw, 82px);
  background: #2d2d2d;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.82rem;
}

.topbar a {
  color: #fff;
  text-decoration: none;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  min-height: 78px;
  padding: 0 clamp(18px, 6vw, 82px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

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

.brand span {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2.4vw, 28px);
  font-size: 0.83rem;
  font-weight: 900;
  text-transform: uppercase;
}

.site-nav a {
  position: relative;
  color: #333;
  text-decoration: none;
}

.site-nav a.active,
.site-nav a:hover {
  color: var(--red);
}

.donate-link,
.button,
.footer-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 43px;
  padding: 0 20px;
  border: 0;
  border-radius: 3px;
  color: #fff;
  background: var(--red);
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
}

.donate-link:hover,
.button:hover,
.footer-button:hover {
  background: var(--red-dark);
}

.button.ghost {
  color: #fff;
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.85);
}

.nav-toggle {
  display: none;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  border: 1px solid var(--line);
  background: #fff;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px;
  background: #333;
}

.nav-toggle b {
  font-size: 0.75rem;
  text-transform: uppercase;
}

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

.home-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.82;
}

.home-hero::after,
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.68), rgba(0, 0, 0, 0.28), rgba(0, 0, 0, 0.15));
}

.hero-panel {
  position: relative;
  z-index: 1;
  width: min(760px, calc(100% - 36px));
  margin-left: clamp(18px, 8vw, 120px);
  padding: clamp(28px, 4vw, 48px);
  color: #fff;
  background: rgba(0, 0, 0, 0.28);
  border-left: 7px solid var(--red);
}

.kicker {
  margin: 0 0 10px;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.home-hero .kicker,
.page-hero .kicker {
  color: #ffd76c;
}

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

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.14;
  letter-spacing: 0;
}

h1 {
  max-width: 850px;
  font-size: clamp(2.65rem, 6.6vw, 5.3rem);
  text-transform: uppercase;
}

h2 {
  font-size: clamp(1.8rem, 4vw, 3.1rem);
}

h3 {
  font-size: 1.22rem;
}

.hero-panel p,
.page-hero p {
  max-width: 660px;
  font-size: 1.12rem;
  color: rgba(255, 255, 255, 0.9);
}

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

.section-pad,
.help-section {
  padding: clamp(60px, 9vw, 105px) clamp(18px, 6vw, 82px);
}

.section-title {
  width: min(980px, 100%);
  margin: 0 auto 34px;
  text-align: center;
}

.help-section {
  background: #fff;
}

.help-grid,
.mission-grid,
.news-grid,
.gallery-grid,
.footer-grid {
  width: min(1160px, 100%);
  margin: 0 auto;
  display: grid;
  gap: 24px;
}

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

.help-grid article {
  min-height: 270px;
  padding: 30px 28px;
  border: 1px solid var(--line);
  background: #fff;
  text-align: center;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.06);
}

.help-grid img {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
}

.help-grid h3 {
  text-transform: uppercase;
}

.help-grid p {
  color: var(--muted);
}

.help-grid a,
.text-link,
.news-grid a {
  color: var(--red);
  font-weight: 900;
  text-transform: uppercase;
}

.two-col {
  width: min(1160px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(34px, 6vw, 74px);
  align-items: center;
}

.two-col p,
.story-page p,
.lead {
  color: var(--muted);
  font-size: 1.05rem;
}

.lead {
  font-size: 1.22rem;
  color: #4c4c4c;
}

.rounded {
  width: 100%;
  border-radius: 3px;
  box-shadow: var(--shadow);
}

.news-strip,
.muted-block {
  background: var(--soft);
}

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

.news-grid article,
.blog-list article,
.mission-grid article,
.contact-card,
.contact-form {
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.news-grid img,
.mission-grid img {
  width: 100%;
  aspect-ratio: 1.35 / 1;
  object-fit: cover;
}

.news-grid div,
.mission-grid article {
  padding: 24px;
}

time {
  display: block;
  margin-bottom: 8px;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 900;
}

.page-hero {
  position: relative;
  min-height: 360px;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--dark);
}

.page-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero > div {
  position: relative;
  z-index: 1;
  width: min(1160px, 100%);
  margin: 0 auto;
  padding: 0 clamp(18px, 6vw, 82px) 52px;
  color: #fff;
}

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

.mission-grid h2 {
  margin-top: 16px;
  font-size: 1.65rem;
}

.mission-grid p {
  color: var(--muted);
}

.callout {
  padding: clamp(44px, 7vw, 76px) 18px;
  color: #fff;
  background: var(--red);
  text-align: center;
}

.callout h2 {
  max-width: 920px;
  margin: 0 auto 24px;
}

.callout .button {
  color: var(--red);
  background: #fff;
}

.check-list {
  padding-left: 20px;
  color: var(--muted);
}

.check-list li {
  margin: 10px 0;
}

.gallery-grid {
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.gallery-grid button {
  padding: 0;
  border: 0;
  background: #fff;
  text-align: left;
  cursor: zoom-in;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
}

.gallery-grid img {
  width: 100%;
  aspect-ratio: 1.2 / 1;
  object-fit: cover;
}

.gallery-grid span {
  display: block;
  min-height: 48px;
  padding: 10px 12px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 700;
}

.blog-list {
  display: grid;
  gap: 28px;
}

.blog-list article {
  width: min(1000px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
}

.blog-list img {
  width: 100%;
  height: 100%;
  min-height: 230px;
  object-fit: cover;
}

.blog-list div {
  padding: 28px;
}

.blog-list p {
  color: var(--muted);
}

.contact-layout {
  width: min(1040px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 28px;
}

.contact-card,
.contact-form {
  padding: 30px;
}

dt {
  color: var(--red);
  font-weight: 900;
  text-transform: uppercase;
}

dd {
  margin: 0 0 18px;
  color: var(--muted);
  font-weight: 700;
}

.contact-form {
  display: grid;
  gap: 16px;
}

label {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-weight: 900;
  text-transform: uppercase;
}

input,
textarea {
  width: 100%;
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  font: inherit;
}

textarea {
  min-height: 140px;
  resize: vertical;
}

.site-footer {
  color: rgba(255, 255, 255, 0.78);
  background: #252525;
}

.footer-grid {
  grid-template-columns: 1.2fr 0.85fr 0.95fr;
  padding: 48px clamp(18px, 6vw, 82px);
}

.site-footer h2 {
  margin-bottom: 12px;
  color: #fff;
  font-size: 1rem;
  text-transform: uppercase;
}

.site-footer p,
.site-footer address {
  margin: 0;
  font-style: normal;
}

.copyright {
  padding: 18px clamp(18px, 6vw, 82px);
  background: #1d1d1d;
  font-size: 0.86rem;
}

.not-found {
  min-height: 62vh;
  padding: 120px 18px;
  text-align: center;
}

.lightbox {
  position: fixed;
  z-index: 50;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 70px 18px 18px;
  background: rgba(0, 0, 0, 0.86);
}

.lightbox[hidden] {
  display: none;
}

.lightbox img {
  max-height: 82vh;
  width: auto;
  border-radius: 3px;
}

.lightbox button {
  position: absolute;
  top: 18px;
  right: 18px;
  min-height: 40px;
  padding: 0 14px;
  border: 0;
  background: #fff;
  font-weight: 900;
}

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

  .site-nav {
    position: fixed;
    inset: 117px 0 auto;
    display: none;
    grid-template-columns: 1fr;
    gap: 0;
    padding: 12px 24px 24px;
    background: #fff;
    box-shadow: var(--shadow);
  }

  body.nav-open .site-nav {
    display: grid;
  }

  .site-nav a {
    padding: 13px 0;
  }

  .donate-link {
    margin-top: 10px;
  }

  .help-grid,
  .mission-grid,
  .news-grid,
  .two-col,
  .contact-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .blog-list article {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .topbar {
    display: none;
  }

  .site-nav {
    inset: 78px 0 auto;
  }

  .brand span {
    display: none;
  }

  .home-hero {
    min-height: 560px;
  }

  .hero-panel {
    margin: 0 18px;
  }

  .actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

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

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
