/* ================================
   SUPPORTERS PAGE TEMPLATE
   Kensington Voice - v48
   ================================ */

/* Supporters Page Variables */
.supporters-page {
  --font-display: 'Lora', Georgia, serif;
  --font-body: 'Nunito', -apple-system, sans-serif;
  --color-neutral-50: #F9FAFB;
  --color-neutral-100: #F3F4F6;
  --color-neutral-200: #E5E7EB;
  --color-neutral-600: #4B5563;
  --color-neutral-700: #374151;
  --tribute-bg: #F9FAFB;
  --tribute-border: #E5E7EB;
  --tribute-accent: var(--ghost-accent-color);
}

[data-color-scheme="dark"] .supporters-page {
  --color-neutral-50: #1a1a1a;
  --color-neutral-100: #222222;
  --color-neutral-200: #333333;
  --tribute-bg: #1a1a1a;
  --tribute-border: #333;
}

/* ================================
   SUPPORTERS PAGE STYLES
   ================================ */

.supporters-page {
  padding-bottom: 4rem;
}

/* Hero Section */
.supporters-hero {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d1a2d 50%, #1a1a1a 100%);
  color: #fff;
  padding: 4rem 1.5rem 5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.supporters-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 80%, rgba(236, 0, 140, 0.12) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(236, 0, 140, 0.08) 0%, transparent 40%);
  pointer-events: none;
}

.supporters-hero__content {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.supporters-hero__eyebrow {
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0.75rem;
}

.supporters-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
  line-height: 1.1;
}

.supporters-hero__subtitle {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  opacity: 0.9;
  line-height: 1.6;
  max-width: 660px;
  margin: 0 auto 2rem;
  font-weight: 400;
}

@media (min-width: 900px) {
  .supporters-hero__title {
    white-space: nowrap;
  }
  .supporters-hero__subtitle {
    max-width: 780px;
  }
}

.supporters-hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--ghost-accent-color);
  color: #fff;
  padding: 0.875rem 2rem;
  border-radius: 6px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.supporters-hero__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(236, 0, 140, 0.35);
}

/* Section Navigation Bar */
.section-nav {
  background: white;
  padding: 1.25rem 1.5rem;
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  border-bottom: 1px solid var(--color-border);
}

.section-nav__link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 1rem;
  background: var(--ghost-accent-color);
  border: none;
  border-radius: 6px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  transition: all 0.2s ease;
}

.section-nav__link svg {
  flex-shrink: 0;
}

.section-nav__link:hover {
  background: #c4006f;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(237, 0, 142, 0.3);
}

/* Main Content Container */
.supporters-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Section Styling */
.supporters-section {
  padding: 3rem 0;
  border-bottom: 1px solid var(--color-border);
}

.supporters-section:last-child {
  border-bottom: none;
}

.supporters-section__header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.supporters-section__title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}

.supporters-section__subtitle {
  color: var(--color-grey-dark);
  font-size: 1rem;
  max-width: 660px;
  margin: 0 auto;
}

.supporters-section__note {
  color: var(--color-neutral-600);
  font-size: 0.875rem;
  margin-top: 0.5rem;
}

.supporters-section__note a {
  color: var(--ghost-accent-color);
  text-decoration: none;
}

.supporters-section__note a:hover {
  text-decoration: underline;
}

/* Tier Badge */
/* Unified tier badges - neutral with pink accent */
.tier-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  font-size: 0.8125rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: var(--color-neutral-100);
  color: var(--color-text);
  border: 1px solid var(--color-border);
}

.tier-badge::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--ghost-accent-color);
  border-radius: 50%;
  flex-shrink: 0;
}

.tier-badge svg {
  display: none; /* Hide SVG icons, use pink dot instead */
}

/* All tier variants now share same base styling */
.tier-badge--lead,
.tier-badge--major,
.tier-badge--supporting,
.tier-badge--unknown,
.tier-badge--community {
  background: var(--color-neutral-100);
  color: var(--color-text);
  border: 1px solid var(--color-border);
}

