:root {
  color-scheme: light;
  --brand: #9f241a;
  --brand-dark: #2a1714;
  --gold: #d6a23a;
  --green: #2f7758;
  --paper: #fffdf8;
  --warm: #f6efe3;
  --ink: #211814;
  --muted: #6f6259;
  --line: #e2d4c2;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  margin: 0;
}

a {
  color: inherit;
}

.site-header {
  align-items: center;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  min-height: 64px;
  padding: 10px max(20px, calc((100vw - 1080px) / 2));
}

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

.brand-link img {
  border-radius: 8px;
  height: 38px;
  width: 38px;
}

.site-nav {
  display: flex;
  gap: 20px;
}

.site-nav a {
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--brand);
}

.hero {
  align-items: center;
  background: var(--brand);
  color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: min(72vh, 680px);
  padding: 56px 24px 72px;
  text-align: center;
}

.hero img {
  border: 2px solid rgba(255, 255, 255, 0.7);
  border-radius: 8px;
  box-shadow: 0 18px 50px rgba(33, 10, 8, 0.28);
  height: 132px;
  width: 132px;
}

.eyebrow {
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  margin: 26px 0 10px;
  text-transform: uppercase;
}

.hero h1 {
  font-size: clamp(42px, 8vw, 76px);
  line-height: 1.02;
  margin: 0;
  max-width: 900px;
}

.hero p {
  color: #f1ded9;
  font-size: 18px;
  line-height: 1.6;
  margin: 20px auto 0;
  max-width: 680px;
}

.feature-band {
  background: var(--warm);
  padding: 56px 24px;
}

.feature-grid {
  display: grid;
  gap: 32px;
  grid-template-columns: repeat(3, 1fr);
  margin: 0 auto;
  max-width: 1080px;
}

.feature-grid h2 {
  font-size: 21px;
  margin: 0 0 10px;
}

.feature-grid p {
  color: var(--muted);
  line-height: 1.65;
  margin: 0;
}

.feature-grid article {
  border-top: 3px solid var(--brand);
  padding-top: 18px;
}

.feature-grid article:nth-child(2) {
  border-color: var(--gold);
}

.feature-grid article:nth-child(3) {
  border-color: var(--green);
}

.document {
  margin: 0 auto;
  max-width: 820px;
  padding: 60px 24px 80px;
}

.document h1 {
  color: var(--brand-dark);
  font-size: clamp(36px, 7vw, 56px);
  line-height: 1.08;
  margin: 0 0 12px;
}

.document h2 {
  color: var(--brand-dark);
  font-size: 22px;
  margin: 38px 0 10px;
}

.document p,
.document li {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

.document a.text-link {
  color: var(--brand);
  font-weight: 750;
}

.source-list {
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
  margin: 30px 0;
}

.source-item {
  display: grid;
  gap: 8px 24px;
  grid-template-columns: minmax(150px, 0.35fr) 1fr;
  padding: 24px 0;
}

.source-item + .source-item {
  border-top: 1px solid var(--line);
}

.source-item h2 {
  font-size: 18px;
  margin: 0;
}

.source-item p {
  margin: 0;
}

.status-label {
  color: var(--green);
  display: block;
  font-size: 12px;
  font-weight: 900;
  margin-top: 8px;
  text-transform: uppercase;
}

.document ul {
  padding-left: 22px;
}

.document .effective {
  color: var(--green);
  font-weight: 800;
  margin-bottom: 38px;
}

.contact-line {
  border-left: 4px solid var(--gold);
  margin-top: 28px;
  padding: 4px 0 4px 18px;
}

.contact-line a {
  color: var(--brand);
  font-weight: 800;
}

.site-footer {
  background: var(--brand-dark);
  color: #e8d9d1;
  padding: 30px 24px;
  text-align: center;
}

.site-footer p {
  margin: 0;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-top: 14px;
}

.site-footer a {
  color: #e8d9d1;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--gold);
}

@media (max-width: 720px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
    padding-bottom: 14px;
    padding-top: 14px;
  }

  .site-nav {
    flex-wrap: wrap;
    gap: 16px;
  }

  .hero {
    min-height: 68vh;
  }

  .hero img {
    height: 108px;
    width: 108px;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .source-item {
    grid-template-columns: 1fr;
  }
}
