:root {
  --ink: #0b0b0b;
  --paper: #f7f7f4;
  --muted: #66645d;
  --line: #d9d6cd;
  --blue: #1147d4;
  --red: #b32222;
  --green: #56e88b;
  --max: 1180px;
}

@font-face {
  font-family: "Bebas Neue";
  src: url("/assets/fonts/BebasNeue-Regular.otf") format("opentype");
  font-display: swap;
}

@font-face {
  font-family: "White On Black";
  src: url("/assets/fonts/WhiteOnBlack.ttf") format("truetype");
  font-display: swap;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Helvetica, Arial, sans-serif;
  line-height: 1.24;
}

a {
  color: inherit;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 18px 24px 14px;
  background: rgba(247, 247, 244, 0.97);
  border-bottom: 1px solid var(--line);
}

.brand {
  flex: 0 0 auto;
  font-family: "White On Black", Impact, sans-serif;
  font-size: 34px;
  line-height: 0.8;
  font-weight: 400;
  letter-spacing: 0;
  text-decoration: none;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 20px;
  flex: 1 1 auto;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.site-nav a {
  text-decoration: none;
}

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

.site-nav a.is-active {
  color: #ff210d;
}

.nav-menu {
  position: relative;
  min-height: 28px;
}

.dropdown {
  display: none;
  position: absolute;
  left: 0;
  top: 20px;
  min-width: 150px;
  padding: 7px 0 0;
  background: var(--paper);
}

.dropdown a {
  display: block;
  padding: 2px 0;
  text-transform: none;
  font-weight: 700;
}

.nav-menu:hover .dropdown,
.nav-menu:focus-within .dropdown {
  display: block;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 24px;
  align-items: start;
  max-width: var(--max);
  min-height: calc(100vh - 70px);
  margin: 0 auto;
  padding: 0 24px 38px;
}

.hero-media {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  background: transparent;
  overflow: visible;
}

.hero-media img {
  width: 139%;
  max-width: none;
  max-height: calc(100vh - 66px);
  object-fit: contain;
  object-position: top center;
  transform: translateY(-38px);
}

.hero-copy {
  width: min(100%, 644px);
  justify-self: center;
  align-self: center;
  padding-top: 19px;
}

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

h1,
h2 {
  margin: 0;
  font-weight: 900;
  line-height: 0.95;
  text-transform: uppercase;
}

h1 {
  max-width: 760px;
  font-size: clamp(48px, 8vw, 108px);
}

.home-title {
  color: #ff210d;
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: clamp(54px, 6.5vw, 86px);
  font-weight: 400;
  letter-spacing: 0;
  white-space: nowrap;
}

.page-title h1,
.video-reports-page h1,
.sources-page h1,
.call-hero h1,
.awakening-section h2,
.tribunal-copy h1,
.truth-copy h1,
.forum-copy h1,
.support-copy h1,
.about-copy h1,
.contact-copy h1 {
  max-width: none;
  color: #ff210d;
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: clamp(54px, 6.5vw, 86px);
  font-weight: 400;
  letter-spacing: 0;
  text-align: center;
}

h2 {
  font-size: clamp(34px, 5vw, 70px);
}

p {
  max-width: 72ch;
}

.hero-copy p:not(.eyebrow) {
  font-size: 18px;
}

.quote-box {
  max-width: 644px;
  margin: 18px 0 26px;
  padding: 12px 14px;
  border: 3px solid var(--ink);
  background: #fff;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
}

.quote-box p {
  margin: 0;
}

.quote-box p:last-child {
  margin-top: 8px;
  font-style: italic;
}

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

.button {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 10px 16px;
  border: 2px solid var(--ink);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  text-decoration: none;
}

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

.section-links {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  max-width: var(--max);
  margin: 0 auto 64px;
  padding: 0 24px;
}

.section-link {
  min-height: 120px;
  display: flex;
  align-items: end;
  padding: 18px;
  background: #fff;
  border: 1px solid var(--line);
  font-size: 22px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  text-decoration: none;
}

.section-link:hover,
.section-link:focus {
  background: var(--green);
}

.page-title {
  max-width: var(--max);
  margin: 0 auto;
  padding: 62px 24px 30px;
}

.video-reports-page {
  max-width: var(--max);
  margin: 0 auto;
  padding: 54px 24px 70px;
}

.video-reports-page h1,
.video-card h2 {
  font-family: "Bebas Neue", Impact, sans-serif;
  font-weight: 400;
  letter-spacing: 0;
}

.video-reports-page h1 {
  margin: 0;
}

.video-intro {
  max-width: none;
  margin: 24px 0 46px;
  font-size: 20px;
  line-height: 1.18;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 50px;
  align-items: start;
}

.video-card {
  display: grid;
  justify-items: center;
  text-align: center;
}

.video-card h2 {
  margin: 0 0 14px;
  color: var(--ink);
  font-size: clamp(34px, 4vw, 52px);
}

.video-thumb {
  display: block;
  width: 100%;
  text-decoration: none;
}

.video-thumb img {
  width: 100%;
  border: 1px solid var(--line);
  background: #fff;
}

.video-card p {
  max-width: 48ch;
  margin: 16px auto 0;
  font-size: 18px;
  text-align: left;
}

.sources-page {
  max-width: var(--max);
  margin: 0 auto;
  padding: 54px 24px 80px;
}

.sources-page h1 {
  margin: 0 0 28px;
}

.sources-hero-image {
  width: min(100%, 820px);
  margin: 0 auto 34px;
  border: 1px solid var(--line);
  background: #fff;
}

.sources-intro {
  max-width: 860px;
  margin: 0 auto 34px;
  font-size: 19px;
  text-align: center;
}

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

.source-section {
  border-top: 1px solid var(--line);
  padding-top: 24px;
}

.source-section h2 {
  color: var(--ink);
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 400;
  letter-spacing: 0;
  text-align: center;
}

.source-section ol {
  max-width: 920px;
  margin: 18px auto 0;
  padding-left: 24px;
}

.source-section li {
  margin: 0 0 10px;
  overflow-wrap: anywhere;
  font-size: 16px;
}

.call-page {
  max-width: var(--max);
  margin: 0 auto;
  padding: 8px 24px 80px;
}

.call-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 36px;
  align-items: start;
}

