@font-face {
  font-family: "Atkinson Hyperlegible";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("fonts/atkinson-hyperlegible-latin-400-normal.woff2") format("woff2"),
    url("fonts/atkinson-hyperlegible-latin-400-normal.woff") format("woff");
}

@font-face {
  font-family: "Atkinson Hyperlegible";
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url("fonts/atkinson-hyperlegible-latin-400-italic.woff2") format("woff2"),
    url("fonts/atkinson-hyperlegible-latin-400-italic.woff") format("woff");
}

@font-face {
  font-family: "Atkinson Hyperlegible";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("fonts/atkinson-hyperlegible-latin-700-normal.woff2") format("woff2"),
    url("fonts/atkinson-hyperlegible-latin-700-normal.woff") format("woff");
}

@font-face {
  font-family: "Atkinson Hyperlegible";
  font-style: italic;
  font-weight: 700;
  font-display: swap;
  src: url("fonts/atkinson-hyperlegible-latin-700-italic.woff2") format("woff2"),
    url("fonts/atkinson-hyperlegible-latin-700-italic.woff") format("woff");
}

:root {
  --ink: #293144;
  --ink-900: #232a3a;
  --muted: #5c6781;
  --paper: #fcfaf6;
  --surface: #ffffff;
  --navy: #3b4660;
  --navy-dark: #293144;
  --teal: #2f5a5c;
  --teal-dark: #244748;
  --teal-soft: #4a7270;
  --clay: #a85638;
  --clay-dark: #8d452d;
  --olive: #7a5a16;
  --olive-dark: #4b3e12;
  --gold-soft: #efe6cf;
  --slate: #4a7270;
  --line: #d8ded9;
  --line-soft: #e7eae6;
  --tint: #eef3f1;
  --tint-warm: #f6f1e9;
  --focus: #1f6f72;
  --shadow: 0 8px 24px rgba(41, 49, 68, 0.1);
  --shadow-soft: 0 1px 2px rgba(41, 49, 68, 0.06);
  --radius-sm: 6px;
  --radius: 10px;
  --radius-lg: 16px;
  --font-main: "Atkinson Hyperlegible", Aptos, "Segoe UI", Arial, sans-serif;
  --font-heading: Garamond, "Palatino Linotype", Georgia, serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-main);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.narrow {
  max-width: 820px;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -48px;
  z-index: 20;
  background: var(--ink);
  color: #fff;
  padding: 10px 14px;
  border-radius: 4px;
}

.skip-link:focus {
  top: 12px;
}

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

.topbar {
  background: var(--navy);
  color: #fff;
  font-size: 0.94rem;
}

.topbar .container {
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.topbar a {
  font-weight: 700;
  text-decoration: none;
}

.topbar span {
  overflow-wrap: anywhere;
}

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

.nav {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  color: var(--ink);
  text-decoration: none;
}

.brand img {
  width: clamp(168px, 20vw, 220px);
  height: auto;
  border-radius: 0;
  object-fit: contain;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  line-height: 1.1;
}

.brand small {
  color: var(--muted);
  font-size: 0.78rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a,
.nav-menu-trigger {
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
}

.nav-menu {
  position: relative;
}

.nav-menu-trigger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 40px;
  border: 0;
  background: transparent;
  font-family: inherit;
  line-height: 1.2;
  cursor: pointer;
}

.nav-menu-trigger::after {
  content: "";
  width: 7px;
  height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
}

.nav-links a:not(.button):hover,
.nav-links a[aria-current="page"],
.nav-menu-trigger:hover,
.nav-menu.is-active .nav-menu-trigger {
  color: var(--teal-dark);
}

.nav-links a.button,
.nav-links a.button[aria-current="page"] {
  color: #fff;
}

.nav-submenu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  z-index: 12;
  display: grid;
  min-width: 210px;
  padding: 8px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 4px;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -4px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.nav-submenu a {
  padding: 10px 12px;
  border-radius: 4px;
  white-space: nowrap;
}

.nav-submenu a:hover,
.nav-submenu a[aria-current="page"] {
  background: var(--tint);
}

.nav-menu:hover .nav-submenu,
.nav-menu:focus-within .nav-submenu,
.nav-menu.is-open .nav-submenu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 20px;
  border: 0;
  border-radius: 8px;
  background: var(--teal);
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
}

