:root {
  --cream: #fbf3e8;
  --cream-2: #f6eadb;
  --paper: #fffaf2;
  --burgundy: #6b100b;
  --burgundy-deep: #360605;
  --burgundy-soft: #7f1511;
  --gold: #d8a24a;
  --gold-deep: #b98528;
  --ink: #2b1712;
  --muted: #6c5950;
  --blue: #8ea7b6;
  --line: rgba(126, 71, 39, 0.34);
  --shadow: 0 20px 48px rgba(57, 16, 9, 0.16);
  --serif: "Cormorant Garamond", "Libre Baskerville", Georgia, serif;
  --sans: "Nunito Sans", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  min-height: 106px;
  background: rgba(251, 243, 232, 0.98);
  border-bottom: 1px solid rgba(113, 16, 11, 0.08);
}

.nav-wrap {
  width: min(100%, 1600px);
  min-height: 106px;
  margin: 0 auto;
  padding: 0 clamp(34px, 4.1vw, 62px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: flex;
  align-items: center;
  flex: 0 0 330px;
  height: 78px;
  min-width: 0;
  padding: 0;
  background: transparent;
  overflow: hidden;
}

.brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(11px, 1.25vw, 22px);
  flex: 1;
}

.site-nav a {
  color: #35100d;
  font-family: var(--serif);
  font-size: clamp(15px, 1.06vw, 18px);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}

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

.donate-btn,
.nav-donate {
  padding: 14px 24px;
  color: #fff !important;
  background: var(--burgundy);
  border-radius: 6px;
  box-shadow: 0 2px 0 rgba(50, 5, 3, 0.18);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(107, 16, 11, 0.18);
  border-radius: 4px;
  background: transparent;
  color: var(--burgundy);
}

.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  content: "";
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.hero {
  display: grid;
  grid-template-columns: 55% 45%;
  min-height: 512px;
  background: var(--burgundy);
}

.hero-copy {
  position: relative;
  overflow: hidden;
  min-width: 0;
  min-height: 512px;
  padding: 70px 48px 44px clamp(54px, 6vw, 92px);
  color: white;
  background-color: var(--burgundy);
  background-image: url("assets/redcomponent.png");
  background-position: center 58%;
  background-size: cover;
}

.hero-copy::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(35, 3, 2, 0.08), rgba(35, 3, 2, 0));
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 740px;
}

