/* ============================================================
   nataleechamplin.com  ·  Single Stylesheet
   Brand: Linen #f9f7f3 / Navy #011a2d / Prussian #064769 / Accent #b8e8fd
   Type: EB Garamond (titles) / Lato (body) / JetBrains Mono (eyebrows)
   ============================================================ */

:root {
  --linen: #f9f7f3;
  --linen-shade: #f1ede5;
  --linen-deep: #ebe5d8;
  --linen-border: #e2dccf;
  --navy: #011a2d;
  --prussian: #064769;
  --accent: #b8e8fd;
  --text: #1a1a1a;
  --text-muted: #6b6b6b;
  --text-faint: #999;
  --max-width: 1180px;
  --content-width: 760px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Lato', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--linen);
  color: var(--text);
  line-height: 1.65;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { color: var(--prussian); text-decoration: none; transition: color 0.15s ease; }
a:hover { color: var(--navy); }

img { max-width: 100%; height: auto; display: block; }

/* ---------- Topbar ---------- */
.topbar {
  background: var(--navy);
  color: var(--linen);
  padding: 18px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.topbar-left { display: flex; align-items: center; gap: 18px; }
.topbar-left::before { content: ""; display: inline-block; width: 32px; height: 1px; background: var(--linen); }
.topbar a { color: var(--linen); opacity: 0.85; }
.topbar a:hover { opacity: 1; }
.topbar-nav { display: flex; gap: 26px; }

/* ---------- Hero ---------- */
.hero {
  padding: 120px 48px 100px;
  max-width: var(--max-width);
  margin: 0 auto;
}
.hero .eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 11px;
  color: var(--text-muted);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 500;
}
.hero .eyebrow::before { content: ""; display: inline-block; width: 28px; height: 1px; background: var(--text-muted); }
.hero h1 {
  font-family: 'EB Garamond', serif;
  font-size: clamp(44px, 7vw, 88px);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.02;
  margin-bottom: 32px;
  max-width: 900px;
  color: var(--text);
}
.hero .subline {
  font-family: 'Lato', sans-serif;
  font-size: 19px;
  color: var(--text);
  max-width: 720px;
  line-height: 1.6;
  margin-bottom: 44px;
}
.hero-ctas { display: flex; flex-wrap: wrap; align-items: center; gap: 22px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 16px 32px;
  font-family: 'Lato', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: all 0.15s ease;
  border: none;
  cursor: pointer;
}
.btn-primary {
  background: var(--navy);
  color: var(--linen);
}
.btn-primary:hover { background: var(--prussian); color: var(--linen); }
.btn-secondary {
  background: transparent;
  color: var(--navy);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 6px;
  padding: 16px 0;
  font-size: 13px;
}
.btn-secondary:hover { color: var(--prussian); }
.btn-text-sep { color: var(--text-faint); }

/* ---------- Section base ---------- */
section { padding: 96px 48px; }
.section-inner { max-width: var(--max-width); margin: 0 auto; }
.section-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 11px;
  color: var(--text-muted);
  margin-bottom: 18px;
  font-weight: 500;
}
.section-headline {
  font-family: 'EB Garamond', serif;
  font-size: clamp(32px, 4.5vw, 48px);
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.15;
  font-style: italic;
  margin-bottom: 28px;
  max-width: 820px;
}
.section-sub {
  font-size: 17px;
  color: var(--text);
  max-width: 720px;
  line-height: 1.65;
  margin-bottom: 56px;
}

/* ---------- Section: About ---------- */
.about { background: var(--linen); }
.about .body p {
  font-size: 17px;
  line-height: 1.75;
  margin-bottom: 22px;
  max-width: 740px;
}
.about .body p.emphasis {
  font-family: 'EB Garamond', serif;
  font-style: italic;
  font-size: 24px;
  line-height: 1.4;
  color: var(--navy);
  margin: 36px 0;
}

/* ---------- Pillars grid ---------- */
.pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 64px;
}
.pillar {
  background: var(--linen-shade);
  padding: 32px 28px;
  border-radius: 2px;
  border-top: 1px solid var(--prussian);
}
.pillar-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--prussian);
  text-transform: uppercase;
  margin-bottom: 14px;
  font-weight: 500;
}
.pillar h3 {
  font-family: 'EB Garamond', serif;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.25;
  margin-bottom: 14px;
  color: var(--text);
}
.pillar p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text);
}

