:root {
  --ink: #241b16;
  --muted: #70655d;
  --paper: #fffaf4;
  --surface: #ffffff;
  --soft: #f4eadf;
  --line: #ead9cb;
  --brand: #9d371f;
  --brand-dark: #642113;
  --gold: #c78330;
  --green: #547665;
  --shadow: 0 24px 70px rgba(57, 35, 20, 0.12);
  --serif: Georgia, "Times New Roman", serif;
  --sans: Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background:
    radial-gradient(
      circle at top left,
      rgba(199, 131, 48, 0.16),
      transparent 34rem
    ),
    linear-gradient(180deg, #fff8ef 0%, #fffdf9 40%, #f8efe6 100%);
  font-family: var(--serif);
  font-size: 19px;
  line-height: 1.72;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

.top-strip {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  justify-content: center;
  gap: 18px;
  padding: 10px 18px;
  color: #fff8ef;
  background: #2b1c15;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.top-strip span:not(:last-child)::after {
  content: "";
  display: inline-block;
  width: 4px;
  height: 4px;
  margin-left: 18px;
  border-radius: 50%;
  background: var(--gold);
  vertical-align: middle;
}

.page-shell {
  width: min(1180px, 100%);
  margin: 0 auto;
  padding: 0 0 64px;
}

.article {
  overflow: hidden;
  background: transparent;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
  gap: 42px;
  align-items: center;
  padding: 64px 56px 56px;
  min-height: 100vh;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--brand);
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1.3;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(44px, 6vw, 76px);
  font-weight: 750;
  letter-spacing: 0;
  line-height: 0.96;
}

.dek {
  max-width: 620px;
  margin: 24px 0 28px;
  color: #4f443e;
  font-size: 23px;
  line-height: 1.45;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 24px;
  border-radius: 6px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none;
  text-transform: uppercase;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background-color 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: #fffaf4;
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  box-shadow: 0 14px 28px rgba(157, 55, 31, 0.24);
}

.button-light {
  color: var(--brand-dark);
  background: #fffaf4;
}

.hero-media {
  margin: 0;
}

.hero-media img,
.article-image img {
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 18px 46px rgba(45, 29, 18, 0.16);
}

.hero-media img {
  aspect-ratio: 4 / 5;
}

.content {
  width: min(760px, calc(100% - 38px));
  margin: 0 auto;
  padding: 54px 0 30px;
}

.content p,
.content li {
  color: #312720;
}

.content > p {
  margin: 0 0 22px;
}

.content strong {
  font-weight: 750;
}

h2,
h3 {
  color: var(--ink);
  letter-spacing: 0;
}

.content h2 {
  margin: 58px 0 18px;
  font-size: clamp(31px, 4vw, 44px);
  font-weight: 750;
  line-height: 1.04;
}

.content h3 {
  margin: 0 0 14px;
  font-family: var(--sans);
  font-size: 18px;
  font-weight: 800;
}

blockquote {
  margin: 42px 0;
  padding: 28px 32px;
  border-left: 5px solid var(--brand);
  border-radius: 0 8px 8px 0;
  background: var(--soft);
}

blockquote p {
  margin: 0;
  color: var(--brand-dark);
  font-size: 27px;
  font-style: italic;
  font-weight: 650;
  line-height: 1.28;
}

.article-image {
  width: min(860px, 100%);
  margin: 44px auto;
}

.article-image figcaption {
  margin-top: 12px;
  color: var(--muted);
  font-family: var(--sans);
  font-size: 13px;
  font-style: italic;
  line-height: 1.45;
  text-align: center;
}

.cta-panel,
.final-cta {
  margin: 56px 0;
  padding: 38px;
  border-radius: 8px;
  color: #fffaf4;
  background:
    linear-gradient(135deg, rgba(36, 27, 22, 0.96), rgba(100, 33, 19, 0.94)),
    linear-gradient(90deg, var(--brand), var(--green));
  box-shadow: 0 22px 54px rgba(45, 29, 18, 0.18);
  text-align: center;
}

.cta-panel h2,
.final-cta h2 {
  margin: 0 0 10px;
  color: #fffaf4;
}

.cta-panel p,
.final-cta p {
  margin: 0 0 24px;
  color: #f3dfce;
}

.cta-panel .eyebrow {
  color: #f2b86d;
}

.sign-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin: 28px 0 34px;
}

