/* ==========================================================================
   Aktifpreneur — stylesheet utama (tanpa build tool, tanpa JavaScript)
   ========================================================================== */

:root {
    --ink: #16181d;
    --ink-2: #3d424d;
    --muted: #6b7280;
    --line: #e6e2da;
    --paper: #fbfaf7;
    --card: #ffffff;
    --soft: #f3f0ea;
    --brand: #e0612b;
    --brand-dark: #b94a1c;
    --navy: #13233f;
    --radius: 14px;
    --radius-sm: 8px;
    --shadow: 0 1px 2px rgba(22, 24, 29, .04), 0 8px 24px -12px rgba(22, 24, 29, .18);
    --wrap: 1200px;
    --sans: "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
    --serif: "Source Serif 4", Georgia, serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    margin: 0;
    font-family: var(--sans);
    font-size: 16px;
    line-height: 1.6;
    color: var(--ink);
    background: var(--paper);
    -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
a:hover { color: var(--brand-dark); }
h1, h2, h3, h4 { line-height: 1.25; margin: 0; letter-spacing: -.01em; }
p { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
:focus-visible { outline: 3px solid var(--brand); outline-offset: 2px; border-radius: 4px; }

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 20px; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.muted { color: var(--muted); }
.section { padding: 56px 0; }
.section--tight { padding: 36px 0; }
.section--soft { background: var(--soft); }

/* ---------- Tombol & label ---------------------------------------------- */
.btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 11px 20px; border-radius: 999px; border: 1.5px solid transparent;
    font: 600 14px/1 var(--sans); cursor: pointer; transition: .15s ease;
    background: var(--brand); color: #fff;
}
.btn:hover { background: var(--brand-dark); color: #fff; }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn--ghost:hover { background: var(--card); color: var(--ink); border-color: var(--ink); }
.btn--light { background: #fff; color: var(--ink); }
.btn--light:hover { background: #f1f1f1; color: var(--ink); }
.btn--sm { padding: 8px 14px; font-size: 13px; }
.btn svg { width: 16px; height: 16px; }

.label {
    display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: .08em;
    text-transform: uppercase; color: var(--c, var(--brand));
}
.chip {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 4px 10px; border-radius: 999px; font-size: 12px; font-weight: 600;
    background: var(--soft); color: var(--ink-2); border: 1px solid var(--line);
}
.chip--solid { background: var(--c, var(--brand)); color: #fff; border-color: transparent; }
.chip--sponsor { background: #fff4d6; color: #7a5300; border-color: #f1dc9e; }
.chip--dot::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: currentColor; }

.eyebrow {
    display: flex; align-items: center; gap: 10px;
    font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--brand);
    margin-bottom: 10px;
}
.eyebrow::before { content: ""; width: 22px; height: 2px; background: currentColor; }

/* ---------- Topbar & ticker (animasi CSS, tanpa JS) ---------------------- */
.topbar { background: var(--navy); color: #cfd6e4; font-size: 13px; }
.topbar .wrap { display: flex; align-items: center; gap: 20px; height: 38px; }
.topbar__date { white-space: nowrap; }
.ticker { flex: 1; display: flex; align-items: center; gap: 12px; overflow: hidden; min-width: 0; }
.ticker__tag { background: var(--brand); color: #fff; font-weight: 700; font-size: 11px; padding: 3px 8px; border-radius: 4px; text-transform: uppercase; letter-spacing: .06em; flex: none; }
.ticker__viewport { overflow: hidden; flex: 1; mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent); }
.ticker__track { display: flex; gap: 48px; width: max-content; animation: ticker 40s linear infinite; }
.ticker__track a { color: #fff; white-space: nowrap; }
.ticker__track a:hover { color: #ffb48f; }
.ticker:hover .ticker__track { animation-play-state: paused; }
@keyframes ticker { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .ticker__track { animation: none; } }
.topbar__links { display: flex; gap: 16px; white-space: nowrap; }
.topbar__links a:hover { color: #fff; }

/* ---------- Masthead ---------------------------------------------------- */
.masthead { background: var(--card); border-bottom: 1px solid var(--line); }
.masthead .wrap { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding-top: 18px; padding-bottom: 18px; }
.logo { display: inline-flex; align-items: center; gap: 10px; font-weight: 800; font-size: 26px; letter-spacing: -.03em; color: var(--ink); }
.logo:hover { color: var(--ink); }
.logo__mark { width: 38px; height: 38px; border-radius: 10px; background: var(--brand); display: grid; place-items: center; color: #fff; }
.logo__mark svg { width: 22px; height: 22px; }
.logo b { color: var(--brand); font-weight: 800; }
.logo small { display: block; font-size: 11px; font-weight: 600; letter-spacing: .04em; color: var(--muted); margin-top: -2px; }

.search { display: flex; align-items: center; background: var(--soft); border: 1px solid var(--line); border-radius: 999px; padding: 4px 4px 4px 16px; width: min(360px, 100%); }
.search input { border: 0; background: transparent; font: inherit; font-size: 14px; flex: 1; min-width: 0; padding: 6px 0; color: var(--ink); }
.search input:focus { outline: none; }
.search:focus-within { border-color: var(--ink); background: #fff; }
.search button { border: 0; background: var(--ink); color: #fff; width: 34px; height: 34px; border-radius: 50%; display: grid; place-items: center; cursor: pointer; }
.search button svg { width: 16px; height: 16px; }

/* ---------- Navigasi (toggle mobile via checkbox) ------------------------ */
.nav { position: sticky; top: 0; z-index: 50; background: rgba(255, 255, 255, .96); backdrop-filter: saturate(1.4) blur(8px); border-bottom: 1px solid var(--line); }
.nav .wrap { display: flex; align-items: center; }
.nav__toggle, .nav__burger { display: none; }
.nav__list { display: flex; gap: 2px; overflow-x: auto; scrollbar-width: none; }
.nav__list a {
    display: flex; align-items: center; gap: 7px; padding: 14px 12px; font-size: 14px; font-weight: 600; color: var(--ink-2);
    white-space: nowrap; border-bottom: 3px solid transparent;
}
.nav__list a:hover { color: var(--ink); }
.nav__list a.is-active { color: var(--ink); border-bottom-color: var(--c, var(--brand)); }
.nav__list .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--c); }

@media (max-width: 900px) {
    .topbar__links { display: none; }
    .masthead .search { display: none; }
    .nav__burger {
        display: flex; align-items: center; gap: 8px; padding: 12px 0; font-weight: 700; font-size: 14px; cursor: pointer;
    }
    .nav__burger span { width: 18px; height: 2px; background: var(--ink); position: relative; display: block; }
    .nav__burger span::before, .nav__burger span::after { content: ""; position: absolute; left: 0; width: 18px; height: 2px; background: var(--ink); }
    .nav__burger span::before { top: -6px; } .nav__burger span::after { top: 6px; }
    .nav .wrap { flex-wrap: wrap; }
    .nav__list { display: none; flex-direction: column; width: 100%; padding-bottom: 12px; }
    .nav__list a { border-bottom: 0; border-left: 3px solid transparent; padding: 10px 12px; }
    .nav__list a.is-active { border-left-color: var(--c, var(--brand)); background: var(--soft); }
    .nav__toggle:checked ~ .nav__list { display: flex; }
    .nav__mobile-search { display: block !important; width: 100%; margin: 8px 0 4px; }
    .nav__mobile-search .search { width: 100%; }
}
.nav__mobile-search { display: none; }

/* ---------- Judul seksi ------------------------------------------------- */
.section-head { display: flex; align-items: end; justify-content: space-between; gap: 16px; margin-bottom: 24px; padding-bottom: 12px; border-bottom: 2px solid var(--ink); }
.section-head h2 { font-size: 24px; font-weight: 800; display: flex; align-items: center; gap: 10px; }
.section-head h2 .bar { width: 6px; height: 22px; border-radius: 3px; background: var(--c, var(--brand)); }
.section-head a { font-size: 14px; font-weight: 600; color: var(--muted); white-space: nowrap; }
.section-head a:hover { color: var(--ink); }
.section-intro { max-width: 680px; color: var(--ink-2); margin-top: -10px; margin-bottom: 28px; }

/* ---------- Grid & layout ----------------------------------------------- */
.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.with-sidebar { display: grid; grid-template-columns: minmax(0, 1fr) 320px; gap: 40px; align-items: start; }
.sidebar { display: grid; gap: 28px; position: sticky; top: 72px; }
@media (max-width: 1024px) {
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
    .with-sidebar { grid-template-columns: 1fr; }
    .sidebar { position: static; }
}
@media (max-width: 720px) {
    .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
    .section { padding: 40px 0; }
}

/* ---------- Kartu berita ------------------------------------------------ */
.card { display: flex; flex-direction: column; gap: 12px; }
.card__media { position: relative; overflow: hidden; border-radius: var(--radius); background: var(--soft); aspect-ratio: 16 / 10; }
.card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.card:hover .card__media img { transform: scale(1.04); }
.card__media .chip { position: absolute; top: 12px; left: 12px; }
.card__meta { display: flex; flex-wrap: wrap; align-items: center; gap: 6px 10px; font-size: 12.5px; color: var(--muted); }
.card__meta .sep::before { content: "•"; }
.card__title { font-size: 18px; font-weight: 700; }
.card__title a:hover { color: var(--brand-dark); }
.card__excerpt { color: var(--ink-2); font-size: 14.5px; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }

.card--row { flex-direction: row; gap: 16px; align-items: flex-start; }
.card--row .card__media { flex: 0 0 132px; aspect-ratio: 4 / 3; border-radius: var(--radius-sm); }
.card--row .card__title { font-size: 15.5px; }
.card--row .card__body { display: grid; gap: 6px; min-width: 0; }

.list-divided > * + * { border-top: 1px solid var(--line); padding-top: 16px; margin-top: 16px; }

/* ---------- Headline beranda ------------------------------------------- */
.headline { display: grid; grid-template-columns: minmax(0, 1.55fr) minmax(0, 1fr); gap: 28px; }
.lead { position: relative; border-radius: var(--radius); overflow: hidden; min-height: 460px; display: flex; align-items: flex-end; color: #fff; isolation: isolate; }
.lead img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; transition: transform .6s ease; }
.lead:hover img { transform: scale(1.03); }
.lead::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(0,0,0,0) 30%, rgba(8,12,24,.88) 100%); }
.lead__body { padding: 32px; display: grid; gap: 12px; }
.lead__title { font-size: clamp(24px, 3.2vw, 36px); font-weight: 800; }
.lead__title a:hover { color: #ffd2bd; }
.lead__excerpt { color: rgba(255, 255, 255, .85); max-width: 600px; }
.lead .card__meta { color: rgba(255, 255, 255, .75); }
@media (max-width: 900px) {
    .headline { grid-template-columns: 1fr; }
    .lead { min-height: 380px; }
    .lead__body { padding: 22px; }
}

/* ---------- Terpopuler (bernomor) -------------------------------------- */
.popular { counter-reset: pop; display: grid; gap: 14px; }
.popular li { counter-increment: pop; display: grid; grid-template-columns: 36px 1fr; gap: 12px; align-items: start; }
.popular li::before { content: counter(pop, decimal-leading-zero); font-size: 22px; font-weight: 800; color: var(--line); line-height: 1.1; }
.popular li:first-child::before { color: var(--brand); }
.popular a { font-weight: 700; font-size: 15px; line-height: 1.35; }
.popular small { display: block; color: var(--muted); font-size: 12px; margin-top: 4px; }

.box { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; }
.box__title { font-size: 13px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 16px; display: flex; align-items: center; gap: 8px; }
.box__title::before { content: ""; width: 8px; height: 8px; background: var(--brand); border-radius: 2px; }

/* ---------- Pilar (lima bidang) ---------------------------------------- */
.pillars { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.pillar {
    position: relative; display: flex; flex-direction: column; gap: 12px; padding: 22px 20px 20px;
    background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: .2s ease;
}
.pillar::before { content: ""; position: absolute; inset: 0 0 auto; height: 4px; background: var(--c); }
.pillar:hover { transform: translateY(-3px); box-shadow: var(--shadow); color: inherit; border-color: transparent; }
.pillar__icon { width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center; background: color-mix(in srgb, var(--c) 12%, #fff); color: var(--c); }
.pillar__icon svg { width: 22px; height: 22px; }
.pillar h3 { font-size: 16px; font-weight: 800; }
.pillar p { font-size: 13.5px; color: var(--ink-2); flex: 1; }
.pillar__tags { display: flex; flex-wrap: wrap; gap: 6px; }
.pillar__tags .chip { font-size: 11px; padding: 3px 8px; }
.chip--platform { background: color-mix(in srgb, var(--c) 12%, #fff); color: var(--c); border-color: transparent; }
@media (max-width: 1100px) { .pillars { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 720px) { .pillars { grid-template-columns: 1fr 1fr; } }
@media (max-width: 460px) { .pillars { grid-template-columns: 1fr; } }

/* ---------- Tile platform (Edukasi) ------------------------------------ */
.tile { position: relative; display: flex; flex-direction: column; justify-content: flex-end; min-height: 300px; padding: 24px; border-radius: var(--radius); overflow: hidden; color: #fff; isolation: isolate; }
.tile img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; transition: transform .5s ease; }
.tile::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(19,35,63,.1), rgba(19,35,63,.92)); }
.tile:hover { color: #fff; }
.tile:hover img { transform: scale(1.05); }
.tile h3 { font-size: 22px; font-weight: 800; margin: 6px 0 8px; }
.tile p { font-size: 14px; color: rgba(255,255,255,.85); }
.tile__stat { display: flex; gap: 18px; margin-top: 16px; font-size: 13px; color: rgba(255,255,255,.8); }
.tile__stat b { display: block; font-size: 20px; color: #fff; }
.tile .label { color: #ffc3a6; }

/* ---------- Band Kopi Healing ------------------------------------------ */
.band { background: #2b1d16; color: #f3e9e1; position: relative; overflow: hidden; }
.band::before { content: ""; position: absolute; width: 520px; height: 520px; right: -160px; top: -200px; border-radius: 50%; background: radial-gradient(circle, rgba(224,97,43,.35), transparent 70%); }
.band .wrap { position: relative; display: grid; grid-template-columns: 1.05fr 1fr; gap: 48px; align-items: center; }
.band h2 { font-size: clamp(28px, 3.6vw, 42px); font-weight: 800; color: #fff; }
.band h2 em { font-style: normal; color: #ffb48f; }
.band p.lede { font-size: 17px; color: #e1d2c6; margin: 16px 0 24px; max-width: 540px; }
.band .eyebrow { color: #ffb48f; }
.band__media { position: relative; }
.band__media img { border-radius: 20px; aspect-ratio: 4 / 5; object-fit: cover; width: 100%; }
.band__media img + img { position: absolute; width: 42%; right: -20px; bottom: -28px; aspect-ratio: 1; border: 6px solid #2b1d16; }
.steps { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin-bottom: 28px; counter-reset: step; }
.steps li { counter-increment: step; display: grid; grid-template-columns: 34px 1fr; gap: 10px; }
.steps li::before { content: counter(step); width: 30px; height: 30px; border-radius: 50%; display: grid; place-items: center; font-weight: 800; font-size: 14px; background: rgba(255,180,143,.15); color: #ffb48f; }
.steps b { display: block; color: #fff; font-size: 15px; }
.steps span { font-size: 13.5px; color: #cdbcaf; }
@media (max-width: 900px) {
    .band .wrap { grid-template-columns: 1fr; }
    .band__media { max-width: 420px; margin: 0 auto 20px; }
    .band__media img { aspect-ratio: 4 / 3; }
    .band__media img + img { right: -8px; bottom: -16px; }
}
@media (max-width: 520px) { .steps { grid-template-columns: 1fr; } }

/* ---------- Blok per kategori (beranda) -------------------------------- */
.cat-block { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr); gap: 28px; }
@media (max-width: 800px) { .cat-block { grid-template-columns: 1fr; } }

/* ---------- Iklan -------------------------------------------------------- */
.ad { position: relative; display: block; border-radius: var(--radius); overflow: hidden; color: #fff; isolation: isolate; min-height: 250px; padding: 22px; }
.ad img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; }
.ad::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(160deg, rgba(224,97,43,.92), rgba(19,35,63,.85)); }
.ad:hover { color: #fff; }
.ad__flag { position: absolute; top: 10px; right: 12px; font-size: 10px; letter-spacing: .1em; text-transform: uppercase; opacity: .8; }
.ad__eyebrow { font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; opacity: .9; }
.ad__title { font-size: 20px; font-weight: 800; margin: 8px 0 18px; line-height: 1.3; }
.ad--wide { display: flex; align-items: center; justify-content: space-between; gap: 20px; min-height: 0; padding: 28px 32px; }
.ad--wide .ad__title { margin: 4px 0 0; font-size: 22px; }
@media (max-width: 720px) { .ad--wide { flex-direction: column; align-items: flex-start; } }

/* ---------- Konten bermitra -------------------------------------------- */
.sponsored { background: #fffaf0; border-top: 1px solid #f1e3c3; border-bottom: 1px solid #f1e3c3; }
.sponsored .section-head { border-bottom-color: #d9b56c; }

/* ---------- Hero kategori ---------------------------------------------- */
.hero { position: relative; color: #fff; isolation: isolate; overflow: hidden; }
.hero > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; }
.hero::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(90deg, color-mix(in srgb, var(--c) 30%, rgba(10,14,25,.92)) 0%, rgba(10,14,25,.55) 70%, rgba(10,14,25,.3)); }
.hero .wrap { padding-top: 64px; padding-bottom: 64px; }
.hero h1 { font-size: clamp(32px, 5vw, 52px); font-weight: 800; max-width: 760px; margin: 12px 0; }
.hero p { font-size: 18px; max-width: 640px; color: rgba(255,255,255,.88); }
.hero .chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 22px; }
.hero .chip { background: rgba(255,255,255,.14); color: #fff; border-color: rgba(255,255,255,.25); }
.crumbs { display: flex; flex-wrap: wrap; gap: 8px; font-size: 13px; color: rgba(255,255,255,.75); }
.crumbs a:hover { color: #fff; }
.crumbs span[aria-hidden] { opacity: .6; }

.subnav { background: var(--card); border-bottom: 1px solid var(--line); position: sticky; top: 49px; z-index: 40; }
.subnav ul { display: flex; gap: 4px; overflow-x: auto; scrollbar-width: none; }
.subnav a { display: block; padding: 12px 14px; font-size: 14px; font-weight: 600; color: var(--muted); white-space: nowrap; }
.subnav a:hover { color: var(--c); }
@media (max-width: 900px) { .subnav { top: 0; position: relative; } }

.notice { display: flex; gap: 16px; align-items: flex-start; padding: 20px 22px; border-radius: var(--radius); background: color-mix(in srgb, var(--c) 8%, #fff); border: 1px solid color-mix(in srgb, var(--c) 25%, #fff); }
.notice svg { flex: none; width: 24px; height: 24px; color: var(--c); margin-top: 2px; }
.notice b { display: block; margin-bottom: 2px; }
.notice p { color: var(--ink-2); font-size: 15px; }

/* ---------- Platform Edukasi ------------------------------------------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.split img { border-radius: var(--radius); aspect-ratio: 4 / 3; object-fit: cover; width: 100%; }
@media (max-width: 860px) { .split { grid-template-columns: 1fr; gap: 28px; } }
.checks { display: grid; gap: 10px; margin: 20px 0 24px; }
.checks li { display: grid; grid-template-columns: 22px 1fr; gap: 10px; color: var(--ink-2); }
.checks li::before { content: ""; width: 20px; height: 20px; border-radius: 50%; margin-top: 3px; background: var(--c, var(--brand)) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12l5 5 9-10'/%3E%3C/svg%3E") center / 12px no-repeat; }
.flow { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 8px; }
.flow li { font-size: 13px; font-weight: 600; padding: 6px 12px; border-radius: 999px; background: var(--card); border: 1px solid var(--line); }
.flow li + li::before { content: "→ "; color: var(--muted); }

.h3 { font-size: 28px; font-weight: 800; margin-bottom: 10px; }

.scheme { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column; }
.scheme img { aspect-ratio: 16 / 9; object-fit: cover; width: 100%; min-height: 0; }
.scheme__body { padding: 18px; display: grid; gap: 10px; flex: 1; }
.scheme h4 { font-size: 17px; font-weight: 800; }
.scheme dl { display: grid; grid-template-columns: auto 1fr; gap: 4px 12px; margin: 0; font-size: 13.5px; }
.scheme dt { color: var(--muted); }
.scheme dd { margin: 0; font-weight: 600; }
.scheme__foot { display: flex; align-items: center; justify-content: space-between; padding: 14px 18px; border-top: 1px solid var(--line); }
.price { font-weight: 800; font-size: 18px; }
.price s { font-weight: 500; font-size: 13px; color: var(--muted); margin-left: 6px; }

.comp { display: grid; grid-template-columns: 180px 1fr; background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.comp img { width: 100%; height: 100%; object-fit: cover; min-height: 160px; }
.comp__body { padding: 18px 20px; display: grid; gap: 8px; align-content: start; }
.comp h4 { font-size: 17px; font-weight: 800; }
.comp ul { display: grid; gap: 4px; font-size: 13.5px; color: var(--ink-2); }
.comp ul b { color: var(--ink); }
.status { font-size: 11px; font-weight: 700; padding: 3px 9px; border-radius: 999px; justify-self: start; }
.status--open { background: #dcf5e6; color: #146c3a; }
.status--soon { background: #e3ebff; color: #2446a8; }
.status--done { background: #eee; color: #666; }
.comp.is-done { opacity: .7; }
@media (max-width: 520px) { .comp { grid-template-columns: 1fr; } .comp img { aspect-ratio: 16/9; min-height: 0; } }

.course { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column; transition: .2s ease; }
.course:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.course__media { position: relative; aspect-ratio: 16 / 9; overflow: hidden; }
.course__media img { width: 100%; height: 100%; object-fit: cover; }
.course__badge { position: absolute; top: 10px; left: 10px; background: #f6c343; color: #3d2c00; font-size: 11px; font-weight: 800; padding: 3px 8px; border-radius: 4px; }
.course__body { padding: 16px 18px; display: grid; gap: 6px; flex: 1; align-content: start; }
.course h4 { font-size: 16px; font-weight: 800; line-height: 1.3; }
.course__by { font-size: 13px; color: var(--muted); }
.rating { display: flex; align-items: center; gap: 6px; font-size: 13px; }
.rating b { color: #b4690e; }
.stars { --pct: 90%; width: 72px; height: 13px; background: linear-gradient(90deg, #e59819 var(--pct), #e5e1d8 var(--pct)); -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 22'%3E%3Cg%3E%3Cpath id='s' d='M11 1l3 6.6 7 .8-5.3 4.8 1.5 7L11 16.7 4.8 20.2l1.5-7L1 8.4l7-.8z'/%3E%3Cuse href='%23s' x='24'/%3E%3Cuse href='%23s' x='48'/%3E%3Cuse href='%23s' x='72'/%3E%3Cuse href='%23s' x='96'/%3E%3C/g%3E%3C/svg%3E") left / contain no-repeat; mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 22'%3E%3Cg%3E%3Cpath id='s' d='M11 1l3 6.6 7 .8-5.3 4.8 1.5 7L11 16.7 4.8 20.2l1.5-7L1 8.4l7-.8z'/%3E%3Cuse href='%23s' x='24'/%3E%3Cuse href='%23s' x='48'/%3E%3Cuse href='%23s' x='72'/%3E%3Cuse href='%23s' x='96'/%3E%3C/g%3E%3C/svg%3E") left / contain no-repeat; }
.course__facts { font-size: 12.5px; color: var(--muted); }
.course__foot { padding: 14px 18px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; align-items: center; }

/* ---------- Kopi Healing (halaman kategori) ---------------------------- */
.kh-hero { background: #2b1d16; color: #f3e9e1; }
.psy { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 20px; display: grid; grid-template-columns: 72px 1fr; gap: 16px; align-items: start; }
.psy img { width: 72px; height: 72px; border-radius: 50%; object-fit: cover; }
.psy h4 { font-size: 15.5px; font-weight: 800; line-height: 1.3; }
.psy .muted { font-size: 13px; margin: 2px 0 8px; }
.psy .tags { display: flex; flex-wrap: wrap; gap: 6px; }
.psy .chip { font-size: 11.5px; padding: 2px 8px; }
.psy .btn { grid-column: 1 / -1; justify-content: center; }

.cafe { position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 4 / 3; color: #fff; display: flex; align-items: flex-end; padding: 16px; isolation: isolate; }
.cafe img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; }
.cafe::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,.8)); }
.cafe b { display: block; font-size: 17px; }
.cafe span { font-size: 13px; opacity: .85; }

.pkg { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; display: flex; flex-direction: column; gap: 14px; position: relative; }
.pkg.is-featured { border: 2px solid var(--c); box-shadow: var(--shadow); }
.pkg.is-featured::before { content: "Paling diminati"; position: absolute; top: -12px; left: 24px; background: var(--c); color: #fff; font-size: 11px; font-weight: 700; padding: 3px 10px; border-radius: 999px; }
.pkg h4 { font-size: 18px; font-weight: 800; }
.pkg .price { font-size: 28px; }
.pkg .price small { font-size: 14px; font-weight: 500; color: var(--muted); }
.pkg .checks { margin: 0; flex: 1; font-size: 14.5px; }
.pkg .btn { justify-content: center; }

.quote { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; display: grid; gap: 14px; margin: 0; }
.quote p { font-family: var(--serif); font-size: 18px; line-height: 1.5; }
.quote p::before { content: "“"; color: var(--c, var(--brand)); font-size: 40px; line-height: 0; vertical-align: -14px; margin-right: 4px; }
.quote footer { font-size: 13px; color: var(--muted); }
.quote footer b { color: var(--ink); }

.faq { display: grid; gap: 10px; }
.faq details { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-sm); }
.faq summary { cursor: pointer; padding: 16px 20px; font-weight: 700; list-style: none; display: flex; justify-content: space-between; gap: 12px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 20px; line-height: 1; color: var(--c, var(--brand)); transition: transform .2s; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { padding: 0 20px 18px; color: var(--ink-2); }

/* ---------- Daftar berita (index) -------------------------------------- */
.page-head { background: var(--card); border-bottom: 1px solid var(--line); padding: 40px 0 28px; }
.page-head h1 { font-size: clamp(28px, 4vw, 40px); font-weight: 800; }
.page-head p { color: var(--ink-2); margin-top: 6px; }
.page-head .crumbs { color: var(--muted); margin-bottom: 10px; }
.page-head .crumbs a:hover { color: var(--ink); }

.filters { display: grid; gap: 14px; margin-top: 24px; }
.filters__row { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
.filters__row > span { font-size: 13px; font-weight: 700; color: var(--muted); margin-right: 4px; }
.filters .chip { padding: 6px 12px; font-size: 13px; background: var(--card); }
.filters .chip:hover { border-color: var(--ink); color: var(--ink); }
.filters .chip.is-active { background: var(--ink); color: #fff; border-color: var(--ink); }
.filters .search { width: min(480px, 100%); background: var(--card); }

.empty { text-align: center; padding: 60px 20px; border: 1px dashed var(--line); border-radius: var(--radius); color: var(--muted); }
.empty b { display: block; font-size: 18px; color: var(--ink); margin-bottom: 6px; }

.pager { display: flex; flex-wrap: wrap; gap: 6px; justify-content: center; margin-top: 40px; }
.pager a, .pager span { min-width: 40px; height: 40px; padding: 0 12px; display: grid; place-items: center; border-radius: 10px; border: 1px solid var(--line); background: var(--card); font-weight: 600; font-size: 14px; }
.pager a:hover { border-color: var(--ink); color: var(--ink); }
.pager .is-current { background: var(--ink); color: #fff; border-color: var(--ink); }
.pager .is-disabled { opacity: .4; }

/* ---------- Artikel ----------------------------------------------------- */
.article-head { padding: 40px 0 28px; }
.article-head .crumbs { color: var(--muted); margin-bottom: 16px; }
.article-head .crumbs a:hover { color: var(--ink); }
.article-head h1 { font-size: clamp(28px, 4.2vw, 44px); font-weight: 800; letter-spacing: -.02em; margin: 12px 0 16px; }
.article-head .dek { font-family: var(--serif); font-size: 21px; line-height: 1.5; color: var(--ink-2); }
.byline { display: flex; align-items: center; gap: 12px; margin-top: 22px; padding-top: 18px; border-top: 1px solid var(--line); flex-wrap: wrap; }
.avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--navy); color: #fff; display: grid; place-items: center; font-weight: 700; font-size: 15px; flex: none; }
.byline__who b { display: block; font-size: 15px; }
.byline__who span { font-size: 13px; color: var(--muted); }
.byline__meta { margin-left: auto; font-size: 13px; color: var(--muted); text-align: right; }
@media (max-width: 600px) { .byline__meta { margin-left: 0; text-align: left; width: 100%; } }

.figure { margin: 0 0 32px; }
.figure img { width: 100%; border-radius: var(--radius); aspect-ratio: 16 / 9; object-fit: cover; }
.figure figcaption { font-size: 13px; color: var(--muted); margin-top: 10px; }

.sponsor-note { display: flex; gap: 10px; align-items: flex-start; background: #fff8e6; border: 1px solid #f1dc9e; border-radius: var(--radius-sm); padding: 14px 16px; font-size: 14px; color: #6b4a00; margin-bottom: 28px; }

.prose { font-family: var(--serif); font-size: 19px; line-height: 1.75; color: #22252c; }
.prose p { margin: 0 0 1.25em; }
.prose > p:first-child::first-letter { float: left; font-size: 3.4em; line-height: .9; font-weight: 700; margin: .08em .1em 0 0; color: var(--c, var(--brand)); font-family: var(--sans); }
.prose h2 { font-family: var(--sans); font-size: 24px; font-weight: 800; margin: 1.6em 0 .6em; }
.prose blockquote { margin: 1.5em 0; padding: 4px 0 4px 22px; border-left: 4px solid var(--c, var(--brand)); font-size: 22px; font-style: italic; color: var(--ink); }

.tags { display: flex; flex-wrap: wrap; gap: 8px; }
.share { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.share a { width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center; border: 1px solid var(--line); background: var(--card); color: var(--ink-2); }
.share a:hover { background: var(--ink); color: #fff; border-color: var(--ink); }
.share svg { width: 16px; height: 16px; }
.article-foot { display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; padding: 24px 0; margin-top: 12px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }

/* ---------- Tentang ----------------------------------------------------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.stat { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; }
.stat b { display: block; font-size: 32px; font-weight: 800; color: var(--brand); letter-spacing: -.02em; }
.stat span { font-size: 14px; color: var(--ink-2); }
@media (max-width: 720px) { .stats { grid-template-columns: 1fr 1fr; } }
.team { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.team li { display: flex; gap: 12px; align-items: center; background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 16px; }
.team b { display: block; font-size: 15px; }
.team span { font-size: 13px; color: var(--muted); }
@media (max-width: 860px) { .team { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .team { grid-template-columns: 1fr; } }
.contact { display: grid; gap: 14px; }
.contact li { display: grid; grid-template-columns: 110px 1fr; gap: 12px; font-size: 15px; }
.contact li span { color: var(--muted); }

/* ---------- Footer ------------------------------------------------------ */
.footer { background: var(--navy); color: #aeb8cc; margin-top: 64px; font-size: 14px; }
.footer .wrap { padding-top: 56px; padding-bottom: 28px; }
.footer__grid { display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 40px; }
.footer .logo { color: #fff; }
.footer .logo small { color: #8793aa; }
.footer p { margin-top: 14px; max-width: 340px; }
.footer h4 { color: #fff; font-size: 13px; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 14px; }
.footer li + li { margin-top: 8px; }
.footer a:hover { color: #fff; }
.footer__bottom { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; border-top: 1px solid rgba(255,255,255,.1); margin-top: 40px; padding-top: 20px; font-size: 13px; }
@media (max-width: 860px) { .footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer__grid { grid-template-columns: 1fr; } }

/* ---------- Util -------------------------------------------------------- */
.mt-1 { margin-top: 8px; } .mt-2 { margin-top: 16px; } .mt-3 { margin-top: 24px; } .mt-4 { margin-top: 40px; }
.stack { display: grid; gap: 16px; }
.center { text-align: center; }
