@import url('https://fonts.googleapis.com/css2?family=Archivo:wght@400;600;800&display=swap');

:root {
  --color-accent: #980000;
  --color-accent-100: #f8ecec;
  --color-accent-200: #eccfcf;
  --color-accent-300: #dda8a8;
  --color-accent-600: #800000;
  --color-accent-700: #680000;
  --color-accent-800: #4d0000;
  --color-bg: #ffffff;
  --color-surface: #f2efef;
  --color-ink: #201e1d;
  --color-divider: rgba(32, 30, 29, .18);
  --color-divider-strong: rgba(32, 30, 29, .55);
  --font-heading: "Archivo", system-ui, sans-serif;
  --font-body: "Archivo", system-ui, sans-serif;
  --wrap: 40px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--color-bg);
  color: var(--color-ink);
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.55;
  min-width: 320px;
}
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0;
}
h6 { font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--color-accent); }
p { margin: 0; }
a { color: var(--color-accent); text-decoration: none; }
a:hover { color: var(--color-accent-700); text-decoration: underline; }
img { display: block; max-width: 100%; }
button { font-family: inherit; }
ul { margin: 0; padding: 0; list-style: none; }
.visually-hidden {
  position: absolute; width: 1px; height: 1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap;
}

/* ── layout helpers ───────────────────────────────────────────────── */
.wrap { padding-left: var(--wrap); padding-right: var(--wrap); }
.divider-b { border-bottom: 2px solid var(--color-divider); }
.divider-r { border-right: 2px solid var(--color-divider); }
.page { display: none; }
.page.is-active { display: block; }

/* ── buttons ───────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  cursor: pointer; text-decoration: none;
  font-family: var(--font-heading); font-weight: 800;
  font-size: 14px; line-height: 1.2; color: var(--color-ink);
  background: transparent; border: 1px solid transparent;
  padding: 9px 16px;
}
.btn:hover { text-decoration: none; }
.btn-primary { background: var(--color-accent); color: #fff; }
.btn-primary:hover { background: var(--color-accent-600); color: #fff; }
.btn-primary:active { background: var(--color-accent-700); }
.btn-secondary { border-color: var(--color-divider); }
.btn-secondary:hover { background: rgba(32, 30, 29, .07); color: var(--color-ink); }
.btn-ghost { color: var(--color-accent); padding-left: 0; padding-right: 0; }
.btn-ghost:hover { text-decoration: underline; }
.btn-block { width: 100%; justify-content: center; }
.btn-lg { padding: 13px 20px; font-size: 15px; }

/* ── tags ──────────────────────────────────────────────────────────── */
.tag {
  display: inline-flex; align-items: center; font-size: 11px;
  letter-spacing: .02em; padding: 3px 10px;
}
.tag-accent { background: var(--color-accent-100); color: var(--color-accent-800); }
.tag-neutral { background: var(--color-surface); color: rgba(32, 30, 29, .75); }
.tag-outline { border: 1px solid var(--color-accent); color: var(--color-accent); }

/* ── image placeholder ────────────────────────────────────────────── */
.img-slot {
  background: var(--color-surface);
  border: 1px dashed rgba(32, 30, 29, .28);
  display: flex; align-items: center; justify-content: center;
  text-align: center; color: rgba(32, 30, 29, .42);
  font-size: 12px; letter-spacing: .02em; padding: 12px;
  width: 100%; height: 100%; min-height: 60px;
}

/* ── header ────────────────────────────────────────────────────────── */
.topbar {
  display: flex; align-items: center; gap: 10px;
  padding: 6px var(--wrap);
  border-bottom: 1px solid var(--color-divider);
  font-size: 11px; letter-spacing: .06em; text-transform: uppercase;
  color: rgba(32, 30, 29, .55);
}
.topbar-spacer { margin-left: auto; }
.topbar-sep { width: 1px; height: 12px; background: rgba(32, 30, 29, .25); }

