:root {
  --paper: #f3ecdf;
  --paper-raised: #faf6ee;
  --ink: #1c1914;
  --ink-muted: #5a5348;
  --rule: #d4cbb8;
  --forest: #243d32;
  --forest-deep: #1a2e26;
  --copper: #8a5a32;
  --disclaimer: #ebe3d3;
  --focus: #1a2e26;
  --measure: 40rem;
  --sans: "Avenir Next", "Segoe UI", system-ui, -apple-system, sans-serif;
  --serif: "Iowan Old Style", "Palatino Linotype", Palatino, "Times New Roman", serif;
  --mono: "IBM Plex Mono", "ui-monospace", "SFMono-Regular", Menlo, Consolas, monospace;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  color-scheme: light;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.125rem;
  line-height: 1.65;
}

a {
  color: var(--forest);
  text-underline-offset: 0.15em;
}

a:hover {
  color: var(--copper);
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 3px;
}

.skip {
  position: absolute;
  left: 0.75rem;
  top: -3rem;
  background: var(--forest-deep);
  color: var(--paper);
  padding: 0.5rem 0.85rem;
  z-index: 10;
}

.skip:focus {
  top: 0.75rem;
}

.site-header,
.site-footer,
.hero,
.page-main,
.article-wrap {
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

.site-header {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.75rem 1.5rem;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--rule);
}

.mark {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--forest-deep);
}

.mark-logo {
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 50%;
  flex-shrink: 0;
  background: #fff;
}

.mark span {
  color: var(--copper);
  font-weight: 500;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-family: var(--sans);
  font-size: 0.9rem;
}

.nav a {
  color: var(--ink);
  text-decoration: none;
}

.nav a:hover,
.nav a[aria-current="page"] {
  text-decoration: underline;
}

.article-wrap,
.page-main {
  max-width: calc(var(--measure) + 2.5rem);
  margin: 0 auto;
  padding-top: 2.5rem;
  padding-bottom: 4rem;
}

.kicker {
  font-family: var(--mono);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--copper);
  margin: 0 0 0.75rem;
}

h1 {
  font-size: clamp(1.85rem, 4.5vw, 2.65rem);
  line-height: 1.15;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 0 0 0.85rem;
}

.reviewed {
  font-family: var(--sans);
  font-size: 0.85rem;
  color: var(--ink-muted);
  margin: 0 0 1.25rem;
}

.dek {
  font-size: 1.2rem;
  margin: 0 0 1rem;
}

.disclaimer {
  background: var(--disclaimer);
  border-left: 3px solid var(--copper);
  padding: 0.85rem 1rem;
  margin: 0 0 1.75rem;
  font-family: var(--sans);
  font-size: 0.95rem;
}

.media {
  margin: 0 0 2rem;
}

.video-slot {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: var(--forest-deep);
  color: var(--paper);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  text-align: center;
  padding: 1.5rem;
}

.play-mark {
  width: 3.25rem;
  height: 3.25rem;
  border: 2px solid var(--paper);
  border-radius: 999px;
  display: grid;
  place-items: center;
}

.play-mark span {
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0.45rem 0 0.45rem 0.75rem;
  border-color: transparent transparent transparent var(--paper);
  margin-left: 0.15rem;
}

.video-label {
  font-family: var(--sans);
  font-size: 0.95rem;
  max-width: 22rem;
}

.ratio {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.7;
}

.transcript-block {
  border: 1px solid var(--rule);
  border-top: 0;
  background: var(--paper-raised);
  padding: 0.85rem 1rem 1.1rem;
  min-height: 4.5rem;
}

.transcript-kicker {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin: 0;
}

.prose p {
  margin: 0 0 1.1rem;
}

.prose h2 {
  font-size: 1.35rem;
  line-height: 1.25;
  margin: 2.4rem 0 0.85rem;
}

.questions {
  counter-reset: q;
}

.questions h2 {
  position: relative;
  padding-top: 0.35rem;
}

.questions h2::before {
  counter-increment: q;
  content: counter(q, decimal-leading-zero);
  display: block;
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  color: var(--copper);
  margin-bottom: 0.35rem;
}

.lead-answer {
  font-weight: 600;
}

.faq h2 {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--rule);
}

.faq h3 {
  font-size: 1.15rem;
  line-height: 1.3;
  margin: 1.75rem 0 0.6rem;
}

.soft-close {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--rule);
}

.site-footer {
  background: var(--forest-deep);
  color: #e7e0d2;
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}

.footer-inner {
  max-width: 64rem;
  margin: 0 auto;
  display: grid;
  gap: 2rem;
}

@media (min-width: 720px) {
  .footer-inner {
    grid-template-columns: 1.2fr 1fr;
    align-items: start;
  }
}

.nap {
  font-family: var(--sans);
  font-size: 0.95rem;
  line-height: 1.55;
}

.nap strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.2rem;
  margin-bottom: 0.4rem;
  color: #f3ecdf;
}

.nap a {
  color: #f3ecdf;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.cta {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  padding: 0.75rem 1rem;
  min-height: 44px;
  border: 1px solid #e7e0d2;
  color: #f3ecdf;
}

.cta-primary {
  background: #f3ecdf;
  color: var(--forest-deep);
  border-color: #f3ecdf;
}

.cta:hover {
  color: var(--forest-deep);
  background: #e4d8c0;
}

.legal {
  grid-column: 1 / -1;
  font-family: var(--sans);
  font-size: 0.85rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.25rem;
  padding-top: 0.5rem;
  border-top: 1px solid rgba(231, 224, 210, 0.25);
}

.legal a {
  color: #e7e0d2;
}

.guide-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
}

.guide-list a {
  display: block;
  text-decoration: none;
  color: inherit;
  border: 1px solid var(--rule);
  background: var(--paper-raised);
  padding: 1.25rem 1.35rem;
}

.guide-list a:hover {
  border-color: var(--forest);
}

.guide-list h2 {
  margin: 0 0 0.4rem;
  font-size: 1.35rem;
}

.guide-list p {
  margin: 0;
  color: var(--ink-muted);
  font-family: var(--sans);
  font-size: 0.95rem;
}

.worldview {
  margin: 2rem 0 0;
  padding: 0;
  list-style: none;
  font-family: var(--sans);
  font-size: 0.98rem;
}

.worldview li {
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--rule);
}

.error-page h1 {
  margin-bottom: 1rem;
}

@media (max-width: 640px) {
  body {
    font-size: 1.05rem;
  }

  .cta {
    flex: 1 1 12rem;
    text-align: center;
  }
}

.related {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--rule);
  font-size: 1rem;
}
