/* ═══════════════════════════════════════════════════════════════════
   MINIMALIS — FlatPress Theme
   Typography: Playfair Display (display) + Lora (body) + DM Mono (mono)
   Aesthetic: Editorial serif, refined, Indonesian literary journal
   ═══════════════════════════════════════════════════════════════════ */

/* ── TOKENS ──────────────────────────────────────────────────────── */
:root {
  /* Warna */
  --cream:        #faf8f4;
  --warm-white:   #f5f2ec;
  --ink:          #1a1714;
  --ink-muted:    #4a4540;
  --ink-faint:    #9a928a;
  --rule:         #e0d9d0;
  --accent:       #8b4513;       /* sienna — hangat, earthy */
  --accent-light: #c4824a;
  --accent-bg:    #f9f2eb;

  /* Tipografi */
  --font-display: 'Playfair Display', 'Georgia', serif;
  --font-body:    'Lora', 'Georgia', serif;
  --font-mono:    'DM Mono', 'Courier New', monospace;

  /* Ukuran */
  --text-xs:   0.75rem;    /* 12px */
  --text-sm:   0.875rem;   /* 14px */
  --text-base: 1.0625rem;  /* 17px — sedikit lebih besar untuk keterbacaan */
  --text-lg:   1.25rem;    /* 20px */
  --text-xl:   1.5rem;     /* 24px */
  --text-2xl:  2rem;       /* 32px */
  --text-3xl:  2.75rem;    /* 44px */
  --text-4xl:  3.75rem;    /* 60px */

  /* Spasi */
  --space-xs:  0.25rem;
  --space-sm:  0.5rem;
  --space-md:  1rem;
  --space-lg:  1.5rem;
  --space-xl:  2.5rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;

  /* Layout */
  --content-width: 680px;
  --wide-width:    900px;
  --gutter:        clamp(1.25rem, 5vw, 3rem);

  /* Efek */
  --radius-sm: 3px;
  --radius-md: 6px;
  --shadow-soft: 0 2px 12px rgba(26,23,20,0.07);
  --shadow-lift: 0 8px 32px rgba(26,23,20,0.12);
  --transition: 200ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── RESET & BASE ────────────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 100%;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  background-color: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.75;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* ── SKIP LINK ───────────────────────────────────────────────────── */
.skip-link {
  position: absolute;
  top: -100%;
  left: var(--gutter);
  background: var(--accent);
  color: white;
  padding: 0.5em 1em;
  font-family: var(--font-mono);
  font-size: var(--text-sm);
  z-index: 1000;
  border-radius: var(--radius-sm);
}
.skip-link:focus { top: 1rem; }

/* ── HEADER ─────────────────────────────────────────────────────── */
.site-header {
  border-bottom: 1px solid var(--rule);
  padding: var(--space-xl) var(--gutter);
  background: var(--cream);
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  background: rgba(250,248,244,0.92);
}

.header-inner {
  max-width: var(--wide-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-lg);
}

.site-title-link {
  text-decoration: none;
  color: inherit;
}

.site-title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
  display: block;
  line-height: 1.1;
}

.site-tagline {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  color: var(--ink-faint);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 0.2em;
}

/* Nav */
.site-nav { flex-shrink: 0; }

.nav-list {
  list-style: none;
  display: flex;
  gap: var(--space-lg);
  align-items: center;
}

.nav-list a {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-muted);
  text-decoration: none;
  transition: color var(--transition);
  padding-bottom: 1px;
  border-bottom: 1px solid transparent;
}