.call-hero-image,
.call-action-image {
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.call-hero-image {
  position: sticky;
  top: 78px;
}

.call-hero-image img {
  width: min(100%, 510px);
  max-height: calc(100vh - 92px);
  object-fit: contain;
}

.call-hero-copy {
  width: min(100%, 650px);
  justify-self: center;
}

.call-hero h1 {
  margin: 0 0 20px;
}

.call-hero-copy p,
.awakening-intro,
.call-action-copy p {
  font-size: 18px;
}

.awakening-section {
  margin-top: 58px;
  border-top: 1px solid var(--line);
  padding-top: 44px;
}

.awakening-section h2 {
  margin: 0 0 18px;
}

.awakening-intro {
  max-width: none;
  margin: 0 0 42px;
  text-align: center;
}

.call-action-list {
  display: grid;
  gap: 34px;
}

.call-action-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 36px;
  align-items: center;
}

.call-action-image img {
  width: min(100%, 430px);
  max-height: 360px;
  object-fit: contain;
}

.call-action-copy {
  width: min(100%, 650px);
  justify-self: center;
}

.call-action-copy p {
  margin: 0;
}

.tribunal-page {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 36px;
  align-items: start;
  max-width: var(--max);
  margin: 0 auto;
  padding: 8px 24px 80px;
}

.tribunal-image {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  position: sticky;
  top: 188px;
}

.tribunal-image img {
  width: min(100%, 540px);
  max-height: calc(100vh - 92px);
  object-fit: contain;
}

.tribunal-copy {
  width: min(100%, 650px);
  justify-self: center;
}

.tribunal-copy h1 {
  margin: 0 0 20px;
}

.tribunal-copy p {
  font-size: 18px;
}

.truth-page {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 36px;
  align-items: start;
  max-width: var(--max);
  margin: 0 auto;
  padding: 8px 24px 80px;
}

