/* ============================================================
   SUPPORT — /support, /support/donate, /support/sponsor,
              /support/planned, /support/corporate, /support/volunteer

   Mirrors about.css conventions:
     • Sticky chapter sub-nav at the top of every page
     • Editorial page header (eyebrow · title · lede · kicker)
     • Section banners with rule-and-eyebrow
     • Card grid styles
     • Dark closing strip ("contact us about giving")

   Class prefix `.sup-`. Generic helpers (.sup-header, .sup-section,
   .sup-grid, .sup-card) compose with modifiers like --hub, --tier,
   --planned-path, etc.
   ============================================================ */


/* ============ SUB-NAV ============ */

.sup-subnav {
  border-bottom: 1px solid var(--rule);
  background: var(--bg);
  position: sticky;
  top: var(--cas-header-h, 76px);
  z-index: 30;
}
.sup-subnav__inner {
  display: flex;
  gap: 4px;
  overflow-x: auto;
  padding: 0 32px;
}
.sup-subnav__item {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 500;
  padding: 18px 18px;
  color: var(--ink-3);
  border-bottom: 2px solid transparent;
  white-space: nowrap;
  letter-spacing: 0.02em;
  text-decoration: none;
  background: transparent;
}
.sup-subnav__item:hover {
  color: var(--ink-2);
}
.sup-subnav__item.is-active {
  color: var(--ink);
  border-bottom-color: var(--accent);
}


/* ============ EDITORIAL PAGE HEADER ============ */
/* Diagonal grid, faded circle mark, accent ribbon at top. */

.sup-header {
  border-bottom: 1px solid var(--rule);
  background: var(--bg-elev);
  position: relative;
  overflow: hidden;
}
.sup-header__weave {
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      135deg,
      transparent 0 22px,
      color-mix(in oklab, var(--ink) 2.2%, transparent) 22px 23px
    ),
    repeating-linear-gradient(
      45deg,
      transparent 0 22px,
      color-mix(in oklab, var(--ink) 1.6%, transparent) 22px 23px
    );
  pointer-events: none;
}
.sup-header__mark {
  position: absolute;
  right: -14%;
  top: 50%;
  transform: translateY(-50%);
  height: 190%;
  max-height: 760px;
  width: auto;
  /* mix-blend-mode lets the logo's blue darken the cream bg-elev
     instead of just sitting on top of it — gives the watermark a
     tinted-paper feel rather than a faded-decal feel. Falls back
     gracefully where blend modes aren't supported (the opacity
     value alone still reads as a faint mark). */
  opacity: 0.18;
  mix-blend-mode: multiply;
  pointer-events: none;
}
.sup-header__ribbon {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent) 0%, var(--accent) 12%, transparent 12%);
}
.sup-header__inner {
  padding: 72px 32px 64px;
  max-width: 1080px;
  position: relative;
}
.sup-header__eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.sup-header__rule {
  height: 1px;
  width: 32px;
  background: var(--accent);
}
.sup-header__eyebrow .eyebrow {
  color: var(--accent);
}
.sup-header__kicker {
  color: var(--ink-4);
  font-family: "Inter", sans-serif;
  font-size: 13px;
}
.sup-header__title {
  font-family: "Playfair Display", serif;
  font-weight: 500;
  font-size: clamp(44px, 5.4vw, 76px);
  line-height: 1.04;
  letter-spacing: -0.01em;
  margin: 0;
}
.sup-header__title em {
  font-style: italic;
  color: var(--accent);
}
.sup-header__lede {
  font-family: "Inter", sans-serif;
  font-size: 21px;
  line-height: 1.55;
  color: var(--ink-2);
  margin: 28px 0 0;
  max-width: 720px;
}


/* ============ GENERIC SECTIONS ============ */

