:root {
  --bg: #f5f2eb;
  --paper: #fffaf1;
  --ink: #161513;
  --muted: #645f58;
  --line: rgba(32, 28, 24, 0.14);
  --graphite: #191818;
  --copper: #d96b27;
  --copper-dark: #a7471f;
  --green: #516b4b;
  --blue: #2f6173;
  --shadow: 0 22px 60px rgba(20, 18, 15, 0.18);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

body.no-scroll {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 56px);
  color: #fff;
  transition: background 180ms ease, box-shadow 180ms ease, padding 180ms ease;
}

.site-header.is-scrolled,
.site-header.menu-open {
  background: rgba(22, 21, 19, 0.94);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 190px;
}

.brand-mark {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 50%;
  color: #fff;
  background: rgba(255, 255, 255, 0.92);
  font-size: 14px;
  font-weight: 800;
  overflow: hidden;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand strong {
  display: block;
  letter-spacing: 0;
  line-height: 1;
}

.brand small {
  display: block;
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 12px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 1.8vw, 24px);
  font-size: 14px;
  font-weight: 700;
}

.main-nav a {
  color: rgba(255, 255, 255, 0.84);
}

.main-nav a:hover {
  color: #fff;
}

.main-nav a.is-active {
  color: #fff;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: var(--radius);
  background: rgba(0, 0, 0, 0.18);
  color: #fff;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fff;
}

.inner-page .site-header {
  background: rgba(22, 21, 19, 0.72);
  backdrop-filter: blur(12px);
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.76) 0%, rgba(0, 0, 0, 0.46) 42%, rgba(0, 0, 0, 0.1) 100%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.62) 0%, rgba(0, 0, 0, 0.05) 52%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(900px, calc(100% - 36px));
  margin: 0 auto;
  padding: 140px 0 88px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: var(--copper);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(48px, 8vw, 112px);
  line-height: 0.94;
  letter-spacing: 0;
}

.hero-lead {
  max-width: 780px;
  margin: 22px 0 34px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(18px, 2.8vw, 30px);
  font-weight: 800;
  line-height: 1.22;
}

.primary-action,
.secondary-action {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: var(--radius);
  cursor: pointer;
  font-weight: 800;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease;
}

.primary-action {
  padding: 0 24px;
  color: #fff;
  background: var(--copper);
}

.primary-action:hover {
  background: var(--copper-dark);
  transform: translateY(-1px);
}

.secondary-action {
  width: 100%;
  padding: 0 20px;
  color: #fff;
  background: var(--graphite);
}

.secondary-action:hover {
  background: var(--copper-dark);
}

.page-hero {
  position: relative;
  min-height: 64vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fff;
}

.page-hero-image,
.page-hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.page-hero-image {
  object-fit: cover;
}

.page-hero-shade {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.52) 48%, rgba(0, 0, 0, 0.16) 100%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.12) 58%);
}

.page-hero-content {
  position: relative;
  z-index: 1;
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  padding: 150px 0 72px;
}

.page-hero-content h1 {
  max-width: 920px;
  margin: 0;
  font-size: clamp(42px, 6.4vw, 86px);
  line-height: 0.98;
  letter-spacing: 0;
}

.page-hero-content p:not(.eyebrow) {
  max-width: 760px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(17px, 2vw, 21px);
}

.intro-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: min(var(--max), calc(100% - 36px));
  margin: -42px auto 0;
  position: relative;
  z-index: 2;
  background: var(--paper);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.metric {
  min-height: 118px;
  padding: 26px;
  border-right: 1px solid var(--line);
}

.metric:last-child {
  border-right: 0;
}

.metric strong {
  display: block;
  color: var(--graphite);
  font-size: clamp(26px, 4vw, 42px);
  line-height: 1;
}

.metric span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
}

.section {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(72px, 9vw, 118px) 0;
}

.about-section,
.contacts-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 480px);
  gap: clamp(34px, 6vw, 74px);
  align-items: center;
}

.section-copy h2,
.section-heading h2,
.partner-card h2,
.contacts-section h2 {
  margin: 0 0 22px;
  font-size: clamp(32px, 5vw, 58px);
  line-height: 1.05;
  letter-spacing: 0;
}

.section-copy p,
.section-heading p,
.partner-card p,
.contact-box,
.method-grid p,
.method-item p,
.team-card p,
.author-note p,
.publication-entry p,
.article-card p,
.blog-post p {
  color: var(--muted);
  font-size: 17px;
}

