
:root {
  --bg: #0c0f0d;
  --panel: #151a17;
  --panel-2: #1d241f;
  --text: #f4efe3;
  --muted: #c9c0ad;
  --dim: #918874;
  --sage: #94b77b;
  --clay: #c9835b;
  --line: rgba(244,239,227,.16);
  --shadow: rgba(0,0,0,.35);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: radial-gradient(circle at 20% 0%, rgba(148,183,123,.14), transparent 32rem), var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.58;
}
a { color: var(--sage); text-decoration: none; }
a:hover { text-decoration: underline; }
.site-header {
  border-bottom: 1px solid var(--line);
  background: rgba(12,15,13,.88);
  backdrop-filter: blur(16px);
  position: sticky;
  top: 0;
  z-index: 10;
}
.nav {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .9rem 1rem;
  gap: 1rem;
}
.brand { display: flex; align-items: center; gap: .7rem; color: var(--text); font-weight: 700; letter-spacing: .04em; text-transform: uppercase; font-size: .86rem; }
.brand-mark { width: 1.9rem; height: 1.9rem; border-radius: 50%; border: 1px solid var(--sage); display: grid; place-items: center; color: var(--sage); font-family: Georgia, serif; }
.nav-links { display: flex; gap: .8rem; flex-wrap: wrap; justify-content: flex-end; }
.nav-links a { color: var(--muted); font-size: .88rem; }
main { max-width: 980px; margin: 0 auto; padding: 4.4rem 1rem 5rem; }
.kicker { color: var(--sage); text-transform: uppercase; letter-spacing: .14em; font-size: .78rem; font-weight: 700; }
h1, h2, h3 { font-family: Georgia, "Times New Roman", serif; line-height: 1.08; }
h1 { font-size: clamp(2.4rem, 7vw, 5.8rem); letter-spacing: -.055em; margin: .5rem 0 1rem; }
h2 { font-size: clamp(1.45rem, 3vw, 2.05rem); margin: 0 0 1rem; letter-spacing: -.025em; }
h3 { font-size: 1.1rem; margin: 1.35rem 0 .35rem; color: var(--sage); }
.dek { max-width: 760px; color: var(--muted); font-size: clamp(1.08rem, 2vw, 1.35rem); margin: 0; }
.meta-row { display: flex; gap: .65rem; flex-wrap: wrap; margin-top: 1.35rem; color: var(--dim); font-size: .86rem; }
.badge { border: 1px solid var(--line); border-radius: 999px; padding: .25rem .6rem; background: rgba(255,255,255,.03); }
.hero-note, .content-block {
  background: linear-gradient(180deg, rgba(255,255,255,.055), rgba(255,255,255,.025));
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: 0 22px 80px var(--shadow);
  padding: clamp(1.2rem, 3vw, 2rem);
  margin-top: 1.2rem;
}
.hero-note { font-size: 1.08rem; color: var(--muted); }
.hero-note p:first-child { color: var(--text); font-size: 1.25rem; }
.grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; margin-top: 1.2rem; }
.card {
  display: flex;
  flex-direction: column;
  min-height: 188px;
  padding: 1.2rem;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--panel);
  color: var(--text);
}
.card:hover { transform: translateY(-2px); text-decoration: none; border-color: rgba(148,183,123,.5); }
.card span { color: var(--clay); font-size: .8rem; letter-spacing: .12em; font-weight: 800; }
.card strong { display: block; margin: .65rem 0 .5rem; font-family: Georgia, serif; font-size: 1.25rem; line-height: 1.12; }
.card em { color: var(--muted); font-style: normal; font-size: .94rem; }
.content-block p { margin: .75rem 0 0; }
ul, ol { padding-left: 1.25rem; margin: .8rem 0 0; }
li + li { margin-top: .45rem; }
strong { color: #fff8e8; }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem; }
.callout { border-color: rgba(148,183,123,.48); background: linear-gradient(135deg, rgba(148,183,123,.14), rgba(255,255,255,.025)); }
.warning { border-color: rgba(201,131,91,.55); background: linear-gradient(135deg, rgba(201,131,91,.14), rgba(255,255,255,.025)); }
.template { background: #f3ead8; color: #1a1813; border-color: rgba(0,0,0,.12); }
.template h2, .template h3, .template strong { color: #15120e; }
.template p, .template li { color: #2e2a22; }
.template a { color: #476b35; }
.big-copy { font-family: Georgia, serif; font-size: clamp(2rem, 5vw, 4.4rem); line-height: 1.02; letter-spacing: -.05em; color: #15120e !important; }
.button { display: inline-block; margin-top: .5rem; background: #15120e; color: #f3ead8 !important; padding: .8rem 1.1rem; border-radius: 999px; font-weight: 700; }
.prospects li { margin-top: .85rem; }
.sources { font-size: .94rem; }
.site-footer { max-width: 980px; margin: 0 auto; padding: 0 1rem 3rem; color: var(--dim); font-size: .86rem; }
.footer-line { border-top: 1px solid var(--line); padding-top: 1rem; }
@media (max-width: 820px) {
  .grid, .split { grid-template-columns: 1fr; }
  .nav { align-items: flex-start; flex-direction: column; }
  main { padding-top: 2.6rem; }
}
@media print {
  body { background: white; color: #111; }
  .site-header, .site-footer, .nav-links { display: none; }
  main { padding: 0; max-width: none; }
  .content-block, .hero-note, .card { box-shadow: none; border-color: #ddd; break-inside: avoid; }
  .template { background: #fff; }
  a { color: #111; text-decoration: underline; }
}