.nav-list a:hover {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

.nav-rss {
  opacity: 0.5;
}
.nav-rss:hover { opacity: 1 !important; }

/* ── MAIN ────────────────────────────────────────────────────────── */
.site-main {
  flex: 1;
  padding: var(--space-3xl) var(--gutter);
}

.content-wrapper {
  max-width: var(--content-width);
  margin: 0 auto;
}

/* ── ENTRIES LIST (Halaman Depan) ────────────────────────────────── */
.entries-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* Penanda tahun */
.year-group {
  position: relative;
  margin-bottom: var(--space-xl);
}

.year-group + .year-group {
  margin-top: var(--space-3xl);
  padding-top: var(--space-2xl);
  border-top: 1px solid var(--rule);
}

.year-marker {
  display: block;
  font-family: var(--font-display);
  font-size: var(--text-4xl);
  font-weight: 700;
  color: transparent;
  -webkit-text-stroke: 1px var(--rule);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: var(--space-xl);
  user-select: none;
  pointer-events: none;
}

/* Baris artikel — list simpel */
.entry-row {
  display: flex;
  align-items: baseline;
  gap: var(--space-lg);
  padding: 0.6em 0;
  border-bottom: 1px solid var(--rule);
}

.entry-row:last-child { border-bottom: none; }

.entry-date {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  color: var(--ink-faint);
  letter-spacing: 0.04em;
  white-space: nowrap;
  flex-shrink: 0;
  min-width: 4.5rem;
}

.single-date {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  color: var(--ink-faint);
  letter-spacing: 0.04em;
}

.meta-sep { color: var(--rule); }

.entry-cat, .single-cat-link {
  color: var(--accent);
  text-decoration: none;
  transition: opacity var(--transition);
}
.entry-cat:hover, .single-cat-link:hover { opacity: 0.7; }

/* Judul dalam list */
.entry-row .entry-title {
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0;
  margin: 0;
}

.entry-row .entry-title a {
  color: var(--ink);
  text-decoration: none;
  transition: color var(--transition);
}

.entry-row:hover .entry-title a,
.entry-row .entry-title a:hover {
  color: var(--accent);
}

/* ── SINGLE ENTRY ────────────────────────────────────────────────── */
.single-entry { }

.entry-header {
  text-align: center;
  padding-bottom: var(--space-2xl);
  margin-bottom: var(--space-2xl);
}

.single-cats {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: var(--space-md);
  color: var(--accent);
}

.single-title {
  font-family: var(--font-display);
  font-size: clamp(var(--text-2xl), 5vw, var(--text-4xl));
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin: 0 auto;
  max-width: 20ch;
}

.single-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  margin-top: var(--space-lg);
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  color: var(--ink-faint);
  letter-spacing: 0.04em;
}

.single-author { color: var(--ink-muted); }

/* Garis ornamen */
.header-rule {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-top: var(--space-xl);
}
.header-rule::before,
.header-rule::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--rule);
}
.rule-ornament {
  font-size: var(--text-sm);
  color: var(--accent);
  opacity: 0.6;
}

/* ── GAMBAR DALAM KONTEN ─────────────────────────────────────────── */

/* Gambar unggulan */
.single-featured-image {
  margin: 0 calc(-1 * var(--gutter)) var(--space-2xl);
  width: calc(100% + 2 * var(--gutter));
  max-width: var(--wide-width);
  margin-left: auto;
  margin-right: auto;
  margin-bottom: var(--space-2xl);
}

.single-featured-image img {
  width: 100%;
  height: auto;
  max-height: 60vh;
  object-fit: cover;
  display: block;
  border-radius: var(--radius-md);
  filter: saturate(0.9);
}

.image-caption {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  color: var(--ink-faint);
  text-align: center;
  margin-top: var(--space-sm);
  letter-spacing: 0.02em;
}

/* ── KONTEN ARTIKEL (Tipografi) ──────────────────────────────────── */
.entry-content {
  font-size: var(--text-base);
  line-height: 1.85;
  color: var(--ink);
}

.entry-content > * + * {
  margin-top: 1.5em;
}

/* Paragraf */
.entry-content p {
  text-align: justify;
  hyphens: auto;
  -webkit-hyphens: auto;
  word-break: break-word;
  overflow-wrap: break-word;
}

/* Drop cap pada paragraf pertama */
.entry-content > p:first-of-type::first-letter {
  font-family: var(--font-display);
  font-size: 4.2em;
  font-weight: 700;
  float: left;
  line-height: 0.82;
  margin-right: 0.07em;
  margin-top: 0.06em;
  color: var(--accent);
}

