:root {
  --ink: #0a0a0a;
  --muted: #7a7a7a;
  --bg: #f7f5f1;
  --card: #ffffff;
  --line: #e6e1d8;
  --accent: #b08456;
  --accent-deep: #6b4a2b;
  --display: "Jost", "Futura", "Avenir Next", -apple-system, sans-serif;
  --radius: 4px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Helvetica Neue", "Inter", system-ui, sans-serif;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  line-height: 1.55;
  letter-spacing: -0.011em;
}
a { color: inherit; text-decoration: none; }

.wrap-narrow {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 28px;
}

/* Nav */
nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(247,245,241,0.88);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 28px;
  max-width: 1120px; margin: 0 auto;
}
.logo {
  font-family: var(--display);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.22em;
}
.back-home {
  font-family: var(--display);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color .2s ease;
}
.back-home:hover { color: var(--accent); }

/* Hero */
.article-hero {
  padding: 96px 0 56px;
  border-bottom: 1px solid var(--line);
}
.article-meta {
  font-family: var(--display);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 28px;
}
.article-hero h1 {
  font-family: var(--display);
  font-size: clamp(40px, 6vw, 64px);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.05;
  margin: 0 0 28px;
  text-wrap: balance;
}
.lede {
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.5;
  color: var(--muted);
  margin: 0;
  text-wrap: balance;
}

/* Body */
.article-body {
  padding: 64px 0 96px;
}
.article-body p {
  font-size: 18px;
  line-height: 1.7;
  margin: 0 0 24px;
  color: var(--ink);
}
.article-body strong { font-weight: 600; }
.article-body h2 {
  font-family: var(--display);
  font-size: clamp(26px, 3vw, 34px);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 56px 0 20px;
  text-wrap: balance;
}
.article-body ul, .article-body ol {
  padding-left: 0;
  list-style: none;
  margin: 0 0 32px;
}
.article-body ul li, .article-body ol li {
  font-size: 18px;
  line-height: 1.65;
  margin-bottom: 12px;
  padding-left: 32px;
  position: relative;
}
.article-body ul li::before {
  content: "+";
  color: var(--accent);
  font-weight: 500;
  position: absolute;
  left: 8px;
  top: 0;
}
.article-body ol {
  counter-reset: ol;
}
.article-body ol li {
  counter-increment: ol;
}
.article-body ol li::before {
  content: counter(ol, decimal-leading-zero);
  font-family: var(--display);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.22em;
  color: var(--accent);
  position: absolute;
  left: 0;
  top: 6px;
}
.pullquote {
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(22px, 2.6vw, 28px) !important;
  line-height: 1.4 !important;
  letter-spacing: -0.015em;
  color: var(--ink);
  padding: 28px 0 28px 32px;
  border-left: 2px solid var(--accent);
  margin: 40px 0 !important;
  text-wrap: balance;
}

/* CTA block */
.article-cta {
  background: var(--ink);
  color: #fff;
  padding: 80px 0;
  text-align: center;
}
.cta-eyebrow {
  font-family: var(--display);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
  display: block;
}
.article-cta h3 {
  font-family: var(--display);
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin: 0 0 14px;
  color: #fff;
  text-wrap: balance;
}
.article-cta p {
  color: #b8b3a8;
  font-size: 16px;
  max-width: 460px;
  margin: 0 auto 28px;
}
.btn {
  display: inline-block;
  background: var(--accent);
  color: #fff !important;
  padding: 18px 32px;
  border-radius: 2px;
  font-family: var(--display);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  transition: background .2s ease, transform .2s ease;
}
.btn:hover {
  background: var(--accent-deep);
  transform: translateY(-2px);
}

/* More articles */
.more-articles {
  padding: 80px 0;
  border-top: 1px solid var(--line);
  background: var(--bg);
}
.more-label {
  font-family: var(--display);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  text-align: center;
  margin-bottom: 32px;
}
.more-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.more-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}
.more-card:hover {
  transform: translateY(-3px);
  border-color: #c8c0b0;
  box-shadow: 0 24px 50px -28px rgba(0,0,0,0.14);
}
.more-num {
  font-family: var(--display);
  font-size: 28px;
  font-weight: 500;
  letter-spacing: -0.03em;
  color: var(--accent);
  margin-bottom: 12px;
}
.more-title {
  font-family: var(--display);
  font-size: 17px;
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.3;
  color: var(--ink);
}
@media (max-width: 600px) {
  .more-grid { grid-template-columns: 1fr; }
}

/* Footer */
footer {
  padding: 56px 0 64px;
  text-align: center;
  border-top: 1px solid var(--line);
  font-family: var(--display);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}
.footer-logo {
  font-family: var(--display);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.22em;
  color: var(--ink);
  margin-bottom: 14px;
}
.footer-links {
  margin-bottom: 14px;
  letter-spacing: 0.15em;
}
.footer-links a {
  color: var(--accent);
  transition: color .2s ease;
}
.footer-links a:hover { color: var(--ink); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; animation: none !important; }
}
