
      *, *::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 rules */
      .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); }

      /* ===== 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}

      /* Section typography */
      .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; }

      /* Buttons */
      .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; }

      /* ===== BANNER HERO ===== */
      /* ===== FIX HORIZONTAL SCROLL ===== */
html, body {
    overflow-x: hidden;
    max-width: 100%;
}

/* ===== ABOUT HERO — MOBILE FIX ===== */
.about-hero {
    position: relative;
    height: 70vh;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    width: 100%;          /* ← tambah ini */
    max-width: 100vw;     /* ← tambah ini */
}

.about-hero img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.4);
    animation: heroZoom 10s ease-in-out forwards;
}

.about-hero-content {
    position: relative;
    z-index: 2;
    padding: 4rem;              /* desktop */
    opacity: 0;
    animation: fadeUp 1s 0.4s forwards;
    width: 100%;                /* ← tambah ini */
    box-sizing: border-box;     /* ← tambah ini */
}

/* Mobile hero */
@media (max-width: 768px) {
    .about-hero {
        height: 42vw;           /* landscape feel */
        min-height: 200px;
        max-height: 280px;
    }

    .about-hero-content {
        padding: 1.5rem;        /* ← kecilkan padding di mobile */
    }

    .about-hero-content h1 {
        font-size: clamp(1.8rem, 6vw, 2.8rem) !important;
    }

    .about-hero-content p {
        font-size: 0.8rem !important;
        margin-top: 0.5rem !important;
    }
}

/* ===== TIMELINE MOBILE FIX ===== */
@media (max-width: 768px) {
    .timeline-wrap {
        overflow: hidden;       /* ← cegah timeline keluar layar */
    }

    .tl-item {
        width: 100%;
        left: 0 !important;
        text-align: left !important;
        padding-left: 56px;
        padding-right: 1rem;
        box-sizing: border-box; /* ← tambah ini */
    }

    .tl-item .tl-dot {
        left: 14px !important;
        right: auto !important;
    }
}

/* ===== VALUE CARDS MOBILE FIX ===== */
@media (max-width: 768px) {
    .value-card {
        padding: 1.75rem;       /* kurangi padding */
    }
}

/* ===== CTA SECTION MOBILE FIX ===== */
@media (max-width: 768px) {
    .cta-section {
        background-attachment: scroll; /* ← fixed attachment rusak di mobile */
        padding: 4rem 1.5rem;
    }
}

/* ===== DECORATIVE FRAME FIX ===== */
/* Frame dekoratif gambar di section "Siapa Kami" bisa bikin overflow */
@media (max-width: 768px) {
    [style*="bottom:-16px"][style*="right:-16px"] {
        display: none;          /* ← sembunyikan frame dekoratif di mobile */
    }
}

      /* ===== VALUE CARDS ===== */
      .value-card {
        background: #141414; border: 1px solid rgba(212,175,55,0.08);
        padding: 2.5rem; transition: all 0.4s ease;
        position: relative; overflow: hidden;
      }
      .value-card::before {
        content: ''; position: absolute; bottom: 0; left: 0; height: 2px; width: 0;
        background: linear-gradient(90deg, #D4AF37, #E8CC6A);
        transition: width 0.4s ease;
      }
      .value-card:hover { transform: translateY(-6px); border-color: rgba(212,175,55,0.2); }
      .value-card:hover::before { width: 100%; }

      /* ===== TIMELINE ===== */
      .timeline-wrap { position: relative; }
      .timeline-wrap::before {
        content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
        width: 1px; height: 100%;
        background: linear-gradient(to bottom, #D4AF37, rgba(212,175,55,0.1));
      }
      .tl-item { position: relative; width: 50%; padding: 0 4rem 3rem; }
      .tl-item:nth-child(odd) { left: 0; text-align: right; }
      .tl-item:nth-child(even) { left: 50%; }
      .tl-dot {
        position: absolute; width: 12px; height: 12px; border-radius: 50%;
        background: #D4AF37; top: 0.5rem;
        box-shadow: 0 0 0 4px rgba(212,175,55,0.2);
      }
      .tl-item:nth-child(odd) .tl-dot { right: -6px; }
      .tl-item:nth-child(even) .tl-dot { left: -6px; }
      .tl-card {
        background: #141414; border: 1px solid rgba(212,175,55,0.1);
        padding: 1.75rem; transition: border-color 0.3s;
      }
      .tl-card:hover { border-color: rgba(212,175,55,0.3); }
      @media (max-width: 768px) {
        .timeline-wrap::before { left: 20px; }
        .tl-item { width: 100%; left: 0 !important; text-align: left !important; padding-left: 56px; padding-right: 1rem; }
        .tl-item .tl-dot { left: 14px !important; right: auto !important; }
      }

      /* ===== TEAM CARDS ===== */
      .team-card { background: #141414; overflow: hidden; transition: transform 0.4s ease; }
      .team-card:hover { transform: translateY(-8px); }
      .team-card img { width: 100%; height: 280px; object-fit: cover; filter: brightness(0.8) saturate(0.9); transition: all 0.5s; }
      .team-card:hover img { filter: brightness(0.65) saturate(1.1); transform: scale(1.04); }

      /* ===== CTA SECTION ===== */
      .cta-section {
        position: relative; overflow: hidden; padding: 6rem 2rem;
        background-image: url('asets/about-cta.jpg');
        background-size: cover; background-position: center; background-attachment: fixed;
      }
      .cta-section::before {
        content: ''; position: absolute; inset: 0;
        background: rgba(10,10,10,0.8);
      }

      /* ===== FOOTER ===== */
      .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); }

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