:root {
  --accent: #7BC8F6;
  --paper: #FAF7F2;
  --ink: #1a1a1a;
  --muted: #6b6b6b;
  --border: #e5e0d4;
  --tan: #c8c2b3;
}

html, body { margin: 0; padding: 0; background: #f0eee9; font-family: 'Work Sans', system-ui, sans-serif; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
* { box-sizing: border-box; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.page {
  width: 100%; max-width: 820px; margin: 0 auto;
  background: var(--paper); color: var(--ink);
  font-size: 14px; line-height: 1.4;
}

.hand { font-family: 'Caveat', cursive; font-weight: 600; }
.label-ink { font-family: 'Caveat', cursive; font-size: 14px; color: var(--ink); font-weight: 500; opacity: 0.6; }

/* ---- NAV ---- */
.nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 56px; border-bottom: 1px solid var(--border);
  gap: 16px; flex-wrap: wrap;
}
.nav-logo { display: flex; align-items: center; gap: 8px; }
.nav-logo span { font-family: 'Caveat', cursive; font-weight: 600; font-size: 24px; }
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px;
  background: transparent; border: 1.5px solid var(--ink);
  border-radius: 999px;
  font-family: 'Work Sans', sans-serif; font-weight: 600; font-size: 13px;
  color: var(--ink); cursor: pointer; transition: opacity 0.15s;
}
.btn:hover { opacity: 0.8; }
.btn-primary { background: var(--accent); box-shadow: 3px 3px 0 var(--ink); }
.btn-big { padding: 14px 22px; font-size: 16px; }

/* ---- ARTICLE HEADER ---- */
.article-header {
  padding: 56px 56px 24px;
}
.article-header .kicker {
  font-family: 'Caveat', cursive; font-size: 16px;
  color: var(--ink); opacity: 0.7; font-weight: 500;
  margin-bottom: 8px;
}
.breadcrumb { font-size: 13px; color: var(--muted); margin-bottom: 14px; }
.breadcrumb a:hover { color: var(--ink); }
.article-header h1 {
  font-size: 48px; line-height: 1.05; letter-spacing: -1.4px;
  margin: 0; font-weight: 700;
}
.article-meta {
  margin-top: 16px; color: var(--muted); font-size: 13px;
  display: flex; gap: 14px; flex-wrap: wrap;
}

/* ---- COVER ---- */
.cover { padding: 20px 56px 0; }
.cover-image, .cover-placeholder {
  width: 100%; aspect-ratio: 16 / 9;
  border: 1.5px solid var(--ink); border-radius: 14px;
  overflow: hidden;
  box-shadow: 6px 6px 0 var(--accent), 6px 6px 0 1.5px var(--ink);
}
.cover-image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.cover-placeholder {
  display: flex; align-items: center; justify-content: center;
  background: rgba(0,0,0,0.02); border-style: dashed;
  color: var(--muted); font-family: 'Caveat', cursive; font-size: 22px;
  text-align: center; padding: 16px;
}

/* ---- ARTICLE BODY ---- */
.article-body {
  padding: 36px 56px 24px;
  font-size: 16px; line-height: 1.65; color: var(--ink);
}
.article-body p { margin: 0 0 16px; }
.article-body h2 {
  font-size: 26px; font-weight: 700; letter-spacing: -0.4px;
  margin: 36px 0 12px;
}
.article-body h3 {
  font-size: 18px; font-weight: 600; margin: 24px 0 8px;
}
.article-body ul, .article-body ol { padding-left: 22px; margin: 0 0 16px; }
.article-body li { margin-bottom: 6px; }
.article-body strong { font-weight: 600; }
.article-body blockquote {
  margin: 22px 0;
  padding: 6px 0 6px 18px;
  border-left: 4px solid var(--accent);
  font-style: italic; color: var(--ink);
  font-size: 18px;
}
.article-body a:not(.btn) { border-bottom: 1.5px dashed var(--ink); }
.article-body a:not(.btn):hover { opacity: 0.7; }

/* ---- CTA ---- */
.cta {
  margin: 40px 56px 0;
  border: 1.5px solid var(--ink); border-radius: 14px;
  padding: 28px;
  background: var(--accent);
  box-shadow: 6px 6px 0 var(--ink);
}
.cta .label-ink { opacity: 0.7; }
.cta h3 {
  font-size: 26px; font-weight: 700; letter-spacing: -0.4px;
  margin: 4px 0 6px;
}
.cta p { margin: 0 0 18px; }
.cta-row { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.cta-row .or {
  font-family: 'Caveat', cursive; font-size: 14px;
  color: var(--ink); opacity: 0.75;
}

/* ---- RELATED ---- */
.related {
  padding: 48px 56px 24px;
}
.related h3 {
  font-size: 20px; font-weight: 700; letter-spacing: -0.2px;
  margin: 0 0 14px;
}
.related-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
}
.related-card {
  display: block;
  border: 1.5px solid var(--ink); border-radius: 10px;
  background: var(--paper); padding: 16px;
  transition: transform 0.15s;
}
.related-card:hover { transform: translate(-1px,-1px); }
.related-card .tag {
  font-family: 'Caveat', cursive; font-size: 14px;
  color: var(--ink); opacity: 0.6; font-weight: 500;
}
.related-card h4 {
  font-weight: 600; font-size: 15px; margin: 4px 0 0;
  line-height: 1.3;
}

/* ---- FOOTER ---- */
.footer {
  margin-top: 48px;
  padding: 32px 56px; border-top: 1px solid var(--border);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px; font-size: 12px; color: var(--muted);
}
.footer-logo { display: flex; align-items: center; gap: 8px; }
.footer-logo span { font-family: 'Caveat', cursive; font-weight: 600; }
.footer-links { display: flex; gap: 20px; }
.footer-links a:hover { color: var(--ink); }

/* ---- RESPONSIVE ---- */
@media (max-width: 720px) {
  .nav, .article-header, .cover, .article-body, .cta, .related, .footer {
    padding-left: 20px; padding-right: 20px;
  }
  .cta { margin-left: 20px; margin-right: 20px; }
  .related { padding-left: 20px; padding-right: 20px; }
  .article-header { padding-top: 32px; padding-bottom: 18px; }
  .article-header h1 { font-size: 32px; letter-spacing: -0.8px; }
  .article-body { font-size: 15px; padding-top: 24px; }
  .related-grid { grid-template-columns: 1fr; }
}