.tier-badge--tribute {
  background: var(--tribute-bg);
  color: var(--color-text);
  border: 1px solid var(--tribute-border);
}

.tier-badge--tribute::before {
  background: var(--tribute-accent);
}

/* ================================
   ANCHOR PARTNER SPOTLIGHT
   ================================ */

.anchor-partner-spotlight {
  margin-bottom: 3rem;
  text-align: center;
}

.anchor-partner-spotlight__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--color-neutral-100);
  color: var(--color-text);
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  margin-bottom: 1.25rem;
  border: 1px solid var(--color-border);
}

.anchor-partner-spotlight__badge::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--ghost-accent-color);
  border-radius: 50%;
}

.anchor-partner-spotlight__card {
  display: flex;
  align-items: center;
  gap: 2rem;
  background: white;
  border: 2px solid var(--color-neutral-200);
  border-radius: 16px;
  padding: 2rem;
  text-decoration: none;
  text-align: left;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.anchor-partner-spotlight__card:hover {
  transform: translateY(-2px);
  border-color: var(--ghost-accent-color);
  box-shadow: 0 8px 24px rgba(237, 0, 142, 0.1);
}

.anchor-partner-spotlight__logo {
  flex-shrink: 0;
  width: 180px;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.anchor-partner-spotlight__logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.anchor-partner-spotlight__content {
  flex: 1;
}

.anchor-partner-spotlight__name {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--color-text);
  margin: 0 0 0.75rem 0;
}

.anchor-partner-spotlight__desc {
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--color-text-acc);
  margin: 0 0 1.25rem 0;
}

.anchor-partner-spotlight__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--ghost-accent-color);
  transition: color 0.2s;
}

.anchor-partner-spotlight__card:hover .anchor-partner-spotlight__link {
  color: #c4006f;
}

/* Dark mode for anchor spotlight */
[data-color-scheme="dark"] .anchor-partner-spotlight__card {
  background: var(--color-bg-acc);
  border-color: var(--color-border);
}

/* Responsive */
@media (max-width: 640px) {
  .anchor-partner-spotlight__card {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
  }

  .anchor-partner-spotlight__logo {
    width: 140px;
    height: 140px;
  }

  .anchor-partner-spotlight__name {
    font-size: 1.5rem;
  }

  .anchor-partner-spotlight__desc {
    font-size: 1rem;
  }
}

/* ================================
   FOUNDATION TIERS
   ================================ */

.foundation-tier {
  margin-bottom: 3rem;
  text-align: center;
}

.foundation-tier:last-child {
  margin-bottom: 0;
}

.foundation-tier__header {
  text-align: center;
  margin-bottom: 1.5rem;
}

.foundation-tier__title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 0.25rem;
}

.foundation-tier__amount {
  font-size: 1rem;
  color: var(--color-grey-dark);
}

.foundation-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
}

.foundation-card {
  background: white;
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.2s ease;
  text-decoration: none;
  display: block;
}

.foundation-card:hover {
  border-color: var(--ghost-accent-color);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

.foundation-card__logo {
  width: 100%;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  background: white;
  border-radius: 8px;
  padding: 0.5rem;
}

.foundation-card__logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.foundation-card__logo-placeholder {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--ghost-accent-color) 0%, #ff4ebc 100%);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
}

.foundation-card__name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  color: var(--color-text);
  margin-bottom: 0.25rem;
  line-height: 1.3;
}

.foundation-card__link {
  font-size: 0.8125rem;
  color: var(--ghost-accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
}

.foundation-card__link svg {
  opacity: 0.7;
}

/* ================================
   TRIBUTE SECTION (Option 1)
   ================================ */

.tribute-section {
  background: white;
  border: 2px dashed var(--tribute-border);
  border-radius: 16px;
  padding: 2.5rem;
  margin: 2rem auto;
  max-width: 100%;
}

.tribute-section__header {
  text-align: center;
  margin-bottom: 2rem;
}

.tribute-section__title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 0.5rem;
}

