:root {
  --cream: #f7f0e3;
  --paper: #fffaf1;
  --white: #ffffff;
  --ink: #242321;
  --muted: #69645c;
  --red: #9c352d;
  --red-dark: #70231f;
  --green: #445b49;
  --green-dark: #26392e;
  --wheat: #d9b667;
  --wheat-light: #eedaa9;
  --line: rgba(36, 35, 33, 0.14);
  --shadow: 0 24px 60px rgba(72, 46, 32, 0.12);
  --radius: 22px;
  --container: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 120px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Avenir Next", Avenir, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

body::before {
  content: "";
  position: fixed;
  z-index: -1;
  inset: 0;
  pointer-events: none;
  opacity: 0.16;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(84, 67, 44, 0.18) 1px, transparent 0);
  background-size: 18px 18px;
  mask-image: linear-gradient(to bottom, #000, transparent 70%);
}

::selection {
  background: var(--wheat);
  color: var(--ink);
}

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

img {
  max-width: 100%;
}

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

h1,
h2,
h3 {
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.08;
  letter-spacing: -0.035em;
}

h1 {
  font-size: clamp(3.25rem, 7.5vw, 7.5rem);
}

h2 {
  font-size: clamp(2.25rem, 4.8vw, 4.6rem);
  margin-bottom: 1.25rem;
}

h3 {
  font-size: clamp(1.35rem, 2.1vw, 2rem);
  margin-bottom: 0.7rem;
}

:focus-visible {
  outline: 3px solid var(--wheat);
  outline-offset: 4px;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.section {
  padding: clamp(80px, 9vw, 140px) 0;
}

.soft-section {
  background: var(--cream);
}

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

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  transform: translateY(-150%);
  padding: 10px 16px;
  background: var(--white);
  color: var(--ink);
  border-radius: 8px;
}

.skip-link:focus {
  transform: translateY(0);
}

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

.utility-bar {
  background: var(--green-dark);
  color: #f5ead5;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.utility-inner {
  display: flex;
  justify-content: space-between;
  padding-block: 7px;
}

.header-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  gap: 24px;
}

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

.brand > span:last-child {
  display: flex;
  align-items: baseline;
  gap: 3px;
  font-size: 1.17rem;
  letter-spacing: 0.035em;
}

.brand strong {
  font-weight: 900;
}

.brand em {
  color: var(--red);
  font-style: normal;
  font-weight: 500;
}

.brand-mark {
  position: relative;
  width: 42px;
  height: 42px;
  border: 4px solid var(--red);
  border-radius: 50%;
  background:
    linear-gradient(90deg, transparent 47%, var(--red) 48%, var(--red) 52%, transparent 53%),
    linear-gradient(0deg, transparent 47%, var(--red) 48%, var(--red) 52%, transparent 53%);
}

.brand-mark::before,
.brand-mark::after,
.brand-mark span::before,
.brand-mark span::after {
  content: "";
  position: absolute;
  inset: 45% -4px auto;
  height: 2px;
  background: var(--red);
  transform: rotate(45deg);
}

.brand-mark::after {
  transform: rotate(-45deg);
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 1.45vw, 24px);
  margin-left: auto;
}

.desktop-nav a {
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--ink);
  text-decoration: none;
  white-space: nowrap;
}

.desktop-nav a:hover {
  color: var(--red);
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  padding: 0 26px;
  background: var(--red);
  color: var(--white);
  font: inherit;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  background: var(--red-dark);
  box-shadow: 0 10px 24px rgba(112, 35, 31, 0.2);
}

.button-small {
  min-height: 44px;
  padding-inline: 19px;
  font-size: 0.78rem;
}

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

.button-dark:hover {
  background: #17261d;
}

.button-light {
  background: var(--wheat);
  color: var(--ink);
}

.button-light:hover {
  background: #f0c96e;
}

.button-ghost-light {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.58);
}

.button-ghost-light:hover {
  background: rgba(255, 255, 255, 0.12);
}

.button-disabled {
  background: #b9b2a4;
  color: #403d38;
  cursor: not-allowed;
  pointer-events: none;
}

.mobile-menu {
  display: none;
  margin-left: auto;
}

.mobile-menu summary {
  list-style: none;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 15px;
  font-size: 0.82rem;
  font-weight: 800;
  cursor: pointer;
}

.mobile-menu summary::-webkit-details-marker {
  display: none;
}

