
      
      *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
      html { scroll-behavior: smooth; }
      body { background-color: #0A0A0A; color: #F5F0E8; font-family: 'DM Sans', sans-serif; }

      /* ===== GOLD DIVIDER ===== */
      .gold-rule { width: 60px; height: 2px; background: linear-gradient(90deg, #D4AF37, #E8CC6A); margin: 0 auto; }
      .gold-rule-left { width: 60px; height: 2px; background: linear-gradient(90deg, #D4AF37, #E8CC6A); }
          /* ----- MODAL POP UP MEMBER ----- */
    .modal-overlay {
        position: fixed;
        top: 0; left: 0; width: 100%; height: 100%;
        background: rgba(0, 0, 0, 0.85); /* Background gelap transparan */
        backdrop-filter: blur(5px);
        z-index: 9999; /* Di atas navbar (z-index navbar 1000) */
        display: flex;
        justify-content: center;
        align-items: center;
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s ease;
    }

    .modal-overlay.active {
        opacity: 1;
        visibility: visible;
    }

    .modal-box {
        background: #141414; /* Warna background sesuai theme ink-soft */
        width: 90%;
        max-width: 450px;
        border: 1px solid rgba(212, 175, 55, 0.3); /* Border halus emas */
        border-radius: 8px;
        position: relative;
        transform: translateY(20px);
        transition: transform 0.4s ease;
        box-shadow: 0 20px 50px rgba(0,0,0,0.8);
        text-align: center;
        overflow: hidden;
    }

    .modal-overlay.active .modal-box {
        transform: translateY(0);
    }

    /* Tanda Silang (Close Button) */
    .close-modal-btn {
        position: absolute;
        top: 10px;
        right: 15px;
        background: transparent;
        border: none;
        color: #666;
        font-size: 1.8rem;
        cursor: pointer;
        transition: color 0.3s, transform 0.3s;
        line-height: 1;
        z-index: 10;
    }

    .close-modal-btn:hover {
        color: #D4AF37; /* Berubah emas saat di-hover */
        transform: rotate(90deg);
    }

    /* Gambar Header Modal */
    .modal-header-img {
        width: 100%;
        height: 180px;
        object-fit: cover;
        mask-image: linear-gradient(to bottom, black 80%, transparent 100%);
        -webkit-mask-image: linear-gradient(to bottom, black 80%, transparent 100%);
    }

    /* Isi Modal */
    .modal-body {
        padding: 1.5rem 2rem 2.5rem 2rem;
        position: relative;
        margin-top: -40px; /* Overlap ke gambar sedikit */
    }

    .modal-title {
        font-family: 'Cormorant Garamond', serif;
        font-size: 1.8rem;
        color: #F5F0E8;
        margin-bottom: 0.5rem;
    }

    .modal-text {
        color: #999;
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
        line-height: 1.6;
    }

    /* Tombol Menyala (Glowing) */
    .btn-glow-member {
        display: inline-block;
        background: linear-gradient(135deg, #D4AF37, #A8891A);
        color: #0A0A0A;
        padding: 12px 30px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 1px;
        text-decoration: none;
        border-radius: 4px;
        border: none;
        cursor: pointer;
        position: relative;
        overflow: hidden;
        /* Animasi Glow */
        animation: glowingMember 2s infinite ease-in-out;
        box-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
        transition: transform 0.2s;
    }

    .btn-glow-member:hover {
        transform: scale(1.05);
    }

    @keyframes glowingMember {
        0% { box-shadow: 0 0 5px rgba(212, 175, 55, 0.2); }
        50% { box-shadow: 0 0 25px rgba(212, 175, 55, 0.8), 0 0 10px rgba(212, 175, 55, 0.6) inset; }
        100% { box-shadow: 0 0 5px rgba(212, 175, 55, 0.2); }
    }

      /* ===== NAVBAR ===== */
    #navbar{position:fixed;top:0;left:0;width:100%;z-index:1000;padding:0 2rem;height:64px;display:flex;align-items:center;justify-content:space-between;background:rgba(13,13,13,0.96);backdrop-filter:blur(16px);border-bottom:1px solid rgba(201,168,76,0.2)}
.logo img { height: 94px; width: 94px; border-radius: 50%; object-fit: cover; transition: transform 0.3s; }
.logo-img:hover{transform:scale(1.06)}
.nav-link{font-family:'DM Sans',sans-serif;font-size:0.72rem;font-weight:500;letter-spacing:0.18em;text-transform:uppercase;color:rgba(240,234,214,0.75);text-decoration:none;transition:color 0.25s;position:relative}
.nav-link::after{content:'';position:absolute;bottom:-3px;left:0;width:0;height:1px;background:#C9A84C;transition:width 0.3s}
.nav-link:hover,.nav-link.active{color:#C9A84C}
.nav-link:hover::after,.nav-link.active::after{width:100%}
.nd{position:relative}
.dp{position:absolute;top:calc(100% + 12px);left:50%;transform:translateX(-50%) translateY(6px) scaleY(0.94);background:#141414;border:1px solid rgba(201,168,76,0.25);min-width:160px;overflow:hidden;opacity:0;visibility:hidden;pointer-events:none;transition:all 0.4s ease;transform-origin:top}
.nd:hover .dp,.nd.open .dp{opacity:1;visibility:visible;pointer-events:auto;transform:translateX(-50%) translateY(0) scaleY(1)}
.dp a{display:block;padding:0.55rem 1rem;font-size:0.72rem;letter-spacing:0.1em;text-transform:uppercase;color:rgba(240,234,214,0.65);text-decoration:none;border-bottom:1px solid rgba(255,255,255,0.05);transition:background 0.2s,color 0.2s}
.dp a:last-child{border-bottom:none}
.dp a:hover{background:rgba(201,168,76,0.1);color:#C9A84C}
#hbg{cursor:pointer;display:flex;flex-direction:column;gap:5px;z-index:1005}
#hbg span{width:22px;height:1.5px;background:#F0EAD6;transition:all 0.35s;display:block}
#hbg.open span:nth-child(1){transform:translateY(6.5px) rotate(45deg)}
#hbg.open span:nth-child(2){opacity:0}
#hbg.open span:nth-child(3){transform:translateY(-6.5px) rotate(-45deg)}
@media(min-width:1024px){#hbg{display:none!important}}
#mob-nav{position:fixed;top:0;right:-100%;width:280px;height:100vh;background:rgba(13,13,13,0.97);backdrop-filter:blur(20px);z-index:999;padding:5.5rem 2rem 2rem;transition:right 0.4s cubic-bezier(.4,0,.2,1);border-left:1px solid rgba(201,168,76,0.15);overflow-y:auto}
#mob-nav.open{right:0}
#mob-nav a{display:block;padding:0.8rem 0;font-family:'Playfair Display',serif;font-size:1rem;color:rgba(240,234,214,0.7);text-decoration:none;border-bottom:1px solid rgba(255,255,255,0.06);transition:color 0.2s,padding-left 0.2s}
#mob-nav a:hover{color:#C9A84C;padding-left:0.4rem}
.mob-icons{display:flex;gap:1.25rem;margin-top:1.75rem}
.mob-icons a{font-size:1.25rem;color:rgba(240,234,214,0.6);text-decoration:none;border:none;padding:0}

      /* ===== HERO SLIDESHOW ===== */
      .hero-section { position: relative; width: 100%; height: 80vh; aspect-ratio: 16 / 9; overflow: hidden; }
      .slide-item { position: absolute; inset: 0; opacity: 0; transition: opacity 1.4s ease-in-out; }
      .slide-item.active { opacity: 1; z-index: 1; }
      .slide-item img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.45); }
      .slide-item.active img { animation: heroZoom 9s ease-in-out forwards; }
      @keyframes heroZoom { from { transform: scale(1); } to { transform: scale(1.07); } }

      .hero-content {
        position: absolute; inset: 0; z-index: 10;
        display: flex; flex-direction: column; align-items: center; justify-content: center;
        text-align: center; padding: 2rem;
      }
      .hero-eyebrow {
        font-family: 'DM Sans', sans-serif; font-size: 0.72rem; font-weight: 500;
        letter-spacing: 0.3em; text-transform: uppercase; color: #D4AF37;
        margin-bottom: 1.5rem; opacity: 0; animation: fadeUp 1s 0.3s forwards;
      }
      .hero-title {
        font-family: 'Cormorant Garamond', serif; font-size: clamp(3rem, 8vw, 7rem);
        font-weight: 300; line-height: 1.05; color: #F5F0E8;
        opacity: 0; animation: fadeUp 1s 0.5s forwards;
        max-width: 800px;
      }
      .hero-title em { font-style: italic; color: #D4AF37; }
      .hero-subtitle {
        font-size: clamp(0.9rem, 1.5vw, 1.1rem); color: rgba(245,240,232,0.7);
        margin-top: 1.5rem; max-width: 520px; line-height: 1.7;
        opacity: 0; animation: fadeUp 1s 0.7s forwards;
      }
      .hero-cta {
        margin-top: 2.5rem; opacity: 0; animation: fadeUp 1s 0.9s forwards;
        display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center;
      }
      .btn-primary {
        display: inline-flex; align-items: center; gap: 0.5rem;
        padding: 0.75rem 2rem; border: 1px solid #D4AF37;
        background: #D4AF37; color: #0A0A0A;
        font-family: 'DM Sans', sans-serif; font-size: 0.78rem;
        font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase;
        text-decoration: none; border-radius: 2px;
        transition: all 0.3s; cursor: pointer;
      }
      .btn-primary:hover { background: #E8CC6A; border-color: #E8CC6A; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(212,175,55,0.3); }
      .btn-outline {
        display: inline-flex; align-items: center; gap: 0.5rem;
        padding: 0.75rem 2rem; border: 1px solid rgba(245,240,232,0.4);
        background: transparent; color: #F5F0E8;
        font-family: 'DM Sans', sans-serif; font-size: 0.78rem;
        font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase;
        text-decoration: none; border-radius: 2px;
        transition: all 0.3s;
      }
      .btn-outline:hover { border-color: #D4AF37; color: #D4AF37; }

      /* Hero scroll indicator */
      .hero-scroll {
        position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%);
        z-index: 10; display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
        opacity: 0; animation: fadeIn 1s 1.5s forwards;
      }
      .hero-scroll span { font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(245,240,232,0.5); }
      .scroll-line { width: 1px; height: 40px; background: linear-gradient(to bottom, rgba(212,175,55,0.8), transparent); animation: scrollPulse 2s infinite; }
      @keyframes scrollPulse { 0%, 100% { transform: scaleY(1); opacity: 0.8; } 50% { transform: scaleY(0.6); opacity: 0.3; } }

      /* Hero slide indicators */
      .slide-dots {
        position: absolute; bottom: 2.5rem; right: 2.5rem; z-index: 10;
        display: flex; gap: 0.5rem; align-items: center;
      }
      .slide-dot { width: 6px; height: 6px; border-radius: 50%; background: rgba(245,240,232,0.3); cursor: pointer; transition: all 0.3s; }
      .slide-dot.active { background: #D4AF37; width: 24px; border-radius: 3px; }

      /* ===== SECTION LABELS ===== */
      .section-label {
        font-family: 'DM Sans', sans-serif; font-size: 0.68rem; font-weight: 600;
        letter-spacing: 0.3em; text-transform: uppercase; color: #D4AF37;
        margin-bottom: 0.75rem; display: block;
      }
      .section-title {
        font-family: 'Cormorant Garamond', serif;
        font-size: clamp(2.2rem, 4vw, 3.5rem);
        font-weight: 400; line-height: 1.15; color: #F5F0E8;
      }
      .section-title em { font-style: italic; color: #D4AF37; }

      /* ===== INTRO SPLIT ===== */
      .intro-split { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
      @media (max-width: 768px) { .intro-split { grid-template-columns: 1fr; gap: 2.5rem; } }

      /* ===== STATS BAR ===== */
      .stat-item { text-align: center; border-left: 1px solid rgba(212,175,55,0.2); }
      .stat-item:first-child { border-left: none; }
      .stat-num { font-family: 'Cormorant Garamond', serif; font-size: 2.8rem; font-weight: 300; color: #D4AF37; line-height: 1; }
      .stat-label { font-size: 0.72rem; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(245,240,232,0.5); margin-top: 0.25rem; }

      /* ===== PRODUCT CARDS ===== */
      .product-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 1.5px; }
      .product-card {
        position: relative; overflow: hidden; background: #141414;
        cursor: pointer; group;
      }
      .product-card-img { width: 100%; height: 280px; object-fit: cover; filter: brightness(0.7) saturate(0.9); transition: all 0.6s cubic-bezier(0.4,0,0.2,1); }
      .product-card:hover .product-card-img { transform: scale(1.06); filter: brightness(0.5) saturate(1.1); }
      .product-card-body {
        position: absolute; bottom: 0; left: 0; right: 0;
        padding: 1.5rem; background: linear-gradient(to top, rgba(10,10,10,0.95) 0%, rgba(10,10,10,0.4) 70%, transparent 100%);
        transform: translateY(0); transition: all 0.4s ease;
      }
      .product-card-name { font-family: 'Playfair Display', serif; font-size: 1.05rem; font-weight: 600; color: #F5F0E8; line-height: 1.3; }
      .product-card-price { font-size: 0.85rem; color: #D4AF37; margin-top: 0.25rem; font-weight: 500; }
      .product-card-action {
        margin-top: 1rem; opacity: 0; transform: translateY(10px);
        transition: all 0.35s 0.05s ease;
      }
      .product-card:hover .product-card-action { opacity: 1; transform: translateY(0); }
      .product-card-shine {
        position: absolute; inset: 0; pointer-events: none;
        background: linear-gradient(135deg, transparent 30%, rgba(212,175,55,0.08) 50%, transparent 70%);
        opacity: 0; transition: opacity 0.4s;
      }
      .product-card:hover .product-card-shine { opacity: 1; }

      /* ===== KATEGORI MOSAIC ===== */
      .kategori-mosaic { display: grid; grid-template-columns: 1.5fr 1fr; grid-template-rows: 280px 280px; gap: 3px; }
      .kategori-mosaic .kat-card { position: relative; overflow: hidden; cursor: pointer; }
      .kategori-mosaic .kat-card:first-child { grid-row: 1 / 3; }
      .kat-card img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.55); transition: all 0.7s ease; }
      .kat-card:hover img { transform: scale(1.05); filter: brightness(0.35); }
      .kat-overlay {
        position: absolute; inset: 0; display: flex; flex-direction: column;
        justify-content: flex-end; padding: 2rem;
        background: linear-gradient(to top, rgba(10,10,10,0.85) 0%, transparent 60%);
      }
      .kat-label { font-size: 0.65rem; letter-spacing: 0.25em; text-transform: uppercase; color: #D4AF37; margin-bottom: 0.5rem; }
      .kat-title { font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; font-weight: 400; color: #F5F0E8; }
      .kat-desc { font-size: 0.82rem; color: rgba(245,240,232,0.6); margin-top: 0.5rem; max-width: 260px; opacity: 0; transform: translateY(8px); transition: all 0.35s; }
      .kat-card:hover .kat-desc { opacity: 1; transform: translateY(0); }
      @media (max-width: 768px) {
        .kategori-mosaic { grid-template-columns: 1fr; grid-template-rows: auto; }
        .kategori-mosaic .kat-card:first-child { grid-row: auto; }
        .kat-card { height: 240px; }
      }

      /* ===== RECIPE/BANNER ===== */
      .recipe-banner {
        position: relative; height: 65vh; overflow: hidden;
        display: flex; align-items: flex-end;
        background-image: url('asets/matchay.jpg');
        background-size: cover; background-position: center;
        background-attachment: fixed;
      }
      .recipe-banner::before {
        content: ''; position: absolute; inset: 0;
        background: linear-gradient(135deg, rgba(10,10,10,0.85) 0%, rgba(10,10,10,0.3) 60%, transparent 100%);
      }
      .recipe-banner-inner { position: relative; z-index: 2; padding: 4rem; }
      .recipe-tagline { font-family: 'DM Sans', sans-serif; font-size: 0.72rem; letter-spacing: 0.25em; text-transform: uppercase; color: #D4AF37; margin-bottom: 1rem; }
      .recipe-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(2.2rem, 5vw, 4rem); font-weight: 300; color: #F5F0E8; line-height: 1.1; max-width: 540px; }
      .recipe-title em { font-style: italic; color: #D4AF37; }
      .recipe-sub { color: rgba(245,240,232,0.6); font-size: 0.9rem; margin: 1rem 0 2rem; max-width: 420px; line-height: 1.6; }

      /* ===== NEWS CARDS ===== */
      .news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
      @media (max-width: 1024px) { .news-grid { grid-template-columns: repeat(2, 1fr); } }
      @media (max-width: 640px) { .news-grid { grid-template-columns: 1fr; } }
      .news-card { cursor: pointer; }
      .news-card-img-wrap { overflow: hidden; border-radius: 0; aspect-ratio: 4/3; }
      .news-card-img { width: 100%; height: 100%; object-fit: cover; filter: saturate(0.85); transition: all 0.6s ease; }
      .news-card:hover .news-card-img { transform: scale(1.05); filter: saturate(1.1); }
      .news-card-meta { font-size: 0.68rem; letter-spacing: 0.15em; text-transform: uppercase; color: #D4AF37; margin: 1.25rem 0 0.5rem; }
      .news-card-title { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 600; color: #F5F0E8; line-height: 1.4; margin-bottom: 0.75rem; transition: color 0.2s; }
      .news-card:hover .news-card-title { color: #D4AF37; }
      .news-card-excerpt { font-size: 0.85rem; color: rgba(245,240,232,0.5); line-height: 1.7; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }

      /* ===== CATALOG STRIP ===== */
      .catalog-strip {
        background: linear-gradient(90deg, #1E1E1E 0%, #141414 100%);
        border-top: 1px solid rgba(212,175,55,0.2);
        border-bottom: 1px solid rgba(212,175,55,0.2);
      }

      /* ===== FOOTER ===== */
      .footer { background: #050505; border-top: 1px solid rgba(212,175,55,0.15); }
      .footer-link { color: rgba(245,240,232,0.5); text-decoration: none; font-size: 0.85rem; transition: color 0.2s; display: block; margin-bottom: 0.5rem; }
      .footer-link:hover { color: #D4AF37; }
      .footer-heading { font-family: 'Playfair Display', serif; font-size: 0.85rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: #F5F0E8; margin-bottom: 1.25rem; }
      .social-icon { display: inline-flex; align-items: center; justify-content: center; width: 36px; height: 36px; border: 1px solid rgba(212,175,55,0.25); color: rgba(245,240,232,0.6); font-size: 0.9rem; transition: all 0.3s; text-decoration: none; }
      .social-icon:hover { border-color: #D4AF37; color: #D4AF37; background: rgba(212,175,55,0.08); }

      /* ===== ANIMATIONS ===== */
      @keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
      @keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

      /* Scrollbar */
      ::-webkit-scrollbar { width: 5px; }
      ::-webkit-scrollbar-track { background: #0A0A0A; }
      ::-webkit-scrollbar-thumb { background: #D4AF37; border-radius: 10px; }
 