*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      font-family: 'Plus Jakarta Sans', sans-serif;
      background: #F7F9F5;
      color: #1A2E1A;
      line-height: 1.6;
      overflow-x: hidden;
    }
    a { text-decoration: none; color: inherit; }

    :root {
      --green-deep:   #1A3A1A;
      --green-mid:    #2D5A27;
      --green-brand:  #1B4332;
      --green-light:  #4A7C59;
      --green-pale:   #EAF2E8;
      --green-card:   #F2F7F0;
      --gold:         #C9A84C;
      --gold-light:   #E8C96A;
      --gold-pale:    #FBF5E0;
      --gold-dark:    #9B7A2A;
      --cream:        #F7F9F5;
      --border:       #D4E4CE;
      --text-muted:   #5A7A5A;
      --radius-card:  16px;
      --radius-pill:  999px;
    }
    /* ── HAMBURGER BUTTON (hidden di desktop) ── */
    .nav-toggle {
      display: none;
      flex-direction: column;
      justify-content: center;
      gap: 5px;
      width: 32px;
      height: 32px;
      background: transparent;
      border: none;
      cursor: pointer;
      z-index: 101;
    }
    .nav-toggle span {
      display: block;
      width: 100%;
      height: 2px;
      background: var(--green-brand, #1A3A1A);
      border-radius: 2px;
      transition: transform 0.3s ease, opacity 0.3s ease;
    }

    /* Animasi jadi ikon "X" saat aktif */
    .nav-toggle.active span:nth-child(1) {
      transform: translateY(7px) rotate(45deg);
    }
    .nav-toggle.active span:nth-child(2) {
      opacity: 0;
    }
    .nav-toggle.active span:nth-child(3) {
      transform: translateY(-7px) rotate(-45deg);
    }

    .nav-cta-mobile { display: none; }

    /* ── RESPONSIVE NAVBAR ── */
    @media (max-width: 860px) {
      .nav-toggle {
        display: flex;
      }

      .nav-cta-desktop {
        display: none;
      }

      .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 75%;
        max-width: 320px;
        height: 100vh;
        background: #fff;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        padding: 100px 32px 32px;
        box-shadow: -8px 0 30px rgba(0,0,0,0.1);
        transition: right 0.35s ease;
        z-index: 100;
      }

      .nav-links.active {
        right: 0;
      }

      .nav-links li {
        width: 100%;
        border-bottom: 1px solid rgba(0,0,0,0.06);
      }

      .nav-links li a {
        display: block;
        padding: 16px 0;
        font-size: 16px;
      }

      .nav-cta-mobile {
        display: block;
        margin-top: 20px;
        border-bottom: none;
      }

      .nav-cta-mobile .nav-cta {
        display: inline-flex;
        width: 100%;
        justify-content: center;
        color: var(--gold-light);
      }
    }

    /* Overlay gelap saat menu mobile terbuka */
    .nav-overlay {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(0,0,0,0.4);
      z-index: 99;
    }
    .nav-overlay.active {
      display: block;
    }

    /* ── NAV ── */
    .nav {
      position: sticky; top: 0; z-index: 100;
      background: rgba(247,249,245,0.93);
      backdrop-filter: blur(14px);
      -webkit-backdrop-filter: blur(14px);
      border-bottom: 0.5px solid var(--border);
      padding: 0 6%;
      display: flex; align-items: center; justify-content: space-between;
      height: 64px;
    }
    .nav-logo-wrap {
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .nav-logo-icon {
      height: 44px; /* atur tinggi logo sesuai selera, contoh 40-56px */
      display: flex;
      align-items: center;
    }

    .nav-logo-icon img {
      height: 100%;
      width: auto;
      object-fit: contain;
      display: block;
    }
    .nav-logo span { color: var(--gold-dark); }
    .nav-links { display: flex; gap: 28px; list-style: none; }
    .nav-links a { font-size: 13.5px; color: var(--green-mid); font-weight: 500; transition: color .2s; }
    .nav-links a:hover { color: var(--gold-dark); }
    .nav-cta {
      background: var(--green-brand); color: var(--gold-light);
      font-size: 13px; font-weight: 600;
      padding: 10px 22px; border-radius: var(--radius-pill);
      display: inline-flex; align-items: center; gap: 7px;
      transition: background .2s, transform .15s;
    }
    .nav-cta:hover { background: var(--green-deep); transform: translateY(-1px); }


    /* hero carousel */
    .hero-carousel {
      position: relative;
      width: 100%;
      overflow: hidden;
      border-radius: 16px;
    }

    .hero-carousel-track {
      display: flex;
      transition: transform 0.4s ease;
    }

    .hero-carousel-img {
      width: 100%;
      flex-shrink: 0;
      object-fit: cover;
      display: block;
    }

    .hero-carousel-btn {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background: rgba(255, 255, 255, 0.85);
      border: none;
      width: 36px;
      height: 36px;
      border-radius: 50%;
      cursor: pointer;
      font-size: 16px;
      z-index: 2;
      display: none;
    }

    .hero-carousel-btn.prev { left: 12px; }
    .hero-carousel-btn.next { right: 12px; }

    .hero-carousel-dots {
      position: absolute;
      bottom: 12px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 6px;
      z-index: 2;
      display: none;
    }

    .hero-carousel-dots .dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.5);
      cursor: pointer;
    }

    .hero-carousel-dots .dot.active {
      background: #fff;
    }

   
    /* ── PAGE HERO (untuk halaman dalam seperti About, Semua Produk, dll) ── */
    .page-hero {
      background: var(--green-brand);
      padding: 100px 8% 64px;
      position: relative;
      overflow: hidden;
    }
    .page-hero-content {
      position: relative;
      z-index: 1;
    }
    .page-hero-title {
      font-family: 'DM Serif Display', serif;
      font-size: clamp(32px, 4.5vw, 45px);
      color: #F0F7EE;
      line-height: 1.1;
      margin-bottom: 16px;
    }

    .breadcrumb {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 14px;
      margin-top: 4px;
    }

    .breadcrumb a {
      color: #8DAD8A;
      text-decoration: none;
      transition: color 0.2s ease;
    }

    .breadcrumb a:hover {
      color: var(--gold-light);
    }

    .breadcrumb-sep {
      color: rgba(201, 168, 76, 0.3);
    }

    .breadcrumb-current {
      color: var(--gold-light);
      font-weight: 600;
    }
    .hero-article-date {
      display: block;
      font-size: 13px;
      color: rgba(240, 247, 238, 0.55);
      margin-top: 12px;
    }

    /* ── HERO ── */
    .hero {
      background: var(--green-brand);
      min-height: 90vh;
      display: grid;
      grid-template-columns: 1fr 1fr;
      align-items: center;
      gap: 48px;
      padding: 80px 8% 64px;
      position: relative;
      overflow: hidden;
    }
    .hero-orn {
      position: absolute; border-radius: 50%; pointer-events: none;
    }
    .hero-orn-1 { width: 400px; height: 400px; background: rgba(201,168,76,0.07); top: -100px; right: 35%; }
    .hero-orn-2 { width: 180px; height: 180px; background: rgba(201,168,76,0.05); bottom: -40px; left: 80px; }
    .hero-orn-3 { width: 60px; height: 60px; background: rgba(201,168,76,0.12); top: 80px; right: 52%; }

    .hero-eyebrow {
      display: inline-flex; align-items: center; gap: 7px;
      background: rgba(201,168,76,0.14);
      border: 0.5px solid rgba(201,168,76,0.35);
      color: var(--gold-light);
      font-size: 11px; font-weight: 600; letter-spacing: 1.2px; text-transform: uppercase;
      padding: 6px 14px; border-radius: var(--radius-pill);
      margin-bottom: 20px;
    }
    .hero-h1 {
      font-family: 'DM Serif Display', serif;
      font-size: clamp(36px, 5vw, 62px);
      color: #F0F7EE;
      line-height: 1.1;
      margin-bottom: 16px;
    }
    .hero-h1 em { color: var(--gold-light); font-style: italic; }
    .hero-sub {
      font-size: 16px; color: #8DAD8A; line-height: 1.75;
      margin-bottom: 32px; max-width: 420px;
    }
    .hero-btns { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 48px; }
    .btn-primary {
      background: var(--gold); color: var(--green-deep);
      font-size: 14px; font-weight: 700;
      padding: 14px 28px; border-radius: var(--radius-pill);
      display: inline-flex; align-items: center; gap: 8px;
      transition: background .2s, transform .15s;
    }
    .btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); }
    .btn-ghost {
      background: transparent;
      border: 0.5px solid rgba(201,168,76,0.4);
      color: var(--gold-light);
      font-size: 14px; font-weight: 500;
      padding: 14px 28px; border-radius: var(--radius-pill);
      display: inline-flex; align-items: center; gap: 8px;
      transition: background .2s, border-color .2s;
    }
    .btn-ghost:hover { background: rgba(201,168,76,0.1); border-color: rgba(201,168,76,0.65); }

    .hero-stats {
      display: flex; gap: 0;
      border-top: 0.5px solid rgba(201,168,76,0.15);
      padding-top: 28px;
    }
    .stat { flex: 1; padding: 0 20px; border-right: 0.5px solid rgba(201,168,76,0.12); }
    .stat:first-child { padding-left: 0; }
    .stat:last-child { border-right: none; }
    .stat-num {
      font-family: 'DM Serif Display', serif;
      font-size: 34px; color: var(--gold-light); line-height: 1;
    }
    .stat-label { font-size: 12px; color: #6A8C6A; margin-top: 4px; }

    .hero-visual { position: relative; height: 480px; }
    .hero-img-main {
      width: 100%; height: 100%; border-radius: 24px;
      background: rgba(201,168,76,0.07);
      border: 1px dashed rgba(201,168,76,0.2);
      display: flex; flex-direction: column; align-items: center; justify-content: center;
      gap: 10px; color: #6A8C6A; font-size: 13px; text-align: center;
    }
    .hero-img-main svg { width: 40px; height: 40px; stroke: var(--gold); fill: none; opacity: .5; }
    .hero-float-badge {
      position: absolute; bottom: 28px; left: -24px;
      background: #F7F9F5; border-radius: 14px;
      padding: 12px 16px;
      display: flex; align-items: center; gap: 10px;
      box-shadow: 0 8px 28px rgba(26,58,26,0.18);
    }
    .hero-float-icon {
      width: 36px; height: 36px; background: var(--gold-pale);
      border-radius: 8px; display: flex; align-items: center; justify-content: center;
    }
    .hero-float-icon svg { width: 18px; height: 18px; stroke: var(--gold-dark); fill: none; }
    .hero-float-text { font-size: 11px; color: var(--green-mid); font-weight: 500; line-height: 1.4; }
    .hero-float-text strong { color: var(--gold-dark); }

    /* ── TRUST STRIP ── */
    .trust-strip {
      background: var(--green-pale);
      border-bottom: 0.5px solid var(--border);
      padding: 16px 8%;
      display: flex; gap: 0; overflow-x: auto; scrollbar-width: none;
    }
    .trust-strip::-webkit-scrollbar { display: none; }
    .trust-item {
      flex: 1; min-width: 140px;
      display: flex; align-items: center; gap: 10px;
      padding: 0 24px;
      border-right: 0.5px solid var(--border);
    }
    .trust-item:first-child { padding-left: 0; }
    .trust-item:last-child { border-right: none; }
    .trust-icon {
      width: 36px; height: 36px; background: #fff;
      border-radius: 10px; border: 0.5px solid var(--border);
      display: flex; align-items: center; justify-content: center; flex-shrink: 0;
    }
    .trust-icon svg { width: 17px; height: 17px; stroke: var(--green-mid); fill: none; }
    .trust-text { font-size: 13px; color: var(--green-mid); font-weight: 500; line-height: 1.35; }

    /* ── SECTION COMMONS ── */
    .section { padding: 80px 8%; }
    .section-eyebrow {
      font-size: 11px; font-weight: 600; letter-spacing: 1.4px;
      text-transform: uppercase; color: var(--gold-dark); margin-bottom: 8px;
    }
    .section-title {
      font-family: 'DM Serif Display', serif;
      font-size: clamp(26px, 3.5vw, 40px);
      color: var(--green-deep); line-height: 1.2; margin-bottom: 12px;
    }
    .section-desc { font-size: 15px; color: var(--text-muted); line-height: 1.75; max-width: 500px; }
    .section-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 40px; gap: 24px; }

    /* ── PRODUCTS ── */
    .sec-products { background: var(--cream); }
    .prod-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
    .prod-card {
      background: #fff; border: 0.5px solid var(--border);
      border-radius: var(--radius-card); overflow: hidden;
      transition: transform .2s, box-shadow .2s;
    }
    .prod-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(26,58,26,0.1); }
    .prod-thumb {
      height: 160px; display: flex; align-items: center; justify-content: center;
      font-size: 52px; position: relative;
    }
    .prod-thumb.cc { background: #2D1F0A; }
    .prod-thumb.cm { background: #3A2510; }
    .prod-thumb.cp { background: #1A3020; }
    .prod-thumb.bf { background: #14101E; }
    .prod-badge {
      position: absolute; top: 10px; right: 10px;
      font-size: 10px; font-weight: 600; padding: 3px 10px; border-radius: var(--radius-pill);
    }
    .prod-badge.fav { background: rgba(201,168,76,0.2); color: #C9A84C; border: 0.5px solid rgba(201,168,76,0.4); }
    .prod-badge.new { background: rgba(45,90,39,0.2); color: #4A9B5A; border: 0.5px solid rgba(45,90,39,0.4); }
    .prod-body { padding: 16px 18px; }
    .prod-name { font-family: 'DM Serif Display', serif; font-size: 18px; color: var(--green-deep); margin-bottom: 4px; }
    .prod-tagline { font-size: 12px; color: var(--text-muted); margin-bottom: 12px; line-height: 1.5; }
    .prod-price { font-size: 18px; font-weight: 700; color: var(--gold-dark); margin-bottom: 12px; }
    .prod-btn {
      display: block; width: 100%; text-align: center;
      background: var(--green-brand); color: var(--gold-light);
      font-size: 13px; font-weight: 600; padding: 11px;
      border-radius: 10px; transition: background .2s;
    }
    .prod-btn:hover { background: var(--green-deep); }

    /* ── PROCESS ── */
    .sec-process { background: var(--green-brand); padding: 80px 8%; }
    .sec-process .section-eyebrow { color: var(--gold-light); }
    .sec-process .section-title { color: #F0F7EE; }
    .proc-grid {
      display: grid; grid-template-columns: repeat(4,1fr);
      gap: 0; margin-top: 48px; position: relative;
    }
    .proc-line {
      position: absolute; top: 40px;
      left: calc(12.5% + 20px); width: calc(75% - 40px);
      height: 0.5px; background: rgba(201,168,76,0.2);
    }
    .proc-step { text-align: center; padding: 0 16px; position: relative; }
    .proc-icon-wrap {
      width: 80px; height: 80px; border-radius: 50%;
      background: rgba(201,168,76,0.1);
      border: 0.5px solid rgba(201,168,76,0.22);
      display: flex; align-items: center; justify-content: center;
      margin: 0 auto 20px; position: relative; z-index: 1;
      transition: background .2s;
    }
    .proc-step:hover .proc-icon-wrap { background: rgba(201,168,76,0.2); }
    .proc-icon-wrap svg { width: 30px; height: 30px; stroke: var(--gold-light); fill: none; }
    .proc-title { font-size: 14px; font-weight: 600; color: #F0F7EE; margin-bottom: 8px; }
    .proc-desc { font-size: 13px; color: #6A8C6A; line-height: 1.6; }

    /* ── HIGHLIGHT BAND ── */
    .sec-highlight {
      background: var(--gold-pale);
      border-top: 0.5px solid #E8D898;
      border-bottom: 0.5px solid #E8D898;
      padding: 48px 8%;
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      gap: 0;
    }
    .hl-item {
      text-align: center; padding: 0 32px;
      border-right: 0.5px solid #E8D898;
    }
    .hl-item:last-child { border-right: none; }
    .hl-icon {
      width: 52px; height: 52px;
      background: #fff; border-radius: 14px;
      border: 0.5px solid #E8D898;
      display: flex; align-items: center; justify-content: center;
      margin: 0 auto 14px;
    }
    .hl-icon svg { width: 24px; height: 24px; stroke: var(--gold-dark); fill: none; }
    .hl-title { font-family: 'DM Serif Display', serif; font-size: 18px; color: var(--green-deep); margin-bottom: 6px; }
    .hl-desc { font-size: 13px; color: var(--gold-dark); line-height: 1.6; }

    /* ── TESTIMONIALS ── */
    .sec-testi { background: var(--green-pale); }
    .sec-testi .section-title { color: var(--green-deep); }
    .testi-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 16px; }
    .testi-card {
      background: #fff; border: 0.5px solid var(--border);
      border-radius: var(--radius-card); padding: 24px;
    }
    .testi-stars { color: var(--gold); font-size: 15px; letter-spacing: 2px; margin-bottom: 12px; }
    .testi-quote {
      font-family: 'DM Serif Display', serif;
      font-size: 17px; color: var(--green-deep);
      line-height: 1.6; font-style: italic; margin-bottom: 16px;
    }
    .testi-author { display: flex; align-items: center; gap: 10px; }
    .testi-avatar {
      width: 36px; height: 36px; border-radius: 50%;
      background: var(--green-brand);
      display: flex; align-items: center; justify-content: center;
      font-size: 12px; font-weight: 600; color: var(--gold-light);
    }
    .testi-name { font-size: 13px; font-weight: 600; color: var(--green-mid); }
    .testi-loc { font-size: 12px; color: var(--text-muted); }

    /* ── LOCATION ── */
    .sec-location { background: var(--cream); }
    .loc-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
    .loc-card {
      background: #fff; border: 0.5px solid var(--border);
      border-radius: var(--radius-card); padding: 24px;
      transition: transform .2s, box-shadow .2s;
    }
    .loc-card:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(26,58,26,0.08); }
    .loc-type {
      display: inline-block; font-size: 10px; font-weight: 600;
      letter-spacing: .8px; text-transform: uppercase;
      color: var(--gold-dark); background: var(--gold-pale);
      padding: 3px 10px; border-radius: var(--radius-pill); margin-bottom: 12px;
    }
    .loc-name { font-family: 'DM Serif Display', serif; font-size: 20px; color: var(--green-deep); margin-bottom: 8px; }
    .loc-addr { font-size: 13px; color: var(--text-muted); line-height: 1.65; margin-bottom: 12px; }
    .loc-detail {
      display: flex; align-items: center; gap: 6px;
      font-size: 12px; color: var(--green-mid); font-weight: 500; margin-bottom: 4px;
    }
    .loc-detail svg { width: 14px; height: 14px; stroke: var(--green-mid); fill: none; }
    .loc-maps {
      display: inline-flex; align-items: center; gap: 5px;
      margin-top: 14px; font-size: 12px; font-weight: 600;
      color: var(--gold-dark);
      border-bottom: 0.5px solid var(--gold-dark); padding-bottom: 2px;
      transition: opacity .15s;
    }
    .loc-maps:hover { opacity: .7; }
    .loc-img {
      width: 100%;
      border-radius: 14px;
      overflow: hidden;
      margin-bottom: 16px;
    }
    .loc-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    /* ── CTA ── */
    .sec-cta {
      background: var(--green-brand); padding: 80px 8%;
      text-align: center; position: relative; overflow: hidden;
    }
    .cta-orn { position: absolute; border-radius: 50%; pointer-events: none; }
    .cta-orn-1 { width: 300px; height: 300px; background: rgba(201,168,76,0.05); top: -80px; left: -40px; }
    .cta-orn-2 { width: 200px; height: 200px; background: rgba(201,168,76,0.06); bottom: -60px; right: 80px; }
    .cta-orn-3 { width: 90px; height: 90px; background: rgba(201,168,76,0.08); top: 30px; right: 22%; }
    .sec-cta .section-eyebrow { color: rgba(232,201,106,0.7); }
    .sec-cta .section-title { color: #F0F7EE; max-width: 580px; margin: 0 auto 14px; }
    .cta-sub { font-size: 16px; color: #6A8C6A; margin: 0 auto 36px; max-width: 440px; line-height: 1.7; }
    .cta-btns { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }
    .cta-btn-wa {
      background: var(--gold); color: var(--green-deep);
      font-size: 14px; font-weight: 700;
      padding: 14px 28px; border-radius: var(--radius-pill);
      display: inline-flex; align-items: center; gap: 8px;
      transition: background .2s, transform .15s;
    }
    .cta-btn-wa:hover { background: var(--gold-light); transform: translateY(-2px); }
    .cta-btn-loc {
      background: transparent;
      border: 0.5px solid rgba(201,168,76,0.4);
      color: var(--gold-light);
      font-size: 14px; font-weight: 500;
      padding: 14px 28px; border-radius: var(--radius-pill);
      display: inline-flex; align-items: center; gap: 8px;
      transition: background .2s;
    }
    .cta-btn-loc:hover { background: rgba(201,168,76,0.1); }

    /* ── ABOUT STORY ── */
    .sec-story {
      padding: 100px 8%;
    }
    .story-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 56px;
      align-items: center;
    }
    .story-img {
      border-radius: 24px;
      overflow: hidden;
    }
    .story-img img {
      display: block;
      border-radius: 24px;
    }
    .story-text {
      font-size: 16px;
      color: var(--green-mid, #5A7A5A);
      line-height: 1.8;
      margin-bottom: 18px;
    }

    /* ── VALUES ── */
    .sec-values {
      padding: 0 8% 100px;
    }
    .values-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 24px;
    }
    .value-card {
      background: #fff;
      border-radius: 18px;
      padding: 32px 24px;
      box-shadow: 0 6px 20px rgba(26,58,26,0.06);
    }
    .value-icon {
      width: 48px; height: 48px;
      background: var(--gold-pale, #F5EBD3);
      border-radius: 12px;
      display: flex; align-items: center; justify-content: center;
      margin-bottom: 18px;
    }
    .value-icon svg {
      width: 22px; height: 22px;
      stroke: var(--gold-dark, #A6822E);
      fill: none;
    }
    .value-title {
      font-family: 'DM Serif Display', serif;
      font-size: 19px;
      color: var(--green-deep, #1A3A1A);
      margin-bottom: 8px;
    }
    .value-text {
      font-size: 14px;
      color: var(--green-mid, #5A7A5A);
      line-height: 1.6;
    }

    /* ── ABOUT STATS ── */
    .sec-about-stats {
      background: var(--green-brand);
      padding: 64px 8%;
    }
    .about-stats-grid {
      display: flex;
      justify-content: center;
      gap: 80px;
      text-align: center;
    }
    .sec-about-stats .stat-num {
      font-family: 'DM Serif Display', serif;
      font-size: 44px;
      color: var(--gold-light);
    }
    .sec-about-stats .stat-label {
      font-size: 13px;
      color: #8DAD8A;
      margin-top: 6px;
    }

    /* ── CTA FINAL ── */
    .sec-cta-final {
      padding: 100px 8%;
      text-align: center;
    }
    .cta-final-title {
      font-family: 'DM Serif Display', serif;
      font-size: clamp(28px, 4vw, 42px);
      color: var(--green-deep, #1A3A1A);
      margin-bottom: 12px;
    }
    .cta-final-text {
      font-size: 16px;
      color: var(--green-mid, #5A7A5A);
      margin-bottom: 32px;
    }
    .cta-final-btns {
      display: flex;
      justify-content: center;
      gap: 12px;
      flex-wrap: wrap;
    }
    .sec-cta-final .btn-ghost {
      border-color: rgba(26,58,26,0.25);
      color: var(--green-deep, #1A3A1A);
    }
    .sec-cta-final .btn-ghost:hover {
      background: rgba(26,58,26,0.06);
    }

    @media (max-width: 900px) {
      .story-grid { grid-template-columns: 1fr; }
      .values-grid { grid-template-columns: 1fr 1fr; }
      .about-stats-grid { gap: 40px; flex-wrap: wrap; }
    }
    @media (max-width: 560px) {
      .values-grid { grid-template-columns: 1fr; }
    }

    /* ── CONTACT ── */
    .sec-contact {
      padding: 100px 8%;
      background: #F7F9F5;
    }

    .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 48px;
      align-items: center;
    }

    .contact-desc {
      font-size: 16px;
      color: var(--green-mid, #5A7A5A);
      line-height: 1.75;
      margin: 16px 0 28px;
      max-width: 420px;
    }

    .contact-socials {
      display: flex;
      gap: 12px;
      margin-top: 28px;
    }

    .contact-card {
      background: #fff;
      border-radius: 20px;
      padding: 36px;
      box-shadow: 0 8px 28px rgba(26,58,26,0.08);
      display: flex;
      flex-direction: column;
      gap: 28px;
    }

    .contact-item {
      display: flex;
      align-items: center;
      gap: 16px;
    }

    .contact-icon {
      width: 44px;
      height: 44px;
      flex-shrink: 0;
      background: var(--gold-pale, #F5EBD3);
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .contact-icon svg {
      width: 20px;
      height: 20px;
      stroke: var(--gold-dark, #A6822E);
      fill: none;
    }

    .contact-item-label {
      font-size: 12px;
      color: var(--green-mid, #5A7A5A);
      margin-bottom: 4px;
    }

    .contact-item-value {
      font-size: 15px;
      color: var(--green-deep, #1A3A1A);
      font-weight: 600;
      line-height: 1.4;
    }

    @media (max-width: 768px) {
      .contact-grid {
        grid-template-columns: 1fr;
      }
    }

    /* ── ARTICLE GRID ── */
    .sec-articles { padding: 80px 8%; }

    .article-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 28px;
    }

    @media (max-width: 900px) {
      .article-grid {
        grid-template-columns: 1fr 1fr;
      }
    }

    @media (max-width: 560px) {
      .article-grid {
        grid-template-columns: 1fr;
      }
    }

    .article-card {
      background: #fff;
      border-radius: 18px;
      overflow: hidden;
      box-shadow: 0 6px 20px rgba(26,58,26,0.06);
      transition: transform .2s ease, box-shadow .2s ease;
      display: block;
    }
    .article-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 12px 28px rgba(26,58,26,0.12);
    }

    .article-card-img {
      aspect-ratio: 16/10;
      overflow: hidden;
    }
    .article-card-img img {
      width: 100%; height: 100%; object-fit: cover; display: block;
    }

    .article-card-body { padding: 20px; }

    .article-category {
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.5px;
      text-transform: uppercase;
      color: var(--gold-dark, #A6822E);
    }

    .article-card-title {
      font-family: 'DM Serif Display', serif;
      font-size: 18px;
      color: var(--green-deep, #1A3A1A);
      margin: 8px 0 8px;
      line-height: 1.35;
    }

    .article-card-excerpt {
      font-size: 13px;
      color: var(--green-mid, #5A7A5A);
      line-height: 1.6;
      margin-bottom: 14px;
    }

    .article-date {
      font-size: 12px;
      color: #9AAE9A;
    }
    .article-search-bar {
      display: flex;
      align-items: center;
      gap: 10px;
      max-width: 480px;
      margin: 0 0 32px;
      padding: 12px 18px;
      border: 1px solid #E5E9E2;
      border-radius: 12px;
      background: #fff;
    }
    .article-search-bar svg {
      stroke: #9AAE9A;
      flex-shrink: 0;
    }
    .article-search-bar input {
      border: none;
      outline: none;
      font-size: 14px;
      width: 100%;
      color: var(--green-deep, #1A3A1A);
      font-family: inherit;
    }
    .article-search-bar input::placeholder {
      color: #B3C2B0;
    }
    
     /* ARTICLE PAGINATION */
    .article-pagination {
      display: flex;
      justify-content: center;
      margin-top: 48px;
    }

    .pagination-nav {
      display: flex;
      align-items: center;
      gap: 6px;
    }

    .page-btn {
      min-width: 36px;
      height: 36px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 8px;
      font-size: 14px;
      color: var(--green-deep, #1A3A1A);
      text-decoration: none;
      transition: background .2s;
    }

    .page-btn:hover {
      background: rgba(201,168,76,0.12);
    }

    .page-btn.active {
      background: var(--green-brand, #1A3A1A);
      color: var(--gold-light, #E8C96A);
      font-weight: 600;
    }

    .page-btn.disabled {
      color: #C5D1C2;
      cursor: not-allowed;
    }

    .page-dots {
      padding: 0 4px;
      color: #9AAE9A;
    }

   /* ── ARTICLE DETAIL + SIDEBAR LAYOUT ── */
    .sec-article-detail-wrap {
      padding: 64px 8% 100px;
    }

    .article-detail-grid {
      display: grid;
      grid-template-columns: 2.2fr 1fr;
      gap: 48px;
      align-items: start;
    }

    .article-main .article-date {
      font-size: 13px;
      color: #9AAE9A;
    }

    .article-detail-img {
      border-radius: 18px;
      overflow: hidden;
      margin: 20px 0 28px;
    }
    .article-detail-img img { width: 100%; display: block; }

    .article-detail-body {
      font-size: 15.5px;
      color: var(--green-mid, #5A7A5A);
      line-height: 1.85;
    }
    .article-detail-body p { margin-bottom: 18px; }
    .article-content-title {
      font-family: 'DM Serif Display', serif;
      font-size: clamp(24px, 3.5vw, 32px);
      color: var(--green-deep, #1A3A1A);
      line-height: 1.3;
      margin-bottom: 16px;
    }

    .article-meta-row {
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
      margin-bottom: 24px;
      padding-bottom: 20px;
      border-bottom: 1px solid #E5E9E2;
    }

    .meta-item {
      display: flex;
      align-items: center;
      gap: 6px;
      font-size: 13px;
      color: var(--green-mid, #5A7A5A);
    }

    .meta-item svg {
      stroke: var(--gold-dark, #A6822E);
      fill: none;
      flex-shrink: 0;
    }

    /* ── SIDEBAR ── */
    .article-sidebar {
      position: sticky;
      top: 84px;
      display: flex;
      flex-direction: column;
      gap: 24px;
    }

    .sidebar-box {
      background: #fff;
      border-radius: 16px;
      padding: 22px;
      box-shadow: 0 6px 20px rgba(26,58,26,0.06);
    }

    .sidebar-title {
      font-family: 'DM Serif Display', serif;
      font-size: 16px;
      color: var(--green-deep, #1A3A1A);
      margin-bottom: 14px;
    }

    .sidebar-search {
      display: flex;
      align-items: center;
      gap: 8px;
      border: 1px solid #E5E9E2;
      border-radius: 10px;
      padding: 10px 14px;
    }
    .sidebar-search svg { stroke: #9AAE9A; flex-shrink: 0; }
    .sidebar-search input {
      border: none;
      outline: none;
      font-size: 13.5px;
      width: 100%;
      color: var(--green-deep, #1A3A1A);
      font-family: inherit;
    }
    .sidebar-search input::placeholder { color: #B3C2B0; }

    .sidebar-article-list {
      display: flex;
      flex-direction: column;
      gap: 16px;
    }

    .sidebar-article-item {
      display: flex;
      gap: 12px;
      text-decoration: none;
    }

    .sidebar-article-img {
      width: 64px;
      height: 64px;
      border-radius: 10px;
      overflow: hidden;
      flex-shrink: 0;
    }
    .sidebar-article-img img {
      width: 100%; height: 100%; object-fit: cover; display: block;
    }

    .sidebar-article-title {
      font-size: 13.5px;
      color: var(--green-deep, #1A3A1A);
      line-height: 1.4;
      margin-bottom: 4px;
      font-weight: 600;
    }

    .sidebar-article-date {
      font-size: 11.5px;
      color: #9AAE9A;
    }

    .sidebar-empty {
      font-size: 13px;
      color: #9AAE9A;
    }

    @media (max-width: 900px) {
      .article-detail-grid {
        grid-template-columns: 1fr;
      }
      .article-sidebar {
        position: static;
      }
    }
    

    /* ── FOOTER ── */
    footer { background: var(--green-deep); padding: 56px 8% 32px; }
    .footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
    .footer-brand { font-family: 'DM Serif Display', serif; font-size: 22px; color: var(--gold-light); margin-bottom: 10px; }
    .footer-tagline { font-size: 14px; color:  rgba(240, 247, 238, 0.65); line-height: 1.7; margin-bottom: 20px; }
    .footer-socials { display: flex; gap: 8px; }
    .footer-social {
      width: 32px; height: 32px; border-radius: 8px;
      background: rgba(201,168,76,0.08);
      border: 0.5px solid rgba(201,168,76,0.18);
      display: flex; align-items: center; justify-content: center;
      transition: background .2s;
    }
    .footer-logo-icon {
      height: 52px; /* atur tinggi logo sesuai selera, contoh 40-56px */
      display: flex;
      align-items: center;
    }

    .footer-logo-icon img {
      height: 100%;
      width: auto;
      object-fit: contain;
      display: block;
    }
    .footer-social:hover { background: rgba(201,168,76,0.18); }
    .footer-social svg { width: 15px; height: 15px; stroke: var(--gold); fill: none; }
    .footer-col-title {
        font-size: 11px;
        font-weight: 600;
        letter-spacing: 1px;
        text-transform: uppercase;
        color: var(--gold-light);       /* judul kolom pakai gold, jadi penanda visual */
        margin-bottom: 14px;
    }

    .footer-col a {
        display: block;
        font-size: 13px;
        color: rgba(240, 247, 238, 0.65);  /* putih kehijauan, transparan — mirip .hero-sub */
        margin-bottom: 8px;
        transition: color .2s;
    }

    .footer-col a:hover {
        color: var(--gold-light);
    }
    .footer-divider { border: none; border-top: 0.5px solid #1E3A1E; margin-bottom: 20px; }
    .footer-bottom { display: flex; justify-content: space-between; align-items: center; }
    .footer-copy { font-size: 12px; color: rgba(240, 247, 238, 0.65); }
    .footer-top-3col {
        grid-template-columns: 1.3fr 1fr 1fr;
        }

    .footer-info-item {
        display: flex;
        align-items: flex-start;
        gap: 10px;
        font-size: 13px;
        color: rgba(240, 247, 238, 0.7);
        margin-bottom: 14px;
        line-height: 1.5;
    }
    .footer-info-item svg {
        stroke: var(--gold-light);
        fill: none;
        flex-shrink: 0;
        margin-top: 2px;
    }

    .footer-row {
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-size: 13px;
        color: rgba(240, 247, 238, 0.75);
        padding: 10px 0;
        border-bottom: 0.5px solid rgba(232, 201, 106, 0.15);
    }
    .footer-row:last-child { border-bottom: none; }
    .footer-row span:last-child {
        color: var(--gold-light);
        font-weight: 600;
    }

    .footer-row-label {
        display: flex;
        align-items: center;
        gap: 6px;
    }

    .footer-dot {
        width: 7px;
        height: 7px;
        border-radius: 50%;
        background: #4ADE80;
        display: inline-block;
    }

    .footer-map-embed {
        border-radius: 10px;
        overflow: hidden;
        margin-bottom: 10px;
    }
    .footer-map-embed iframe {
      display: block;
      width: 100%;
      height: 180px;
      border: 0;
    }
    .footer-map-link {
        font-size: 12.5px;
        color: rgba(240, 247, 238, 0.75);
        display: inline-flex;
        align-items: center;
        gap: 5px;
        transition: color .2s;
    }
    .footer-map-link:hover {
        color: var(--gold-light);
    }

    /* @media (max-width: 900px) {
        .footer-top-3col {
            grid-template-columns: 1fr 1fr;
            gap: 32px;
        }
    }
    @media (max-width: 560px) {
        .footer-top-3col {
            grid-template-columns: 1fr;
        }
    } */

    /* ── REVEAL ── */
    .reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
    .reveal.visible { opacity: 1; transform: translateY(0); }
    .reveal-delay-1 { transition-delay: .1s; }
    .reveal-delay-2 { transition-delay: .2s; }
    .reveal-delay-3 { transition-delay: .3s; }
    .reveal-delay-4 { transition-delay: .4s; }

    /* ── RESPONSIVE ── */
    @media (max-width: 900px) {
      .hero { grid-template-columns: 1fr; min-height: auto; padding: 60px 6% 48px; }
      .hero-visual { display: none; }
      .prod-grid { grid-template-columns: repeat(2,1fr); }
      .proc-grid { grid-template-columns: repeat(2,1fr); gap: 32px; }
      .proc-line { display: none; }
      .sec-highlight { grid-template-columns: 1fr; gap: 24px; }
      .hl-item { border-right: none; border-bottom: 0.5px solid #E8D898; padding-bottom: 24px; }
      .hl-item:last-child { border-bottom: none; }
      .footer-top { grid-template-columns: 1fr 1fr; }
      .section-header { flex-direction: column; align-items: flex-start; }
      .footer-top-3col {
            grid-template-columns: 1fr 1fr;
            gap: 32px;
        }
    }
    @media (max-width: 860px) {
      .nav-toggle {
        display: flex;
        margin-left: auto;
      }

      .nav-cta-desktop {
        display: none;
      }

      .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 75%;
        max-width: 320px;
        height: 100vh;
        background: #fff;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        padding: 100px 32px 32px;
        box-shadow: -8px 0 30px rgba(0,0,0,0.1);
        transition: right 0.35s ease;
        z-index: 100;
        display: flex; /* override display:none lama */
      }

      .nav-links.active {
        right: 0;
      }

      .nav-links li {
        width: 100%;
        border-bottom: 1px solid rgba(0,0,0,0.06);
      }

      .nav-links li a {
        display: block;
        padding: 16px 0;
        font-size: 16px;
      }

      .nav-cta-mobile {
        display: block;
        margin-top: 20px;
        border-bottom: none;
      }

      .nav-cta-mobile .nav-cta {
        display: inline-flex;
        width: 100%;
        justify-content: center;
        color: var(--gold-light);
      }
    }
    @media (max-width: 600px) {
      .hero-h1 { font-size: 34px; }
      .hero-btns { flex-direction: column; }
      .btn-primary, .btn-ghost { justify-content: center; }
      .section { padding: 56px 6%; }
      .prod-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
      .testi-grid { grid-template-columns: 1fr; }
      .loc-grid { grid-template-columns: 1fr; }
      .proc-grid { grid-template-columns: 1fr; }
      .footer-top { grid-template-columns: 1fr 1fr; gap: 24px; }
      .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
      .cta-btns { flex-direction: column; align-items: center; }
      .footer-top-3col {
          grid-template-columns: 1fr;
      }
    
    }