:root {
  --ink: #111414;
  --paper: #f4f3ee;
  --white: #fff;
  --signal: #ef3f28;
  --teal: #087f75;
  --muted: #68706e;
  --rule: #cfd2cc;
  --dark: #17201f;
  --max: 1240px;
  --sans: Arial, "Helvetica Neue", sans-serif;
  --mono: "SFMono-Regular", Consolas, monospace;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.55;
}
a {
  color: inherit;
}
a:focus-visible {
  outline: 3px solid var(--signal);
  outline-offset: 4px;
}
.skip {
  position: absolute;
  left: -9999px;
}
.skip:focus {
  left: 1rem;
  top: 1rem;
  background: #fff;
  padding: 0.75rem;
  z-index: 10;
}
.site-header {
  height: 72px;
  max-width: var(--max);
  margin: auto;
  padding: 0 28px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  border-bottom: 1px solid var(--rule);
}
.brand {
  text-decoration: none;
  font-weight: 800;
  font-size: 20px;
}
.brand span {
  font-size: 12px;
  font-weight: 500;
  color: var(--muted);
  margin-left: 10px;
}
.site-header nav {
  display: flex;
  gap: 28px;
}
.section-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px 24px;
}
.site-header nav a,
.languages a,
.languages strong {
  text-decoration: none;
  font-size: 12px;
  text-transform: uppercase;
}
.languages {
  justify-self: end;
  display: flex;
  gap: 12px;
}
.languages a {
  color: var(--muted);
}
.hero {
  min-height: calc(100vh - 72px);
  max-height: 920px;
  position: relative;
  overflow: hidden;
  background: var(--dark);
  color: white;
  display: flex;
  align-items: flex-end;
  padding: clamp(48px, 8vw, 110px)
    max(28px, calc((100vw - var(--max)) / 2 + 28px));
}
.hero img {
  position: absolute;
  inset: 0 4% 0 auto;
  width: 38%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  filter: saturate(0.86);
}
.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(6, 10, 10, 0.96),
      rgba(6, 10, 10, 0.66) 48%,
      rgba(6, 10, 10, 0.2)
    ),
    linear-gradient(0deg, rgba(6, 10, 10, 0.5), transparent 60%);
}
.hero-copy {
  position: relative;
  max-width: 820px;
  z-index: 1;
}
.eyebrow,
.section-kicker,
.status {
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0;
  color: var(--teal);
}
.hero .eyebrow {
  color: #7ed7cd;
}
.hero h1 {
  font-size: clamp(74px, 14vw, 190px);
  line-height: 0.8;
  margin: 22px 0 28px;
  letter-spacing: 0;
}
.hero-literal {
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 700;
  margin: 0;
}
.hero-tagline {
  font-size: clamp(20px, 2.4vw, 34px);
  margin: 8px 0 32px;
  max-width: 720px;
}
.hero-context {
  margin: -20px 0 30px;
  font-family: var(--mono);
  font-size: 12px;
  color: #c8d0ce;
}
.actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid rgba(255, 255, 255, 0.65);
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
}
.button.primary {
  background: var(--signal);
  border-color: var(--signal);
}
.button.dark {
  background: var(--ink);
  color: white;
  border-color: var(--ink);
}
.hero-method {
  position: absolute;
  right: max(28px, calc((100vw - var(--max)) / 2 + 28px));
  bottom: 42px;
  z-index: 1;
  font-family: var(--mono);
  font-size: 12px;
}
.hero-source {
  position: absolute;
  right: max(28px, calc((100vw - var(--max)) / 2 + 28px));
  bottom: 68px;
  z-index: 1;
  max-width: 420px;
  margin: 0;
  color: #d7dcda;
  font-family: var(--mono);
  font-size: 10px;
  text-align: right;
}
.hero-method span {
  color: #7ed7cd;
  margin: 0 5px;
}
.band {
  max-width: var(--max);
  margin: auto;
  padding: 100px 28px;
  border-bottom: 1px solid var(--rule);
}
.band h2 {
  font-size: clamp(34px, 5vw, 68px);
  line-height: 1.03;
  margin: 10px 0 28px;
  max-width: 930px;
  letter-spacing: 0;
}
.band h3 {
  font-size: 24px;
  line-height: 1.15;
  margin: 8px 0 14px;
  letter-spacing: 0;
}
.band p {
  max-width: 720px;
}
.large {
  font-size: clamp(21px, 2.4vw, 32px);
  line-height: 1.32;
}
.intro,
.business,
.library,
.about {
  display: grid;
  grid-template-columns: minmax(180px, 0.65fr) minmax(0, 1.35fr);
  gap: 60px;
}
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  margin-bottom: 38px;
}
.section-head h2 {
  margin-bottom: 0;
}
.text-link {
  font-weight: 700;
  text-underline-offset: 5px;
}
.secondary-link {
  display: inline-block;
  margin-top: 12px;
  color: var(--muted);
  font-size: 13px;
}
.lead-story {
  display: grid;
  grid-template-columns: minmax(220px, 0.72fr) minmax(0, 1.28fr);
  gap: 42px;
  padding: 46px 0;
  border-top: 4px solid var(--ink);
  border-bottom: 1px solid var(--rule);
  align-items: center;
}
.field-photo {
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: center;
  border-radius: 4px;
}
.lead-story h3 {
  font-size: clamp(28px, 3.6vw, 48px);
}
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.story-grid article {
  padding: 36px 36px 20px 0;
  border-bottom: 1px solid var(--rule);
}
.story-grid article + article {
  padding-left: 36px;
  border-left: 1px solid var(--rule);
}
.evidence-note,
.method-note,
.offer {
  font-size: 13px;
  color: var(--muted);
  margin-top: 28px;
}
.method {
  background: var(--white);
  max-width: none;
  padding-left: max(28px, calc((100vw - var(--max)) / 2 + 28px));
  padding-right: max(28px, calc((100vw - var(--max)) / 2 + 28px));
}
.method-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 48px;
  border-top: 1px solid var(--ink);
}
.method-grid article {
  padding: 34px 32px 12px 0;
}
.method-grid article + article {
  padding-left: 32px;
  border-left: 1px solid var(--rule);
}
.method-grid span {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--signal);
}
.business {
  background: var(--teal);
  color: white;
  max-width: none;
  padding-left: max(28px, calc((100vw - var(--max)) / 2 + 28px));
  padding-right: max(28px, calc((100vw - var(--max)) / 2 + 28px));
}
.business .section-kicker {
  color: #b4fff7;
}
.business .offer {
  color: #d0e4e1;
}
.text-link.light {
  color: white;
}
.idea-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 50px;
  border-top: 1px solid var(--ink);
}
.idea-grid article {
  padding: 34px 40px 34px 0;
  border-bottom: 1px solid var(--rule);
}
.idea-grid article:nth-child(even) {
  padding-left: 40px;
  border-left: 1px solid var(--rule);
}
.source-list {
  display: grid;
}
.source-list a {
  display: grid;
  grid-template-columns: 150px 1fr 1fr;
  gap: 24px;
  align-items: center;
  padding: 21px 0;
  border-top: 1px solid var(--rule);
  text-decoration: none;
}
.source-list span,
.source-list em {
  font-size: 12px;
  color: var(--muted);
  font-style: normal;
}
.source-list strong {
  font-size: 18px;
}
.anchor-note {
  margin: 36px 0 0;
  padding: 24px 0 0;
  border-top: 1px solid var(--rule);
  max-width: 960px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}