/* Heading */
.entry-content h2 {
  font-family: var(--font-display);
  font-size: clamp(var(--text-xl), 3vw, var(--text-2xl));
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.25;
  color: var(--ink);
  margin-top: 2.5em;
  margin-bottom: 0.75em;
  position: relative;
  padding-left: var(--space-md);
}

.entry-content h2::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.1em;
  bottom: 0.1em;
  width: 2px;
  background: var(--accent);
  border-radius: 2px;
}

.entry-content h3 {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 500;
  font-style: italic;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-top: 2em;
  margin-bottom: 0.5em;
}

.entry-content h4, .entry-content h5, .entry-content h6 {
  font-family: var(--font-mono);
  font-size: var(--text-sm);
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-top: 2em;
  margin-bottom: 0.5em;
}

/* Blockquote */
.entry-content blockquote {
  border-left: 2px solid var(--accent);
  margin-left: 0;
  padding: var(--space-md) var(--space-xl);
  background: var(--accent-bg);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  font-style: italic;
  font-size: var(--text-lg);
  color: var(--ink-muted);
  line-height: 1.65;
}

.entry-content blockquote cite {
  display: block;
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  font-style: normal;
  letter-spacing: 0.05em;
  color: var(--ink-faint);
  margin-top: var(--space-md);
}
.entry-content blockquote cite::before { content: '— '; }

/* Link */
.entry-content a {
  color: var(--ink);
  text-decoration-color: var(--accent-light);
  text-underline-offset: 3px;
  transition: color var(--transition), text-decoration-color var(--transition);
}
.entry-content a:hover {
  color: var(--accent);
}

/* Code */
.entry-content code {
  font-family: var(--font-mono);
  font-size: 0.875em;
  background: var(--warm-white);
  border: 1px solid var(--rule);
  padding: 0.1em 0.4em;
  border-radius: var(--radius-sm);
  color: var(--accent);
}

.entry-content pre {
  background: var(--ink);
  color: var(--cream);
  padding: var(--space-lg) var(--space-xl);
  border-radius: var(--radius-md);
  overflow-x: auto;
  font-family: var(--font-mono);
  font-size: var(--text-sm);
  line-height: 1.6;
}

.entry-content pre code {
  background: none;
  border: none;
  padding: 0;
  color: inherit;
  font-size: inherit;
}

/* Gambar dalam konten */
.entry-content img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  filter: saturate(0.9);
  transition: filter var(--transition), transform var(--transition), box-shadow var(--transition);
}

.entry-content img:hover {
  filter: saturate(1);
  box-shadow: var(--shadow-lift);
}

/* Gambar yang lebih lebar dari kolom */
.entry-content .wide-image,
.entry-content img.wide {
  max-width: min(100vw - 2 * var(--gutter), var(--wide-width));
  margin-left: 50%;
  transform: translateX(-50%);
  border-radius: var(--radius-md);
}

/* Figure dan caption */
.entry-content figure {
  margin: 2em 0;
}

.entry-content figure img {
  width: 100%;
}

.entry-content figcaption {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  color: var(--ink-faint);
  text-align: center;
  margin-top: var(--space-sm);
  letter-spacing: 0.02em;
}

/* List */
.entry-content ul,
.entry-content ol {
  padding-left: 1.5em;
}

.entry-content li {
  margin-bottom: 0.4em;
}

.entry-content ul li::marker {
  color: var(--accent);
}

/* HR */
.entry-content hr {
  border: none;
  text-align: center;
  margin: var(--space-2xl) 0;
  color: var(--ink-faint);
  font-size: var(--text-lg);
  letter-spacing: 0.4em;
}
.entry-content hr::after {
  content: '✦ ✦ ✦';
}

/* Tabel */
.entry-content table {
  width: 100%;
  border-collapse: collapse;
  font-size: var(--text-sm);
}
.entry-content th {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink-muted);
  border-bottom: 2px solid var(--rule);
  padding: var(--space-sm) var(--space-md);
  text-align: left;
}
.entry-content td {
  border-bottom: 1px solid var(--rule);
  padding: var(--space-sm) var(--space-md);
  color: var(--ink-muted);
}

