        /* ====== CSS Variables ====== */
        :root {
            --green: #176c3d;
            --green-dark: #0f4f2d;
            --gold: #d7b86a;
            --muted: #bdbdb3;
            --glass: rgba(255, 255, 255, 0.06);
            --max-width: 1200px;
        }

        /* ====== Reset & Base Styles ====== */
        *,
        *::before,
        *::after {
            box-sizing: border-box;
        }

        html,
        body {
            height: 100%;
            margin: 0;
            padding: 0;
        }

        body {
            font-family: "Montserrat", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
            color: #f4f4f2;
            font-size: 15px;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            line-height: 1.6;
            background-image: url('https://images.unsplash.com/photo-1495474472287-4d71bcdd2085?q=80&w=2070&auto=format&fit=crop');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            position: relative;
        }

        body::before {
            content: "";
            position: fixed;
            inset: 0;
            background: rgba(11, 11, 11, 0.75);
            z-index: 0;
        }

        main,
        footer {
            position: relative;
            z-index: 1;
        }

        a {
            color: inherit;
            text-decoration: none;
        }

        img {
            max-width: 100%;
            display: block;
        }

        /* ====== Container ====== */
        .wrap {
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0 24px;
        }

        /* ====== NAVBAR STYLES ====== */
        header {
            position: fixed;
            left: 0;
            right: 0;
            top: 18px;
            z-index: 1000;
            /* Tingkatkan z-index untuk memastikan selalu di atas */
            display: flex;
            justify-content: center;
            pointer-events: none;
        }

        .nav-inner {
            pointer-events: auto;
            background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
            border-radius: 60px;
            padding: 12px 26px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            /* Pastikan rata */
            gap: 18px;
            border: 1px solid rgba(255, 255, 255, 0.12);
            backdrop-filter: blur(6px);
            box-shadow: 0 6px 18px rgba(2, 2, 2, 0.4);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            width: 100%;
            max-width: var(--max-width);
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .logo .circle {
            width: 56px;
            height: 56px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--green), var(--green-dark));
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 800;
            color: #fff;
            font-family: "Playfair Display";
            font-size: 18px;
            border: 2px solid rgba(255, 255, 255, 0.12);
            overflow: hidden;
        }

        .brand {
            font-weight: 700;
            color: #fff;
            font-family: "Montserrat";
            letter-spacing: 0.6px;
        }

        /* --- Desktop Navigation (Default) --- */
        nav {
            margin-left: auto;
        }

        nav ul {
            display: flex;
            gap: 18px;
            align-items: center;
            margin: 0;
            padding: 0;
            list-style: none;
        }

        nav a {
            padding: 6px 10px;
            border-radius: 8px;
            font-weight: 600;
            color: #f4f4f2;
            opacity: 0.95;
            transition: color 0.3s ease, transform 0.3s ease;
        }

        nav a:hover {
            color: var(--gold);
            transform: translateY(-2px);
        }

        .btn-review {
            padding: 8px 14px;
            border-radius: 40px;
            border: 1px solid rgba(255, 255, 255, 0.14);
            display: flex;
            gap: 8px;
            align-items: center;
            background: transparent;
            font-weight: 700;
            font-size: 14px;
            transition: background-color 0.3s ease;
        }

        .btn-review:hover {
            background-color: rgba(255, 255, 255, 0.1);
        }

        /* --- Hamburger Button --- */
        .hamburger {
            display: none;
            /* Sembunyikan di desktop */
            flex-direction: column;
            justify-content: space-around;
            width: 28px;
            height: 22px;
            background: transparent;
            border: none;
            cursor: pointer;
            padding: 0;
            z-index: 1001;
            /* Di atas nav overlay */
        }

        .hamburger span {
            width: 28px;
            height: 3px;
            background: #fff;
            border-radius: 10px;
            transition: all 0.3s linear;
            position: relative;
            transform-origin: 1px;
        }

        /* --- Mobile Navigation Overlay --- */
        /* Ini adalah style untuk nav saat di layar kecil */
        @media (max-width: 768px) {

            /* Tampilkan hamburger */
            .hamburger {
                display: flex;
            }

            /* Ubah nav menjadi overlay fullscreen */
            nav {
                position: fixed;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                background: rgba(0, 0, 0, 0.98);
                backdrop-filter: blur(10px);
                display: flex;
                align-items: center;
                justify-content: center;
                opacity: 0;
                visibility: hidden;
                transition: opacity 0.4s ease, visibility 0.4s ease, transform 0.4s ease;
                transform: translateY(20px);
                /* Efek slide-in */
                margin-left: 0;
                /* Reset margin */
            }

            /* Tampilkan nav saat class 'nav-open' ada di body */
            body.nav-open nav {
                opacity: 1;
                visibility: visible;
                transform: translateY(0);
            }

            /* Ubah list link menjadi vertikal dan tengah */
            nav ul {
                flex-direction: column;
                gap: 24px;
                text-align: center;
            }

            nav a {
                font-size: 20px;
                /* Perbesar font untuk tap-friendly */
                padding: 10px 20px;
            }

            .btn-review {
                font-size: 18px;
            }

            /* Cegah background scroll saat menu terbuka */
            body.nav-open {
                overflow: hidden;
            }
        }

        /* Animasi hamburger menjadi 'X' */
        body.nav-open .hamburger span:first-child {
            transform: rotate(45deg);
        }

        body.nav-open .hamburger span:nth-child(2) {
            opacity: 0;
        }

        body.nav-open .hamburger span:last-child {
            transform: rotate(-45deg);
        }

        /* ====== HERO ====== */
        .hero {
            min-height: 92vh;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            padding-top: 40px;
            overflow: hidden;
        }

        .hero::before {
            content: "";
            position: absolute;
            inset: 0;
            background-image: url('https://images.unsplash.com/photo-1509042239860-f550ce710b93?q=80&w=1600&auto=format&fit=crop&ixlib=rb-4.0.3');
            background-size: cover;
            background-position: center;
            filter: blur(6px) brightness(0.38) saturate(0.9);
            transform: scale(1.03);
            z-index: 0;
        }

        .hero::after {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, rgba(9, 20, 12, 0.15), rgba(4, 6, 4, 0.65));
            z-index: 1;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            text-align: center;
            padding: 72px 12px 120px;
            max-width: 980px;
            margin: 0 auto;
        }

        .hero small {
            display: block;
            color: var(--muted);
            margin-bottom: 20px;
            font-family: "Lora";
            letter-spacing: 0.6px;
        }

        .hero h1 {
            font-family: "Playfair Display";
            font-size: 42px;
            line-height: 1.02;
            color: #fff;
            margin: 0 0 24px;
            font-weight: 900;
            text-shadow: 0 6px 18px rgba(0, 0, 0, 0.6);
        }

        .hero p.lead {
            max-width: 820px;
            margin: 0 auto 32px;
            color: rgba(255, 255, 255, 0.85);
            font-family: "Lora";
            font-size: 16px;
            line-height: 1.7;
        }

        .hero .cta {
            display: flex;
            gap: 14px;
            justify-content: center;
            flex-wrap: wrap;
            margin-top: 20px;
        }

        .btn {
            border-radius: 26px;
            padding: 12px 20px;
            border: 1px solid rgba(255, 255, 255, 0.14);
            background: transparent;
            color: #fff;
            font-weight: 700;
            cursor: pointer;
            display: inline-flex;
            gap: 10px;
            align-items: center;
            transition: all 0.28s ease;
        }

        .btn.primary {
            background: linear-gradient(90deg, var(--green), var(--green-dark));
            border: 1px solid rgba(0, 0, 0, 0.2);
            box-shadow: 0 6px 14px rgba(23, 108, 61, 0.22);
        }

        .btn:hover {
            transform: translateY(-4px);
        }

        .btn.primary:hover {
            box-shadow: 0 10px 30px rgba(23, 108, 61, 0.28);
        }

        /* ====== Sections ====== */
        section {
            padding: 120px 0;
        }

        .section-title {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
            margin-bottom: 40px;
        }

        .section-title h2 {
            font-family: "Playfair Display";
            font-size: 26px;
            margin: 0 0 8px;
            color: #fff;
        }

        .section-title p {
            color: var(--muted);
            margin: 0;
            line-height: 1.7;
        }

        /* ====== About (two-col) ====== */
        .about {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 28px;
            align-items: center;
        }

        .about .media {
            background: linear-gradient(180deg, rgba(0, 0, 0, 0.46), rgba(0, 0, 0, 0.25));
            padding: 18px;
            border-radius: 18px;
            position: relative;
            overflow: hidden;
            box-shadow: 0 8px 40px rgba(0, 0, 0, 0.45);
        }

        .about .media .thumb {
            border-radius: 14px;
            height: 280px;
            background-image: url('https://images.unsplash.com/photo-1509042239860-f550ce710b93?q=80&w=900&auto=format&fit=crop&ixlib=rb-4.0.3');
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: transform 0.3s ease;
        }

        .about .media .thumb:hover {
            transform: scale(1.02);
        }

        .play-btn {
            width: 72px;
            height: 72px;
            border-radius: 50%;
            background: rgba(0, 0, 0, 0.48);
            display: flex;
            align-items: center;
            justify-content: center;
            border: 3px solid rgba(255, 255, 255, 0.12);
            cursor: pointer;
            font-size: 22px;
            color: #fff;
            transition: transform 0.3s ease, background-color 0.3s ease;
        }

        .play-btn:hover {
            transform: scale(1.1);
            background-color: rgba(0, 0, 0, 0.7);
        }

        .about .copy h3 {
            font-size: 32px;
            margin: 0 0 20px;
            font-family: "Playfair Display";
            color: #fff;
        }

        .about .copy p {
            color: rgba(255, 255, 255, 0.9);
            font-family: "Lora";
            margin-bottom: 24px;
            line-height: 1.7;
        }

        .social-row {
            display: flex;
            gap: 12px;
            align-items: center;
            margin: 18px 0;
        }

        .social-row a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 8px;
            background: var(--glass);
            border: 1px solid rgba(255, 255, 255, 0.06);
            transition: background-color 0.3s ease;
        }

        .social-row a i {
            font-size: 18px;
            color: var(--gold);
            transition: color 0.3s ease;
        }

        .social-row a:hover {
            transform: translateY(-5px) scale(1.05); /* Naik & membesar */
            background-color: #c9a24d;  /* Warna gold */
        }

        .social-row a:hover i {
           color: #ffffff;             /* Icon jadi putih */
        }

        .about .copy p.muted {
            margin-top: 6px;
            color: var(--muted);
        }

        /* ====== Menu (green panel) ====== */
        .menu-panel {
            background: linear-gradient(90deg, rgba(23, 171, 94, 0.95), rgba(23, 108, 61, 0.95));
            padding: 40px;
            border-radius: 12px;
            color: #e8f6ea;
            position: relative;
            overflow: hidden;
        }

        .menu-panel::before {
            content: "";
            position: absolute;
            inset: 0;
            background-image: url('https://images.unsplash.com/photo-1517686469429-8a0b6a6f9a15?q=80&w=1600&auto=format&fit=crop&ixlib=rb-4.0.3');
            opacity: 0.12;
            mix-blend-mode: overlay;
        }

        .menu-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 18px;
            position: relative;
            z-index: 2;
        }

        .menu-list h4 {
            font-weight: 700;
            margin: 0 0 12px;
            font-family: "Montserrat";
            letter-spacing: 0.6px;
        }

        .menu-list ul {
            margin: 0;
            padding-left: 20px;
        }

        .menu-list li {
            margin: 8px 0;
            list-style: disc;
            color: #081108;
        }

        .price-line {
            display: flex;
            justify-content: space-between;
            font-weight: 600;
            color: #06290f;
            border-bottom: 1px dashed rgba(255, 255, 255, 0.03);
            padding: 6px 0;
        }

        /* ====== Gallery ====== */
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 10px;
        }

        .gallery-item {
            background: rgba(255, 255, 255, 0.03);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            height: 100px;
            transition: transform 0.4s ease, box-shadow 0.3s ease;
            overflow: hidden;
            position: relative;
        }

        .gallery-item figure {
            margin: 0;
            width: 100%;
            height: 100%;
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .gallery-item:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
        }

        .gallery-item:hover img {
            transform: scale(1.1);
        }

        .gallery-item figcaption {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: rgba(0, 0, 0, 0.7);
            color: #fff;
            padding: 8px;
            font-size: 13px;
            text-align: center;
            transform: translateY(100%);
            transition: transform 0.3s ease;
        }

        .gallery-item:hover figcaption {
            transform: translateY(0);
        }

        /* ====== Reviews Section ====== */
        .reviews-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 24px;
        }

        .review-card {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 16px;
            padding: 24px;
            border: 1px solid rgba(255, 255, 255, 0.08);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .review-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
        }

        .review-header {
            display: flex;
            align-items: center;
            margin-bottom: 16px;
        }

        .review-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--green), var(--green-dark));
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 16px;
            color: #fff;
            font-weight: 700;
            font-size: 18px;
        }

        .review-info {
            flex: 1;
        }

        .review-name {
            font-weight: 700;
            margin: 0 0 4px;
            font-size: 16px;
        }

        .review-date {
            color: var(--muted);
            font-size: 13px;
            margin: 0;
        }

        .review-rating {
            display: flex;
            margin-bottom: 16px;
        }

        .review-rating i {
            color: var(--gold);
            font-size: 14px;
            margin-right: 2px;
        }

        .review-text {
            font-family: "Lora";
            font-style: italic;
            line-height: 1.6;
            color: rgba(255, 255, 255, 0.9);
        }

        .add-review-btn {
            margin: 40px auto 0;
            display: flex;
            justify-content: center;
        }

        /* ====== Thank You Section ====== */
        .thankyou {
            min-height: 75vh;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: #fff;
            padding: 40px 20px;
            position: relative;
        }

        .thankyou::before {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, var(--green), var(--green-dark));
            z-index: -1;
        }

        .thankyou .logo-box {
            margin-bottom: 25px;
        }

        .thankyou .logo-box img {
            width: 100px;
            height: 100px;
            object-fit: contain;
            border-radius: 50%;
            border: 3px solid #fff;
            background: #fff;
        }

        .thankyou h1 {
            font-family: "Playfair Display";
            font-size: 32px;
            margin-bottom: 15px;
            color: #fff;
        }

        .thankyou .subtitle {
            font-family: "Lora";
            font-size: 16px;
            margin-bottom: 25px;
            max-width: 600px;
            color: rgba(255, 255, 255, 0.9);
        }

        .thankyou .btn-wa {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 14px 30px;
            border-radius: 50px;
            border: 2px solid #fff;
            text-decoration: none;
            color: #fff;
            font-weight: bold;
            transition: 0.3s;
            background: transparent;
        }

        .thankyou .btn-wa i {
            font-size: 20px;
        }

        .thankyou .btn-wa:hover {
            background: #fff;
            color: var(--green);
        }

        .thankyou-footer {
            background: var(--green-dark);
            color: #fff;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
            padding: 40px 30px;
        }

        .thankyou-footer h4 {
            margin-bottom: 15px;
            font-size: 16px;
            font-weight: 700;
            color: #fff;
        }

        .thankyou-footer p {
            font-size: 14px;
            line-height: 1.6;
            color: rgba(255, 255, 255, 0.9);
        }

        .thankyou-footer .qr-box {
            text-align: center;
        }

        .thankyou-footer .qr-box img {
            width: 120px;
            background: #fff;
            padding: 8px;
            border-radius: 8px;
            margin: 0 auto;
        }

        .thankyou-footer .qr-box p {
            margin-top: 10px;
        }

        .thankyou-footer .copy {
            grid-column: 1 / -1;
            text-align: center;
            font-size: 14px;
            padding: 20px 0 0;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            margin-top: 20px;
        }

        .thankyou-footer .copy b {
            color: var(--gold);
        }

        /* ====== Footer ====== */
        footer {
            background: linear-gradient(180deg, var(--green-dark), var(--green));
            padding: 56px 0 20px;
            margin-top: 36px;
            color: #08210f;
        }

        .footer-inner {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            gap: 24px;
        }

        .footer-logo {
            width: 84px;
            height: 84px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, var(--green), var(--green-dark));
            color: #fff;
            font-family: 'Playfair Display';
            font-size: 22px;
            margin-bottom: 10px;
            overflow: hidden;
        }

        .footer-inner h3 {
            color: #06290f;
            margin: 6px 0;
        }

        .footer-inner p {
            color: #06290f;
            margin: 6px 0 12px;
        }

        .whatsapp-btn {
            display: inline-flex;
            gap: 10px;
            padding: 14px 22px;
            border-radius: 40px;
            background: transparent;
            border: 2px solid rgba(255, 255, 255, 0.12);
            color: #081108;
            font-weight: 800;
            align-items: center;
            transition: background-color 0.3s ease;
        }

        .whatsapp-btn:hover {
            background-color: rgba(255, 255, 255, 0.1);
        }

        .footer-bottom {
            width: 100%;
            margin-top: 20px;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 16px;
        }

        .footer-bottom .social-row a {
            background: rgba(255, 255, 255, 0.1);
        }

        .footer-bottom .social-row a i {
            color: #06290f;
        }

        .footer-bottom .social-row a:hover {
            background: var(--gold);
        }

        .footer-bottom .social-row a:hover i {
            color: #0b0b0b;
        }

        .copyright {
            font-size: 14px;
            color: #06290f;
        }

        /* ====== Modal video preview ====== */
        .modal {
            position: fixed;
            inset: 0;
            display: none;
            align-items: center;
            justify-content: center;
            background: rgba(0, 0, 0, 0.7);
            z-index: 120;
        }

        .modal.open {
            display: flex;
        }

        .modal .box {
            width: 90%;
            max-width: 880px;
            background: #000;
            border-radius: 12px;
            padding: 10px;
            box-shadow: 0 18px 60px rgba(0, 0, 0, 0.7);
        }

        .modal video {
            width: 100%;
            height: auto;
            border-radius: 8px;
            display: block;
        }

        /* ====== Reveal animation util ====== */
        .reveal {
            opacity: 0;
            transform: translateY(14px) scale(0.995);
            transition: all 0.7s cubic-bezier(0.2, 0.9, 0.3, 1);
        }

        .reveal.show {
            opacity: 1;
            transform: none;
        }

        /* ====== RESPONSIVE BREAKPOINTS ====== */
        /* Tablet: 992px ke bawah */
        @media (max-width: 992px) {
            .about {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .hero h1 {
                font-size: 36px;
            }

            .gallery-grid {
                grid-template-columns: repeat(3, 1fr);
            }

            .menu-grid {
                grid-template-columns: 1fr;
            }

            header {
                top: 12px;
            }

            section {
                padding: 100px 0;
            }

            .thankyou-footer {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        /* Smartphone: 640px ke bawah */
        @media (max-width: 640px) {
            .wrap {
                padding: 0 16px;
            }

            header {
                top: 12px;
            }

            .logo .circle {
                width: 40px;
                height: 40px;
                font-size: 14px;
            }

            .logo small {
                display: none;
                /* Sembunyikan tagline di mobile */
            }

            .hero h1 {
                font-size: 28px;
            }

            .hero p.lead {
                font-size: 15px;
            }

            .hero-content {
                padding: 60px 12px 80px;
            }

            section {
                padding: 80px 0;
            }

            .section-title h2 {
                font-size: 22px;
            }

            .menu-panel {
                padding: 24px;
            }

            .gallery-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .reviews-container {
                grid-template-columns: 1fr;
            }

            .thankyou h1 {
                font-size: 26px;
            }

            .thankyou-footer {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .footer-logo {
                width: 64px;
                height: 64px;
                font-size: 18px;
            }

            .footer-inner p {
                font-size: 14px;
            }

            .whatsapp-btn {
                padding: 12px 18px;
                font-size: 15px;
            }
        }

        /* akun sosial media  */
        /* JARAK LEBIH DEKAT */
        /* body {
            margin: 0;
            height: 100vh;
            display: flex;
            justify-content: center;
            align-items: center;
            background: #0f172a;
        }

        .social {
            display: flex;
            gap: 10px; */
        /* jarak antar ikon */
        /* } */

        /* UKURAN LEBIH KECIL */
        /* .social a {
            width: 36px;
            height: 36px;
            background: #020617;
            color: white;
            display: flex;
            justify-content: center;
            align-items: center;
            border-radius: 50%;
            font-size: 16px;
            transition: 0.25s ease;
        }

        .social a:hover {
            transform: translateY(-4px) scale(1.08);
        } */

        /* Warna hover */
        /* .social a:nth-child(1):hover {
            color: #e1306c;
        }

        .social a:nth-child(2):hover {
            color: #1877f2;
        }

        .social a:nth-child(3):hover {
            color: #25d366;
        }

        .social a:nth-child(4):hover {
            color: #000;
        } */