/* ---------- Section: Three Paths ---------- */
.paths { background: var(--linen-shade); }
.paths-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 24px;
}
.path-card {
  background: var(--linen);
  padding: 40px 36px;
  border-radius: 2px;
  display: flex;
  flex-direction: column;
}
.path-card.primary { border-top: 3px solid var(--prussian); }
.path-card .eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--prussian);
  text-transform: uppercase;
  margin-bottom: 18px;
  font-weight: 500;
}
.path-card h3 {
  font-family: 'EB Garamond', serif;
  font-size: 32px;
  font-weight: 500;
  line-height: 1.1;
  margin-bottom: 20px;
  color: var(--text);
}
.path-card .body { font-size: 15px; line-height: 1.65; margin-bottom: 20px; }
.path-card .who {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 28px;
  padding-top: 18px;
  border-top: 1px solid var(--linen-border);
  font-style: italic;
}
.path-card .cta { margin-top: auto; }

/* ---------- Section: Proof ---------- */
.proof { background: var(--linen); }
.proof-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  margin-top: 24px;
}
.testimonial {
  background: var(--linen-shade);
  padding: 36px 38px;
  border-radius: 2px;
  border-left: 2px solid var(--prussian);
}
.testimonial blockquote {
  font-family: 'EB Garamond', serif;
  font-size: 24px;
  line-height: 1.4;
  color: var(--navy);
  margin-bottom: 22px;
  font-style: italic;
}
.testimonial cite {
  font-family: 'Lato', sans-serif;
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--text);
  font-style: normal;
  font-weight: 700;
}
.testimonial cite .role {
  font-weight: 400;
  color: var(--text-muted);
  margin-left: 4px;
}
.proof-line {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--linen-border);
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  text-align: right;
  text-transform: uppercase;
}

/* ---------- Section: Methodology (dark) ---------- */
.methodology {
  background: var(--navy);
  color: var(--linen);
}
.methodology .section-eyebrow { color: rgba(249, 247, 243, 0.6); }
.methodology .section-headline { color: var(--linen); }
.methodology p {
  font-size: 17px;
  line-height: 1.75;
  margin-bottom: 22px;
  max-width: 760px;
  color: rgba(249, 247, 243, 0.92);
}
.methodology .cta-row { margin-top: 32px; }
.methodology .btn-primary {
  background: var(--accent);
  color: var(--navy);
}
.methodology .btn-primary:hover { background: var(--linen); color: var(--navy); }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy);
  color: var(--linen);
  padding: 96px 48px 56px;
}
.footer-inner { max-width: var(--max-width); margin: 0 auto; }
.footer-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 11px;
  color: rgba(249, 247, 243, 0.6);
  margin-bottom: 18px;
  font-weight: 500;
}
.footer-headline {
  font-family: 'EB Garamond', serif;
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.1;
  font-style: italic;
  margin-bottom: 48px;
  color: var(--linen);
}
.doors {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 72px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(249, 247, 243, 0.15);
}
.door h4 {
  font-family: 'EB Garamond', serif;
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 14px;
  color: var(--linen);
}
.door a {
  color: var(--accent);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 700;
}
.door a:hover { color: var(--linen); }
.footer-bio {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 56px;
  margin-bottom: 48px;
}
.footer-bio h5 {
  font-family: 'EB Garamond', serif;
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 14px;
  color: var(--linen);
}
.footer-bio p {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(249, 247, 243, 0.82);
  margin-bottom: 10px;
}
.footer-connect a {
  color: var(--accent);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-right: 18px;
}
.footer-connect a:hover { color: var(--linen); }
.footer-legal {
  padding-top: 32px;
  border-top: 1px solid rgba(249, 247, 243, 0.15);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: rgba(249, 247, 243, 0.6);
  letter-spacing: 0.04em;
}

/* ============================================================
   Article pages
   ============================================================ */
.article-hero {
  padding: 96px 48px 56px;
  max-width: 880px;
  margin: 0 auto;
}
.breadcrumb {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 28px;
}
.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--navy); }
.breadcrumb .sep { margin: 0 10px; color: var(--text-faint); }