.tribute-section__subtitle {
  font-size: 0.9375rem;
  color: var(--color-grey-dark);
}

.tribute-section__cta {
  text-align: center;
  margin-top: 1.5rem;
  font-size: 0.9375rem;
  color: var(--color-grey-dark);
  font-family: var(--font-body);
}

.tribute-section__cta a {
  color: var(--ghost-accent-color);
  text-decoration: none;
  font-weight: 500;
}

.tribute-section__cta a:hover {
  text-decoration: underline;
}

.tribute-columns {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.tribute-column {
  background: var(--color-bg);
  border-radius: 12px;
  padding: 1.5rem;
  border: 1px solid var(--tribute-border);
}

.tribute-column__header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--tribute-border);
}

.tribute-column__icon {
  font-size: 1.25rem;
}

.tribute-column__title {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-text);
}

.tribute-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.875rem;
}

.tribute-item {
  padding: 0.75rem;
  background: var(--color-bg-acc);
  border-radius: 8px;
  transition: background 0.2s ease;
}

.tribute-item:hover {
  background: var(--tribute-bg);
}

.tribute-item__honoree {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--color-text);
  margin-bottom: 0.25rem;
}

.tribute-item__donor {
  font-size: 0.8125rem;
  color: var(--color-grey-dark);
  font-style: italic;
}

/* ================================
   COMMUNITY SUPPORTERS
   ================================ */

.supporters-search {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.supporters-search__input-wrap {
  position: relative;
  flex: 1;
  min-width: 200px;
  max-width: 320px;
}

.supporters-search__icon {
  position: absolute;
  left: 0.875rem;
  top: 50%;
  transform: translateY(-50%);
  color: #9CA3AF;
  pointer-events: none;
}

.supporters-search__input {
  width: 100%;
  padding: 0.625rem 1rem 0.625rem 2.5rem;
  border: 1px solid #E5E7EB;
  border-radius: 6px;
  font-size: 0.875rem;
  background: #F9FAFB;
  color: var(--color-text);
  font-family: inherit;
  transition: all 0.2s ease;
}

.supporters-search__input::placeholder {
  color: #9CA3AF;
}

.supporters-search__input:focus {
  outline: none;
  border-color: var(--ghost-accent-color);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(237, 0, 142, 0.1);
}

.supporters-search__meta {
  font-size: 0.8125rem;
  color: var(--color-grey-dark);
}

.supporters-search__results {
  font-size: 0.8125rem;
  color: var(--ghost-accent-color);
  font-weight: 600;
  display: none;
}

.supporters-search__results.active {
  display: inline;
}

/* Year Tabs */
.year-tabs {
  margin-top: 1.5rem;
}

.year-tabs__nav {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--color-border);
}

.year-tab {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1rem;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: inherit;
  color: var(--color-text);
}

.year-tab:hover {
  border-color: var(--ghost-accent-color);
  background: rgba(237, 0, 142, 0.05);
}

.year-tab.active {
  background: var(--ghost-accent-color);
  border-color: var(--ghost-accent-color);
  color: #fff;
}

.year-tab__year {
  font-weight: 600;
  font-size: 0.9375rem;
}

.year-tab__count {
  font-size: 0.75rem;
  opacity: 0.7;
  background: rgba(0,0,0,0.1);
  padding: 0.125rem 0.5rem;
  border-radius: 100px;
}

.year-tab.active .year-tab__count {
  background: rgba(255,255,255,0.2);
  opacity: 1;
}

.year-tabs__panels {
  position: relative;
}

.year-panel {
  display: none;
  animation: fadeIn 0.3s ease;
}

.year-panel.active {
  display: block;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.year-panel .supporters-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 0.5rem;
}

.supporter-name {
  padding: 0.625rem 1rem;
  background: var(--color-bg-acc);
  border-radius: 6px;
  font-size: 0.9375rem;
  color: var(--color-text);
  transition: all 0.15s ease;
}

