:root {
  --linen: #f4f0eb;
  --linen-dark: #ece8e2;
  --white: #fdfcfa;
  --charcoal: #1a1814;
  --charcoal-mid: #2a2722;
  --slate: #3d3a35;
  --mid: #5c5851;
  --muted: #7a7670;
  --rule-light: #dedad4;
  --rule-mid: #c9c4bb;
  --bronze: #c4712a;
  --bronze-light: #d4844a;
  --bronze-bg: rgba(196,113,42,0.06);
  --serif: 'Playfair Display', Georgia, serif;
  --sans: 'Jost', system-ui, sans-serif;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body { background: var(--white); color: var(--slate); font-family: var(--sans); font-weight: 300; line-height: 1.7; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
a { color: inherit; }

/* NAV */
nav { position: sticky; top: 0; z-index: 100; background: var(--charcoal); display: flex; align-items: center; justify-content: space-between; padding: 0 40px; height: 52px; border-bottom: 1px solid rgba(196,113,42,0.3); }
.nav-brand { display: flex; align-items: center; gap: 12px; }
.nav-wordmark { font-family: var(--sans); font-size: 13px; font-weight: 600; letter-spacing: 0.06em; color: var(--linen); text-decoration: none; }
.nav-pipe { width: 1px; height: 14px; background: rgba(245,240,232,0.2); }
.nav-sub { font-family: var(--sans); font-size: 10px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--bronze); }
.nav-links { list-style: none; display: flex; align-items: center; gap: 28px; }
.nav-links a { font-family: var(--sans); font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(245,240,232,0.7); text-decoration: none; transition: color 0.2s; }
.nav-links a:hover { color: var(--bronze-light); }
.nav-links .nav-cta { background: var(--bronze); color: var(--white); padding: 7px 16px; border-radius: 1px; letter-spacing: 0.08em; }
.nav-links .nav-cta:hover { background: var(--bronze-light); color: var(--charcoal); }

/* PAGE HEADER */
.page-header { background: var(--charcoal); padding: 72px 48px 60px; }
.page-header-inner { max-width: 880px; margin: 0 auto; }
.crumbs { font-family: var(--sans); font-size: 11px; font-weight: 500; letter-spacing: 0.04em; color: rgba(244,240,235,0.45); margin-bottom: 26px; }
.crumbs a { color: rgba(244,240,235,0.6); text-decoration: none; }
.crumbs a:hover { color: var(--bronze-light); }
.page-eyebrow { font-family: var(--sans); font-size: 10px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--bronze); margin-bottom: 18px; }
.page-title { font-family: var(--serif); font-size: 46px; font-weight: 700; color: var(--linen); line-height: 1.14; margin-bottom: 22px; letter-spacing: -0.01em; }
.page-question { font-family: var(--serif); font-style: italic; font-size: 21px; font-weight: 400; color: var(--bronze-light); line-height: 1.5; margin-bottom: 20px; }
.page-intro { font-family: var(--sans); font-size: 17px; font-weight: 300; line-height: 1.75; color: rgba(244,240,235,0.7); max-width: 720px; }

/* BODY */
.guide-body { max-width: 760px; margin: 0 auto; padding: 64px 48px 24px; }
.g-section { margin-bottom: 48px; }
.g-section:last-child { margin-bottom: 0; }
.g-kicker { font-family: var(--sans); font-size: 10px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--bronze); margin-bottom: 12px; }
.g-h2 { font-family: var(--serif); font-size: 28px; font-weight: 700; color: var(--charcoal); line-height: 1.25; margin-bottom: 18px; letter-spacing: -0.01em; }
.g-section p { font-family: var(--sans); font-size: 16.5px; font-weight: 300; line-height: 1.8; color: var(--slate); margin-bottom: 16px; }
.g-section p:last-child { margin-bottom: 0; }
.g-section p strong { font-weight: 600; color: var(--charcoal); }
.g-lead { font-family: var(--serif); font-size: 20px; font-weight: 400; line-height: 1.55; color: var(--charcoal); margin-bottom: 28px; }

/* COVERS — what this page walks through */
.covers { background: var(--linen); border: 1px solid var(--rule-light); border-radius: 2px; padding: 30px 32px; margin-bottom: 48px; }
.covers-title { font-family: var(--sans); font-size: 10px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--bronze); margin-bottom: 18px; }
.cover-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 28px; }
.cover-item { display: flex; gap: 12px; align-items: baseline; font-family: var(--sans); font-size: 14.5px; font-weight: 400; color: var(--charcoal); }
.cover-item::before { content: ''; flex-shrink: 0; width: 14px; height: 1px; background: var(--bronze); position: relative; top: -4px; }