.image-panel {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.image-panel img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.image-panel figcaption {
  padding: 18px 20px 20px;
  color: var(--muted);
  font-size: 14px;
}

.sequence-section {
  padding-top: 20px;
}

.content-sequence {
  display: grid;
  gap: 18px;
}

.content-card {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(420px, 1.1fr);
  gap: clamp(22px, 4vw, 46px);
  align-items: center;
  padding: clamp(20px, 4vw, 34px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 250, 241, 0.62);
}

.content-card:nth-child(even) {
  grid-template-columns: minmax(420px, 1.1fr) minmax(280px, 0.9fr);
}

.content-card:nth-child(even) .content-copy {
  order: 2;
}

.content-copy span,
.method-item span {
  display: inline-flex;
  min-width: 42px;
  color: var(--copper);
  font-weight: 900;
}

.content-copy h3,
.method-item h3,
.team-card h3 {
  margin: 12px 0 10px;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.12;
}

.content-copy p,
.method-item p,
.team-card p {
  margin: 0;
}

.content-visual,
.method-image {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: zoom-in;
  background: #1c1d1d;
}

.content-visual img,
.method-image img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transition: transform 240ms ease;
}

.content-visual:hover img,
.method-image:hover img {
  transform: scale(1.02);
}

.methodology-section {
  width: 100%;
  max-width: none;
  padding-inline: max(18px, calc((100vw - var(--max)) / 2));
  background: var(--graphite);
  color: #fff;
}

.methodology-section .section-heading {
  max-width: 820px;
}

.methodology-section .section-heading p,
.methodology-section .method-item p,
.methodology-section .author-note p {
  color: rgba(255, 255, 255, 0.72);
}

.method-list {
  display: grid;
  gap: 18px;
  margin-top: 36px;
}

.method-item {
  display: grid;
  grid-template-columns: minmax(320px, 0.92fr) minmax(300px, 1fr);
  gap: clamp(22px, 4vw, 44px);
  align-items: center;
  padding: clamp(18px, 3vw, 28px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
}

.method-item:nth-child(even) {
  grid-template-columns: minmax(300px, 1fr) minmax(320px, 0.92fr);
}

.method-item:nth-child(even) .method-image {
  order: 2;
}

.method-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 36px;
}

.method-grid article {
  min-height: 280px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
}

.method-grid span {
  color: var(--copper);
  font-weight: 900;
}

.method-grid h3,
.author-note h3 {
  margin: 18px 0 10px;
  font-size: 24px;
  line-height: 1.16;
}

.author-note {
  display: grid;
  grid-template-columns: minmax(220px, 360px) minmax(0, 1fr);
  gap: 30px;
  margin-top: 20px;
  padding: 28px;
  border-radius: var(--radius);
  background: rgba(217, 107, 39, 0.14);
}

.partners-section {
  padding-bottom: 40px;
}

.partner-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 340px);
  gap: clamp(26px, 5vw, 60px);
  align-items: center;
  padding: clamp(32px, 6vw, 64px);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(217, 107, 39, 0.12), rgba(47, 97, 115, 0.14)),
    var(--paper);
  border: 1px solid var(--line);
}

.partner-card h2 {
  color: var(--graphite);
  font-size: clamp(54px, 12vw, 128px);
}

.partner-logo {
  display: grid;
  min-height: 180px;
  align-content: center;
  justify-items: center;
  padding: 26px;
  border: 2px solid var(--graphite);
  border-radius: var(--radius);
  color: var(--graphite);
  background: #fff;
  text-align: center;
  transition: transform 160ms ease, border-color 160ms ease, color 160ms ease;
}

.partner-logo:hover {
  color: var(--copper-dark);
  border-color: var(--copper-dark);
  transform: translateY(-2px);
}

.partner-logo strong {
  font-size: clamp(38px, 8vw, 72px);
  line-height: 0.95;
  letter-spacing: 0;
}

.partner-logo span {
  color: var(--muted);
  font-weight: 900;
  letter-spacing: 0;
}

.partner-logo img {
  width: min(100%, 320px);
  height: auto;
}