.truth-image {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  position: sticky;
  top: 78px;
}

.truth-image img {
  width: min(100%, 540px);
  max-height: calc(100vh - 92px);
  object-fit: contain;
}

.truth-copy {
  width: min(100%, 650px);
  justify-self: center;
}

.truth-copy h1 {
  margin: 0 0 20px;
}

.truth-copy p {
  font-size: 18px;
}

.questionnaire-button {
  margin-top: 18px;
}

.forum-page {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 36px;
  align-items: start;
  max-width: var(--max);
  margin: 0 auto;
  padding: 8px 24px 80px;
}

.forum-image {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  position: sticky;
  top: 78px;
}

.forum-image img {
  width: min(100%, 540px);
  max-height: calc(100vh - 92px);
  object-fit: contain;
}

.forum-copy {
  width: min(100%, 650px);
  justify-self: center;
}

.forum-copy h1 {
  margin: 0 0 20px;
}

.forum-copy p {
  font-size: 18px;
}

.forum-button {
  margin-top: 18px;
}

.support-page {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 36px;
  align-items: start;
  max-width: var(--max);
  margin: 0 auto;
  padding: 8px 24px 80px;
}

.support-image {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  position: sticky;
  top: 78px;
}

.support-image img {
  width: min(95%, 513px);
  max-height: calc(95vh - 87px);
  object-fit: contain;
}

.support-copy {
  width: min(100%, 650px);
  justify-self: center;
}

.support-copy h1 {
  margin: 0 0 20px;
}

.support-copy p {
  font-size: 18px;
}

.givesendgo-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 52px;
  margin: 2px 0 18px;
  padding: 10px 16px;
  border: 2px solid var(--ink);
  background: #fff;
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  text-decoration: none;
}

.gsg-mark {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 4px 10px;
  border-radius: 999px;
  background: #22b573;
  color: #fff;
  font-size: 18px;
  font-weight: 900;
  line-height: 1;
  text-transform: none;
}

.about-page {
  display: grid;
  grid-template-columns: minmax(360px, 1fr) minmax(360px, 1fr);
  gap: 36px;
  align-items: start;
  max-width: var(--max);
  margin: 0 auto;
  padding: 8px 24px 80px;
}

.about-image {
  grid-column: 1;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  position: sticky;
  top: 78px;
}

.about-image img {
  width: min(95%, 532px);
  max-height: calc(95vh - 87px);
  object-fit: contain;
}

.about-copy {
  grid-column: 2;
  width: min(100%, 650px);
  justify-self: center;
}

.about-copy h1 {
  margin: 0 0 20px;
}

.about-copy p {
  font-size: 18px;
}

.team-heading {
  margin: 20px 0 8px;
  font-weight: 900;
}

.team-list {
  columns: 3;
  column-gap: 22px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 14px;
  line-height: 0.96;
}

.team-list li {
  break-inside: avoid;
  margin: 0 0 3px;
}

.contact-page {
  display: grid;
  grid-template-columns: minmax(360px, 1fr) minmax(360px, 1fr);
  gap: 36px;
  align-items: start;
  max-width: var(--max);
  margin: 0 auto;
  padding: 8px 24px 80px;
}

.contact-image {
  grid-column: 1;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  position: sticky;
  top: 78px;
}

.contact-image img {
  width: min(95%, 532px);
  max-height: calc(95vh - 87px);
  object-fit: contain;
}

.contact-copy {
  grid-column: 2;
  width: min(100%, 650px);
  justify-self: center;
}

.contact-copy h1 {
  margin: 0 0 20px;
}

.contact-copy p {
  font-size: 18px;
}

.big-picture-page {
  max-width: var(--max);
  margin: 0 auto;
  padding: 32px 24px 80px;
}

.big-picture-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 36px;
  align-items: start;
  padding: 34px 0;
  border-top: 1px solid var(--line);
}

.big-picture-row:first-child {
  border-top: 0;
  padding-top: 0;
}

.big-picture-image {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  position: sticky;
  top: 92px;
}

