:root {
  --orange: #f89820;
  --gold: #ffbd00;
  --ink: #333333;
  --muted: #686868;
  --paper: #ffffff;
  --soft: #fff7ec;
  --line: #e6e0d9;
  --max: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.65;
}
a { color: var(--orange); }
a:hover, a:focus-visible { color: #b46600; }
img { display: block; max-width: 100%; height: auto; }
.skip-link {
  position: absolute;
  left: -9999px;
  top: 12px;
  z-index: 100;
  padding: 10px 16px;
  background: var(--ink);
  color: #fff;
}
.skip-link:focus { left: 12px; }
.site-header {
  position: relative;
  z-index: 10;
  background: #fff;
  border-bottom: 1px solid rgba(248, 152, 32, .12);
}
.header-inner {
  width: min(100% - 40px, var(--max));
  min-height: 152px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.brand { display: inline-flex; align-items: center; flex: 0 0 auto; }
.brand img { width: 220px; height: auto; }
.site-nav ul {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(14px, 2.2vw, 34px);
  padding: 0;
  margin: 0;
  list-style: none;
}
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  color: var(--orange);
  background: #fff;
  border: 0;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}
.site-nav a {
  color: var(--orange);
  font-family: "Arial Narrow", "Roboto Condensed", Arial, sans-serif;
  font-size: clamp(15px, 1.55vw, 24px);
  font-weight: 800;
  line-height: 1.1;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
}
.site-nav a:hover, .site-nav a:focus-visible { color: #b46600; }
.donate-link {
  padding: 17px 26px;
  color: #fff !important;
  background: var(--orange);
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0,0,0,.18);
}
.donate-link:hover, .donate-link:focus-visible { background: #de7d09; }
.hero {
  position: relative;
  min-height: min(720px, calc(100vh - 152px));
  display: grid;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
  background: #222 url("/_assets/hero-support.webp") center 46% / cover no-repeat;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(0, 0, 0, .46);
}
.hero::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 34px;
  z-index: 1;
  background: #fff;
  clip-path: polygon(0 35%, 7% 52%, 14% 43%, 22% 56%, 31% 42%, 40% 57%, 50% 45%, 60% 54%, 69% 39%, 78% 54%, 87% 42%, 94% 52%, 100% 38%, 100% 100%, 0 100%);
}
.hero-copy {
  width: min(100% - 40px, 1120px);
  padding: 90px 0 120px;
  color: #fff;
  text-align: center;
}
.hero h1, .page-hero h1 {
  max-width: 1100px;
  margin: 0 auto 18px;
  color: #fff;
  font-family: "Arial Narrow", "Roboto Condensed", Arial, sans-serif;
  font-size: clamp(44px, 6vw, 88px);
  font-weight: 900;
  line-height: .98;
  text-shadow: 3px 3px 0 var(--orange);
  text-transform: none;
}
.hero p {
  margin: 0 auto 34px;
  color: #fff;
  font-family: "Arial Narrow", "Roboto Condensed", Arial, sans-serif;
  font-size: clamp(24px, 3vw, 44px);
  line-height: 1.1;
  text-shadow: 2px 2px 0 var(--orange);
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  min-height: 58px;
  padding: 15px 28px;
  color: #fff;
  background: var(--orange);
  border: 2px solid var(--orange);
  border-radius: 3px;
  font-weight: 800;
  letter-spacing: .04em;
  text-decoration: none;
  text-transform: uppercase;
}
.button:hover, .button:focus-visible { color: #fff; background: #d97800; border-color: #d97800; }
.button-light { color: var(--orange); background: #fff; border-color: #fff; }
.button-light:hover, .button-light:focus-visible { color: #fff; background: transparent; }
.page-hero {
  position: relative;
  min-height: 330px;
  display: grid;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
  background: #333 url("/_assets/hero-support.webp") center 48% / cover no-repeat;
}
.page-hero::before { content: ""; position: absolute; inset: 0; z-index: -1; background: rgba(0,0,0,.48); }
.page-hero::after { content: ""; position: absolute; right: 0; bottom: -1px; left: 0; height: 24px; background: #fff; clip-path: polygon(0 35%, 9% 55%, 18% 39%, 30% 55%, 42% 39%, 54% 55%, 67% 39%, 80% 55%, 91% 40%, 100% 55%, 100% 100%, 0 100%); }
.page-hero .hero-copy { padding: 64px 0 76px; }
.page-hero h1 { font-size: clamp(42px, 5vw, 72px); }
.breadcrumbs {
  width: min(100% - 40px, var(--max));
  margin: 0 auto;
  padding: 20px 0 0;
  color: var(--muted);
  font-size: .92rem;
}
.breadcrumbs a { text-decoration: none; }
.content {
  width: min(100% - 40px, 980px);
  margin: 0 auto;
  padding: 18px 0 80px;
}
.content h2 {
  margin: 44px 0 12px;
  color: var(--orange);
  font-family: "Arial Narrow", "Roboto Condensed", Arial, sans-serif;
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.1;
}
.content h3 { margin: 28px 0 8px; color: #8b570e; font-size: 1.35rem; }
.content p { max-width: 78ch; margin: 0 0 18px; }
.content ul { max-width: 78ch; padding-left: 24px; }
.content li { margin-bottom: 8px; }
.content figure { margin: 28px 0; }
.content figure img { width: 100%; max-height: 480px; object-fit: cover; }
.content figcaption { padding-top: 8px; color: var(--muted); font-size: .9rem; }
.info-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin: 28px 0 42px; }
.info-card { padding: 24px; background: var(--soft); border-top: 5px solid var(--orange); }
.info-card h2, .info-card h3 {
  margin: 0 0 8px;
  color: #8b570e;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1.35rem;
  line-height: 1.2;
}
.data-table { width: 100%; margin: 28px 0; border-collapse: collapse; }
.data-table th, .data-table td { padding: 12px 14px; border: 1px solid var(--line); text-align: left; vertical-align: top; }
.data-table th { color: #fff; background: var(--orange); }
.related { margin-top: 50px; padding-top: 28px; border-top: 1px solid var(--line); }
.related ul { columns: 2; }
.site-footer { padding: 52px 0 18px; color: #fff; background: #333; }
.footer-grid { width: min(100% - 40px, var(--max)); margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 34px; }
.site-footer h2 { margin: 0 0 12px; color: var(--orange); font-family: "Arial Narrow", "Roboto Condensed", Arial, sans-serif; font-size: 1.35rem; text-transform: uppercase; }
.site-footer p { margin: 0 0 8px; }
.site-footer a { color: #fff; }
.footer-bottom { width: min(100% - 40px, var(--max)); margin: 30px auto 0; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.25); font-size: .9rem; }
@media (max-width: 980px) {
  .header-inner { min-height: 120px; }
  .brand img { width: 190px; }
  .site-nav ul { gap: 14px; }
  .site-nav a { font-size: 14px; }
  .donate-link { padding: 13px 17px; }
}
@media (max-width: 760px) {
  .header-inner { min-height: 106px; width: min(100% - 28px, var(--max)); align-items: center; }
  .brand img { width: 160px; }
  .nav-toggle { display: inline-flex; align-items: center; justify-content: center; }
  .site-nav { position: absolute; top: 100%; right: 14px; display: none; min-width: 220px; padding: 14px 18px; background: #fff; border-top: 3px solid var(--orange); box-shadow: 0 5px 18px rgba(0,0,0,.16); }
  .site-nav.is-open { display: block; }
  .site-nav ul { flex-direction: column; align-items: flex-end; gap: 16px; }
  .site-nav a { font-size: 15px; }
  .donate-link { padding: 10px 12px; }
  .hero { min-height: 540px; }
  .hero-copy { width: min(100% - 28px, 1120px); padding: 78px 0 110px; }
  .page-hero { min-height: 270px; }
  .content, .breadcrumbs { width: min(100% - 28px, var(--max)); }
  .info-grid, .footer-grid { grid-template-columns: 1fr; }
  .related ul { columns: 1; }
}