.mobile-menu nav {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  display: grid;
  gap: 0;
  padding: 18px 20px 24px;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.mobile-menu nav > a:not(.button) {
  padding: 11px 4px;
  border-bottom: 1px solid var(--line);
  font-weight: 700;
  text-decoration: none;
}

.mobile-menu nav .button {
  margin-top: 16px;
}

.home-hero {
  position: relative;
  min-height: min(760px, calc(100vh - 110px));
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: var(--white);
  background: var(--green-dark);
}

.hero-image,
.story-image,
.photo-card img,
.news-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-image {
  object-position: center 42%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(17, 25, 20, 0.9) 0%, rgba(24, 28, 23, 0.66) 46%, rgba(17, 20, 17, 0.12) 78%),
    linear-gradient(0deg, rgba(18, 23, 18, 0.72) 0%, transparent 45%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: clamp(90px, 14vw, 180px) 0 120px;
}

.hero-content h1 {
  max-width: 880px;
  margin-bottom: 28px;
  color: #fff9ee;
}

.hero-content h1 em {
  color: var(--wheat);
  font-style: italic;
  font-weight: 400;
}

.hero-content > p:not(.eyebrow) {
  max-width: 710px;
  font-size: clamp(1.05rem, 1.8vw, 1.34rem);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.88);
}