.hero-kicker {
  margin-bottom: 16px !important;
  color: #f7ddb0 !important;
  font-size: 14px !important;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.hero h1 {
  max-width: 740px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(35px, 3vw, 58px);
  line-height: 1.04;
  font-weight: 600;
  letter-spacing: 0;
  text-wrap: balance;
}

.hero h1 .gold {
  display: block;
  color: var(--gold);
  text-wrap: balance;
}

.hero h1 .white {
  display: block;
  color: #fff;
  text-wrap: balance;
}

.nowrap {
  white-space: nowrap;
}

.rule {
  width: 63px;
  height: 2px;
  margin: 29px 0 22px;
  background: var(--gold);
}

.hero p {
  width: min(100%, 650px);
  max-width: 100%;
  margin: 0;
  color: #fffaf3;
  font-size: clamp(20px, 1.5vw, 24px);
  line-height: 1.56;
  overflow-wrap: break-word;
}

.hero-summary {
  font-size: clamp(19px, 1.32vw, 22px) !important;
  line-height: 1.5 !important;
}

.hero-support {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  width: min(100%, 660px);
  margin-top: 24px;
  padding-top: 6px;
}

.hero-support span {
  display: grid;
  grid-template-columns: 28px 1fr;
  align-items: start;
  gap: 10px;
  padding: 0;
  color: rgba(255, 250, 243, 0.9);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.34;
}

.hero-support svg {
  width: 24px;
  height: 24px;
  color: var(--gold);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-legacy {
  margin-top: 18px !important;
  color: rgba(255, 250, 243, 0.86) !important;
  font-size: 17px !important;
  line-height: 1.45 !important;
}

.hero-note {
  margin-top: 12px !important;
  color: #f8ddb0 !important;
  font-size: 15px !important;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.gold-button {
  appearance: none;
  -webkit-appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 210px;
  min-height: 60px;
  margin-top: 34px;
  padding: 15px 38px;
  color: var(--burgundy);
  background: #e7b452;
  border: 1px solid rgba(87, 43, 12, 0.24);
  border-radius: 5px;
  box-shadow: 0 9px 18px rgba(28, 3, 2, 0.16);
  cursor: pointer;
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.gold-button:hover {
  background: #dca546;
}

.text-link {
  color: var(--burgundy-soft);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.poster-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: clamp(18px, 4vw, 46px);
  background:
    radial-gradient(circle at 50% 42%, rgba(216, 162, 74, 0.18), transparent 34%),
    rgba(37, 3, 2, 0.72);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 260ms ease, visibility 260ms ease;
}

.poster-modal.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.poster-modal-panel {
  position: relative;
  width: min(92vw, 860px);
  max-height: min(88vh, 920px);
  padding: clamp(10px, 1.6vw, 16px);
  background:
    linear-gradient(135deg, rgba(255, 250, 242, 0.98), rgba(246, 234, 219, 0.98));
  border: 1px solid rgba(216, 162, 74, 0.5);
  border-radius: 8px;
  box-shadow: 0 36px 90px rgba(23, 2, 1, 0.44);
  transform: translateY(22px) scale(0.96);
  opacity: 0;
  transition: transform 420ms cubic-bezier(0.16, 1, 0.3, 1), opacity 300ms ease;
}

.poster-modal.is-visible .poster-modal-panel {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.poster-modal-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 22px;
  padding: 4px 58px 12px 8px;
}

.poster-modal-heading h2 {
  margin: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1;
}

.poster-carousel {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) 48px;
  align-items: center;
  gap: 12px;
}

.poster-frame {
  overflow: hidden;
  height: min(68vh, 760px);
  background: #fffaf2;
  border: 1px solid rgba(107, 16, 11, 0.16);
  border-radius: 5px;
}

.poster-frame iframe,
.flyer-preview iframe {
  width: 100%;
  height: 100%;
  border: 0;
  background: #fffaf2;
}

.poster-nav {
  display: grid;
  place-items: center;
  width: 48px;
  height: 64px;
  color: #fffaf4;
  background: var(--burgundy);
  border: 1px solid rgba(255, 250, 244, 0.38);
  border-radius: 5px;
  cursor: pointer;
  font-family: var(--serif);
  font-size: 44px;
  line-height: 1;
}

.poster-nav:hover,
.poster-nav:focus-visible {
  background: var(--burgundy-deep);
}

.poster-modal-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  padding: 14px 8px 2px;
}

.poster-modal-actions span {
  color: var(--muted);
  font-weight: 900;
}

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

.poster-modal-close {
  position: absolute;
  top: -18px;
  right: -18px;
  z-index: 2;
  width: 46px;
  height: 46px;
  color: #fffaf4;
  background: var(--burgundy);
  border: 1px solid rgba(255, 250, 244, 0.46);
  border-radius: 50%;
  box-shadow: 0 12px 24px rgba(23, 2, 1, 0.28);
  cursor: pointer;
  font-family: Georgia, serif;
  font-size: 32px;
  line-height: 1;
}

.poster-modal-close:hover,
.poster-modal-close:focus-visible {
  background: var(--burgundy-deep);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.contact-line,
.cta-tagline {
  margin-top: 28px;
  color: var(--muted);
  font-weight: 900;
  letter-spacing: 0.04em;
}

.hero-actions .gold-button,
.hero-actions .outline-button,
.cta-band .outline-button {
  margin-top: 0;
}

.hero .hero-actions .outline-button {
  color: #fffaf4;
  background: rgba(255, 250, 244, 0.13);
  border-color: rgba(255, 250, 244, 0.82);
  box-shadow: 0 12px 24px rgba(35, 3, 2, 0.18);
}

.hero .hero-actions .outline-button:hover,
.hero .hero-actions .outline-button:focus-visible {
  color: var(--burgundy);
  background: #fffaf4;
  border-color: #fffaf4;
}

.page-hero .outline-button,
.cta-band .outline-button {
  color: #fffaf4;
  border-color: rgba(255, 250, 244, 0.58);
}

.hero-image {
  position: relative;
  min-width: 0;
  min-height: 512px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(120, 151, 168, 0.25), rgba(130, 156, 169, 0.09)),
    radial-gradient(circle at 36% 42%, rgba(232, 244, 249, 0.35), transparent 34%),
    linear-gradient(135deg, #7f99aa, #b5c6cf 45%, #728d9f);
}

.hero-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: 52% 31%;
}

.pillars {
  background: var(--cream);
  border-bottom: 8px solid var(--burgundy);
}

.pillar-grid {
  width: min(1180px, calc(100% - 80px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  min-height: 226px;
}

.pillar {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 28px 42px 30px;
  text-align: center;
}

.pillar + .pillar {
  border-left: 1px solid rgba(126, 71, 39, 0.28);
}

.icon-ring {
  width: 78px;
  height: 78px;
  margin-bottom: 20px;
  display: block;
}

.pillar-icon {
  width: 78px;
  height: 78px;
  display: block;
  overflow: visible;
}

.pillar-icon circle {
  fill: none;
  stroke: var(--gold-deep);
  stroke-width: 1.15;
}

.pillar-icon path {
  fill: none;
  stroke: var(--burgundy-soft);
  stroke-width: 2.55;
  stroke-linecap: round;
  stroke-linejoin: round;
  transform-box: fill-box;
  transform-origin: center;
  transform: scale(0.86);
}

.pillar h2 {
  margin: 0 0 10px;
  color: var(--burgundy);
  font-family: var(--serif);
  font-size: 26px;
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.pillar p {
  max-width: 310px;
  margin: 0;
  color: #2f2a26;
  font-size: 18px;
  line-height: 1.5;
}

.section {
  padding: 88px clamp(24px, 6vw, 96px);
  background: var(--paper);
}

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

.section.deep {
  color: #fffaf4;
  background:
    linear-gradient(142deg, rgba(103, 13, 9, 0.96), rgba(50, 5, 4, 0.98)),
    url("assets/redcomponent.png") center / cover;
}

.section-inner {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--gold-deep);
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section h2,
.page-hero h1 {
  margin: 0 0 18px;
  font-family: var(--serif);
  font-size: clamp(40px, 4vw, 62px);
  line-height: 1.02;
  font-weight: 600;
}

.section p.lead,
.page-hero p {
  max-width: 760px;
  margin: 0 0 28px;
  font-size: 20px;
  line-height: 1.72;
}

.two-col {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 58px;
  align-items: center;
}

.portrait-panel {
  min-height: 500px;
  border: 10px solid var(--cream);
  background: var(--blue);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.portrait-panel img {
  width: 100%;
  height: 100%;
  min-height: 500px;
  object-fit: cover;
  object-position: center top;
}

.text-card {
  padding-left: 12px;
}

.stat-row,
.program-grid,
.news-grid,
.impact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 36px;
}

.stat,
.program,
.news-card,
.impact-card {
  padding: 30px;
  background: rgba(255, 250, 242, 0.8);
  border: 1px solid rgba(184, 133, 54, 0.28);
  border-radius: 8px;
}

.stat strong {
  display: block;
  color: var(--burgundy);
  font-family: var(--serif);
  font-size: 48px;
  line-height: 1;
}

.stat span,
.program p,
.news-card p,
.impact-card p {
  color: var(--muted);
}

.program h3,
.news-card h3,
.impact-card h3 {
  margin: 0 0 10px;
  color: var(--burgundy);
  font-family: var(--serif);
  font-size: 27px;
  line-height: 1.12;
}

.deep .program {
  background: rgba(255, 250, 242, 0.08);
  border-color: rgba(216, 162, 74, 0.35);
}

.deep .program h3,
.deep .program p,
.deep .eyebrow {
  color: #fffaf4;
}

.cta-band {
  padding: 62px 24px;
  color: #fffaf4;
  text-align: center;
  background: var(--burgundy);
}

.cta-band h2 {
  margin: 0 0 12px;
  font-family: var(--serif);
  font-size: clamp(38px, 4vw, 56px);
  line-height: 1;
}

.cta-band p {
  max-width: 720px;
  margin: 0 auto 24px;
  font-size: 19px;
}

.site-footer {
  padding: 44px clamp(24px, 6vw, 90px);
  color: #fffaf4;
  background: #250302;
}

.footer-inner {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  font-family: var(--serif);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.footer-social span {
  color: rgba(255, 250, 244, 0.72);
  font-size: 14px;
  font-weight: 700;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  color: #fffaf4;
  border: 1px solid rgba(255, 250, 244, 0.34);
  border-radius: 50%;
  transition: color 160ms ease, background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.social-link:hover,
.social-link:focus-visible {
  color: var(--burgundy);
  background: #e7b452;
  border-color: #e7b452;
  transform: translateY(-2px);
}

.social-link svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.social-link svg path {
  fill: currentColor;
  stroke: none;
}

.social-link:first-of-type svg path {
  fill: none;
  stroke: currentColor;
}

.page-hero {
  padding: 86px clamp(24px, 6vw, 96px);
  color: #fffaf4;
  background:
    linear-gradient(142deg, rgba(105, 13, 9, 0.96), rgba(48, 5, 4, 0.98)),
    url("assets/redcomponent.png") center / cover;
}

.page-hero-inner {
  width: min(1180px, 100%);
  margin: 0 auto;
  min-width: 0;
}

.impact-hero {
  min-height: 360px;
  color: #fffaf4;
  background-image: url("assets/banner.png");
  background-position: center 46%;
  background-size: cover;
  border-top: 3px solid rgba(216, 162, 74, 0.78);
}

.impact-hero-inner {
  width: min(1180px, calc(100% - 48px));
  min-height: 360px;
  margin: 0 auto;
  padding: 43px 0 20px;
}

.impact-kicker,
.focus-kicker {
  margin: 0;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.22em;
  line-height: 1;
  text-transform: uppercase;
}

.impact-gold-rule {
  width: 55px;
  height: 2px;
  margin: 14px 0 20px;
  background: var(--gold);
}

.impact-hero h1 {
  max-width: 610px;
  margin: 0;
  color: #fffaf4;
  font-family: var(--serif);
  font-size: clamp(42px, 3.45vw, 52px);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: 0;
}

.impact-title-rule {
  width: 88px;
  height: 2px;
  margin: 18px 0 14px;
  background: var(--gold);
}

.impact-hero p:not(.impact-kicker) {
  max-width: 620px;
  margin: 0;
  color: rgba(255, 250, 244, 0.92);
  font-size: 17px;
  line-height: 1.48;
}

.impact-hero .gold-button {
  margin-top: 16px;
}

.impact-focus {
  padding: 28px 24px 42px;
  background:
    radial-gradient(circle at 52% 100%, rgba(216, 162, 74, 0.14), transparent 34%),
    var(--paper);
}

.impact-focus-inner {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.focus-kicker {
  color: var(--gold-deep);
}

.focus-kicker span {
  display: inline-block;
  width: 28px;
  height: 1px;
  margin: 0 0 4px 12px;
  background: var(--gold-deep);
}

.impact-focus h2 {
  margin: 10px 0 18px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(42px, 3.9vw, 58px);
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: 0;
}

.impact-focus h2 em {
  color: var(--burgundy-soft);
  font-style: italic;
  font-weight: 500;
}

.impact-card-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.impact-feature-card {
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 18px;
  min-height: 108px;
  padding: 22px 24px;
  background: rgba(255, 250, 242, 0.82);
  border: 1px solid rgba(184, 133, 54, 0.35);
  border-radius: 6px;
  box-shadow: 0 8px 24px rgba(67, 24, 12, 0.04);
}

.impact-feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--gold);
  background: var(--burgundy);
}

.impact-feature-icon svg {
  width: 34px;
  height: 34px;
  fill: currentColor;
}

.impact-feature-card h3 {
  margin: 0 0 4px;
  color: var(--burgundy-soft);
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.05;
  font-weight: 700;
}

.impact-feature-card p {
  margin: 0;
  color: #3e2b26;
  font-size: 15px;
  line-height: 1.35;
}

.impact-flourish {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 35px auto 0;
  color: var(--gold);
}

.impact-flourish::before,
.impact-flourish::after {
  content: "";
  width: 175px;
  height: 1px;
  background: rgba(216, 162, 74, 0.35);
}

.impact-flourish span {
  width: 34px;
  height: 18px;
  border-top: 2px solid currentColor;
  border-radius: 50%;
}

.content-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 34px;
}

.content-item {
  padding: 30px;
  border-left: 3px solid var(--gold);
  background: rgba(255, 250, 242, 0.72);
}

.focus-grid,
.flyer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 34px;
}

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

.focus-card,
.flyer-card {
  padding: 26px;
  background: rgba(255, 250, 242, 0.86);
  border: 1px solid rgba(107, 16, 11, 0.12);
  border-radius: 6px;
  box-shadow: 0 16px 34px rgba(43, 6, 4, 0.08);
}

.focus-card h3,
.flyer-card h3 {
  margin: 0 0 12px;
  color: var(--burgundy);
  font-family: var(--serif);
  font-size: 28px;
  line-height: 1.1;
}

.focus-card p,
.flyer-card p {
  margin: 0;
}

.decision-note {
  margin-top: 28px;
  padding: 28px;
  color: #fffaf4;
  background: var(--burgundy);
  border-radius: 6px;
  box-shadow: var(--shadow);
}

.decision-note .eyebrow,
.decision-note p {
  color: #fffaf4;
}

.flyer-preview {
  overflow: hidden;
  height: min(68vh, 620px);
  min-height: 460px;
  margin-bottom: 18px;
  background: #fffaf2;
  border: 1px solid rgba(107, 16, 11, 0.16);
  border-radius: 5px;
}

.event-hero {
  padding-bottom: 64px;
}

.event-hero .hero-actions {
  margin-top: 22px;
}

.event-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.82fr) minmax(0, 1fr);
  gap: clamp(34px, 5vw, 62px);
  align-items: start;
}

.event-poster-frame {
  position: sticky;
  top: 130px;
  padding: 12px;
  background: #fffaf2;
  border: 1px solid rgba(184, 133, 54, 0.36);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.event-poster-frame img,
.event-poster-frame iframe {
  width: 100%;
  min-height: 620px;
  border: 0;
  border-radius: 5px;
}

.event-details-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin: 28px 0 32px;
}

.event-detail {
  min-height: 138px;
  padding: 24px;
  background: rgba(255, 250, 242, 0.84);
  border: 1px solid rgba(184, 133, 54, 0.32);
  border-radius: 8px;
}

.event-detail span {
  display: block;
  margin-bottom: 8px;
  color: var(--gold-deep);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.event-detail strong {
  display: block;
  color: var(--burgundy);
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.05;
}

.event-contact-panel {
  padding: clamp(28px, 4vw, 42px);
  color: #fffaf4;
  background:
    linear-gradient(142deg, rgba(103, 13, 9, 0.96), rgba(50, 5, 4, 0.98)),
    url("assets/redcomponent.png") center / cover;
  border-radius: 8px;
}

.event-contact-panel h3 {
  margin: 0 0 12px;
  font-family: var(--serif);
  font-size: clamp(32px, 3.5vw, 46px);
  line-height: 1;
  font-weight: 600;
}

.event-contact-panel p {
  max-width: 680px;
  margin: 0;
  color: rgba(255, 250, 244, 0.9);
  font-size: 18px;
}

.event-contact-panel .hero-actions {
  margin-top: 24px;
}

.scholarship-hero .gold-button {
  margin-top: 8px;
}

.scholarship-overview h2 {
  max-width: 940px;
}

.application-note-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 34px;
}

.application-note {
  min-height: 190px;
  padding: 28px;
  background: rgba(255, 250, 242, 0.82);
  border: 1px solid rgba(184, 133, 54, 0.3);
  border-radius: 8px;
}

.application-note h3,
.scholarship-form legend {
  margin: 0 0 10px;
  color: var(--burgundy);
  font-family: var(--serif);
  font-size: 28px;
  line-height: 1.08;
}

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

.scholarship-form {
  display: grid;
  gap: 26px;
}

.form-heading {
  max-width: 860px;
}

.scholarship-form fieldset {
  min-width: 0;
  margin: 0;
  padding: 30px;
  border: 1px solid rgba(184, 133, 54, 0.32);
  border-radius: 8px;
  background: rgba(255, 250, 242, 0.72);
}

.scholarship-form legend {
  padding: 0 10px;
}

.form-grid {
  display: grid;
  gap: 18px;
  margin-bottom: 18px;
}

.form-grid:last-child {
  margin-bottom: 0;
}

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

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

.scholarship-form label {
  display: grid;
  gap: 7px;
  min-width: 0;
  color: #3e2b26;
  font-weight: 700;
}

.scholarship-form input,
.scholarship-form select,
.scholarship-form textarea {
  width: 100%;
  min-width: 0;
  padding: 14px 15px;
  border: 1px solid rgba(107, 16, 11, 0.2);
  border-radius: 4px;
  background: #fffaf2;
  color: var(--ink);
  font: inherit;
  font-weight: 400;
}

.scholarship-form textarea {
  min-height: 132px;
  resize: vertical;
}

.scholarship-form input.readonly-field {
  color: var(--muted);
  background: rgba(244, 237, 224, 0.72);
  cursor: not-allowed;
}

.scholarship-form .essay-field {
  min-height: 220px;
}

.field-help {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 15px;
}

.document-instructions {
  border-color: rgba(107, 16, 11, 0.32) !important;
  background:
    linear-gradient(135deg, rgba(216, 162, 74, 0.12), rgba(255, 250, 242, 0.82)),
    var(--paper) !important;
}

.document-instructions p {
  margin: 0 0 18px;
  color: #3e2b26;
  font-size: 18px;
}

.checkbox-label {
  grid-template-columns: 20px minmax(0, 1fr);
  align-items: start;
  margin: 10px 0;
  font-weight: 700;
}

.checkbox-label input {
  width: 18px;
  height: 18px;
  margin-top: 4px;
}

.form-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.form-actions .gold-button {
  margin-top: 0;
}

.officers-section {
  padding-top: 60px;
}

.officers-section > .section-inner > h2 {
  margin-bottom: 12px;
}

.officer-feature {
  display: grid;
  grid-template-columns: minmax(340px, 0.92fr) minmax(0, 1.08fr);
  gap: 54px;
  align-items: center;
  margin-top: 34px;
  min-width: 0;
}

.officer-photo {
  min-height: 470px;
  border: 10px solid var(--cream);
  background: var(--cream-2);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.officer-photo img {
  width: 100%;
  height: 470px;
  object-fit: cover;
  object-position: 52% 28%;
}

.officer-feature.no-photo {
  grid-template-columns: minmax(0, 820px);
  justify-content: center;
  text-align: center;
}

.officer-feature.no-photo .officer-photo {
  display: none;
}

.officer-feature.no-photo .officer-copy {
  padding: 18px 0;
}

.officer-feature.no-photo .officer-copy p:not(.eyebrow):not(.officer-role) {
  margin-right: auto;
  margin-left: auto;
}

.officer-feature.no-photo .officer-actions {
  justify-content: center;
}

.officer-copy {
  padding: 8px 0;
  min-width: 0;
}

.officer-role {
  margin: 0 0 8px;
  color: var(--burgundy-soft);
  font-family: var(--serif);
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.15;
  font-weight: 700;
}

.officer-copy h3 {
  margin: 0 0 18px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(34px, 3.6vw, 58px);
  line-height: 1;
  font-weight: 600;
}

.officer-copy p:not(.eyebrow):not(.officer-role) {
  max-width: 700px;
  margin: 0;
  color: #3e2b26;
  font-size: 18px;
  line-height: 1.72;
}

#officerBio {
  white-space: pre-line;
}

.officer-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.officer-actions .gold-button {
  min-width: 210px;
  min-height: 56px;
  margin-top: 0;
  padding: 14px 34px;
  background: #e7b452;
  border: 1px solid rgba(137, 82, 19, 0.38);
  box-shadow: 0 12px 22px rgba(67, 24, 12, 0.14);
}

.outline-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 13px 26px;
  color: var(--burgundy);
  background: transparent;
  border: 1px solid rgba(107, 16, 11, 0.42);
  border-radius: 5px;
  cursor: pointer;
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.compact-action {
  min-height: 44px;
  margin-top: 18px;
  padding: 11px 18px;
  font-size: 15px;
  letter-spacing: 0.04em;
}

.deep .outline-button {
  color: #fffaf4;
  border-color: rgba(255, 250, 244, 0.52);
}

.read-more-button[hidden] {
  display: none;
}

.bio-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 28px;
  background: rgba(38, 5, 3, 0.62);
}

.bio-modal[aria-hidden="false"] {
  display: flex;
}

.bio-modal-panel {
  position: relative;
  width: min(860px, 100%);
  max-height: min(82vh, 820px);
  overflow-y: auto;
  padding: clamp(30px, 4vw, 54px);
  background:
    radial-gradient(circle at 100% 0%, rgba(216, 162, 74, 0.12), transparent 34%),
    var(--paper);
  border: 1px solid rgba(184, 133, 54, 0.34);
  box-shadow: 0 28px 70px rgba(32, 4, 3, 0.34);
}

.bio-modal-close {
  position: absolute;
  top: 14px;
  right: 16px;
  width: 42px;
  height: 42px;
  color: var(--burgundy);
  background: transparent;
  border: 1px solid rgba(107, 16, 11, 0.22);
  border-radius: 50%;
  cursor: pointer;
  font-family: Georgia, serif;
  font-size: 30px;
  line-height: 1;
}

.bio-modal-panel h2 {
  margin: 0 0 20px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(38px, 4vw, 58px);
  line-height: 1;
  font-weight: 600;
}

.bio-modal-panel p:last-child {
  margin: 0;
  color: #3e2b26;
  font-size: 18px;
  line-height: 1.72;
  white-space: pre-line;
}

body.modal-open {
  overflow: hidden;
}

.officer-tabs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 48px;
  padding-top: 26px;
  border-top: 1px solid rgba(184, 133, 54, 0.32);
}

