:root {
  --ink:        #1A1A2E;
  --accent:     #B5541A;
  --cream:      #FAF8F3;
  --warm-box:   #F2EDE4;
  --light-rule: #D8D4CC;
  --muted:      #5A5A6A;
  --label:      #8B7355;
  --white:      #FFFFFF;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--cream);
  color: var(--ink);
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

/* NAV */
nav {
  background: var(--ink);
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 52px;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 3px solid var(--accent);
}
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--cream);
  text-decoration: none;
}
.nav-logo span { color: var(--accent); }
.nav-links { display: flex; gap: 24px; list-style: none; }
.nav-links a {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--label);
  text-decoration: none;
  transition: color 0.15s;
}
.nav-links a:hover { color: var(--cream); }
.nav-cta {
  background: var(--accent) !important;
  color: var(--white) !important;
  padding: 7px 14px;
  border-radius: 3px;
}
@media (max-width: 600px) {
  .nav-links li:not(:last-child) { display: none; }
}

/* ARTICLE HERO */
.article-hero {
  background: var(--ink);
  padding: 56px 24px 48px;
  border-bottom: 3px solid var(--accent);
}
.article-hero-inner {
  max-width: 740px;
  margin: 0 auto;
}
.article-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}
.article-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 6vw, 52px);
  font-weight: 900;
  color: var(--cream);
  line-height: 1.08;
  margin-bottom: 16px;
}
.article-deck {
  font-family: 'Lora', serif;
  font-size: 17px;
  color: var(--light-rule);
  line-height: 1.6;
}

/* ARTICLE BODY */
.article-body { padding: 48px 24px 64px; }
.article-inner {
  max-width: 680px;
  margin: 0 auto;
}
.article-lead {
  font-family: 'Lora', serif;
  font-size: 18px;
  color: var(--ink);
  line-height: 1.7;
  border-left: 3px solid var(--accent);
  padding-left: 20px;
  margin-bottom: 36px;
}
.article-rule {
  border: none;
  border-top: 1px solid var(--light-rule);
  margin: 32px 0;
}
.article-inner h2 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--ink);
  margin: 36px 0 12px;
}
.article-inner p {
  font-family: 'Lora', serif;
  font-size: 16px;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 14px;
}

/* Q&A */
.qa-block {
  background: var(--warm-box);
  border-radius: 4px;
  padding: 18px 20px;
  margin-bottom: 12px;
}
.qa-q {
  font-family: 'Lora', serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 6px;
}
.qa-a {
  font-family: 'Lora', serif;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
}

/* INLINE CTA */
.cta-inline {
  background: var(--ink);
  border-radius: 4px;
  padding: 28px 24px;
  text-align: center;
  margin-top: 40px;
}
.cta-inline p {
  font-family: 'Lora', serif;
  font-size: 16px;
  color: var(--light-rule);
  margin-bottom: 16px;
  line-height: 1.5;
}
.btn-primary {
  background: var(--accent);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: 3px;
  text-decoration: none;
  display: inline-block;
  transition: background 0.15s;
  touch-action: manipulation;
}
.btn-primary:hover { background: #9A4515; }

/* FOOTER */
footer {
  background: var(--ink);
  padding: 32px 24px;
  text-align: center;
}
.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 10px;
}
.footer-logo span { color: var(--accent); }
.footer-links {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 14px;
}
.footer-links a {
  font-size: 12px;
  color: var(--label);
  text-decoration: none;
}
.footer-links a:hover { color: var(--cream); }
.footer-disclaimer {
  font-size: 11px;
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.6;
}
