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

    :root {
      --gold: #D27A1E;
      --gold-light: #E8972E;
      --gold-pale: #F5E6CC;
      --navy: #0057A6;
      --navy-dark: #003D75;
      --cream: #FCF8F2;
      --cream-dark: #F0E9DD;
      --text: #1A1A1A;
      --text-mid: #444;
      --text-light: #888;
      --white: #ffffff;
      --font-display: 'Cormorant Garamond', serif;
      --font-body: 'DM Sans', sans-serif;
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: var(--font-body);
      color: var(--text);
      background: var(--white);
      overflow-x: hidden;
    }

    /* ======= NAVBAR ======= */
    nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 1000;
      padding: 0 60px;
      height: 80px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      background: transparent;
      transition: background 0.4s ease, backdrop-filter 0.4s ease, box-shadow 0.4s ease;
    }
    nav.scrolled {
      background: rgba(255,255,255,0.92);
      backdrop-filter: blur(20px);
      box-shadow: 0 1px 30px rgba(0,0,0,0.08);
    }
    .nav-logo {
      font-family: var(--font-display);
      font-size: 1.7rem;
      font-weight: 700;
      color: var(--white);
      text-decoration: none;
      letter-spacing: 0.5px;
      transition: color 0.3s;
    }
    nav.scrolled .nav-logo { color: var(--text); }
    .nav-links {
      display: flex;
      align-items: center;
      gap: 28px;
      list-style: none;
    }
    .nav-links a {
      font-size: 0.875rem;
      font-weight: 500;
      letter-spacing: 0.5px;
      color: rgba(255,255,255,0.9);
      text-decoration: none;
      transition: color 0.3s;
      text-transform: uppercase;
    }
    nav.scrolled .nav-links a { color: var(--text-mid); }
    .nav-links a:hover, nav.scrolled .nav-links a:hover { color: var(--gold); }

    .nav-mobile-toggle {
      display: none;
      background: none;
      border: none;
      cursor: pointer;
      flex-direction: column;
      gap: 5px;
    }
    .nav-mobile-toggle span {
      display: block;
      width: 24px;
      height: 2px;
      background: var(--white);
      transition: background 0.3s;
    }
    nav.scrolled .nav-mobile-toggle span { background: var(--text); }

    /* ======= HERO ======= */
    .hero {
      position: relative;
      height: 100vh;
      min-height: 700px;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
    }
    .hero-bg {
      position: absolute;
      inset: 0;
      background-image: url('https://images.unsplash.com/photo-1532629345422-7515f3d16bb6?w=1800&q=80');
      background-size: cover;
      background-position: center 40%;
      transform: scale(1.05);
      animation: heroZoom 12s ease forwards;
    }
    @keyframes heroZoom {
      from { transform: scale(1.05); }
      to   { transform: scale(1.0); }
    }
    .hero-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(160deg, rgba(0,20,50,0.72) 0%, rgba(0,40,80,0.55) 50%, rgba(210,122,30,0.25) 100%);
    }
    .hero-content {
      position: relative;
      z-index: 2;
      text-align: center;
      max-width: 860px;
      padding: 0 30px;
      animation: heroFadeUp 1.2s ease 0.3s both;
    }
    @keyframes heroFadeUp {
      from { opacity: 0; transform: translateY(40px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    .hero-eyebrow {
      font-family: var(--font-body);
      font-size: 0.8rem;
      font-weight: 600;
      letter-spacing: 4px;
      text-transform: uppercase;
      color: var(--gold-light);
      margin-bottom: 24px;
    }
    .hero h1 {
      font-family: var(--font-display);
      font-size: clamp(3rem, 7vw, 5.5rem);
      font-weight: 300;
      color: var(--white);
      line-height: 1.12;
      margin-bottom: 28px;
    }
    .hero h1 em {
      font-style: italic;
      color: var(--gold-light);
    }
    .hero p {
      font-size: 1.05rem;
      color: rgba(255,255,255,0.82);
      line-height: 1.75;
      max-width: 560px;
      margin: 0 auto 44px;
      font-weight: 300;
    }
    .hero-btns {
      display: flex;
      gap: 16px;
      justify-content: center;
      flex-wrap: wrap;
    }
    .btn-primary {
      padding: 15px 36px;
      background: var(--gold);
      color: var(--white);
      font-family: var(--font-body);
      font-size: 0.9rem;
      font-weight: 600;
      letter-spacing: 1px;
      text-transform: uppercase;
      text-decoration: none;
      border: none;
      cursor: pointer;
      border-radius: 4px;
      transition: all 0.3s ease;
      display: inline-block;
    }
    .btn-primary:hover {
      background: var(--gold-light);
      transform: translateY(-2px);
      box-shadow: 0 8px 30px rgba(210,122,30,0.4);
    }
    .btn-outline {
      padding: 14px 36px;
      background: transparent;
      color: var(--white);
      font-family: var(--font-body);
      font-size: 0.9rem;
      font-weight: 500;
      letter-spacing: 1px;
      text-transform: uppercase;
      text-decoration: none;
      border: 1.5px solid rgba(255,255,255,0.6);
      border-radius: 4px;
      transition: all 0.3s ease;
      display: inline-block;
    }
    .btn-outline:hover {
      border-color: var(--white);
      background: rgba(255,255,255,0.08);
    }
    .hero-scroll {
      position: absolute;
      bottom: 36px;
      left: 50%;
      transform: translateX(-50%);
      z-index: 2;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 8px;
      color: rgba(255,255,255,0.6);
      font-size: 0.7rem;
      letter-spacing: 2px;
      text-transform: uppercase;
      animation: scrollBounce 2s ease-in-out infinite;
    }
    .hero-scroll-line {
      width: 1px;
      height: 40px;
      background: linear-gradient(to bottom, rgba(255,255,255,0.6), transparent);
    }
    @keyframes scrollBounce {
      0%, 100% { transform: translateX(-50%) translateY(0); }
      50%       { transform: translateX(-50%) translateY(6px); }
    }

    /* ======= STATS BAR ======= */
    .stats-bar {
      background: var(--navy);
      padding: 28px 60px;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
    }
    .stat-item {
      text-align: center;
      animation: fadeIn 0.8s ease both;
    }
    .stat-item:nth-child(1) { animation-delay: 0.1s; }
    .stat-item:nth-child(2) { animation-delay: 0.2s; }
    .stat-item:nth-child(3) { animation-delay: 0.3s; }
    .stat-item:nth-child(4) { animation-delay: 0.4s; }
    @keyframes fadeIn {
      from { opacity: 0; transform: translateY(16px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    .stat-number {
      font-family: var(--font-display);
      font-size: 2.6rem;
      font-weight: 600;
      color: var(--gold-light);
      line-height: 1;
    }
    .stat-label {
      font-size: 0.78rem;
      font-weight: 500;
      color: rgba(255,255,255,0.65);
      letter-spacing: 1.5px;
      text-transform: uppercase;
      margin-top: 6px;
    }

    /* ======= SECTION SHARED ======= */
    section { padding: 100px 60px; }
    .section-eyebrow {
      font-size: 0.75rem;
      font-weight: 600;
      letter-spacing: 4px;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 14px;
    }
    .section-title {
      font-family: var(--font-display);
      font-size: clamp(2rem, 4vw, 3rem);
      font-weight: 400;
      line-height: 1.2;
      color: var(--text);
    }
    .section-title em { font-style: italic; color: var(--navy); }
    .section-subtitle {
      font-size: 1rem;
      color: var(--text-light);
      line-height: 1.8;
      max-width: 520px;
      margin-top: 16px;
      font-weight: 300;
    }

    /* ======= MISSION ======= */
    .mission {
      background: var(--cream);
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
    }
    .mission-text .section-title { margin-bottom: 24px; }
    .mission-text p {
      font-size: 1rem;
      color: var(--text-mid);
      line-height: 1.85;
      margin-bottom: 16px;
      font-weight: 300;
    }
    .mission-values {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
      margin-top: 36px;
    }
    .value-chip {
      padding: 12px 18px;
      background: var(--white);
      border-radius: 4px;
      font-size: 0.85rem;
      font-weight: 500;
      color: var(--navy);
      border-left: 3px solid var(--gold);
    }
    .mission-image {
      position: relative;
      height: 540px;
    }
    .mission-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 4px;
    }
    .mission-image-accent {
      position: absolute;
      bottom: -24px;
      left: -24px;
      width: 180px;
      height: 180px;
      border: 2px solid var(--gold);
      border-radius: 4px;
      z-index: -1;
    }

    /* ======= CAMPAIGNS ======= */
    .campaigns { background: var(--white); }
    .campaigns-header {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      margin-bottom: 52px;
    }
    .campaigns-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 28px;
    }
    .campaign-card {
      border-radius: 6px;
      overflow: hidden;
      background: var(--white);
      border: 1px solid #eee;
      transition: transform 0.35s ease, box-shadow 0.35s ease;
      text-decoration: none;
      color: inherit;
      display: block;
    }
    .campaign-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 20px 50px rgba(0,0,0,0.1);
    }
    .campaign-img {
      height: 210px;
      overflow: hidden;
      position: relative;
    }
    .campaign-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }
    .campaign-card:hover .campaign-img img { transform: scale(1.05); }
    .campaign-category {
      position: absolute;
      top: 14px;
      left: 14px;
      padding: 4px 12px;
      background: var(--navy);
      color: var(--white);
      font-size: 0.72rem;
      font-weight: 600;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      border-radius: 3px;
    }
    .campaign-body { padding: 22px 22px 26px; }
    .campaign-title {
      font-family: var(--font-display);
      font-size: 1.25rem;
      font-weight: 600;
      color: var(--text);
      margin-bottom: 10px;
      line-height: 1.35;
    }
    .campaign-desc {
      font-size: 0.875rem;
      color: var(--text-light);
      line-height: 1.7;
      margin-bottom: 20px;
      font-weight: 300;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }
    .campaign-progress-label {
      display: flex;
      justify-content: space-between;
      font-size: 0.78rem;
      font-weight: 600;
      color: var(--text-mid);
      margin-bottom: 8px;
    }
    .campaign-progress-bar {
      height: 5px;
      background: var(--cream-dark);
      border-radius: 10px;
      overflow: hidden;
      margin-bottom: 18px;
    }
    .campaign-progress-fill {
      height: 100%;
      background: linear-gradient(to right, var(--gold), var(--gold-light));
      border-radius: 10px;
      transition: width 1s ease;
    }
    .campaign-meta {
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
    .campaign-donors {
      font-size: 0.8rem;
      color: var(--text-light);
      font-weight: 400;
    }
    .campaign-donate-btn {
      padding: 8px 20px;
      background: var(--gold);
      color: var(--white);
      font-size: 0.8rem;
      font-weight: 600;
      text-decoration: none;
      border-radius: 3px;
      transition: background 0.3s;
    }
    .campaign-donate-btn:hover { background: var(--gold-light); }
    .campaigns-footer {
      text-align: center;
      margin-top: 52px;
    }

    /* Skeleton loaders */
    .skeleton-card {
      border-radius: 6px;
      overflow: hidden;
      border: 1px solid #eee;
      background: var(--white);
    }
    .skeleton-img {
      height: 210px;
      background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
      background-size: 200% 100%;
      animation: shimmer 1.5s infinite;
    }
    .skeleton-body { padding: 22px; }
    .skeleton-line {
      height: 14px;
      border-radius: 4px;
      margin-bottom: 12px;
      background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
      background-size: 200% 100%;
      animation: shimmer 1.5s infinite;
    }
    .skeleton-line.short { width: 60%; }
    .skeleton-line.medium { width: 80%; }
    @keyframes shimmer {
      0% { background-position: 200% 0; }
      100% { background-position: -200% 0; }
    }

    /* ======= HOW IT WORKS ======= */
    .how-it-works { background: var(--navy); }
    .how-it-works .section-eyebrow { color: var(--gold-light); }
    .how-it-works .section-title { color: var(--white); }
    .how-it-works .section-title em { color: var(--gold-light); }
    .steps-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 36px;
      margin-top: 60px;
    }
    .step-card {
      text-align: center;
      padding: 40px 24px;
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: 6px;
      background: rgba(255,255,255,0.04);
      transition: background 0.3s, transform 0.3s;
    }
    .step-card:hover {
      background: rgba(255,255,255,0.08);
      transform: translateY(-4px);
    }
    .step-number {
      font-family: var(--font-display);
      font-size: 3.5rem;
      font-weight: 300;
      color: var(--gold);
      line-height: 1;
      margin-bottom: 20px;
      opacity: 0.6;
    }
    .step-title {
      font-family: var(--font-display);
      font-size: 1.2rem;
      font-weight: 600;
      color: var(--white);
      margin-bottom: 12px;
    }
    .step-desc {
      font-size: 0.875rem;
      color: rgba(255,255,255,0.6);
      line-height: 1.75;
      font-weight: 300;
    }

    /* ======= CATEGORIES ======= */
    .categories { background: var(--cream); }
    .categories-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      margin-top: 52px;
    }
    .cat-card {
      position: relative;
      height: 220px;
      border-radius: 6px;
      overflow: hidden;
      cursor: pointer;
      text-decoration: none;
    }
    .cat-card img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }
    .cat-card:hover img { transform: scale(1.06); }
    .cat-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(0,30,70,0.8) 0%, rgba(0,0,0,0.15) 60%);
      transition: background 0.3s;
    }
    .cat-card:hover .cat-overlay {
      background: linear-gradient(to top, rgba(0,60,120,0.85) 0%, rgba(0,0,0,0.2) 60%);
    }
    .cat-content {
      position: absolute;
      bottom: 24px;
      left: 24px;
      right: 24px;
    }
    .cat-label {
      font-family: var(--font-display);
      font-size: 1.4rem;
      font-weight: 600;
      color: var(--white);
      margin-bottom: 4px;
    }
    .cat-count {
      font-size: 0.78rem;
      color: rgba(255,255,255,0.7);
      letter-spacing: 1px;
      text-transform: uppercase;
    }

    /* ======= IMPACT ======= */
    .impact { background: var(--white); overflow: hidden; }
    .impact-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
    }
    .impact-images {
      position: relative;
      height: 580px;
    }
    .impact-img-main {
      position: absolute;
      top: 0; left: 0;
      width: 75%;
      height: 80%;
      object-fit: cover;
      border-radius: 4px;
    }
    .impact-img-accent {
      position: absolute;
      bottom: 0; right: 0;
      width: 55%;
      height: 55%;
      object-fit: cover;
      border-radius: 4px;
      border: 5px solid var(--white);
    }
    .impact-badge {
      position: absolute;
      top: 40%;
      left: 60%;
      transform: translate(-50%, -50%);
      background: var(--gold);
      color: var(--white);
      padding: 20px 24px;
      border-radius: 4px;
      text-align: center;
      z-index: 2;
      box-shadow: 0 10px 40px rgba(210,122,30,0.35);
    }
    .impact-badge-number {
      font-family: var(--font-display);
      font-size: 2.4rem;
      font-weight: 700;
      line-height: 1;
    }
    .impact-badge-label {
      font-size: 0.72rem;
      font-weight: 600;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      opacity: 0.9;
      margin-top: 4px;
    }
    .impact-list {
      list-style: none;
      margin-top: 32px;
    }
    .impact-list li {
      display: flex;
      gap: 16px;
      padding: 20px 0;
      border-bottom: 1px solid #f0f0f0;
    }
    .impact-list li:last-child { border-bottom: none; }
    .impact-list-icon {
      width: 44px;
      height: 44px;
      background: var(--cream-dark);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }
    .impact-list-icon svg { width: 20px; height: 20px; fill: var(--gold); }
    .impact-list-title {
      font-size: 0.95rem;
      font-weight: 600;
      color: var(--text);
      margin-bottom: 4px;
    }
    .impact-list-desc {
      font-size: 0.85rem;
      color: var(--text-light);
      line-height: 1.65;
      font-weight: 300;
    }

    /* ======= SPONSORS ======= */
    .sponsors {
      background: var(--cream-dark);
      padding: 80px 60px;
    }
    .sponsors-header {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      margin-bottom: 52px;
    }
    .sponsors-header-left { }
    .sponsors-title-eyebrow {
      font-size: 0.75rem;
      font-weight: 600;
      letter-spacing: 4px;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 10px;
    }
    .sponsors-title-heading {
      font-family: var(--font-display);
      font-size: clamp(1.6rem, 3vw, 2.4rem);
      font-weight: 400;
      color: var(--text);
      line-height: 1.2;
    }
    .sponsors-title-heading em {
      font-style: italic;
      color: var(--navy);
    }
    .btn-sponsor {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 14px 30px;
      background: transparent;
      color: var(--navy);
      font-family: var(--font-body);
      font-size: 0.875rem;
      font-weight: 600;
      letter-spacing: 1px;
      text-transform: uppercase;
      text-decoration: none;
      border: 1.5px solid var(--navy);
      border-radius: 4px;
      transition: all 0.3s ease;
      white-space: nowrap;
    }
    .btn-sponsor svg {
      width: 16px;
      height: 16px;
      transition: transform 0.3s ease;
    }
    .btn-sponsor:hover {
      background: var(--navy);
      color: var(--white);
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(0,87,166,0.25);
    }
    .btn-sponsor:hover svg { transform: translateX(3px); }

    /* SPONSOR LOGOS */
    .sponsors-logos {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 36px;
      flex-wrap: wrap;
      margin-bottom: 44px;
      min-height: 120px;
    }
    .sponsor-item {
      display: flex;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      gap: 10px;
      width: 150px;
      text-decoration: none;
      transition: transform 0.3s ease;
    }
    .sponsor-item:hover { transform: translateY(-4px); }
    .sponsor-logo-box {
      width: 130px;
      height: 80px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: var(--white);
      border-radius: 6px;
      border: 1px solid rgba(0,0,0,0.08);
      padding: 12px 16px;
      filter: none;
      opacity: 1;
      transition: box-shadow 0.3s;
      box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    }
    .sponsor-item:hover .sponsor-logo-box {
      box-shadow: 0 6px 20px rgba(0,0,0,0.12);
    }
    .sponsor-logo-box img {
      max-width: 100%;
      max-height: 100%;
      object-fit: contain;
    }
    /* Text-based sponsor fallback */
    .sponsor-logo-text {
      font-family: var(--font-display);
      font-size: 1.1rem;
      font-weight: 700;
      color: var(--navy);
      text-align: center;
      line-height: 1.2;
    }
    .sponsor-name {
      font-size: 0.72rem;
      font-weight: 600;
      letter-spacing: 1px;
      text-transform: uppercase;
      color: var(--text-mid);
      text-align: center;
      transition: color 0.3s;
    }
    .sponsor-item:hover .sponsor-name { color: var(--navy); }

    /* Sponsors skeleton */
    .sponsor-skeleton {
      width: 130px;
      height: 80px;
      border-radius: 6px;
      background: linear-gradient(90deg, #e8e0d8 25%, #ddd5cc 50%, #e8e0d8 75%);
      background-size: 200% 100%;
      animation: shimmer 1.5s infinite;
    }

    /* Become a sponsor CTA strip */
    .sponsor-become-strip {
      margin-top: 52px;
      border-top: 1px solid rgba(0,0,0,0.08);
      padding-top: 44px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 30px;
      flex-wrap: wrap;
    }
    .sponsor-become-text { }
    .sponsor-become-text h3 {
      font-family: var(--font-display);
      font-size: 1.6rem;
      font-weight: 400;
      color: var(--text);
      margin-bottom: 6px;
    }
    .sponsor-become-text h3 em {
      font-style: italic;
      color: var(--gold);
    }
    .sponsor-become-text p {
      font-size: 0.9rem;
      color: var(--text-light);
      line-height: 1.65;
      max-width: 440px;
      font-weight: 300;
    }
    .sponsor-become-actions {
      display: flex;
      align-items: center;
      gap: 14px;
      flex-shrink: 0;
    }
    .btn-become-sponsor {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 15px 32px;
      background: var(--gold);
      color: var(--white);
      font-family: var(--font-body);
      font-size: 0.875rem;
      font-weight: 600;
      letter-spacing: 1px;
      text-transform: uppercase;
      text-decoration: none;
      border-radius: 4px;
      transition: all 0.3s ease;
      white-space: nowrap;
    }
    .btn-become-sponsor:hover {
      background: var(--gold-light);
      transform: translateY(-2px);
      box-shadow: 0 8px 28px rgba(210,122,30,0.38);
    }
    .btn-become-sponsor svg {
      width: 16px;
      height: 16px;
    }
    .sponsor-learn-link {
      font-size: 0.85rem;
      font-weight: 500;
      color: var(--text-mid);
      text-decoration: none;
      border-bottom: 1px solid transparent;
      transition: color 0.3s, border-color 0.3s;
      white-space: nowrap;
    }
    .sponsor-learn-link:hover {
      color: var(--gold);
      border-color: var(--gold);
    }
    .sponsor-perks {
      display: flex;
      gap: 28px;
      margin-top: 28px;
      flex-wrap: wrap;
    }
    .sponsor-perk {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 0.82rem;
      color: var(--text-mid);
      font-weight: 400;
    }
    .sponsor-perk-dot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--gold);
      flex-shrink: 0;
    }

    /* ======= TESTIMONIALS ======= */
    .testimonials { background: var(--white); }
    .testimonials-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 28px;
      margin-top: 56px;
    }
    .testimonial-card {
      padding: 36px;
      background: var(--cream);
      border-radius: 6px;
      border: 1px solid transparent;
      transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
    }
    .testimonial-card:hover {
      border-color: var(--gold-pale);
      transform: translateY(-4px);
      box-shadow: 0 16px 40px rgba(0,0,0,0.06);
    }
    .testimonial-quote {
      font-family: var(--font-display);
      font-size: 1.05rem;
      font-style: italic;
      color: var(--text);
      line-height: 1.75;
      margin-bottom: 28px;
      font-weight: 400;
    }
    .testimonial-author {
      display: flex;
      align-items: center;
      gap: 14px;
    }
    .testimonial-avatar {
      width: 46px;
      height: 46px;
      border-radius: 50%;
      object-fit: cover;
    }
    .testimonial-name {
      font-weight: 600;
      font-size: 0.9rem;
      color: var(--text);
    }
    .testimonial-role {
      font-size: 0.78rem;
      color: var(--text-light);
      margin-top: 2px;
    }

    /* ======= CTA SECTION ======= */
    .cta-section {
      position: relative;
      padding: 120px 60px;
      overflow: hidden;
      text-align: center;
    }
    .cta-bg {
      position: absolute;
      inset: 0;
      background-image: url('https://images.unsplash.com/photo-1488521787991-ed7bbaae773c?w=1800&q=80');
      background-size: cover;
      background-position: center;
    }
    .cta-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(0,40,100,0.88), rgba(210,122,30,0.6));
    }
    .cta-content {
      position: relative;
      z-index: 2;
      max-width: 680px;
      margin: 0 auto;
    }
    .cta-content .section-eyebrow { color: rgba(255,255,255,0.7); }
    .cta-title {
      font-family: var(--font-display);
      font-size: clamp(2.2rem, 4vw, 3.4rem);
      font-weight: 300;
      color: var(--white);
      line-height: 1.2;
      margin-bottom: 20px;
    }
    .cta-title em { font-style: italic; color: var(--gold-light); }
    .cta-desc {
      font-size: 1rem;
      color: rgba(255,255,255,0.8);
      line-height: 1.75;
      margin-bottom: 40px;
      font-weight: 300;
    }

    /* ======= FOOTER ======= */
    footer {
      background: #0d1520;
      color: rgba(255,255,255,0.7);
      padding: 80px 60px 36px;
    }
    .footer-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 50px;
      margin-bottom: 60px;
    }
    .footer-brand-name {
      font-family: var(--font-display);
      font-size: 1.8rem;
      font-weight: 700;
      color: var(--white);
      margin-bottom: 14px;
    }
    .footer-brand-desc {
      font-size: 0.875rem;
      line-height: 1.8;
      font-weight: 300;
      max-width: 280px;
    }
    .footer-contact {
      margin-top: 24px;
      font-size: 0.85rem;
      line-height: 2;
    }
    .footer-contact a { color: var(--gold-light); text-decoration: none; }
    .footer-col-title {
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--white);
      margin-bottom: 22px;
    }
    .footer-links { list-style: none; }
    .footer-links li { margin-bottom: 11px; }
    .footer-links a {
      font-size: 0.875rem;
      color: rgba(255,255,255,0.55);
      text-decoration: none;
      transition: color 0.3s;
      font-weight: 300;
    }
    .footer-links a:hover { color: var(--gold-light); }
    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,0.1);
      padding-top: 28px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 0.8rem;
      color: rgba(255,255,255,0.35);
    }
    .footer-bottom a { color: var(--gold); text-decoration: none; }

    /* ======= SCROLL ANIMATIONS ======= */
    .reveal {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }
    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }
    .reveal-delay-1 { transition-delay: 0.1s; }
    .reveal-delay-2 { transition-delay: 0.2s; }
    .reveal-delay-3 { transition-delay: 0.3s; }
    .reveal-delay-4 { transition-delay: 0.4s; }

    /* ======= RESPONSIVE ======= */
    @media (max-width: 1100px) {
      nav { padding: 0 30px; }
      section { padding: 80px 30px; }
      .stats-bar { padding: 24px 30px; }
      .campaigns-grid { grid-template-columns: repeat(2, 1fr); }
      .steps-grid { grid-template-columns: repeat(2, 1fr); }
      .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
      .sponsors { padding: 60px 30px; }
      .categories-grid { grid-template-columns: repeat(3, 1fr); }
    }
    @media (max-width: 768px) {
      nav { padding: 0 20px; }
      .nav-links { display: none; }
      .nav-links.open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 80px; left: 0; right: 0;
        background: rgba(255,255,255,0.97);
        padding: 24px 20px;
        gap: 18px;
        box-shadow: 0 8px 30px rgba(0,0,0,0.1);
      }
      .nav-links.open a { color: var(--text-mid) !important; }

      .nav-mobile-toggle { display: flex; }
      section { padding: 60px 20px; }
      .stats-bar { grid-template-columns: repeat(2, 1fr); padding: 20px; }
      .mission { grid-template-columns: 1fr; gap: 40px; }
      .mission-image { height: 320px; }
      .campaigns-grid { grid-template-columns: 1fr; }
      .steps-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
      .categories-grid { grid-template-columns: 1fr 1fr; }
      .impact-inner { grid-template-columns: 1fr; }
      .impact-images { height: 320px; }
      .testimonials-grid { grid-template-columns: 1fr; }
      .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
      .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
      .sponsors { padding: 50px 20px; }
      .sponsors-header { flex-direction: column; align-items: flex-start; gap: 20px; }
      .campaigns-header { flex-direction: column; align-items: flex-start; gap: 20px; }
      .cta-section { padding: 80px 20px; }
      .sponsor-become-strip { flex-direction: column; align-items: flex-start; }
      .sponsor-become-actions { flex-wrap: wrap; }
      .sponsor-perks { gap: 16px; }
      .sponsor-logo-box { width: 110px; height: 70px; }
      .sponsor-item { width: 130px; }
    }
