/* =========================================================================
   MegawatiSoekarnoputri.net — Arsip Editorial Independen
   Stylesheet utama. Satu file agar mudah dirawat.
   ========================================================================= */

/* ---------- 1. Custom Properties ---------- */
:root {
  --color-maroon: #651C24;
  --color-archive-red: #8B2635;
  --color-ink: #171717;
  --color-charcoal: #292726;
  --color-bone: #F5F0E8;
  --color-paper: #E9DFD0;
  --color-gold: #B89555;
  --color-gray: #77716A;
  --color-white: #FFFFFF;

  --font-display: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --max-article-width: 760px;
  --max-content-width: 1200px;

  --radius-sm: 2px;
  --radius-md: 4px;

  --shadow-card: 0 2px 18px rgba(23, 23, 23, 0.08);
  --shadow-lift: 0 8px 30px rgba(23, 23, 23, 0.14);

  --transition-fast: 160ms ease;
  --transition-base: 260ms ease;
}

/* ---------- 2. Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}
body, h1, h2, h3, h4, p, figure, blockquote, dl, dd { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
img, picture { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
input, textarea, select { font: inherit; }
table { border-collapse: collapse; width: 100%; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-ink);
  background: var(--color-bone);
  -webkit-font-smoothing: antialiased;
}

/* ---------- 3. Skip Link & Focus ---------- */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--color-maroon);
  color: var(--color-white);
  padding: 0.85rem 1.5rem;
  z-index: 1000;
  border-radius: 0 0 var(--radius-md) 0;
}
.skip-link:focus {
  left: 0;
}
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--color-gold);
  outline-offset: 2px;
}