.sign-card {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffdf9;
}

.sign-card strong,
.sign-card span {
  display: block;
}

.sign-card strong {
  margin-bottom: 8px;
  color: var(--brand-dark);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.35;
}

.sign-card span {
  color: #554940;
  font-size: 16px;
  line-height: 1.55;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  margin: 44px 0 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.stats-grid div {
  min-height: 150px;
  padding: 24px 18px;
  background: #fffdf9;
  text-align: center;
}

.stats-grid strong {
  display: block;
  color: var(--brand);
  font-family: var(--sans);
  font-size: 34px;
  font-weight: 800;
  line-height: 1;
}

.stats-grid span {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.45;
}

.source {
  color: var(--muted);
  font-family: var(--sans);
  font-size: 12px;
  font-style: italic;
}

.number-list,
.compound-list {
  margin: 0 0 32px;
  padding: 0;
  list-style: none;
  counter-reset: steps;
}

.number-list li,
.compound-list li {
  position: relative;
  margin-bottom: 16px;
  padding: 20px 22px 20px 64px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffdf9;
  font-size: 17px;
  line-height: 1.6;
}

.number-list li {
  counter-increment: steps;
}

.number-list li::before {
  content: counter(steps);
  position: absolute;
  top: 20px;
  left: 20px;
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 50%;
  color: #fffaf4;
  background: var(--brand);
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 800;
}

.number-list strong,
.compound-list strong {
  display: block;
  color: var(--brand-dark);
  font-family: var(--sans);
  font-size: 15px;
}

.split-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin: 28px 0 42px;
}

.split-list section {
  padding: 26px;
  border-radius: 8px;
  background: #fffdf9;
  border: 1px solid var(--line);
}

.split-list ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.split-list li {
  position: relative;
  padding-left: 22px;
  font-size: 17px;
  line-height: 1.45;
}

.split-list li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
}

.compound-list li::before {
  content: "";
  position: absolute;
  top: 26px;
  left: 26px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--brand));
}

.final-cta {
  margin-bottom: 30px;
}

.article-footer {
  width: 100%;
  margin: 34px auto 0;
  overflow: hidden;
  border-radius: 0;
  background:
    linear-gradient(135deg, rgba(43, 28, 21, 0.98), rgba(77, 31, 20, 0.98)),
    #2b1c15;
  color: #eadfd6;
  font-family: var(--sans);
  font-size: 13px;
  line-height: 1.65;
}

.footer-content {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: 36px;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 38px 0;
}

