  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  img { max-width: 100%; display: block; }
  :root {
    --red: #B22234;
    --red-dark: #8B1A27;
    --red-light: #D94F60;
    --blue: #1B3A6B;
    --blue-mid: #1E4D8C;
    --blue-light: #2563B0;
    --gold: #C8922A;
    --white: #FAFAFA;
    --off-white: #F0EDE8;
    --text-dark: #0D1821;
    --text-mid: #2E3A4A;
    --nav-height: 84px;
  }
  html { scroll-behavior: smooth; }
  body { font-family: 'Source Sans 3', sans-serif; background: var(--white); color: var(--text-dark); overflow-x: hidden; }
  a,
  a:visited,
  a:active {
    color: var(--blue);
    transition: color 0.2s ease;
  }
  a:hover {
    color: var(--gold);
  }

  /* NAV */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    background: var(--blue);
    display: flex; align-items: center; justify-content: flex-start;
    gap: 1.5rem;
    padding: 0 2rem; height: var(--nav-height);
    box-shadow: 0 1px 0 rgba(255,255,255,0.08);
  }
  .nav-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
    padding-top: 0.28rem;
  }
  .nav-logo img {
    width: clamp(280px, 30vw, 380px);
    height: auto;
    object-fit: contain;
    flex-shrink: 0;
    filter: drop-shadow(0 8px 18px rgba(8,18,33,0.22));
  }
  .nav-links {
    display: flex;
    gap: 1.35rem;
    list-style: none;
    align-items: center;
    justify-content: flex-start;
    margin-left: auto;
  }
  .nav-links a,
  .nav-links a:visited,
  .nav-links a:active { color: rgba(255,255,255,0.85); text-decoration: none; font-size: 0.85rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; transition: color 0.2s; }
  .nav-links a:hover { color: var(--gold); }
  .nav-cta,
  .nav-cta:visited,
  .nav-cta:active { background: var(--red); color: white; padding: 0.45rem 1.2rem; border-radius: 2px; font-size: 0.8rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; text-decoration: none; transition: background 0.2s; flex-shrink: 0; }
  .nav-cta:hover { background: var(--red-light); color: white; }
  .nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255,255,255,0.22);
    border-radius: 10px;
    background: transparent;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    flex-shrink: 0;
  }
  .nav-toggle span {
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: white;
    transition: transform 0.2s ease, opacity 0.2s ease;
  }
  nav.nav-open .nav-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  nav.nav-open .nav-toggle span:nth-child(2) {
    opacity: 0;
  }
  nav.nav-open .nav-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  /* HERO */
  .hero {
    min-height: 100vh;
    background: var(--blue);
    display: grid;
    grid-template-columns: 1fr;
    padding-top: var(--nav-height);
    position: relative;
    overflow: hidden;
  }
  .hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--blue-mid) 0%, var(--blue) 60%);
  }
  .hero-stars {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: radial-gradient(circle, rgba(255,255,255,0.07) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
  }
  .hero-inner {
    width: min(1240px, 100%);
    margin: 0 auto;
    padding: 5rem 3.5rem 4rem 4.5rem;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 430px);
    gap: clamp(2.5rem, 6vw, 6rem);
    align-items: center;
    position: relative;
    z-index: 2;
    min-height: calc(100vh - var(--nav-height));
  }
  .hero-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
  }
  .hero-heading {
    display: flex;
    align-items: flex-start;
    gap: 1.1rem;
    margin-bottom: 0.75rem;
  }
  .hero-badge {
    display: inline-block;
    background: var(--red);
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 0.4rem 1rem;
    margin-bottom: 2rem;
    border-radius: 1px;
  }
  .hero-name {
     font-family: 'Source Sans 3', sans-serif;
      font-size: 4.8rem;
     font-weight: 700;
     line-height: 0.92;
    color: white;
    margin-bottom: 0;
     letter-spacing: -0.03em;
  }
  .hero-name .first { color: white; }
  .hero-name .last { color: var(--gold); }
  .hero-district {
    font-size: 1.0rem;
    font-weight: 300;
    color: rgba(255,255,255,0.65);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 2.5rem;
    padding-left: 2px;
  }
  .hero-tagline {
    font-size: 1.4rem;
    font-weight: 300;
    color: rgba(255,255,255,0.9);
    line-height: 1.6;
    max-width: 34rem;
    margin-bottom: 3rem;
    border-left: 3px solid var(--red);
    padding-left: 1.2rem;
  }
  .hero-tagline strong { font-weight: 700; color: white; }
  .hero-buttons { display: flex; gap: 1rem; flex-wrap: wrap; }
  .hero-trust {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
    color: rgba(255,255,255,0.78);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }
  .hero-trust span {
    position: relative;
    padding-left: 1rem;
  }
  .hero-trust span::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold);
    transform: translateY(-50%);
  }
  .hero-right {
    position: relative;
  }
  .hero-mark {
    position: static;
    width: clamp(138px, 16vw, 190px);
    margin-top: 0.05rem;
    flex-shrink: 0;
    pointer-events: none;
    transform: rotate(11deg);
    transform-origin: center center;
  }
  .hero-mark img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 18px 34px rgba(8,18,33,0.28));
  }
  .hero-portrait-wrap {
    position: relative;
    padding-top: 1.75rem;
    z-index: 1;
  }
  .hero-portrait-wrap::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 72%;
    height: calc(100% - 2.5rem);
    border-radius: 28px;
    background: linear-gradient(160deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.02) 100%);
    border: 1px solid rgba(255,255,255,0.12);
  }
  .hero-portrait {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    background: linear-gradient(145deg, rgba(255,255,255,0.12) 0%, rgba(255,255,255,0.03) 100%);
    border: 1px solid rgba(255,255,255,0.18);
    box-shadow: 0 28px 60px rgba(8,18,33,0.34);
  }
  .hero-portrait img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    object-position: center top;
  }
  .hero-portrait-badge {
    position: absolute;
    right: 1.1rem;
    bottom: 1.1rem;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    padding: 0.9rem 1rem;
    border-radius: 16px;
    background: rgba(13,24,33,0.82);
    border: 1px solid rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
  }
  .hero-portrait-badge strong {
    font-size: 0.82rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.72);
  }
  .hero-portrait-badge span {
    font-family: 'Playfair Display', serif;
    font-size: 1.55rem;
    line-height: 1;
    color: white;
  }
  .hero-side-card {
    position: absolute;
    left: -2rem;
    bottom: 0.75rem;
    max-width: 240px;
    padding: 1rem 1.1rem;
    border-radius: 18px;
    background: linear-gradient(145deg, rgba(178,34,52,0.96) 0%, rgba(139,26,39,0.94) 100%);
    box-shadow: 0 18px 38px rgba(8,18,33,0.28);
  }
  .hero-side-card p {
    color: rgba(255,255,255,0.88);
    font-size: 0.92rem;
    line-height: 1.55;
  }
  .hero-side-card strong {
    display: block;
    margin-bottom: 0.45rem;
    color: white;
    font-size: 0.8rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }
  .btn-primary,
  .btn-primary:visited,
  .btn-primary:active {
    background: var(--red);
    color: white;
    padding: 0.9rem 2.2rem;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 2px;
    transition: background 0.2s, transform 0.15s;
    display: inline-block;
  }
  .btn-primary:hover { background: var(--red-light); color: white; transform: translateY(-1px); }
  .btn-outline,
  .btn-outline:visited,
  .btn-outline:active {
    background: transparent;
    color: white;
    padding: 0.9rem 2.2rem;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    border: 1.5px solid rgba(255,255,255,0.4);
    border-radius: 2px;
    transition: border-color 0.2s, background 0.2s;
    display: inline-block;
  }
  .btn-outline:hover { border-color: var(--gold); background: rgba(200,146,42,0.1); }
  /* STATS BAR */
  .stats-bar {
    background: var(--red);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
  }
  .stat-item {
    padding: 1.8rem 1.5rem;
    text-align: center;
    border-right: 1px solid rgba(255,255,255,0.2);
  }
  .stat-item:last-child { border-right: none; }
  .stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 900;
    color: white;
    line-height: 1;
    margin-bottom: 0.3rem;
  }
  .stat-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(255,255,255,0.8);
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }

  /* SECTION BASE */
  section { padding: 6rem 0; }
  .container { max-width: 1100px; margin: 0 auto; padding: 0 2.5rem; }
  .section-label {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 0.75rem;
  }
  .section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--blue);
    line-height: 1.15;
    margin-bottom: 1.5rem;
  }

  /* ABOUT */
  .about { background: var(--off-white); }
  .about-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 5rem; align-items: center; }
  .about-image-block {
    position: relative;
  }
  .about-image-frame {
    width: 100%;
    padding-bottom: 120%;
    background: linear-gradient(135deg, var(--blue) 0%, var(--blue-mid) 100%);
    border-radius: 2px;
    position: relative;
    overflow: hidden;
  }
  .about-accent {
    position: absolute;
    top: -10px;
    left: -10px;
    width: 80px;
    height: 80px;
    border-top: 5px solid var(--red);
    border-left: 5px solid var(--red);
  }
  .about-accent-br {
    position: absolute;
    bottom: -10px;
    right: -10px;
    width: 80px;
    height: 80px;
    border-bottom: 5px solid var(--gold);
    border-right: 5px solid var(--gold);
  }
  .about-img-label {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    background: rgba(27,58,107,0.9);
    color: rgba(255,255,255,0.7);
    text-align: center;
    font-size: 0.75rem;
    padding: 0.6rem;
    letter-spacing: 0.05em;
  }
  .about-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-mid);
    margin-bottom: 1.25rem;
  }
  .about-text p strong { color: var(--blue); }
  .about-quote {
    margin: 2rem 0;
    border-left: 4px solid var(--red);
    padding: 1rem 0 1rem 1.5rem;
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--blue);
    font-style: italic;
    line-height: 1.5;
  }

  /* ISSUES */
  .issues { background: var(--blue); overflow: hidden; }
  .issues .section-label { color: var(--gold); }
  .issues .section-title { color: white; }
  .issues-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 2rem;
  }
  .issues-intro {
    font-size: 1.02rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.72);
  }
  .issues-rail {
    margin-top: 3rem;
    padding-inline: 0.125rem;
    padding-bottom: 1rem;
    overflow-x: auto;
    scroll-snap-type: x proximity;
    scrollbar-width: thin;
    scrollbar-color: rgba(255,255,255,0.32) transparent;
  }
  .issues-rail::-webkit-scrollbar {
    height: 10px;
  }
  .issues-rail::-webkit-scrollbar-track {
    background: rgba(255,255,255,0.08);
  }
  .issues-rail::-webkit-scrollbar-thumb {
    background: rgba(255,255,255,0.32);
    border-radius: 999px;
  }
  .issues-grid {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(260px, 1fr);
    gap: 1rem;
    width: max-content;
    min-width: 100%;
  }
  .issue-card {
    background: var(--blue);
    padding: 2.5rem 2rem;
    position: relative;
    overflow: hidden;
    transition: background 0.25s;
    cursor: default;
    min-height: 100%;
    max-width: 320px;
    scroll-snap-align: start;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 2px;
  }
  .issue-card:hover { background: var(--blue-mid); }
  .issue-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 4px; height: 100%;
    background: var(--red);
    transition: width 0.25s;
  }
  .issue-card:hover::before { width: 6px; }
  .issue-icon {
    width: 48px; height: 48px;
    background: rgba(200,146,42,0.15);
    border-radius: 2px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 1.25rem;
    font-size: 1.5rem;
  }
  .issue-index {
    margin-bottom: 1rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.48);
  }
  .issue-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.75rem;
  }
  .issue-text { font-size: 0.9rem; color: rgba(255,255,255,0.65); line-height: 1.7; }

  /* ENDORSEMENTS */
  .endorsements { background: var(--white); }
  .endorsements-intro { font-size: 1.1rem; color: var(--text-mid); line-height: 1.7; max-width: 640px; margin-bottom: 3.5rem; }
  .endorse-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
  .endorse-card {
    border: 1.5px solid #E0D9D0;
    border-radius: 2px;
    padding: 1.75rem 1.5rem;
    position: relative;
    transition: border-color 0.2s, box-shadow 0.2s;
  }
  .endorse-card:hover { border-color: var(--blue); }
  .endorse-card::before {
    content: '\201C';
    position: absolute;
    top: -0.5rem; left: 1rem;
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    color: var(--red);
    line-height: 1;
  }
  .endorse-quote { font-size: 0.92rem; color: var(--text-mid); line-height: 1.7; margin-bottom: 1.2rem; padding-top: 1rem; }
  .endorse-name { font-weight: 700; color: var(--blue); font-size: 0.9rem; }
  .endorse-title-text { font-size: 0.8rem; color: #888; margin-top: 0.2rem; }

  /* EVENTS */
  .events { background: var(--off-white); }
  .events-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem; }
  .event-card {
    background: white;
    border-radius: 2px;
    overflow: hidden;
    border: 1.5px solid #E0D9D0;
    transition: transform 0.2s, border-color 0.2s;
  }
  .event-card:hover { transform: translateY(-3px); border-color: var(--blue); }
  .event-card-past {
    border-color: rgba(27,58,107,0.18);
    opacity: 0.72;
  }
  .event-card-past:hover {
    transform: none;
    border-color: rgba(27,58,107,0.18);
  }
  .event-card-placeholder {
    background: rgba(255,255,255,0.72);
    border-color: rgba(27,58,107,0.12);
  }
  .event-card-placeholder:hover {
    transform: none;
    border-color: rgba(27,58,107,0.12);
  }
  .event-header {
    background: var(--blue);
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
  }
  .event-card-past .event-header {
    background: rgba(27,58,107,0.84);
  }
  .event-card-placeholder .event-header {
    background: rgba(27,58,107,0.7);
  }
  .event-date-box {
    background: var(--red);
    border-radius: 2px;
    padding: 0.5rem 0.75rem;
    text-align: center;
    min-width: 52px;
  }
  .event-card-past .event-date-box {
    background: rgba(178,34,52,0.82);
  }
  .event-card-placeholder .event-date-box {
    background: rgba(178,34,52,0.7);
  }
  .event-month { font-size: 0.65rem; font-weight: 700; color: rgba(255,255,255,0.8); letter-spacing: 0.15em; text-transform: uppercase; }
  .event-day { font-family: 'Playfair Display', serif; font-size: 1.8rem; font-weight: 900; color: white; line-height: 1; }
  .event-name { font-weight: 600; color: white; font-size: 1rem; line-height: 1.3; }
  .event-body { padding: 1.25rem 1.5rem; }
  .events-news-link {
    max-width: 42rem;
    margin-bottom: 2rem;
    color: var(--text-mid);
    font-size: 1rem;
    line-height: 1.75;
  }
  .events-news-link a {
    font-weight: 700;
    text-decoration: none;
  }
  .event-detail { font-size: 0.85rem; color: #666; margin-bottom: 0.4rem; display: flex; align-items: center; gap: 0.4rem; }
  .event-detail span { color: var(--text-mid); }
  .event-read-more {
    margin-top: 0.75rem;
    font-size: 0.84rem;
    font-weight: 700;
  }
  .event-read-more a,
  .event-read-more a:visited,
  .event-read-more a:active {
    text-decoration: none;
  }
  .event-card-placeholder .event-body {
    color: rgba(13,24,33,0.72);
  }
  .event-card-placeholder .event-detail {
    color: rgba(46,58,74,0.74);
  }
  .event-card-placeholder .event-detail span,
  .event-card-placeholder .event-name,
  .event-card-placeholder .event-month,
  .event-card-placeholder .event-day {
    color: rgba(255,255,255,0.82);
  }
  .calendar-picker {
    margin-top: 1rem;
  }
  .calendar-menu {
    display: inline-block;
  }
  .calendar-menu summary {
    list-style: none;
    cursor: pointer;
    color: var(--blue);
    font-size: 0.85rem;
    font-weight: 700;
  }
  .calendar-menu summary::-webkit-details-marker {
    display: none;
  }
  .calendar-menu summary:hover {
    color: var(--gold);
  }
  .calendar-menu-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-top: 0.65rem;
    padding-top: 0.65rem;
    border-top: 1px solid rgba(27,58,107,0.12);
  }
  .calendar-menu-links a {
    font-size: 0.82rem;
    font-weight: 700;
    text-decoration: none;
  }
  .event-flyer-link,
  .event-flyer-link:visited,
  .event-flyer-link:active {
    display: block;
    width: 100%;
    margin-top: 1rem;
    padding: 0.85rem 1rem;
    border: 1.5px solid rgba(27,58,107,0.18);
    border-radius: 2px;
    background: rgba(27,58,107,0.03);
    color: var(--blue);
    font-size: 0.84rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-align: center;
    text-decoration: none;
    transition: border-color 0.2s, background 0.2s, color 0.2s;
  }
  .event-flyer-link:hover {
    border-color: var(--gold);
    background: rgba(200,146,42,0.08);
    color: var(--blue);
  }
  .event-ticket-link,
  .event-ticket-link:visited,
  .event-ticket-link:active {
    display: block;
    width: 100%;
    margin-top: 0.75rem;
    text-align: center;
  }

  /* GALLERY */
  .gallery {
    background:
      radial-gradient(circle at top right, rgba(200,146,42,0.1) 0, rgba(200,146,42,0) 28%),
      linear-gradient(180deg, #FBF8F3 0%, #FFFFFF 100%);
  }
  .gallery-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 2.5rem;
  }
  .gallery-intro {
    max-width: 42rem;
    font-size: 1.05rem;
    line-height: 1.75;
    color: var(--text-mid);
  }
  .issues-scroll-cue {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 1.5rem;
    padding: 0.55rem 0.9rem;
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 999px;
    color: rgba(255,255,255,0.72);
    background: rgba(255,255,255,0.05);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
  }
  .issues-scroll-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.7rem;
    height: 1.7rem;
    border-radius: 999px;
    background: rgba(200,146,42,0.16);
    color: var(--gold);
    font-size: 1rem;
    line-height: 1;
  }
  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
    align-items: stretch;
  }
  .gallery-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 0;
    padding: 0;
    text-align: left;
    background: white;
    border-radius: 18px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 18px 38px rgba(13,24,33,0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }
  .gallery-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 48px rgba(13,24,33,0.14);
  }
  .gallery-card:focus-visible {
    outline: 3px solid rgba(27,58,107,0.34);
    outline-offset: 4px;
  }
  .gallery-frame {
    position: relative;
    aspect-ratio: 4 / 3;
    width: 100%;
    overflow: hidden;
    background: linear-gradient(145deg, rgba(27,58,107,0.08) 0%, rgba(27,58,107,0.16) 100%);
  }
  .gallery-frame img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
  }
  .gallery-card:hover .gallery-frame img {
    transform: scale(1.04);
  }
  .gallery-card-body {
    display: grid;
    gap: 0.35rem;
    align-content: start;
    min-block-size: 8.9rem;
    flex: 1 1 auto;
    padding: 0.8rem 0.9rem 0.9rem;
  }
  .gallery-meta {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--red);
  }
  .gallery-title {
    display: -webkit-box;
    font-size: 0.94rem;
    font-weight: 700;
    color: var(--blue);
    line-height: 1.32;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }
  .gallery-description {
    display: -webkit-box;
    font-size: 0.72rem;
    line-height: 1.45;
    color: var(--text-mid);
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
  }
  .gallery-empty {
    grid-column: 1 / -1;
    padding: 2rem;
    border: 1.5px dashed rgba(27,58,107,0.24);
    border-radius: 18px;
    background: rgba(255,255,255,0.72);
    color: var(--text-mid);
    line-height: 1.7;
  }
  .gallery-empty strong {
    display: block;
    margin-bottom: 0.35rem;
    color: var(--blue);
  }
  .gallery-lightbox {
    position: fixed;
    inset: 0;
    z-index: 300;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background: rgba(7,12,20,0.84);
    backdrop-filter: blur(10px);
  }
  .gallery-lightbox[hidden] {
    display: none;
  }
  .gallery-lightbox-dialog {
    position: relative;
    width: min(1080px, 100%);
    max-height: calc(100vh - 4rem);
    display: grid;
    gap: 1rem;
    justify-items: center;
  }
  .gallery-lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    border: 0;
    border-radius: 999px;
    background: rgba(255,255,255,0.14);
    color: white;
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, transform 0.2s ease;
  }
  .gallery-lightbox-nav:hover {
    background: rgba(255,255,255,0.24);
  }
  .gallery-lightbox-nav:disabled {
    opacity: 0.35;
    cursor: default;
  }
  .gallery-lightbox-prev {
    left: 0;
  }
  .gallery-lightbox-next {
    right: 0;
  }
  .gallery-lightbox-close {
    position: absolute;
    top: -0.75rem;
    right: 0;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 999px;
    background: rgba(255,255,255,0.14);
    color: white;
    font-size: 1.8rem;
    line-height: 1;
    cursor: pointer;
  }
  .gallery-lightbox-image {
    max-width: 100%;
    max-height: calc(100vh - 9rem);
    border-radius: 18px;
    box-shadow: 0 24px 64px rgba(0,0,0,0.35);
  }
  .gallery-lightbox-copy {
    display: grid;
    gap: 0.35rem;
    justify-items: center;
    max-width: 760px;
  }
  .gallery-lightbox-title {
    color: white;
    font-size: 1.1rem;
    font-weight: 700;
    text-align: center;
    line-height: 1.4;
  }
  .gallery-lightbox-description {
    color: rgba(255,255,255,0.9);
    font-size: 0.92rem;
    text-align: center;
    line-height: 1.6;
  }

  /* PHOTO ARCHIVE */
  .photo-archive-hero {
    padding: calc(var(--nav-height) + 4.5rem) 0 4rem;
    background: linear-gradient(180deg, var(--blue-mid) 0%, var(--blue) 100%);
    position: relative;
    overflow: hidden;
  }
  .photo-archive-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255,255,255,0.08) 1px, transparent 1px);
    background-size: 42px 42px;
    opacity: 0.8;
  }
  .photo-archive-hero .container,
  .photo-archive-section .container {
    position: relative;
    z-index: 1;
  }
  .photo-archive-hero .section-label {
    color: rgba(255,255,255,0.72);
  }
  .photo-archive-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.2rem, 4.8vw, 3.5rem);
    line-height: 1.05;
    color: white;
  }
  .photo-archive-copy {
    max-width: 46rem;
    margin-top: 1.35rem;
    font-size: 1.12rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.84);
  }
  .photo-archive-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
  }
  .photo-outline-light,
  .photo-outline-light:visited,
  .photo-outline-light:active {
    color: white;
  }
  .photo-archive-section {
    padding: 2.5rem 0 6rem;
    background: linear-gradient(180deg, #FBF8F3 0%, #FFFFFF 100%);
  }
  .photo-archive-toolbar {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1.25rem 1.35rem;
    background: white;
    border: 1.5px solid #E0D9D0;
    border-radius: 2px;
  }
  .photo-toolbar-label {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 0.8rem;
  }
  .photo-filter-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
  }
  .photo-filter-chip {
    border: 1px solid rgba(27,58,107,0.14);
    border-radius: 2px;
    background: rgba(27,58,107,0.03);
    color: var(--blue);
    padding: 0.58rem 0.82rem;
    font: inherit;
    font-size: 0.8rem;
    font-weight: 700;
    cursor: pointer;
    transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
  }
  .photo-filter-chip:hover {
    border-color: var(--gold);
  }
  .photo-filter-chip:focus-visible {
    outline: 2px solid rgba(37,99,176,0.24);
    outline-offset: 2px;
  }
  .photo-filter-chip.active {
    background: var(--blue);
    border-color: var(--blue);
    color: white;
  }
  .photo-results-count {
    font-size: 0.84rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(27,58,107,0.68);
    white-space: nowrap;
  }

  /* DONATE */
  .donate {
    background: var(--red);
    text-align: center;
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
  }
  .donate::before {
    content: '';
    position: absolute;
    top: -80px; left: 50%;
    transform: translateX(-50%);
    width: 600px; height: 600px;
    border-radius: 50%;
    border: 60px solid rgba(255,255,255,0.06);
    pointer-events: none;
  }
  .donate-eyebrow { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.25em; text-transform: uppercase; color: rgba(255,255,255,0.7); margin-bottom: 1rem; }
  .donate-title { font-family: 'Playfair Display', serif; font-size: 3rem; font-weight: 900; color: white; margin-bottom: 1rem; }
  .donate-sub { font-size: 1.05rem; color: rgba(255,255,255,0.8); max-width: 500px; margin: 0 auto 3rem; line-height: 1.7; }
  .donate-amounts { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; margin-bottom: 2rem; }
  .donate-amount {
    background: rgba(255,255,255,0.15);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 2px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    border: 1.5px solid rgba(255,255,255,0.3);
    transition: background 0.2s;
  }
  .donate-amount:hover, .donate-amount.active { background: white; color: var(--red); border-color: white; }
  .btn-donate,
  .btn-donate:visited,
  .btn-donate:active {
    background: white;
    color: var(--red);
    padding: 1rem 3rem;
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 2px;
    display: inline-block;
    transition: transform 0.15s;
  }
  .btn-donate:hover { transform: translateY(-2px); }

  /* DONATE PAGE */
  body.donate-page {
    background: var(--off-white);
  }
  .donate-page-main {
    padding-top: var(--nav-height);
  }
  .donate-hero {
    background: var(--blue);
    position: relative;
    overflow: hidden;
    padding: 2.5rem 0 2.5rem;
  }
  .donate-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--blue-mid) 0%, var(--blue) 60%);
  }
  .donate-hero .container {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
  }
  .donate-hero .section-label {
    color: var(--gold);
  }
  .donate-page-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.2rem, 4.8vw, 3.5rem);
    font-weight: 900;
    line-height: 1.05;
    color: white;
    margin-bottom: 1rem;
  }
  .donate-page-intro {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.82);
  }
  .donate-embed-section {
    padding: 1.5rem 0 6rem;
    background: var(--off-white);
  }
  .donate-embed-shell {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
  }
  .donate-embed-copy {
    max-width: 720px;
    margin: 0 auto 2rem;
  }
  .donate-embed-copy p {
    font-size: 1.02rem;
    line-height: 1.75;
    color: var(--text-mid);
  }
  .donate-fallback,
  .donate-fallback:visited,
  .donate-fallback:active {
    display: inline-block;
    margin-top: 1.15rem;
    background: var(--red);
    color: white;
    text-decoration: none;
    padding: 0.95rem 1.45rem;
    border-radius: 2px;
    font-size: 0.84rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }
  .donate-fallback:hover {
    background: var(--red-light);
    color: white;
  }
  .donate-embed-frame-wrap {
    width: 100%;
    margin: 0 auto;
    background: var(--off-white);
    border: 0;
    border-radius: 0;
    overflow: visible;
    box-shadow: none;
  }
  .donate-frame {
    width: 100%;
    height: 2650px;
    border: 0;
    display: block;
    margin: 0 auto;
    background: transparent;
  }

  /* CONTACT */
  .contact { background: var(--white); }
  .contact-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 5rem; align-items: start; }
  .contact-form { display: grid; gap: 1.2rem; }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
  .form-field { display: flex; flex-direction: column; gap: 0.4rem; }
  .form-field label { font-size: 0.8rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--blue); }
  .form-field input, .form-field textarea, .form-field select {
    padding: 0.75rem 1rem;
    border: 1.5px solid #DDD;
    border-radius: 2px;
    font-size: 1rem;
    font-family: 'Source Sans 3', sans-serif;
    color: var(--text-dark);
    background: white;
    transition: border-color 0.2s;
    outline: none;
  }
  .form-field input:focus, .form-field textarea:focus, .form-field select:focus { border-color: var(--blue); }
  .form-field textarea { resize: vertical; min-height: 120px; }
  .btn-submit {
    background: var(--blue);
    color: white;
    padding: 0.9rem 2rem;
    border: none;
    border-radius: 2px;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.2s;
    width: 100%;
  }
  .btn-submit:hover { background: var(--blue-light); }
  .btn-submit:disabled { opacity: 0.7; cursor: wait; }
  .form-status {
    margin: 0;
    font-size: 0.92rem;
    line-height: 1.5;
  }
  .form-status-pending { color: var(--text-mid); }
  .form-status-success { color: #1b6b45; }
  .form-status-error { color: #a12626; }
  .contact-info { padding-top: 0.5rem; }
  .contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #EEE;
  }
  .contact-info-item:last-child { border-bottom: none; }
  .contact-icon {
    width: 42px; height: 42px;
    background: var(--blue);
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  .contact-detail strong { display: block; font-size: 0.8rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--blue); margin-bottom: 0.3rem; }
  .contact-detail p { font-size: 0.95rem; color: var(--text-mid); line-height: 1.6; }
  .contact-detail a,
  .contact-detail a:visited,
  .contact-detail a:active { color: var(--blue); text-decoration: none; }
  .contact-detail a:hover { color: var(--gold); }

  /* FOOTER */
  footer {
    background: var(--text-dark);
    color: rgba(255,255,255,0.5);
    text-align: center;
    padding: 2.5rem;
    font-size: 0.8rem;
    letter-spacing: 0.04em;
  }
  footer strong { color: rgba(255,255,255,0.8); }
  .footer-links { display: flex; justify-content: center; gap: 2rem; margin-bottom: 1rem; }
  .footer-links a,
  .footer-links a:visited,
  .footer-links a:active { color: rgba(255,255,255,0.5); text-decoration: none; font-size: 0.78rem; transition: color 0.2s; }
  .footer-links a:hover { color: var(--gold); }
  .flag-stripe { height: 6px; display: flex; }
  .fs-red { background: var(--red); flex: 1; }
  .fs-white { background: white; flex: 1; }
  .fs-blue { background: var(--blue); flex: 1; }

  @media (max-width: 1024px) {
    nav {
      padding: 0 1.5rem;
      gap: 1rem;
    }
    .nav-logo img {
      width: clamp(240px, 28vw, 320px);
    }
    .nav-links {
      gap: 1rem;
    }
    .hero-inner {
      padding: 4.5rem 2.5rem 3.5rem;
      grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
      gap: 2rem;
    }
    .hero-name {
      font-size: 4rem;
    }
    .hero-side-card {
      left: -1rem;
      bottom: 1rem;
    }
    .about-grid,
    .contact-grid {
      grid-template-columns: 1fr;
      gap: 3rem;
    }
    .endorse-grid,
    .events-grid,
    .gallery-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .issues-header {
      flex-direction: column;
      align-items: flex-start;
    }
    .issues-intro {
      max-width: 100%;
    }
    .issues-scroll-cue {
      margin-top: 1.25rem;
    }
    .issues-grid {
      grid-auto-columns: minmax(280px, 320px);
      min-width: max-content;
    }
  }

  @media (max-width: 780px) {
    html {
      scroll-padding-top: 1rem;
    }
    nav {
      position: static;
      height: auto;
      padding: 0.16rem 0.6rem;
      flex-wrap: nowrap;
      gap: 0.1rem 0.35rem;
    }
    nav.nav-open {
      flex-wrap: wrap;
    }
    .nav-logo {
      padding-top: 0;
      min-width: 0;
      flex: 1 1 auto;
      height: 32px;
      overflow: hidden;
    }
    .nav-logo img {
      width: min(72vw, 290px);
      max-width: none;
      height: auto;
    }
    .nav-links {
      display: none;
      order: 4;
      width: 100%;
      flex-direction: column;
      align-items: flex-start;
      justify-content: flex-start;
      gap: 0.85rem;
      margin-right: 0;
      padding: 0.4rem 0 0.15rem 0.9rem;
    }
    nav.nav-open .nav-links {
      display: flex;
    }
    .nav-links a,
    .nav-cta {
      font-size: 0.75rem;
    }
    .nav-cta {
      order: 2;
      margin-left: auto;
      padding: 0.32rem 0.78rem;
      font-size: 0.72rem;
      letter-spacing: 0.08em;
      line-height: 1;
      white-space: nowrap;
    }
    .nav-toggle {
      order: 3;
      display: inline-flex;
      width: 34px;
      height: 34px;
      border-radius: 8px;
      gap: 4px;
    }
    .hero {
      min-height: auto;
      padding-top: 0;
    }
    .hero-inner {
      min-height: auto;
      padding: 3.5rem 1.5rem 3rem;
      grid-template-columns: 1fr;
      gap: 2.25rem;
    }
    .hero-name {
      font-size: 4.3rem;
    }
    .hero-heading {
      gap: 0.9rem;
      align-items: flex-start;
    }
    .hero-district {
      font-size: clamp(0.92rem, 3vw, 1.05rem);
      letter-spacing: 0.08em;
      margin-bottom: 2rem;
      padding-left: 0;
      white-space: nowrap;
    }
    .hero-tagline {
      max-width: 100%;
      font-size: 1.2rem;
      line-height: 1.55;
      margin-bottom: 2rem;
    }
    .hero-right {
      max-width: 420px;
      width: 100%;
    }
    .hero-mark {
      width: min(168px, 31vw);
      margin-top: 0.2rem;
    }
    .hero-portrait-wrap {
      padding-top: 0;
    }
    .hero-portrait-wrap::before {
      width: 100%;
      height: 100%;
      right: auto;
      left: 0.75rem;
      top: 0.75rem;
    }
    .hero-side-card {
      left: auto;
      right: 1rem;
      bottom: 1rem;
      max-width: 210px;
    }
    .hero-buttons {
      flex-direction: column;
      align-items: stretch;
      width: 100%;
      max-width: 360px;
    }
    .hero-trust {
      gap: 1rem;
      font-size: 0.75rem;
    }
    .btn-primary,
    .btn-outline,
    .btn-donate {
      width: 100%;
      text-align: center;
    }
    .stats-bar {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .stat-item:nth-child(2) {
      border-right: none;
    }
    .stat-item:nth-child(-n + 2) {
      border-bottom: 1px solid rgba(255,255,255,0.2);
    }
    section {
      padding: 4.5rem 0;
    }
    .container {
      padding: 0 1.5rem;
    }
    .section-title {
      font-size: 2.2rem;
    }
    .about-image-block {
      max-width: 460px;
      width: 100%;
      margin: 0 auto;
    }
    .endorse-grid,
    .events-grid,
    .form-row {
      grid-template-columns: 1fr;
    }
    .issues-scroll-cue {
      width: 100%;
      justify-content: space-between;
    }
    .issues-rail {
      margin-inline: -1.5rem;
      padding-inline: 1.5rem;
      scroll-padding-inline: 1.5rem;
    }
    .gallery-head {
      flex-direction: column;
      align-items: flex-start;
      margin-bottom: 2rem;
    }
    .gallery-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .photo-archive-hero {
      padding: 3.5rem 0 2rem;
    }
    .photo-archive-toolbar {
      flex-direction: column;
      align-items: flex-start;
    }
    .photo-results-count {
      white-space: normal;
    }
    .contact-grid {
      gap: 3rem;
    }
    .donate {
      padding: 4rem 0;
    }
    .donate::before {
      width: 420px;
      height: 420px;
      border-width: 40px;
    }
    .donate-title {
      font-size: 2.35rem;
    }
    .donate-sub {
      margin-bottom: 2.25rem;
    }
    .donate-page-main {
      padding-top: 0;
    }
    .donate-hero {
      padding: 3.5rem 0 1.75rem;
    }
    .donate-page-title {
      font-size: 2.25rem;
    }
    .donate-page-intro {
      font-size: 1rem;
    }
    .donate-embed-section {
      padding: 1rem 0 4rem;
    }
    .donate-frame {
      height: 2650px;
    }
    .footer-links {
      flex-wrap: wrap;
      gap: 0.85rem 1.2rem;
    }
  }

  @media (max-width: 560px) {
    nav {
      padding: 0.12rem 0.46rem;
      gap: 0.08rem 0.26rem;
    }
    .nav-logo img {
      width: min(60vw, 280px);
      padding-top: 10px;
      height: auto;
    }
    .nav-logo {
      height: 50px;
    }
    .nav-links {
      padding-left: 1.5rem;
    }
    .nav-cta {
      padding: 0.28rem 0.64rem;
      font-size: 0.64rem;
    }
    .nav-toggle {
      width: 32px;
      height: 32px;
      border-radius: 6px;
    }
    .nav-toggle span {
      width: 16px;
    }
    .hero-inner {
      padding: 3rem 1rem 2.5rem 1.25rem;
    }
    .hero-mark {
      width: min(148px, 34vw);
      margin-top: 0.15rem;
    }
    .hero-badge {
      font-size: 0.62rem;
      letter-spacing: 0.16em;
      padding: 0.4rem 0.8rem;
      margin-bottom: 1.4rem;
    }
    .hero-name {
      font-size: 3.9rem;
    }
    .hero-heading {
      gap: 0.65rem;
    }
    .hero-tagline {
      font-size: 1.05rem;
      padding-left: 1rem;
    }
    .hero-trust {
      flex-direction: column;
      gap: 0.7rem;
      align-items: flex-start;
    }
    .hero-portrait {
      border-radius: 22px;
    }
    .hero-portrait-badge {
      right: 0.85rem;
      bottom: 0.85rem;
      padding: 0.75rem 0.85rem;
    }
    .hero-portrait-badge span {
      font-size: 1.25rem;
    }
    .hero-side-card {
      position: static;
      max-width: none;
      margin-top: 1rem;
    }
    .btn-primary,
    .btn-outline,
    .btn-submit,
    .btn-donate {
      padding-left: 1.2rem;
      padding-right: 1.2rem;
    }
    .stats-bar {
      grid-template-columns: 1fr;
    }
    .stat-item {
      border-right: none;
      border-bottom: 1px solid rgba(255,255,255,0.2);
    }
    .stat-item:last-child {
      border-bottom: none;
    }
    .container {
      padding: 0 1rem;
    }
    .donate-hero .container,
    .donate-embed-shell {
      padding-left: 1rem;
      padding-right: 1rem;
    }
    .donate-embed-frame-wrap {
      border-radius: 0;
    }
    .donate-frame {
      height: 2650px;
    }
    .issues-rail {
      margin-inline: -1rem;
      padding-inline: 1rem;
      scroll-padding-inline: 1rem;
    }
    .issues-grid {
      grid-auto-columns: 84vw;
      gap: 0.85rem;
    }
    .issues-scroll-cue {
      padding: 0.5rem 0.8rem;
      font-size: 0.68rem;
      letter-spacing: 0.12em;
    }
    .section-title {
      font-size: 1.85rem;
    }
    .about-quote {
      font-size: 1.12rem;
      padding-left: 1rem;
    }
    .issue-card,
    .endorse-card,
    .event-body,
    .event-header {
      padding-left: 1.15rem;
      padding-right: 1.15rem;
    }
    .event-header {
      align-items: flex-start;
    }
    .gallery-grid {
      grid-template-columns: 1fr;
    }
    .gallery-card-body {
      min-block-size: 7.9rem;
    }
    .photo-archive-title {
      font-size: 2rem;
    }
    .photo-archive-copy {
      font-size: 1rem;
    }
    .photo-archive-toolbar {
      padding: 1rem;
    }
    .gallery-lightbox {
      padding: 1rem;
    }
    .gallery-lightbox-dialog {
      width: 100%;
      max-height: calc(100vh - 2rem);
    }
    .gallery-lightbox-nav {
      width: 42px;
      height: 42px;
      font-size: 1.55rem;
    }
    .gallery-lightbox-prev {
      left: 0.25rem;
    }
    .gallery-lightbox-next {
      right: 0.25rem;
    }
    .gallery-lightbox-image {
      max-height: calc(100vh - 7rem);
    }
    .donate-title {
      font-size: 2rem;
    }
    .donate-sub {
      font-size: 0.98rem;
    }
    .donate-amounts {
      gap: 0.75rem;
    }
    .donate-amount {
      width: calc(50% - 0.375rem);
      text-align: center;
      padding: 0.75rem 0.5rem;
    }
    .contact-info-item {
      gap: 0.85rem;
      margin-bottom: 1.5rem;
      padding-bottom: 1.5rem;
    }
    footer {
      padding: 2rem 1rem;
    }
  }