.button:hover {
  background: var(--teal-dark);
}

.button:disabled {
  cursor: not-allowed;
  opacity: 0.68;
}

.button-small {
  min-height: 40px;
  padding: 9px 14px;
}

.button-secondary {
  background: #fff;
  color: var(--teal);
  border: 1px solid var(--teal);
}

.button-secondary:hover {
  background: var(--tint);
  color: var(--navy-dark);
}

.button-light {
  background: #fff;
  color: var(--teal);
}

.button-light:hover {
  background: var(--tint);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #fff;
  padding: 10px;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
}

.hero {
  background:
    linear-gradient(102deg, rgba(35, 42, 58, 0.93) 0%, rgba(35, 42, 58, 0.74) 44%, rgba(36, 71, 72, 0.58) 100%),
    url("assets/building.jpg") center / cover;
  color: #fff;
}

.hero-grid {
  min-height: 640px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 48px;
  align-items: center;
  padding: 92px 0 104px;
}

.hero-card {
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow);
}

.hero-logo {
  width: min(100%, 292px);
  margin: 0 0 18px;
}

.hero h1,
.page-hero h1 {
  margin: 0;
  max-width: 820px;
  font-size: clamp(2.25rem, 1.6rem + 2.6vw, 3.5rem);
  line-height: 1.15;
  letter-spacing: 0;
}

.lead {
  max-width: 720px;
  color: inherit;
  font-size: clamp(1.075rem, 1rem + 0.4vw, 1.2rem);
}

.page-hero .lead,
.section .lead {
  color: var(--muted);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--slate);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #eef3f1;
}

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

.fact-list {
  display: grid;
  gap: 1px;
  margin: 0;
  background: var(--line);
}

.fact-list div {
  padding: 14px 0;
  background: #fff;
}

.fact-list dt {
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 700;
}

.fact-list dd {
  margin: 0;
  font-weight: 800;
}

.section {
  padding: clamp(52px, 7vw, 84px) 0;
}

.section-light {
  background: #fff;
}

.section-tint {
  background: var(--tint);
}

.section-band {
  background: var(--teal);
  color: #fff;
}

.section-band .eyebrow,
.section-band p {
  color: #eef3f1;
}

.split,
.contact-grid,
.media-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
  gap: 48px;
  align-items: start;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 28px;
}

h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: var(--font-heading);
  font-weight: 700;
}

h2 {
  font-size: clamp(1.45rem, 1.2rem + 1vw, 1.9rem);
  line-height: 1.12;
  letter-spacing: 0;
}

h3 {
  font-size: 1.25rem;
  line-height: 1.2;
}

.content-stack {
  display: grid;
  gap: 16px;
}

.text-link {
  color: var(--teal);
  font-weight: 900;
}

.card-grid,
.step-grid,
.support-grid,
.resource-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

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

.service-card,
.step-card,
.support-card,
.resource-card,
.contact-list article,
.contact-form,
.notice,
.schedule-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-soft);
}

.service-card p,
.step-card p,
.support-card p,
.resource-card p,
.contact-list p,
.notice p {
  color: var(--muted);
}

.resource-card {
  display: grid;
  align-content: start;
  gap: 10px;
}

.resource-card h2,
.resource-card h3 {
  margin-bottom: 0;
}

.resource-card-heading {
  display: flex;
  align-items: center;
  gap: 14px;
}

.resource-logo {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: #fff;
  object-fit: contain;
  padding: 6px;
}

