
:root {
  color-scheme: light;
  --ink: #172017;
  --muted: #5d665d;
  --paper: #fbfaf4;
  --panel: #fffdf8;
  --leaf: #47723a;
  --clay: #9b4f32;
  --gold: #e8b44d;
  --line: rgba(23, 32, 23, 0.14);
  --shadow: rgba(19, 23, 16, 0.18);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
.site-header {
  border-bottom: 1px solid var(--line);
  background: rgba(255, 253, 248, .94);
  backdrop-filter: blur(14px);
  position: sticky;
  top: 0;
  z-index: 20;
}
.nav {
  display: flex;
  width: min(100%, 1240px);
  margin: 0 auto;
  padding: 18px 32px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 850;
  text-decoration: none;
}
.brand-mark {
  display: inline-grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 8px;
  background: linear-gradient(145deg, #86a65c, #e8b44d);
}
.brand-mark::before {
  width: 14px;
  height: 20px;
  border-radius: 10px;
  background: #182018;
  clip-path: polygon(50% 0, 100% 18%, 88% 76%, 50% 100%, 12% 76%, 0 18%);
  content: "";
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--muted);
  font-size: .95rem;
  font-weight: 750;
}
.nav-links a { text-decoration: none; }
.button {
  display: inline-flex;
  min-height: 46px;
  padding: 0 18px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: #f2bd43;
  color: #1c170d;
  font-weight: 850;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
}
.blog-hero {
  border-bottom: 1px solid var(--line);
  background: #1c261b;
  color: #fffdf1;
}
.blog-hero-inner {
  width: min(100%, 1240px);
  margin: 0 auto;
  padding: 72px 32px;
}
.kicker {
  margin: 0 0 14px;
  color: #b9673e;
  font-size: .96rem;
  font-weight: 850;
}
.blog-hero .kicker { color: #f6cb67; }
h1, h2, h3, p { margin-top: 0; }
h1 {
  max-width: 920px;
  margin-bottom: 18px;
  font-size: 4.2rem;
  line-height: 1;
  letter-spacing: 0;
  text-wrap: balance;
}
.lead {
  max-width: 760px;
  margin: 0;
  color: rgba(255, 253, 241, .78);
  font-size: 1.18rem;
  line-height: 1.6;
}
.container {
  width: min(100%, 1240px);
  margin: 0 auto;
  padding: 54px 32px;
}
.article-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.article-card {
  display: flex;
  min-height: 100%;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  flex-direction: column;
  text-decoration: none;
  box-shadow: 0 12px 38px rgba(19, 23, 16, .08);
}
.article-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: #d9ddca;
}
.article-card-body { padding: 20px; }
.article-card .category {
  margin-bottom: 10px;
  color: var(--clay);
  font-size: .85rem;
  font-weight: 850;
}
.article-card h2 {
  margin-bottom: 12px;
  font-size: 1.28rem;
  line-height: 1.22;
}
.article-card p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.55;
}
.article-shell {
  display: grid;
  width: min(100%, 1180px);
  margin: 0 auto;
  padding: 52px 32px 72px;
  grid-template-columns: minmax(0, 760px) minmax(240px, 1fr);
  gap: 56px;
}
.article-header { grid-column: 1 / -1; }
.breadcrumbs {
  margin-bottom: 18px;
  color: var(--muted);
  font-size: .94rem;
}
.breadcrumbs a { text-decoration: none; }
.article-header h1 {
  color: var(--ink);
  font-size: 4rem;
}
.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  color: var(--muted);
  font-size: .95rem;
  font-weight: 700;
}
.hero-figure {
  grid-column: 1 / -1;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: #d9ddca;
  box-shadow: 0 24px 70px var(--shadow);
}
.hero-figure img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}
article {
  font-size: 1.08rem;
  line-height: 1.74;
}
article .dek {
  color: var(--clay);
  font-size: 1.28rem;
  font-weight: 750;
  line-height: 1.5;
}
article h2 {
  margin: 40px 0 14px;
  font-size: 2rem;
  line-height: 1.12;
}
article ul { padding-left: 1.2rem; }
article li { margin: 8px 0; }
.article-figure {
  margin: 36px 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}
.article-figure img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}
figcaption {
  padding: 12px 16px;
  color: var(--muted);
  font-size: .94rem;
  line-height: 1.45;
}
.note-box {
  margin: 28px 0;
  padding: 20px;
  border-left: 5px solid var(--gold);
  background: #fffdf8;
  box-shadow: 0 12px 36px rgba(19, 23, 16, .06);
}
.note-box strong {
  display: block;
  margin-bottom: 8px;
}
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.sources a {
  color: var(--leaf);
  font-weight: 750;
}
.sidebar {
  align-self: start;
  position: sticky;
  top: 92px;
}
.cta-panel {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffdf8;
  box-shadow: 0 16px 48px rgba(19, 23, 16, .08);
}
.cta-panel h2 {
  margin-bottom: 10px;
  font-size: 1.35rem;
  line-height: 1.2;
}
.cta-panel p {
  color: var(--muted);
  line-height: 1.55;
}
.cta-panel .button { width: 100%; }
.site-footer {
  border-top: 1px solid var(--line);
  background: #fffdf8;
}
.footer-inner {
  display: flex;
  width: min(100%, 1240px);
  margin: 0 auto;
  padding: 30px 32px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: var(--muted);
}
.footer-inner strong { color: var(--ink); }
@media (max-width: 940px) {
  .article-grid { grid-template-columns: 1fr 1fr; }
  .article-shell { grid-template-columns: 1fr; gap: 32px; }
  .sidebar { position: static; }
  h1, .article-header h1 { font-size: 3rem; }
  .two-col { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .nav { padding: 16px 22px; }
  .nav-links a:not(.button) { display: none; }
  .nav-links .button { min-height: 42px; padding: 0 12px; font-size: .88rem; }
  .blog-hero-inner, .container, .article-shell { padding-left: 22px; padding-right: 22px; }
  .blog-hero-inner { padding-top: 54px; padding-bottom: 54px; }
  h1, .article-header h1 { font-size: 2.45rem; }
  .article-grid { grid-template-columns: 1fr; }
  .footer-inner { align-items: flex-start; flex-direction: column; }
}