.footer-card {
  min-width: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.footer-kicker {
  margin: 0 0 8px;
  color: #f2b86d;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1.3;
  text-transform: uppercase;
}

.article-footer h2 {
  margin: 0 0 14px;
  color: #fffaf4;
  font-size: 15px;
  font-family: var(--sans);
  line-height: 1.15;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.article-footer p {
  margin: 0 0 8px;
}

.article-footer a {
  color: #f2b86d;
  font-weight: 700;
  text-underline-offset: 3px;
}

.reference-list {
  display: grid;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.reference-list li {
  padding: 0;
  color: #cdbbad;
  font-size: 12px;
  line-height: 1.45;
}

.reference-list li::before {
  content: none;
}

.disclosure-card p:not(.footer-kicker) {
  color: #f4e8dc;
}

.signature {
  margin-top: 18px;
  color: #cdbbad;
  font-style: italic;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto auto;
  gap: 24px;
  align-items: center;
  padding: 20px max(18px, calc((100% - 1180px) / 2));
  border-top: 1px solid rgba(255, 250, 244, 0.12);
  background: rgba(18, 11, 8, 0.35);
  color: #cdbbad;
}

.site-footer strong,
.site-footer span {
  display: block;
}

.site-footer strong {
  color: #fffaf4;
  font-size: 14px;
  line-height: 1.35;
}

.site-footer span,
.site-footer p,
.site-footer a {
  font-size: 12px;
}

.site-footer p {
  margin: 0;
  text-align: right;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.site-footer a {
  color: #eadfd6;
  font-weight: 700;
  text-decoration: none;
}

.site-footer a:hover {
  color: #f2b86d;
}

.legal-shell {
  width: min(920px, calc(100% - 38px));
  margin: 0 auto;
  padding: 58px 0 70px;
}

.legal-page {
  padding: 42px 46px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 253, 249, 0.92);
  box-shadow: 0 18px 48px rgba(57, 35, 20, 0.1);
}

.back-link {
  display: inline-flex;
  margin-bottom: 26px;
  color: var(--brand);
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1.2;
  text-decoration: none;
  text-transform: uppercase;
}

.back-link:hover {
  color: var(--brand-dark);
}

.legal-page h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(38px, 6vw, 62px);
  font-weight: 750;
  letter-spacing: 0;
  line-height: 0.98;
}

.legal-updated {
  margin: 16px 0 36px;
  color: var(--muted);
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 700;
}

.legal-page section {
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.legal-page section + section {
  margin-top: 28px;
}

.legal-page h2 {
  margin: 0 0 12px;
  color: var(--brand-dark);
  font-family: var(--sans);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.25;
}

.legal-page p {
  margin: 0;
  color: #312720;
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 36px 28px;
  }

  .hero-media {
    order: -1;
  }

  .hero-media img {
    aspect-ratio: 16 / 10;
  }

  .stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-content,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .site-footer p {
    text-align: left;
  }
}

@media (max-width: 640px) {
  body {
    font-size: 17px;
    line-height: 1.68;
  }

  .top-strip {
    flex-wrap: wrap;
    gap: 5px;
    padding: 8px 4px;
    font-size: 8px;
    letter-spacing: 0.04em;
    line-height: 1.35;
  }

  .top-strip span:not(:last-child)::after {
    width: 3px;
    height: 3px;
    margin-left: 5px;
  }

  .page-shell {
    width: 100%;
    padding: 0;
  }

  .article {
    border-width: 0;
    border-radius: 0;
  }

  .hero {
    padding: 26px 18px 34px;
    gap: 24px;
  }

  .hero-copy,
  .hero-media {
    width: min(100%, 280px);
    margin-right: auto;
    margin-left: auto;
    min-width: 0;
    overflow-wrap: anywhere;
  }

  .content {
    min-width: 0;
    overflow-wrap: anywhere;
  }

  .hero-media img {
    width: 100%;
  }

  .hero h1 {
    font-size: 28px;
    line-height: 1.02;
  }

  .dek {
    font-size: 17px;
  }

  .content {
    width: calc(100% - 34px);
    padding-top: 36px;
  }

  .content h2 {
    margin-top: 46px;
  }

  blockquote {
    padding: 24px;
  }

  blockquote p {
    font-size: 23px;
  }

  .sign-grid,
  .split-list,
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .cta-panel,
  .final-cta {
    padding: 30px 20px;
  }

  .number-list li,
  .compound-list li {
    padding-right: 18px;
  }

  .article-footer {
    width: 100%;
    margin-top: 24px;
    border-radius: 0;
  }

  .footer-content {
    width: calc(100% - 36px);
    padding: 28px 0;
  }

  .footer-card {
    padding: 0;
  }

  .site-footer {
    padding: 20px 18px;
  }

  .legal-shell {
    width: calc(100% - 34px);
    padding: 34px 0 46px;
  }

  .legal-page {
    padding: 30px 22px;
  }

  .legal-page h1 {
    font-size: 34px;
    line-height: 1.04;
  }
}
