@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Playfair+Display:wght@600;700;800&display=swap');

:root {
  --navy: #0b2347;
  --navy-deep: #081a35;
  --blue: #2265b4;
  --gold: #f5b51b;
  --gold-dark: #8a5b00;
  --ink: #142033;
  --muted: #5e6b7e;
  --line: #dbe3ee;
  --paper: #ffffff;
  --wash: #f3f7fb;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: linear-gradient(180deg, #f4f7fb 0, #fff 42rem);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.7;
}
a { color: #155aa8; text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--navy); }
.site-shell { width: min(1180px, calc(100% - 2rem)); margin: 0 auto; }
.content-narrow { width: min(850px, calc(100% - 2rem)); }
.site-header { position: sticky; top: 0; z-index: 20; border-bottom: 1px solid #d8bf72; background: rgba(245,181,27,.97); backdrop-filter: blur(12px); }
.header-inner { min-height: 68px; display: flex; align-items: center; gap: 28px; justify-content: space-between; }
.wordmark { color: var(--navy-deep); font-size: 15px; letter-spacing: .09em; text-decoration: none; white-space: nowrap; }
.wordmark strong { color: var(--gold-dark); }
.site-nav { display: flex; align-items: center; gap: 22px; font-size: 14px; font-weight: 700; }
.site-nav a { color: var(--navy-deep); text-decoration: none; }
.site-nav .nav-cta { padding: 9px 15px; border-radius: 999px; color: #fff; background: var(--navy-deep); }
.content-hero { padding: 76px 0 42px; }
.eyebrow { margin: 0 0 10px; color: #1b5da8; font-size: 12px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }
h1, h2, h3, h4 { color: var(--navy); font-family: "Playfair Display", Georgia, serif; line-height: 1.14; }
h1 { margin: 0; font-size: clamp(2.55rem, 7vw, 4.8rem); letter-spacing: -.035em; }
h2 { margin: 3.2rem 0 1rem; font-size: clamp(1.75rem, 4vw, 2.45rem); }
h3 { margin: 2.4rem 0 .8rem; font-size: 1.45rem; }
.dek { margin: 22px 0 0; color: #4b5d72; font-size: clamp(1.08rem, 2.2vw, 1.28rem); line-height: 1.7; }
.content-date { margin: 14px 0 0; color: #788598; font-size: .85rem; }
.content-hero-visual { margin: 34px 0 0; overflow: hidden; border: 1px solid var(--line); border-radius: 24px; background: var(--paper); box-shadow: 0 24px 60px rgba(11,35,71,.12); }
.content-hero-visual img { display: block; width: 100%; height: auto; }
.article-body { padding: 10px 0 70px; font-size: 1.04rem; }
.article-body p { margin: 0 0 1.25rem; }
.article-body ul, .article-body ol { margin: 0 0 1.5rem; padding-left: 1.6rem; }
.article-body li { margin: .45rem 0; }
.article-body blockquote { margin: 2rem 0; padding: 1.2rem 1.35rem; border-left: 4px solid var(--gold); border-radius: 0 16px 16px 0; background: #fff8df; color: #3e4b5d; font-size: 1.12rem; }
.article-body code { padding: .12rem .3rem; border-radius: 5px; background: #edf2f8; font-size: .92em; }
.article-body hr { margin: 3rem 0; border: 0; border-top: 1px solid var(--line); }
.evidence-cta { padding: 0 0 72px; }
.cta-card { display: grid; grid-template-columns: 1.45fr .7fr; gap: 30px; padding: 34px; border-radius: 28px; color: #fff; background: linear-gradient(135deg, var(--navy-deep), var(--navy)); box-shadow: 0 24px 60px rgba(11,35,71,.16); }
.cta-card h2 { margin: 0 0 8px; color: #fff; }
.cta-card p { margin: 0; color: #d8e3f1; }
.cta-card .eyebrow { color: #f6c94a; }
.cta-actions { display: flex; flex-direction: column; gap: 11px; justify-content: center; }
.button { display: block; padding: 12px 16px; border-radius: 999px; text-align: center; font-size: 14px; font-weight: 800; text-decoration: none; }
.button-primary { color: var(--navy-deep); background: var(--gold); }
.button-secondary { color: #fff; border: 1px solid rgba(255,255,255,.36); background: rgba(255,255,255,.08); }
.site-footer { padding: 44px 0 22px; color: #d5dfec; background: var(--navy-deep); }
.footer-grid { display: grid; grid-template-columns: 1.6fr repeat(3, 1fr); gap: 34px; }
.footer-grid > div { display: flex; flex-direction: column; gap: 8px; }
.footer-grid p { margin: 8px 0 0; max-width: 410px; color: #aebdce; font-size: 14px; }
.footer-grid strong { color: #fff; font-size: 12px; letter-spacing: .12em; text-transform: uppercase; }
.footer-grid a { color: #d5dfec; font-size: 14px; text-decoration: none; }
.footer-wordmark, .footer-wordmark span { color: #fff; }
.footer-wordmark strong { color: var(--gold); }
.footer-bottom { margin-top: 32px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.12); color: #889ab0; font-size: 13px; }

@media (max-width: 820px) {
  .header-inner { align-items: flex-start; flex-direction: column; padding: 14px 0; }
  .site-nav { width: 100%; flex-wrap: wrap; gap: 11px 18px; }
  .site-nav .nav-cta { margin-left: auto; }
  .content-hero { padding-top: 48px; }
  .cta-card { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 520px) {
  .site-nav a:not(.nav-cta) { font-size: 13px; }
  .site-nav .nav-cta { width: 100%; margin-left: 0; text-align: center; }
  .content-hero { padding-top: 38px; }
  .content-narrow { width: min(100% - 1.25rem, 850px); }
  .cta-card { padding: 25px; border-radius: 22px; }
  .footer-grid { grid-template-columns: 1fr; }
}