/* ---------- 4. Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.2;
  color: var(--color-ink);
}
h1 { font-size: clamp(2.1rem, 5vw, 3.6rem); font-weight: 700; }
h2 { font-size: clamp(1.6rem, 3.4vw, 2.4rem); }
h3 { font-size: clamp(1.25rem, 2.4vw, 1.65rem); }
h4 { font-size: 1.1rem; }

p { margin-bottom: 1.2em; }
.lede {
  font-family: var(--font-display);
  font-size: 1.35rem;
  line-height: 1.6;
  color: var(--color-charcoal);
}

.container {
  width: 100%;
  max-width: var(--max-content-width);
  margin: 0 auto;
  padding: 0 1.25rem;
}
.container--article {
  max-width: var(--max-article-width);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-archive-red);
  font-weight: 600;
}
.eyebrow::before {
  content: '';
  width: 22px;
  height: 1px;
  background: var(--color-archive-red);
  display: inline-block;
}

/* ---------- 5. Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 44px;
  padding: 0.85rem 1.75rem;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  transition: background var(--transition-fast), color var(--transition-fast), border-color var(--transition-fast), transform var(--transition-fast);
  border: 1.5px solid transparent;
}
.btn--primary {
  background: var(--color-maroon);
  color: var(--color-white);
}
.btn--primary:hover { background: var(--color-archive-red); }
.btn--outline {
  border-color: var(--color-ink);
  color: var(--color-ink);
}
.btn--outline:hover { background: var(--color-ink); color: var(--color-white); }
.btn--gold {
  border-color: var(--color-gold);
  color: var(--color-maroon);
}
.btn--gold:hover { background: var(--color-gold); color: var(--color-ink); }
.btn--sm { min-height: 40px; padding: 0.6rem 1.25rem; font-size: 0.85rem; }

/* ---------- 6. Header & Navigation ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 500;
  background: rgba(245, 240, 232, 0.94);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(23, 23, 23, 0.08);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 1.25rem;
  max-width: var(--max-content-width);
  margin: 0 auto;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-shrink: 0;
}
.brand__mark {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}
.brand__text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--color-maroon);
  line-height: 1.1;
}
.brand__text small {
  display: block;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-gray);
}

.nav-primary {
  display: none;
}
.nav-primary > ul {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}
.nav-primary a {
  font-size: 0.92rem;
  font-weight: 500;
  padding: 0.4rem 0.1rem;
  border-bottom: 2px solid transparent;
  transition: border-color var(--transition-fast), color var(--transition-fast);
}
.nav-primary a:hover,
.nav-primary a[aria-current="page"] {
  color: var(--color-maroon);
  border-color: var(--color-maroon);
}

.nav-dropdown { position: relative; }
.nav-dropdown__toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.92rem;
  font-weight: 500;
}
.nav-dropdown__toggle::after {
  content: '▾';
  font-size: 0.7rem;
  color: var(--color-gray);
}
.nav-dropdown__menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 260px;
  background: var(--color-white);
  box-shadow: var(--shadow-lift);
  border-radius: var(--radius-md);
  padding: 0.5rem;
  margin-top: 0.6rem;
}
.nav-dropdown[data-open="true"] .nav-dropdown__menu { display: block; }
.nav-dropdown__menu li a {
  display: block;
  padding: 0.55rem 0.75rem;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  border-bottom: none;
}
.nav-dropdown__menu li a:hover { background: var(--color-bone); color: var(--color-maroon); }
.nav-dropdown__menu li a span {
  display: block;
  font-size: 0.72rem;
  color: var(--color-gray);
  margin-top: 0.1rem;
}

.nav-cta { display: none; }

.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(23,23,23,0.15);
  border-radius: var(--radius-md);
}
.nav-toggle__bars {
  width: 20px;
  height: 14px;
  position: relative;
}
.nav-toggle__bars span,
.nav-toggle__bars::before,
.nav-toggle__bars::after {
  content: '';
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--color-ink);
}
.nav-toggle__bars::before { top: 0; }
.nav-toggle__bars span { top: 6px; }
.nav-toggle__bars::after { top: 12px; }

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 600;
  background: var(--color-bone);
  overflow-y: auto;
}
.mobile-menu[data-open="true"] { display: block; }
.mobile-menu__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.9rem 1.25rem;
  border-bottom: 1px solid rgba(23,23,23,0.1);
}
.mobile-menu__close {
  width: 44px; height: 44px;
  font-size: 1.4rem;
  border: 1px solid rgba(23,23,23,0.15);
  border-radius: var(--radius-md);
}
.mobile-menu__body { padding: 1.25rem; }
.mobile-menu__body > ul > li {
  border-bottom: 1px solid rgba(23,23,23,0.08);
}
.mobile-menu__body > ul > li > a,
.mobile-menu__body .mobile-submenu-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 1rem 0.2rem;
  font-size: 1.05rem;
  font-weight: 600;
  min-height: 44px;
}
.mobile-submenu {
  display: none;
  padding-left: 1rem;
  padding-bottom: 0.75rem;
}
.mobile-submenu[data-open="true"] { display: block; }
.mobile-submenu li a {
  display: block;
  padding: 0.65rem 0.2rem;
  font-size: 0.95rem;
  color: var(--color-charcoal);
}
.mobile-menu__cta { margin-top: 1.5rem; display: flex; flex-direction: column; gap: 0.75rem; }

body.menu-open { overflow: hidden; }

/* ---------- 7. Reading Progress ---------- */
.reading-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: var(--color-gold);
  z-index: 700;
  transition: width 100ms linear;
}

/* ---------- 8. Hero (Homepage) ---------- */
.hero {
  position: relative;
  padding: 3rem 0 3.5rem;
  overflow: hidden;
  background: linear-gradient(180deg, var(--color-paper) 0%, var(--color-bone) 100%);
}
.hero__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}
.hero__content .eyebrow { margin-bottom: 1.1rem; }
.hero__title { margin-bottom: 1rem; }
.hero__desc {
  font-size: 1.08rem;
  color: var(--color-charcoal);
  max-width: 52ch;
  margin-bottom: 1.75rem;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 1.75rem;
}
.hero__years {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--color-gold);
  font-weight: 600;
  letter-spacing: 0.05em;
}
.hero__visual {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lift);
  aspect-ratio: 4/5;
  background: var(--color-charcoal);
}
.hero__visual img { width: 100%; height: 100%; object-fit: cover; }
.hero__visual-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(0deg, rgba(23,23,23,0.85), transparent);
  color: var(--color-bone);
  font-size: 0.78rem;
  padding: 1.5rem 1rem 0.8rem;
}
.scroll-indicator {
  display: none;
  margin-top: 2.5rem;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.78rem;
  color: var(--color-gray);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.scroll-indicator__line {
  width: 32px; height: 1px; background: var(--color-gray);
  position: relative;
  overflow: hidden;
}
.scroll-indicator__line::after {
  content: '';
  position: absolute;
  left: -100%; top: 0; width: 100%; height: 100%;
  background: var(--color-maroon);
  animation: scrollLine 1.8s ease-in-out infinite;
}
@keyframes scrollLine {
  0% { left: -100%; }
  50% { left: 0; }
  100% { left: 100%; }
}

/* ---------- 9. Sections generally ---------- */
.section { padding: 4rem 0; }
.section--alt { background: var(--color-paper); }
.section--dark { background: var(--color-ink); color: var(--color-bone); }
.section--dark h2, .section--dark h3 { color: var(--color-bone); }
.section__head { max-width: 640px; margin-bottom: 2.5rem; }
.section__head p { color: var(--color-charcoal); }
.section--dark .section__head p { color: var(--color-gray); }

/* ---------- 10. Fact Grid ---------- */
.fact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
.fact-card {
  background: var(--color-white);
  border: 1px solid rgba(23,23,23,0.08);
  border-top: 3px solid var(--color-maroon);
  border-radius: var(--radius-md);
  padding: 1.5rem;
}
.fact-card__label {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-gray);
  margin-bottom: 0.4rem;
}
.fact-card__value {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
}

