:root {
  color-scheme: light;
  --ink: #171a1d;
  --muted: #58616b;
  --line: #d8ddd8;
  --paper: #fbfaf5;
  --surface: #ffffff;
  --sage: #dfe9df;
  --moss: #2d5d4a;
  --clay: #9a5a44;
  --sun: #e0a13a;
  --charcoal: #24282c;
}

* {
  box-sizing: border-box;
}

html {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.5;
  text-rendering: optimizeLegibility;
}

body {
  margin: 0;
  min-width: 320px;
}

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

a {
  color: inherit;
}

.site-header {
  border-bottom: 1px solid var(--line);
  background: rgba(251, 250, 245, 0.96);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 16px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid var(--charcoal);
  background: var(--charcoal);
  color: #ffffff;
  font-size: 0.88rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--muted);
  font-size: 0.92rem;
}

.site-nav a {
  text-decoration: none;
}

.site-nav a:hover {
  color: var(--ink);
}

.wrap {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(320px, 0.97fr);
  gap: 44px;
  align-items: center;
  padding: 42px 0 28px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--moss);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1 {
  max-width: 720px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.35rem, 6.4vw, 5rem);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 0.98;
}

.dek {
  max-width: 680px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: clamp(1.04rem, 2.1vw, 1.22rem);
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.hero-meta span {
  border-left: 3px solid var(--sun);
  padding-left: 10px;
}

.hero-art {
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--sage);
}

.hero-art img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.notice {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #f4f1e8;
}

.notice-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.article-grid {
  display: grid;
  grid-template-columns: minmax(0, 680px) minmax(230px, 320px);
  gap: 56px;
  align-items: start;
  padding: 48px 0 64px;
}

.article-body p,
.article-body li {
  color: #2e3438;
  font-size: 1.06rem;
}

.article-body p {
  margin: 0 0 22px;
}

.article-body h2,
.legal-page h1,
.legal-page h2 {
  margin: 34px 0 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  letter-spacing: 0;
  line-height: 1.08;
}

.article-body h2:first-child {
  margin-top: 0;
}

.pullquote {
  margin: 34px 0;
  padding: 22px 0 22px 24px;
  border-left: 5px solid var(--clay);
  color: var(--charcoal);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
  line-height: 1.15;
}

.checklist {
  display: grid;
  gap: 12px;
  padding: 0;
  list-style: none;
}

.checklist li {
  position: relative;
  padding-left: 30px;
}

.checklist li::before {
  position: absolute;
  left: 0;
  top: 2px;
  width: 18px;
  height: 18px;
  border: 1px solid var(--moss);
  background: var(--sage);
  content: "";
}

.sidebar {
  position: sticky;
  top: 22px;
  border: 1px solid var(--line);
  background: var(--surface);
}

.sidebar-inner {
  padding: 22px;
}

.sidebar h2 {
  margin: 0 0 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
  line-height: 1.1;
}

.sidebar p {
  margin: 0 0 18px;
  color: var(--muted);
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 48px;
  padding: 12px 18px;
  border: 1px solid var(--charcoal);
  background: var(--charcoal);
  color: #ffffff;
  font-weight: 800;
  text-align: center;
  text-decoration: none;
}

.cta-button:hover {
  background: #000000;
}

.fine-print {
  margin-top: 14px;
  color: var(--muted);
  font-size: 0.82rem;
}

.legal-page {
  max-width: 820px;
  padding: 48px 0 72px;
}

.legal-page h1 {
  margin-top: 0;
}

.legal-page p,
.legal-page li {
  color: #30363a;
  font-size: 1.02rem;
}

.legal-page ul {
  padding-left: 22px;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #efede5;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding: 22px 0;
  color: var(--muted);
  font-size: 0.9rem;
}

@media (max-width: 820px) {
  .header-inner,
  .notice-inner,
  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-nav {
    width: 100%;
    justify-content: space-between;
  }

  .hero,
  .article-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    gap: 28px;
    padding-top: 30px;
  }

  .article-grid {
    gap: 32px;
    padding-top: 34px;
  }

  .sidebar {
    position: static;
  }
}