.officer-tab {
  display: grid;
  align-content: center;
  gap: 5px;
  min-height: 88px;
  padding: 14px 16px;
  color: var(--burgundy);
  background: rgba(255, 250, 242, 0.74);
  border: 1px solid rgba(184, 133, 54, 0.34);
  border-radius: 6px;
  cursor: pointer;
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.1;
  transition: background 160ms ease, color 160ms ease, border-color 160ms ease;
}

.officer-tab span,
.officer-tab small {
  display: block;
  min-width: 0;
}

.officer-tab span {
  color: currentColor;
  font-size: 17px;
  line-height: 1.05;
}

.officer-tab small {
  color: rgba(107, 16, 11, 0.74);
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.officer-tab:hover,
.officer-tab.active {
  color: #fffaf4;
  background: var(--burgundy);
  border-color: var(--burgundy);
}

.officer-tab:hover small,
.officer-tab.active small {
  color: rgba(255, 250, 244, 0.82);
}

.legacy-tab {
  background: linear-gradient(135deg, rgba(255, 250, 242, 0.94), rgba(239, 218, 180, 0.42));
  border-color: rgba(107, 16, 11, 0.24);
}

.compact-list {
  gap: 14px;
}

.partner-card-grid,
.metric-grid,
.logo-grid {
  display: grid;
  gap: 18px;
}

.partner-card-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.partner-card {
  min-height: 330px;
  padding: 30px;
  background: #fffaf2;
  border: 1px solid rgba(184, 133, 54, 0.34);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(67, 24, 12, 0.1);
}

.partner-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 20px;
  color: #fffaf4;
  background: var(--burgundy);
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 700;
}