/* ── FOOTER ARTIKEL ──────────────────────────────────────────────── */
.entry-footer {
  margin-top: var(--space-3xl);
  padding-top: var(--space-xl);
  border-top: 1px solid var(--rule);
}

/* Tags */
.entry-tags {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  flex-wrap: wrap;
  font-family: var(--font-mono);
  font-size: var(--text-xs);
}

.tags-label {
  color: var(--ink-faint);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.entry-tag {
  background: var(--warm-white);
  border: 1px solid var(--rule);
  color: var(--ink-muted);
  padding: 0.2em 0.7em;
  border-radius: 2em;
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: all var(--transition);
}
.entry-tag:hover {
  background: var(--accent-bg);
  border-color: var(--accent-light);
  color: var(--accent);
}

/* Navigasi artikel */
.entry-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
  margin-top: var(--space-xl);
}

.entry-nav-link {
  display: flex;
  flex-direction: column;
  gap: 0.25em;
  text-decoration: none;
  padding: var(--space-lg);
  border: 1px solid var(--rule);
  border-radius: var(--radius-md);
  transition: all var(--transition);
  background: var(--cream);
}

.entry-nav-link:hover {
  border-color: var(--accent-light);
  background: var(--accent-bg);
  box-shadow: var(--shadow-soft);
}

.entry-nav-next { text-align: right; }

.nav-direction {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-faint);
}

.nav-title {
  font-family: var(--font-display);
  font-size: var(--text-base);
  color: var(--ink);
  font-style: italic;
  line-height: 1.3;
}

/* Kembali */
.back-home { margin-top: var(--space-xl); }

.back-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-faint);
  text-decoration: none;
  transition: all var(--transition);
}
.back-link:hover {
  color: var(--accent);
  gap: var(--space-sm);
}

/* ── KOMENTAR ────────────────────────────────────────────────────── */
.comments-section {
  margin-top: var(--space-3xl);
  padding-top: var(--space-2xl);
  border-top: 1px solid var(--rule);
}

.comments-title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  margin-bottom: var(--space-xl);
}

.comments-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

.comment {
  padding-bottom: var(--space-xl);
  border-bottom: 1px solid var(--rule);
}
.comment:last-child { border-bottom: none; }

.comment-header {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-sm);
}

.comment-author {
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: 500;
}

.comment-date {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  color: var(--ink-faint);
  letter-spacing: 0.03em;
}

.comment-body {
  color: var(--ink-muted);
  line-height: 1.75;
}

/* Form komentar */
.comment-form-wrap {
  margin-top: var(--space-2xl);
}

.form-title {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  margin-bottom: var(--space-lg);
}

/* Override form FlatPress */
.comment-form-wrap input,
.comment-form-wrap textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: var(--text-base);
  background: var(--warm-white);
  border: 1px solid var(--rule);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  color: var(--ink);
  transition: border-color var(--transition);
  appearance: none;
}

.comment-form-wrap input:focus,
.comment-form-wrap textarea:focus {
  outline: none;
  border-color: var(--accent-light);
  box-shadow: 0 0 0 3px rgba(139,69,19,0.08);
}

.comment-form-wrap label {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-faint);
  display: block;
  margin-bottom: 0.4em;
}

.comment-form-wrap button,
.comment-form-wrap input[type="submit"] {
  width: auto;
  background: var(--accent);
  color: white;
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  padding: 0.8em 2em;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}

.comment-form-wrap button:hover,
.comment-form-wrap input[type="submit"]:hover {
  background: var(--accent-light);
  transform: translateY(-1px);
  box-shadow: var(--shadow-soft);
}

/* ── PAGINASI ────────────────────────────────────────────────────── */
.pagination {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: var(--space-3xl);
  padding-top: var(--space-xl);
  border-top: 1px solid var(--rule);
  gap: var(--space-md);
}

.pagination-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-muted);
  text-decoration: none;
  padding: 0.6em 1.2em;
  border: 1px solid var(--rule);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}

.pagination-link:hover {
  border-color: var(--accent-light);
  color: var(--accent);
  background: var(--accent-bg);
}

.pagination-next { margin-left: auto; }

