:root {
  --ink: #101923;
  --navy: #071722;
  --navy-2: #0d2533;
  --paper: #f6f0e3;
  --paper-2: #fffaf0;
  --copper: #a85a32;
  --copper-2: #c77748;
  --sage: #58735f;
  --line: rgba(16, 25, 35, 0.16);
  --muted: #61707a;
  --white: #fffdf7;
  --max: 1160px;
  --radius: 18px;
  --shadow: 0 18px 50px rgba(7, 23, 34, 0.10);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 20% 0%, rgba(168,90,50,.06), transparent 28rem),
    linear-gradient(180deg, var(--paper-2) 0%, var(--paper) 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.58;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--copper); }
img { max-width: 100%; }

.container { width: min(calc(100% - 40px), var(--max)); margin: 0 auto; }
.narrow { width: min(calc(100% - 40px), 820px); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid rgba(255,255,255,.08);
  background: rgba(7, 23, 34, .96);
  backdrop-filter: blur(12px);
}
.nav-wrap { min-height: 72px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 12px; color: var(--white); text-decoration: none; }
.brand-mark {
  width: 39px; height: 39px; display: grid; place-items: center;
  border: 1px solid rgba(255,255,255,.24); border-radius: 50%;
  font: 700 12px/1 Georgia, "Times New Roman", serif; letter-spacing: .08em;
  color: #f3d6b7;
}
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-text strong { font: 700 16px/1.1 Georgia, "Times New Roman", serif; letter-spacing: .01em; }
.brand-text span { margin-top: 4px; color: rgba(255,255,255,.62); font-size: 10px; text-transform: uppercase; letter-spacing: .16em; }
.nav-links { display: flex; gap: 20px; align-items: center; }
.nav-links a { color: rgba(255,255,255,.76); text-decoration: none; font-size: 14px; }
.nav-links a:hover, .nav-links a.active { color: #fff; }
.nav-cta { border: 1px solid rgba(255,255,255,.22); padding: 9px 13px; border-radius: 999px; }
.menu-btn { display: none; color: white; background: none; border: 0; font-size: 24px; padding: 8px; }

.hero {
  position: relative;
  overflow: hidden;
  padding: 90px 0 78px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(7,23,34,.98), rgba(7,23,34,.91)),
    repeating-linear-gradient(90deg, transparent, transparent 59px, rgba(255,255,255,.028) 60px),
    var(--navy);
}
.hero::after {
  content: ""; position: absolute; width: 460px; height: 460px; border-radius: 50%;
  border: 1px solid rgba(199,119,72,.24); right: -140px; top: -160px;
  box-shadow: 0 0 0 70px rgba(199,119,72,.035), 0 0 0 140px rgba(199,119,72,.02);
}
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.6fr .8fr; gap: 72px; align-items: end; }
.eyebrow { color: var(--copper-2); text-transform: uppercase; letter-spacing: .17em; font-weight: 750; font-size: 12px; }
h1, h2, h3, .display { font-family: Georgia, "Times New Roman", serif; font-weight: 650; letter-spacing: -.02em; }
h1 { font-size: clamp(46px, 6vw, 78px); line-height: .98; margin: 14px 0 24px; max-width: 900px; }
.hero-copy { max-width: 770px; color: rgba(255,255,255,.77); font-size: clamp(18px, 2vw, 22px); line-height: 1.48; }
.hero-question { color: #fff; font-family: Georgia, "Times New Roman", serif; font-size: 24px; line-height: 1.35; margin: 28px 0; border-left: 3px solid var(--copper-2); padding-left: 22px; }
.actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; min-height: 44px; padding: 0 17px; border-radius: 999px; font-weight: 700; font-size: 14px; text-decoration: none; border: 1px solid transparent; }
.btn-primary { background: var(--copper-2); color: #15100c; }
.btn-primary:hover { color: #15100c; background: #dc8d5e; }
.btn-secondary { color: white; border-color: rgba(255,255,255,.25); background: rgba(255,255,255,.035); }
.btn-secondary:hover { color: white; border-color: rgba(255,255,255,.55); }
.hero-card { border: 1px solid rgba(255,255,255,.13); background: rgba(255,255,255,.035); border-radius: var(--radius); padding: 24px; }
.hero-card .label { color: rgba(255,255,255,.5); font-size: 11px; text-transform: uppercase; letter-spacing: .16em; }
.metric { padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,.1); }
.metric:last-child { border-bottom: 0; }
.metric strong { display: block; font-family: Georgia, serif; font-size: 23px; }
.metric span { color: rgba(255,255,255,.63); font-size: 13px; }

.section { padding: 78px 0; }
.section-sm { padding: 54px 0; }
.section-dark { background: var(--navy); color: var(--white); }
.section-white { background: rgba(255,255,255,.56); border-top: 1px solid rgba(16,25,35,.06); border-bottom: 1px solid rgba(16,25,35,.06); }
.section-title { max-width: 770px; margin-bottom: 34px; }
.section-title h2 { margin: 8px 0 12px; font-size: clamp(34px, 4vw, 48px); line-height: 1.05; }
.section-title p { color: var(--muted); font-size: 17px; }
.section-dark .section-title p { color: rgba(255,255,255,.65); }

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.card { background: rgba(255,255,255,.60); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; box-shadow: 0 1px 0 rgba(255,255,255,.7) inset; }
.card h3 { font-size: 24px; margin: 0 0 10px; }
.card p { color: var(--muted); margin: 0 0 14px; }
.card .kicker { color: var(--copper); font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .14em; }
.card-dark { background: rgba(255,255,255,.035); border-color: rgba(255,255,255,.12); box-shadow: none; }
.card-dark p { color: rgba(255,255,255,.65); }
.card-dark h3 { color: white; }

.evidence-number { font: 700 34px/1 Georgia, serif; color: var(--navy); margin: 13px 0 8px; }
.evidence-caption { color: var(--muted); font-size: 13px; }
.status-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.tag { border-radius: 999px; padding: 6px 9px; border: 1px solid var(--line); font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; background: rgba(255,255,255,.42); }
.tag-positive { color: #2c5b3c; border-color: rgba(44,91,60,.24); }
.tag-open { color: #7b4d13; border-color: rgba(123,77,19,.25); }
.tag-null { color: #545e67; }

.rule { margin: 30px 0; border-left: 4px solid var(--copper); padding: 18px 22px; background: rgba(168,90,50,.06); font: 600 22px/1.4 Georgia, serif; }

.page-hero { padding: 65px 0 48px; background: var(--navy); color: var(--white); }
.page-hero h1 { font-size: clamp(42px, 5vw, 64px); margin-bottom: 18px; }
.page-hero p { max-width: 780px; color: rgba(255,255,255,.7); font-size: 19px; }

.prose h2 { margin-top: 46px; font-size: 32px; }
.prose h3 { margin-top: 30px; font-size: 23px; }
.prose p, .prose li { color: #35434d; font-size: 16px; }
.prose ul { padding-left: 20px; }
.prose strong { color: var(--ink); }
.prose blockquote { margin: 28px 0; padding: 18px 24px; border-left: 3px solid var(--copper); background: rgba(168,90,50,.06); font: 600 21px/1.4 Georgia, serif; }

.callout { border: 1px solid rgba(168,90,50,.26); background: rgba(168,90,50,.055); border-radius: var(--radius); padding: 26px; }
.callout h3 { margin-top: 0; }
.link-list { display: grid; gap: 10px; margin-top: 16px; }
.link-list a { display: flex; justify-content: space-between; align-items: center; gap: 12px; padding: 12px 0; border-bottom: 1px solid var(--line); text-decoration: none; font-weight: 700; }
.link-list a:last-child { border-bottom: 0; }
.link-list a span { color: var(--muted); font-weight: 500; font-size: 13px; }

.site-footer { padding: 50px 0 26px; background: #061019; color: rgba(255,255,255,.68); }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 40px; }
.site-footer h3 { color: white; margin-top: 0; }
.site-footer a { color: rgba(255,255,255,.78); }
.site-footer a:hover { color: white; }
.footer-nav { display: grid; gap: 9px; }
.footer-bottom { margin-top: 38px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.08); display: flex; justify-content: space-between; gap: 20px; font-size: 12px; color: rgba(255,255,255,.45); }

.skip { position: absolute; left: -9999px; top: auto; }
.skip:focus { left: 12px; top: 12px; z-index: 1000; background: white; padding: 8px 12px; }

@media (max-width: 900px) {
  .hero-grid, .grid-3, .footer-grid { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .hero { padding-top: 70px; }
  .hero-card { max-width: 520px; }
  .nav-links { display: none; position: absolute; left: 0; right: 0; top: 72px; background: var(--navy); padding: 16px 20px 24px; flex-direction: column; align-items: flex-start; border-bottom: 1px solid rgba(255,255,255,.12); }
  .nav-links.open { display: flex; }
  .menu-btn { display: block; }
}

@media (max-width: 560px) {
  .container, .narrow { width: min(calc(100% - 28px), var(--max)); }
  .hero { padding: 58px 0 55px; }
  h1 { font-size: 46px; }
  .hero-question { font-size: 20px; }
  .section { padding: 58px 0; }
  .card { padding: 21px; }
  .footer-bottom { flex-direction: column; }
}
