:root {
      --navy: #0d2137;
      --teal: #1a6b7c;
      --teal-light: #2a8fa4;
      --amber: #e8a838;
      --amber-light: #f5c76a;
      --cream: #fdf8f2;
      --warm-white: #fff9f2;
      --text: #1e2d3a;
      --muted: #6b7e8d;
      --border: #dde8ed;
      --card-bg: #ffffff;
      --progress-bg: #e3ecf0;
    }

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'DM Sans', sans-serif;
      background: var(--cream);
      color: var(--text);
      line-height: 1.7;
    }

    /* ── HERO ── */
    .hero {
      position: relative;
      min-height: 92vh;
      display: flex;
      align-items: flex-end;
      overflow: hidden;
      background: var(--navy);
    }
    .hero-img {
      position: absolute; inset: 0;
      background-image: url('../img/photo3.jpeg');
      background-size: cover;
      background-position: center 30%;
      opacity: 0.48;
      filter: saturate(0.65);
    }
    .hero-gradient {
      position: absolute; inset: 0;
      background: linear-gradient(
        to bottom,
        rgba(13,33,55,0.15) 0%,
        rgba(13,33,55,0.55) 50%,
        rgba(13,33,55,0.97) 100%
      );
    }
    .hero-content {
      position: relative;
      z-index: 2;
      width: 100%;
      padding: 3rem 2rem 4rem;
      max-width: 860px;
      margin: 0 auto;
    }
    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(232,168,56,0.18);
      border: 1px solid rgba(232,168,56,0.5);
      color: var(--amber-light);
      font-size: 0.75rem;
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      padding: 6px 14px;
      border-radius: 100px;
      margin-bottom: 1.4rem;
      animation: fadeUp 0.6s ease both;
    }
    .hero-badge span { font-size: 1rem; }
    .hero h1 {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(1.8rem, 4vw, 3.2rem);
      font-weight: 700;
      color: #fff;
      line-height: 1.12;
      margin-bottom: 1rem;
      animation: fadeUp 0.6s 0.1s ease both;
    }
    .hero h1 em { color: var(--amber-light); font-style: italic; }
    .hero-sub {
      font-size: 1.05rem;
      color: rgba(255,255,255,0.72);
      max-width: 520px;
      margin-bottom: 2.2rem;
      animation: fadeUp 0.6s 0.2s ease both;
    }
    .hero-meta {
      display: flex;
      gap: 2rem;
      flex-wrap: wrap;
      margin-bottom: 0;
      animation: fadeUp 0.6s 0.3s ease both;
    }
    .meta-item { color: rgba(255,255,255,0.6); font-size: 0.85rem; }
    .meta-item strong { display: block; color: #fff; font-size: 1.05rem; font-weight: 600; }

    /* ── HERO GOAL BLOCK ── */
    .hero-goal {
      margin-top: 2rem;
      display: inline-flex;
      align-items: center;
      gap: 1.2rem;
      background: rgba(255,255,255,0.06);
      border: 1px solid rgba(232,168,56,0.35);
      border-radius: 16px;
      padding: 0.9rem 1.4rem;
      backdrop-filter: blur(8px);
      animation: fadeUp 0.6s 0.4s ease both;
    }
    .hero-goal-label {
      font-size: 0.7rem;
      font-weight: 700;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.5);
      line-height: 1.3;
    }
    .hero-goal-shimmer {
      width: 120px;
      height: 4px;
      border-radius: 100px;
      background: rgba(255,255,255,0.08);
      overflow: hidden;
      margin-top: 0.5rem;
    }
    .hero-goal-shimmer-fill {
      height: 100%;
      width: 100%;
      border-radius: 100px;
      background: linear-gradient(90deg, transparent 0%, var(--amber) 50%, transparent 100%);
      background-size: 200% 100%;
      animation: shimmerBar 2.2s linear infinite;
    }
    @keyframes shimmerBar {
      0%   { background-position: 200% 0; }
      100% { background-position: -200% 0; }
    }
    .hero-goal-divider {
      width: 1px;
      height: 44px;
      background: rgba(232,168,56,0.3);
      flex-shrink: 0;
    }
    .hero-goal-amount {
      font-family: 'Cormorant Garamond', serif;
      font-size: 2rem;
      font-weight: 700;
      color: var(--amber-light);
      line-height: 1;
      letter-spacing: -0.01em;
    }
    .hero-goal-amount sup {
      font-size: 0.9rem;
      font-family: 'DM Sans', sans-serif;
      font-weight: 600;
      vertical-align: super;
      margin-right: 2px;
      opacity: 0.85;
    }
    .hero-goal-sub {
      font-size: 0.72rem;
      color: rgba(255,255,255,0.4);
      margin-top: 3px;
    }

    /* ── HERO ACTION ROW — 3-col ── */
    .hero-action-row {
      margin-top: 2rem;
      display: inline-flex;
      align-items: center;
      background: rgba(255,255,255,0.06);
      border: 1px solid rgba(232,168,56,0.35);
      border-radius: 16px;
      backdrop-filter: blur(8px);
      animation: fadeUp 0.6s 0.4s ease both;
      overflow: hidden;
    }
    .hac-col {
      display: flex;
      flex-direction: column;
      gap: 0.4rem;
      padding: 1rem 1.4rem;
    }
    .hac-col--center {
      align-items: center;
      text-align: center;
    }
    .hac-divider {
      width: 1px;
      align-self: stretch;
      background: rgba(232,168,56,0.3);
      flex-shrink: 0;
    }
    .hac-caption {
      font-size: 0.62rem;
      color: rgba(255,255,255,0.45);
      letter-spacing: 0.05em;
      font-family: 'DM Sans', sans-serif;
    }
    .hac-copy-upi-btn {
      display: inline-flex;
      align-items: center;
      gap: 4px;
      background: rgba(255,255,255,0.08);
      color: rgba(255,255,255,0.75);
      border: 1px solid rgba(255,255,255,0.18);
      border-radius: 6px;
      padding: 3px 9px;
      font-size: 0.6rem;
      font-family: 'DM Sans', sans-serif;
      letter-spacing: 0.04em;
      cursor: pointer;
      transition: background 0.2s, color 0.2s;
    }
    .hac-copy-upi-btn:hover { background: rgba(255,255,255,0.15); color: #fff; }
    .hac-copy-upi-btn.copied { background: rgba(56,142,60,0.35); color: #81c784; border-color: #81c784; }
    .hac-donate-btn {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: var(--amber);
      color: var(--navy);
      border: none;
      border-radius: 10px;
      padding: 0.6rem 1.2rem;
      font-family: 'DM Sans', sans-serif;
      font-size: 0.85rem;
      font-weight: 700;
      letter-spacing: 0.02em;
      cursor: pointer;
      transition: background 0.18s, transform 0.15s;
      white-space: nowrap;
    }
    .hac-donate-btn:hover { background: var(--amber-light); transform: translateY(-1px); }
    .hac-donate-btn:active { transform: translateY(0); }
    .hac-list {
      list-style: none;
      margin: 0;
      padding: 0;
      display: flex;
      flex-direction: column;
      gap: 0.3rem;
    }
    .hac-list li {
      font-size: 0.72rem;
      color: rgba(255,255,255,0.7);
      font-family: 'DM Sans', sans-serif;
      white-space: nowrap;
      cursor: pointer;
      transition: color 0.15s;
    }
    .hac-list li:hover { color: var(--amber-light); }
    .hac-support-btn {
      background: transparent;
      border: 1px solid rgba(232,168,56,0.5);
      border-radius: 6px;
      color: var(--amber-light);
      font-family: 'DM Sans', sans-serif;
      font-size: 0.68rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      padding: 0.28rem 0.7rem;
      cursor: pointer;
      transition: background 0.15s, color 0.15s;
      white-space: nowrap;
      align-self: center;
    }
    .hac-support-btn:hover { background: rgba(232,168,56,0.15); }
    @media (max-width: 600px) {
      .hero-action-row { flex-direction: column; align-items: stretch; width: 100%; }
      .hac-divider { width: auto; height: 1px; }
      .hac-col { align-items: center; text-align: center; }
    }

    /* ── MAIN ── */
    .main { max-width: 860px; margin: 0 auto; padding: 3rem 1.5rem 5rem; }

    /* Story */
    .story-card {
      background: var(--card-bg);
      border-radius: 20px;
      padding: 2.4rem 2.4rem 2.8rem;
      box-shadow: 0 2px 30px rgba(13,33,55,0.07);
      margin-bottom: 2.2rem;
      border: 1px solid var(--border);
      animation: fadeUp 0.7s 0.3s ease both;
    }
    .section-eyebrow {
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--teal-light);
      margin-bottom: 0.7rem;
    }
    .story-card h2 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.9rem;
      font-weight: 700;
      color: var(--navy);
      margin-bottom: 1.2rem;
      line-height: 1.25;
    }
    .story-body p {
      margin-bottom: 1rem;
      color: #3a4d5c;
      font-size: 1.02rem;
    }
    .story-body p:last-child { margin-bottom: 0; }
    .author-name {
      margin-top: 1.4rem;
      font-weight: 600;
      color: var(--navy);
      font-size: 0.95rem;
    }

    /* Needs grid */
    .needs-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
      gap: 1rem;
      margin-bottom: 2.2rem;
      animation: fadeUp 0.7s 0.4s ease both;
    }
    .need-item {
      background: var(--card-bg);
      border-radius: 14px;
      padding: 1.3rem 1.2rem;
      text-align: center;
      border: 1px solid var(--border);
      box-shadow: 0 1px 12px rgba(13,33,55,0.05);
      transition: transform 0.22s, box-shadow 0.22s;
    }
    .need-item:hover { transform: translateY(-3px); box-shadow: 0 6px 24px rgba(13,33,55,0.1); }
    .need-icon { font-size: 1.9rem; margin-bottom: 0.5rem; }
    .need-title { font-weight: 600; font-size: 0.88rem; color: var(--navy); margin-bottom: 0.25rem; }
    .need-desc { font-size: 0.78rem; color: var(--muted); }

    /* Payment section */
    .payment-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 1.4rem;
      animation: fadeUp 0.7s 0.5s ease both;
    }
    .pay-card {
      background: var(--card-bg);
      border-radius: 18px;
      border: 1px solid var(--border);
      overflow: hidden;
      box-shadow: 0 2px 20px rgba(13,33,55,0.06);
      transition: transform 0.22s, box-shadow 0.22s;
    }
    .pay-card:hover { transform: translateY(-3px); box-shadow: 0 8px 32px rgba(13,33,55,0.1); }
    .pay-header {
      padding: 1rem 1.4rem 0.8rem;
      display: flex;
      align-items: center;
      gap: 10px;
      border-bottom: 1px solid var(--border);
    }
    .pay-icon {
      width: 38px; height: 38px;
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.2rem;
      flex-shrink: 0;
    }
    .pay-icon.upi  { background: linear-gradient(135deg,#4CAF50,#2e7d32); }
    .pay-icon.bank { background: linear-gradient(135deg,#1976d2,#0d47a1); }
    .pay-icon.intl { background: rgba(255,255,255,0.15); }

    /* ── INTERNATIONAL SECTION ── */
    .intl-section {
      grid-column: 1 / -1;
      border: 1px solid var(--border);
      border-radius: 18px;
      overflow: hidden;
      box-shadow: 0 2px 20px rgba(13,33,55,0.06);
    }
    .intl-header {
      padding: 1rem 1.4rem 0.9rem;
      display: flex;
      align-items: center;
      gap: 10px;
      background: var(--navy);
    }
    .intl-header h3 { font-size: 0.95rem; font-weight: 700; color: #fff; }
    .intl-bank-strip {
      background: #f4f8fb;
      border-bottom: 1px solid var(--border);
      padding: 0.7rem 1.4rem;
      display: flex;
      flex-wrap: wrap;
      gap: 0.5rem 2rem;
      font-size: 0.8rem;
    }
    .intl-bank-item { display: flex; gap: 5px; align-items: center; }
    .intl-bank-item span { color: var(--muted); font-size: 0.75rem; }
    .intl-bank-item strong { color: var(--navy); }
    .intl-methods {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    .intl-method {
      padding: 1.1rem 1.3rem 1.3rem;
      border-right: 1px solid var(--border);
      border-top: 1px solid var(--border);
      background: var(--card-bg);
      transition: background 0.2s;
    }
    .intl-method:last-child { border-right: none; }
    .intl-method:hover { background: #f7fbff; }
    .intl-method-head {
      display: flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 0.8rem;
    }
    .intl-logo {
      width: 32px; height: 32px;
      border-radius: 8px;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.1rem;
      flex-shrink: 0;
    }
    .intl-logo.wise     { background: #9fe870; }
    .intl-logo.remitly  { background: #e8f0ff; }
    .intl-logo.paypal   { background: #003087; color: #fff; }
    .intl-logo.bankwire { background: #e8f4fb; }
    .intl-method-name { font-weight: 700; font-size: 0.88rem; color: var(--navy); }
    .intl-method-tag  { font-size: 0.7rem; color: var(--muted); }
    .intl-steps {
      list-style: none;
      margin: 0; padding: 0;
      display: flex; flex-direction: column; gap: 0.45rem;
    }
    .intl-steps li {
      display: flex; gap: 7px;
      font-size: 0.78rem; color: #3a4d5c; line-height: 1.4;
    }
    .step-num {
      width: 17px; height: 17px;
      border-radius: 50%;
      background: var(--navy); color: #fff;
      font-size: 0.65rem; font-weight: 700;
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0; margin-top: 1px;
    }
    .intl-notify {
      background: #fdf8ec;
      border-top: 1px solid #f0d88a;
      padding: 0.7rem 1.3rem;
      font-size: 0.78rem;
      color: #7a5c00;
    }
    .pay-header h3 { font-size: 0.95rem; font-weight: 700; color: var(--navy); }
    .pay-body { padding: 1.2rem 1.4rem 1.4rem; }

    /* UPI QR */
    .qr-wrap {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0.8rem;
    }
    .qr-img {
      width: 160px; height: 160px;
      border-radius: 12px;
      border: 3px solid var(--border);
      padding: 6px;
      background: #fff;
    }
    .upi-id {
      font-size: 0.82rem;
      color: var(--muted);
      text-align: center;
    }
    .upi-id strong { display: block; color: var(--navy); font-size: 0.92rem; letter-spacing: 0.03em; }

    /* Bank / WU details */
    .detail-row {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      padding: 0.55rem 0;
      border-bottom: 1px dashed var(--border);
      gap: 1rem;
    }
    .detail-row:last-child { border-bottom: none; }
    .detail-label { font-size: 0.77rem; color: var(--muted); font-weight: 500; flex-shrink: 0; }
    .detail-val { font-size: 0.85rem; font-weight: 600; color: var(--navy); text-align: right; word-break: break-all; }

    /* Copy buttons */
    .copy-btn {
      margin-top: 1rem;
      width: 100%;
      padding: 0.65rem;
      border: none;
      border-radius: 10px;
      background: var(--navy);
      color: #fff;
      font-size: 0.82rem;
      font-weight: 600;
      cursor: pointer;
      letter-spacing: 0.04em;
      transition: background 0.2s, transform 0.15s;
    }
    .copy-btn:hover { background: var(--teal); transform: scale(1.01); }
    .copy-btn:active { transform: scale(0.98); }
    .copy-btn.copied { background: #388e3c; }

    /* Share */
    .share-section {
      margin-top: 2.4rem;
      background: linear-gradient(135deg, var(--navy) 0%, var(--teal) 100%);
      border-radius: 18px;
      padding: 2rem 2rem;
      text-align: center;
      color: #fff;
      animation: fadeUp 0.7s 0.6s ease both;
    }
    .share-section h3 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.6rem;
      margin-bottom: 0.5rem;
    }
    .share-section p { font-size: 0.9rem; opacity: 0.75; margin-bottom: 1.4rem; }
    .share-btns { display: flex; gap: 0.8rem; justify-content: center; flex-wrap: wrap; }
    .share-btn {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 0.6rem 1.2rem;
      border-radius: 100px;
      font-size: 0.82rem;
      font-weight: 700;
      cursor: pointer;
      border: 2px solid rgba(255,255,255,0.35);
      background: rgba(255,255,255,0.1);
      color: #fff;
      text-decoration: none;
      transition: background 0.2s, border-color 0.2s;
    }
    .share-btn:hover { background: rgba(255,255,255,0.22); border-color: rgba(255,255,255,0.7); }
    .share-btn.wa { background: rgba(37,211,102,0.25); border-color: #25d366; }
    .share-btn.wa:hover { background: rgba(37,211,102,0.45); }

    /* Footer */
    footer {
      text-align: center;
      padding: 2rem 1rem;
      font-size: 0.8rem;
      color: var(--muted);
      border-top: 1px solid var(--border);
    }
    footer strong { color: var(--navy); }

    /* Animations */
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(24px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    /* ── GALLERY / CAROUSEL ── */
    .gallery-section {
      margin: 2.4rem 0;
      animation: fadeUp 0.7s 0.45s ease both;
    }
    .tab-bar {
      display: flex;
      gap: 6px;
      margin-bottom: 1.2rem;
      background: var(--card-bg);
      border: 1px solid var(--border);
      border-radius: 14px;
      padding: 5px;
      width: fit-content;
    }
    .tab-btn {
      padding: 0.5rem 1.1rem;
      border: none;
      border-radius: 10px;
      font-size: 0.82rem;
      font-weight: 600;
      cursor: pointer;
      background: transparent;
      color: var(--muted);
      transition: all 0.2s;
      display: flex;
      align-items: center;
      gap: 5px;
    }
    .tab-btn.active {
      background: var(--navy);
      color: #fff;
      box-shadow: 0 2px 10px rgba(13,33,55,0.2);
    }
    .tab-pane { display: none; }
    .tab-pane.active { display: block; }

    /* Photo grid */
    .photo-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
      gap: 10px;
    }
    .photo-thumb {
      aspect-ratio: 1;
      border-radius: 12px;
      overflow: hidden;
      cursor: pointer;
      position: relative;
      background: var(--border);
      border: 2px solid var(--border);
      transition: transform 0.2s, box-shadow 0.2s;
    }
    .photo-thumb:hover { transform: scale(1.04); box-shadow: 0 6px 24px rgba(13,33,55,0.15); }
    .photo-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
    .photo-thumb .thumb-overlay {
      position: absolute; inset: 0;
      background: rgba(13,33,55,0.35);
      display: flex; align-items: center; justify-content: center;
      opacity: 0; transition: opacity 0.2s; font-size: 1.5rem;
    }
    .photo-thumb:hover .thumb-overlay { opacity: 1; }

    /* Doc grid */
    .doc-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
      gap: 10px;
    }
    .doc-item {
      border-radius: 12px;
      border: 1px solid var(--border);
      overflow: hidden;
      background: var(--card-bg);
      cursor: pointer;
      transition: transform 0.2s, box-shadow 0.2s;
    }
    .doc-item:hover { transform: translateY(-3px); box-shadow: 0 6px 20px rgba(13,33,55,0.1); }
    .doc-img-thumb { position: relative; height: 140px; overflow: hidden; background: #f0f0f0; }
    .doc-img-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.3s; }
    .doc-item:hover .doc-img-thumb img { transform: scale(1.05); }
    .doc-img-overlay { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; font-size: 1.6rem; opacity: 0; background: rgba(13,33,55,0); transition: opacity 0.2s, background 0.2s; }
    .doc-item:hover .doc-img-overlay { opacity: 1; background: rgba(13,33,55,0.35); }
    .doc-pdf-card { height: 140px; background: linear-gradient(135deg, #fff5f5, #ffe0e0); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px; padding: 0.5rem; }
    .doc-pdf-name { font-size: 0.68rem; font-weight: 600; color: #c62828; text-align: center; max-width: 90%; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
    .doc-label { padding: 0.6rem 0.8rem; font-size: 0.78rem; font-weight: 600; color: var(--navy); border-top: 1px solid var(--border); }
    .doc-sublabel { font-size: 0.7rem; color: var(--muted); font-weight: 400; }

    /* Video grid */
    .video-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
      gap: 12px;
    }
    .video-card {
      border-radius: 14px;
      overflow: hidden;
      border: 1px solid var(--border);
      background: var(--card-bg);
      box-shadow: 0 2px 12px rgba(13,33,55,0.06);
    }
    .video-card iframe { width: 100%; aspect-ratio: 16/9; display: block; border: none; }
    .video-card-label { padding: 0.6rem 0.9rem; font-size: 0.8rem; font-weight: 600; color: var(--navy); border-top: 1px solid var(--border); }
    .video-thumb-wrap { position: relative; aspect-ratio: 16/9; background: #111; cursor: pointer; overflow: hidden; }
    .video-thumb-wrap img { width: 100%; height: 100%; object-fit: cover; opacity: 0.75; display: block; }
    .play-btn { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; }
    .play-btn svg { width: 52px; height: 52px; filter: drop-shadow(0 2px 8px rgba(0,0,0,0.5)); transition: transform 0.2s; }
    .video-thumb-wrap:hover .play-btn svg { transform: scale(1.12); }

    /* Lightbox */
    .lightbox {
      display: none;
      position: fixed; inset: 0;
      z-index: 1000;
      background: rgba(5,12,20,0.92);
      align-items: center;
      justify-content: center;
      padding: 1rem;
      backdrop-filter: blur(6px);
    }
    .lightbox.open { display: flex; }
    .lightbox-inner {
      position: relative;
      max-width: 90vw;
      max-height: 90vh;
      border-radius: 16px;
      overflow: hidden;
      background: #000;
    }
    .lightbox-inner img,
    .lightbox-inner iframe { display: block; max-width: 90vw; max-height: 85vh; width: auto; height: auto; }
    .lightbox-inner iframe { width: min(800px, 90vw); height: min(600px, 80vh); }
    .lb-close {
      position: absolute; top: 10px; right: 12px;
      background: rgba(255,255,255,0.12); border: none; color: #fff;
      font-size: 1.4rem; width: 36px; height: 36px; border-radius: 50%;
      cursor: pointer; display: flex; align-items: center; justify-content: center;
      transition: background 0.2s; z-index: 2;
    }
    .lb-close:hover { background: rgba(255,255,255,0.25); }
    .lb-nav {
      position: absolute; top: 50%; transform: translateY(-50%);
      background: rgba(255,255,255,0.12); border: none; color: #fff;
      font-size: 1.5rem; width: 42px; height: 42px; border-radius: 50%;
      cursor: pointer; display: flex; align-items: center; justify-content: center;
      transition: background 0.2s; z-index: 2;
    }
    .lb-nav:hover { background: rgba(255,255,255,0.25); }
    .lb-prev { left: 8px; }
    .lb-next { right: 8px; }
    .lb-caption {
      position: absolute; bottom: 0; left: 0; right: 0;
      background: linear-gradient(transparent, rgba(0,0,0,0.75));
      color: #fff; font-size: 0.82rem; padding: 1.5rem 1rem 0.8rem; text-align: center;
    }

    /* Drive tip box */
    .drive-tip {
      background: #f0f7ff; border: 1px solid #b3d4f5; border-radius: 12px;
      padding: 0.9rem 1.1rem; font-size: 0.8rem; color: #1a4a7a;
      margin-top: 1rem; line-height: 1.6;
    }
    .drive-tip strong { color: #0d2f5c; }
    .drive-tip code { background: #dbeafe; border-radius: 5px; padding: 1px 5px; font-size: 0.76rem; }

    /* ── EXPENSES ── */
    .expenses-section {
      background: var(--card-bg);
      border-radius: 20px;
      padding: 2.4rem 2.4rem 2.6rem;
      box-shadow: 0 2px 30px rgba(13,33,55,0.07);
      margin-bottom: 2.2rem;
      border: 1px solid var(--border);
      animation: fadeUp 0.7s 0.45s ease both;
    }
    .expenses-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.75rem; font-weight: 700; color: var(--navy); margin-bottom: 0.6rem;
    }
    .expenses-intro { font-size: 0.92rem; color: var(--muted); margin-bottom: 1.6rem; max-width: 580px; }
    .tier-label { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 0.7rem; }
    .tier-label.urgent { color: #c0392b; }
    .tier-label.annual { color: #b07d10; }
    .expense-table { border: 1px solid var(--border); border-radius: 14px; overflow: hidden; }
    .exp-row {
      display: flex; align-items: center; justify-content: space-between;
      padding: 1rem 1.2rem; gap: 1rem; border-bottom: 1px solid var(--border); transition: background 0.18s;
    }
    .exp-row:last-child { border-bottom: none; }
    .exp-row:hover { background: #f7fafb; }
    .exp-left { display: flex; align-items: center; gap: 0.9rem; }
    .exp-icon { font-size: 1.5rem; width: 40px; text-align: center; flex-shrink: 0; }
    .exp-name { font-weight: 600; font-size: 0.92rem; color: var(--navy); margin-bottom: 0.15rem; }
    .exp-note { font-size: 0.76rem; color: var(--muted); }
    .exp-amount {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.45rem; font-weight: 700; color: #c0392b;
      white-space: nowrap; text-align: right; flex-shrink: 0;
    }
    .exp-amount.amber { color: #b07d10; }
    .exp-amount span { font-size: 0.72rem; font-family: 'DM Sans', sans-serif; font-weight: 500; color: var(--muted); margin-left: 3px; }
    .exp-total-row {
      display: flex; justify-content: space-between; align-items: center;
      padding: 0.8rem 1.2rem; font-weight: 700; font-size: 0.88rem;
    }
    .exp-total-row.monthly { background: #fff5f5; color: #c0392b; border-top: 2px solid #f5c6c6; }
    .donation-callout {
      margin-top: 1.6rem;
      background: linear-gradient(135deg, #0d2137 0%, #1a6b7c 100%);
      border-radius: 14px; padding: 1.4rem 1.6rem 1.2rem; color: #fff;
    }
    .callout-cols { display: flex; gap: 0; flex-wrap: wrap; margin-bottom: 1rem; }
    .callout-item { flex: 1; min-width: 110px; padding: 0.3rem 0.6rem; text-align: center; }
    .callout-divider { width: 1px; background: rgba(255,255,255,0.15); margin: 4px 0; }
    .callout-amount { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; font-weight: 700; color: var(--amber-light); margin-bottom: 3px; }
    .callout-desc { font-size: 0.73rem; color: rgba(255,255,255,0.65); line-height: 1.35; }
    .callout-note { text-align: center; font-size: 0.8rem; color: rgba(255,255,255,0.6); border-top: 1px solid rgba(255,255,255,0.12); padding-top: 0.8rem; }

    /* ── TWO-COLUMN MEDIA ROW ── */
    .media-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1.6rem; }
    .media-col { display: flex; flex-direction: column; gap: 0.4rem; }
    .media-label { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--teal-light); }

    /* ── CAROUSEL ── */
    .carousel {
      position: relative; border-radius: 14px; overflow: hidden;
      background: #111; box-shadow: 0 4px 20px rgba(13,33,55,0.13);
      height: 240px; flex: 1;
    }
    .carousel-track { display: flex; height: 100%; transition: transform 0.6s cubic-bezier(.4,0,.2,1); will-change: transform; }
    .carousel-slide {
      min-width: 100%; width: 100%; height: 100%; flex-shrink: 0;
      overflow: hidden; display: flex; align-items: center; justify-content: center; background: #111;
    }
    .carousel-slide img {
      width: 100%; height: 100%; object-fit: cover; object-position: center center;
      display: block; filter: saturate(0.85) brightness(0.93); flex-shrink: 0;
    }
    .carousel-arrow {
      position: absolute; top: 50%; transform: translateY(-50%);
      background: rgba(13,33,55,0.55); border: none; color: #fff;
      font-size: 1rem; width: 30px; height: 30px; border-radius: 50%;
      cursor: pointer; display: flex; align-items: center; justify-content: center;
      transition: background 0.2s; z-index: 10; backdrop-filter: blur(4px);
    }
    .carousel-arrow:hover { background: rgba(13,33,55,0.85); }
    .carousel-arrow.left  { left: 8px; }
    .carousel-arrow.right { right: 8px; }
    .carousel-dots {
      position: absolute; bottom: 8px; left: 50%; transform: translateX(-50%);
      display: flex; gap: 5px; z-index: 10;
    }
    .dot { width: 7px; height: 7px; border-radius: 50%; background: rgba(255,255,255,0.4); cursor: pointer; transition: background 0.3s, transform 0.3s; }
    .dot.active { background: var(--amber-light); transform: scale(1.3); }
    .carousel-timer {
      position: absolute; bottom: 0; left: 0;
      height: 3px; background: var(--amber); border-radius: 0 2px 2px 0; width: 0%; z-index: 10;
    }
    @keyframes timerBar { from { width: 0% } to { width: 100% } }
    .carousel-loading {
      position: absolute; inset: 0;
      display: flex; align-items: center; justify-content: center;
      color: rgba(255,255,255,0.5); font-size: 0.82rem;
      background: rgba(13,33,55,0.55); z-index: 5; transition: opacity 0.4s;
    }
    .carousel-loading.hidden { opacity: 0; pointer-events: none; }

    /* ── VIDEO CAROUSEL ── */
    .vid-carousel {
      position: relative; border-radius: 14px; overflow: hidden;
      background: #0a0a0a; box-shadow: 0 4px 20px rgba(13,33,55,0.18);
      height: 240px; flex: 1;
    }
    .vid-track { display: flex; height: 100%; transition: transform 0.5s cubic-bezier(.4,0,.2,1); will-change: transform; }
    .vid-slide { position: relative; min-width: 100%; height: 100%; flex-shrink: 0; background: #000; cursor: pointer; }
    .vid-slide-bg {
      position: absolute; inset: 0; background-size: cover; background-position: center;
      filter: brightness(0.35) saturate(0.45) blur(1px); transform: scale(1.04); transition: filter 0.35s;
    }
    .vid-slide:hover .vid-slide-bg { filter: brightness(0.22) saturate(0.35) blur(2px); }
    .vid-slide-overlay {
      position: absolute; inset: 0; display: flex; flex-direction: column;
      align-items: center; justify-content: center; gap: 0.65rem; z-index: 3; transition: opacity 0.3s;
    }
    .vid-slide-overlay.hidden { opacity: 0; pointer-events: none; }
    .yt-play-btn {
      background: none; border: none; cursor: pointer; width: 68px; height: 48px; padding: 0;
      filter: drop-shadow(0 4px 14px rgba(0,0,0,0.6)); transition: transform 0.2s, filter 0.2s;
    }
    .yt-play-btn:hover { transform: scale(1.14); filter: drop-shadow(0 6px 20px rgba(255,0,0,0.5)); }
    .yt-btn-bg  { fill: #ff0000; }
    .yt-btn-icon{ fill: #fff; }
    .vid-title {
      color: rgba(255,255,255,0.88); font-size: 0.76rem; font-weight: 600;
      letter-spacing: 0.04em; text-shadow: 0 1px 8px rgba(0,0,0,0.85);
      text-align: center; padding: 0 1rem; max-width: 90%;
      white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
    }
    .vid-player { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; background: #000; display: none; z-index: 4; }
    .vid-empty { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.5rem; color: rgba(255,255,255,0.3); font-size: 0.82rem; }
    .vid-empty-icon { font-size: 2rem; opacity: 0.4; }
    .vid-counter {
      position: absolute; top: 10px; right: 10px;
      background: rgba(0,0,0,0.55); color: rgba(255,255,255,0.75);
      font-size: 0.72rem; font-weight: 700; padding: 3px 9px; border-radius: 100px;
      z-index: 10; letter-spacing: 0.05em; backdrop-filter: blur(4px);
    }

    @media (max-width: 620px) {
      .media-row { grid-template-columns: 1fr; }
      .carousel, .vid-carousel { height: 210px; }
    }

    .gallery-empty {
      grid-column: 1 / -1; text-align: center; color: var(--muted); font-size: 0.85rem;
      padding: 2rem; background: var(--cream); border-radius: 10px; border: 1px dashed var(--border);
    }
    .vid-thumb-wrap { position: relative; width: 100%; height: 160px; border-radius: 10px; overflow: hidden; background: #111; }
    .vid-thumb-wrap .vid-slide-bg { position: absolute; inset: 0; background-size: cover; background-position: center; filter: brightness(0.35) saturate(0.45) blur(1px); transform: scale(1.04); }
    .vid-thumb-wrap .vid-slide-overlay { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; z-index: 3; }
    .vid-thumb-wrap .vid-player { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; background: #000; display: none; z-index: 4; }

    /* ── SUPPORTERS TICKER ── */
    .ticker-section { margin: 2.4rem 0 0; animation: fadeUp 0.7s 0.5s ease both; }
    .ticker-header { display: flex; align-items: center; gap: 0.8rem; margin-bottom: 0.75rem; flex-wrap: wrap; }
    .ticker-eyebrow { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--teal-light); }
    .ticker-badge { display: inline-flex; align-items: center; gap: 5px; background: linear-gradient(135deg, var(--navy), var(--teal)); color: #fff; font-size: 0.72rem; font-weight: 700; padding: 4px 12px; border-radius: 100px; letter-spacing: 0.04em; }
    .ticker-strip { background: var(--navy); border-radius: 14px; padding: 0.85rem 0; overflow: hidden; position: relative; }
    .ticker-strip::before, .ticker-strip::after { content: ''; position: absolute; top: 0; bottom: 0; width: 60px; z-index: 2; pointer-events: none; }
    .ticker-strip::before { left: 0; background: linear-gradient(to right, var(--navy), transparent); }
    .ticker-strip::after  { right: 0; background: linear-gradient(to left, var(--navy), transparent); }
    .ticker-track { display: flex; width: max-content; animation: tickerScroll 28s linear infinite; }
    .ticker-track:hover { animation-play-state: paused; }
    @keyframes tickerScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
    .ticker-item { display: inline-flex; align-items: center; gap: 6px; padding: 0 1.4rem; white-space: nowrap; font-size: 0.88rem; font-weight: 600; color: var(--amber-light); letter-spacing: 0.02em; }
    .ticker-item .t-emoji { font-size: 0.9rem; }
    .ticker-item .t-dot { color: rgba(255,255,255,0.2); font-size: 1.1rem; margin-left: 1rem; }
    .ticker-note { margin-top: 0.65rem; font-size: 0.73rem; color: var(--muted); font-style: italic; text-align: center; }

    /* Responsive */
    @media (max-width: 600px) {
      .hero-content { padding: 2rem 1.2rem 3rem; }
      .hero-goal { flex-wrap: wrap; gap: 0.8rem; }
      .story-card { padding: 1.6rem 1.4rem; }
      .pay-body { padding: 1rem 1.1rem 1.2rem; }
      .photo-grid { grid-template-columns: repeat(3, 1fr); }
      .tab-btn { padding: 0.45rem 0.7rem; font-size: 0.77rem; }
    }
