:root {
  color-scheme: light;
  --ink: #171714;
  --ink-soft: #343431;
  --paper: #f4f4ef;
  --white: #ffffff;
  --fog: #d7d9d3;
  --muted: #73736e;
  --signal: #e84d2f;
  --line: rgba(23, 23, 20, 0.22);
  --line-dark: rgba(255, 255, 255, 0.22);
  --max: 1440px;
  --pad: clamp(1.25rem, 4vw, 4rem);
  --section: clamp(5rem, 9vw, 9rem);
  --sans: "Red Hat Display", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --serif: Georgia, "Times New Roman", serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 5rem;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button,
input,
textarea,
select {
  font: inherit;
}

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

.skip-link {
  position: fixed;
  z-index: 100;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.75rem 1rem;
  background: var(--white);
  color: var(--ink);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: none;
}

.site-header {
  position: fixed;
  z-index: 50;
  inset: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 5.25rem;
  padding: 0 var(--pad);
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  transition: background-color 220ms ease, min-height 220ms ease;
}

.site-header.is-scrolled,
.site-header.menu-active {
  min-height: 4.5rem;
  background: rgba(17, 17, 15, 0.96);
}

.brand,
.footer-brand {
  text-decoration: none;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand img {
  display: block;
  width: clamp(12rem, 22vw, 18rem);
  height: auto;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(1.25rem, 2.6vw, 2.75rem);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.site-nav a:not(.nav-cta) {
  position: relative;
}

.site-nav a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: -0.35rem;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  padding: 0.85rem 1rem;
  border: 1px solid currentColor;
}

.menu-toggle {
  display: none;
  padding: 0.6rem 0;
  color: inherit;
  background: transparent;
  border: 0;
  text-transform: uppercase;
}

.hero {
  position: relative;
  min-height: min(940px, 100svh);
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

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

.hero-seal {
  display: block;
  width: 6rem;
  height: auto;
  opacity: 1;
  pointer-events: none;
}

.hero-seal-mobile {
  display: none;
}

.hero-date-group {
  align-self: end;
  justify-self: end;
  width: min(20rem, 100%);
}

.hero-seal-desktop {
  margin: 0 0 1rem auto;
}

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

.hero-shade {
  background:
    linear-gradient(90deg, rgba(9, 9, 8, 0.86) 0%, rgba(9, 9, 8, 0.63) 34%, rgba(9, 9, 8, 0.05) 72%),
    linear-gradient(0deg, rgba(9, 9, 8, 0.55) 0%, transparent 38%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(17rem, 3fr);
  align-items: end;
  min-height: min(940px, 100svh);
  max-width: var(--max);
  margin: auto;
  padding: clamp(8.5rem, 15vh, 12rem) var(--pad) clamp(5.5rem, 9vh, 8rem);
}

.hero-copy {
  max-width: 62rem;
}

.eyebrow,
.section-index,
.path-meta,
.date-label,
.plan-resource > span {
  margin: 0;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 9ch;
  margin: 1rem 0 1.5rem;
  font-size: clamp(5rem, 13vw, 12rem);
  font-weight: 800;
  letter-spacing: -0.085em;
  line-height: 0.72;
  text-transform: uppercase;
}

.hero-intro {
  max-width: 37rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1.05rem, 1.5vw, 1.35rem);
  line-height: 1.45;
}

.hero-actions,
.country-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.45rem;
  padding: 0.9rem 1.2rem;
  border: 1px solid transparent;
  border-radius: 0;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  transition: background-color 180ms ease, color 180ms ease, border-color 180ms ease;
}

.button span,
.text-link span,
.nav-cta span {
  margin-left: 1rem;
}

.arrow-icon {
  flex: 0 0 auto;
  width: 1rem;
  height: 1rem;
  margin-left: 1rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: square;
  stroke-linejoin: miter;
}

.button-primary {
  background: var(--signal);
  color: var(--white);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--white);
  color: var(--ink);
}

.button-dark {
  background: var(--ink);
  color: var(--white);
}

.button-dark:hover,
.button-dark:focus-visible {
  background: var(--signal);
}

.button-light {
  background: var(--white);
  color: var(--ink);
}

.button-light:hover,
.button-light:focus-visible {
  border-color: var(--white);
  background: transparent;
  color: var(--white);
}

.text-link {
  display: inline-flex;
  align-items: center;
  padding-bottom: 0.25rem;
  border-bottom: 1px solid currentColor;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.text-link-light {
  color: var(--white);
}

.date-block {
  display: grid;
  gap: 0.75rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.5);
}

.date-block strong {
  font-size: clamp(1.7rem, 2.8vw, 3.25rem);
  letter-spacing: -0.06em;
  line-height: 1;
  white-space: nowrap;
}

.date-block > span:last-child {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
}

.photo-note {
  position: absolute;
  z-index: 1;
  right: var(--pad);
  bottom: 1.35rem;
  margin: 0;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section {
  max-width: var(--max);
  margin: auto;
  padding: var(--section) var(--pad);
}

.section-index {
  padding-bottom: 1rem;
  color: var(--muted);
  border-bottom: 1px solid var(--line);
}

.manifesto-grid {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(18rem, 5fr);
  gap: clamp(3rem, 8vw, 8rem);
  padding-top: clamp(4rem, 8vw, 8rem);
}

.manifesto-lead {
  margin: 0;
  font-size: clamp(3rem, 7vw, 7.4rem);
  font-weight: 750;
  letter-spacing: -0.065em;
  line-height: 0.94;
  text-transform: uppercase;
}

.manifesto-lead em {
  font-family: var(--serif);
  font-size: 0.83em;
  font-style: normal;
  font-weight: 400;
  text-transform: uppercase;
}

.manifesto-copy {
  align-self: end;
}

.manifesto-copy h2 {
  margin: 0 0 1.5rem;
  font-size: clamp(1.65rem, 2.2vw, 2.4rem);
  letter-spacing: -0.035em;
  line-height: 1.1;
}

.manifesto-copy p {
  color: var(--ink-soft);
  font-size: 1.08rem;
}

.manifesto-copy .text-link {
  margin-top: 1.5rem;
}

.section-dark {
  max-width: none;
  background: var(--ink);
  color: var(--white);
}

.section-dark > * {
  width: 100%;
  max-width: calc(var(--max) - (2 * var(--pad)));
  margin-right: auto;
  margin-left: auto;
}

.section-index-light {
  color: rgba(255, 255, 255, 0.55);
  border-color: var(--line-dark);
}

.section-heading {
  padding: clamp(3rem, 6vw, 6rem) 0;
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(18rem, 4fr);
  align-items: end;
  gap: 3rem;
}

.section-heading h2,
.story-copy h2,
.resources-intro h2,
.final-cta h2 {
  margin: 0;
  font-size: clamp(3.2rem, 7vw, 7rem);
  font-weight: 800;
  letter-spacing: -0.065em;
  line-height: 0.88;
  text-transform: uppercase;
}

.section-heading p {
  max-width: 31rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.08rem;
}

.countries .section-heading p {
  color: var(--ink-soft);
}

.path-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line-dark);
  border-left: 1px solid var(--line-dark);
}