.sup-section {
  border-bottom: 1px solid var(--rule);
  background: var(--bg);
}
.sup-section--elev {
  background: var(--bg-elev);
}
.sup-section__inner {
  padding: 80px 32px;
  max-width: 1080px;
  margin: 0 auto;
}
.sup-section__inner--narrow {
  max-width: 1080px;
}

.sup-section__title {
  font-family: "Playfair Display", serif;
  font-weight: 500;
  letter-spacing: -0.005em;
  line-height: 1.1;
  margin: 12px 0 36px;
  max-width: 800px;
}
.sup-section__title em {
  font-style: italic;
  color: var(--accent);
}
.sup-section__title--xl {
  font-size: clamp(36px, 4.2vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin-bottom: 0;
}
.sup-section__title--lg {
  font-size: clamp(32px, 4vw, 48px);
}
.sup-section__title--md {
  font-size: clamp(28px, 3.4vw, 42px);
  line-height: 1.15;
}

.sup-section__lede {
  font-family: "Inter", sans-serif;
  font-size: 17px;
  color: var(--ink-2);
  line-height: 1.65;
  max-width: 540px;
  margin: 24px 0 0;
}
.sup-section__lede--small {
  font-size: 15px;
  color: var(--ink-3);
  margin-bottom: 36px;
  margin-top: 0;
  line-height: 1.6;
  max-width: 640px;
}


/* ============ HUB — STAT + DONUT ============ */

.sup-hub-stat {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}
.sup-hub-stat__copy {
  /* container only */
}
.sup-hub-stat__chart {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 36px;
  align-items: center;
}
.sup-donut {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: conic-gradient(var(--accent) 0 30%, var(--bg-sunken) 30% 100%);
  display: grid;
  place-items: center;
  position: relative;
  border: 1px solid var(--rule);
}
.sup-donut__hole {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: var(--bg);
  display: grid;
  place-items: center;
  text-align: center;
  border: 1px solid var(--rule);
}
.sup-donut__pct {
  font-family: "Playfair Display", serif;
  font-weight: 500;
  font-size: 38px;
  line-height: 1;
  color: var(--accent);
}
.sup-donut__label {
  font-family: "Inter", sans-serif;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-top: 8px;
}

.sup-legend {
  list-style: none;
  padding: 0;
  margin: 0;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  color: var(--ink-2);
  line-height: 1.6;
}
.sup-legend__row {
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--rule);
}
.sup-legend__row:last-child {
  border-bottom: none;
}
.sup-legend__row:first-child {
  padding-top: 0;
}
.sup-legend__swatch {
  width: 10px;
  height: 10px;
  flex-shrink: 0;
  transform: translateY(2px);
}
.sup-legend__swatch--primary { background: var(--accent); }
.sup-legend__swatch--secondary { background: var(--ink-3); }
.sup-legend__swatch--tertiary { background: var(--ink-4); }
.sup-legend__name {
  color: var(--ink);
  font-weight: 500;
}
.sup-legend__note {
  font-size: 13px;
  color: var(--ink-3);
}


/* ============ HUB — REASONS (4 columns) ============ */

