
  :root {
    --navy: #1a1f5e;
    --navy-deep: #131845;
    --sage: #7a9968;
    --sage-dark: #6b8859;
    --lime: #c4e552;
    --lime-bright: #d0ef5e;
    --cream: #f5f3ec;
    --lavender: #e8e6f0;
    --ink: #0d1133;
    --white: #ffffff;
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Inter', sans-serif;
    background: #d8d6cf;
    color: var(--ink);
    line-height: 1.5;
    padding: 40px 20px;
  }

  /* ===== MOCKUP FRAME ===== */
  .mockup-intro {
    max-width: 1200px;
    margin: 0 auto 60px;
    text-align: center;
    font-family: 'Archivo', sans-serif;
  }
  .mockup-intro h1 {
    font-size: 32px;
    font-weight: 900;
    color: var(--navy);
    letter-spacing: -1px;
    margin-bottom: 8px;
  }
  .mockup-intro p {
    color: #555;
    font-size: 15px;
  }

  .page-label {
    max-width: 1200px;
    margin: 60px auto 16px;
    display: flex;
    align-items: center;
    gap: 16px;
    font-family: 'Archivo', sans-serif;
  }
  .page-label .num {
    background: var(--navy);
    color: var(--lime);
    font-weight: 900;
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    font-size: 14px;
  }
  .page-label .name {
    font-size: 20px;
    font-weight: 800;
    color: var(--navy);
    letter-spacing: -0.5px;
  }
  .page-label .line {
    flex: 1;
    height: 1px;
    background: rgba(26, 31, 94, 0.2);
  }

  .page {
    max-width: 1200px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.12);
  }

  /* ===== HEADER (shared) ===== */
  .nav {
    background: var(--ink);
    padding: 18px 48px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .logo-lockup {
    height: 64px;
    width: auto;
    display: block;
    object-fit: contain;
  }
  .footer .logo-lockup {
    height: 72px;
    margin-bottom: 16px;
  }
  .nav-links {
    display: flex;
    gap: 32px;
    align-items: center;
  }
  .nav-links a {
    color: white;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s;
  }
  .nav-links a:hover { color: var(--lime); }
  .nav-links a.donate-btn {
    background: var(--lime);
    color: var(--navy);
    padding: 10px 22px;
    border-radius: 100px;
    font-weight: 700;
  }

  /* ===== HERO (Home) ===== */
  .hero {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    min-height: 540px;
  }
  .hero-text {
    background: var(--sage);
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: white;
    position: relative;
    overflow: hidden;
  }
  .hero-text::before {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 200px;
    height: 200px;
    background: var(--sage-dark);
    border-radius: 50%;
    opacity: 0.5;
  }
  .hero-eyebrow {
    font-family: 'Archivo', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
    opacity: 0.85;
    position: relative;
  }
  .hero h1 {
    font-family: 'Archivo', sans-serif;
    font-weight: 900;
    font-size: 52px;
    line-height: 1.02;
    letter-spacing: -1.5px;
    margin-bottom: 24px;
    position: relative;
  }
  .hero h1 em {
    font-style: italic;
    font-weight: 800;
    color: var(--lime);
  }
  .hero p {
    font-size: 16px;
    line-height: 1.65;
    margin-bottom: 32px;
    max-width: 440px;
    position: relative;
  }
  .btn-outline {
    display: inline-block;
    border: 2px solid white;
    color: white;
    background: transparent;
    padding: 14px 32px;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    width: fit-content;
    position: relative;
    transition: all 0.2s;
  }
  .btn-outline:hover { background: white; color: var(--sage-dark); }

  .hero-image {
    background-image: url('../img/home-hero.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
  }

  /* ===== STATS BAND ===== */
  .stats {
    background: var(--lime);
    padding: 70px 60px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    position: relative;
  }
  .stat { text-align: center; }
  .stat-num {
    font-family: 'Archivo', sans-serif;
    font-size: 72px;
    font-weight: 900;
    color: var(--navy);
    line-height: 1;
    letter-spacing: -2px;
    margin-bottom: 8px;
  }
  .stat-label {
    font-family: 'Archivo', sans-serif;
    font-weight: 600;
    color: var(--navy);
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
  }

  /* ===== CTA BAND ===== */
  .cta-band {
    background: var(--navy);
    color: white;
    padding: 90px 60px;
    text-align: center;
  }
  .cta-band h2 {
    font-family: 'Archivo', sans-serif;
    font-weight: 800;
    font-size: 44px;
    line-height: 1.1;
    margin-bottom: 12px;
    letter-spacing: -1px;
  }
  .cta-band h2 em {
    font-style: italic;
    color: var(--lime);
  }
  .cta-band-sub {
    font-size: 16px;
    opacity: 0.85;
    margin-bottom: 50px;
  }
  .cta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 800px;
    margin: 0 auto;
  }
  .cta-card h3 {
    font-family: 'Archivo', sans-serif;
    font-weight: 700;
    font-size: 22px;
    margin-bottom: 16px;
    color: var(--lime);
  }
  .cta-card p {
    font-size: 14px;
    line-height: 1.65;
    opacity: 0.9;
    margin-bottom: 28px;
  }

  /* ===== FOOTER (shared) ===== */
  .footer {
    background: var(--ink);
    color: white;
    padding: 50px 60px 30px;
  }
  .footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
  }
  .footer-grid h4 {
    font-family: 'Archivo', sans-serif;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--lime);
    margin-bottom: 16px;
  }
  .footer-grid p, .footer-grid a {
    font-size: 13px;
    color: rgba(255,255,255,0.75);
    text-decoration: none;
    display: block;
    margin-bottom: 8px;
    line-height: 1.6;
  }
  .footer-grid a:hover { color: var(--lime); }
  .footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: rgba(255,255,255,0.5);
  }

  /* ===== ABOUT PAGE ===== */
  .page-hero {
    background: var(--lime);
    padding: 100px 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
  }
  .page-hero h1 {
    font-family: 'Archivo', sans-serif;
    font-style: italic;
    font-weight: 800;
    font-size: 120px;
    line-height: 0.95;
    color: var(--navy);
    letter-spacing: -4px;
  }
  .page-hero .quote {
    border-left: 2px solid var(--navy);
    padding-left: 28px;
    color: var(--navy);
    font-size: 18px;
    line-height: 1.55;
    font-style: italic;
    font-weight: 500;
  }

  .story-section {
    padding: 90px 60px;
    background: var(--lavender);
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: start;
  }
  .story-text {
    color: var(--ink);
    font-size: 15px;
    line-height: 1.75;
  }
  .story-text p { margin-bottom: 18px; }
  .story-title {
    font-family: 'Archivo', sans-serif;
    font-style: italic;
    font-weight: 800;
    font-size: 100px;
    line-height: 0.95;
    color: var(--navy);
    letter-spacing: -3px;
  }

  .founder-card {
    background: white;
    padding: 32px;
    border-radius: 16px;
    margin-top: 60px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.06);
    display: grid;
    grid-template-columns: 130px 1fr;
    gap: 24px;
    align-items: center;
  }
  .founder-avatar {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center top;
    display: block;
  }
  .founder-name {
    font-family: 'Archivo', sans-serif;
    font-weight: 800;
    font-size: 20px;
    color: var(--navy);
    margin-bottom: 4px;
  }
  .founder-role {
    font-size: 13px;
    color: #666;
    margin-bottom: 8px;
  }
  .founder-quote {
    font-size: 13px;
    color: #444;
    font-style: italic;
  }

  /* ===== PROGRAMS PAGE ===== */
  .programs-hero {
    background: var(--navy);
    color: white;
    padding: 90px 60px;
    text-align: center;
  }
  .programs-hero .label {
    font-family: 'Archivo', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--lime);
    text-transform: uppercase;
    margin-bottom: 16px;
  }
  .programs-hero h1 {
    font-family: 'Archivo', sans-serif;
    font-weight: 900;
    font-size: 64px;
    line-height: 1.05;
    letter-spacing: -2px;
    max-width: 800px;
    margin: 0 auto;
  }
  .programs-hero h1 em {
    font-style: italic;
    color: var(--lime);
  }

  .programs-grid {
    padding: 80px 60px;
    background: var(--cream);
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
  .program-card {
    background: white;
    border-radius: 16px;
    padding: 40px;
    border: 2px solid transparent;
    transition: all 0.2s;
    position: relative;
    overflow: hidden;
  }
  .program-card:hover {
    border-color: var(--navy);
    transform: translateY(-4px);
  }
  .program-icon {
    width: 56px;
    height: 56px;
    background: var(--lime);
    border-radius: 14px;
    display: grid;
    place-items: center;
    margin-bottom: 24px;
    font-size: 28px;
  }
  .program-card h3 {
    font-family: 'Archivo', sans-serif;
    font-weight: 800;
    font-size: 24px;
    color: var(--navy);
    margin-bottom: 12px;
    letter-spacing: -0.5px;
  }
  .program-card p {
    font-size: 14px;
    line-height: 1.65;
    color: #444;
    margin-bottom: 20px;
  }
  .program-tag {
    display: inline-block;
    background: var(--sage);
    color: white;
    font-size: 11px;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 100px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
  }

  /* ===== CONTACT PAGE ===== */
  .contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 600px;
  }
  .contact-info {
    background: var(--navy);
    color: white;
    padding: 80px 60px;
  }
  .contact-info h1 {
    font-family: 'Archivo', sans-serif;
    font-weight: 900;
    font-size: 64px;
    line-height: 1;
    letter-spacing: -2px;
    margin-bottom: 8px;
  }
  .contact-info h1 em {
    font-style: italic;
    color: var(--lime);
  }
  .contact-info > p {
    opacity: 0.85;
    margin-bottom: 48px;
    max-width: 380px;
    line-height: 1.6;
  }
  .contact-item {
    margin-bottom: 28px;
    padding-bottom: 28px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }
  .contact-item:last-child {
    border-bottom: none;
  }
  .contact-item .label {
    font-family: 'Archivo', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--lime);
    margin-bottom: 8px;
  }
  .contact-item .value {
    font-size: 16px;
    font-weight: 500;
  }
  .contact-item .value a {
    color: var(--lime);
    text-decoration: none;
    transition: opacity 0.2s;
  }
  .contact-item .value a:hover {
    opacity: 0.8;
    text-decoration: underline;
  }

  .contact-form {
    background: var(--cream);
    padding: 80px 60px;
  }
  .contact-form h2 {
    font-family: 'Archivo', sans-serif;
    font-weight: 800;
    font-size: 28px;
    color: var(--navy);
    margin-bottom: 32px;
    letter-spacing: -0.5px;
  }
  .form-field {
    margin-bottom: 20px;
  }
  .form-field label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 1px;
  }
  .form-field input, .form-field textarea, .form-field select {
    width: 100%;
    padding: 14px 16px;
    border: 1.5px solid #d4d1c8;
    background: white;
    border-radius: 8px;
    font-family: inherit;
    font-size: 14px;
    color: var(--ink);
    transition: border-color 0.2s;
    appearance: none;
    -webkit-appearance: none;
  }
  .form-field select {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%231a1f5e' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 18px center;
    padding-right: 44px;
    cursor: pointer;
  }
  .form-field input:focus, .form-field textarea:focus, .form-field select:focus {
    outline: none;
    border-color: var(--navy);
  }
  .form-field textarea {
    min-height: 120px;
    resize: vertical;
  }
  .btn-primary {
    background: var(--navy);
    color: white;
    border: none;
    padding: 16px 40px;
    border-radius: 100px;
    font-family: inherit;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: background 0.2s;
  }
  .btn-primary:hover { background: var(--navy-deep); }

  /* ===== DONATE PAGE ===== */
  .donate-hero {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
    color: white;
    padding: 70px 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  .donate-hero::before {
    content: '$';
    position: absolute;
    font-family: 'Archivo', sans-serif;
    font-weight: 900;
    font-size: 400px;
    color: rgba(196, 229, 82, 0.05);
    top: -100px;
    right: -50px;
    line-height: 1;
  }
  .donate-hero .label {
    font-family: 'Archivo', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--lime);
    text-transform: uppercase;
    margin-bottom: 20px;
    position: relative;
  }
  .donate-hero h1 {
    font-family: 'Archivo', sans-serif;
    font-weight: 900;
    font-size: 72px;
    line-height: 1;
    letter-spacing: -2.5px;
    margin-bottom: 20px;
    position: relative;
  }
  .donate-hero h1 em {
    font-style: italic;
    color: var(--lime);
  }
  .donate-hero p {
    font-size: 17px;
    opacity: 0.9;
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.6;
    position: relative;
  }

  /* ===== DONATE: Wish List Flow ===== */
  .donate-hero .btn-lime,
  .needs-cta .btn-lime {
    display: inline-block;
    background: var(--lime);
    color: var(--navy);
    padding: 16px 32px;
    border-radius: 100px;
    text-decoration: none;
    font-family: 'Archivo', sans-serif;
    font-weight: 800;
    font-size: 15px;
    margin-top: 32px;
    transition: transform 0.15s;
    position: relative;
  }
  .donate-hero .btn-lime:hover,
  .needs-cta .btn-lime:hover { transform: translateY(-2px); }

  .how-it-works {
    padding: 60px 60px;
    background: var(--cream);
  }
  .how-it-works h2 {
    font-family: 'Archivo', sans-serif;
    font-weight: 800;
    font-size: 38px;
    color: var(--navy);
    text-align: center;
    margin-bottom: 8px;
    letter-spacing: -1px;
  }
  .how-it-works .sub {
    text-align: center;
    color: #555;
    margin-bottom: 56px;
    font-size: 15px;
  }
  .step-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    max-width: 1000px;
    margin: 0 auto;
  }
  .step {
    background: white;
    border-radius: 16px;
    padding: 40px 32px;
    text-align: center;
    position: relative;
  }
  .step-num {
    width: 48px;
    height: 48px;
    background: var(--navy);
    color: var(--lime);
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-family: 'Archivo', sans-serif;
    font-weight: 900;
    font-size: 20px;
    margin: 0 auto 20px;
  }
  .step h3 {
    font-family: 'Archivo', sans-serif;
    font-weight: 800;
    font-size: 20px;
    color: var(--navy);
    margin-bottom: 12px;
    letter-spacing: -0.3px;
  }
  .step p {
    font-size: 14px;
    line-height: 1.6;
    color: #444;
  }

  .needs-section {
    padding: 60px 60px;
    background: var(--lavender);
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
  }
  .needs-text .label {
    font-family: 'Archivo', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--navy);
    text-transform: uppercase;
    margin-bottom: 16px;
    opacity: 0.7;
  }
  .needs-text h2 {
    font-family: 'Archivo', sans-serif;
    font-weight: 900;
    font-size: 52px;
    line-height: 1;
    color: var(--navy);
    letter-spacing: -1.5px;
    margin-bottom: 24px;
  }
  .needs-text h2 em {
    font-style: italic;
    color: var(--sage-dark);
  }
  .needs-text > p {
    color: var(--ink);
    font-size: 15px;
    line-height: 1.65;
    margin-bottom: 20px;
  }
  .needs-list {
    list-style: none;
    padding: 0;
  }
  .needs-list li {
    font-size: 14px;
    color: var(--ink);
    padding: 12px 0 12px 28px;
    border-bottom: 1px solid rgba(26, 31, 94, 0.1);
    position: relative;
  }
  .needs-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--sage-dark);
    font-weight: 800;
  }
  .needs-list li:last-child { border-bottom: none; }

  .needs-cta {
    background: var(--navy);
    color: white;
    padding: 48px 36px;
    border-radius: 20px;
    text-align: center;
  }
  .needs-cta h3 {
    font-family: 'Archivo', sans-serif;
    font-weight: 800;
    font-size: 26px;
    color: var(--lime);
    margin-bottom: 12px;
    letter-spacing: -0.5px;
  }
  .needs-cta > p {
    font-size: 14px;
    opacity: 0.85;
    margin-bottom: 0;
  }
  .needs-cta .fine-print {
    font-size: 11px;
    opacity: 0.55;
    margin-top: 24px;
    line-height: 1.5;
  }

  /* ===== HELPER NOTES ===== */
  .design-note {
    max-width: 1200px;
    margin: 16px auto 0;
    padding: 12px 18px;
    background: rgba(26, 31, 94, 0.06);
    border-left: 3px solid var(--navy);
    font-size: 13px;
    color: #444;
    border-radius: 4px;
    font-family: 'Inter', sans-serif;
  }
  .design-note strong { color: var(--navy); }


  /* ===== TABBED INTERFACE ===== */
  .page { display: none; margin-bottom: 0; }
  .page.is-active { display: block; }

  .site-tabs {
    max-width: 1200px;
    margin: 0 auto 24px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    font-family: 'Archivo', sans-serif;
  }
  .site-tab {
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    color: var(--navy);
    background: var(--white);
    padding: 10px 22px;
    border-radius: 100px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.08);
    transition: all 0.18s;
  }
  .site-tab:hover { background: var(--lavender); }
  .site-tab.is-active {
    background: var(--navy);
    color: var(--lime);
  }

  /* highlight the active link inside the page nav */
  .nav-tab.is-current { color: var(--lime); }


  /* ===== ABOUT — Bay image band ===== */
  .about-bay { width: 100%; line-height: 0; }
  .about-bay img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    object-position: center 38%;
    display: block;
  }


  /* ===== HOME — Scripture band (under Take Action) ===== */
  .scripture-band {
    position: relative;
    width: 100%;
    min-height: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }
  .scripture-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    filter: grayscale(100%);
  }
  .scripture-band::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(13, 17, 51, 0.45);
  }
  .scripture-overlay {
    position: relative;
    z-index: 1;
    max-width: 860px;
    text-align: center;
    padding: 80px 32px;
  }
  .scripture-quote {
    font-family: 'Archivo', sans-serif;
    font-weight: 700;
    font-size: 38px;
    line-height: 1.25;
    color: var(--white);
    margin: 0 0 28px;
    text-wrap: balance;
  }
  .scripture-ref {
    font-family: 'Inter', sans-serif;
    font-size: 19px;
    color: rgba(255,255,255,0.9);
    letter-spacing: 0.5px;
  }
  @media (max-width: 700px) {
    .scripture-quote { font-size: 26px; }
    .scripture-overlay { padding: 56px 22px; }
  }


  /* ===== PROGRAMS — Needed Items ===== */
  .needed-items { padding: 88px 60px; background: var(--white); }
  .needed-head { max-width: 760px; margin: 0 auto 48px; text-align: center; }
  .needed-head .label { justify-content: center; }
  .needed-head h2 {
    font-family: 'Archivo', sans-serif;
    font-size: 46px; font-weight: 800; color: var(--navy);
    line-height: 1.05; margin: 12px 0 18px;
  }
  .needed-head h2 em { color: var(--sage-dark); font-style: italic; }
  .needed-intro { color: #444; font-size: 17px; line-height: 1.65; }

  .needed-cards {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
    max-width: 1100px; margin: 0 auto 72px;
  }
  .needed-card {
    background: var(--sage); color: var(--white);
    border-radius: 18px; padding: 36px 32px;
  }
  .needed-card h3 {
    font-family: 'Archivo', sans-serif; font-size: 24px; font-weight: 700;
    margin-bottom: 18px;
  }
  .needed-card p { font-size: 15px; line-height: 1.65; color: rgba(255,255,255,0.92); }
  .needed-card ul { list-style: none; padding: 0; margin: 0; }
  .needed-card li {
    font-size: 15px; line-height: 1.5; padding: 8px 0 8px 22px; position: relative;
    color: rgba(255,255,255,0.95);
  }
  .needed-card li::before {
    content: ''; position: absolute; left: 0; top: 15px;
    width: 8px; height: 8px; border-radius: 50%; background: var(--lime);
  }
  .needed-card--accent { background: var(--navy); }
  .needed-wl-btn {
    display: inline-block; margin-top: 22px;
    background: var(--lime); color: var(--navy);
    font-weight: 700; font-size: 14px; text-decoration: none;
    padding: 13px 26px; border-radius: 100px; transition: all 0.2s;
  }
  .needed-wl-btn:hover { background: var(--lime-bright); transform: translateY(-2px); }

  .wish-grid-title {
    text-align: center; font-family: 'Archivo', sans-serif;
    font-size: 22px; font-weight: 700; color: var(--navy);
    margin: 0 0 32px;
  }
  .wish-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px; max-width: 1100px; margin: 0 auto;
  }
  .wish-item {
    display: flex; gap: 16px; align-items: stretch;
    background: var(--white); border: 1.5px solid #e7e5dd; border-radius: 14px;
    padding: 16px; text-decoration: none; transition: all 0.18s;
  }
  .wish-item:hover {
    border-color: var(--sage); transform: translateY(-3px);
    box-shadow: 0 10px 24px rgba(26,31,94,0.08);
  }
  .wish-thumb {
    flex: 0 0 64px; width: 64px; height: 64px; border-radius: 10px;
    background: var(--cream); display: flex; align-items: center; justify-content: center;
    font-size: 30px;
  }
  .wish-body { display: flex; flex-direction: column; flex: 1; }
  .wish-body h4 {
    font-family: 'Inter', sans-serif; font-size: 15px; font-weight: 600;
    color: var(--navy); margin: 0 0 4px; line-height: 1.3;
  }
  .wish-body p { font-size: 12.5px; color: #6a6a6a; line-height: 1.45; margin: 0 0 10px; }
  .wish-foot {
    margin-top: auto; display: flex; align-items: center; justify-content: space-between;
    gap: 10px;
  }
  .wish-price {
    font-family: 'Archivo', sans-serif; font-weight: 800; font-size: 16px; color: var(--sage-dark);
  }
  .wish-cta { font-size: 12px; font-weight: 600; color: var(--navy); white-space: nowrap; }
  .wish-note {
    text-align: center; font-size: 12.5px; color: #999; margin: 28px auto 0; max-width: 700px;
  }
  @media (max-width: 900px) {
    .needed-cards { grid-template-columns: 1fr; }
    .needed-items { padding: 64px 24px; }
    .needed-head h2 { font-size: 36px; }
  }


  /* ===== HOME — Take Action (two-column) ===== */
  .take-action { background: var(--white); padding: 96px 60px; }
  .take-action-inner {
    max-width: 1200px; margin: 0 auto;
    display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center;
  }
  .take-action-text h2 {
    font-family: 'Archivo', sans-serif; font-weight: 800;
    font-size: 52px; line-height: 1.05; color: var(--ink);
    letter-spacing: -1px; margin: 0 0 28px;
  }
  .take-action-text h2 em { font-style: italic; color: var(--sage-dark); }
  .take-action-text p {
    font-size: 16.5px; line-height: 1.7; color: #3a3a3a; margin: 0 0 28px; max-width: 540px;
  }
  .ta-btn {
    display: inline-block; background: var(--navy); color: var(--white);
    font-family: 'Inter', sans-serif; font-weight: 600; font-size: 14px;
    letter-spacing: 1px; text-transform: uppercase; text-decoration: none;
    padding: 18px 44px; border-radius: 100px; margin-bottom: 44px;
    transition: all 0.2s;
  }
  .ta-btn:hover { background: var(--navy-deep); transform: translateY(-2px); }
  .take-action-text p:last-of-type { margin-bottom: 28px; }
  .ta-btn:last-child { margin-bottom: 0; }
  .take-action-photo {
    border-radius: 8px; overflow: hidden; align-self: stretch;
    min-height: 100%;
  }
  .take-action-photo img {
    width: 100%; height: 100%; max-height: 640px; object-fit: cover; display: block;
  }
  @media (max-width: 900px) {
    .take-action { padding: 64px 24px; }
    .take-action-inner { grid-template-columns: 1fr; gap: 40px; }
    .take-action-photo { order: -1; }
    .take-action-text h2 { font-size: 40px; }
    .take-action-photo img { max-height: 420px; }
  }


  /* ===== PROGRAMS — Recent Events showcase ===== */
  .recent-events { background: var(--navy); padding: 96px 60px; color: var(--white); }
  .recent-events-inner { max-width: 1180px; margin: 0 auto; }
  .re-head { max-width: 760px; margin: 0 auto 56px; text-align: center; }
  .re-head .label { justify-content: center; color: var(--lime); }
  .re-head h2 {
    font-family: 'Archivo', sans-serif; font-weight: 800;
    font-size: 46px; line-height: 1.05; margin: 12px 0 20px; color: var(--white);
  }
  .re-head h2 em { font-style: italic; color: var(--lime); }
  .re-intro { font-size: 17px; line-height: 1.7; color: rgba(255,255,255,0.85); margin: 0 0 28px; }
  .re-intro strong { color: var(--white); font-weight: 700; }
  .re-meta { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
  .re-chip {
    background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2);
    color: var(--white); font-size: 13px; font-weight: 500;
    padding: 9px 18px; border-radius: 100px;
  }
  .re-gallery {
    display: grid; grid-template-columns: 1.4fr 1fr; grid-template-rows: auto auto;
    gap: 18px;
  }
  .re-photo { margin: 0; border-radius: 16px; overflow: hidden; background: rgba(0,0,0,0.2); }
  .re-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
  .re-photo--tall { grid-row: span 2; }
  .re-photo--tall img { min-height: 100%; }
  .re-caption {
    text-align: center; font-size: 14px; color: rgba(255,255,255,0.6);
    margin: 32px auto 0; max-width: 640px; font-style: italic;
  }
  @media (max-width: 800px) {
    .recent-events { padding: 64px 24px; }
    .re-head h2 { font-size: 34px; }
    .re-gallery { grid-template-columns: 1fr 1fr; }
    .re-photo--tall { grid-row: span 1; grid-column: span 2; max-height: 460px; }
  }


  /* ===== DONATE — Zelle card ===== */
  .zelle-section { background: var(--sage); padding: 80px 60px; }
  .zelle-inner {
    max-width: 1120px; margin: 0 auto;
    display: grid; grid-template-columns: 1fr 460px; gap: 48px; align-items: stretch;
  }
  .zelle-photo { border-radius: 24px; overflow: hidden; min-height: 100%; }
  .zelle-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; display: block; }
  .zelle-card {
    background: var(--white); border-radius: 24px;
    padding: 48px 56px; text-align: center; width: 100%;
    box-shadow: 0 20px 50px rgba(13,17,51,0.10);
    display: flex; flex-direction: column; justify-content: center; align-self: stretch;
  }
  .zelle-card h2 {
    font-family: 'Archivo', sans-serif; font-weight: 800; font-size: 30px;
    color: var(--ink); margin: 0 0 28px;
  }
  .zelle-qr-link { display: inline-block; line-height: 0; }
  .zelle-card img { width: 230px; height: 230px; display: block; }
  .zelle-mark {
    font-family: 'Archivo', sans-serif; font-weight: 800; font-size: 26px;
    color: #6d1ed4; letter-spacing: -0.5px; margin: 22px 0 18px;
  }
  .zelle-instructions {
    font-size: 16px; line-height: 1.7; color: var(--navy); margin: 0;
  }
  .zelle-instructions strong { font-weight: 700; }
  .zelle-email { color: var(--sage-dark); font-size: 15px; }
  @media (max-width: 860px) {
    .zelle-inner { grid-template-columns: 1fr; gap: 28px; }
    .zelle-photo { max-height: 420px; }
  }
  @media (max-width: 600px) {
    .zelle-section { padding: 56px 20px; }
    .zelle-card { padding: 36px 28px; }
  }