.partner-card h3,
.faq-list h3,
.spotlight-panel h3 {
  margin: 0 0 12px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 28px;
  line-height: 1.05;
}

.partner-card p,
.faq-list p,
.spotlight-panel p {
  margin: 0;
  color: #3e2b26;
}

.sponsorship-panel {
  padding: 30px;
  background: #fffaf2;
  border: 1px solid rgba(184, 133, 54, 0.34);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(67, 24, 12, 0.1);
}

.sponsorship-panel > h3 {
  margin: 0 0 12px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 30px;
  line-height: 1.05;
}

.sponsorship-panel > p {
  margin: 0 0 18px;
  color: #3e2b26;
}

.submission-steps {
  display: grid;
  gap: 14px;
}

.submission-steps div {
  display: grid;
  gap: 4px;
  padding-top: 14px;
  border-top: 1px solid rgba(184, 133, 54, 0.28);
}

.submission-steps strong {
  color: var(--burgundy);
  font-family: var(--serif);
  font-size: 22px;
}

.submission-steps span {
  color: #3e2b26;
}

.sponsor-level-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.sponsor-level-card {
  min-height: 250px;
  padding: 26px;
  background: #fffaf2;
  border: 1px solid rgba(184, 133, 54, 0.34);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(67, 24, 12, 0.08);
}