.site-header {
  position: sticky; top: 0; z-index: 20; background: #fff;
  border-bottom: 2px solid var(--color-divider);
}
.header-inner {
  display: flex; align-items: center; gap: 24px; padding: 14px var(--wrap);
}
.brand-link {
  display: flex; align-items: center; gap: 14px; margin-right: auto;
  color: inherit;
}
.brand-link:hover { text-decoration: none; }
.brand-badge {
  width: 46px; height: 46px; border: 2px solid var(--color-accent); padding: 3px;
  display: grid; place-items: center; font-size: 8px; line-height: 1.15;
  text-align: center; letter-spacing: .04em; color: var(--color-accent);
  font-weight: 800; flex: none; box-sizing: border-box;
}
.brand-badge img { width: 100%; height: 100%; object-fit: contain; display: block; }
.brand-name { font-size: 19px; font-weight: 800; letter-spacing: -.02em; line-height: 1.05; }
.brand-role {
  font-size: 11px; letter-spacing: .1em; text-transform: uppercase;
  color: var(--color-accent); font-weight: 600; margin-top: 2px;
}

.nav-main { display: flex; align-items: stretch; gap: 2px; }
.nav-link {
  background: transparent; border: 0; border-bottom: 3px solid transparent;
  padding: 8px 11px; font-family: inherit; font-size: 13.5px; font-weight: 600;
  cursor: pointer; color: inherit; display: inline-block;
}
.nav-link:hover { color: var(--color-accent); text-decoration: none; }
.nav-link.is-active { border-bottom-color: var(--color-accent); color: var(--color-accent); }

.menu-toggle {
  display: none; background: none; border: 1px solid var(--color-divider);
  padding: 8px 10px; cursor: pointer; margin-left: auto;
}
.menu-toggle span, .menu-toggle span::before, .menu-toggle span::after {
  display: block; width: 18px; height: 2px; background: var(--color-ink); position: relative;
}
.menu-toggle span::before, .menu-toggle span::after { content: ""; position: absolute; }
.menu-toggle span::before { top: -6px; }
.menu-toggle span::after { top: 6px; }

/* ── hero ──────────────────────────────────────────────────────────── */
.hero {
  display: grid; grid-template-columns: 1.15fr .85fr;
}
.hero-copy { padding: 64px var(--wrap) 56px; }
.hero-tags { display: flex; gap: 8px; margin-bottom: 24px; }
.hero-copy h1 { font-size: 62px; line-height: .98; margin: 0 0 20px; max-width: 13em; }
.hero-copy > p { font-size: 18px; line-height: 1.5; max-width: 34em; color: rgba(32, 30, 29, .78); }
.hero-actions { display: flex; gap: 12px; margin-top: 32px; flex-wrap: wrap; }
.hero-meta {
  display: flex; align-items: center; gap: 14px; margin-top: 40px; padding-top: 24px;
  border-top: 1px solid var(--color-divider); font-size: 12.5px; color: rgba(32, 30, 29, .6);
  flex-wrap: wrap;
}
.hero-meta strong { font-weight: 800; color: var(--color-accent); }
.hero-visual {
  position: relative; min-height: 560px; background: var(--color-surface);
}
.hero-visual .img-slot { position: absolute; inset: 0; border: 0; }
.hero-visual > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-badge {
  position: absolute; left: 0; bottom: 0; background: var(--color-accent); color: #fff;
  padding: 14px 20px; max-width: 88%;
}
.hero-badge .kicker { font-size: 11px; letter-spacing: .12em; text-transform: uppercase; opacity: .85; }
.hero-badge .name { font-size: 17px; font-weight: 800; letter-spacing: -.01em; }