.path-tab {
  --path-accent: var(--signal);
  --path-accent-text: var(--white);
  position: relative;
  display: grid;
  min-height: 27rem;
  padding: 1.4rem;
  overflow: hidden;
  color: var(--white);
  text-align: left;
  background: transparent;
  border: 0;
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  cursor: pointer;
  transition: background-color 180ms ease, color 180ms ease;
}

.path-tab[data-path="respond"] {
  --path-accent: #bdd3d1;
  --path-accent-text: var(--ink);
}

.path-tab[data-path="mobilize"] {
  --path-accent: #929f59;
  --path-accent-text: var(--white);
}

.path-tab img {
  position: absolute;
  right: -5%;
  bottom: -16%;
  width: 78%;
  opacity: 0.16;
  transition: opacity 180ms ease, transform 300ms ease;
}

.path-number {
  justify-self: end;
  color: currentColor;
  font-size: 0.75rem;
  opacity: 0.55;
}

.path-meta {
  align-self: end;
  position: relative;
  z-index: 1;
  color: currentColor;
  opacity: 0.55;
}

.path-tab strong {
  position: relative;
  z-index: 1;
  align-self: end;
  margin-top: 0.5rem;
  font-size: clamp(2.4rem, 4vw, 4.8rem);
  font-weight: 800;
  letter-spacing: -0.06em;
  line-height: 1;
  text-transform: uppercase;
}

.path-summary {
  position: relative;
  z-index: 1;
  align-self: end;
  margin-top: 1rem;
  font-size: 0.92rem;
}

.path-tab:hover,
.path-tab:focus-visible,
.path-tab.is-active {
  color: var(--path-accent-text);
  background: var(--path-accent);
}

@media (hover: hover) {
  .path-tabs:hover .path-tab.is-active:not(:hover) {
    color: var(--white);
    background: transparent;
  }
}

.path-tab:hover img,
.path-tab:focus-visible img,
.path-tab.is-active img {
  opacity: 0.34;
  transform: translate(-3%, -3%);
}