.sponsor-level-card span {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--burgundy);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sponsor-level-card h3 {
  margin: 0 0 12px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 30px;
  line-height: 1.05;
}

.sponsor-level-card p {
  margin: 0;
  color: #3e2b26;
}

.benefits-table-wrap {
  margin-top: 28px;
  overflow-x: auto;
  border: 1px solid rgba(184, 133, 54, 0.3);
  border-radius: 8px;
  background: #fffaf2;
}

.benefits-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
}

.benefits-table th,
.benefits-table td {
  padding: 14px 12px;
  border: 1px solid rgba(90, 65, 59, 0.16);
  color: #4e3d38;
  text-align: center;
  vertical-align: middle;
}

.benefits-table th:first-child,
.benefits-table td:first-child {
  width: 32%;
  text-align: left;
}

.benefits-table th {
  color: #fffaf4;
  background: var(--burgundy);
  font-weight: 900;
}

.benefits-table th span {
  color: rgba(255, 250, 244, 0.86);
  font-size: 12px;
}

.benefits-table tbody tr:nth-child(even) {
  background: rgba(90, 65, 59, 0.06);
}

.benefits-table td:not(:first-child) {
  color: var(--burgundy);
  font-weight: 900;
}

.sponsor-level-description {
  padding: 14px 16px;
  border-left: 4px solid var(--gold);
  background: rgba(216, 162, 74, 0.12);
}

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

