﻿    /* ============================================================
       CSS CUSTOM PROPERTIES
    ============================================================ */
    :root {
      --blue-dark:    #0d2a4e;
      --blue-mid:     #1a4480;
      --blue-light:   #2563a8;
      --orange:       #f07c1e;
      --orange-dark:  #d96712;
      --orange-light: #ffb347;
      --white:        #ffffff;
      --gray-50:      #f8f9fb;
      --gray-100:     #eef1f6;
      --gray-200:     #dde3ed;
      --gray-400:     #94a3b8;
      --gray-600:     #475569;
      --gray-800:     #1e293b;
      --text:         #1e293b;
      --radius-sm:    8px;
      --radius-md:    16px;
      --radius-lg:    24px;
      --shadow-sm:    0 2px 8px rgba(0,0,0,.08);
      --shadow-md:    0 8px 32px rgba(0,0,0,.12);
      --shadow-lg:    0 20px 60px rgba(0,0,0,.18);
      --transition:   .3s cubic-bezier(.4,0,.2,1);
      --max-w:        1200px;
    }

    /* ============================================================
       RESET & BASE
    ============================================================ */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; font-size: 16px; }
    body {
      font-family: 'Inter', sans-serif;
      color: var(--text);
      background: var(--white);
      overflow-x: hidden;
      line-height: 1.6;
    }
    img { max-width: 100%; display: block; }
    a   { text-decoration: none; color: inherit; }
    ul  { list-style: none; }

    /* ============================================================
       UTILITY
    ============================================================ */
    .container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
    .section-label {
      display: inline-block;
      font-size: .75rem;
      font-weight: 700;
      letter-spacing: .12em;
      text-transform: uppercase;
      color: var(--orange);
      margin-bottom: 12px;
    }
    .section-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2rem, 4vw, 3rem);
      font-weight: 800;
      color: var(--blue-dark);
      line-height: 1.15;
      margin-bottom: 20px;
    }
    .section-title.white { color: var(--white); }
    .body-text { font-size: 1.05rem; color: var(--gray-600); line-height: 1.8; }
    .body-text.white { color: rgba(255,255,255,.85); }

    /* Buttons */
    .btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 14px 32px;
      border-radius: 50px;
      font-weight: 700;
      font-size: .95rem;
      letter-spacing: .02em;
      cursor: pointer;
      border: none;
      transition: var(--transition);
      text-decoration: none;
      white-space: nowrap;
    }
    .btn-primary {
      background: var(--orange);
      color: var(--white);
      box-shadow: 0 4px 20px rgba(240,124,30,.35);
    }
    .btn-primary:hover {
      background: var(--orange-dark);
      transform: translateY(-2px);
      box-shadow: 0 8px 30px rgba(240,124,30,.5);
    }
    .btn-outline {
      background: transparent;
      color: var(--white);
      border: 2px solid rgba(255,255,255,.7);
    }
    .btn-outline:hover {
      background: rgba(255,255,255,.12);
      border-color: var(--white);
      transform: translateY(-2px);
    }
    .btn-blue {
      background: var(--blue-dark);
      color: var(--white);
      box-shadow: 0 4px 20px rgba(13,42,78,.25);
    }
    .btn-blue:hover { background: var(--blue-mid); transform: translateY(-2px); }
    .btn-lg { padding: 18px 44px; font-size: 1.05rem; }

    /* ============================================================
       SCROLL REVEAL
    ============================================================ */
    .reveal {
      opacity: 0;
      transform: translateY(32px);
      transition: opacity .7s ease, transform .7s ease;
    }
    .reveal.visible { opacity: 1; transform: translateY(0); }
    .reveal-left {
      opacity: 0;
      transform: translateX(-40px);
      transition: opacity .7s ease, transform .7s ease;
    }
    .reveal-left.visible { opacity: 1; transform: translateX(0); }
    .reveal-right {
      opacity: 0;
      transform: translateX(40px);
      transition: opacity .7s ease, transform .7s ease;
    }
    .reveal-right.visible { opacity: 1; transform: translateX(0); }

    /* ============================================================
       NAVIGATION
    ============================================================ */
    #navbar {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 1000;
      background: rgba(13,42,78,.97);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      border-bottom: 1px solid rgba(255,255,255,.06);
      transition: box-shadow var(--transition);
    }
    #navbar.scrolled { box-shadow: 0 4px 32px rgba(0,0,0,.3); }
    .nav-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 72px;
      gap: 24px;
    }
    .nav-logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
    .nav-logo img { height: 48px; width: auto; object-fit: contain; }
    .nav-links { display: flex; align-items: center; gap: 4px; }
    .nav-links a {
      color: rgba(255,255,255,.82);
      font-size: .9rem;
      font-weight: 500;
      padding: 8px 14px;
      border-radius: 6px;
      transition: var(--transition);
    }
    .nav-links a:hover { color: var(--white); background: rgba(255,255,255,.08); }
    .nav-links a.active { color: var(--white); font-weight: 600; background: rgba(255,255,255,.13); text-decoration: underline; text-underline-offset: 3px; text-decoration-color: rgba(240,124,30,.85); }
    .nav-links .btn-nav-donate {
      background: var(--orange);
      color: var(--white);
      font-weight: 700;
      padding: 9px 20px;
      border-radius: 50px;
      margin-left: 8px;
      box-shadow: 0 2px 12px rgba(240,124,30,.4);
    }
    .nav-links .btn-nav-donate:hover {
      background: var(--orange-dark);
      transform: translateY(-1px);
      box-shadow: 0 4px 18px rgba(240,124,30,.55);
    }
    .nav-toggle {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      padding: 6px;
      border: none;
      background: none;
      z-index: 1100;
    }
    .nav-toggle span {
      display: block;
      width: 26px; height: 2px;
      background: var(--white);
      border-radius: 2px;
      transition: var(--transition);
    }
    .nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .nav-toggle.open span:nth-child(2) { opacity: 0; }
    .nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
    .nav-mobile {
      display: none;
      flex-direction: column;
      background: var(--blue-dark);
      padding: 12px 24px 24px;
      border-top: 1px solid rgba(255,255,255,.08);
    }
    .nav-mobile.open { display: flex; }
    .nav-mobile a {
      color: rgba(255,255,255,.85);
      font-size: 1rem;
      font-weight: 500;
      padding: 14px 0;
      border-bottom: 1px solid rgba(255,255,255,.07);
      transition: color var(--transition);
    }
    .nav-mobile a:last-child { border-bottom: none; }
    .nav-mobile a:hover { color: var(--orange); }
    .nav-mobile a.active { color: var(--orange); font-weight: 600; }
    .nav-mobile .btn-nav-donate {
      margin-top: 16px;
      background: var(--orange);
      color: var(--white);
      border-radius: 50px;
      padding: 14px 24px;
      font-weight: 700;
      text-align: center;
      border-bottom: none;
    }

    /* Sticky donate */
    #stickyDonate {
      position: fixed;
      right: 20px; bottom: 20px;
      z-index: 1200;
      padding: 14px 18px;
      border-radius: 999px;
      font-size: .95rem;
      letter-spacing: .05em;
      animation: pulseBtn 2.4s ease-in-out infinite;
      box-shadow: 0 10px 24px rgba(0,0,0,.25);
      transition: transform .25s ease, box-shadow .25s ease;
    }
    #stickyDonate:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(0,0,0,.35); }
    @keyframes pulseBtn {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-3px); }
    }

    /* ============================================================
       HERO SLIDER
    ============================================================ */
    #hero {
      position: relative;
      height: 100vh;
      min-height: 600px;
      overflow: hidden;
    }
    .slider-track {
      position: absolute;
      inset: 0;
    }
    .slide {
      position: absolute;
      inset: 0;
      opacity: 0;
      transition: opacity 1.2s ease;
    }
    .slide.active { opacity: 1; }
    .slide-bg {
      width: 100%; height: 100%;
      background-size: cover;
      background-position: center;
      transform: scale(1.08);
      transition: transform 8s ease-out;
    }
    .slide.active .slide-bg { transform: scale(1); }
    .slide-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(
        110deg,
        rgba(13,42,78,.90) 0%,
        rgba(13,42,78,.70) 55%,
        rgba(13,42,78,.35) 100%
      );
    }

    /* Slider controls */
    .slider-dots {
      position: absolute;
      bottom: 88px;
      left: 50%;
      transform: translateX(-50%);
      z-index: 4;
      display: flex;
      gap: 10px;
    }
    .slider-dot {
      width: 10px; height: 10px;
      border-radius: 50%;
      background: rgba(255,255,255,.4);
      cursor: pointer;
      transition: background .3s ease, transform .3s ease;
      border: none;
      padding: 0;
    }
    .slider-dot.active {
      background: var(--orange);
      transform: scale(1.3);
    }
    .slider-prev,
    .slider-next {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      z-index: 4;
      background: rgba(255,255,255,.1);
      border: 1px solid rgba(255,255,255,.25);
      color: var(--white);
      width: 48px; height: 48px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: background .3s ease;
      backdrop-filter: blur(6px);
    }
    .slider-prev { left: 24px; }
    .slider-next { right: 24px; }
    .slider-prev:hover,
    .slider-next:hover { background: rgba(240,124,30,.5); border-color: var(--orange); }

    /* Hero content */
    .hero-content {
      position: relative;
      z-index: 3;
      height: 100%;
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding-top: 72px;
      padding-bottom: 72px;
      max-width: 760px;
    }
    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(240,124,30,.2);
      border: 1px solid rgba(240,124,30,.4);
      border-radius: 50px;
      padding: 6px 16px;
      font-size: .78rem;
      font-weight: 700;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: var(--orange-light);
      margin-bottom: 24px;
      animation: fadeDown .8s ease both;
    }
    .hero-badge::before {
      content: '';
      width: 8px; height: 8px;
      background: var(--orange);
      border-radius: 50%;
      animation: pulseDot 2s infinite;
    }
    @keyframes pulseDot {
      0%, 100% { opacity: 1; transform: scale(1); }
      50%       { opacity: .6; transform: scale(1.4); }
    }
    @keyframes fadeDown {
      from { opacity: 0; transform: translateY(-16px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(24px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    .hero-headline {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2.8rem, 5.5vw, 5rem);
      font-weight: 800;
      color: var(--white);
      line-height: 1.08;
      margin-bottom: 16px;
      animation: fadeUp .9s .2s ease both;
    }
    .hero-sub {
      font-size: clamp(1rem, 2vw, 1.2rem);
      color: rgba(255,255,255,.85);
      line-height: 1.7;
      margin-bottom: 40px;
      max-width: 580px;
      font-style: italic;
      animation: fadeUp .9s .4s ease both;
    }
    .hero-ctas {
      display: flex;
      flex-wrap: wrap;
      gap: 16px;
      animation: fadeUp .9s .6s ease both;
    }

    /* Scroll indicator */
    .hero-scroll {
      position: absolute;
      bottom: 36px;
      left: 50%;
      transform: translateX(-50%);
      z-index: 4;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 8px;
      color: rgba(255,255,255,.5);
      font-size: .7rem;
      letter-spacing: .1em;
      text-transform: uppercase;
      cursor: pointer;
    }
    .hero-scroll-line {
      width: 1px; height: 40px;
      background: linear-gradient(to bottom, rgba(255,255,255,.5), transparent);
      animation: scrollBob 2s ease-in-out infinite;
    }
    @keyframes scrollBob {
      0%, 100% { transform: scaleY(1); opacity: 1; }
      50%       { transform: scaleY(.6); opacity: .4; }
    }

    /* ============================================================
       ABOUT SECTION
    ============================================================ */
    #about {
      padding: 110px 0;
      background: var(--white);
    }
    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 72px;
      align-items: start;
    }
    .about-img-wrap {
      position: relative;
    }
    .about-img-wrap img {
      width: 100%;
      height: 580px;
      object-fit: cover;
      object-position: top;
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow-lg);
      transition: transform .5s ease;
    }
    .about-img-wrap:hover img { transform: scale(1.02); }
    .about-accent {
      position: absolute;
      bottom: -20px;
      left: -20px;
      background: var(--orange);
      color: var(--white);
      border-radius: var(--radius-md);
      padding: 18px 22px;
      box-shadow: var(--shadow-md);
    }
    .about-accent strong {
      display: block;
      font-family: 'Playfair Display', serif;
      font-size: 2rem;
      font-weight: 800;
      line-height: 1;
    }
    .about-accent span {
      font-size: .72rem;
      letter-spacing: .07em;
      text-transform: uppercase;
      opacity: .9;
    }
    .about-text .section-label { color: var(--orange); }
    .about-para {
      font-size: 1.02rem;
      color: var(--gray-600);
      line-height: 1.85;
      margin-bottom: 18px;
    }
    .about-para .kw {
      color: var(--blue-dark);
      font-weight: 700;
    }
    .about-para .em {
      color: var(--orange-dark);
      font-weight: 600;
      font-style: italic;
    }
    .mission-points {
      margin-top: 28px;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }
    .mp-item {
      display: flex;
      align-items: center;
      gap: 14px;
      background: var(--gray-50);
      border: 1px solid var(--gray-200);
      border-radius: var(--radius-md);
      padding: 13px 18px;
      font-size: .95rem;
      font-weight: 500;
      color: var(--blue-dark);
      transition: var(--transition);
    }
    .mp-item:hover {
      background: var(--blue-dark);
      color: var(--white);
      border-color: var(--blue-dark);
      transform: translateX(20px);
    }
    .mp-icon {
      font-size: 1.3rem;
      flex-shrink: 0;
      transition: transform .3s ease;
    }
    .mp-item:hover .mp-icon { transform: scale(1.2) rotate(-8deg); }

    /* ============================================================
       DAILY PUSH VIDEOS
    ============================================================ */
    #daily-push {
      padding: 100px 0;
      background: var(--blue-dark);
      position: relative;
      overflow: hidden;
    }
    #daily-push::before {
      content: '';
      position: absolute;
      top: -80px; right: -80px;
      width: 400px; height: 400px;
      background: radial-gradient(circle, rgba(240,124,30,.12) 0%, transparent 70%);
      pointer-events: none;
    }
    #daily-push::after {
      content: '';
      position: absolute;
      bottom: -60px; left: -60px;
      width: 300px; height: 300px;
      background: radial-gradient(circle, rgba(37,99,168,.2) 0%, transparent 70%);
      pointer-events: none;
    }
    .dp-header {
      text-align: center;
      max-width: 640px;
      margin: 0 auto 56px;
    }
    .dp-header .section-label { color: var(--orange-light); }
    .dp-header .section-title { color: var(--white); }
    .dp-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 28px;
      margin-bottom: 44px;
    }
    .dp-card {
      background: rgba(255,255,255,.05);
      border: 1px solid rgba(255,255,255,.1);
      border-radius: var(--radius-lg);
      overflow: hidden;
      cursor: pointer;
      transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
      position: relative;
    }
    .dp-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 24px 60px rgba(0,0,0,.35);
      border-color: var(--orange);
    }
    .dp-thumb {
      position: relative;
      height: 200px;
      background: var(--blue-mid);
      overflow: hidden;
    }
    .dp-thumb img {
      width: 100%; height: 100%;
      object-fit: cover;
      transition: transform .5s ease;
      filter: brightness(.7);
    }
    .dp-card:hover .dp-thumb img {
      transform: scale(1.07);
      filter: brightness(.5);
    }
    .dp-play {
      position: absolute;
      inset: 0;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .dp-play-btn {
      width: 64px; height: 64px;
      background: rgba(240,124,30,.9);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: transform .3s ease, background .3s ease, box-shadow .3s ease;
      box-shadow: 0 0 0 0 rgba(240,124,30,.4);
    }
    .dp-card:hover .dp-play-btn {
      transform: scale(1.15);
      background: var(--orange);
      box-shadow: 0 0 0 12px rgba(240,124,30,.2);
    }
    .dp-play-btn svg { margin-left: 4px; }
    .dp-body { padding: 22px; }
    .dp-tag {
      display: inline-block;
      background: rgba(240,124,30,.2);
      color: var(--orange-light);
      font-size: .72rem;
      font-weight: 700;
      letter-spacing: .08em;
      text-transform: uppercase;
      border-radius: 50px;
      padding: 3px 12px;
      margin-bottom: 10px;
    }
    .dp-title {
      font-family: 'Playfair Display', serif;
      font-size: 1.2rem;
      font-weight: 700;
      color: var(--white);
      margin-bottom: 8px;
      line-height: 1.3;
    }
    .dp-desc {
      font-size: .88rem;
      color: rgba(255,255,255,.6);
      line-height: 1.7;
    }
    .dp-footer {
      text-align: center;
    }
    .btn-primary.glow-cta {
      animation: glowPulse 2.5s ease-in-out infinite;
    }
    @keyframes glowPulse {
      0%, 100% { box-shadow: 0 4px 20px rgba(240,124,30,.35); }
      50%       { box-shadow: 0 6px 40px rgba(240,124,30,.7), 0 0 0 8px rgba(240,124,30,.12); }
    }

    /* TikTok badge on thumbnail */
    .dp-tiktok-badge {
      position: absolute;
      bottom: 10px; right: 10px;
      background: rgba(0,0,0,.72);
      backdrop-filter: blur(4px);
      border: 1px solid rgba(255,255,255,.12);
      border-radius: 6px;
      padding: 4px 9px;
      display: flex;
      align-items: center;
      gap: 5px;
      font-size: .68rem;
      font-weight: 700;
      letter-spacing: .04em;
      color: var(--white);
      pointer-events: none;
    }

    /* TikTok portrait modal */
    .dp-tt-modal {
      position: fixed;
      inset: 0;
      z-index: 9997;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 20px;
      animation: eimgFadeIn .22s ease both;
    }
    .dp-tt-modal[hidden] { display: none; }
    .dp-tt-backdrop {
      position: absolute;
      inset: 0;
      background: rgba(4,10,22,.92);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      cursor: pointer;
    }
    .dp-tt-box {
      position: relative;
      z-index: 1;
      width: min(340px, 88vw);
      background: #000;
      border-radius: var(--radius-md);
      overflow: hidden;
      box-shadow: 0 40px 80px rgba(0,0,0,.75);
      animation: eimgSlideUp .28s cubic-bezier(.22,1,.36,1) both;
    }
    .dp-tt-close {
      position: absolute;
      top: 10px; right: 10px;
      z-index: 10;
      width: 36px; height: 36px;
      border-radius: 50%;
      border: none;
      background: rgba(255,255,255,.15);
      backdrop-filter: blur(6px);
      color: var(--white);
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: background .2s ease, transform .2s ease;
    }
    .dp-tt-close:hover { background: var(--orange); transform: scale(1.1); }
    .dp-tt-frame-wrap {
      position: relative;
      padding-bottom: 177.78%;
      height: 0;
      overflow: hidden;
    }
    .dp-tt-frame-wrap iframe {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      border: none;
    }
    .dp-tt-title {
      padding: 12px 16px;
      font-family: 'Playfair Display', serif;
      font-size: .95rem;
      font-weight: 700;
      color: rgba(255,255,255,.8);
      text-align: center;
      background: #0a0a0a;
      border-top: 1px solid rgba(255,255,255,.07);
    }

    /* ============================================================
       PODCAST SECTION
    ============================================================ */
    #podcast {
      padding: 100px 0;
      background: var(--gray-50);
    }
    .podcast-header {
      text-align: center;
      max-width: 640px;
      margin: 0 auto 60px;
    }
    .podcast-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 40px;
    }
    .podcast-card {
      background: var(--white);
      border-radius: var(--radius-lg);
      overflow: hidden;
      box-shadow: var(--shadow-md);
      transition: transform .35s ease, box-shadow .35s ease;
    }
    .podcast-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 24px 64px rgba(0,0,0,.15);
    }
    .podcast-video-wrap {
      position: relative;
      padding-bottom: 56.25%;
      height: 0;
      overflow: hidden;
    }
    .podcast-video-wrap iframe {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      border: none;
    }
    .podcast-body {
      padding: 28px;
    }
    .podcast-eyebrow {
      font-size: .72rem;
      font-weight: 700;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: var(--orange);
      margin-bottom: 10px;
    }
    .podcast-title {
      font-family: 'Playfair Display', serif;
      font-size: 1.35rem;
      font-weight: 700;
      color: var(--blue-dark);
      line-height: 1.3;
      margin-bottom: 10px;
    }
    .podcast-desc {
      font-size: .9rem;
      color: var(--gray-600);
      line-height: 1.75;
      margin-bottom: 16px;
    }
    .podcast-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 6px;
    }
    .podcast-tag {
      font-size: .75rem;
      font-weight: 600;
      color: var(--blue-mid);
      background: var(--gray-100);
      border-radius: 50px;
      padding: 3px 10px;
    }

    /* ============================================================
       EVENTS SECTION
    ============================================================ */
    #events {
      padding: 100px 0;
      background: var(--white);
    }
    .events-header {
      text-align: center;
      max-width: 600px;
      margin: 0 auto 60px;
    }
    .events-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 32px;
    }
    .event-card {
      border-radius: var(--radius-lg);
      overflow: hidden;
      position: relative;
      min-height: 380px;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      cursor: default;
      transition: transform .35s ease, box-shadow .35s ease;
      box-shadow: var(--shadow-md);
    }
    .event-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 28px 70px rgba(0,0,0,.22);
    }
    .event-bg {
      position: absolute;
      inset: 0;
      background-size: cover;
      background-position: center;
      transition: transform .5s ease;
    }
    .event-card:hover .event-bg { transform: scale(1.05); }
    .event-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(13,42,78,.92) 0%, rgba(13,42,78,.45) 50%, transparent 100%);
    }
    .event-body {
      position: relative;
      z-index: 2;
      padding: 28px;
    }
    .event-type {
      display: inline-block;
      background: var(--orange);
      color: var(--white);
      font-size: .7rem;
      font-weight: 700;
      letter-spacing: .1em;
      text-transform: uppercase;
      border-radius: 50px;
      padding: 4px 14px;
      margin-bottom: 12px;
    }
    .event-title {
      font-family: 'Playfair Display', serif;
      font-size: 1.5rem;
      font-weight: 700;
      color: var(--white);
      line-height: 1.25;
      margin-bottom: 12px;
    }
    .event-meta {
      display: flex;
      flex-direction: column;
      gap: 6px;
      margin-bottom: 14px;
    }
    .event-meta-row {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: .85rem;
      color: rgba(255,255,255,.8);
    }
    .event-meta-icon {
      color: var(--orange-light);
      flex-shrink: 0;
      font-size: 1rem;
    }
    .event-detail {
      font-size: .82rem;
      color: rgba(255,255,255,.65);
      line-height: 1.7;
      margin-bottom: 14px;
    }
    .event-tag-row {
      display: flex;
      flex-wrap: wrap;
      gap: 6px;
      margin-top: 8px;
    }
    .event-hashtag {
      font-size: .72rem;
      color: var(--orange-light);
      font-weight: 600;
    }
    .event-free-badge {
      display: inline-block;
      background: rgba(255,255,255,.12);
      border: 1px solid rgba(255,255,255,.3);
      color: var(--white);
      font-size: .72rem;
      font-weight: 700;
      letter-spacing: .08em;
      text-transform: uppercase;
      border-radius: 50px;
      padding: 3px 12px;
      margin-top: 10px;
    }

    /* ============================================================
       HUNGER CAN'T WAIT
    ============================================================ */
    #hunger {
      position: relative;
      padding: 120px 0;
      overflow: hidden;
    }
    .hunger-bg {
      position: absolute;
      inset: 0;
      background-image: url('../images/johnny-davis-ministry/hunger-cant-wait.webp');
      background-size: cover;
      background-position: center;
    }
    .hunger-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(13,42,78,.96) 0%, rgba(13,42,78,.82) 60%, rgba(240,124,30,.25) 100%);
    }
    .hunger-content {
      position: relative;
      z-index: 2;
      text-align: center;
      max-width: 780px;
      margin: 0 auto;
    }
    .hunger-eyebrow {
      display: inline-block;
      font-size: .75rem;
      font-weight: 700;
      letter-spacing: .14em;
      text-transform: uppercase;
      color: var(--orange-light);
      margin-bottom: 16px;
      background: rgba(240,124,30,.15);
      border: 1px solid rgba(240,124,30,.35);
      border-radius: 50px;
      padding: 5px 18px;
    }
    .hunger-headline {
      font-family: 'Playfair Display', serif;
      font-size: clamp(1.9rem, 4vw, 3.2rem);
      font-weight: 800;
      color: var(--white);
      line-height: 1.12;
      margin-bottom: 20px;
    }
    .hunger-headline .orange { color: var(--orange-light); }
    .hunger-sub {
      font-size: 1.15rem;
      color: rgba(255,255,255,.85);
      line-height: 1.8;
      margin-bottom: 14px;
    }
    .hunger-price {
      font-family: 'Playfair Display', serif;
      font-size: 1.5rem;
      font-weight: 700;
      color: var(--orange-light);
      margin-bottom: 12px;
    }
    .hunger-result {
      font-size: 1rem;
      color: rgba(255,255,255,.75);
      font-style: italic;
      margin-bottom: 44px;
      border-left: 3px solid var(--orange);
      padding-left: 18px;
      text-align: left;
      max-width: 400px;
      margin-left: auto;
      margin-right: auto;
    }
    .hunger-btns {
      display: flex;
      flex-wrap: wrap;
      gap: 16px;
      justify-content: center;
      margin-bottom: 20px;
    }
    .hunger-note {
      font-size: .82rem;
      color: rgba(255,255,255,.45);
      margin-top: 16px;
    }

    /* ============================================================
       VISION & MISSION
    ============================================================ */
    #vision {
      padding: 100px 0;
      background: var(--gray-50);
    }
    .vision-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 72px;
      align-items: center;
    }
    .vision-img-wrap img {
      width: 100%;
      height: 460px;
      object-fit: cover;
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow-lg);
      transition: transform .5s ease;
    }
    .vision-img-wrap:hover img { transform: scale(1.02); }
    .vision-text .section-label { color: var(--orange); }
    .vision-list {
      margin-top: 28px;
      display: flex;
      flex-direction: column;
      gap: 14px;
    }
    .vision-item {
      display: flex;
      align-items: center;
      gap: 14px;
      background: var(--white);
      border: 1px solid var(--gray-200);
      border-radius: var(--radius-md);
      padding: 14px 20px;
      font-size: .95rem;
      font-weight: 500;
      color: var(--blue-dark);
      transition: var(--transition);
      box-shadow: var(--shadow-sm);
    }
    .vision-item:hover {
      border-color: var(--orange);
      background: linear-gradient(90deg, rgba(240,124,30,.05), transparent);
      transform: translateX(6px);
    }
    .vision-icon {
      width: 36px; height: 36px;
      background: rgba(240,124,30,.12);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1rem;
      flex-shrink: 0;
    }
    .vision-zoom-tag {
      display: inline-block;
      background: var(--blue-dark);
      color: var(--white);
      border-radius: var(--radius-sm);
      padding: 6px 14px;
      font-size: .8rem;
      font-weight: 600;
      margin-top: 24px;
    }

    /* ============================================================
       FINAL INSPIRATION
    ============================================================ */
    #inspire {
      position: relative;
      padding: 120px 0;
      overflow: hidden;
    }
    .inspire-bg {
      position: absolute;
      inset: 0;
      background-image: url('../images/johnny-davis-ministry/hero-image2.webp');
      background-size: cover;
      background-position: center;
    }
    .inspire-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(13,42,78,.93) 0%, rgba(26,68,128,.88) 100%);
    }
    .inspire-content {
      position: relative;
      z-index: 2;
      text-align: center;
      max-width: 720px;
      margin: 0 auto;
    }

    /* ============================================================
       UPCOMING EVENTS PREVIEW
    ============================================================ */
    #upcoming {
      padding: 80px 0;
      background: var(--white);
    }
    .upcoming-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 48px;
      align-items: center;
    }
    .upcoming-card {
      background: linear-gradient(135deg, var(--blue-dark), var(--blue-mid));
      border-radius: var(--radius-lg);
      padding: 40px;
      color: var(--white);
      position: relative;
      overflow: hidden;
      box-shadow: var(--shadow-lg);
      transition: transform .35s ease;
    }
    .upcoming-card:hover { transform: translateY(-6px); }
    .upcoming-card::after {
      content: '';
      position: absolute;
      top: -30px; right: -30px;
      width: 160px; height: 160px;
      background: radial-gradient(circle, rgba(240,124,30,.2), transparent);
      pointer-events: none;
    }
    .upcoming-date-badge {
      display: inline-flex;
      flex-direction: column;
      align-items: center;
      background: var(--orange);
      border-radius: var(--radius-md);
      padding: 10px 16px;
      margin-bottom: 20px;
    }
    .upcoming-date-badge .month {
      font-size: .7rem;
      font-weight: 700;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: rgba(255,255,255,.85);
    }
    .upcoming-date-badge .day {
      font-family: 'Playfair Display', serif;
      font-size: 2rem;
      font-weight: 800;
      line-height: 1;
    }
    .upcoming-title {
      font-family: 'Playfair Display', serif;
      font-size: 1.7rem;
      font-weight: 800;
      margin-bottom: 12px;
    }
    .upcoming-meta { font-size: .9rem; color: rgba(255,255,255,.7); line-height: 1.7; }
    .upcoming-soon {
      font-size: .8rem;
      color: var(--orange-light);
      font-weight: 600;
      margin-top: 16px;
      display: flex;
      align-items: center;
      gap: 6px;
    }
    .upcoming-cta { }
    .upcoming-cta h3 {
      font-family: 'Playfair Display', serif;
      font-size: 1.8rem;
      font-weight: 800;
      color: var(--blue-dark);
      margin-bottom: 16px;
      line-height: 1.2;
    }
    .upcoming-cta p {
      font-size: 1rem;
      color: var(--gray-600);
      line-height: 1.8;
      margin-bottom: 28px;
    }
    .social-row {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
    }
    .social-btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 10px 20px;
      border-radius: 50px;
      font-size: .85rem;
      font-weight: 700;
      transition: var(--transition);
      border: 1.5px solid var(--gray-200);
      color: var(--blue-dark);
      background: var(--gray-50);
    }
    .social-btn:hover {
      background: var(--blue-dark);
      color: var(--white);
      border-color: var(--blue-dark);
      transform: translateY(-2px);
    }

    /* ============================================================
       WAKE UP TO PRAYER CARD
    ============================================================ */
    .wutp-card {
      background: linear-gradient(145deg, var(--blue-dark) 0%, #112f5a 55%, #0d2244 100%);
      border-radius: var(--radius-lg);
      padding: 40px;
      color: var(--white);
      position: relative;
      overflow: hidden;
      box-shadow: var(--shadow-lg);
      display: flex;
      flex-direction: column;
      gap: 20px;
      transition: transform .35s ease, box-shadow .35s ease;
      border: 1px solid rgba(255,255,255,.07);
    }
    .wutp-card::before {
      content: '';
      position: absolute;
      top: -60px; right: -60px;
      width: 220px; height: 220px;
      background: radial-gradient(circle, rgba(240,124,30,.18) 0%, transparent 70%);
      pointer-events: none;
    }
    .wutp-card::after {
      content: '';
      position: absolute;
      bottom: -40px; left: -40px;
      width: 160px; height: 160px;
      background: radial-gradient(circle, rgba(37,99,168,.25) 0%, transparent 70%);
      pointer-events: none;
    }
    .wutp-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 28px 72px rgba(0,0,0,.32);
    }

    .wutp-live-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(240,124,30,.15);
      border: 1px solid rgba(240,124,30,.4);
      border-radius: 50px;
      padding: 5px 14px;
      font-size: .72rem;
      font-weight: 700;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: var(--orange-light);
      width: fit-content;
    }
    .wutp-live-dot {
      width: 8px; height: 8px;
      background: var(--orange);
      border-radius: 50%;
      animation: pulseDot 2s infinite;
      flex-shrink: 0;
    }

    .wutp-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(1.6rem, 3vw, 2rem);
      font-weight: 800;
      line-height: 1.15;
      color: var(--white);
      margin: 0;
    }

    .wutp-subtitle {
      font-size: .97rem;
      color: rgba(255,255,255,.72);
      line-height: 1.75;
      margin: 0;
    }

    .wutp-schedule {
      display: flex;
      flex-direction: column;
      gap: 10px;
      background: rgba(255,255,255,.05);
      border: 1px solid rgba(255,255,255,.1);
      border-radius: var(--radius-sm);
      padding: 16px 20px;
    }
    .wutp-schedule-row {
      display: flex;
      align-items: center;
      gap: 12px;
      font-size: .9rem;
      color: rgba(255,255,255,.82);
    }
    .wutp-schedule-row strong { color: var(--white); font-weight: 700; }
    .wutp-flag { font-size: 1.15rem; flex-shrink: 0; }

    .wutp-tiktok-btn {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      background: linear-gradient(135deg, #010101 0%, #1a1a2e 100%);
      color: var(--white);
      border: 1.5px solid rgba(255,255,255,.18);
      border-radius: 50px;
      padding: 12px 24px;
      font-size: .88rem;
      font-weight: 700;
      letter-spacing: .02em;
      width: fit-content;
      transition: var(--transition);
      position: relative;
      overflow: hidden;
    }
    .wutp-tiktok-btn::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(105,201,208,.15), rgba(254,44,85,.15));
      opacity: 0;
      transition: opacity .3s ease;
    }
    .wutp-tiktok-btn:hover {
      border-color: rgba(254,44,85,.6);
      transform: translateY(-2px);
      box-shadow: 0 8px 28px rgba(254,44,85,.25);
    }
    .wutp-tiktok-btn:hover::before { opacity: 1; }

    .wutp-quote {
      font-size: .95rem;
      color: var(--orange-light);
      font-style: italic;
      font-weight: 600;
      line-height: 1.65;
      margin: 0;
      padding-left: 16px;
      border-left: 3px solid var(--orange);
    }

    .wutp-hashtag-strip {
      display: flex;
      align-items: center;
      gap: 10px;
      background: rgba(255,255,255,.04);
      border: 1px solid rgba(255,255,255,.09);
      border-radius: 50px;
      padding: 8px 16px;
      width: fit-content;
      position: relative;
      overflow: hidden;
    }
    .wutp-hashtag-strip::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(
        100deg,
        transparent 20%,
        rgba(255,255,255,.06) 50%,
        transparent 80%
      );
      transform: translateX(-100%);
      animation: wutpShimmer 3.2s ease-in-out infinite;
    }
    @keyframes wutpShimmer {
      0%   { transform: translateX(-100%); }
      60%  { transform: translateX(100%); }
      100% { transform: translateX(100%); }
    }
    .wutp-trending-label {
      display: inline-flex;
      align-items: center;
      gap: 4px;
      font-size: .65rem;
      font-weight: 700;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: var(--orange-light);
      background: rgba(240,124,30,.15);
      border: 1px solid rgba(240,124,30,.3);
      border-radius: 50px;
      padding: 3px 10px;
      white-space: nowrap;
    }
    .wutp-hashtag {
      font-size: .88rem;
      font-weight: 800;
      letter-spacing: .04em;
      background: linear-gradient(90deg, var(--white) 0%, rgba(255,179,71,.85) 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    /* ============================================================
       EVENT IMAGE MODAL
    ============================================================ */
    .eimg-overlay {
      position: fixed;
      inset: 0;
      z-index: 9998;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 20px;
      animation: eimgFadeIn .22s ease both;
    }
    .eimg-overlay[hidden] { display: none; }
    @keyframes eimgFadeIn {
      from { opacity: 0; }
      to   { opacity: 1; }
    }
    .eimg-backdrop {
      position: absolute;
      inset: 0;
      background: rgba(4, 10, 22, .92);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      cursor: pointer;
    }
    .eimg-box {
      position: relative;
      z-index: 1;
      max-width: min(92vw, 960px);
      width: 100%;
      border-radius: var(--radius-lg);
      overflow: hidden;
      box-shadow: 0 40px 100px rgba(0,0,0,.7);
      animation: eimgSlideUp .28s cubic-bezier(.22,1,.36,1) both;
      background: #060f1e;
    }
    @keyframes eimgSlideUp {
      from { transform: translateY(32px) scale(.97); opacity: 0; }
      to   { transform: translateY(0)    scale(1);   opacity: 1; }
    }
    .eimg-close {
      position: absolute;
      top: 14px; right: 14px;
      z-index: 10;
      width: 40px; height: 40px;
      border-radius: 50%;
      border: none;
      background: rgba(255,255,255,.12);
      backdrop-filter: blur(6px);
      color: var(--white);
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: background .2s ease, transform .2s ease;
    }
    .eimg-close:hover {
      background: var(--orange);
      transform: scale(1.1);
    }
    .eimg-photo {
      display: block;
      width: 100%;
      max-height: 80vh;
      object-fit: contain;
      background: #060f1e;
    }
    .eimg-caption {
      padding: 14px 20px;
      font-family: 'Playfair Display', serif;
      font-size: 1rem;
      font-weight: 700;
      color: rgba(255,255,255,.75);
      text-align: center;
      letter-spacing: .01em;
      border-top: 1px solid rgba(255,255,255,.07);
    }

    /* ============================================================
       VIDEO MODAL
    ============================================================ */
    .modal-overlay {
      position: fixed;
      inset: 0;
      background: rgba(0,0,0,.9);
      z-index: 9999;
      display: none;
      align-items: center;
      justify-content: center;
      padding: 24px;
    }
    .modal-overlay.open { display: flex; }
    .modal-box {
      position: relative;
      width: 100%;
      max-width: 900px;
      background: #000;
      border-radius: var(--radius-md);
      overflow: hidden;
      box-shadow: 0 30px 80px rgba(0,0,0,.6);
    }
    .modal-close {
      position: absolute;
      top: 14px; right: 14px;
      z-index: 10;
      background: rgba(255,255,255,.15);
      color: var(--white);
      border: none;
      width: 36px; height: 36px;
      border-radius: 50%;
      font-size: 1.2rem;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background .2s ease;
    }
    .modal-close:hover { background: var(--orange); }
    .modal-video-wrap {
      position: relative;
      padding-bottom: 56.25%;
      height: 0;
    }
    .modal-video-wrap iframe {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      border: none;
    }
    .modal-placeholder {
      padding: 60px 40px;
      text-align: center;
      color: var(--white);
    }
    .modal-placeholder h3 {
      font-family: 'Playfair Display', serif;
      font-size: 1.6rem;
      margin-bottom: 12px;
    }
    .modal-placeholder p { font-size: 1rem; color: rgba(255,255,255,.7); }

    /* ============================================================
       FOOTER
    ============================================================ */
    #footer {
      background: #060f1e;
      color: rgba(255,255,255,.75);
      padding: 80px 0 0;
    }
    .footer-grid {
      display: grid;
      grid-template-columns: 1.8fr 1fr 1fr 1.3fr;
      gap: 48px;
      padding-bottom: 60px;
      border-bottom: 1px solid rgba(255,255,255,.07);
    }
    .footer-brand img { height: 52px; width: auto; margin-bottom: 20px; object-fit: contain; }
    .footer-brand p { font-size: .9rem; line-height: 1.8; color: rgba(255,255,255,.55); margin-bottom: 24px; }
    .footer-socials { display: flex; gap: 10px; }
    .social-icon {
      width: 38px; height: 38px;
      background: rgba(255,255,255,.06);
      border: 1px solid rgba(255,255,255,.1);
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: .85rem;
      transition: var(--transition);
      cursor: pointer;
      color: rgba(255,255,255,.6);
    }
    .social-icon:hover {
      background: var(--orange);
      border-color: var(--orange);
      color: var(--white);
      transform: translateY(-2px);
    }
    .footer-heading {
      font-family: 'Playfair Display', serif;
      font-weight: 700;
      color: var(--white);
      font-size: 1rem;
      margin-bottom: 20px;
      position: relative;
      padding-bottom: 12px;
    }
    .footer-heading::after {
      content: '';
      position: absolute;
      bottom: 0; left: 0;
      width: 28px; height: 2px;
      background: var(--orange);
      border-radius: 2px;
    }
    .footer-links { display: flex; flex-direction: column; gap: 10px; }
    .footer-links a {
      font-size: .9rem;
      color: rgba(255,255,255,.55);
      transition: color var(--transition);
      display: flex;
      align-items: center;
      gap: 6px;
    }
    .footer-links a::before { content: '\203A'; color: var(--orange); font-size: 1rem; }
    .footer-links a:hover { color: var(--orange); }
    .footer-contact { display: flex; flex-direction: column; gap: 14px; }
    .contact-row {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      font-size: .9rem;
      color: rgba(255,255,255,.55);
      line-height: 1.6;
    }
    .contact-icon {
      width: 32px; height: 32px;
      background: rgba(240,124,30,.15);
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--orange);
      flex-shrink: 0;
    }
    .contact-row a { color: rgba(255,255,255,.55); transition: color var(--transition); }
    .contact-row a:hover { color: var(--orange); }
    .footer-bottom {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      padding: 24px 0;
    }
    .footer-copy { font-size: .82rem; color: rgba(255,255,255,.35); }
    .footer-legal { display: flex; gap: 20px; }
    .footer-legal a { font-size: .82rem; color: rgba(255,255,255,.35); transition: color var(--transition); }
    .footer-legal a:hover { color: var(--orange); }

    /* ============================================================
       RESPONSIVE
    ============================================================ */
    @media (max-width: 1024px) {
      .about-grid   { grid-template-columns: 1fr; gap: 48px; }
      .about-img-wrap img { height: 400px; }
      .podcast-grid { grid-template-columns: 1fr; }
      .vision-grid  { grid-template-columns: 1fr; gap: 48px; }
      .vision-img-wrap img { height: 360px; }
      .footer-grid  { grid-template-columns: 1fr 1fr; gap: 36px; }
      .upcoming-inner { grid-template-columns: 1fr; }
    }
    @media (max-width: 768px) {
      .nav-links  { display: none; }
      .nav-toggle { display: flex; }
      .dp-grid      { grid-template-columns: 1fr; }
      .events-grid  { grid-template-columns: 1fr; }
      .footer-grid  { grid-template-columns: 1fr; }
      .footer-bottom { flex-direction: column; text-align: center; }
      .hero-ctas { flex-direction: column; align-items: flex-start; }
      .hunger-btns { flex-direction: column; align-items: center; }
      .slider-prev, .slider-next { width: 38px; height: 38px; }
      #stickyDonate { right: 10px; bottom: 12px; }
    }
    @media (max-width: 480px) {
      .container { padding: 0 16px; }
      .btn-lg { padding: 15px 28px; font-size: 1rem; }
      .events-grid  { grid-template-columns: 1fr; }
      .slider-prev, .slider-next { display: none; }
      #stickyDonate { right: 8px; bottom: 10px; padding: 12px 14px; font-size: .82rem; }
    }

    /* ============================================================
       MOBILE ENHANCEMENTS — max-width: 768px
       Desktop (> 768px) is untouched by every rule below
    ============================================================ */
    @media (max-width: 768px) {

      /* ── Global touch polish ── */
      * { -webkit-tap-highlight-color: transparent; }

      /* Tactile press on all interactive cards */
      .dp-card:active,
      .event-card:active,
      .podcast-card:active,
      .mp-item:active,
      .vision-item:active,
      .wutp-card:active,
      .upcoming-card:active { transform: scale(0.97); transition: transform .12s ease !important; }
      .btn:active { transform: scale(0.95) !important; transition: transform .1s ease !important; }

      /* ── Mobile Nav — slide-in animation ── */
      .nav-mobile.open {
        animation: mobileNavDrop .28s cubic-bezier(.22,1,.36,1) both;
      }
      .nav-mobile.open a {
        opacity: 0;
        animation: navLinkIn .3s ease forwards;
      }
      .nav-mobile.open a:nth-child(1) { animation-delay: .04s; }
      .nav-mobile.open a:nth-child(2) { animation-delay: .09s; }
      .nav-mobile.open a:nth-child(3) { animation-delay: .14s; }
      .nav-mobile.open a:nth-child(4) { animation-delay: .19s; }
      .nav-mobile.open a:nth-child(5) { animation-delay: .24s; }
      .nav-mobile.open a:nth-child(6) { animation-delay: .29s; }

      @keyframes mobileNavDrop {
        from { opacity: 0; transform: translateY(-10px); }
        to   { opacity: 1; transform: translateY(0); }
      }
      @keyframes navLinkIn {
        from { opacity: 0; transform: translateX(-18px); }
        to   { opacity: 1; transform: translateX(0); }
      }

      /* ── Hero ── */
      #hero { height: 90vh; min-height: 540px; }
      .hero-content { padding-top: 84px; padding-bottom: 96px; }
      .hero-headline { font-size: clamp(2rem, 8.5vw, 3rem); margin-bottom: 12px; }
      .hero-sub { font-size: .98rem; margin-bottom: 28px; }
      .hero-ctas { gap: 12px; }
      .hero-ctas .btn-lg { min-height: 52px; justify-content: center; width: 100%; max-width: 320px; }
      .hero-badge { font-size: .68rem; padding: 5px 14px; }
      .hero-scroll { display: none; }

      /* ── About ── */
      #about { padding: 68px 0 56px; }
      .about-img-wrap img { height: 300px; }
      .about-accent { padding: 12px 16px; bottom: -14px; left: -12px; }
      .about-accent strong { font-size: 1.55rem; }
      .about-para { font-size: .95rem; line-height: 1.75; margin-bottom: 12px; }
      .mission-points { gap: 8px; margin-top: 20px; }
      .mp-item {
        padding: 14px 16px;
        min-height: 52px;
        font-size: .9rem;
        overflow: hidden;
        position: relative;
        transition: border-color .3s ease, box-shadow .3s ease !important;
      }
      .mp-item:hover { transform: none; }

      /* Shimmer sweep on each card */
      .mp-item::before {
        content: '';
        position: absolute;
        top: 0; left: -90%;
        width: 55%;
        height: 100%;
        background: linear-gradient(100deg, transparent 0%, rgba(255,255,255,.55) 50%, transparent 100%);
        animation: mpShimmer 3.2s ease-in-out infinite;
        pointer-events: none;
        z-index: 1;
      }

      /* Staggered shimmer delays */
      .mp-item:nth-child(1)::before { animation-delay: 0s; }
      .mp-item:nth-child(2)::before { animation-delay: 0.65s; }
      .mp-item:nth-child(3)::before { animation-delay: 1.3s; }
      .mp-item:nth-child(4)::before { animation-delay: 1.95s; }

      @keyframes mpShimmer {
        0%   { left: -90%; opacity: 0; }
        10%  { opacity: 1; }
        45%  { left: 110%; opacity: 0; }
        100% { left: 110%; opacity: 0; }
      }

      /* Staggered float + orange glow wave */
      .mp-item:nth-child(1) { animation: mpFloat 3.2s ease-in-out 0s    infinite; }
      .mp-item:nth-child(2) { animation: mpFloat 3.2s ease-in-out 0.65s infinite; }
      .mp-item:nth-child(3) { animation: mpFloat 3.2s ease-in-out 1.3s  infinite; }
      .mp-item:nth-child(4) { animation: mpFloat 3.2s ease-in-out 1.95s infinite; }

      @keyframes mpFloat {
        0%, 100% {
          transform: translateY(0);
          box-shadow: 0 2px 8px rgba(0,0,0,.06);
          border-color: var(--gray-200);
        }
        45%, 55% {
          transform: translateY(-6px);
          box-shadow: 0 12px 30px rgba(240,124,30,.22), inset 3px 0 0 var(--orange);
          border-color: rgba(240,124,30,.4);
        }
      }

      /* Pause float on tap press */
      .mp-item:active {
        animation-play-state: paused;
        transform: scale(0.97) !important;
      }

      /* ── Daily Push — Horizontal Scroll Snap Slider ── */
      #daily-push { padding: 68px 0 60px; }
      .dp-header { margin-bottom: 36px; padding: 0 4px; }

      .dp-grid {
        display: flex !important;
        flex-direction: row !important;
        grid-template-columns: unset !important;
        gap: 14px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        /* Left/right padding = half of remaining viewport so each card snaps centered */
        padding: 6px calc((100vw - 272px) / 2) 20px;
        margin: 0 -24px;
        scrollbar-width: none;
        -ms-overflow-style: none;
        margin-bottom: 0;
      }
      .dp-grid::-webkit-scrollbar { display: none; }

      .dp-card {
        flex: 0 0 272px;
        min-width: 272px;
        scroll-snap-align: center;
        transition: transform .12s ease, box-shadow .12s ease !important;
      }
      .dp-card:hover { transform: none; box-shadow: none; }
      .dp-thumb { height: 175px; }

      /* Swipe hint (injected via JS) */
      .dp-swipe-hint {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 7px;
        font-size: .72rem;
        color: rgba(255,255,255,.42);
        letter-spacing: .07em;
        text-transform: uppercase;
        margin: 0 0 18px;
        user-select: none;
      }
      .dp-swipe-hint svg { animation: hintArrow 1.7s ease-in-out infinite; }

      /* Progress pill dots (injected via JS) */
      .dp-progress {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 5px;
        margin: 14px 0 28px;
      }
      .dp-progress-dot {
        height: 6px;
        width: 6px;
        border-radius: 3px;
        background: rgba(255,255,255,.22);
        transition: background .3s ease, width .3s ease;
        flex-shrink: 0;
      }
      .dp-progress-dot.active {
        background: var(--orange);
        width: 20px;
      }

      /* ── Podcast ── */
      #podcast { padding: 68px 0; }
      .podcast-header { margin-bottom: 32px; }
      .podcast-card:hover { transform: none; }
      .podcast-body { padding: 20px; }
      .podcast-title { font-size: 1.15rem; }

      /* ── Events — Horizontal Scroll Snap ── */
      #events { padding: 68px 0 56px; }
      .events-header { margin-bottom: 32px; }

      .events-grid {
        display: flex !important;
        flex-direction: row !important;
        grid-template-columns: unset !important;
        gap: 14px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        /* 82vw card → 9vw each side so every card snaps centered */
        padding: 6px 9vw 16px;
        margin: 0 -24px;
        scrollbar-width: none;
        -ms-overflow-style: none;
      }
      .events-grid::-webkit-scrollbar { display: none; }

      .event-card {
        flex: 0 0 82vw;
        max-width: 320px;
        min-width: 260px;
        scroll-snap-align: center;
        min-height: 340px;
      }
      .event-card:hover { transform: none; box-shadow: var(--shadow-md); }

      /* Events progress dots (injected via JS) */
      .events-progress {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 5px;
        margin: 14px 0 4px;
      }
      .events-progress-dot {
        height: 6px;
        width: 6px;
        border-radius: 3px;
        background: var(--gray-200);
        transition: background .3s ease, width .3s ease;
        flex-shrink: 0;
      }
      .events-progress-dot.active {
        background: var(--orange);
        width: 20px;
      }

      /* Events swipe hint (injected via JS) */
      .events-swipe-hint {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 7px;
        font-size: .72rem;
        color: var(--gray-400);
        letter-spacing: .07em;
        text-transform: uppercase;
        margin-top: 10px;
        user-select: none;
      }
      .events-swipe-hint svg { animation: hintArrow 1.7s ease-in-out infinite; }

      @keyframes hintArrow {
        0%, 100% { transform: translateX(0); opacity: .5; }
        50%       { transform: translateX(6px); opacity: 1; }
      }

      /* ── Hunger CTA ── */
      #hunger { padding: 76px 0; }
      .hunger-headline { font-size: clamp(1.6rem, 7vw, 2.4rem); }
      .hunger-sub { font-size: 1rem; }
      .hunger-price { font-size: 1.2rem; }
      .hunger-btns .btn { width: 100%; max-width: 320px; justify-content: center; }
      .hunger-result { font-size: .95rem; }

      /* ── Inspire ── */
      #inspire { padding: 76px 0; }
      .inspire-content > div[style] { flex-direction: column !important; align-items: center !important; gap: 12px !important; }
      .inspire-content .btn { width: 100%; max-width: 320px; justify-content: center; }

      /* ── Upcoming ── */
      #upcoming { padding: 60px 0 calc(60px + 88px); }
      .wutp-card { padding: 28px 22px; }
      .wutp-title { font-size: 1.45rem; }
      .upcoming-cta h3 { font-size: 1.45rem; }
      /* ── Social Buttons — Premium 2×2 Iridescent Grid ── */
      .social-row {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 12px !important;
      }

      .social-btn {
        /* Icon-above, label-below centered layout */
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 10px !important;
        padding: 24px 10px 20px !important;
        min-height: 112px;
        border-radius: 20px !important;

        /* Pearlescent iridescent base */
        background: linear-gradient(
          138deg,
          #dde8fa 0%,
          #e9d9f7 22%,
          #f8dced 44%,
          #fef0c5 66%,
          #d4f0e6 88%,
          #dde8fa 100%
        ) !important;
        background-size: 200% 200% !important;

        border: 1.5px solid rgba(255,255,255,.82) !important;
        box-shadow: 0 4px 20px rgba(110,60,180,.1), 0 1px 4px rgba(0,0,0,.07) !important;

        /* Typography */
        font-size: .76rem !important;
        font-weight: 800 !important;
        letter-spacing: .06em !important;
        text-transform: uppercase !important;
        color: var(--blue-dark) !important;

        /* Stacking context for wave */
        position: relative !important;
        overflow: hidden !important;
        isolation: isolate;
        transition: transform .12s ease, box-shadow .12s ease !important;
        -webkit-tap-highlight-color: transparent;
      }

      /* Keep iridescent look on hover/focus — no color shift */
      .social-btn:hover,
      .social-btn:focus-visible {
        background: linear-gradient(
          138deg,
          #dde8fa 0%,
          #e9d9f7 22%,
          #f8dced 44%,
          #fef0c5 66%,
          #d4f0e6 88%,
          #dde8fa 100%
        ) !important;
        color: var(--blue-dark) !important;
        border-color: rgba(255,255,255,.82) !important;
        transform: none !important;
        box-shadow: 0 6px 28px rgba(110,60,180,.16), 0 1px 4px rgba(0,0,0,.07) !important;
        outline: none;
      }

      .social-btn:active {
        transform: scale(0.91) !important;
        box-shadow: 0 2px 10px rgba(110,60,180,.18) !important;
        transition: transform .08s ease !important;
      }

      /* Larger icons */
      .social-btn svg {
        width: 28px !important;
        height: 28px !important;
        flex-shrink: 0;
        position: relative;
        z-index: 2;
      }

      /* Synchronized iridescent light wave
         — pure transform (GPU composited), no repaints
         — mix-blend-mode: overlay so it brightens the pearl
           background WITHOUT covering the dark text           */
      .social-btn::after {
        content: '';
        position: absolute;
        top: -15%;
        left: 0;
        width: 55%;
        height: 130%;
        background: linear-gradient(
          108deg,
          transparent 0%,
          rgba(255,255,255,0) 22%,
          rgba(255,255,255,.92) 46%,
          rgba(210,230,255,.65) 52%,
          rgba(255,215,235,.45) 58%,
          rgba(255,248,200,.3) 64%,
          transparent 82%
        );
        transform: translateX(-260%);
        animation: iridWave 2.8s cubic-bezier(.45,0,.55,1) infinite;
        mix-blend-mode: overlay;
        pointer-events: none;
        will-change: transform;
        z-index: 1;
      }

      /* All 4 fire together — feels like one wave sweeping the grid */
      .social-btn:nth-child(1)::after { animation-delay: 0s;    }
      .social-btn:nth-child(2)::after { animation-delay: 0s;    }
      .social-btn:nth-child(3)::after { animation-delay: 0s;    }
      .social-btn:nth-child(4)::after { animation-delay: 0s;    }

      @keyframes iridWave {
        0%   { transform: translateX(-260%); }
        100% { transform: translateX(400%);  }
      }

      /* Pause wave on press */
      .social-btn:active::after { animation-play-state: paused; }

      /* ── Footer ── */
      #footer { padding: 60px 0 16px; }
      .footer-brand { text-align: center; }
      .footer-socials { justify-content: center; }

      /* Hide desktop sticky donate — replaced by action bar */
      #stickyDonate { display: none !important; }

      /* ============================================================
         WOW FACTOR — Glassmorphic Sticky Bottom Action Bar
      ============================================================ */
      #mobileActionBar {
        position: fixed;
        bottom: 0; left: 0; right: 0;
        z-index: 1500;
        padding: 8px 12px max(12px, env(safe-area-inset-bottom));
        background: rgba(10, 24, 54, 0.86);
        backdrop-filter: blur(22px) saturate(1.6);
        -webkit-backdrop-filter: blur(22px) saturate(1.6);
        border-top: 1px solid rgba(255,255,255,.09);
        box-shadow: 0 -4px 32px rgba(0,0,0,.4);
        display: flex;
        align-items: stretch;
        gap: 6px;
        transform: translateY(110%);
        transition: transform .38s cubic-bezier(.22,1,.36,1);
        will-change: transform;
      }
      #mobileActionBar.bar-visible { transform: translateY(0); }

      .mob-bar-btn {
        flex: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 4px;
        padding: 8px 6px;
        min-height: 56px;
        border-radius: 12px;
        border: none;
        background: rgba(255,255,255,.06);
        color: rgba(255,255,255,.72);
        font-size: .62rem;
        font-weight: 700;
        letter-spacing: .06em;
        text-transform: uppercase;
        cursor: pointer;
        text-decoration: none;
        transition: background .18s ease, color .18s ease, transform .12s ease;
        -webkit-tap-highlight-color: transparent;
        touch-action: manipulation;
      }
      .mob-bar-btn:active { transform: scale(0.91) !important; }
      .mob-bar-btn:hover,
      .mob-bar-btn:focus-visible {
        background: rgba(255,255,255,.12);
        color: var(--white);
        outline: none;
      }

      .mob-bar-btn.btn-give {
        flex: 1.5;
        background: var(--orange);
        color: var(--white);
        border-radius: 14px;
        font-size: .68rem;
        animation: barPulse 2.8s ease-in-out infinite;
        box-shadow: 0 4px 18px rgba(240,124,30,.45);
      }
      .mob-bar-btn.btn-give:hover { background: var(--orange-dark); animation: none; }
      .mob-bar-btn.btn-give:active { background: var(--orange-dark) !important; animation: none !important; transform: scale(0.92) !important; }

      @keyframes barPulse {
        0%, 100% { box-shadow: 0 4px 18px rgba(240,124,30,.45); }
        50%       { box-shadow: 0 4px 30px rgba(240,124,30,.75), 0 0 0 5px rgba(240,124,30,.1); }
      }

      .mob-bar-icon { font-size: 1.1rem; line-height: 1; }
      .mob-bar-btn svg { display: block; }
    }

    /* Smaller phones: tighter card widths */
    @media (max-width: 420px) {
      .dp-card { flex: 0 0 88vw; min-width: 240px; }
      /* Re-center padding for the narrower card width on small phones */
      .dp-grid { padding-left: calc((100vw - 88vw) / 2); padding-right: calc((100vw - 88vw) / 2); }
      .event-card { flex: 0 0 90vw; min-width: 250px; }
      .hero-ctas .btn-lg { max-width: 100%; }
    }
