:root {
            --green:       #5a7d57;
            --green-dark:  #3b5438;
            --green-light: #eef3ee;
            --green-mid:   #7d9b7a;
            --text:        #1a2e19;
            --text-muted:  #6b7f6a;
            --bg:          #f7faf7;
            --white:       #ffffff;
            --border:      #e2ebe2;
            --orange:      #e67e22;
        }

        * { margin:0; padding:0; box-sizing:border-box; }
        html { scroll-behavior: smooth; }

        body {
            font-family: 'Plus Jakarta Sans', sans-serif;
            background: var(--bg);
            color: var(--text);
        }

        /* ─── FADE IN ─── */
        .fade-in {
            opacity: 0;
            transform: translateY(40px);
            transition: opacity 0.7s ease-out, transform 0.7s ease-out;
        }
        .fade-in.appear { opacity: 1; transform: translateY(0); }

        /* ─── HEADER ─── */
        header {
            background: var(--white);
            border-bottom: 1px solid var(--border);
            padding: 0 48px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: sticky;
            top: 0; z-index: 100;
            height: 68px;
            box-shadow: 0 1px 12px rgba(0,0,0,0.07);
        }

        .logo-wrapper {
            display: flex; align-items: center; gap: 10px;
            text-decoration: none;
        }
        .logo-icon { height: 44px; width: auto; object-fit: contain; }
        .logo { font-size: 16px; font-weight: 800; color: var(--text); }

        .menu-toggle {
            display: none; background: none; border: none;
            color: var(--text); font-size: 22px; cursor: pointer;
        }

        nav { display: flex; gap: 4px; align-items: center; }
        nav a {
            color: var(--text-muted); text-decoration: none;
            font-size: 14px; font-weight: 500;
            padding: 7px 14px; border-radius: 8px;
            transition: all 0.15s;
        }
        nav a:hover { background: var(--green-light); color: var(--green-dark); }
        nav a:last-child {
            background: var(--green); color: white;
            font-weight: 700; padding: 8px 20px;
        }
        nav a:last-child:hover { background: var(--green-dark); }

        /* ─── HERO ─── */
        .hero {
            background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 60%, #7db87a 100%);
            padding: 90px 48px 80px;
            text-align: center;
            color: white;
            position: relative;
            overflow: hidden;
        }
        .hero::before {
            content: '';
            position: absolute; inset: 0;
            background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
        }
        .hero h1 {
            font-size: 44px; font-weight: 800;
            line-height: 1.2; margin-bottom: 18px;
            position: relative;
        }
        .hero p {
            font-size: 16px; opacity: 0.88;
            line-height: 1.7; max-width: 700px;
            margin: 0 auto; position: relative;
        }

        /* ─── CONTAINER ─── */
        .container { max-width: 1100px; margin: 0 auto; padding: 60px 24px; }

        /* ─── PROFILE IMAGE ─── */
        .profile-image { text-align: center; margin-bottom: 50px; }
        .profile-image img {
            width: 500px; max-width: 100%; height: auto;
            border-radius: 16px;
            box-shadow: 0 8px 32px rgba(0,0,0,0.12);
        }

        /* ─── SAMBUTAN ─── */
        .sambutan {
            background: var(--white);
            border: 1px solid var(--border);
            border-left: 4px solid var(--green);
            border-radius: 16px;
            padding: 40px;
            margin-bottom: 50px;
        }
        .sambutan h2 { font-size: 22px; font-weight: 800; margin-bottom: 4px; }
        .sambutan h3 { font-size: 14px; color: var(--text-muted); font-weight: 600; margin-bottom: 20px; }
        .sambutan p { font-size: 14.5px; line-height: 1.8; color: #444; margin-bottom: 14px; }
        .sambutan p:last-child { margin-bottom: 0; }
        .sambutan .signature { font-weight: 700; color: var(--text); margin-top: 20px; }

        /* ─── PENGURUS ─── */
        .pengurus-rt { margin-bottom: 50px; }
        .pengurus-rt h2 {
            font-size: 24px; font-weight: 800;
            margin-bottom: 28px; text-align: center;
        }

        .pengurus-container {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 16px;
            margin-top: 20px;
        }

        .pengurus-card {
            background: var(--white);
            border: 1px solid var(--border);
            border-radius: 14px;
            padding: 24px 16px;
            text-align: center;
            transition: all 0.2s;
        }
        .pengurus-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 24px rgba(90,125,87,0.12);
            border-color: var(--green);
        }
        .pengurus-photo {
            width: 100px; height: 100px; border-radius: 50%;
            object-fit: cover; margin: 0 auto 14px;
            border: 3px solid var(--green-light);
            display: block; background: var(--green-light);
        }
        .pengurus-card h3 { font-size: 14px; font-weight: 700; color: var(--text); margin-bottom: 5px; }
        .pengurus-card .jabatan {
            font-size: 11.5px; color: var(--green);
            font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px;
        }
        .pengurus-card .kontak { font-size: 12px; color: var(--text-muted); margin-top: 6px; }

        /* ─── PENDAMPING ─── */
        .pendamping-rt { margin-bottom: 50px; }
        .pendamping-rt h2 {
            font-size: 24px; font-weight: 800;
            margin-bottom: 8px; text-align: center;
        }
        .pendamping-rt .subtitle {
            text-align: center; color: var(--text-muted);
            font-size: 14px; margin-bottom: 28px;
        }

        .pendamping-container {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 16px;
            margin-top: 10px;
        }

        .pendamping-card {
            background: var(--white);
            border: 1px solid var(--border);
            border-top: 3px solid var(--green-mid);
            border-radius: 14px;
            padding: 22px 16px;
            text-align: center;
            transition: all 0.2s;
        }
        .pendamping-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 24px rgba(90,125,87,0.10);
        }
        .pendamping-photo {
            width: 90px; height: 90px; border-radius: 50%;
            object-fit: cover; margin: 0 auto 12px;
            border: 2px solid var(--border);
            display: block; background: var(--green-light);
        }
        .pendamping-card h3 { font-size: 14px; font-weight: 700; color: var(--text); margin-bottom: 5px; }
        .pendamping-card .jabatan {
            font-size: 11px; color: var(--green);
            font-weight: 600; text-transform: uppercase; letter-spacing: 0.4px;
        }
        .pendamping-card .bidang { font-size: 12px; color: var(--text-muted); margin-top: 4px; }

        /* ─── TENTANG KAMI ─── */
        .tentang-kami { margin-bottom: 50px; }
        .tentang-kami h2 { font-size: 24px; font-weight: 800; margin-bottom: 24px; }

        .card-container {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 16px;
        }
        .card {
            background: var(--green);
            border-radius: 14px; padding: 28px;
            color: white;
        }
        .card h3 { font-size: 18px; font-weight: 800; margin-bottom: 12px; }
        .card p { font-size: 14px; line-height: 1.75; opacity: 0.92; margin-bottom: 10px; }
        .card p:last-child { margin-bottom: 0; }

        /* ─── PETA ─── */
        .peta-lokasi { margin-bottom: 50px; }
        .peta-lokasi h2 { font-size: 24px; font-weight: 800; margin-bottom: 16px; }
        .map-container {
            width: 100%; height: 400px;
            border-radius: 16px; overflow: hidden;
            border: 1px solid var(--border);
            box-shadow: 0 2px 12px rgba(0,0,0,0.08);
        }
        .map-container iframe { width: 100%; height: 100%; border: none; }

        /* ─── CONTACT ─── */
        .contact {
            background: var(--white);
            border: 1px solid var(--border);
            border-radius: 16px; padding: 36px;
            margin-bottom: 20px;
        }
        .contact h2 { font-size: 22px; font-weight: 800; margin-bottom: 16px; }
        .contact-info p { font-size: 14px; line-height: 1.8; color: #444; }
        .contact-avatars { display: flex; gap: 10px; margin: 16px 0; }
        .contact-avatars img {
            width: 52px; height: 52px; border-radius: 50%;
            border: 3px solid var(--white); object-fit: cover;
            box-shadow: 0 0 0 2px var(--green);
        }
        .contact-note { color: var(--orange); font-size: 13px; font-weight: 600; font-style: normal; }

        /* ─── SOCIAL MEDIA ─── */
        .social-media {
            background: var(--white);
            border: 1px solid var(--border);
            border-radius: 16px; padding: 36px;
            margin-bottom: 20px;
            text-align: center;
        }
        .social-media h2 { font-size: 22px; font-weight: 800; margin-bottom: 8px; }
        .social-media p { color: var(--text-muted); font-size: 14px; margin-bottom: 24px; }

        .social-links { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }
        .social-link {
            display: flex; align-items: center; gap: 10px;
            padding: 11px 24px; border-radius: 10px;
            text-decoration: none; font-weight: 700; font-size: 14px;
            transition: all 0.2s;
        }
        .social-link:hover { transform: translateY(-3px); box-shadow: 0 6px 16px rgba(0,0,0,0.18); }
        .social-link.instagram {
            background: linear-gradient(45deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888);
            color: white;
        }
        .social-link.tiktok { background: #000; color: white; }
        .social-link.whatsapp { background: #25D366; color: white; }
        .social-icon { width: 20px; height: 20px; display: flex; align-items: center; }
        .social-icon svg { width: 100%; height: 100%; fill: currentColor; }

        /* ─── FOOTER ─── */
        footer {
            text-align: center; padding: 20px;
            border-top: 1px solid var(--border);
            font-size: 13px; color: var(--text-muted);
            background: var(--white);
        }

        /* ─── RESPONSIVE ─── */
        @media (max-width: 1024px) {
            .pengurus-container { grid-template-columns: repeat(3, 1fr); }
            .pendamping-container { grid-template-columns: repeat(3, 1fr); }
        }
        @media (max-width: 768px) {
            header { padding: 0 20px; }
            .menu-toggle { display: block; }
            nav {
                display: none; position: absolute;
                top: 68px; left: 0; right: 0;
                background: var(--white);
                border-bottom: 1px solid var(--border);
                flex-direction: column; padding: 12px 20px 16px;
                gap: 4px; box-shadow: 0 4px 12px rgba(0,0,0,0.08);
            }
            nav.active { display: flex; }
            nav a { padding: 10px 14px; }
            nav a:last-child { text-align: center; }
            .hero { padding: 60px 20px 50px; }
            .hero h1 { font-size: 28px; }
            .hero p { font-size: 14px; }
            .container { padding: 36px 16px; }
            .pengurus-container { grid-template-columns: repeat(2, 1fr); gap: 10px; }
            .pendamping-container { grid-template-columns: repeat(2, 1fr); gap: 10px; }
            .card-container { grid-template-columns: 1fr; }
            .sambutan { padding: 24px; }
            .contact, .social-media { padding: 24px; }
        }
        @media (max-width: 480px) {
            .hero h1 { font-size: 24px; }
            .pengurus-container { grid-template-columns: repeat(2, 1fr); gap: 8px; }
            .pendamping-container { grid-template-columns: repeat(2, 1fr); gap: 8px; }
            .pengurus-card { padding: 14px 8px; }
            .pengurus-photo { width: 75px; height: 75px; }
            .pengurus-card h3 { font-size: 12px; }
            .pengurus-card .jabatan { font-size: 10px; }
            .pendamping-card { padding: 12px 8px; }
            .pendamping-photo { width: 70px; height: 70px; }
            .pendamping-card h3 { font-size: 12px; }
            .map-container { height: 280px; }
        }