.metric {
  min-height: 150px;
  padding: 26px 20px;
  text-align: center;
  background: #fffaf2;
  border: 1px solid rgba(184, 133, 54, 0.34);
  border-radius: 8px;
}

.metric strong {
  display: block;
  color: var(--burgundy);
  font-family: var(--serif);
  font-size: clamp(42px, 4vw, 62px);
  line-height: 0.95;
}

.metric span {
  display: block;
  margin-top: 10px;
  color: #5a413b;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.logo-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 24px;
}

.logo-grid div {
  min-height: 104px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  text-align: center;
  color: var(--burgundy);
  background: #fffaf2;
  border: 1px solid rgba(184, 133, 54, 0.34);
  border-radius: 8px;
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 700;
}

.spotlight {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.55fr);
  gap: 36px;
  align-items: center;
}

.spotlight-panel {
  padding: 30px;
  background: #fffaf2;
  border: 1px solid rgba(184, 133, 54, 0.34);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(67, 24, 12, 0.1);
}

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

.faq-list article {
  padding: 24px;
  background: #fffaf2;
  border: 1px solid rgba(184, 133, 54, 0.3);
  border-radius: 8px;
}

.partner-wall {
  display: grid;
  gap: 42px;
}

.partner-wall h2 {
  margin-bottom: 8px;
  font-size: clamp(36px, 4vw, 52px);
}