.supporter-name:hover {
  background: var(--color-border);
  transform: translateX(4px);
}

.supporter-name--anon {
  font-style: italic;
  opacity: 0.7;
}

.supporter-name.highlight {
  background: rgba(237, 0, 142, 0.15);
  border: 1px solid var(--ghost-accent-color);
}

.supporter-name.dim {
  opacity: 0.3;
}

/* Giving Ladder */
.giving-ladder {
  background: var(--color-neutral-100);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 2rem;
  margin: 2rem auto;
  max-width: 900px;
}

.giving-ladder__header {
  text-align: center;
  margin-bottom: 1.5rem;
}

.giving-ladder__title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 0.5rem;
}

.giving-ladder__subtitle {
  font-size: 0.9375rem;
  color: var(--color-grey-dark);
}

.giving-ladder__items {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.giving-ladder__item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--color-bg);
  border: 2px solid var(--color-border);
  border-radius: 100px;
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  transition: all 0.2s ease;
  cursor: pointer;
}

.giving-ladder__item:hover {
  border-color: var(--ghost-accent-color);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(237, 0, 142, 0.15);
}

.giving-ladder__amount {
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--ghost-accent-color);
}

.giving-ladder__desc {
  font-size: 0.875rem;
  color: var(--color-text);
}

.giving-ladder__cta {
  text-align: center;
  margin-top: 1.5rem;
}

.giving-ladder__cta a {
  color: var(--ghost-accent-color);
  font-weight: 600;
  text-decoration: none;
}

.giving-ladder__cta a:hover {
  text-decoration: underline;
}

/* Certificate Callout */
.certificate-callout {
  background: white;
  border: 2px dashed var(--color-neutral-200);
  border-radius: 16px;
  padding: 2rem;
  margin: 2rem auto;
  max-width: 800px;
  text-align: center;
}

.certificate-callout__title {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 0.75rem;
}

.certificate-callout__benefits {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.certificate-callout__benefit {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-text);
}

.certificate-callout__benefit--check {
  background: transparent;
}

.certificate-callout__benefit--check svg {
  color: var(--ghost-accent-color);
}

.certificate-callout__giving {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.certificate-callout__amount {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1rem;
  background: #fce4f1;
  border-radius: 6px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #b5006b;
  text-decoration: none;
  transition: all 0.2s ease;
}

.certificate-callout__amount:hover {
  background: #f9d0e6;
  transform: translateY(-1px);
}

.certificate-callout__custom {
  text-align: center;
  margin-top: 0.75rem;
}

.certificate-callout__custom a {
  font-size: 0.9375rem;
  color: var(--color-grey-dark);
  text-decoration: none;
}

.certificate-callout__custom a:hover {
  color: var(--ghost-accent-color);
}

/* Supporters Note */
.supporters-note {
  background: transparent;
  padding: 0;
  margin-top: 1rem;
  font-size: 0.875rem;
  color: var(--color-grey-dark);
  text-align: center;
}

.supporters-note a {
  color: var(--ghost-accent-color);
  text-decoration: none;
}

.supporters-note a:hover {
  text-decoration: underline;
}

/* Join CTA */
.supporters-join {
  text-align: center;
  padding: 1.5rem;
  margin-top: 1rem;
  border-top: 1px solid var(--color-border);
}

.supporters-join__text {
  font-size: 0.9375rem;
  color: var(--color-grey-dark);
  font-family: var(--font-body);
}

.supporters-join__text a {
  color: var(--ghost-accent-color);
  font-weight: 600;
  text-decoration: none;
}

.supporters-join__text a:hover {
  text-decoration: underline;
}

.supporters-join__text--sans {
  font-family: var(--font-system, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif);
}

.supporters-join__contact {
  font-size: 0.8125rem;
  color: var(--color-grey-dark);
  margin-top: 0.5rem;
  font-style: italic;
}

.supporters-join__contact a {
  color: var(--ghost-accent-color);
  text-decoration: none;
}

.supporters-join__contact a:hover {
  text-decoration: underline;
}

/* Bottom CTA */
.supporters-bottom-cta {
  background: 
    radial-gradient(circle at 30% 70%, rgba(236, 0, 140, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 70% 30%, rgba(236, 0, 140, 0.1) 0%, transparent 40%),
    linear-gradient(135deg, #1a1a1a 0%, #2d1a2d 50%, #1a1a1a 100%);
  color: #fff;
  padding: 4rem 1.5rem;
  text-align: center;
}

.supporters-bottom-cta__title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
  margin-bottom: 1rem;
}

.supporters-bottom-cta__text {
  opacity: 0.9;
  max-width: 500px;
  margin: 0 auto 1.5rem;
  font-size: 1rem;
}

.supporters-bottom-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--ghost-accent-color);
  color: #fff;
  padding: 1rem 2rem;
  border-radius: 6px;
  font-weight: 600;
  font-size: 1.1rem;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.supporters-bottom-cta__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(236, 0, 140, 0.35);
}