.eyebrow {
  margin-bottom: 16px;
  color: var(--red);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow.light {
  color: var(--wheat);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.hero-ribbon {
  position: absolute;
  z-index: 3;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 16px max(20px, calc((100vw - var(--container)) / 2));
  background: var(--red);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.section-heading h2 {
  margin-bottom: 0;
}

.section-heading .section-intro {
  max-width: 680px;
  margin-top: 20px;
  color: var(--muted);
  font-size: 1.08rem;
}

.section-heading.centered {
  max-width: 820px;
  margin-inline: auto;
  text-align: center;
}

.split-heading {
  max-width: none;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: end;
  gap: 8vw;
}

.split-heading h2 {
  max-width: 620px;
}

.split-heading > p {
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 1.08rem;
}

.three-grid,
.four-grid,
.two-column {
  display: grid;
  gap: 24px;
}

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

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

.two-column {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  gap: clamp(50px, 7vw, 100px);
}

.mission-cards {
  counter-reset: card;
}

.mission-card {
  position: relative;
  min-height: 300px;
  padding: 42px 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.6);
  overflow: hidden;
}

.mission-card::after {
  content: "";
  position: absolute;
  right: -70px;
  bottom: -70px;
  width: 180px;
  height: 180px;
  border: 26px solid var(--cream);
  border-radius: 50%;
}

.mission-card:nth-child(2) {
  background: var(--green);
  color: var(--white);
  transform: translateY(20px);
}

.mission-card:nth-child(2)::after {
  border-color: rgba(255, 255, 255, 0.08);
}

.mission-card:nth-child(3) {
  background: var(--wheat-light);
}

.mission-card h3 {
  margin-top: 54px;
  font-size: 2.25rem;
}

.mission-card p {
  max-width: 290px;
  position: relative;
  z-index: 1;
}

.card-index {
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.15em;
}

.event-panel-section {
  padding-block: 70px;
}

.event-panel {
  display: grid;
  grid-template-columns: 160px 1fr auto;
  align-items: center;
  gap: 42px;
  padding: 32px;
  background: var(--wheat);
  border-radius: calc(var(--radius) + 8px);
  box-shadow: var(--shadow);
}

.event-panel h2 {
  font-size: clamp(2rem, 4vw, 3.6rem);
  margin-bottom: 10px;
}

.event-panel p {
  margin-bottom: 14px;
}

.event-date {
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border: 2px solid rgba(36, 35, 33, 0.2);
  border-radius: 50%;
  text-align: center;
}

.event-date span,
.event-date small {
  font-size: 0.67rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.event-date strong {
  font-family: Georgia, serif;
  font-size: 2.3rem;
}

.detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.detail-tags span {
  padding: 7px 12px;
  border: 1px solid rgba(36, 35, 33, 0.18);
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.05em;
}

.experience-section {
  background: linear-gradient(180deg, var(--paper), var(--cream));
}

.experience-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
}

.experience-card {
  min-height: 310px;
  padding: 32px;
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: var(--white);
  background: var(--green);
}

.experience-card:nth-child(1) {
  grid-column: span 7;
  background:
    linear-gradient(rgba(25, 41, 31, 0.35), rgba(25, 41, 31, 0.82)),
    url("/images/hope-indiana-road.webp") center/cover;
}

.experience-card:nth-child(2) {
  grid-column: span 5;
  background: var(--red);
}

.experience-card:nth-child(3) {
  grid-column: span 5;
  background: var(--wheat);
  color: var(--ink);
}

.experience-card:nth-child(4) {
  grid-column: span 7;
  background: var(--green-dark);
}

.experience-card span {
  margin-bottom: auto;
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.experience-card h3 {
  max-width: 450px;
}

.experience-card p {
  max-width: 510px;
  margin: 0;
}

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

.light-heading .eyebrow,
.impact-band .section-heading .eyebrow {
  color: var(--wheat);
}

.light-heading > p,
.impact-band .section-heading .section-intro {
  color: rgba(255, 255, 255, 0.7);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  margin: 40px 0 35px;
}

.stat-card {
  min-height: 180px;
  padding: 34px 26px;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.stat-card:last-child {
  border-right: 0;
}

.stat-card strong {
  color: var(--wheat);
  font-family: Georgia, serif;
  font-size: clamp(2rem, 4vw, 4rem);
  letter-spacing: -0.04em;
}

.stat-card span {
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.82rem;
  font-weight: 700;
}

.data-note {
  color: rgba(255, 255, 255, 0.68);
}

.text-link {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  color: var(--red);
  font-weight: 900;
  text-decoration: none;
}

.text-link span {
  transition: transform 180ms ease;
}

.text-link:hover span {
  transform: translateX(5px);
}

.light-link {
  color: var(--wheat);
}

.action-card {
  position: relative;
  min-height: 265px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, border 180ms ease;
}

.action-card:hover {
  transform: translateY(-7px);
  border-color: var(--red);
  box-shadow: var(--shadow);
}

.action-card > span {
  color: var(--red);
  font-size: 0.75rem;
  font-weight: 900;
}

.action-card h3 {
  margin-top: 65px;
}

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

.action-card b {
  position: absolute;
  right: 26px;
  bottom: 25px;
  color: var(--red);
}

.community-story {
  padding-top: 40px;
}

.story-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: clamp(45px, 8vw, 110px);
}

.story-image-wrap {
  position: relative;
  min-height: 600px;
  border-radius: 280px 280px 32px 32px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.image-note {
  position: absolute;
  right: 24px;
  bottom: 24px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255, 250, 241, 0.9);
  color: var(--ink);
  font-size: 0.74rem;
  font-weight: 800;
}

.story-copy p:not(.eyebrow) {
  max-width: 520px;
  color: var(--muted);
  font-size: 1.12rem;
}

.signup-section {
  padding: clamp(75px, 8vw, 120px) 0;
  background: var(--red-dark);
  color: var(--white);
}

.signup-grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 8vw;
}

.signup-grid h2 {
  color: var(--wheat);
}

.signup-grid > div > p:last-child {
  color: rgba(255, 255, 255, 0.76);
}

.newsletter-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

form label {
  display: grid;
  gap: 7px;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.04em;
}

input,
select,
textarea {
  width: 100%;
  min-height: 50px;
  border: 1px solid rgba(36, 35, 33, 0.22);
  border-radius: 10px;
  padding: 11px 13px;
  background: var(--white);
  color: var(--ink);
  font: inherit;
  font-size: 0.94rem;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--red);
  outline: 3px solid rgba(156, 53, 45, 0.17);
}

.newsletter-form input,
.newsletter-form select {
  background: rgba(255, 255, 255, 0.95);
}

.check-field {
  grid-column: 1 / -1;
  grid-template-columns: auto 1fr;
  align-items: start;
  font-size: 0.73rem;
  font-weight: 500;
  letter-spacing: 0;
}

.check-field input {
  width: 18px;
  min-height: 18px;
  margin-top: 4px;
}

.newsletter-form .button {
  justify-self: start;
}

.form-status {
  grid-column: 1 / -1;
  min-height: 1.4em;
  margin: 0;
  font-size: 0.8rem;
}

.honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(75px, 8vw, 130px) 0;
  background: var(--cream);
  border-bottom: 1px solid var(--line);
}

.page-hero::after {
  content: "";
  position: absolute;
  width: min(48vw, 680px);
  height: min(48vw, 680px);
  right: -12vw;
  top: -75%;
  border: 90px solid rgba(217, 182, 103, 0.35);
  border-radius: 50%;
}

.page-hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

