:root {
  --ink: #1a120b;
  --parchment: #f5ede0;
  --ochre: #c87941;
  --sienna: #8b3a1e;
  --moss: #4a5c3a;
  --gold: #c9a84c;
  --cream: #faf5ec;
  --shadow: rgba(26,18,11,0.18);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  background: var(--cream);
  color: var(--ink);
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  line-height: 1.7;
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 3rem;
  background: rgba(250,245,236,0.88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(200,121,65,0.2);
}

.nav-logo {
  font-family: 'Cinzel Decorative', serif;
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  color: var(--sienna);
  text-decoration: none;
}

.nav-links { display: flex; gap: 2.5rem; list-style: none; }

.nav-links a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.95rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover, .nav-links a.active { color: var(--ochre); }

/* ── PAGE WRAP ── */
.page { max-width: 720px; margin: 0 auto; padding: 9rem 2rem 5rem; }

/* ── JOURNAL INDEX ── */
.journal-head { text-align: center; margin-bottom: 4rem; }

.journal-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ochre);
  margin-bottom: 1.2rem;
}

.journal-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.6rem, 6vw, 3.8rem);
  line-height: 1.05;
  color: var(--ink);
}

.journal-intro {
  margin: 1.2rem auto 0;
  font-size: 1.15rem;
  font-weight: 300;
  color: #5a3e2b;
  max-width: 480px;
}

.post-list { display: flex; flex-direction: column; gap: 2.5rem; }

.post-card {
  display: block;
  text-decoration: none;
  color: inherit;
  border-top: 1px solid rgba(200,121,65,0.25);
  padding-top: 2.5rem;
  transition: opacity 0.2s;
}

.post-card:hover { opacity: 0.7; }

.post-date {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ochre);
}

.post-card h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.9rem;
  line-height: 1.15;
  margin: 0.6rem 0 0.7rem;
  color: var(--ink);
}

.post-excerpt { font-size: 1.1rem; font-weight: 300; color: #5a3e2b; }

.post-more {
  display: inline-block;
  margin-top: 1rem;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sienna);
}

/* ── ARTICLE ── */
.back-link {
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ochre);
  text-decoration: none;
  margin-bottom: 2.5rem;
}

.back-link:hover { color: var(--sienna); }

.article-date {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ochre);
}

.article-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 6vw, 3.6rem);
  line-height: 1.06;
  margin: 0.9rem 0 0.8rem;
  color: var(--ink);
}

.article-dek {
  font-size: 1.2rem;
  font-style: italic;
  font-weight: 300;
  color: var(--sienna);
  margin-bottom: 2.5rem;
}

.article-figure { margin: 0 0 2.8rem; }
.article-figure img { width: 100%; height: auto; display: block; }
.article-figure figcaption {
  margin-top: 0.7rem;
  font-size: 0.85rem;
  font-style: italic;
  color: #8a6a4a;
  text-align: center;
}

.article-body p { margin-bottom: 1.5rem; font-size: 1.2rem; line-height: 1.75; color: #3a2a1c; }
.article-body p.lead { font-size: 1.32rem; }
.article-body em { font-style: italic; }

/* ── END CTA ── */
.article-cta {
  margin-top: 3.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(200,121,65,0.25);
  text-align: center;
}

.article-cta p { font-size: 1.1rem; color: #5a3e2b; margin-bottom: 1.4rem; }

.cta-row { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

.btn-primary, .btn-secondary {
  display: inline-block;
  padding: 0.9rem 1.8rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}

.btn-primary { background: var(--sienna); color: var(--cream); }
.btn-primary:hover { background: var(--ochre); }
.btn-secondary { border: 1px solid var(--ochre); color: var(--ochre); }
.btn-secondary:hover { background: var(--ochre); color: var(--cream); }

/* ── FOOTER ── */
footer {
  background: var(--ink);
  color: rgba(245,237,224,0.5);
  padding: 2.5rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.2rem;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
}

.footer-logo { font-family: 'Cinzel Decorative', serif; font-size: 0.85rem; color: var(--ochre); }
.footer-links { display: flex; gap: 2rem; list-style: none; }
.footer-links a { color: rgba(245,237,224,0.5); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--ochre); }
.footer-social { display: flex; gap: 1.1rem; align-items: center; }
.footer-social a { color: rgba(245,237,224,0.5); display: inline-flex; transition: color 0.2s, transform 0.2s; }
.footer-social a:hover { color: var(--ochre); transform: translateY(-2px); }
.footer-social svg { width: 22px; height: 22px; display: block; }

@media (max-width: 640px) {
  nav { padding: 1rem 1.25rem; }
  .nav-links { gap: 1.2rem; }
  .nav-links a { font-size: 0.72rem; }
  .page { padding: 7rem 1.25rem 4rem; }
  .article-body p { font-size: 1.12rem; }
  footer { flex-direction: column; text-align: center; gap: 1.4rem; padding: 2.5rem 1.25rem; }
}