.resource-logo-wide {
  width: 96px;
  flex-basis: 96px;
}

.resource-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(41, 49, 68, 0.06);
}

.resource-table {
  width: 100%;
  min-width: 780px;
  border-collapse: collapse;
  font-size: 0.9rem;
  line-height: 1.45;
}

.resource-table th,
.resource-table td {
  padding: 12px 14px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.resource-table thead th {
  background: var(--teal);
  color: #fff;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.resource-table-section th {
  background: var(--tint);
  color: var(--navy-dark);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.resource-table a {
  color: var(--teal);
  font-weight: 900;
}

.resource-table span {
  color: var(--muted);
  font-size: 0.84rem;
}

.resource-card-urgent {
  border-color: rgba(122, 90, 22, 0.42);
  background: #fffaf0;
}

.crisis-notice {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.7fr);
  gap: 24px;
  align-items: center;
  border-color: rgba(168, 86, 56, 0.26);
  background: var(--tint-warm);
}

.crisis-notice h2 {
  margin-bottom: 10px;
}

.crisis-links {
  display: grid;
  gap: 12px;
}

.crisis-links a {
  display: grid;
  gap: 4px;
  padding: 14px 16px;
  border: 1px solid rgba(168, 86, 56, 0.28);
  border-radius: var(--radius-sm);
  background: #fff;
  color: var(--ink);
  text-decoration: none;
}

.crisis-links a:hover {
  border-color: var(--clay);
  box-shadow: var(--shadow-soft);
}

.crisis-links span {
  color: var(--muted);
  font-size: 0.94rem;
}

.card-icon,
.step-card span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 10px;
  background: var(--tint);
  color: var(--teal);
  font-weight: 900;
}

.card-icon-svg svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.stats-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin: 0 0 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
  box-shadow: var(--shadow-soft);
}

.stat-item {
  display: grid;
  gap: 6px;
  min-height: 132px;
  padding: 22px;
  background: #fff;
}

.stat-item strong {
  color: var(--teal-dark);
  font-size: clamp(1.45rem, 1.2rem + 1vw, 2rem);
  line-height: 1.05;
}

.stat-item span {
  color: var(--muted);
}

.stat-item a {
  color: var(--teal);
  font-weight: 900;
}

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

.photo-grid figure {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

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

.photo-grid figcaption {
  padding: 14px 16px;
  color: var(--muted);
  font-weight: 700;
}

.meeting-table td:nth-child(2) {
  white-space: nowrap;
}

.schedule-notes {
  margin-top: 18px;
}

.action-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.action-band h2 {
  max-width: 720px;
  margin-bottom: 0;
}

.page-hero {
  padding: 52px 0 44px;
  background: var(--tint);
  border-bottom: 1px solid var(--line);
}

.support-card.primary {
  background: var(--ink);
  color: #fff;
}

.support-card.primary p {
  color: #eef3f1;
}

.schedule-image {
  width: 100%;
  min-width: 760px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: #fff;
}

.schedule-scroll {
  overflow-x: auto;
  padding-bottom: 8px;
}

.policy-list {
  display: grid;
  gap: 10px;
  padding-left: 1.3rem;
}

.source-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 1.2rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.check-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 1.2rem;
}

.check-list li::marker {
  color: var(--teal);
  font-weight: 900;
}

