:root {
  color-scheme: light;
  --ink: #1c1917;
  --muted: #675f59;
  --line: #ded8d2;
  --surface: #fffaf5;
  --panel: #ffffff;
  --red: #9f1f2d;
  --red-dark: #6f1520;
  --gold: #b8893b;
  --soft-red: #f8e7e7;
  --soft-gold: #f5eddb;
  --soft-gray: #f4f2ef;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--surface);
  color: var(--ink);
}

a {
  color: var(--red-dark);
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(255, 250, 245, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand {
  color: var(--ink);
  font-weight: 750;
  text-decoration: none;
  white-space: nowrap;
}

nav {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 0.92rem;
}

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

nav a:hover {
  color: var(--red-dark);
}

main {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.hero {
  min-height: 82vh;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(340px, 1.08fr);
  gap: clamp(28px, 5vw, 74px);
  align-items: center;
  padding: clamp(30px, 7vw, 78px) 0 34px;
}

.hero-copy {
  max-width: 640px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--red-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0;
  letter-spacing: 0;
  line-height: 1.02;
}

h1 {
  font-size: clamp(3.2rem, 8vw, 6.7rem);
  max-width: 820px;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.dek,
.section p {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.65;
}

.dek {
  max-width: 600px;
  margin: 22px 0 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 11px 17px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  font-weight: 700;
  text-decoration: none;
}

.button.primary {
  border-color: var(--red);
  background: var(--red);
  color: #fff;
}

.hero-media {
  margin: 0;
  align-self: stretch;
  min-height: 460px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #eaded0;
  box-shadow: 0 24px 80px rgba(51, 31, 23, 0.16);
}

.hero-media img {
  width: 100%;
  height: 100%;
  min-height: 460px;
  display: block;
  object-fit: cover;
}

.notice {
  margin: 0 0 34px;
  padding: 16px 18px;
  border: 1px solid #e4caca;
  border-left: 5px solid var(--red);
  border-radius: 8px;
  background: var(--soft-red);
  color: #3d2727;
  line-height: 1.55;
}

.section {
  padding: clamp(42px, 7vw, 76px) 0;
  border-top: 1px solid var(--line);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 22px;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

table {
  width: 100%;
  min-width: 1060px;
  border-collapse: collapse;
}

th,
td {
  padding: 13px 14px;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
  text-align: left;
  line-height: 1.42;
}

th {
  position: sticky;
  top: 53px;
  z-index: 2;
  background: #f1ece6;
  color: #312620;
  font-size: 0.82rem;
  text-transform: uppercase;
}

td {
  color: #302b27;
  font-size: 0.93rem;
}

tbody tr:hover {
  background: #fff7ee;
}

.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 74px;
  padding: 5px 8px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
  white-space: nowrap;
}

.badge.high {
  background: #e4f2e6;
  color: #245e30;
}

.badge.medium {
  background: var(--soft-gold);
  color: #73531b;
}

.badge.lead {
  background: var(--soft-gray);
  color: #5f5750;
}

.two-col {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(320px, 1fr);
  gap: clamp(26px, 6vw, 76px);
  align-items: start;
}

.pill-list,
.source-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill-list li {
  padding: 10px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  font-weight: 700;
}

.check-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.check-grid div {
  min-height: 118px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: #342d28;
  line-height: 1.5;
}

.source-list {
  display: grid;
  gap: 12px;
}

.source-list li {
  display: grid;
  grid-template-columns: minmax(230px, 0.55fr) minmax(0, 1fr);
  gap: 18px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.source-list span {
  color: var(--muted);
  line-height: 1.45;
}

footer {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 26px 0 42px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: var(--muted);
  font-size: 0.92rem;
}

@media (max-width: 900px) {
  .site-header {
    position: static;
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  nav {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-top: 34px;
  }

  .hero-media {
    min-height: 300px;
  }

  .hero-media img {
    min-height: 300px;
  }

  .section-heading,
  .two-col,
  .check-grid,
  .source-list li {
    display: block;
  }

  .check-grid {
    display: grid;
    grid-template-columns: 1fr;
  }

  .source-list li span {
    display: block;
    margin-top: 8px;
  }
}

@media (max-width: 640px) {
  main,
  footer {
    width: min(100% - 24px, 1180px);
  }

  h1 {
    font-size: clamp(2.7rem, 15vw, 4.2rem);
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .notice {
    font-size: 0.94rem;
  }

  footer {
    display: block;
  }

  footer span {
    display: block;
    margin-bottom: 8px;
  }
}