/* ── stat band ─────────────────────────────────────────────────────── */
.stat-band { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat { padding: 30px 28px; border-right: 1px solid var(--color-divider); }
.stat:last-child { border-right: 0; }
.stat-num { font-size: 40px; font-weight: 800; letter-spacing: -.03em; line-height: 1; color: var(--color-accent); }
.stat-label { font-size: 13px; font-weight: 600; margin-top: 8px; }
.stat-note { font-size: 11.5px; color: rgba(32, 30, 29, .55); margin-top: 2px; }

/* ── profile summary (beranda) ───────────────────────────────────── */
.lead { font-size: 19px; line-height: 1.55; max-width: 44em; margin: 0 0 16px; }
.body { font-size: 15px; line-height: 1.6; max-width: 48em; color: rgba(32, 30, 29, .7); margin: 0 0 20px; }

/* ── section shell & kerja nyata ──────────────────────────────────── */
.section { padding: 56px var(--wrap); }
.section-head {
  display: flex; align-items: baseline; gap: 16px; margin-bottom: 28px; flex-wrap: wrap;
  justify-content: space-between;
}
.section-head h2 { font-size: 34px; }
.section-note { font-size: 12.5px; color: rgba(32, 30, 29, .5); }
.kerja-grid {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 1px; background: var(--color-divider);
}
.kerja-card { background: #fff; display: flex; flex-direction: column; }
.kerja-thumb { height: 150px; background: var(--color-surface); }
.kerja-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.kerja-body { padding: 18px 20px 22px; display: flex; flex-direction: column; flex: 1; }
.kerja-kicker { font-size: 10.5px; letter-spacing: .09em; text-transform: uppercase; color: var(--color-accent); font-weight: 600; }
.kerja-title { font-size: 16px; font-weight: 800; line-height: 1.2; margin: 6px 0 8px; }
.kerja-excerpt {
  font-size: 13px; line-height: 1.5; color: rgba(32, 30, 29, .7); margin: 0;
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}
.kerja-meta { font-size: 11px; color: rgba(32, 30, 29, .5); margin-top: 10px; }

/* ── split: news + testimony ──────────────────────────────────────── */
.split-2 { display: grid; grid-template-columns: 1fr 1fr; }
.split-2 > div { padding: 48px var(--wrap); }
.split-2 > div:first-child { border-right: 2px solid var(--color-divider); }
.split-head { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 12px; gap: 12px; }
.split-head h3 { margin: 0; }

.news-item {
  display: grid; grid-template-columns: 130px 1fr; gap: 16px; padding: 16px 0;
  border-top: 1px solid var(--color-divider);
}
.news-thumb { height: 86px; background: var(--color-surface); }
.news-kicker { font-size: 10.5px; letter-spacing: .09em; text-transform: uppercase; color: var(--color-accent); }
.news-title { font-size: 16px; font-weight: 800; line-height: 1.2; margin-top: 5px; }
.news-meta { font-size: 12px; color: rgba(32, 30, 29, .55); margin-top: 6px; }

blockquote.testimony {
  margin: 0 0 20px; padding: 0 0 20px; border-bottom: 1px solid var(--color-divider);
}
.testimony p { font-size: 16px; line-height: 1.5; margin: 0 0 10px; }
.testimony footer { font-size: 12px; color: rgba(32, 30, 29, .55); }
.testimony-note { font-size: 11.5px; color: rgba(32, 30, 29, .45); margin-top: 4px; display: block; }

/* ── CTA banner ────────────────────────────────────────────────────── */
.cta-banner { background: var(--color-accent); color: #fff; padding: 64px var(--wrap); }
.cta-grid { display: grid; grid-template-columns: 1.3fr .7fr; gap: 48px; align-items: end; }
.cta-grid h2 { font-size: 46px; line-height: 1.02; color: #fff; margin: 0 0 14px; }
.cta-grid > div:first-child p { font-size: 17px; line-height: 1.5; max-width: 38em; opacity: .92; }
.cta-actions { display: flex; flex-direction: column; gap: 10px; }
.cta-actions .btn { background: #fff; color: var(--color-accent); padding: 14px 18px; font-size: 15px; justify-content: flex-start; }
.cta-actions .btn:hover { background: #f2efef; }
.cta-wa { font-size: 13px; opacity: .9; }

/* ── page hero (profil / kinerja / berita / galeri / kontak) ─────── */
.page-hero { padding: 56px var(--wrap) 40px; }
.page-hero h1 { font-size: 52px; line-height: 1; margin: 0 0 16px; max-width: 24em; }
.page-hero > p { font-size: 17px; line-height: 1.55; max-width: 44em; color: rgba(32, 30, 29, .75); }
.page-hero.with-filters {
  display: flex; align-items: flex-end; justify-content: space-between; gap: 40px; flex-wrap: wrap;
}
.page-hero.with-filters h1 { margin: 0; }
.filter-row { display: flex; gap: 8px; flex-wrap: wrap; justify-content: flex-end; }
.filter-btn {
  background: transparent; color: inherit; border: 1px solid var(--color-divider);
  font-family: inherit; font-size: 13px; font-weight: 800; padding: 9px 16px; cursor: pointer;
}
.filter-btn.is-active { background: var(--color-accent); color: #fff; border-color: var(--color-accent); }

/* ── profil page ───────────────────────────────────────────────────── */
.profil-hero { display: grid; grid-template-columns: 1fr 420px; }
.profil-hero-copy { padding: 56px var(--wrap); }
.profil-hero-copy h1 { font-size: 52px; line-height: 1; margin: 0 0 20px; }
.profil-hero-copy > p { font-size: 18px; line-height: 1.55; max-width: 36em; color: rgba(32, 30, 29, .78); }
.hr { height: 2px; border: 0; margin: 16px 0; background: var(--color-divider); }
.bio-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px 40px; max-width: 660px; }
.bio-k { font-size: 10.5px; letter-spacing: .1em; text-transform: uppercase; color: rgba(32, 30, 29, .5); }
.bio-v { font-size: 16px; font-weight: 600; margin-top: 3px; }
.profil-hero-copy .note { font-size: 11.5px; color: rgba(32, 30, 29, .45); margin-top: 28px; display: block; }
.profil-hero-visual { border-left: 2px solid var(--color-divider); background: var(--color-surface); min-height: 540px; overflow: hidden; }
.profil-hero-visual img { width: 100%; height: 100%; object-fit: cover; display: block; }

.timeline-grid { display: grid; grid-template-columns: 1fr 1fr; }
.timeline-col { padding: 48px var(--wrap); }
.timeline-col:first-child { border-right: 2px solid var(--color-divider); }
.timeline-col h3 { margin: 0 0 24px; }
.timeline-item {
  display: grid; grid-template-columns: 96px 1fr; gap: 20px; padding: 16px 0;
  border-top: 1px solid var(--color-divider);
}
.timeline-year { font-size: 13px; font-weight: 800; color: var(--color-accent); }
.timeline-title { font-size: 16px; font-weight: 600; }
.timeline-sub { font-size: 13px; color: rgba(32, 30, 29, .6); margin-top: 2px; }

.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--color-divider); }
.value-card { background: #fff; padding: 26px 24px; }
.value-title { font-size: 20px; font-weight: 800; letter-spacing: -.01em; margin-bottom: 8px; }
.value-body { font-size: 14px; line-height: 1.55; color: rgba(32, 30, 29, .72); }

/* ── kisah & perjalanan (profil) ───────────────────────────────────── */
.kisah-group { margin-top: 36px; }
.kisah-group:first-child { margin-top: 0; }
.kisah-group-title {
  font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--color-accent);
  font-weight: 800; margin: 0 0 16px; padding-bottom: 10px; border-bottom: 2px solid var(--color-divider);
}
.kisah-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--color-divider); }
.kisah-card { background: #fff; display: flex; flex-direction: column; }
.kisah-thumb { height: 130px; background: var(--color-surface); }
.kisah-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.kisah-body { padding: 16px 18px 20px; }
.kisah-title { font-size: 15px; font-weight: 800; line-height: 1.25; margin: 0 0 6px; }
.kisah-excerpt { font-size: 12.5px; line-height: 1.5; color: rgba(32, 30, 29, .68); margin: 0; }
.kisah-date { font-size: 11px; color: rgba(32, 30, 29, .45); margin-top: 8px; }

/* ── kinerja page ──────────────────────────────────────────────────── */
.kpi-band { display: grid; grid-template-columns: repeat(4, 1fr); }
.kpi { padding: 30px 28px; border-right: 1px solid var(--color-divider); }
.kpi:last-child { border-right: 0; }
.kpi-num { font-size: 38px; font-weight: 800; line-height: 1; letter-spacing: -.03em; }
.kpi-label { font-size: 13px; font-weight: 600; margin-top: 8px; }
.kpi-note { font-size: 11.5px; color: rgba(32, 30, 29, .55); }

.kinerja-main { display: grid; grid-template-columns: 1.4fr .6fr; }
.kinerja-main > div { padding: 48px var(--wrap); }
.kinerja-main > div:first-child { border-right: 2px solid var(--color-divider); }
.kinerja-main h3 { margin: 0 0 8px; }
.kinerja-main h4 { margin: 0 0 16px; }
.table-note { font-size: 12.5px; color: rgba(32, 30, 29, .5); margin: 0 0 18px; }

.table { width: 100%; border-collapse: collapse; font-size: 14px; }
.table th {
  text-align: left; font-size: 11px; letter-spacing: .08em; text-transform: uppercase;
  color: rgba(32, 30, 29, .6); padding: 8px; border-bottom: 2px solid var(--color-divider);
}
.table td { padding: 8px; border-bottom: 1px solid var(--color-divider); }
.table tbody tr:hover { background: rgba(32, 30, 29, .04); }
.table td.name { font-weight: 600; }

.attendance-item { padding: 12px 0; border-top: 1px solid var(--color-divider); }
.attendance-row { display: flex; justify-content: space-between; font-size: 13px; font-weight: 600; }
.attendance-bar { height: 8px; background: var(--color-surface); margin-top: 8px; }
.attendance-fill { height: 8px; background: var(--color-accent); }
.partner-list { display: flex; flex-wrap: wrap; gap: 6px; }

.dapil-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--color-divider); }
.dapil-card { background: #fff; padding: 24px; }
.dapil-region { font-size: 11px; letter-spacing: .09em; text-transform: uppercase; color: var(--color-accent); font-weight: 600; }
.dapil-value { font-size: 26px; font-weight: 800; letter-spacing: -.02em; margin-top: 8px; }
.dapil-note { font-size: 13px; color: rgba(32, 30, 29, .65); margin-top: 4px; }

/* ── berita page ───────────────────────────────────────────────────── */
.berita-featured { display: grid; grid-template-columns: 1.1fr .9fr; }
.berita-featured-visual { min-height: 420px; background: var(--color-surface); border-right: 2px solid var(--color-divider); }
.berita-featured-visual img { width: 100%; height: 100%; object-fit: cover; display: block; }
.berita-featured-copy { padding: 48px var(--wrap); display: flex; flex-direction: column; justify-content: center; }
.berita-featured-copy .tags-row { display: flex; gap: 8px; margin-bottom: 16px; }
.berita-featured-copy h2 { font-size: 36px; line-height: 1.05; margin: 0 0 14px; }
.berita-featured-copy p { font-size: 16px; line-height: 1.6; color: rgba(32, 30, 29, .72); max-width: 38em; }
.berita-featured-copy .date { font-size: 12.5px; color: rgba(32, 30, 29, .5); margin-top: 16px; }

/* Daftar berita: kartu horizontal — thumbnail kecil kiri, teks kanan, 3 kolom. */
.articles-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--color-divider); }
.article-card { background: #fff; padding: 16px 16px 18px; display: flex; gap: 14px; align-items: flex-start; }
.article-card.is-hidden { display: none; }
.article-thumb { width: 110px; height: 82px; flex: none; background: var(--color-surface); overflow: hidden; }
.article-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.article-thumb .img-slot { min-height: 0; height: 100%; font-size: 11px; padding: 6px; }
#loadMoreBtn[hidden] { display: none; }
.article-body-wrap { padding: 0; flex: 1; min-width: 0; }
.article-kicker { font-size: 10px; letter-spacing: .09em; text-transform: uppercase; color: var(--color-accent); font-weight: 600; }
.article-title { margin: 5px 0 6px; line-height: 1.25; font-size: 15px; }
.article-body {
  margin: 0; font-size: 12.5px; line-height: 1.5; color: rgba(32, 30, 29, .7);
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}
.article-meta { font-size: 11px; color: rgba(32, 30, 29, .5); margin-top: 8px; }
.berita-actions { display: flex; gap: 10px; margin-top: 28px; flex-wrap: wrap; }
.empty-note { font-size: 13px; color: rgba(32, 30, 29, .5); padding: 24px 0; grid-column: 1 / -1; background: #fff; }

/* ── galeri page ───────────────────────────────────────────────────── */
.seg { display: inline-flex; overflow: hidden; border: 1px solid var(--color-divider); }
.seg-opt {
  display: inline-flex; align-items: center; gap: 6px; padding: 9px 16px; font-size: 13px;
  font-weight: 800; cursor: pointer; border-left: 1px solid var(--color-divider); background: transparent;
  color: inherit; font-family: inherit;
}
.seg-opt:first-child { border-left: 0; }
.seg-opt.is-active { background: var(--color-accent); color: #fff; }

.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 200px; gap: 14px; }
.gallery-item { position: relative; background: var(--color-surface); }
.gallery-item.span-2 { grid-column: span 2; }
.gallery-item figcaption {
  position: absolute; left: 0; bottom: 0; background: #fff; padding: 6px 10px;
  font-size: 11px; margin: 0; pointer-events: none;
}
.gallery-item.is-hidden, .video-card.is-hidden { display: none; }

.video-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 32px; }
.video-card { border: 1px solid var(--color-divider); }
.video-thumb { height: 180px; background: var(--color-surface); position: relative; }
.video-play {
  position: absolute; inset: 0; display: grid; place-items: center;
}
.video-play span {
  width: 56px; height: 56px; background: var(--color-accent); color: #fff;
  display: grid; place-items: center; font-size: 18px;
}
.video-info { padding: 14px 16px; }
.video-title { font-size: 15px; font-weight: 800; line-height: 1.2; }
.video-meta { font-size: 12px; color: rgba(32, 30, 29, .55); margin-top: 5px; }

/* ── kontak page ───────────────────────────────────────────────────── */
.kontak-grid { display: grid; grid-template-columns: 1.1fr .9fr; }
.kontak-form-side { padding: 44px var(--wrap); border-right: 2px solid var(--color-divider); }
.kontak-info-side { padding: 44px var(--wrap); }

.field-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field-full { grid-column: 1 / -1; }
.field > label { display: block; font-size: 12px; margin-bottom: 5px; color: rgba(32, 30, 29, .7); }
.field-note { display: block; font-size: 11.5px; color: rgba(32, 30, 29, .5); margin-top: 6px; }
select.input:disabled { color: rgba(32, 30, 29, .4); cursor: not-allowed; }
.input {
  width: 100%; min-height: 38px; padding: 8px 10px; font: inherit; font-size: 14px;
  color: var(--color-ink); background: var(--color-surface); border: 1px solid var(--color-divider);
}
.input:hover { border-color: rgba(32, 30, 29, .45); }
.input:focus-visible { outline: 2px solid var(--color-accent); outline-offset: 0; border-color: var(--color-accent); }
textarea.input { min-height: 130px; resize: vertical; }

.category-block { margin-top: 22px; }
.category-label { font-size: 12px; color: rgba(32, 30, 29, .7); margin-bottom: 8px; }
.category-options { display: flex; flex-wrap: wrap; gap: 16px; }
.radio { display: inline-flex; align-items: center; gap: 8px; cursor: pointer; font-size: 14px; }
.radio input { position: absolute; opacity: 0; width: 0; height: 0; }
.radio .dot { width: 16px; height: 16px; flex: none; border-radius: 50%; border: 1.5px solid var(--color-divider); }
.radio:hover .dot { border-color: var(--color-accent); }
.radio input:checked + .dot {
  border-color: var(--color-accent); background: var(--color-accent);
  box-shadow: inset 0 0 0 4px #fff;
}

.attach-row { display: flex; align-items: center; gap: 14px; margin-top: 8px; flex-wrap: wrap; }
.attach-row .hint { font-size: 12px; color: rgba(32, 30, 29, .5); }
.privacy-note { font-size: 11.5px; color: rgba(32, 30, 29, .5); margin-top: 12px; }

.sent-box { border: 2px solid var(--color-accent); padding: 28px; }
.sent-box .kicker { font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--color-accent); font-weight: 600; }
.sent-box h3 { margin: 8px 0 10px; }
.sent-box p { margin: 0 0 6px; font-size: 15px; }
.sent-box .sub { font-size: 14px; color: rgba(32, 30, 29, .65); margin: 0; }
.sent-box .btn { margin-top: 18px; }