.donation-section {
  background:
    linear-gradient(135deg, rgba(255, 250, 242, 0.92), rgba(247, 237, 220, 0.84)),
    var(--paper);
}

.donation-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.72fr);
  gap: 42px;
  align-items: center;
}

.donation-copy h2 {
  max-width: 760px;
}

.donation-copy .lead {
  max-width: 700px;
}

.donation-priorities {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.donation-priorities span {
  padding: 9px 13px;
  color: var(--burgundy);
  background: #fffaf2;
  border: 1px solid rgba(184, 133, 54, 0.34);
  border-radius: 4px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.paypal-panel {
  padding: clamp(26px, 4vw, 40px);
  text-align: center;
  background: #fffaf2;
  border: 1px solid rgba(184, 133, 54, 0.38);
  border-radius: 8px;
  box-shadow: 0 18px 44px rgba(67, 24, 12, 0.12);
}

.paypal-panel-title {
  margin: 0 0 20px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 700;
  line-height: 1;
}

.paypal-button-wrap {
  display: flex;
  justify-content: center;
}

.paypal-button-wrap form {
  width: min(100%, 340px);
}

.paypal-button-wrap input[type="submit"] {
  width: 100%;
}

.paypal-button-wrap img {
  max-width: min(100%, 260px);
  height: auto;
}

.paypal-note {
  max-width: 300px;
  margin: 18px auto 0;
  color: #5a413b;
  font-size: 14px;
  line-height: 1.5;
}

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

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 15px 16px;
  border: 1px solid rgba(107, 16, 11, 0.18);
  border-radius: 4px;
  background: #fffaf2;
  color: var(--ink);
  font: inherit;
}

.contact-form select {
  cursor: pointer;
}

.contact-form textarea {
  min-height: 150px;
  resize: vertical;
}

.contact-status {
  margin: -4px 0 0;
  color: rgba(45, 32, 24, 0.72);
  font-size: 15px;
  line-height: 1.5;
}

.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;
}

@media (max-width: 1180px) {
  .nav-wrap {
    padding: 0 28px;
    gap: 20px;
  }

  .brand {
    flex-basis: 270px;
    height: 62px;
  }

  .brand img {
    width: 100%;
    height: 100%;
  }

  .site-nav {
    gap: 14px;
  }

  .site-nav a {
    font-size: 13px;
  }
}