.big-picture-image img {
  width: min(100%, 540px);
  max-height: calc(100vh - 112px);
  object-fit: contain;
}

.big-picture-row:first-child .big-picture-image img {
  width: min(95%, 513px);
  max-height: calc(95vh - 106px);
  object-fit: contain;
}

.big-picture-image.empty {
  position: static;
  min-height: 1px;
}

.big-picture-copy {
  width: min(100%, 680px);
  justify-self: center;
}

.big-picture-copy h2 {
  margin: 0 0 18px;
  color: #ff210d;
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: clamp(54px, 6.5vw, 86px);
  font-weight: 400;
  letter-spacing: 0;
  text-align: center;
}

.big-picture-copy p {
  font-size: 18px;
}

.report-block {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1fr);
  gap: 42px;
  max-width: var(--max);
  margin: 0 auto;
  padding: 34px 24px 54px;
  border-top: 1px solid var(--line);
}

.report-block figure {
  position: sticky;
  top: 82px;
  align-self: start;
  margin: 0;
  border: 1px solid var(--line);
  background: #fff;
}

.report-copy {
  min-width: 0;
}

.report-copy p {
  font-size: 18px;
}

.report-copy a {
  overflow-wrap: anywhere;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(210px, 1fr) minmax(280px, 520px) minmax(260px, 1fr);
  gap: 8px 28px;
  align-items: center;
  padding: 28px 24px;
  background: var(--ink);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
}

.site-footer p {
  margin: 0;
}

.contact-line {
  grid-column: 2;
  grid-row: 2;
  justify-self: center;
  text-align: center;
}

.copyright-line {
  grid-column: 3;
  grid-row: 2;
  justify-self: end;
  text-align: right;
  align-self: end;
  font-size: 10px;
}

.mailing-list {
  grid-column: 2;
  grid-row: 1;
  width: min(100%, 520px);
  max-width: 520px;
  justify-self: center;
  text-align: center;
}

.mailing-list label {
  display: block;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.mailing-list div {
  display: flex;
  justify-content: center;
  max-width: 440px;
  margin: 0 auto;
}

.mailing-list input,
.mailing-list button,
.mailing-list a {
  min-height: 38px;
  border: 1px solid #fff;
  font: inherit;
}

.mailing-list input {
  width: 100%;
  padding: 8px 10px;
  color: var(--ink);
}

.mailing-list button,
.mailing-list a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  padding: 8px 14px;
  background: #fff;
  color: var(--ink);
  cursor: pointer;
  text-decoration: none;
  text-transform: uppercase;
}

.socials {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

.header-socials {
  flex: 0 0 auto;
  margin-left: auto;
  color: var(--ink);
}

.site-footer a {
  color: #fff;
}

.socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 50%;
  text-decoration: none;
}

.header-socials a {
  border-color: var(--ink);
}

.socials svg {
  width: 26px;
  height: 26px;
  fill: currentColor;
}

@media (max-width: 820px) {
  .site-header {
    display: block;
  }

  .site-nav {
    margin-top: 14px;
    gap: 12px 16px;
  }

  .header-socials {
    justify-content: flex-start;
    margin: 16px 0 0;
  }

  .dropdown {
    position: static;
  }

  .hero,
  .report-block,
  .site-footer,
  .video-grid,
  .call-hero,
  .call-action-row,
  .tribunal-page,
  .truth-page,
  .forum-page,
  .support-page,
  .about-page,
  .contact-page,
  .big-picture-row {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 0;
    padding-top: 12px;
  }

  .home-title {
    white-space: normal;
  }

  .report-block figure {
    position: static;
  }

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

  .contact-line,
  .copyright-line {
    justify-self: center;
    text-align: center;
  }

}

@media (max-width: 520px) {
  .site-header,
  .hero,
  .page-title,
  .report-block,
  .section-links,
  .site-footer {
    padding-left: 16px;
    padding-right: 16px;
  }

  .section-links {
    grid-template-columns: 1fr;
  }

  .mailing-list div {
    display: grid;
    gap: 8px;
  }
}