/* ---------- 11. Timeline ---------- */
.timeline {
  position: relative;
  padding-left: 1.75rem;
  border-left: 2px solid var(--color-paper);
}
.timeline__item {
  position: relative;
  padding-bottom: 2.25rem;
}
.timeline__item:last-child { padding-bottom: 0; }
.timeline__item::before {
  content: '';
  position: absolute;
  left: -2.35rem;
  top: 0.3rem;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--color-gold);
  border: 2px solid var(--color-bone);
}
.timeline__year {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--color-maroon);
  line-height: 1;
  margin-bottom: 0.4rem;
}
.timeline__title { font-weight: 600; margin-bottom: 0.3rem; }
.timeline__text { color: var(--color-charcoal); font-size: 0.95rem; }
.timeline__link { display: inline-block; margin-top: 0.5rem; font-size: 0.85rem; color: var(--color-maroon); font-weight: 600; border-bottom: 1px solid var(--color-maroon); }

/* Journey progress bar (chapter pages) */
.journey {
  display: flex;
  align-items: center;
  overflow-x: auto;
  gap: 0;
  padding: 1rem 0;
  scrollbar-width: thin;
}
.journey__node {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  flex-shrink: 0;
  padding: 0 0.85rem;
  position: relative;
}
.journey__node::after {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  width: 100%;
  height: 2px;
  background: var(--color-paper);
  z-index: -1;
}
.journey__node:last-child::after { display: none; }
.journey__dot {
  width: 13px; height: 13px;
  border-radius: 50%;
  background: var(--color-paper);
  border: 2px solid var(--color-gray);
}
.journey__node[data-active="true"] .journey__dot {
  background: var(--color-maroon);
  border-color: var(--color-maroon);
  width: 16px; height: 16px;
}
.journey__label {
  font-size: 0.72rem;
  color: var(--color-gray);
  white-space: nowrap;
}
.journey__node[data-active="true"] .journey__label { color: var(--color-maroon); font-weight: 700; }

/* ---------- 12. Chapter Header ---------- */
.chapter-header {
  padding: 2.5rem 0 2rem;
  border-bottom: 1px solid rgba(23,23,23,0.08);
}
.breadcrumb {
  font-size: 0.8rem;
  color: var(--color-gray);
  margin-bottom: 1.25rem;
}
.breadcrumb a { color: var(--color-gray); border-bottom: 1px dotted var(--color-gray); }
.breadcrumb a:hover { color: var(--color-maroon); }
.breadcrumb span[aria-current] { color: var(--color-ink); }
.chapter-label {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-archive-red);
  margin-bottom: 0.6rem;
}
.chapter-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
  margin-top: 1.25rem;
  font-size: 0.82rem;
  color: var(--color-gray);
}
.chapter-meta__item { display: flex; align-items: center; gap: 0.35rem; }

