:root{
  --green-900:#052e16;
  --green-800:#064e3b;
  --green-700:#14532d;
  --green-600:#166534;
  --orange-500:#f97316;
  --orange-400:#fb923c;
  --gray-50:#f9fafb;
  --gray-100:#f3f4f6;
  --gray-200:#e5e7eb;
  --gray-600:#4b5563;
  --gray-800:#1f2937;
  --white:#ffffff;
  --radius:16px;
  --shadow: 0 10px 25px rgba(0,0,0,.08);
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  background: var(--gray-50);
  color: var(--gray-800);
  line-height:1.6;
}
a{color:inherit; text-decoration:none}
img{max-width:100%; height:auto; display:block}
.container{
  width:min(1120px, 92vw);
  margin-inline:auto;
}

.custom-logo {
  max-height: 48px;
  width: auto;
}


.skip-link{
  position:absolute; left:-999px; top:auto; width:1px; height:1px; overflow:hidden;
}
.skip-link:focus{
  left:16px; top:16px; width:auto; height:auto; padding:10px 12px;
  background:var(--white); border:1px solid var(--gray-200); border-radius:12px; z-index:9999;
  box-shadow:var(--shadow);
}

.site-topbar{
  background:linear-gradient(90deg, var(--green-900), var(--green-700));
  color:var(--white);
}
.topbar-inner{
  display:flex; gap:14px; align-items:center; justify-content:space-between;
  padding:14px 0;
}
.brand{
  display:flex; gap:12px; align-items:center;
  min-width: 240px;
}
.brand img{width:44px; height:44px; border-radius:12px; background:rgba(255,255,255,.12); padding:6px}
.brand .title{font-weight:800; letter-spacing:.2px}
.brand .subtitle{font-size:13px; opacity:.9}

.top-actions{
  display:flex; gap:10px; align-items:center; flex-wrap:wrap; justify-content:flex-end;
  text-align:right;
}
.pill{
  display:inline-flex; gap:8px; align-items:center;
  padding:10px 12px;
  border-radius:999px;
  background:rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.18);
  font-size:14px;
}
.btn{
  display:inline-flex; gap:10px; align-items:center; justify-content:center;
  padding:10px 14px;
  border-radius:999px;
  font-weight:700;
  border:1px solid transparent;
  transition:.2s transform, .2s filter;
}
.btn:hover{transform:translateY(-1px); filter:brightness(1.03)}
.btn-primary{background:var(--orange-500); color:var(--white)}
.btn-ghost{background:rgba(255,255,255,.12); color:var(--white); border-color:rgba(255,255,255,.18)}
.btn-green{background:var(--green-600); color:var(--white)}
.btn-outline{background:var(--white); color:var(--green-800); border-color:var(--gray-200)}

.site-nav{
  background:var(--white);
  border-bottom:1px solid var(--gray-200);
}
.nav-inner{
  display:flex; align-items:center; justify-content:space-between; gap:16px;
  padding:10px 0;
}
.menu-toggle{
  display:none;
  border:1px solid var(--gray-200);
  background:var(--white);
  padding:10px 12px;
  border-radius:12px;
  font-weight:700;
}
.nav-menu ul{
  list-style:none; margin:0; padding:0;
  display:flex; gap:18px; align-items:center; flex-wrap:wrap;
}
.nav-menu a{
  display:inline-flex;
  padding:10px 10px;
  border-radius:12px;
  color:var(--gray-800);
  font-weight:700;
  font-size:14px;
}
.nav-menu a:hover{background:var(--gray-100)}
.nav-menu .current-menu-item>a{background:rgba(22,101,52,.1); color:var(--green-800)}

.hero{
  position:relative;
  overflow:hidden;
  background: radial-gradient(1200px 500px at 30% 20%, rgba(22,101,52,.65), rgba(5,46,22,.85));
  color:var(--white);
}
.hero::before{
  content:"";
  position:absolute; inset:0;
  background-image: var(--hero-image);
  background-size:cover;
  background-position:center;
  opacity:.33;
  transform:scale(1.02);
}
.hero-inner{
  position:relative;
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:24px;
  align-items:center;
  padding:58px 0;
}
.hero h1{
  font-size:44px;
  line-height:1.1;
  margin:0 0 12px 0;
  letter-spacing:-.5px;
}
.hero p{
  margin:0 0 20px 0;
  max-width:60ch;
  opacity:.95;
}
.hero-actions{display:flex; gap:12px; flex-wrap:wrap}
.hero-card{
  background: rgba(255,255,255,.1);
  border:1px solid rgba(255,255,255,.18);
  border-radius: var(--radius);
  padding:18px;
  box-shadow: 0 20px 45px rgba(0,0,0,.12);
}
.hero-card h3{margin:0 0 8px 0}
.hero-card ul{margin:0; padding-left:18px; opacity:.95}
.hero-card li{margin:6px 0}