/* LIST */
.g-list { list-style: none; display: flex; flex-direction: column; gap: 12px; margin: 4px 0 16px; }
.g-list li { font-family: var(--sans); font-size: 16px; font-weight: 300; line-height: 1.7; color: var(--slate); padding-left: 22px; position: relative; }
.g-list li::before { content: '—'; position: absolute; left: 0; color: var(--bronze); }
.g-list li strong { font-weight: 600; color: var(--charcoal); }

/* EXAMPLE BOX */
.example { border-left: 2px solid var(--bronze); background: var(--bronze-bg); padding: 22px 26px; margin: 8px 0 16px; border-radius: 0 2px 2px 0; }
.example-label { font-family: var(--sans); font-size: 9px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--bronze); margin-bottom: 10px; }
.example p { font-family: var(--sans); font-size: 15.5px; font-weight: 300; line-height: 1.75; color: var(--slate); margin-bottom: 10px; }
.example p:last-child { margin-bottom: 0; }

/* KEY INSIGHT */
.insight { background: var(--charcoal); border-radius: 2px; padding: 44px 48px; margin: 8px 0 0; }
.insight-label { font-family: var(--sans); font-size: 10px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--bronze); margin-bottom: 16px; }
.insight p { font-family: var(--serif); font-size: 27px; font-weight: 400; line-height: 1.4; color: var(--linen); }
.insight p em, .insight .em { font-style: normal; color: var(--bronze-light); }

/* CTA NEXT */
.cta-next { display: block; text-decoration: none; background: var(--linen-dark); border: 1px solid var(--rule-mid); border-radius: 2px; padding: 30px 34px; margin: 56px auto 0; max-width: 760px; transition: border-color 0.2s, background 0.2s; }
.cta-next:hover { border-color: var(--bronze); background: var(--linen); }
.cta-next-label { font-family: var(--sans); font-size: 10px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--bronze); margin-bottom: 10px; }
.cta-next-title { font-family: var(--serif); font-size: 25px; font-weight: 700; color: var(--charcoal); line-height: 1.25; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.cta-next-arrow { color: var(--bronze); font-size: 22px; flex-shrink: 0; }

/* RELATED */
.related { max-width: 760px; margin: 56px auto 0; padding: 36px 0 0; border-top: 1px solid var(--rule-light); }
.related-title { font-family: var(--sans); font-size: 10px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); margin-bottom: 18px; }
.related-links { display: flex; flex-direction: column; gap: 12px; }
.related-links a { font-family: var(--serif); font-size: 18px; font-weight: 400; color: var(--charcoal); text-decoration: none; transition: color 0.2s; }
.related-links a:hover { color: var(--bronze); }

/* FOOTER */
footer { background: var(--charcoal); padding: 32px 48px; display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; margin-top: 72px; }
.ft-wordmark { font-family: var(--sans); font-size: 13px; font-weight: 600; letter-spacing: 0.06em; color: var(--linen); }
.ft-copy { font-family: var(--sans); font-size: 12px; color: rgba(244,240,235,0.4); }
.ft-back { font-family: var(--sans); font-size: 11px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--bronze); text-decoration: none; }
.ft-back:hover { color: var(--bronze-light); }

/* FADE */
.fade-up { opacity: 0; transform: translateY(18px); transition: opacity 0.55s ease, transform 0.55s ease; }
.fade-up.visible { opacity: 1; transform: none; }

@media (max-width: 820px) {
  nav { padding: 0 20px; }
  .nav-links { display: none; }
  .page-header { padding: 44px 24px 40px; }
  .page-title { font-size: 32px; }
  .page-question { font-size: 18px; }
  .page-intro { font-size: 16px; }
  .guide-body { padding: 44px 24px 16px; }
  .g-h2 { font-size: 24px; }
  .g-lead { font-size: 18px; }
  .cover-grid { grid-template-columns: 1fr; gap: 12px; }
  .insight { padding: 32px 26px; }
  .insight p { font-size: 22px; }
  .cta-next { padding: 26px 24px; }
  .cta-next-title { font-size: 21px; }
  footer { padding: 24px; }
}