.path-panel {
  display: grid;
  grid-template-columns: minmax(14rem, 0.85fr) minmax(20rem, 1.4fr) minmax(14rem, 0.85fr);
  gap: clamp(2rem, 5vw, 5rem);
  padding: clamp(2.5rem, 5vw, 4.5rem);
  background: var(--white);
  color: var(--ink);
}

.eyebrow-dark {
  color: var(--muted);
}

.path-panel h3 {
  max-width: 13ch;
  margin: 1rem 0 0;
  font-size: clamp(1.7rem, 2.8vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1;
  text-transform: uppercase;
}

.plan-list {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: steps;
}

.plan-list li {
  display: grid;
  grid-template-columns: 2.5rem 1fr;
  gap: 1rem;
  padding: 1.1rem 0;
  border-top: 1px solid var(--line);
}

.plan-list li:last-child {
  border-bottom: 1px solid var(--line);
}

.plan-list span {
  color: var(--signal);
  font-size: 0.75rem;
  font-weight: 700;
}

.plan-resource {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}

.plan-resource strong {
  max-width: 16rem;
  font-size: 1.1rem;
  line-height: 1.3;
}

.plan-resource .text-link {
  margin-top: auto;
}

.story-grid {
  display: grid;
  grid-template-columns: minmax(20rem, 4fr) minmax(0, 7fr);
  align-items: center;
  gap: clamp(3rem, 8vw, 8rem);
  padding-top: clamp(4rem, 8vw, 8rem);
}

.story-copy h2,
.resources-intro h2 {
  margin-top: 1.25rem;
  font-size: clamp(2.8rem, 5.5vw, 5.6rem);
}

.story-copy > p:not(.eyebrow):not(.scripture),
.resources-intro > p:not(.eyebrow) {
  max-width: 35rem;
  color: var(--ink-soft);
  font-size: 1.08rem;
}

.scripture {
  max-width: 30rem;
  margin-top: 2.5rem;
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2.3vw, 2.25rem);
  line-height: 1.25;
}

.scripture span {
  display: block;
  margin-top: 0.75rem;
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.video-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: var(--ink);
}

.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.countries {
  max-width: none;
  background: var(--white);
}

.countries > * {
  width: 100%;
  max-width: calc(var(--max) - (2 * var(--pad)));
  margin-right: auto;
  margin-left: auto;
}

.country-selector {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.country-tab {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 4.6rem;
  padding: 1rem;
  background: transparent;
  border: 0;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
}

.country-tab span {
  color: var(--muted);
  font-size: 0.68rem;
}

.country-tab:hover,
.country-tab:focus-visible,
.country-tab.is-active {
  background: var(--ink);
  color: var(--white);
}

.country-panel {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(21rem, 5fr);
  min-height: 36rem;
  background: var(--paper);
}

.country-image-wrap {
  position: relative;
  align-self: start;
  width: 100%;
  min-height: 0;
  margin: 0;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  background: var(--ink);
}

.country-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.06);
}

.country-photo-note {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 0.9rem;
  color: rgba(255, 255, 255, 0.88);
  background: rgba(20, 20, 18, 0.86);
  backdrop-filter: blur(12px);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.35;
  text-transform: uppercase;
}

.country-photo-disclaimer {
  margin: 0;
  padding: 0.85rem 0 0;
  color: var(--muted);
  font-size: 0.74rem;
  line-height: 1.45;
}

.country-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2rem, 5vw, 5rem);
}

.country-copy h3 {
  margin: 1rem 0 1.25rem;
  font-family: var(--serif);
  font-size: clamp(4rem, 7vw, 8rem);
  font-weight: 400;
  letter-spacing: -0.07em;
  line-height: 0.9;
  text-transform: uppercase;
}

.country-copy > p:not(.eyebrow) {
  max-width: 31rem;
  color: var(--ink-soft);
  font-size: 1.04rem;
}

.resources {
  max-width: none;
  background: var(--ink);
  color: var(--white);
}

.resources > * {
  width: 100%;
  max-width: calc(var(--max) - (2 * var(--pad)));
  margin-right: auto;
  margin-left: auto;
}

.resources .section-index {
  color: rgba(255, 255, 255, 0.55);
  border-color: var(--line-dark);
}

.resources-grid {
  display: grid;
  grid-template-columns: minmax(0, 6fr) minmax(22rem, 5fr);
  gap: clamp(4rem, 10vw, 10rem);
  padding-top: clamp(4rem, 8vw, 8rem);
}

.resources-intro > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.68);
}

.resources-intro .button {
  margin-top: 2rem;
}