.kontak-info-side h4 { margin: 0 0 14px; }
.contact-item { padding: 14px 0; border-top: 1px solid var(--color-divider); }
.flow-item {
  display: grid; grid-template-columns: 34px 1fr; gap: 14px; padding: 12px 0;
  border-top: 1px solid var(--color-divider);
}
.flow-no {
  width: 30px; height: 30px; background: var(--color-accent); color: #fff;
  display: grid; place-items: center; font-size: 13px; font-weight: 800;
}
.flow-title { font-size: 15px; font-weight: 600; }
.flow-body { font-size: 13px; color: rgba(32, 30, 29, .62); margin-top: 2px; }
.map-slot { height: 190px; margin-top: 28px; }

/* ── halaman artikel lengkap (artikel/*.html) ─────────────────────── */
.artikel-wrap { max-width: 780px; margin: 0 auto; padding: 48px var(--wrap) 64px; }
.artikel-meta-top { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.artikel-date { font-size: 12.5px; color: rgba(32, 30, 29, .55); }
.artikel-title { font-size: 40px; line-height: 1.08; letter-spacing: -.02em; margin: 0 0 24px; }
.artikel-hero { margin: 0 0 28px; background: var(--color-surface); }
.artikel-hero img { width: 100%; height: auto; display: block; }
.artikel-body { font-size: 16.5px; line-height: 1.7; }
.artikel-body p { margin: 0 0 18px; }
.artikel-body h2, .artikel-body h3, .artikel-body h4 { margin: 28px 0 12px; }
.artikel-body img { max-width: 100%; height: auto; margin: 8px 0; }
.artikel-body figure { margin: 0 0 18px; }
.artikel-body ul, .artikel-body ol { margin: 0 0 18px; padding-left: 24px; }
.artikel-body li { margin-bottom: 8px; }
.artikel-body blockquote { margin: 0 0 18px; padding: 12px 20px; border-left: 3px solid var(--color-accent); background: var(--color-surface); }
.artikel-video { position: relative; padding-top: 56.25%; margin: 0 0 18px; background: #000; }
.artikel-video iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.artikel-foot { margin-top: 36px; padding-top: 20px; border-top: 2px solid var(--color-divider); }

/* thumbnail & "selengkapnya" links on cards */
.article-thumb a, .kisah-thumb a, .berita-featured-visual a { display: block; width: 100%; height: 100%; }
.source-slot {
  border-style: solid; border-color: var(--color-accent-200);
  background: var(--color-accent-100); color: var(--color-accent-800);
  font-weight: 800; font-size: 14px; letter-spacing: .02em;
}
.more-link { display: inline-block; font-size: 12.5px; font-weight: 800; color: var(--color-accent); margin-top: 10px; }

/* ── footer ────────────────────────────────────────────────────────── */
.site-footer { background: var(--color-ink); color: #fff; padding: 52px var(--wrap) 32px; }
.footer-top {
  display: grid; grid-template-columns: 1.2fr .6fr .6fr .8fr; gap: 40px;
  padding-bottom: 32px; border-bottom: 1px solid rgba(255, 255, 255, .2);
}
.footer-logos { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer-badge {
  width: 44px; height: 44px; border: 2px solid #fff; padding: 3px; background: #fff;
  display: grid; place-items: center; font-size: 8px; line-height: 1.15;
  text-align: center; font-weight: 800; color: #fff; flex: none; box-sizing: border-box;
}
.footer-badge img { width: 100%; height: 100%; object-fit: contain; display: block; }
.footer-badge.dim { border-color: rgba(255, 255, 255, .5); opacity: .85; }
.footer-brand-name { font-size: 17px; font-weight: 800; letter-spacing: -.01em; }
.footer-desc { font-size: 13px; line-height: 1.6; color: rgba(255, 255, 255, .65); margin: 8px 0 0; max-width: 30em; }
.footer-col-title {
  font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: rgba(255, 255, 255, .5);
  margin-bottom: 12px;
}
.footer-nav { display: flex; flex-direction: column; gap: 8px; }
.footer-nav a { color: rgba(255, 255, 255, .8); font-size: 13.5px; }
.footer-nav a:hover { color: #fff; text-decoration: none; }
.footer-channels { display: flex; flex-direction: column; gap: 8px; font-size: 13.5px; color: rgba(255, 255, 255, .8); }
.footer-address { font-size: 13.5px; line-height: 1.6; color: rgba(255, 255, 255, .8); margin: 0; }
.footer-bottom {
  display: flex; justify-content: space-between; gap: 20px; padding-top: 20px;
  font-size: 11.5px; color: rgba(255, 255, 255, .5); flex-wrap: wrap;
}

/* ── responsive ────────────────────────────────────────────────────── */
@media (max-width: 1080px) {
  .kerja-grid { grid-template-columns: repeat(3, 1fr); }
  .articles-grid, .dapil-grid, .values-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 900px) {
  :root { --wrap: 24px; }
  .nav-main { display: none; }
  .menu-toggle { display: inline-flex; align-items: center; justify-content: center; }
  .header-inner { flex-wrap: wrap; }
  .hero, .split-2, .profil-hero, .timeline-grid, .kinerja-main, .berita-featured, .kontak-grid {
    grid-template-columns: 1fr;
  }
  .split-2 > div:first-child, .timeline-col:first-child, .kinerja-main > div:first-child,
  .profil-hero-copy, .kontak-form-side {
    border-right: 0; border-bottom: 2px solid var(--color-divider);
  }
  .stat-band, .kpi-band { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2n), .kpi:nth-child(2n) { border-right: 0; }
  .stat, .kpi { border-bottom: 1px solid var(--color-divider); }
  .cta-grid { grid-template-columns: 1fr; }
  .hero-copy h1 { font-size: 44px; }
  .page-hero h1, .profil-hero-copy h1 { font-size: 38px; }
  .cta-grid h2 { font-size: 32px; }
  .articles-grid, .dapil-grid, .values-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .kerja-grid, .articles-grid, .dapil-grid, .values-grid, .gallery-grid, .field-grid, .video-grid {
    grid-template-columns: 1fr;
  }
  .gallery-item.span-2 { grid-column: span 1; }
  .stat-band, .kpi-band { grid-template-columns: 1fr; }
  .stat, .kpi { border-right: 0; }
  .footer-top { grid-template-columns: 1fr; }
  .hero-copy h1 { font-size: 36px; }
  .topbar { flex-wrap: wrap; }
}