@media (max-width: 920px) {
  .site-header,
  .nav-wrap {
    min-height: 82px;
  }

  .brand img {
    width: 100%;
    max-height: 74px;
  }

  .menu-toggle {
    display: block;
    flex: 0 0 auto;
  }

  .site-nav {
    position: absolute;
    top: 82px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 28px 28px;
    background: var(--cream);
    box-shadow: 0 18px 32px rgba(57, 16, 9, 0.16);
  }

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

  .site-nav a {
    padding: 14px 0;
    border-bottom: 1px solid rgba(107, 16, 11, 0.1);
  }

  .nav-donate {
    margin-top: 12px;
    text-align: center;
  }

  .hero,
  .two-col {
    grid-template-columns: 1fr;
  }

  .hero-copy,
  .hero-image,
  .hero-image img {
    min-height: 390px;
  }

  .pillar-grid,
  .stat-row,
  .program-grid,
  .news-grid,
  .impact-grid,
  .impact-card-row,
  .application-note-grid,
  .officer-feature,
  .donation-layout,
  .partner-card-grid,
  .sponsor-level-grid,
  .focus-grid,
  .flyer-grid,
  .spotlight,
  .event-layout,
  .content-list {
    grid-template-columns: 1fr;
  }

  .metric-grid,
  .logo-grid,
  .event-details-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .event-poster-frame {
    position: static;
    width: min(620px, 100%);
    margin: 0 auto;
  }

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

  .officer-tabs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .officer-photo,
  .officer-photo img {
    min-height: 420px;
    height: 420px;
  }

  .impact-hero {
    min-height: 420px;
    background-position: 57% center;
  }

  .impact-hero-inner {
    min-height: 420px;
    padding: 54px 0 44px;
  }

  .impact-feature-card {
    grid-template-columns: 68px 1fr;
  }

  .pillar + .pillar {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-social {
    gap: 14px;
  }
}

@media (max-width: 560px) {
  .poster-modal {
    padding: 18px;
  }

  .poster-modal-panel {
    width: min(94vw, 620px);
  }

  .poster-modal-close {
    top: 8px;
    right: 8px;
    width: 42px;
    height: 42px;
  }

  .poster-carousel {
    grid-template-columns: 1fr;
  }

  .poster-nav {
    width: 100%;
    height: 44px;
    font-size: 34px;
  }

  .poster-frame {
    height: min(62vh, 560px);
  }

  .poster-modal-heading {
    display: block;
    padding-right: 52px;
  }

  .flyer-preview {
    min-height: 360px;
    height: 58vh;
  }

  .hero,
  .hero-copy,
  .hero-image,
  .impact-hero {
    max-width: 100vw;
    width: 100%;
  }

  .impact-hero {
    min-height: 468px;
    background-image:
      linear-gradient(90deg, rgba(74, 7, 5, 0.96) 0%, rgba(82, 10, 7, 0.9) 58%, rgba(82, 10, 7, 0.58) 100%),
      url("assets/banner.png");
    background-position: 56% center;
  }

  .impact-hero-inner {
    width: calc(100% - 52px);
    min-height: 468px;
    padding: 48px 0 38px;
  }

  .impact-hero h1 {
    max-width: 330px;
    font-size: 37px;
    line-height: 1.03;
  }

  .impact-hero p:not(.impact-kicker) {
    max-width: 330px;
    font-size: 16px;
    line-height: 1.45;
  }

  .impact-focus {
    padding: 38px 22px;
  }

  .impact-focus h2 {
    font-size: 39px;
  }

  .impact-feature-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .impact-feature-icon {
    margin: 0 auto;
  }

  .officer-tabs {
    grid-template-columns: 1fr;
  }

  .officer-photo,
  .officer-photo img {
    min-height: 320px;
    height: 320px;
  }

  .officer-copy h3 {
    font-size: clamp(31px, 10vw, 42px);
    overflow-wrap: break-word;
  }

  .officer-copy p:not(.eyebrow):not(.officer-role) {
    font-size: 17px;
    overflow-wrap: break-word;
  }

  .donation-priorities {
    display: grid;
    grid-template-columns: 1fr;
  }

  .paypal-panel {
    padding: 26px 20px;
  }

  .metric-grid,
  .logo-grid,
  .event-details-grid {
    grid-template-columns: 1fr;
  }

  .partner-card {
    min-height: 0;
    padding: 24px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .gold-button,
  .hero-actions .outline-button,
  .cta-band .outline-button {
    width: 100%;
  }

  .hero-support {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .page-hero-inner,
  .section-inner,
  .officer-feature,
  .officer-copy,
  .page-hero p,
  .section p.lead {
    max-width: 100%;
    min-width: 0;
  }

  .nav-wrap {
    padding: 0 18px;
  }

  .brand {
    min-width: 0;
    flex-basis: 220px;
    height: 58px;
  }

  .brand img {
    width: 100%;
  }

  .hero-copy {
    padding: 54px 26px 38px;
  }

  .hero-inner {
    width: 100%;
    max-width: 338px;
  }

  .hero h1 {
    max-width: 338px;
    font-size: 34px;
    line-height: 1.06;
  }

  .hero p {
    width: 100%;
    max-width: 338px;
    font-size: 17px;
  }

  .hero-support {
    width: 100%;
    max-width: 338px;
    gap: 12px;
  }

  .hero-support span {
    grid-template-columns: 26px 1fr;
    font-size: 14px;
  }

  .hero-support svg {
    width: 22px;
    height: 22px;
  }

  .pillar-grid {
    width: min(100% - 40px, 1180px);
  }

  .section {
    padding: 64px 22px;
  }

  .scholarship-form fieldset {
    padding: 24px 18px;
  }

  .form-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .form-actions .gold-button,
  .form-actions .outline-button,
  .event-contact-panel .gold-button,
  .event-contact-panel .outline-button {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .poster-modal,
  .poster-modal-panel {
    transition: none;
  }
}