.resource-row {
  display: grid;
  grid-template-columns: 2rem 1fr;
  gap: 1.5rem;
  padding: 1.65rem 0;
  border-top: 1px solid var(--line-dark);
}

.resource-row:last-child {
  border-bottom: 1px solid var(--line-dark);
}

.resource-row > span {
  color: var(--signal);
  font-size: 0.72rem;
  font-weight: 700;
}

.resource-row strong {
  display: block;
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.resource-row p {
  margin: 0.4rem 0 0;
  color: rgba(255, 255, 255, 0.58);
}

.final-cta {
  position: relative;
  display: grid;
  min-height: 70svh;
  overflow: hidden;
  color: var(--white);
}

.final-cta > img,
.final-cta-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.final-cta > img {
  object-fit: cover;
}

.final-cta-shade {
  background: linear-gradient(90deg, rgba(10, 10, 9, 0.78), rgba(10, 10, 9, 0.16));
}

.final-cta-copy {
  position: relative;
  z-index: 1;
  align-self: end;
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: var(--section) var(--pad);
}

.final-cta h2 {
  max-width: 12ch;
  margin: 1.5rem 0 2rem;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4rem;
  padding: 4rem var(--pad) 2rem;
  background: var(--ink);
  color: var(--white);
}

.footer-brand {
  display: inline-block;
}

.footer-brand img {
  display: block;
  width: min(100%, 24rem);
  height: auto;
}

.footer-brand-block p {
  margin-top: 1.25rem;
}

.site-footer p {
  color: rgba(255, 255, 255, 0.55);
}

.footer-links {
  display: flex;
  gap: 2rem;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-campaign-brand {
  grid-column: 1 / -1;
  display: block;
  padding-top: 2.5rem;
  border-top: 1px solid var(--line-dark);
}

.footer-campaign-brand img {
  display: block;
  width: 9rem;
  height: auto;
}

.copyright {
  grid-column: 1 / -1;
  margin: 0;
  padding-top: 0.5rem;
  font-size: 0.72rem;
}

:focus-visible {
  outline: 2px solid var(--signal);
  outline-offset: 4px;
}

@media (max-width: 980px) {
  .site-nav {
    position: fixed;
    inset: 4.5rem 0 0;
    display: none;
    align-items: stretch;
    align-content: start;
    padding: 3rem var(--pad);
    background: var(--ink);
  }

  .site-nav.is-open {
    display: grid;
  }

  .site-nav a {
    padding: 1.2rem 0;
    font-size: 1.1rem;
    border-bottom: 1px solid var(--line-dark);
  }

  .site-nav .nav-cta {
    margin-top: 1rem;
    padding: 1.2rem;
    background: var(--signal);
    border: 0;
  }

  .menu-toggle {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.75rem;
    letter-spacing: 0.12em;
  }

  .menu-icon,
  .menu-icon::after {
    width: 1.25rem;
    height: 1px;
    background: currentColor;
    content: "";
    transition: transform 180ms ease;
  }

  .menu-icon::after {
    display: block;
    transform: translateY(0.35rem);
  }

  .menu-toggle[aria-expanded="true"] .menu-icon {
    transform: rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] .menu-icon::after {
    transform: rotate(-90deg);
  }

  .hero-grid {
    grid-template-columns: 1fr;
    align-content: end;
    min-height: min(900px, 100svh);
  }

  .date-block {
    justify-self: start;
    margin-top: 3rem;
  }

  .manifesto-grid,
  .split-heading,
  .story-grid,
  .resources-grid {
    grid-template-columns: 1fr;
  }

  .path-tab {
    min-height: 22rem;
  }

  .path-panel {
    grid-template-columns: 1fr 1.5fr;
  }

  .plan-resource {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: end;
  }

  .plan-resource .text-link {
    justify-self: end;
  }

  .story-copy {
    max-width: 44rem;
  }

  .country-panel {
    grid-template-columns: 1fr;
  }

  .country-image-wrap {
    aspect-ratio: 3 / 2;
    min-height: 0;
  }
}

@media (max-width: 720px) {
  :root {
    --pad: 1.15rem;
    --section: 4.5rem;
  }

  .site-header {
    gap: 1rem;
    min-height: 4.5rem;
  }

  .brand {
    flex: 1 1 auto;
    min-width: 0;
  }

  .brand img {
    width: min(12rem, 60vw);
    max-height: 2.9rem;
    height: auto;
  }

  .menu-toggle {
    flex: 0 0 auto;
  }

  .eyebrow,
  .section-index,
  .path-meta,
  .date-label,
  .plan-resource > span {
    font-size: 0.7rem;
    letter-spacing: 0.13em;
    line-height: 1.45;
  }

  .section-index {
    overflow-wrap: anywhere;
  }

  .hero {
    min-height: 46rem;
  }

  .hero-grid {
    min-height: 46rem;
    padding-top: 7rem;
    padding-bottom: 4rem;
  }

  .hero-image {
    object-position: 61% center;
  }

  .hero-shade {
    background: linear-gradient(90deg, rgba(9, 9, 8, 0.87), rgba(9, 9, 8, 0.18)), linear-gradient(0deg, rgba(9, 9, 8, 0.78), transparent 58%);
  }

  .hero-date-group {
    display: none;
  }

  .hero-seal-mobile {
    display: block;
    width: 5rem;
    margin-bottom: 1.35rem;
    opacity: 1;
  }

  .hero h1 {
    font-size: clamp(4.6rem, 25vw, 7rem);
  }

  .hero-intro {
    max-width: 28rem;
  }

  .photo-note {
    display: none;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 1.1rem;
    width: 100%;
  }

  .button {
    max-width: 100%;
    justify-content: space-between;
    line-height: 1.25;
    text-align: left;
  }

  .hero-actions .button,
  .country-actions .button,
  .resources-intro .button,
  .final-cta .button {
    width: 100%;
  }

  .text-link {
    max-width: 100%;
    line-height: 1.4;
  }

  .arrow-icon {
    margin-left: 0.75rem;
  }

  .manifesto-grid {
    gap: 3rem;
    padding-top: 3.5rem;
  }

  .manifesto-lead {
    font-size: clamp(2.9rem, 15vw, 4.8rem);
  }

  .manifesto-lead em {
    font-size: 0.74em;
    letter-spacing: -0.055em;
  }

  .manifesto-lead em span {
    display: block;
    white-space: nowrap;
  }

  .path-tabs {
    grid-template-columns: 1fr;
  }

  .path-tab {
    min-height: 16rem;
    padding: 1.2rem;
  }

  .path-tab strong {
    font-size: clamp(2.25rem, 14vw, 3.5rem);
  }

  .path-tab img {
    right: -3%;
    bottom: -14%;
    width: 72%;
    opacity: 0.28;
  }

  .path-tab:hover img,
  .path-tab:focus-visible img,
  .path-tab.is-active img {
    opacity: 0.48;
  }

  .path-panel {
    grid-template-columns: 1fr;
    padding: 2rem 1.2rem;
  }

  .plan-resource {
    grid-column: auto;
    grid-template-columns: 1fr;
  }

  .plan-resource .text-link {
    justify-self: start;
  }

  .plan-list li {
    grid-template-columns: 2rem minmax(0, 1fr);
    gap: 0.65rem;
  }

  .section-heading {
    gap: 2rem;
  }

  .section-heading h2,
  .story-copy h2,
  .resources-intro h2,
  .final-cta h2 {
    font-size: clamp(2.9rem, 15vw, 5rem);
  }

  .country-selector {
    display: flex;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .country-selector::-webkit-scrollbar {
    display: none;
  }

  .country-tab {
    flex: 0 0 8rem;
  }

  .country-copy {
    padding: 2.5rem 1.2rem 3.5rem;
  }

  .country-copy h3 {
    font-size: clamp(3.6rem, 20vw, 6rem);
  }

  .country-photo-note {
    right: 0.75rem;
    bottom: 0.75rem;
    left: 0.75rem;
    align-items: flex-start;
    flex-direction: column;
    gap: 0.3rem;
    padding: 0.65rem 0.75rem;
    font-size: 0.62rem;
  }

  .country-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .resources-grid {
    gap: 4rem;
  }

  .resource-row {
    grid-template-columns: 1.5rem minmax(0, 1fr);
    gap: 1rem;
  }

  .resource-row strong {
    font-size: 1.2rem;
    line-height: 1.15;
  }

  .final-cta {
    min-height: 36rem;
  }

  .final-cta > img {
    object-position: 66% center;
  }

  .final-cta-shade {
    background: linear-gradient(90deg, rgba(10, 10, 9, 0.83), rgba(10, 10, 9, 0.3));
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-links {
    flex-wrap: wrap;
    gap: 0.75rem 1.5rem;
  }

  .copyright {
    line-height: 1.5;
  }
}

@media (max-width: 380px) {
  :root {
    --pad: 1rem;
  }

  .brand img {
    width: 10.5rem;
  }

  .button {
    padding-right: 1rem;
    padding-left: 1rem;
    font-size: 0.75rem;
    letter-spacing: 0.06em;
  }

  .section-heading h2,
  .story-copy h2,
  .resources-intro h2,
  .final-cta h2 {
    font-size: 2.65rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