.sup-reasons {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.sup-reason {
  border-top: 1px solid var(--ink);
  padding-top: 20px;
}
.sup-reason__n {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.16em;
  color: var(--accent);
}
.sup-reason__title {
  font-family: "Playfair Display", serif;
  font-weight: 500;
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: -0.005em;
  margin: 14px 0 0;
}
.sup-reason__body {
  font-family: "Inter", sans-serif;
  font-size: 14.5px;
  color: var(--ink-2);
  margin: 14px 0 0;
  line-height: 1.6;
}


/* ============ HUB — WAYS TO GIVE (2 cols, image+copy) ============ */

.sup-ways {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.sup-way {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  border: 1px solid var(--rule);
  background: var(--bg);
  text-align: left;
  padding: 0;
  min-height: 260px;
  text-decoration: none;
  color: inherit;
  transition: border-color 150ms, transform 150ms;
}
.sup-way:hover {
  border-color: var(--ink);
  transform: translateY(-2px);
}
.sup-way__media {
  position: relative;
  overflow: hidden;
  border-right: 1px solid var(--rule);
  background: var(--bg-sunken);
}
.sup-way__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.sup-way__body {
  padding: 28px 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.sup-way__eyebrow {
  font-family: "Inter", sans-serif;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
}
.sup-way__title {
  font-family: "Playfair Display", serif;
  font-weight: 500;
  font-size: 26px;
  line-height: 1.15;
  margin: 10px 0 0;
}
.sup-way__copy {
  font-family: "Inter", sans-serif;
  font-size: 15px;
  color: var(--ink-3);
  margin: 12px 0 0;
  line-height: 1.55;
}
.sup-way__cta {
  font-family: "Inter", sans-serif;
  font-size: 13px;
  color: var(--accent);
  margin-top: 20px;
  font-weight: 500;
}


/* ============ HUB — RESTRICTED/UNRESTRICTED FOOTNOTE ============ */

.sup-note {
  margin-top: 48px;
  padding: 28px 32px;
  background: var(--bg-elev);
  border: 1px solid var(--rule);
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 32px;
  align-items: baseline;
}
.sup-note__body {
  font-family: "Inter", sans-serif;
  font-size: 15px;
  color: var(--ink-2);
  line-height: 1.6;
  margin: 0;
}
.sup-note__body strong {
  color: var(--ink);
  font-weight: 500;
}


/* ============ ANNUAL FUND — AMOUNT GRID ============ */

.sup-give {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}
.sup-give__intro {
  position: sticky;
  top: 160px;
}
.sup-give__lede {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  color: var(--ink-2);
  margin-top: 22px;
  line-height: 1.6;
  max-width: 420px;
}

.sup-amounts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border: 1px solid var(--rule);
}
.sup-amount {
  text-align: left;
  padding: 24px 24px;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  transition: background 150ms;
  cursor: pointer;
  border: none;
  font: inherit;
}
.sup-amount:nth-child(odd) {
  border-right: 1px solid var(--rule);
}
.sup-amount:not(:nth-last-child(-n+2)) {
  border-bottom: 1px solid var(--rule);
}
.sup-amount:hover {
  background: var(--bg-elev);
}
.sup-amount__price {
  font-family: "Playfair Display", serif;
  font-weight: 500;
  font-size: 28px;
  color: var(--ink);
  line-height: 1;
}
.sup-amount.is-selected {
  background: var(--bg-elev);
}
.sup-amount.is-selected .sup-amount__price {
  color: var(--ink);
}
.sup-amount__note {
  font-family: "Inter", sans-serif;
  font-size: 13px;
  color: var(--ink-3);
}

.sup-chip {
  font-family: "Inter", sans-serif;
  font-size: 13px;
  padding: 6px 12px;
  border: 1px solid var(--rule);
  color: var(--ink-3);
  background: transparent;
  cursor: pointer;
}
.sup-chip.is-active {
  border-color: var(--ink);
  color: var(--ink);
  background: var(--bg);
}
.sup-chip.is-selected {
  border-color: var(--ink);
  background: var(--ink);
  color: #fff;
}

/* ============ DESIGNATION (Direct your gift) ============ */
/* Container that wraps the label + the chips + the optional
   "In memory of whom?" name input on /support/donate. Visually
   it sits below the amount grid and above the CTA. */
.sup-designation {
  margin-top: 24px;
  padding: 20px 24px;
  background: var(--bg-elev);
  border: 1px solid var(--rule);
}
.sup-designation__label {
  font-family: "Inter", sans-serif;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 12px;
}
.sup-designation__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

/* ============ INLINE FORMS (Other amount, In memory of name) ============ */
/* "Other" reveals .sup-give-other under the amount grid. "In memory of…"
   chip reveals .sup-memory under the designation chips. Both are .hidden
   in the markup and toggled by /2026/js/support-donate.js. */
.sup-give-other,
.sup-memory {
  margin-top: 14px;
}
.sup-give-other__label,
.sup-memory__label {
  display: block;
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-2);
  margin-bottom: 6px;
}
.sup-give-other__row {
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: 360px;
}
.sup-give-other__prefix {
  font-family: "Playfair Display", serif;
  font-size: 22px;
  color: var(--ink-3);
  line-height: 1;
}
.sup-give-other__input,
.sup-memory__input {
  flex: 1;
  padding: 10px 12px;
  font-family: "Inter", sans-serif;
  font-size: 15px;
  border: 1px solid var(--rule);
  background: var(--bg);
  min-width: 0;
}
.sup-give-other__input:focus,
.sup-memory__input:focus {
  outline: 2px solid var(--ink);
  outline-offset: 1px;
}
.sup-memory__input { max-width: 360px; }

/* ============ ERROR + BUSY ============ */
.sup-give__err {
  min-height: 1.2em;
  color: #b00020;
  font-family: "Inter", sans-serif;
  font-size: 13px;
  margin: 14px 0 0;
}
.sup-give__err:empty { margin: 0; }
.sup-give__btn[aria-disabled="true"] {
  opacity: 0.6;
  pointer-events: none;
}

/* ============ CTA ROW (Continue + mail-a-check note) ============ */
.sup-give__cta {
  margin-top: 24px;
  display: flex;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
}
.sup-give__check {
  font-family: "Inter", sans-serif;
  font-size: 13px;
  color: var(--ink-3);
}
.sup-give__check strong {
  color: var(--ink-2);
  font-weight: 500;
}

.sup-give__actions {
  margin-top: 28px;
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}
.sup-give__mailnote {
  font-family: "Inter", sans-serif;
  font-size: 13px;
  color: var(--ink-3);
}
.sup-give__mailnote strong {
  color: var(--ink-2);
  font-weight: 500;
}


/* ============ DESTINATION CARDS (3-up: AF/Youth/Endowment) ============ */
/* Markup wrapper is .sup-direct (used on /support/donate and the legacy
   /donate page). The block name reflects the "directing your gift"
   intent on the page — patron picks where the money goes. */

.sup-direct {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.sup-direct__card {
  background: var(--bg);
  border: 1px solid var(--rule);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
}
.sup-direct__eyebrow {
  font-family: "Inter", sans-serif;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
}
.sup-direct__title {
  font-family: "Playfair Display", serif;
  font-weight: 500;
  font-size: 24px;
  line-height: 1.2;
  margin: 12px 0 0;
}
.sup-direct__body {
  font-family: "Inter", sans-serif;
  font-size: 15px;
  color: var(--ink-2);
  margin: 14px 0 0;
  line-height: 1.6;
  flex: 1;
}
.sup-direct__link {
  align-self: flex-start;
  font-family: "Inter", sans-serif;
  font-size: 13px;
  color: var(--accent);
  font-weight: 500;
  margin-top: 20px;
  text-decoration: none;
}


/* ============ SPONSOR — STEPS (3-up) ============ */

.sup-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.sup-step {
  border-top: 1px solid var(--ink);
  padding-top: 20px;
}
.sup-step__n {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.16em;
  color: var(--accent);
}
.sup-step__title {
  font-family: "Playfair Display", serif;
  font-weight: 500;
  font-size: 24px;
  line-height: 1.2;
  margin: 16px 0 0;
}
.sup-step__body {
  font-family: "Inter", sans-serif;
  font-size: 15px;
  color: var(--ink-2);
  margin: 14px 0 0;
  line-height: 1.6;
}


/* ============ SPONSOR — TIER TABLE ============ */

.sup-tier-table {
  background: var(--bg);
  border: 1px solid var(--rule);
}
.sup-tier-table__head,
.sup-tier-table__row {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 2fr 0.6fr;
  align-items: center;
}
.sup-tier-table__head {
  padding: 14px 24px;
  border-bottom: 1px solid var(--rule);
  background: var(--bg-elev);
}
.sup-tier-table__head .label {
  font-family: "Inter", sans-serif;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.sup-tier-table__row {
  padding: 24px 24px;
  border-bottom: 1px solid var(--rule);
}
.sup-tier-table__row:last-child {
  border-bottom: none;
}
.sup-tier-table__role {
  font-family: "Playfair Display", serif;
  font-weight: 500;
  font-size: 22px;
  line-height: 1.2;
}
.sup-tier-table__price {
  font-family: "Playfair Display", serif;
  font-weight: 500;
  font-size: 22px;
  color: var(--accent);
  line-height: 1.2;
}
.sup-tier-table__note {
  font-family: "Inter", sans-serif;
  font-size: 15px;
  color: var(--ink-2);
}
.sup-tier-table__status {
  text-align: right;
}
.sup-status-pill {
  display: inline-block;
  font-family: "Inter", sans-serif;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 10px;
  border: 1px solid var(--rule-2);
  color: var(--ink-4);
  background: var(--bg-elev);
}
.sup-status-pill--available {
  border-color: var(--accent);
  color: var(--accent);
  background: transparent;
}

.sup-tier-callout {
  margin-top: 28px;
  padding: 24px 28px;
  background: var(--bg);
  border: 1px solid var(--rule);
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 28px;
  align-items: center;
}
.sup-tier-callout__big {
  font-family: "Playfair Display", serif;
  font-weight: 500;
  font-size: 38px;
  color: var(--accent);
  line-height: 1;
}
.sup-tier-callout__title {
  font-family: "Playfair Display", serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.3;
}
.sup-tier-callout__body {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  color: var(--ink-3);
  margin-top: 6px;
}


/* ============ SPONSOR — IN-HONOR-OF SPLIT ============ */

.sup-honor {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: start;
}
.sup-honor__copy {
  border-left: 1px solid var(--rule);
  padding-left: 32px;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-2);
}
.sup-honor__copy p {
  margin: 0 0 16px;
}
.sup-honor__copy p:last-child {
  margin-bottom: 0;
}


/* ============ PLANNED — TAX-AWARE PATHS (2x3) ============ */

.sup-paths {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border: 1px solid var(--rule);
}
.sup-path {
  padding: 32px 32px;
  background: var(--bg);
  border-bottom: 1px solid var(--rule);
}
.sup-path:nth-child(odd) {
  border-right: 1px solid var(--rule);
}
.sup-path:nth-last-child(-n+2) {
  border-bottom: none;
}
.sup-path__n {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.16em;
  color: var(--accent);
}
.sup-path__title {
  font-family: "Playfair Display", serif;
  font-weight: 500;
  font-size: 24px;
  line-height: 1.2;
  margin: 12px 0 0;
}
.sup-path__body {
  font-family: "Inter", sans-serif;
  font-size: 15px;
  color: var(--ink-2);
  margin: 14px 0 0;
  line-height: 1.6;
}
.sup-path__detail {
  font-family: "Inter", sans-serif;
  font-size: 13px;
  color: var(--ink-3);
  margin: 14px 0 0;
  line-height: 1.55;
  padding-left: 12px;
  border-left: 2px solid var(--accent);
}


/* ============ PLANNED — OTHER WAYS (3-up) ============ */

.sup-other {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.sup-other__card {
  background: var(--bg);
  border: 1px solid var(--rule);
  padding: 28px 28px;
}
.sup-other__title {
  font-family: "Playfair Display", serif;
  font-weight: 500;
  font-size: 22px;
  line-height: 1.2;
  margin: 0;
}
.sup-other__body {
  font-family: "Inter", sans-serif;
  font-size: 15px;
  color: var(--ink-2);
  margin: 14px 0 0;
  line-height: 1.6;
}


/* ============ PLANNED — ENDOWMENT PULL ============ */

.sup-endow {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: center;
}
.sup-endow__copy {
  border-left: 1px solid var(--rule);
  padding-left: 40px;
}
.sup-endow__lede {
  font-family: "Inter", sans-serif;
  font-size: 18px;
  color: var(--ink-2);
  line-height: 1.6;
  margin: 0 0 24px;
  max-width: 580px;
}
.sup-endow__detail {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  color: var(--ink-3);
  line-height: 1.6;
  margin: 0 0 24px;
  max-width: 580px;
}


/* ============ CORPORATE — TIER CARDS ============ */

.sup-corp-tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.sup-corp-tier {
  background: var(--bg);
  border: 1px solid var(--rule);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  position: relative;
}
.sup-corp-tier--featured {
  border: 2px solid var(--accent);
}
.sup-corp-tier__badge {
  position: absolute;
  top: -1px;
  right: -1px;
  background: var(--accent);
  color: #fff;
  font-family: "Inter", sans-serif;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 5px 12px;
}
.sup-corp-tier__eyebrow {
  font-family: "Inter", sans-serif;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
}
.sup-corp-tier__amount {
  font-family: "Playfair Display", serif;
  font-weight: 500;
  font-size: 44px;
  line-height: 1;
  margin-top: 12px;
  color: var(--ink);
}
.sup-corp-tier__perfs {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  color: var(--ink-3);
  margin: 8px 0 24px;
}
.sup-corp-tier__benefits {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.sup-corp-tier__benefits li {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  color: var(--ink-2);
  line-height: 1.5;
  padding-left: 18px;
  position: relative;
}
.sup-corp-tier__benefits li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 8px;
  height: 1px;
  background: var(--accent);
}
.sup-corp-tier__cta {
  margin-top: 28px;
}


/* ============ CORPORATE — AD RATES ============ */

.sup-ads {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: start;
}
.sup-ads__copy p {
  margin-bottom: 16px;
}
.sup-ads__image {
  margin: 0 0 24px;
}
.sup-ads__image img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid var(--rule);
}
.sup-ad-table {
  background: var(--bg);
  border: 1px solid var(--rule);
}
.sup-ad-table__head,
.sup-ad-table__row {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 1fr;
}
.sup-ad-table__head {
  padding: 14px 24px;
  border-bottom: 1px solid var(--rule);
  background: var(--bg-elev);
}
.sup-ad-table__head .label {
  font-family: "Inter", sans-serif;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.sup-ad-table__row {
  padding: 20px 24px;
  border-bottom: 1px solid var(--rule);
  align-items: baseline;
}
.sup-ad-table__row:last-child {
  border-bottom: none;
}
.sup-ad-table__size {
  font-family: "Playfair Display", serif;
  font-weight: 500;
  font-size: 22px;
  line-height: 1.2;
}
.sup-ad-table__price {
  font-family: "Playfair Display", serif;
  font-weight: 500;
  font-size: 22px;
  color: var(--accent);
  line-height: 1.2;
}
.sup-ad-table__dim {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  color: var(--ink-3);
}
.sup-ads__contact {
  margin-top: 20px;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  color: var(--ink-3);
  line-height: 1.6;
}
.sup-ads__contact a {
  color: var(--accent);
}


/* ============ VOLUNTEER — 2-UP ============ */

.sup-vol {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.sup-vol__card {
  background: var(--bg-elev);
  border: 1px solid var(--rule);
  padding: 36px 32px;
}
.sup-vol__title {
  font-family: "Playfair Display", serif;
  font-weight: 500;
  font-size: 26px;
  line-height: 1.2;
  margin: 0;
}
.sup-vol__body {
  font-family: "Inter", sans-serif;
  font-size: 15px;
  color: var(--ink-2);
  margin: 14px 0 0;
  line-height: 1.6;
}
.sup-vol__signup {
  margin-top: 40px;
  padding: 28px 32px;
  background: var(--bg-elev);
  border: 1px solid var(--rule);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
}
.sup-vol__signup-copy {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  color: var(--ink-2);
  line-height: 1.55;
}
.sup-vol__signup-copy strong {
  color: var(--ink);
}


/* ============ DARK CONTACT STRIP ============ */

.sup-contact {
  border-top: 1px solid var(--rule);
  background: var(--ink);
  color: var(--bg);
}
.sup-contact__inner {
  padding: 64px 32px;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 56px;
  align-items: center;
  max-width: 1080px;
  margin: 0 auto;
}
.sup-contact__eyebrow-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.sup-contact__rule {
  height: 1px;
  width: 28px;
  background: var(--accent-light);
}
.sup-contact__eyebrow {
  color: var(--accent-light);
  font-family: "Inter", sans-serif;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
}
.sup-contact__title {
  font-family: "Playfair Display", serif;
  font-weight: 500;
  font-size: clamp(28px, 3.6vw, 44px);
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--bg);
  margin: 0;
}
.sup-contact__title em {
  font-style: italic;
  color: var(--accent-light);
}
.sup-contact__copy {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  margin: 22px 0 0;
  color: rgba(255,255,255,0.75);
  max-width: 560px;
}
.sup-contact__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}
.sup-contact__btn {
  background: var(--accent);
  color: #fff;
  min-width: 240px;
  border: none;
}
.sup-contact__email {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  color: rgba(255,255,255,0.85);
  text-decoration: underline;
  text-decoration-color: rgba(255,255,255,0.3);
  text-underline-offset: 4px;
}
.sup-contact__phone {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  color: rgba(255,255,255,0.7);
}


/* ============ RESPONSIVE ============ */

@media (max-width: 980px) {
  .sup-hub-stat,
  .sup-give,
  .sup-honor,
  .sup-endow,
  .sup-ads,
  .sup-contact__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .sup-give__intro {
    position: static;
  }
  .sup-honor__copy,
  .sup-endow__copy {
    border-left: none;
    padding-left: 0;
  }
  .sup-reasons,
  .sup-direct,
  .sup-other,
  .sup-corp-tiers,
  .sup-steps {
    grid-template-columns: repeat(2, 1fr);
  }
  .sup-ways,
  .sup-paths,
  .sup-vol {
    grid-template-columns: 1fr;
  }
  .sup-way {
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .sup-way__media {
    border-right: none;
    border-bottom: 1px solid var(--rule);
    aspect-ratio: 16 / 9;
  }
  .sup-path:nth-child(odd) {
    border-right: none;
  }
  .sup-path:nth-last-child(-n+2) {
    border-bottom: 1px solid var(--rule);
  }
  .sup-path:last-child {
    border-bottom: none;
  }
  .sup-vol__signup,
  .sup-tier-callout {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .sup-tier-table__head,
  .sup-tier-table__row {
    grid-template-columns: 1fr 1fr;
    row-gap: 8px;
  }
  .sup-tier-table__head .label:nth-child(3),
  .sup-tier-table__head .label:nth-child(4),
  .sup-tier-table__row > *:nth-child(3),
  .sup-tier-table__row > *:nth-child(4) {
    grid-column: 1 / -1;
    text-align: left;
  }
}

@media (max-width: 640px) {
  .sup-reasons,
  .sup-direct,
  .sup-other,
  .sup-corp-tiers,
  .sup-steps,
  .sup-amounts {
    grid-template-columns: 1fr;
  }
  .sup-amount:nth-child(odd) {
    border-right: none;
  }
  .sup-amount {
    border-bottom: 1px solid var(--rule);
  }
  .sup-amount:last-child {
    border-bottom: none;
  }
  .sup-header__inner,
  .sup-section__inner,
  .sup-contact__inner {
    padding-left: 20px;
    padding-right: 20px;
  }
  .sup-subnav__inner {
    padding: 0 20px;
  }
}