/* ---------- 13. Article body ---------- */
.article-body {
  padding: 2.5rem 0;
}
.article-body h2 { margin-top: 2.4rem; margin-bottom: 1rem; }
.article-body h3 { margin-top: 1.8rem; margin-bottom: 0.85rem; }
.article-body p { color: var(--color-charcoal); }
.article-body ul, .article-body ol { margin-bottom: 1.2em; padding-left: 1.4rem; }
.article-body ul { list-style: disc; }
.article-body ol { list-style: decimal; }
.article-body li { margin-bottom: 0.5em; color: var(--color-charcoal); }
.article-body strong { color: var(--color-ink); }
.article-body a:not(.btn) {
  color: var(--color-maroon);
  border-bottom: 1px solid rgba(101,28,36,0.4);
}
.article-body a:not(.btn):hover { border-color: var(--color-maroon); }

.pull-quote {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-style: italic;
  line-height: 1.5;
  color: var(--color-maroon);
  border-left: 3px solid var(--color-gold);
  padding: 0.3rem 0 0.3rem 1.5rem;
  margin: 2rem 0;
}
.pull-quote cite {
  display: block;
  font-family: var(--font-body);
  font-style: normal;
  font-size: 0.82rem;
  color: var(--color-gray);
  margin-top: 0.6rem;
}

figure.archive-figure {
  margin: 2rem 0;
}
figure.archive-figure img {
  border-radius: var(--radius-md);
  border: 1px solid rgba(23,23,23,0.1);
}
figure.archive-figure figcaption {
  font-size: 0.82rem;
  color: var(--color-gray);
  margin-top: 0.6rem;
  padding-left: 0.9rem;
  border-left: 2px solid var(--color-gold);
}

/* ---------- 14. Reusable Editorial Components ---------- */
.component-block {
  background: var(--color-white);
  border: 1px solid rgba(23,23,23,0.08);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  margin: 2.25rem 0;
}
.component-block__title {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-maroon);
  margin-bottom: 1rem;
}
.component-block__title .tag-icon {
  width: 26px; height: 26px;
  flex-shrink: 0;
}

/* Jejak Waktu */
.jejak-waktu { border-top: 3px solid var(--color-gold); }
.jejak-waktu ol { list-style: none; padding: 0; }
.jejak-waktu li { display: flex; gap: 1rem; padding: 0.6rem 0; border-bottom: 1px dashed rgba(23,23,23,0.1); }
.jejak-waktu li:last-child { border-bottom: none; }
.jejak-waktu .jw-year { font-family: var(--font-display); font-weight: 700; color: var(--color-maroon); min-width: 3.2rem; }

/* Indonesia Saat Itu */
.indonesia-saat-itu { background: var(--color-paper); border: none; }

/* Di Balik Keputusan */
.di-balik-keputusan { border-top: 3px solid var(--color-archive-red); }

/* Dua Sudut Pandang */
.dua-sudut {
  border: none;
  padding: 0;
  background: none;
}
.dua-sudut__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
.dua-sudut__col {
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  border: 1px solid rgba(23,23,23,0.08);
}
.dua-sudut__col--dukungan { border-top: 3px solid var(--color-gold); }
.dua-sudut__col--kritik { border-top: 3px solid var(--color-archive-red); }
.dua-sudut__col h4 {
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.85rem;
  color: var(--color-gray);
}
.dua-sudut__col ul { list-style: none; padding: 0; }
.dua-sudut__col li { margin-bottom: 0.75rem; padding-left: 1.1rem; position: relative; font-size: 0.94rem; }
.dua-sudut__col li::before { content: '—'; position: absolute; left: 0; color: var(--color-gray); }

/* Tokoh dalam Cerita */
.tokoh-cerita { display: flex; gap: 1.25rem; align-items: flex-start; }
.tokoh-cerita__portrait {
  width: 64px; height: 64px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid var(--color-gold);
}
.tokoh-cerita__name { font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; }
.tokoh-cerita__role { font-size: 0.8rem; color: var(--color-gray); margin-bottom: 0.5rem; }

/* Dari Arsip */
.dari-arsip { background: var(--color-charcoal); color: var(--color-bone); border: none; }
.dari-arsip .component-block__title { color: var(--color-gold); }
.dari-arsip figcaption { color: var(--color-paper); opacity: 0.85; }
.dari-arsip img { border-radius: var(--radius-sm); }