/* ── EMPTY STATE ─────────────────────────────────────────────────── */
.empty-state {
  text-align: center;
  padding: var(--space-3xl) 0;
  color: var(--ink-faint);
}

.empty-icon {
  font-size: var(--text-2xl);
  margin-bottom: var(--space-md);
  opacity: 0.4;
}

.empty-message {
  font-family: var(--font-display);
  font-style: italic;
  font-size: var(--text-lg);
}

/* ── FOOTER ─────────────────────────────────────────────────────── */
.site-footer {
  border-top: 1px solid var(--rule);
  padding: var(--space-xl) var(--gutter);
  margin-top: auto;
}

.footer-inner {
  max-width: var(--wide-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-md);
}

.footer-title {
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-style: italic;
  color: var(--ink-muted);
}

.footer-nav ul {
  list-style: none;
  display: flex;
  gap: var(--space-lg);
}

.footer-nav a {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ink-faint);
  text-decoration: none;
  transition: color var(--transition);
}
.footer-nav a:hover { color: var(--accent); }

.footer-credit {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  color: var(--ink-faint);
  letter-spacing: 0.03em;
}

.footer-credit a {
  color: var(--ink-faint);
  text-decoration: none;
  border-bottom: 1px dotted var(--rule);
}
.footer-credit a:hover { color: var(--accent); }

/* ── SELEKSI TEKS ────────────────────────────────────────────────── */
::selection {
  background: rgba(139,69,19,0.12);
  color: var(--ink);
}

/* ── SCROLLBAR ───────────────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: var(--warm-white); }
::-webkit-scrollbar-thumb { background: var(--rule); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--ink-faint); }

/* ── RESPONSIVE ──────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .header-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-md);
  }

  .nav-list {
    gap: var(--space-md);
    flex-wrap: wrap;
  }

  .year-marker {
    font-size: clamp(3rem, 15vw, var(--text-4xl));
  }

  .single-featured-image {
    margin-left: calc(-1 * var(--gutter));
    margin-right: calc(-1 * var(--gutter));
    width: calc(100% + 2 * var(--gutter));
  }

  .entry-nav {
    grid-template-columns: 1fr;
  }

  .entry-nav-next { text-align: left; }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .entry-content > p:first-of-type::first-letter {
    font-size: 3.5em;
  }

  .pagination {
    flex-direction: column;
    align-items: stretch;
  }
  .pagination-next { margin-left: 0; text-align: right; }
}

@media (max-width: 480px) {
  .site-header {
    padding: var(--space-lg) var(--gutter);
  }

  .single-title {
    font-size: var(--text-2xl);
  }
}

/* ── ANIMASI MASUK ───────────────────────────────────────────────── */
@media (prefers-reduced-motion: no-preference) {
  .year-group .entry-row {
    opacity: 0;
    transform: translateY(6px);
    animation: fadeUp 0.4s ease forwards;
  }

  .year-group .entry-row:nth-child(2) { animation-delay: 0.04s; }
  .year-group .entry-row:nth-child(3) { animation-delay: 0.08s; }
  .year-group .entry-row:nth-child(4) { animation-delay: 0.12s; }
  .year-group .entry-row:nth-child(5) { animation-delay: 0.16s; }
  .year-group .entry-row:nth-child(n+6) { animation-delay: 0.2s; }

  .single-entry {
    opacity: 0;
    animation: fadeUp 0.6s ease 0.1s forwards;
  }

  .year-marker {
    opacity: 0;
    transform: translateX(-8px);
    animation: slideIn 0.6s ease 0.05s forwards;
  }

  @keyframes fadeUp {
    to { opacity: 1; transform: translateY(0); }
  }
  @keyframes slideIn {
    to { opacity: 1; transform: translateX(0); }
  }
}

/* ── PRINT ───────────────────────────────────────────────────────── */
@media print {
  .site-header,
  .site-footer,
  .entry-nav,
  .back-home,
  .comments-section { display: none; }

  body {
    font-size: 12pt;
    color: black;
    background: white;
  }

  .single-title { font-size: 24pt; }

  .entry-content img {
    max-width: 100%;
    page-break-inside: avoid;
  }
}
