    :root {
      --green: #1a6b3c;
      --green-light: #2d9558;
      --gold: #c9922a;
      --gold-light: #f0c060;
      --cream: #fdf8ef;
      --cream-dark: #f5ead6;
      --text: #1c1a14;
      --text-muted: #5c5440;
    }

    * { margin: 0; padding: 0; box-sizing: border-box; }

    body {
      font-family: 'Plus Jakarta Sans', sans-serif;
      background: var(--cream);
      color: var(--text);
      overflow-x: hidden;
      scroll-behavior: smooth;
    }

    /* ── HERO ── */
    .hero {
      min-height: 100vh;
      background: var(--green);
      position: relative;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 60px 20px;
      overflow: hidden;
    }

    .hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background: 
        radial-gradient(ellipse 80% 60% at 50% 0%, rgba(201,146,42,0.18) 0%, transparent 70%),
        radial-gradient(ellipse 60% 80% at 80% 100%, rgba(201,146,42,0.10) 0%, transparent 60%);
    }

    .hero-ornament {
      position: absolute;
      width: 600px;
      height: 600px;
      border-radius: 50%;
      border: 1px solid rgba(201,146,42,0.15);
      top: 50%;
      left: 50%;
      transform: translate(-50%,-50%);
      pointer-events: none;
    }
    .hero-ornament:nth-child(2) { width: 800px; height: 800px; border-color: rgba(201,146,42,0.08); }

    .hero-badge {
      background: rgba(201,146,42,0.2);
      border: 1px solid var(--gold);
      color: var(--gold-light);
      font-size: 0.75rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      padding: 6px 20px;
      border-radius: 50px;
      margin-bottom: 24px;
      position: relative;
    }

    .hero h1 {
      font-family: 'Amiri', serif;
      font-size: clamp(2.4rem, 6vw, 5rem);
      color: #fff;
      line-height: 1.15;
      position: relative;
      max-width: 780px;
    }

    .hero h1 span { color: var(--gold-light); }

    .hero-sub {
      font-size: 1rem;
      color: rgba(255,255,255,0.65);
      margin-top: 16px;
      max-width: 480px;
      line-height: 1.7;
      position: relative;
    }

    .hero-meta {
      display: flex;
      gap: 32px;
      margin-top: 40px;
      position: relative;
    }

    .hero-meta-item {
      text-align: center;
    }
    .hero-meta-item .val {
      font-family: 'Amiri', serif;
      font-size: 2rem;
      color: var(--gold-light);
      font-weight: 700;
      display: block;
    }
    .hero-meta-item .lbl {
      font-size: 0.72rem;
      color: rgba(255,255,255,0.5);
      text-transform: uppercase;
      letter-spacing: 0.1em;
    }

    .hero-divider {
      width: 1px;
      background: rgba(255,255,255,0.15);
      align-self: stretch;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 14px 32px;
      border-radius: 6px;
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-weight: 600;
      font-size: 0.9rem;
      cursor: pointer;
      text-decoration: none;
      transition: all 0.2s;
      border: none;
    }

    .btn-gold {
      background: var(--gold);
      color: #fff;
      margin-top: 36px;
      position: relative;
    }
    .btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,146,42,0.4); }

    /* ── NAV ── */
    nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 16px 40px;
      background: rgba(26,107,60,0.95);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid rgba(201,146,42,0.2);
    }

    .nav-logo {
      font-family: 'Amiri', serif;
      color: var(--gold-light);
      font-size: 1.15rem;
    }

    .nav-links {
      display: flex;
      gap: 28px;
      list-style: none;
    }

    .nav-links a {
      color: rgba(255,255,255,0.75);
      text-decoration: none;
      font-size: 0.85rem;
      transition: color 0.2s;
    }
    .nav-links a:hover { color: var(--gold-light); }

    /* ── SECTIONS ── */
    section { padding: 80px 20px; }

    .container { max-width: 1100px; margin: 0 auto; }

    .section-label {
      font-size: 0.72rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--green-light);
      font-weight: 600;
      margin-bottom: 8px;
    }

    .section-title {
      font-family: 'Amiri', serif;
      font-size: clamp(1.8rem, 4vw, 2.8rem);
      color: var(--green);
      margin-bottom: 16px;
    }

    .section-body {
      color: var(--text-muted);
      line-height: 1.8;
      max-width: 640px;
    }

    /* ── TENTANG ── */
    #tentang { background: var(--cream); }

    .tentang-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
      margin-top: 48px;
    }

    .tentang-text p { color: var(--text-muted); line-height: 1.8; margin-bottom: 14px; }

    .tentang-card {
      background: var(--green);
      border-radius: 16px;
      padding: 40px;
      color: #fff;
      position: relative;
      overflow: hidden;
    }
    .tentang-card::before {
      content: '☪';
      position: absolute;
      font-size: 8rem;
      right: -20px;
      bottom: -20px;
      opacity: 0.06;
    }
    .tentang-card h3 {
      font-family: 'Amiri', serif;
      font-size: 1.5rem;
      color: var(--gold-light);
      margin-bottom: 20px;
    }
    .tentang-card ul { list-style: none; }
    .tentang-card ul li {
      display: flex;
      gap: 10px;
      align-items: flex-start;
      padding: 10px 0;
      border-bottom: 1px solid rgba(255,255,255,0.08);
      font-size: 0.9rem;
      color: rgba(255,255,255,0.85);
    }
    .tentang-card ul li:last-child { border-bottom: none; }
    .tentang-card ul li .icon { color: var(--gold-light); flex-shrink: 0; margin-top: 2px; }

    /* ── FOTO ── */
    #foto { background: var(--cream-dark); }

    .foto-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
      margin-top: 40px;
    }

    .foto-item {
      border-radius: 12px;
      overflow: hidden;
      aspect-ratio: 4/3;
      background: #ddd;
      position: relative;
      cursor: pointer;
    }
    .foto-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.4s;
    }
    .foto-item:hover img { transform: scale(1.06); }
    .foto-item .foto-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(26,107,60,0.7) 0%, transparent 50%);
      opacity: 0;
      transition: opacity 0.3s;
      display: flex;
      align-items: flex-end;
      padding: 16px;
    }
    .foto-item:hover .foto-overlay { opacity: 1; }
    .foto-overlay span { color: #fff; font-size: 0.85rem; font-weight: 600; }

    /* placeholder foto */
    .foto-placeholder {
      width: 100%; height: 100%;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 8px;
      background: linear-gradient(135deg, var(--green) 0%, var(--green-light) 100%);
      color: rgba(255,255,255,0.5);
      font-size: 0.78rem;
    }
    .foto-placeholder .ico { font-size: 2rem; }

    /* ── LAPORAN KEUANGAN ── */
    #laporan { background: var(--cream); }

    #laporan .loading {
      text-align: center;
      padding: 40px;
      color: var(--text-muted);
      font-style: italic;
    }

    .laporan-summary {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      margin: 40px 0 32px;
    }

    .sum-card {
      border-radius: 12px;
      padding: 28px 24px;
      background: var(--green);
      color: #fff;
    }
    .sum-card.income { background: var(--green); }
    .sum-card.expense { background: #7a3020; }
    .sum-card.balance { background: var(--gold); }

    .sum-card .lbl { font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; opacity: 0.7; }
    .sum-card .val {
      font-family: 'Amiri', serif;
      font-size: 1.8rem;
      margin-top: 8px;
      display: block;
    }

    .table-wrap { overflow-x: auto; }

    table {
      width: 100%;
      border-collapse: collapse;
      font-size: 0.88rem;
    }

    thead tr { background: var(--green); color: #fff; }
    thead th { padding: 12px 16px; text-align: left; font-weight: 600; white-space: nowrap; }

    tbody tr { border-bottom: 1px solid rgba(0,0,0,0.06); transition: background 0.15s; }
    tbody tr:hover { background: rgba(26,107,60,0.05); }
    tbody td { padding: 12px 16px; }
    tbody td.amount { font-weight: 600; }
    tbody td.amount.in { color: var(--green-light); }
    tbody td.amount.out { color: #c0392b; }

    .badge {
      display: inline-block;
      padding: 3px 10px;
      border-radius: 50px;
      font-size: 0.7rem;
      font-weight: 600;
    }
    .badge.pemasukan { background: rgba(45,149,88,0.12); color: var(--green); }
    .badge.pengeluaran { background: rgba(192,57,43,0.1); color: #c0392b; }

    /* ── INFAQ ── */
    #infaq { background: var(--green); }
    #infaq .section-label { color: var(--gold-light); }
    #infaq .section-title { color: #fff; }
    #infaq .section-body { color: rgba(255,255,255,0.65); }

    .infaq-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 48px;
      margin-top: 48px;
      align-items: start;
    }

    .infaq-frame-wrap {
      background: rgba(255,255,255,0.06);
      border: 1px solid rgba(201,146,42,0.25);
      border-radius: 16px;
      overflow: hidden;
    }

    .infaq-frame-wrap iframe {
      width: 100%;
      min-height: 520px;
      border: none;
      display: block;
    }

    .infaq-info h3 {
      font-family: 'Amiri', serif;
      font-size: 1.5rem;
      color: var(--gold-light);
      margin-bottom: 16px;
    }
    .infaq-info p { color: rgba(255,255,255,0.65); line-height: 1.8; margin-bottom: 20px; }

    .bank-card {
      background: rgba(255,255,255,0.07);
      border: 1px solid rgba(201,146,42,0.2);
      border-radius: 12px;
      padding: 20px 24px;
      margin-top: 12px;
    }
    .bank-card .bank-name { font-size: 0.75rem; opacity: 0.6; text-transform: uppercase; letter-spacing: 0.1em; color: #fff; }
    .bank-card .bank-no {
      font-size: 1.4rem;
      font-weight: 700;
      color: var(--gold-light);
      letter-spacing: 0.05em;
      margin: 4px 0;
    }
    .bank-card .bank-an { font-size: 0.85rem; color: rgba(255,255,255,0.7); }

    /* ── FOOTER ── */
    footer {
      background: #0e3d22;
      color: rgba(255,255,255,0.5);
      text-align: center;
      padding: 32px 20px;
      font-size: 0.82rem;
      line-height: 1.7;
    }
    footer .footer-title {
      font-family: 'Amiri', serif;
      font-size: 1.2rem;
      color: var(--gold-light);
      margin-bottom: 8px;
    }

    /* ── LIGHTBOX ── */
    .lightbox {
      position: fixed;
      inset: 0;
      background: rgba(0,0,0,0.92);
      z-index: 999;
      display: none;
      align-items: center;
      justify-content: center;
    }
    .lightbox.active { display: flex; }
    .lightbox img { max-width: 90vw; max-height: 90vh; border-radius: 8px; }
    .lightbox-close {
      position: absolute;
      top: 20px; right: 28px;
      font-size: 2rem;
      color: #fff;
      cursor: pointer;
      line-height: 1;
    }

    /* ── RESPONSIVE ── */
    @media (max-width: 768px) {
      nav { padding: 14px 20px; }
      .nav-links { display: none; }
      .tentang-grid, .infaq-grid, .laporan-summary { grid-template-columns: 1fr; }
      .foto-grid { grid-template-columns: repeat(2, 1fr); }
      .hero-meta { gap: 20px; }
    }

    /* ── TAB LAPORAN ── */
    .tab-wrap {
      display: flex;
      gap: 8px;
      margin: 24px 0 16px;
      border-bottom: 2px solid rgba(0,0,0,0.08);
      padding-bottom: 0;
    }
    .tab-btn {
      background: none;
      border: none;
      padding: 10px 20px;
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 0.88rem;
      font-weight: 600;
      color: var(--text-muted);
      cursor: pointer;
      border-bottom: 2px solid transparent;
      margin-bottom: -2px;
      transition: all 0.2s;
    }
    .tab-btn:hover { color: var(--green); }
    .tab-btn.active { color: var(--green); border-bottom-color: var(--green); }

    /* badge metode */
    .badge.metode { font-size: 0.72rem; font-weight: 700; }
    .badge.tunai    { background: rgba(45,149,88,0.12); color: var(--green); }
    .badge.transfer { background: rgba(26,86,160,0.1);  color: #1a56a0; }
    .badge.qris     { background: rgba(139,60,180,0.1); color: #8b3cb4; }
    .badge.dept     { background: rgba(201,146,42,0.12); color: #7a5010; font-size: 0.72rem; }

    /* tombol lihat bukti */
    .btn-bukti {
      display: inline-block;
      padding: 3px 10px;
      background: var(--green);
      color: #fff;
      border-radius: 4px;
      font-size: 0.75rem;
      font-weight: 600;
      text-decoration: none;
      transition: background 0.2s;
    }
    .btn-bukti:hover { background: var(--green-light); }

    /* ── SCROLL ANIMATION ── */
    .reveal {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 0.6s ease, transform 0.6s ease;
    }
    .reveal.visible { opacity: 1; transform: none; }
  