.board-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.board-list article {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.board-list strong,
.board-list span {
  display: block;
}

.board-list strong {
  color: var(--navy-dark);
}

.board-list span {
  color: var(--muted);
  font-size: 0.94rem;
}

.contact-grid {
  align-items: start;
}

.contact-list {
  display: grid;
  gap: 14px;
}

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

.contact-form label {
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px;
  color: var(--ink);
  font: inherit;
  background: var(--paper);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 3px solid rgba(31, 111, 114, 0.28);
  border-color: var(--teal);
  background: #fff;
}

.report-form p,
.field-note,
.form-note {
  color: var(--muted);
}

.field-note {
  margin-top: -4px;
  font-size: 0.92rem;
}

.form-status {
  min-height: 1.5em;
  margin: 0;
  font-weight: 800;
}

.form-status.is-success {
  color: var(--teal);
}

.form-status.is-error {
  color: #9f2f24;
}

.honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

.daily-email-features {
  margin-top: 18px;
}

.announcement-list {
  margin-top: 28px;
}

.announcement-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: start;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.announcement-item h3 {
  margin-bottom: 8px;
}

.announcement-item p {
  color: var(--muted);
}

.post-meta {
  margin-bottom: 8px;
  color: var(--slate);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.post-status {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 6px 10px;
  border-radius: var(--radius-sm);
  background: var(--tint);
  color: var(--teal);
  font-size: 0.82rem;
  font-weight: 900;
  white-space: nowrap;
}

.qr-card {
  max-width: 300px;
}

.site-footer {
  padding: 40px 0;
  background: var(--ink-900);
  color: #fff;
}

.site-footer p {
  color: #d8d8d8;
}

.site-footer a {
  color: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 24px;
}

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

  .nav-links {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 84px;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    padding: 10px;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

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

  .nav-links a {
    padding: 12px;
  }

  .nav-menu {
    width: 100%;
  }

  .nav-menu-trigger {
    width: 100%;
    justify-content: space-between;
    padding: 12px;
  }

  .nav-submenu {
    position: static;
    display: none;
    min-width: 0;
    padding: 0 0 8px 12px;
    border: 0;
    border-left: 2px solid var(--line);
    border-radius: 0;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    transition: none;
  }

  .nav-submenu a {
    padding: 9px 12px;
    white-space: normal;
  }

  .nav-menu.is-open .nav-submenu {
    display: grid;
    transform: none;
  }

  .hero-grid,
  .split,
  .contact-grid,
  .media-grid,
  .crisis-notice {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    min-height: auto;
  }

  .card-grid,
  .step-grid,
  .support-grid,
  .resource-grid,
  .two-grid,
  .stats-strip,
  .photo-grid,
  .board-list,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .announcement-item {
    grid-template-columns: 1fr;
  }

  .post-status {
    justify-self: start;
    white-space: normal;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100% - 24px, 1120px);
    max-width: calc(100vw - 24px);
  }

  .topbar .container {
    align-items: flex-start;
    flex-direction: column;
    padding: 8px 0;
  }

  .topbar span {
    display: block;
    max-width: 100%;
  }

  .brand small {
    display: none;
  }

  .brand img {
    width: 168px;
  }

  .hero-grid,
  .page-hero,
  .section {
    padding: 48px 0;
  }

  .hero h1,
  .page-hero h1 {
    font-size: 2rem;
    overflow-wrap: break-word;
  }

  .lead {
    font-size: 1.05rem;
  }

  .hero-actions,
  .hero-actions .button,
  .action-band .button {
    width: 100%;
  }

  .action-band {
    align-items: flex-start;
    flex-direction: column;
  }
}

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

.literature-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 54px;
  padding: 13px 15px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: #fff;
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
}

.literature-list a:hover {
  border-color: var(--teal);
  box-shadow: var(--shadow);
}

.literature-list span {
  flex: 0 0 auto;
  padding: 4px 8px;
  border-radius: 999px;
  background: #e9edf4;
  color: var(--navy);
  font-size: 0.76rem;
  font-weight: 900;
}

.literature-list-compact {
  grid-template-columns: 1fr;
}

@media (max-width: 980px) {
  .literature-list {
    grid-template-columns: 1fr;
  }
}

/* Claude design-system implementation layer */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 2px;
}

.topbar {
  background: var(--ink-900);
  color: #d7dce6;
  font-size: 0.82rem;
}

.topbar a {
  color: #fff;
}

.nav {
  min-height: 80px;
}

.brand img {
  width: clamp(178px, 20vw, 230px);
}