.article-hero h1 {
  font-family: 'EB Garamond', serif;
  font-size: clamp(38px, 5.5vw, 64px);
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 1.1;
  margin-bottom: 28px;
  color: var(--text);
}
.article-meta {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 14px;
  color: var(--text-muted);
  padding-top: 24px;
  border-top: 1px solid var(--linen-border);
}
.article-meta .author { font-weight: 700; color: var(--text); }
.article-meta time { font-family: 'JetBrains Mono', monospace; font-size: 12px; letter-spacing: 0.06em; }

.article-body {
  max-width: 720px;
  margin: 0 auto;
  padding: 56px 48px 96px;
}
.article-body p {
  font-size: 18px;
  line-height: 1.75;
  margin-bottom: 24px;
  color: var(--text);
}
.article-body h2 {
  font-family: 'EB Garamond', serif;
  font-size: 36px;
  font-weight: 500;
  letter-spacing: -0.01em;
  margin: 56px 0 20px;
  color: var(--text);
}
.article-body h3 {
  font-family: 'EB Garamond', serif;
  font-size: 26px;
  font-weight: 500;
  margin: 40px 0 14px;
  color: var(--text);
}
.article-body ul, .article-body ol { margin: 0 0 24px 22px; }
.article-body li { font-size: 18px; line-height: 1.75; margin-bottom: 10px; }
.article-body blockquote {
  font-family: 'EB Garamond', serif;
  font-style: italic;
  font-size: 24px;
  line-height: 1.4;
  color: var(--navy);
  padding: 8px 0 8px 28px;
  border-left: 2px solid var(--prussian);
  margin: 32px 0;
}
.article-body a { border-bottom: 1px solid var(--linen-border); }
.article-body a:hover { border-bottom-color: var(--prussian); }

/* Article index */
.articles-index {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 96px 48px;
}
.articles-index h1 {
  font-family: 'EB Garamond', serif;
  font-size: clamp(44px, 6vw, 72px);
  font-weight: 500;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
  color: var(--text);
}
.articles-index .lede {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 640px;
  margin-bottom: 64px;
}
.article-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid var(--linen-border);
}
.article-list-item {
  padding: 32px 0;
  border-bottom: 1px solid var(--linen-border);
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 36px;
  align-items: baseline;
}
.article-list-item time {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  text-transform: uppercase;
}
.article-list-item h2 {
  font-family: 'EB Garamond', serif;
  font-size: 28px;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 8px;
}
.article-list-item h2 a { color: var(--text); }
.article-list-item h2 a:hover { color: var(--prussian); }
.article-list-item p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-muted);
}
.articles-empty {
  padding: 56px 48px;
  background: var(--linen-shade);
  border-radius: 2px;
  text-align: center;
  color: var(--text-muted);
  font-size: 16px;
  font-style: italic;
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1000px) {
  .pillars { grid-template-columns: repeat(2, 1fr); }
  .paths-grid { grid-template-columns: 1fr; }
  .proof-grid { grid-template-columns: 1fr; }
  .doors { grid-template-columns: 1fr; gap: 32px; }
  .footer-bio { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 720px) {
  .topbar { padding: 14px 24px; flex-wrap: wrap; gap: 14px; }
  .topbar-nav { gap: 16px; }
  .hero { padding: 72px 24px 64px; }
  section { padding: 64px 24px; }
  .pillars { grid-template-columns: 1fr; gap: 14px; }
  .testimonial { padding: 28px 26px; }
  .testimonial blockquote { font-size: 20px; }
  .site-footer { padding: 64px 24px 40px; }
  .footer-legal { flex-direction: column; gap: 14px; text-align: center; }
  .article-hero { padding: 56px 24px 32px; }
  .article-body { padding: 32px 24px 64px; }
  .article-body p, .article-body li { font-size: 17px; }
  .articles-index { padding: 56px 24px; }
  .article-list-item { grid-template-columns: 1fr; gap: 8px; }
  .hero-ctas { flex-direction: column; align-items: flex-start; gap: 10px; }
  .btn-text-sep { display: none; }
}
