:root {
  --pitch: #0c1610;
  --turf: #14301f;
  --ink: #16241b;
  --paper: #f3ead6;
  --sand: #e4d4b4;
  --rule: #c9b48a;
  --wattle: #e3b23c;
  --rust: #c45c26;
  --cream: #fff8ea;
  --mute: #5c5346;
  --line: rgba(18, 36, 26, 0.12);
  --serif: "Newsreader", "Iowan Old Style", "Palatino Linotype", serif;
  --sans: "Public Sans", "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background:
    radial-gradient(1200px 500px at 10% -10%, rgba(227, 178, 60, 0.08), transparent 50%),
    linear-gradient(180deg, #101c15 0 220px, var(--paper) 220px);
  color: var(--ink);
  font: 18px/1.65 var(--sans);
}

img { max-width: 100%; height: auto; display: block; }
a { color: #1d4d32; }
a:hover { color: #0d2a1a; }
h1, h2, h3, .serif { font-family: var(--serif); font-weight: 560; letter-spacing: -0.02em; }
h1 { font-size: clamp(2.1rem, 4vw, 3.4rem); line-height: 1.08; margin: 0.2em 0 0.4em; }
h2 { font-size: clamp(1.5rem, 2.4vw, 2rem); margin: 1.4em 0 0.45em; }
h3 { font-size: 1.2rem; margin: 1.1em 0 0.35em; }
p, li { color: #2a332b; }
.mute { color: var(--mute); }
.wrap { width: min(1120px, calc(100% - 32px)); margin-inline: auto; }
.skip {
  position: absolute; left: -999px; top: 8px; background: var(--wattle); color: #111; padding: 8px 12px;
}
.skip:focus { left: 8px; z-index: 20; }

.banner {
  background: #0a120d;
  color: var(--cream);
  border-bottom: 3px solid var(--wattle);
}
.banner .wrap {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 12px 24px; padding: 12px 0;
}
.banner strong {
  font-family: var(--serif);
  font-size: clamp(1.15rem, 2.2vw, 1.55rem);
  color: var(--wattle);
  letter-spacing: -0.02em;
}
.banner span { display: block; color: #d8c9a4; font-size: 0.92rem; }
.banner small { display: block; color: #9a8d72; font-size: 0.75rem; margin-top: 2px; }

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 46px; padding: 0 18px; border-radius: 999px;
  font: 650 14px/1 var(--sans); letter-spacing: 0.04em; text-transform: uppercase;
  text-decoration: none; border: 1px solid transparent;
}
.btn-wattle { background: var(--wattle); color: #1a1404; }
.btn-wattle:hover { background: #f0c45a; color: #111; }
.btn-ghost { background: transparent; color: var(--cream); border-color: rgba(243, 234, 214, 0.35); }
.btn-ghost:hover { color: var(--wattle); border-color: var(--wattle); }
.btn-ink { background: var(--pitch); color: var(--cream); }
.btn-ink:hover { background: #1c3326; color: #fff; }

header.site {
  background: linear-gradient(180deg, #12261c, #0e1b14);
  color: var(--cream);
  padding: 18px 0 0;
  border-bottom: 1px solid #2a4634;
}
.navrow {
  display: flex; align-items: center; gap: 18px; padding-bottom: 16px;
}
.brand {
  display: flex; align-items: center; gap: 10px; color: var(--cream); text-decoration: none;
  min-width: 210px;
}
.brand b { display: block; font-family: var(--serif); font-size: 1.35rem; font-weight: 600; }
.brand small { display: block; color: #c9b48a; font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; }
.brand svg { width: 40px; height: 40px; }
nav.desk { display: flex; flex-wrap: wrap; gap: 6px 16px; flex: 1; }
nav.desk a, nav.mobile a {
  color: #e8dcc4; text-decoration: none; font-size: 0.92rem;
}
nav.desk a[aria-current="page"], nav.desk a:hover { color: var(--wattle); }
.menu-btn {
  display: none; background: transparent; color: var(--cream); border: 1px solid #3a5644;
  padding: 8px 10px; border-radius: 8px;
}
nav.mobile { display: none; padding: 0 0 14px; }
nav.mobile.open { display: grid; gap: 10px; }

.hero {
  position: relative; min-height: 420px; display: grid; align-items: end;
  color: var(--cream); overflow: hidden;
}
.hero img.bg {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  filter: brightness(0.42) saturate(0.85);
}
.hero .veil {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,18,13,0.15), rgba(10,18,13,0.82));
}
.hero .copy { position: relative; padding: 56px 0 40px; }
.kicker {
  font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--wattle);
  margin: 0 0 8px;
}
.byline {
  display: flex; flex-wrap: wrap; gap: 8px 18px; font-size: 0.88rem; color: var(--mute);
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  padding: 10px 0; margin: 18px 0 28px;
}
.byline strong { color: var(--ink); }

.section { padding: 28px 0; }
.prose { max-width: 72ch; }
.prose p { margin: 0 0 1em; }
.lede { font-family: var(--serif); font-size: 1.28rem; line-height: 1.45; color: #1c281f; }

.grid-2, .grid-3 { display: grid; gap: 16px; }
@media (min-width: 800px) {
  .grid-2 { grid-template-columns: 1fr 1fr; }
  .grid-3 { grid-template-columns: 1fr 1fr 1fr; }
}
.card {
  background: var(--cream);
  border: 1px solid var(--sand);
  padding: 18px 18px 8px;
  box-shadow: 4px 4px 0 rgba(12, 22, 16, 0.06);
}
.card.good { border-top: 4px solid #2f7a49; }
.card.bad { border-top: 4px solid var(--rust); }
.card h3 { margin-top: 0; }
.hl {
  background: #14261b; color: var(--cream); padding: 22px;
  display: grid; gap: 12px;
}
@media (min-width: 800px) { .hl { grid-template-columns: repeat(4, 1fr); } }
.hl div { border-left: 2px solid var(--wattle); padding-left: 12px; }
.hl b { display: block; font-family: var(--serif); font-size: 1.05rem; color: var(--wattle); }

table.sheet {
  width: 100%; border-collapse: collapse; background: var(--cream);
  font-size: 0.95rem; margin: 16px 0 24px;
}
table.sheet th, table.sheet td {
  border: 1px solid var(--sand); padding: 10px 12px; text-align: left; vertical-align: top;
}
table.sheet th { background: #14301f; color: var(--cream); font-weight: 650; }
table.sheet tr:nth-child(even) td { background: #f8f1de; }

.figure { margin: 20px 0 28px; }
.figure figcaption { font-size: 0.82rem; color: var(--mute); margin-top: 8px; }
.crumbs { font-size: 0.86rem; color: var(--mute); margin-bottom: 10px; }
.crumbs a { color: inherit; }
.related {
  background: #efe4c9; border: 1px dashed #c9b48a; padding: 16px 18px; margin: 28px 0;
}
.related a { margin-right: 14px; }

.faq details {
  background: var(--cream); border: 1px solid var(--sand); padding: 12px 14px; margin: 8px 0;
}
.faq summary { cursor: pointer; font-weight: 650; }

.cta-band {
  background: #12261c; color: var(--cream); padding: 36px 0; margin-top: 20px;
}
.cta-band p { color: #d8c9a4; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 16px; }

footer.site {
  background: #0a120d; color: #cfc3a6; padding: 36px 0 88px;
  font-size: 0.92rem;
}
footer.site a { color: #e8dcc4; }
.footgrid { display: grid; gap: 22px; }
@media (min-width: 800px) { .footgrid { grid-template-columns: 1.4fr 1fr 1fr 1fr; } }
.legal { margin-top: 22px; padding-top: 16px; border-top: 1px solid #24362b; color: #8e836c; font-size: 0.8rem; }

.sticky-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 12;
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
  background: #0a120d; color: var(--cream); padding: 10px 16px;
  border-top: 2px solid var(--wattle);
}
.sticky-cta span { font-family: var(--serif); }

@media (max-width: 860px) {
  .menu-btn { display: inline-block; margin-left: auto; }
  nav.desk, header.site .btn { display: none; }
  body { font-size: 16.5px; }
}