.section{
  padding:44px 0;
}
.section h2{
  margin:0 0 16px 0;
  font-size:24px;
  letter-spacing:-.2px;
}
.grid{
  display:grid;
  gap:16px;
}
.grid-3{grid-template-columns: repeat(3, 1fr)}
.grid-2{grid-template-columns: repeat(2, 1fr)}
.card{
  background:var(--white);
  border:1px solid var(--gray-200);
  border-radius: var(--radius);
  padding:18px;
  box-shadow: var(--shadow);
}
.card .kicker{
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:.7px;
  color:var(--gray-600);
}
.quick-card{
  display:flex; gap:12px; align-items:flex-start;
}
.quick-icon{
  width:44px; height:44px; border-radius:14px;
  display:grid; place-items:center;
  background:rgba(249,115,22,.12);
  border:1px solid rgba(249,115,22,.25);
  flex:0 0 auto;
}
.quick-title{font-weight:800; margin:0}
.quick-desc{margin:4px 0 0 0; color:var(--gray-600); font-size:14px}

.posts{
  display:grid; gap:16px;
}
.post{
  display:grid;
  grid-template-columns: 140px 1fr;
  gap:14px;
  align-items:start;
}
.thumb{
  width:140px; height:92px; border-radius:14px; overflow:hidden;
  background:var(--gray-100);
  border:1px solid var(--gray-200);
}
.post h3{margin:0 0 6px 0; font-size:18px}
.post .meta{font-size:13px; color:var(--gray-600); margin-bottom:8px}
.post p{margin:0; color:var(--gray-600)}
.badge{
  display:inline-flex; align-items:center;
  padding:6px 10px;
  border-radius:999px;
  background:rgba(22,101,52,.1);
  color:var(--green-800);
  border:1px solid rgba(22,101,52,.2);
  font-weight:800;
  font-size:12px;
}

.sidebar-list{margin:0; padding:0; list-style:none}
.sidebar-list li{padding:12px 0; border-bottom:1px dashed var(--gray-200)}
.sidebar-list li:last-child{border-bottom:none}
.sidebar-list a{display:flex; justify-content:space-between; gap:10px}
.sidebar-list small{color:var(--gray-600)}

.site-footer{
  background:var(--green-900);
  color:var(--white);
  padding:34px 0;
  margin-top:40px;
}
.footer-grid{
  display:grid;
  grid-template-columns: 1.2fr .8fr .8fr;
  gap:18px;
}
.site-footer a{opacity:.95}
.site-footer a:hover{opacity:1}
.footer-title{font-weight:900; margin:0 0 10px 0}
.footer-note{opacity:.9; margin:0}
.footer-links{list-style:none; margin:0; padding:0}
.footer-links li{margin:8px 0}
.footer-bottom{
  border-top:1px solid rgba(255,255,255,.14);
  margin-top:18px;
  padding-top:14px;
  font-size:13px;
  opacity:.9;
  display:flex; justify-content:space-between; gap:12px; flex-wrap:wrap;
}

/* Page */
.page-header{
  padding:26px 0 10px 0;
}
.breadcrumb{
  font-size:13px;
  color:var(--gray-600);
}
.content-wrap{
  padding:20px 0 10px 0;
}
.prose{
  background:var(--white);
  border:1px solid var(--gray-200);
  border-radius: var(--radius);
  padding:22px;
  box-shadow: var(--shadow);
}

/* Responsive */
@media (max-width: 920px){
  .hero-inner{grid-template-columns: 1fr; padding:46px 0}
  .grid-3{grid-template-columns:1fr}
  .grid-2{grid-template-columns:1fr}
  .footer-grid{grid-template-columns:1fr}
}
@media (max-width: 740px){
  .nav-menu{display:none}
  .menu-toggle{display:inline-flex}
  .nav-inner{padding:12px 0}
  .post{grid-template-columns: 1fr}
  .thumb{width:100%; height:180px}
  .hero h1{font-size:36px}
}
/* ===== Mobile header fix ===== */
@media (max-width: 740px){

  /* rapikan tinggi & jarak */
  .topbar-inner{
    padding: 12px 0;
    gap: 10px;
    align-items: center;
  }

  /* Brand (logo + teks) */
  .brand{
    min-width: 0;
    flex: 1 1 auto;
    gap: 10px;
  }
  .brand img,
  .brand .custom-logo{
    width: 42px;
    height: 42px;
    max-height: 42px;
    padding: 0;
    border-radius: 12px;
    background: rgba(255,255,255,.08);
  }

  /* teks jangan kepanjangan */
  .brand .title{
    font-size: 18px;
    line-height: 1.15;
  }
  .brand .subtitle{
    font-size: 12px;
    line-height: 1.2;
    opacity: .9;
  }

  /* Area tombol kanan */
  .top-actions{
    flex: 0 0 auto;
    gap: 8px;
  }

  /* sembunyikan pill nomor di mobile biar nggak penuh */
  .top-actions .pill{ display:none; }

  /* tombol jadi lebih kecil & proporsional */
  .top-actions .btn{
    padding: 10px 12px;
    font-size: 14px;
    border-radius: 999px;
    white-space: nowrap;
  }

  /* Bar menu + search (putih) */
  .nav-inner{
    gap: 10px;
    padding: 10px 0;
  }
  .search-form .search-field{
    min-width: 160px !important;
    width: 48vw;
  }
}
@media (max-width: 740px){
  .menu-toggle{
    padding: 10px 12px;
    border-radius: 14px;
  }
}