.anchor-note strong { color: var(--ink); }
.anchor-note code {
  overflow-wrap: anywhere;
  color: var(--ink);
}
.socials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.socials a {
  padding: 8px 12px;
  border: 1px solid var(--rule);
  text-decoration: none;
  font-size: 13px;
}
footer {
  max-width: var(--max);
  margin: auto;
  padding: 54px 28px 42px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  font-size: 13px;
}
footer strong {
  font-size: 24px;
}
footer p {
  color: var(--muted);
}
.footer-links {
  display: flex;
  gap: 18px;
}
.copyright {
  grid-column: 1/-1;
  border-top: 1px solid var(--rule);
  padding-top: 18px;
}
@media (max-width: 780px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }
  .site-header nav {
    display: block;
  }
  .site-header nav a {
    display: none;
  }
  .site-header nav .nav-priority {
    display: inline-block;
    padding: 10px 12px;
    border: 1px solid var(--rule);
  }
  .brand span {
    display: block;
    margin: 0;
  }
  .languages {
    gap: 8px;
  }
  .hero {
    min-height: 760px;
    padding-bottom: 95px;
  }
  .hero img {
    inset: 0;
    width: 100%;
    object-fit: cover;
    object-position: 64% center;
  }
  .hero-method {
    left: 28px;
    right: auto;
    bottom: 32px;
  }
  .hero-source {
    left: 28px;
    right: 28px;
    bottom: 56px;
    text-align: left;
  }
  .hero-method {
    bottom: 24px;
  }
  .band {
    padding-top: 72px;
    padding-bottom: 72px;
  }
  .intro,
  .business,
  .library,
  .about {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .section-head {
    align-items: start;
    flex-direction: column;
  }
  .lead-story {
    grid-template-columns: 1fr;
  }
  .field-photo {
    height: 430px;
  }
  .story-grid,
  .method-grid,
  .idea-grid {
    grid-template-columns: 1fr;
  }
  .story-grid article + article,
  .method-grid article + article,
  .idea-grid article:nth-child(even) {
    padding-left: 0;
    border-left: 0;
  }
  .source-list a {
    grid-template-columns: 1fr;
    gap: 4px;
  }
  footer {
    grid-template-columns: 1fr;
  }
  .footer-links {
    flex-wrap: wrap;
  }
}
@media (max-width: 390px) {
  .site-header {
    padding: 0 16px;
  }
  .languages {
    gap: 6px;
  }
  .languages a,
  .languages strong {
    font-size: 9px;
  }
  .hero {
    padding-left: 18px;
    padding-right: 18px;
  }
  .hero-copy {
    max-width: 354px;
  }
  .hero h1 {
    font-size: 70px;
  }
  .hero-tagline {
    max-width: 330px;
    font-size: 20px;
    overflow-wrap: break-word;
  }
  .band {
    padding-left: 18px;
    padding-right: 18px;
  }
  .button {
    width: 100%;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

.news-index h1,
.article-head h1 {
  font-size: clamp(42px, 7vw, 88px);
  line-height: 1.02;
  letter-spacing: 0;
  max-width: 1080px;
  margin: 12px 0 28px;
}
.news-card {
  display: grid;
  grid-template-columns: minmax(240px, .72fr) minmax(0, 1.28fr);
  gap: 44px;
  margin-top: 64px;
  padding-top: 44px;
  border-top: 4px solid var(--ink);
}
.news-card img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  object-position: center;
}
.news-card h2 {
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.08;
}
.news-card h2 a {
  text-decoration: none;
}
.article-shell {
  max-width: 1240px;
  margin: auto;
  padding: 92px 28px;
}
.article-deck {
  max-width: 920px;
  font-size: clamp(21px, 2.4vw, 30px);
  line-height: 1.35;
}
.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  padding: 24px 0;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--rule);
  font-family: var(--mono);
  font-size: 11px;
}
.article-hero {
  margin: 54px 0;
}
.article-hero img {
  display: block;
  width: min(720px, 100%);
  max-height: 900px;
  object-fit: contain;
  object-position: center;
  background: var(--dark);
}
.article-hero figcaption {
  max-width: 720px;
  color: var(--muted);
  font-size: 12px;
  margin-top: 10px;
}
.article-body {
  max-width: 780px;
  margin-left: min(18vw, 220px);
  font-size: 18px;
  line-height: 1.75;
}
.article-body .standfirst {
  font-size: 24px;
  line-height: 1.5;
}
.article-body h2 {
  font-size: 34px;
  line-height: 1.15;
  margin: 60px 0 18px;
}
.evidence-box,
.source-box {
  margin: 52px 0;
  padding: 28px;
  border: 1px solid var(--ink);
  background: white;
}
.evidence-box p,
.source-box p,
.source-box li {
  font-size: 15px;
}
.related-field {
  margin-top: 72px;
  padding-top: 36px;
  border-top: 4px solid var(--ink);
}
.related-heading h2 {
  margin-top: 8px;
}
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.related-grid a {
  display: flex;
  min-height: 190px;
  padding: 24px;
  flex-direction: column;
  text-decoration: none;
  border-right: 1px solid var(--rule);
}
.related-grid a:last-child { border-right: 0; }
.related-grid span,
.related-grid em {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 11px;
  font-style: normal;
  text-transform: uppercase;
}
.related-grid strong {
  margin: 18px 0 auto;
  font-size: 20px;
  line-height: 1.25;
}
@media (max-width: 780px) {
  .news-card { grid-template-columns: 1fr; gap: 24px; }
  .news-card img { height: 520px; }
  .article-shell { padding-top: 64px; }
  .article-body { margin-left: 0; font-size: 17px; }
  .article-body .standfirst { font-size: 21px; }
  .article-body h2 { font-size: 28px; }
  .related-grid { grid-template-columns: 1fr; }
  .related-grid a { min-height: 150px; border-right: 0; border-bottom: 1px solid var(--rule); }
  .related-grid a:last-child { border-bottom: 0; }
}
