:root {
  --ink: #262321;
  --muted: #6f6a65;
  --paper: #ffffff;
  --wash: #f4f2ef;
  --line: #ded9d3;
  --red: #990001;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 17px;
  line-height: 1.75;
}
a { color: var(--red); text-underline-offset: 3px; }
a:hover { color: #5f0001; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  min-height: 92px;
  padding: 16px clamp(20px, 5vw, 72px);
  background: rgba(255,255,255,.97);
  border-bottom: 1px solid var(--line);
}
.site-header img { display: block; width: min(280px, 54vw); height: auto; }
.site-nav { display: flex; flex-wrap: wrap; gap: 22px; }
.site-nav a {
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  text-decoration: none;
  text-transform: uppercase;
}
.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, .9fr);
  min-height: 620px;
  background: var(--wash);
}
.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(54px, 8vw, 112px);
}
.eyebrow, .kicker {
  margin: 0 0 16px;
  color: var(--red);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}
h1, h2, h3 { font-family: Georgia, "Times New Roman", serif; }
h1 {
  max-width: 920px;
  margin: 0;
  font-size: clamp(42px, 5.5vw, 76px);
  font-weight: 400;
  letter-spacing: -.025em;
  line-height: 1.05;
}
.byline {
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}
.hero img { width: 100%; height: 100%; min-height: 440px; object-fit: cover; }
.article-shell {
  display: grid;
  grid-template-columns: minmax(0, 760px) minmax(220px, 300px);
  gap: clamp(50px, 8vw, 110px);
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 80px 0 100px;
}
.article-body p { margin: 0 0 24px; }
.article-body h2 {
  margin: 60px 0 20px;
  font-size: clamp(30px, 3.4vw, 43px);
  font-weight: 400;
  line-height: 1.18;
}
.article-body ul { margin: 0 0 28px; padding-left: 24px; }
.article-body li { margin: 9px 0; }
.lede { font-size: 21px; line-height: 1.65; }
.disclaimer {
  margin: 0 0 38px;
  padding: 18px 22px;
  border-left: 4px solid var(--red);
  background: var(--wash);
  color: var(--muted);
  font-size: 14px;
}
.faq { margin-top: 64px; padding-top: 12px; border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  cursor: pointer;
  padding: 22px 36px 22px 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 21px;
  line-height: 1.35;
}
.faq details p { padding: 0 0 22px; }
.article-aside { align-self: start; position: sticky; top: 126px; }
.aside-card { padding: 28px; background: var(--wash); }
.aside-card h2 { margin: 0 0 12px; font-size: 25px; font-weight: 400; line-height: 1.25; }
.aside-card p { margin: 0 0 18px; color: var(--muted); font-size: 14px; line-height: 1.6; }
.button {
  display: inline-block;
  padding: 13px 18px;
  color: #fff;
  background: var(--red);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-decoration: none;
  text-transform: uppercase;
}
.breadcrumbs {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 22px 0;
  color: var(--muted);
  font-size: 13px;
}
.site-footer {
  padding: 48px 20px;
  color: #d7d2cc;
  background: var(--ink);
  text-align: center;
}
.site-footer img { width: 230px; max-width: 70%; height: auto; filter: brightness(0) invert(1); }
.site-footer p { margin: 18px auto 0; max-width: 720px; font-size: 13px; }
.site-footer a { color: #fff; }
@media (max-width: 900px) {
  .site-header { position: static; align-items: flex-start; flex-direction: column; gap: 14px; }
  .site-nav { gap: 12px 18px; }
  .hero { grid-template-columns: 1fr; }
  .hero-copy { padding: 58px 20px; }
  .hero img { min-height: 300px; max-height: 520px; }
  .article-shell { grid-template-columns: 1fr; padding-top: 56px; }
  .article-aside { position: static; }
}
@media (max-width: 540px) {
  body { font-size: 16px; }
  .site-header { min-height: auto; padding: 14px 18px; }
  .site-nav a { font-size: 11px; }
  h1 { font-size: 39px; }
  .article-shell, .breadcrumbs { width: min(100% - 32px, 760px); }
}