:root {
  --ink: #172127;
  --muted: #5f6d70;
  --paper: #fbf8f1;
  --white: #ffffff;
  --red: #b7111f;
  --red-dark: #820b15;
  --teal: #0e6264;
  --gold: #c79b35;
  --line: rgba(23, 33, 39, 0.16);
  --shadow: 0 18px 44px rgba(23, 33, 39, 0.16);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(23, 33, 39, 0.9);
  color: var(--white);
  backdrop-filter: blur(18px);
}

.nav-wrap {
  width: min(var(--max), calc(100% - 32px));
  min-height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 800;
  line-height: 1.05;
}

.brand-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  font-size: 22px;
  transform: rotate(-45deg);
}

.brand-text {
  max-width: 220px;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  background: transparent;
  color: var(--white);
  font-size: 24px;
  cursor: pointer;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 0.94rem;
}

.site-nav a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.83);
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--white);
}

.nav-cta {
  padding: 9px 15px;
  border-radius: 8px;
  background: var(--red);
  color: var(--white) !important;
  font-weight: 700;
}

.hero {
  min-height: 82svh;
  display: grid;
  align-items: end;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(10, 17, 22, 0.88), rgba(10, 17, 22, 0.5) 48%, rgba(10, 17, 22, 0.2)),
    var(--hero-image) center / cover no-repeat;
}

.home-hero {
  --hero-image: url("img/hero-clean-full-art.jpg");
  background-position: center;
}

.hero-content {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: 120px 0 86px;
}

.eyebrow {
  margin: 0 0 14px;
  color: #8b6400;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}

.hero .eyebrow,
.page-hero .eyebrow,
.dark-band .eyebrow {
  color: #f1cd68;
}

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

h1 {
  max-width: 840px;
  font-size: clamp(3rem, 9vw, 6.8rem);
}

.hero p {
  max-width: 680px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.08rem, 2vw, 1.32rem);
}

.hero-actions,
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 800;
  line-height: 1.15;
}

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

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

.button.outline {
  border-color: rgba(255, 255, 255, 0.6);
  color: var(--white);
}

.button.dark-outline {
  border-color: var(--line);
  color: var(--ink);
}

.section {
  padding: 84px 0;
}

.section.tight {
  padding: 56px 0;
}

.band {
  background: var(--white);
}

.dark-band {
  background: var(--ink);
  color: var(--white);
}

.wrap {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
}

.section-head {
  max-width: 760px;
  margin-bottom: 36px;
}

.section-head.center {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-head h2,
.split h2 {
  font-size: clamp(2rem, 5vw, 4rem);
}

.section-head p,
.lead {
  color: var(--muted);
  font-size: 1.13rem;
}

.dark-band .section-head p,
.dark-band .lead {
  color: rgba(255, 255, 255, 0.76);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
}

.split.reverse {
  grid-template-columns: minmax(280px, 0.95fr) minmax(0, 1.05fr);
}

.media-frame {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
  background: #dde5e5;
}

.media-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-frame.contain {
  display: grid;
  place-items: center;
  background: #ffffff;
}

.media-frame.contain img {
  width: 100%;
  height: auto;
  max-height: 100%;
  object-fit: contain;
}

.portrait {
  aspect-ratio: 4 / 5;
}

.landscape {
  aspect-ratio: 16 / 10;
}

.wide {
  aspect-ratio: 16 / 7;
}

.kindness-graphic {
  aspect-ratio: 2.2 / 1;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 28px;
}

.stat {
  padding: 18px;
  border-top: 3px solid var(--gold);
  background: rgba(255, 255, 255, 0.78);
}

.stat strong {
  display: block;
  font-size: 1.7rem;
  line-height: 1;
}

.stat span {
  color: var(--muted);
  font-size: 0.9rem;
}

.grid {
  display: grid;
  gap: 18px;
}

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

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

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

.card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  overflow: hidden;
}

.card-body {
  padding: 22px;
}

.card h3 {
  margin-bottom: 9px;
  font-size: 1.25rem;
}

.card p {
  margin: 0;
  color: var(--muted);
}

.card .meta {
  margin-bottom: 10px;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.story-card {
  display: flex;
  min-height: 225px;
  flex-direction: column;
}

.story-card .card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
}

.story-card p:last-child {
  margin-top: auto;
  padding-top: 18px;
  color: var(--teal);
  font-weight: 800;
}

.image-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.video-card video {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #071015;
  object-fit: cover;
}

.archive-note {
  margin-top: 28px;
  padding: 20px 22px;
  border-left: 4px solid var(--gold);
  background: rgba(255, 255, 255, 0.78);
  color: var(--muted);
}

.quote-band {
  padding: 54px 0;
  background: var(--teal);
  color: var(--white);
}

.quote-band blockquote {
  width: min(900px, calc(100% - 32px));
  margin: 0 auto;
  font-size: clamp(1.45rem, 3vw, 2.7rem);
  line-height: 1.18;
  font-weight: 800;
}

.quote-band cite {
  display: block;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1rem;
  font-style: normal;
  font-weight: 600;
}

.list {
  display: grid;
  gap: 14px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.list li {
  padding: 16px 18px;
  border-left: 4px solid var(--red);
  background: rgba(255, 255, 255, 0.74);
}

.page-hero {
  padding: 112px 0 74px;
  background: var(--ink);
  color: var(--white);
}

.page-hero .wrap {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: clamp(26px, 6vw, 72px);
  align-items: center;
}

.page-hero h1 {
  font-size: clamp(2.7rem, 7vw, 5.8rem);
}

.page-hero p {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.17rem;
}

.mini-gallery {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 12px;
}

.mini-gallery img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  border-radius: 8px;
  object-fit: cover;
}

.mini-gallery img:first-child {
  grid-row: span 2;
}

.contact-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  padding: 30px;
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.contact-box p {
  margin: 0 0 12px;
}

.site-footer {
  padding: 42px 0;
  background: #10191e;
  color: rgba(255, 255, 255, 0.74);
}

.footer-wrap {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 24px;
}

.footer-wrap a {
  color: var(--white);
}

@media (max-width: 860px) {
  .nav-toggle {
    display: grid;
    place-items: center;
  }

  .site-nav {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 72px;
    display: none;
    padding: 18px;
    border-radius: 8px;
    background: #10191e;
    box-shadow: var(--shadow);
    flex-direction: column;
    align-items: stretch;
  }

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

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

  .split,
  .split.reverse,
  .page-hero .wrap,
  .contact-box {
    grid-template-columns: 1fr;
  }

  .split.reverse .media-frame {
    order: -1;
  }

  .grid.three,
  .grid.two,
  .grid.four,
  .stats {
    grid-template-columns: 1fr;
  }

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

  .mini-gallery img:first-child {
    grid-row: auto;
  }

  .hero {
    min-height: 78svh;
    background:
      linear-gradient(0deg, rgba(10, 17, 22, 0.88), rgba(10, 17, 22, 0.4)),
      var(--hero-image) center / cover no-repeat;
  }

  .home-hero {
    --hero-image: url("img/hero-clean-full-art-mobile.jpg");
    background-position: center;
  }

  .hero-content {
    padding: 96px 0 56px;
  }

  .section {
    padding: 64px 0;
  }

  .footer-wrap {
    flex-direction: column;
  }
}