/* Editorial Independence */
.editorial-independence {
  background: white;
  border-top: 1px solid var(--color-border);
  padding: 2rem 1.5rem;
  text-align: center;
}

.editorial-independence__content {
  max-width: 700px;
  margin: 0 auto;
}

.editorial-independence__title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 0.75rem;
}

.editorial-independence__text {
  font-size: 0.8125rem;
  color: var(--color-grey-dark);
  line-height: 1.7;
}

.editorial-independence__text a {
  color: var(--ghost-accent-color);
  text-decoration: none;
}

.editorial-independence__text a:hover {
  text-decoration: underline;
}

/* Tax Footer */
.tax-footer {
  background: var(--color-bg-acc);
  border-top: 1px solid var(--color-border);
  padding: 2rem 1.5rem;
  text-align: center;
}

.tax-footer__content {
  max-width: 700px;
  margin: 0 auto;
}

.tax-footer__text {
  font-size: 0.8125rem;
  color: var(--color-grey-dark);
  line-height: 1.7;
}

.tax-footer__text strong {
  color: var(--color-text);
}

.tax-footer__text a {
  color: var(--ghost-accent-color);
  text-decoration: none;
}

.tax-footer__text a:hover {
  text-decoration: underline;
}

/* Dark theme adjustments */
[data-color-scheme="dark"] .supporters-hero {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a0d1a 50%, #0a0a0a 100%);
}

[data-color-scheme="dark"] .foundation-card,
[data-color-scheme="dark"] .tribute-column {
  background: var(--color-bg-acc);
  border-color: var(--color-border);
}

[data-color-scheme="dark"] .foundation-card__logo {
  background: var(--color-bg);
}

[data-color-scheme="dark"] .year-tab {
  background: var(--color-bg-acc);
}

[data-color-scheme="dark"] .year-tab:hover {
  background: rgba(237, 0, 142, 0.15);
}

[data-color-scheme="dark"] .giving-ladder__item {
  background: var(--color-bg-acc);
}

/* Responsive */
@media (max-width: 768px) {
  .tribute-list {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .tribute-section {
    padding: 1.5rem;
  }
}

@media (max-width: 640px) {
  .supporters-hero {
    padding: 3rem 1rem 4rem;
  }

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

  .foundation-card {
    padding: 1.25rem;
  }
  
  .tribute-list {
    grid-template-columns: 1fr;
  }

  .foundation-card__logo {
    height: 60px;
  }

  .giving-ladder__items {
    flex-direction: column;
    align-items: center;
  }
  
  .giving-ladder__item {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
  
  .certificate-callout__benefits {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .supporters-list-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  
  .year-tabs__nav {
    gap: 0.375rem;
  }
  
  .year-tab {
    padding: 0.5rem 0.75rem;
  }
  
  .year-panel .supporters-list {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  }
}

@media (max-width: 480px) {
  .supporters-list-grid {
    grid-template-columns: 1fr !important;
  }
}