.page-hero h1 {
  max-width: 900px;
  margin: 0 0 20px;
  font-size: clamp(3.2rem, 6.7vw, 6.8rem);
}

.page-hero .lede {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
  font-size: 1.15rem;
}

.route-stamp {
  width: 150px;
  aspect-ratio: 1;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border: 2px solid var(--red);
  border-radius: 50%;
  color: var(--red);
  transform: rotate(8deg);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.route-stamp strong {
  font-family: Georgia, serif;
  font-size: 2.35rem;
  line-height: 1;
}

.large-copy {
  font-family: Georgia, serif;
  font-size: clamp(1.35rem, 2.4vw, 2.1rem);
  line-height: 1.42;
  letter-spacing: -0.02em;
}

.photo-card {
  position: relative;
  min-height: 510px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.card {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.card p:last-child {
  margin-bottom: 0;
}

.value-grid .card {
  border-top: 4px solid var(--green);
}

.timeline {
  position: relative;
  padding-left: 30px;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 5px;
  top: 7px;
  bottom: 7px;
  width: 2px;
  background: var(--wheat);
}

.timeline-item {
  position: relative;
  padding: 0 0 30px 20px;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: -30px;
  top: 7px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 6px var(--paper);
}

.timeline-item strong {
  color: var(--red);
  font-size: 0.8rem;
  letter-spacing: 0.07em;
}

.timeline-item p {
  margin: 5px 0 0;
}

.dark-section .section-heading .eyebrow {
  color: var(--wheat);
}

.dark-card {
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.05);
}

.dark-card a {
  color: var(--wheat);
}

.dark-card p:last-child {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0;
}

.kicker {
  color: var(--red);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.dark-card .kicker {
  color: var(--wheat);
}

.transparency-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr) auto;
  align-items: center;
  gap: 22px;
  margin-top: 40px;
  padding: 28px;
  border-radius: 16px;
  background: var(--wheat);
  color: var(--ink);
}

.transparency-strip span {
  display: flex;
  flex-direction: column;
  font-size: 0.7rem;
  text-transform: uppercase;
}

.transparency-strip strong {
  font-size: 0.9rem;
}

.transparency-strip a {
  color: var(--red-dark);
  font-weight: 900;
}

.event-overview {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 7vw;
  margin-bottom: 35px;
}

.event-facts {
  border-top: 1px solid var(--line);
}

.event-facts span {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 15px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.78rem;
  font-weight: 800;
}

.event-facts strong {
  font-size: 0.84rem;
  color: var(--red);
}

.notice {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin: 25px 0;
  padding: 18px 20px;
  border: 1px solid rgba(156, 53, 45, 0.26);
  border-radius: 14px;
  background: rgba(156, 53, 45, 0.06);
}

.notice > span {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  font-family: Georgia, serif;
  font-weight: 900;
}

.notice p {
  margin: 0;
}

.route-card {
  display: grid;
  grid-template-columns: 0.55fr 1.45fr;
  gap: 50px;
  margin-top: 35px;
}

.route-details {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 24px;
  margin: 0;
}

.route-details div {
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
}

.route-details dt {
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: capitalize;
}

.route-details dd {
  margin: 4px 0 0;
  color: var(--red);
  font-weight: 800;
}

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

.check-list li {
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}

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

.accordion-list details {
  border-bottom: 1px solid rgba(36, 35, 33, 0.2);
}

.accordion-list summary {
  padding: 20px 0;
  font-weight: 800;
  cursor: pointer;
}

.accordion-list p {
  color: var(--red-dark);
  font-size: 0.82rem;
}

.detail-tags.roomy {
  gap: 13px;
}

.detail-tags.roomy span {
  padding: 12px 17px;
  font-size: 0.78rem;
}

.placeholder-card > span {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  margin-bottom: 60px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--red);
  font-size: 1.5rem;
}

.report-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 25px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.report-card h3,
.report-card p {
  margin-bottom: 5px;
}

.report-icon {
  width: 68px;
  height: 82px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: var(--red);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  box-shadow: 8px 8px 0 var(--wheat);
}

