:root {
  --ink: #171516;
  --muted: #605a60;
  --paper: #fbf7ef;
  --panel: #ffffff;
  --panel-soft: #f2ebdc;
  --accent: #355c4d;
  --accent-strong: #203b33;
  --line: #ded2bd;
  --warning: #7a4c1a;
  --shadow: 0 24px 70px rgba(32, 59, 51, 0.16);
  --radius-large: 28px;
  --radius-medium: 18px;
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: radial-gradient(circle at top left, #eef3e8 0, var(--paper) 42%, #f8efe0 100%);
  line-height: 1.6;
}

a {
  color: var(--accent-strong);
  text-decoration-thickness: 2px;
  text-underline-offset: 0.18em;
}

a:hover,
a:focus {
  color: #111;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-medium);
}

.site-header {
  padding: 24px;
}

.top-nav {
  max-width: var(--max-width);
  margin: 0 auto 26px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 14px 18px;
  border: 1px solid rgba(53, 92, 77, 0.18);
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(12px);
  border-radius: 999px;
}

.brand {
  font-weight: 800;
  text-decoration: none;
  letter-spacing: 0.01em;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  font-size: 0.96rem;
}

.nav-links a {
  text-decoration: none;
  color: var(--muted);
  font-weight: 650;
}

.hero {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
  gap: 28px;
  align-items: stretch;
}

.hero.hero-text-only {
  display: block;
}

.hub-image-block {
  max-width: var(--max-width);
  margin: 24px auto 0;
}

.section-image-block {
  margin-top: 24px;
}

.hero-copy,
.hero-media,
.verdict-panel,
section,
.site-footer {
  border: 1px solid rgba(53, 92, 77, 0.16);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow);
}

.hero-copy {
  padding: clamp(28px, 5vw, 56px);
  border-radius: var(--radius-large);
}

.hero-media {
  margin: 0;
  padding: 18px;
  border-radius: var(--radius-large);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}


/* Hub image placeholders: keep the broken <img> visible until final assets are added. */
.image-placeholder {
  margin: 0;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: var(--radius-large);
  padding: 20px 22px 22px;
  min-height: clamp(420px, 58vw, 748px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
  overflow: hidden;
}

.image-placeholder.hub-image-block {
  width: min(100%, var(--max-width));
  margin: 24px auto 0;
}

.image-placeholder img {
  width: 100%;
  min-height: 0;
  flex: 1 1 auto;
  object-fit: cover;
  border-radius: 0;
}

.split-section .image-placeholder {
  align-self: stretch;
  min-height: clamp(360px, 46vw, 620px);
}

.image-placeholder figcaption {
  margin-top: auto;
  color: #35455f;
  font-size: 1.02rem;
  line-height: 1.55;
}

figcaption {
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.94rem;
}

.eyebrow,
.section-kicker {
  margin: 0 0 10px;
  color: var(--accent);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-size: 0.78rem;
}

h1,
h2,
h3 {
  line-height: 1.12;
  margin: 0 0 16px;
}

h1 {
  font-size: clamp(2.45rem, 7vw, 5.8rem);
  letter-spacing: -0.06em;
}

h2 {
  font-size: clamp(1.7rem, 3vw, 2.65rem);
  letter-spacing: -0.035em;
}

h3 {
  font-size: 1.25rem;
}

.lead {
  font-size: clamp(1.05rem, 1.8vw, 1.28rem);
  color: #2d292c;
}

.lead-note {
  color: var(--muted);
  font-weight: 650;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 999px;
  background: var(--accent-strong);
  color: #fff;
  text-decoration: none;
  font-weight: 800;
}

.button.secondary {
  background: transparent;
  color: var(--accent-strong);
  border: 1px solid var(--accent-strong);
}

main {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 18px 24px 42px;
}

article {
  display: grid;
  gap: 24px;
}

section,
.verdict-panel {
  padding: clamp(24px, 4vw, 42px);
  border-radius: var(--radius-large);
}

.verdict-panel,
.split-section {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.7fr);
  gap: 26px;
  align-items: start;
}

.verdict-panel .information-card {
  margin-top: clamp(38px, 4vw, 58px);
}

.split-section.reverse {
  grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1.3fr);
}

.evidence-card,
.note-box {
  background: var(--panel-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-medium);
  padding: 22px;
}

.evidence-card ul,
.checklist {
  padding-left: 1.2rem;
}

.table-wrap {
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
  background: var(--panel);
  border-radius: var(--radius-medium);
  overflow: hidden;
}

caption {
  text-align: left;
  font-weight: 800;
  margin-bottom: 10px;
}

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

thead th {
  background: var(--accent-strong);
  color: #fff;
}

tbody tr:last-child th,
tbody tr:last-child td {
  border-bottom: 0;
}

.review-toc-section {
  background: rgba(255, 250, 242, 0.92);
  border-color: var(--line);
  box-shadow: none;
}

.review-toc-section h2 {
  margin-bottom: 16px;
  font-size: 1.22rem;
  letter-spacing: -0.01em;
}

.review-toc-section nav {
  display: grid;
  gap: 12px;
}

.review-toc-section a {
  width: fit-content;
  font-size: 1.08rem;
  line-height: 1.35;
  font-weight: 500;
}

.checklist-section {
  background: linear-gradient(135deg, #ffffff 0%, #f3ead7 100%);
}

.checklist {
  display: grid;
  gap: 12px;
  margin-bottom: 0;
}

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

.route-grid a {
  display: grid;
  gap: 8px;
  min-height: 124px;
  padding: 18px;
  border-radius: var(--radius-medium);
  border: 1px solid var(--line);
  background: #fff;
  text-decoration: none;
}

.route-grid span {
  color: var(--muted);
}

.faq-section details {
  border: 1px solid var(--line);
  border-radius: var(--radius-medium);
  padding: 16px 18px;
  background: #fff;
  margin: 12px 0;
}

.faq-section summary {
  cursor: pointer;
  font-weight: 800;
}

.source-section {
  background: #fbfbf7;
}

.site-footer {
  max-width: var(--max-width);
  margin: 0 auto 28px;
  padding: 24px;
  border-radius: var(--radius-large);
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  color: var(--muted);
}

.site-footer p {
  margin: 0;
}

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

@media (max-width: 880px) {
  .top-nav,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
    border-radius: 24px;
  }

  .hero,
  .verdict-panel,
  .split-section,
  .split-section.reverse {
    grid-template-columns: 1fr;
  }

  .verdict-panel .information-card {
    margin-top: 0;
  }

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

@media (max-width: 560px) {
  .site-header,
  main {
    padding-left: 14px;
    padding-right: 14px;
  }

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

  th,
  td {
    padding: 12px 10px;
  }
}