.team-section {
  padding-top: 58px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.team-card {
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 18px 44px rgba(20, 18, 15, 0.12);
}

.team-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.team-card div {
  padding: 22px;
}

.team-card h3 {
  margin-top: 0;
  font-size: clamp(22px, 2.4vw, 28px);
}

.gallery-section {
  padding-top: 54px;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 32px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  grid-template-rows: repeat(2, minmax(220px, 1fr));
  gap: 16px;
}

.gallery-item {
  position: relative;
  min-height: 230px;
  padding: 0;
  border: 0;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: zoom-in;
  background: #ddd;
}

.gallery-item.large {
  grid-row: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 260ms ease;
}

.gallery-item:hover img {
  transform: scale(1.035);
}

.publications-section {
  padding-top: 54px;
}

.publication-entry-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.publication-entry {
  display: grid;
  min-height: 260px;
  align-content: end;
  padding: clamp(24px, 4vw, 34px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(217, 107, 39, 0.12), rgba(47, 97, 115, 0.14)),
    var(--paper);
  transition: transform 160ms ease, border-color 160ms ease;
}

.publication-entry:hover {
  border-color: rgba(217, 107, 39, 0.46);
  transform: translateY(-2px);
}

.publication-entry span,
.content-type {
  color: var(--copper);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.publication-entry h3 {
  margin: 14px 0 10px;
  font-size: clamp(25px, 3vw, 38px);
  line-height: 1.08;
}

.publication-entry p {
  margin: 0;
}

.publication-list-section,
.blog-section {
  padding-bottom: 54px;
}

.article-grid,
.blog-layout {
  display: grid;
  gap: 18px;
}

.article-grid {
  grid-template-columns: repeat(2, 1fr);
}

.article-card,
.blog-post {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 18px 44px rgba(20, 18, 15, 0.1);
}

.article-card.featured {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(380px, 0.95fr) minmax(0, 1fr);
  align-items: stretch;
}

.article-card img,
.blog-post img {
  width: 100%;
  height: 100%;
  min-height: 270px;
  object-fit: cover;
}

.article-card:not(.featured) img {
  aspect-ratio: 16 / 10;
  height: auto;
}

.article-card div,
.blog-post div {
  padding: clamp(22px, 3vw, 32px);
}

.article-card h2,
.blog-post h2 {
  margin: 12px 0 14px;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.04;
}

.article-card h3,
.blog-post h3 {
  margin: 12px 0 10px;
  font-size: clamp(24px, 2.7vw, 32px);
  line-height: 1.1;
}

.article-card p,
.blog-post p {
  margin: 0 0 12px;
}

.article-card p:last-child,
.blog-post p:last-child {
  margin-bottom: 0;
}

.blog-post {
  display: grid;
  grid-template-columns: minmax(300px, 0.7fr) minmax(0, 1fr);
  align-items: stretch;
}

.blog-post:first-child {
  grid-template-columns: minmax(420px, 0.92fr) minmax(0, 1fr);
}

.single-publication {
  width: min(980px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(128px, 14vw, 176px) 0 clamp(72px, 9vw, 118px);
}

.single-publication-header {
  max-width: 840px;
  margin: 0 auto clamp(34px, 5vw, 54px);
}

.single-publication-header h1 {
  margin: 0;
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1.02;
  letter-spacing: 0;
}

.publication-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin-top: 22px;
  color: var(--muted);
  font-size: 16px;
  font-weight: 800;
}

.publication-meta span {
  display: inline-flex;
  align-items: center;
}

.publication-meta span + span::before {
  content: "";
  width: 6px;
  height: 6px;
  margin-right: 22px;
  border-radius: 50%;
  background: var(--copper);
}

.single-publication-media {
  display: grid;
  gap: 24px;
}

.single-publication-media img {
  width: 100%;
  border-radius: var(--radius);
  background: var(--graphite);
  box-shadow: var(--shadow);
}

.next-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 40px;
  border-top: 1px solid var(--line);
}

.next-section h2 {
  margin: 0;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.08;
}

.next-section .primary-action {
  flex: 0 0 auto;
}

.contacts-section {
  align-items: start;
}

.contact-box {
  padding: 28px;
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.contact-box dl {
  margin: 0 0 24px;
}

.contact-box div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.contact-box dt {
  color: var(--muted);
}

.contact-box dd {
  margin: 0;
  font-weight: 800;
  text-align: right;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(18px, 4vw, 56px);
  color: rgba(255, 255, 255, 0.76);
  background: var(--graphite);
}

.site-footer p {
  margin: 0;
}

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

.modal,
.lightbox {
  position: fixed;
  z-index: 40;
  inset: 0;
}

.modal[hidden],
.lightbox[hidden] {
  display: none;
}

.modal {
  display: grid;
  place-items: center;
  padding: 18px;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.62);
}

.modal-panel {
  position: relative;
  width: min(560px, 100%);
  max-height: min(760px, calc(100vh - 36px));
  overflow: auto;
  padding: clamp(24px, 5vw, 38px);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.modal-panel h2 {
  margin: 0 0 20px;
  font-size: clamp(28px, 5vw, 42px);
  line-height: 1.08;
}

.modal-close,
.lightbox button {
  position: absolute;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 0;
  border-radius: var(--radius);
  cursor: pointer;
  color: #fff;
  background: var(--graphite);
  font-size: 28px;
  line-height: 1;
}

.modal-close {
  top: 16px;
  right: 16px;
}

.join-form {
  display: grid;
  gap: 16px;
}

.form-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.join-form label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-weight: 700;
}

.join-form input,
.join-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 13px 14px;
  color: var(--ink);
  background: #fff;
  outline: none;
}