.role-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.role-card {
  min-height: 260px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.role-card:nth-child(2),
.role-card:nth-child(6) {
  background: var(--green);
  color: var(--white);
}

.role-card:nth-child(4) {
  background: var(--wheat);
}

.role-card > span {
  font-size: 0.7rem;
  font-weight: 900;
}

.role-card h3 {
  margin-top: 60px;
}

.form-layout {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 7vw;
  align-items: start;
}

.stack-form {
  display: grid;
  gap: 18px;
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.stack-form .button {
  justify-self: start;
}

.mini-contact {
  display: flex;
  flex-direction: column;
  padding-top: 25px;
  border-top: 1px solid var(--line);
}

.mini-contact span {
  color: var(--muted);
  font-size: 0.76rem;
}

.mini-contact a {
  color: var(--red);
  font-size: 1.2rem;
  font-weight: 800;
}

.sponsor-packet {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}

.sponsor-packet h3 {
  margin: 10px 0 0;
}

.sponsor-levels {
  display: grid;
  gap: 14px;
  margin-bottom: 32px;
}

.sponsor-level {
  display: grid;
  grid-template-columns: 50px 0.8fr 1.4fr auto;
  align-items: center;
  gap: 25px;
  padding: 25px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--white);
}

.sponsor-level > span {
  color: var(--red);
  font-weight: 900;
}

.sponsor-level h3,
.sponsor-level p {
  margin-bottom: 3px;
}

.sponsor-level ul {
  columns: 2;
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
  font-size: 0.75rem;
}

.sponsor-level a {
  color: var(--red);
  font-size: 0.8rem;
  font-weight: 900;
}

.news-feature {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 6vw;
  margin-bottom: 50px;
}

.news-photo {
  position: relative;
  min-height: 460px;
  border-radius: var(--radius);
  overflow: hidden;
}

.news-feature h2 {
  font-size: clamp(2.2rem, 4vw, 4rem);
}

.news-grid small,
.news-category {
  color: var(--red);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.news-grid h3 {
  margin-top: 42px;
}

.contact-card {
  padding: 28px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.contact-card span {
  color: var(--muted);
  font-size: 0.75rem;
}

.contact-name-list {
  display: grid;
  gap: 2px;
  margin: 8px 0 12px;
}

.contact-name-list .contact-name {
  color: inherit;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 2.1vw, 2rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.035em;
}

.footer-contacts {
  display: grid;
  margin-bottom: 4px;
}

.footer-contacts .contact-name {
  font-size: 0.84rem;
}

.contact-card h3 {
  margin: 8px 0;
}

.contact-card a {
  color: var(--red);
  font-weight: 800;
}

.donation-panel {
  padding: 40px;
  border-radius: var(--radius);
  background: var(--green-dark);
  color: var(--white);
  box-shadow: var(--shadow);
}

.donation-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 50px;
}

.donation-tabs span {
  padding: 8px 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 800;
}

.donation-tabs span:first-child {
  background: var(--wheat);
  color: var(--ink);
}

.donation-panel h3 {
  color: var(--wheat);
}

.legal-giving {
  max-width: 850px;
}

.legal-giving h2 {
  color: var(--wheat);
}

.legal-giving p {
  color: rgba(255, 255, 255, 0.78);
}

.policy-layout {
  display: grid;
  grid-template-columns: 0.35fr 1fr;
  gap: 8vw;
  align-items: start;
}

.policy-layout aside {
  position: sticky;
  top: 140px;
  padding: 25px;
  border-left: 4px solid var(--wheat);
  background: var(--cream);
}

.prose {
  max-width: 760px;
}

.prose h2 {
  margin: 55px 0 18px;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.prose h2:first-child {
  margin-top: 0;
}

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

.transparency-table {
  border-top: 2px solid var(--ink);
}

.transparency-table > div {
  display: grid;
  grid-template-columns: 0.65fr 1.35fr;
  gap: 30px;
  padding: 18px 10px;
  border-bottom: 1px solid var(--line);
}

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

.transparency-table strong {
  font-size: 0.9rem;
}

.document-list {
  border-top: 1px solid var(--line);
}

.document-list div {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.document-list strong {
  color: var(--red);
  font-size: 0.74rem;
}

.checklist-groups {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 42px;
}

.checklist-group h2 {
  font-size: 1.8rem;
}

.checklist-group ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.checklist-group li {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 8px;
  padding: 9px 0;
  border-bottom: 1px solid var(--line);
}

.checklist-group li span {
  color: var(--red);
  font-size: 1.1rem;
}

.launch-contact {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 35px;
  padding: 25px;
  border-radius: 16px;
  background: var(--wheat);
}

.launch-contact p {
  margin: 0 auto 0 0;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
}

.launch-contact a {
  color: var(--red-dark);
  font-weight: 800;
}

.site-footer {
  padding: 70px 0 25px;
  background: #1d2a22;
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 0.7fr 0.9fr 1fr;
  gap: 50px;
}

.site-footer .brand {
  color: var(--white);
  margin-bottom: 24px;
}

.footer-brand > p {
  max-width: 360px;
  color: rgba(255, 255, 255, 0.68);
}

.footer-brand .photo-credit {
  max-width: 420px;
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.68rem;
}

.footer-legal {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.05em;
}

.site-footer h2 {
  margin-bottom: 18px;
  color: var(--wheat);
  font-family: inherit;
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  gap: 8px;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.82);
}

.footer-links a {
  text-decoration: none;
  font-size: 0.84rem;
}

.site-footer p {
  margin-bottom: 8px;
  font-size: 0.84rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 60px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.72rem;
}

@media (max-width: 1080px) {
  .desktop-nav {
    display: none;
  }

  .header-cta {
    margin-left: auto;
  }

  .mobile-menu {
    display: block;
    margin-left: 0;
  }

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

  .event-panel {
    grid-template-columns: 130px 1fr;
  }

  .event-panel > .button {
    grid-column: 2;
    justify-self: start;
  }

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

  .transparency-strip a {
    grid-column: 1 / -1;
  }

  .sponsor-level {
    grid-template-columns: 40px 1fr 1.5fr;
  }

  .sponsor-level a {
    grid-column: 2 / -1;
  }

  .footer-grid {
    grid-template-columns: 1.4fr repeat(3, 1fr);
    gap: 30px;
  }
}

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

  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .utility-inner span:last-child,
  .header-cta {
    display: none;
  }

  .header-inner {
    min-height: 72px;
  }

  .mobile-menu {
    margin-left: auto;
  }

  .hero-content {
    padding-bottom: 140px;
  }

  .hero-overlay {
    background: linear-gradient(90deg, rgba(17, 25, 20, 0.88), rgba(17, 25, 20, 0.38));
  }

  .hero-ribbon span:last-child {
    display: none;
  }

  .split-heading,
  .two-column,
  .story-grid,
  .signup-grid,
  .form-layout,
  .event-overview,
  .news-feature,
  .policy-layout {
    grid-template-columns: 1fr;
  }

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

  .mission-card:nth-child(2) {
    transform: none;
  }

  .event-panel {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .event-date {
    width: 130px;
  }

  .event-panel > .button {
    grid-column: auto;
  }

  .experience-card:nth-child(n) {
    grid-column: 1 / -1;
  }

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

  .stat-card:nth-child(2) {
    border-right: 0;
  }

  .stat-card:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }

  .story-image-wrap {
    min-height: 480px;
  }

  .page-hero-inner {
    align-items: flex-end;
  }

  .route-stamp {
    width: 100px;
  }

  .route-card {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .report-card {
    grid-template-columns: auto 1fr;
  }

  .report-card .button {
    grid-column: 1 / -1;
    justify-self: start;
  }

  .sponsor-level {
    grid-template-columns: 35px 1fr;
  }

  .sponsor-level ul,
  .sponsor-level a {
    grid-column: 2;
  }

  .policy-layout aside {
    position: static;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 560px) {
  .section {
    padding-block: 74px;
  }

  .brand > span:last-child {
    font-size: 1rem;
  }

  .brand-mark {
    width: 36px;
    height: 36px;
  }

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

  .hero-content h1 {
    font-size: clamp(3.1rem, 16vw, 5rem);
  }

  .button-row .button {
    width: 100%;
  }

  .four-grid,
  .role-grid,
  .newsletter-form,
  .form-row,
  .checklist-groups {
    grid-template-columns: 1fr;
  }

  .event-panel {
    padding: 23px;
  }

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

  .stat-card {
    min-height: 140px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }

  .page-hero {
    padding-block: 65px;
  }

  .page-hero-inner {
    display: block;
  }

  .route-stamp {
    display: none;
  }

  .route-details {
    grid-template-columns: 1fr;
  }

  .transparency-strip {
    grid-template-columns: 1fr;
  }

  .transparency-strip a {
    grid-column: auto;
  }

  .report-card {
    grid-template-columns: 1fr;
  }

  .sponsor-level ul {
    columns: 1;
  }

  .transparency-table > div {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .launch-contact {
    align-items: flex-start;
    flex-direction: column;
  }

  .launch-contact p {
    margin: 0;
  }

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

  .footer-brand {
    grid-column: auto;
  }

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

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