/* Fakta Singkat */
.fakta-singkat { border-top: 3px solid var(--color-maroon); }
.fakta-singkat dt { font-weight: 700; margin-bottom: 0.3rem; }
.fakta-singkat dd { color: var(--color-charcoal); margin-bottom: 1rem; padding-left: 0; }
.fakta-singkat dd:last-child { margin-bottom: 0; }

/* Mengapa Penting */
.mengapa-penting {
  background: linear-gradient(135deg, var(--color-maroon), var(--color-archive-red));
  color: var(--color-bone);
  border: none;
}
.mengapa-penting .component-block__title { color: var(--color-gold); }
.mengapa-penting p { color: var(--color-bone); }

/* Baca Bab Berikutnya CTA */
.next-chapter-cta {
  background: var(--color-ink);
  color: var(--color-bone);
  border-radius: var(--radius-md);
  padding: 2.25rem;
  text-align: center;
  margin: 2.5rem 0;
}
.next-chapter-cta .eyebrow { color: var(--color-gold); }
.next-chapter-cta .eyebrow::before { background: var(--color-gold); }
.next-chapter-cta h3 { color: var(--color-bone); margin: 0.6rem 0 1.25rem; }

/* ---------- 15. Sources ---------- */
.sources {
  border-top: 2px solid var(--color-paper);
  padding-top: 1.75rem;
  margin-top: 2.5rem;
}
.sources h3 { margin-bottom: 1rem; }
.sources ol { list-style: decimal; padding-left: 1.4rem; }
.sources li { font-size: 0.88rem; color: var(--color-charcoal); margin-bottom: 0.6rem; }

/* ---------- 16. Chapter Nav (prev/next) ---------- */
.chapter-nav {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
  margin: 2.5rem 0;
}
.chapter-nav__link {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  padding: 1.1rem 1.25rem;
  border: 1px solid rgba(23,23,23,0.12);
  border-radius: var(--radius-md);
  transition: border-color var(--transition-fast), background var(--transition-fast);
}
.chapter-nav__link:hover { border-color: var(--color-maroon); background: var(--color-white); }
.chapter-nav__link span { font-size: 0.75rem; color: var(--color-gray); text-transform: uppercase; letter-spacing: 0.06em; }
.chapter-nav__link strong { font-family: var(--font-display); font-size: 1.05rem; }
.chapter-nav__timeline {
  text-align: center;
  font-size: 0.85rem;
  color: var(--color-maroon);
  font-weight: 600;
  padding: 0.5rem;
}

/* ---------- 17. Disclaimer strip ---------- */
.disclaimer-strip {
  background: var(--color-paper);
  border-radius: var(--radius-md);
  padding: 1.1rem 1.4rem;
  font-size: 0.82rem;
  color: var(--color-charcoal);
  margin: 2rem 0;
  border-left: 3px solid var(--color-archive-red);
}
.disclaimer-strip strong { color: var(--color-maroon); }

/* ---------- 18. FAQ Accordion ---------- */
.faq-list { border-top: 1px solid rgba(23,23,23,0.1); }
.faq-item { border-bottom: 1px solid rgba(23,23,23,0.1); }
.faq-item__q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 0.25rem;
  text-align: left;
  font-weight: 600;
  font-size: 1.02rem;
  min-height: 44px;
}
.faq-item__icon {
  flex-shrink: 0;
  width: 22px; height: 22px;
  position: relative;
}
.faq-item__icon::before, .faq-item__icon::after {
  content: '';
  position: absolute;
  background: var(--color-maroon);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
.faq-item__icon::before { width: 14px; height: 2px; }
.faq-item__icon::after { width: 2px; height: 14px; transition: transform var(--transition-fast); }
.faq-item[data-open="true"] .faq-item__icon::after { transform: translate(-50%, -50%) rotate(90deg) scaleY(0); }
.faq-item__a {
  display: none;
  padding: 0 0.25rem 1.25rem;
  color: var(--color-charcoal);
  max-width: 68ch;
}
.faq-item[data-open="true"] .faq-item__a { display: block; }

/* ---------- 19. Editorial Team / Chapters Grid (homepage) ---------- */
.chapters-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
.chapter-card {
  background: var(--color-white);
  border: 1px solid rgba(23,23,23,0.08);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  transition: box-shadow var(--transition-fast), transform var(--transition-fast);
  position: relative;
  overflow: hidden;
}
.chapter-card:hover { box-shadow: var(--shadow-card); transform: translateY(-2px); }
.chapter-card__num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--color-paper);
  position: absolute;
  top: 0.5rem; right: 1rem;
  line-height: 1;
  z-index: 0;
}
.chapter-card__label { font-size: 0.75rem; color: var(--color-archive-red); font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; }
.chapter-card__title { font-family: var(--font-display); font-size: 1.25rem; font-weight: 700; }
.chapter-card__desc { font-size: 0.9rem; color: var(--color-gray); }
.chapter-card__year { font-size: 0.8rem; color: var(--color-gold); font-weight: 600; }

