:root {
  --navy: #071642;
  --midnight: #101b3d;
  --red: #b31f2a;
  --red-dark: #80131c;
  --blue: #174f92;
  --gold: #c89a34;
  --paper: #fbf8f0;
  --white: #ffffff;
  --ink: #121827;
  --muted: #5f6678;
  --line: rgba(7, 22, 66, 0.14);
  --shadow: 0 22px 60px rgba(7, 22, 66, 0.18);
  --font-body: "Aptos", "Segoe UI", sans-serif;
  --font-display: Georgia, "Times New Roman", serif;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
}

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

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

.skip-link {
  position: absolute;
  left: 16px;
  top: -60px;
  z-index: 10;
  background: var(--white);
  color: var(--navy);
  padding: 10px 14px;
  border: 2px solid var(--navy);
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  background:
    linear-gradient(90deg, var(--navy), var(--midnight) 58%, var(--red-dark));
  border-bottom: 5px solid var(--red);
  color: var(--white);
}

.header-inner {
  width: min(1180px, calc(100% - 36px));
  min-height: 92px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.campaign-logo {
  width: 210px;
  max-height: 78px;
  object-fit: contain;
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.25));
}

.header-status {
  display: grid;
  gap: 3px;
  text-align: right;
  border-left: 1px solid rgba(255, 255, 255, 0.22);
  padding-left: 22px;
}

.header-status span,
.eyebrow,
.response-kicker,
.truth-box span {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.header-status span {
  color: rgba(255, 255, 255, 0.68);
}

.header-status strong {
  font-size: 16px;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 600px;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  align-items: center;
  gap: 36px;
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 70px 0 48px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 42px 0 auto;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(179, 31, 42, 0.7), transparent);
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 680px;
}

.eyebrow {
  color: var(--red);
  margin: 0 0 14px;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  color: var(--navy);
}

h1 {
  font-size: clamp(48px, 7vw, 86px);
  line-height: 0.96;
  margin-bottom: 22px;
}

.hero-deck {
  max-width: 620px;
  font-size: 22px;
  color: #313849;
  margin-bottom: 26px;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-meta span {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
  color: var(--navy);
  padding: 9px 12px;
  font-size: 13px;
  font-weight: 800;
}

.hero-portrait-wrap {
  position: relative;
  align-self: end;
  min-height: 430px;
}

.portrait-backplate {
  position: absolute;
  inset: 54px 0 0 22px;
  background:
    linear-gradient(160deg, rgba(7, 22, 66, 0.96), rgba(23, 79, 146, 0.92) 52%, rgba(179, 31, 42, 0.92));
  border: 1px solid rgba(7, 22, 66, 0.15);
  box-shadow: var(--shadow);
}

.portrait-backplate::after {
  content: "";
  position: absolute;
  inset: auto 28px 28px auto;
  width: 42%;
  height: 10px;
  background: var(--gold);
}

.hero-portrait {
  position: absolute;
  right: 12px;
  bottom: 0;
  z-index: 1;
  max-height: 520px;
  object-fit: contain;
  filter: drop-shadow(0 28px 30px rgba(0, 0, 0, 0.25));
}

.response-band {
  background: var(--white);
  border-top: 1px solid var(--line);
  padding: 58px 0 76px;
}

.section-heading,
.response-grid,
.standby-panel {
  width: min(1060px, calc(100% - 36px));
  margin-left: auto;
  margin-right: auto;
}

.section-heading {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 34px;
  align-items: end;
  margin-bottom: 26px;
}

.section-heading h2 {
  font-size: 34px;
  line-height: 1.08;
  margin-bottom: 0;
}

.standby-panel {
  border: 1px dashed rgba(7, 22, 66, 0.28);
  background: #f5f1e7;
  color: var(--navy);
  padding: 22px;
  display: grid;
  gap: 4px;
}

.standby-panel[hidden] {
  display: none;
}

.response-grid {
  display: grid;
  gap: 18px;
}

.response-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-top: 7px solid var(--red);
  background: var(--white);
  padding: 28px;
  box-shadow: 0 12px 34px rgba(7, 22, 66, 0.08);
  font-family: var(--font-body);
}

.response-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 8px;
  background: var(--navy);
}

.response-kicker {
  color: var(--red);
  margin-bottom: 9px;
}

.response-card h3 {
  font-size: 30px;
  line-height: 1.14;
  margin-bottom: 10px;
}

.response-deck {
  max-width: 850px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.58;
  margin-bottom: 18px;
}

.response-media {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 14px;
  align-items: start;
  margin: 0 0 18px;
}

.response-media:empty {
  display: none;
}

.response-media figure {
  margin: 0;
  border: 1px solid var(--line);
  background: #f7f3ea;
  box-shadow: 0 10px 22px rgba(7, 22, 66, 0.08);
}

.response-media img {
  width: 100%;
  height: auto;
  object-fit: contain;
  background: var(--navy);
}

.response-media figcaption {
  padding: 8px 10px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}

.truth-box {
  background: var(--navy);
  color: var(--white);
  padding: 18px 20px;
  margin: 0 0 18px;
}

.truth-box span {
  display: block;
  color: var(--gold);
  margin-bottom: 5px;
}

.truth-box p {
  margin-bottom: 0;
  font-size: 17px;
  line-height: 1.55;
  font-weight: 800;
}

.fact-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.fact-list li {
  position: relative;
  padding-left: 22px;
  font-size: 16px;
  line-height: 1.58;
}

.fact-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 8px;
  height: 8px;
  background: var(--red);
}

.source-note {
  color: var(--muted);
  border-top: 1px solid var(--line);
  margin: 18px 0 0;
  padding-top: 14px;
  font-size: 14px;
}

.source-note:empty {
  display: none;
}

.source-links {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 18px;
}

.source-links:empty {
  display: none;
}

.source-links a,
.source-links span {
  border: 1px solid var(--line);
  color: var(--navy);
  background: #f7f3ea;
  padding: 8px 10px;
  font-size: 13px;
  line-height: 1.2;
  font-weight: 800;
}

.source-links a:hover,
.source-links a:focus {
  border-color: var(--red);
  color: var(--red);
}

.site-footer {
  background: var(--navy);
  color: var(--white);
  padding: 28px 0;
}

.site-footer div {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 22px;
}

.site-footer span {
  color: rgba(255, 255, 255, 0.72);
  text-align: right;
}

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

  .header-status {
    text-align: left;
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.22);
    padding: 14px 0 0;
    width: 100%;
  }

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

  .hero-portrait-wrap {
    min-height: 360px;
    max-width: 420px;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .site-footer span {
    text-align: left;
  }
}

@media (max-width: 560px) {
  .campaign-logo {
    width: 180px;
  }

  h1 {
    font-size: 48px;
  }

  .hero-deck {
    font-size: 18px;
  }

  .response-card {
    padding: 22px 20px 22px 24px;
  }

  .response-card h3 {
    font-size: 26px;
  }

  .section-heading h2 {
    font-size: 30px;
  }

  .response-deck,
  .truth-box p,
  .fact-list li {
    font-size: 16px;
  }
}