.nav-links {
  gap: 2px;
}

.nav-links a:not(.button),
.nav-menu-trigger {
  min-height: 40px;
  padding: 9px 13px;
  border-radius: 7px;
}

.nav-links a:not(.button):hover,
.nav-menu-trigger:hover,
.nav-menu.is-active .nav-menu-trigger {
  background: var(--tint);
}

.nav-links a[aria-current="page"]:not(.button) {
  background: transparent;
  box-shadow: inset 0 -2px 0 var(--teal);
  border-radius: 0;
}

.nav-links a.button {
  background: var(--clay);
  border-radius: 8px;
  margin-left: 8px;
}

.nav-links a.button:hover {
  background: var(--clay-dark);
}

.nav-submenu {
  border-radius: var(--radius);
}

.button {
  border: 1.5px solid transparent;
  line-height: 1;
}

.button-light {
  color: var(--teal-dark);
}

.hero-actions a[href="donate.html"] {
  background: var(--clay);
  color: #fff;
}

.hero-actions a[href="donate.html"]:hover {
  background: var(--clay-dark);
}

.button[href*="paypal.com/donate"] {
  background: var(--clay);
  color: #fff;
}

.button[href*="paypal.com/donate"]:hover {
  background: var(--clay-dark);
}

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

.button-secondary:hover {
  background: var(--tint);
  border-color: var(--teal-soft);
}

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

.hero .lead {
  max-width: 46ch;
  color: #e7ecec;
}

.hero-card {
  align-self: center;
}

.hero-card h2,
.hero-card .fact-list dd {
  color: var(--ink-900);
}

.fact-list {
  background: var(--line-soft);
}

.fact-list div {
  padding: 13px 0;
}

.section-light {
  background: var(--surface);
}

.section-tint {
  background: var(--tint);
}

.section-band {
  background: var(--ink);
}

.section-heading {
  max-width: 760px;
}

.service-card,
.step-card,
.support-card,
.resource-card,
.contact-list article,
.contact-form,
.notice,
.schedule-card,
.announcement-item,
.board-list article,
.literature-list a {
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.service-card:hover,
.resource-card:hover,
.support-card:hover,
.literature-list a:hover {
  border-color: var(--teal-soft);
  box-shadow: var(--shadow);
}

.card-icon,
.step-card span {
  width: 42px;
  height: 42px;
  margin-bottom: 14px;
  font-size: 0.9rem;
}

.support-card.primary {
  background: var(--ink);
}

.support-card.primary .button-light {
  color: var(--teal-dark);
}

.action-band {
  padding: 28px;
  border-radius: var(--radius-lg);
  background: var(--ink);
}

.page-hero h1 {
  max-width: 22ch;
}

.schedule-card {
  padding: 14px;
}

.schedule-image {
  background: #fff;
}

.resource-table-wrap {
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.resource-table thead th {
  background: var(--teal);
}

.resource-table-section th {
  background: var(--tint);
}

.resource-card-urgent {
  border-color: rgba(169, 132, 47, 0.45);
  background: var(--tint-warm);
}

.contact-form,
.notice {
  box-shadow: var(--shadow-soft);
}

.site-footer {
  margin-top: 8px;
}

.footer-grid {
  gap: 28px;
}

@media (max-width: 980px) {
  .nav-links {
    top: 80px;
  }

  .nav-links a.button {
    margin: 6px 0 0;
    justify-content: center;
  }

  .hero-grid {
    gap: 28px;
    padding: 72px 0 64px;
  }

  .hero-card {
    max-width: 560px;
  }
}

@media (max-width: 560px) {
  body {
    font-size: 16px;
  }

  .nav {
    min-height: 74px;
  }

  .nav-links {
    top: 74px;
  }

  .hero-grid {
    padding: 56px 0;
  }

  .hero-card {
    padding: 20px;
  }

  .button,
  .button-small {
    width: 100%;
  }
}