/* ---------- 20. Footer ---------- */
.site-footer {
  background: var(--color-ink);
  color: var(--color-bone);
  padding: 3.5rem 0 1.5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.25rem;
  padding-bottom: 2.5rem;
}
.footer-brand .brand__text { color: var(--color-bone); }
.footer-brand p { color: var(--color-gray); font-size: 0.9rem; max-width: 40ch; margin-top: 1rem; }
.footer-col h4 { color: var(--color-bone); font-size: 0.85rem; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 1rem; font-family: var(--font-body); }
.footer-col ul li { margin-bottom: 0.65rem; }
.footer-col a { color: var(--color-gray); font-size: 0.92rem; }
.footer-col a:hover { color: var(--color-bone); }
.footer-disclaimer {
  border-top: 1px solid rgba(245,240,232,0.14);
  padding-top: 1.75rem;
  font-size: 0.8rem;
  color: var(--color-gray);
  line-height: 1.7;
}
.footer-disclaimer strong { color: var(--color-paper); }
.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding-top: 1.5rem;
  margin-top: 1.5rem;
  border-top: 1px solid rgba(245,240,232,0.1);
  font-size: 0.78rem;
  color: var(--color-gray);
}
.back-to-top {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--color-gold);
  font-weight: 600;
  font-size: 0.82rem;
}

/* ---------- 21. Utility pages ---------- */
.policy-body h2 { margin-top: 2.2rem; }
.policy-body ul { padding-left: 1.4rem; list-style: disc; margin-bottom: 1.2em; }
.policy-body li { margin-bottom: 0.5em; color: var(--color-charcoal); }
.contact-form {
  display: grid;
  gap: 1.1rem;
  max-width: 560px;
}
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label { font-weight: 600; font-size: 0.9rem; }
.form-group input, .form-group textarea {
  padding: 0.8rem 0.9rem;
  border: 1.5px solid rgba(23,23,23,0.18);
  border-radius: var(--radius-md);
  background: var(--color-white);
}
.form-note {
  background: var(--color-paper);
  border-left: 3px solid var(--color-gold);
  padding: 1rem 1.25rem;
  font-size: 0.85rem;
  border-radius: var(--radius-sm);
}

/* ---------- 22. Misc ---------- */
.badge-independen {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-gray);
  border: 1px solid rgba(23,23,23,0.15);
  border-radius: 20px;
  padding: 0.3rem 0.8rem;
}
.editorial-team-note {
  font-size: 0.85rem;
  color: var(--color-gray);
  margin-top: 0.5rem;
}
.update-flag {
  display: inline-block;
  background: var(--color-paper);
  color: var(--color-maroon);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.4rem 0.75rem;
  border-radius: var(--radius-sm);
  margin: 1rem 0;
}

::selection { background: var(--color-gold); color: var(--color-ink); }

/* ---------- 23. Responsive ---------- */
@media (min-width: 640px) {
  .fact-grid { grid-template-columns: repeat(2, 1fr); }
  .dua-sudut__grid { grid-template-columns: repeat(2, 1fr); }
  .chapter-nav { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 860px) {
  .nav-primary { display: block; }
  .nav-cta { display: inline-flex; }
  .nav-toggle { display: none; }
  .hero__inner { grid-template-columns: 1.05fr 0.95fr; }
  .scroll-indicator { display: flex; }
  .fact-grid { grid-template-columns: repeat(4, 1fr); }
  .chapters-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; }
  .chapter-meta { font-size: 0.85rem; }
  .footer-bottom { flex-direction: row; justify-content: space-between; }
}

@media (min-width: 1100px) {
  .hero { padding: 4.5rem 0 5rem; }
}