.join-form input:focus,
.join-form textarea:focus {
  border-color: var(--copper);
  box-shadow: 0 0 0 3px rgba(217, 107, 39, 0.16);
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--green);
  font-weight: 800;
}

.lightbox {
  display: grid;
  place-items: center;
  padding: 18px;
  background: rgba(0, 0, 0, 0.86);
}

.lightbox button {
  top: 18px;
  right: 18px;
  z-index: 2;
}

.lightbox img {
  max-width: min(1180px, 100%);
  max-height: calc(100vh - 70px);
  border-radius: var(--radius);
  object-fit: contain;
}

@media (max-width: 900px) {
  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: 76px;
    left: 18px;
    right: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--radius);
    background: rgba(22, 21, 19, 0.97);
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a {
    padding: 13px 10px;
  }

  .hero {
    min-height: 86vh;
  }

  .hero-content {
    padding-bottom: 64px;
  }

  .intro-strip,
  .about-section,
  .contacts-section,
  .content-card,
  .content-card:nth-child(even),
  .method-item,
  .method-item:nth-child(even),
  .partner-card,
  .team-grid,
  .method-grid,
  .author-note,
  .publication-entry-grid,
  .article-grid,
  .article-card.featured,
  .blog-post,
  .blog-post:first-child {
    grid-template-columns: 1fr;
  }

  .content-card:nth-child(even) .content-copy,
  .method-item:nth-child(even) .method-image {
    order: initial;
  }

  .intro-strip {
    margin-top: 0;
    border-radius: 0;
    width: 100%;
  }

  .metric {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .metric:last-child {
    border-bottom: 0;
  }

  .method-grid article {
    min-height: auto;
  }

  .content-visual img,
  .method-image img {
    aspect-ratio: 16 / 9;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .gallery-item.large {
    grid-row: auto;
  }

  .next-section {
    display: grid;
  }
}

@media (max-width: 560px) {
  .site-header {
    padding: 12px 14px;
  }

  .brand {
    min-width: 0;
  }

  .brand small {
    display: none;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .hero {
    min-height: 760px;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.36)),
      linear-gradient(0deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.08));
  }

  .hero-content {
    width: min(100% - 28px, 900px);
    padding: 112px 0 42px;
  }

  .hero h1 {
    font-size: 48px;
  }

  .page-hero {
    min-height: 620px;
  }

  .page-hero-content {
    width: min(100% - 28px, var(--max));
    padding: 116px 0 44px;
  }

  .page-hero-content h1 {
    font-size: 40px;
  }

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

  .primary-action {
    width: 100%;
    padding-inline: 14px;
  }

  .section {
    width: min(100% - 28px, var(--max));
  }

  .section-copy h2,
  .section-heading h2,
  .contacts-section h2 {
    font-size: 32px;
  }

  .partner-card h2 {
    font-size: 54px;
  }

  .content-card,
  .method-item,
  .partner-card {
    padding: 18px;
  }

  .publication-entry,
  .article-card div,
  .blog-post div {
    padding: 20px;
  }

  .article-card img,
  .blog-post img {
    min-height: 220px;
  }

  .single-publication {
    width: min(100% - 28px, 980px);
    padding-top: 112px;
  }

  .single-publication-header h1 {
    font-size: 34px;
  }

  .publication-meta {
    display: grid;
    gap: 6px;
  }

  .publication-meta span + span::before {
    display: none;
  }

  .content-copy h3,
  .method-item h3 {
    font-size: 24px;
  }

  .partner-logo {
    min-height: 140px;
  }

  .contact-box div {
    display: grid;
    gap: 2px;
  }

  .contact-box dd {
    text-align: left;
  }

  .site-footer {
    display: grid;
  }
}
