:root {
      --black: #000000;
      --white: #ffffff;
      --paper: #ffffff;
      --cyan: #02949b;
      --pink: #faaed2;
      --yellow: #e5c222;
      --orange: #ff750f;
      --soft: #f2f2f2;
      --line: 2px;
      --max-width: 1320px;
      --space-section: clamp(48px, 6.5vw, 96px);
      --space-page-x: clamp(16px, 2.2vw, 28px);
      --text-kicker: 13px;
      --text-small: 15px;
      --text-body: clamp(17px, 1.6vw, 24px);
      --text-card: clamp(20px, 2.3vw, 34px);
      --text-lead: clamp(24px, 3.1vw, 46px);
      --text-section: clamp(42px, 8vw, 112px);
      --text-hero: clamp(54px, 10vw, 164px);
      --text-display: clamp(52px, 9.4vw, 150px);
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: Arial, Helvetica, sans-serif;
      background: var(--white);
      color: var(--black);
      overflow-x: hidden;
    }

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

    h1,
    .logo,
    .section-title,
    .demand,
    .cta h2,
    .rights-item,
    .problem-card h3,
    .timeline-title,
    .partner-title,
    .keep-letter {
      font-family: "BBH Bogle", Impact, Arial Black, sans-serif;
      letter-spacing: 0;
      font-weight: 400;
    }

    .site-header {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      z-index: 100;
      display: grid;
      grid-template-columns: minmax(250px, 0.6fr) minmax(520px, 1fr);
      align-items: center;
      border-bottom: var(--line) solid var(--black);
      background: rgba(255, 255, 255, 0.92);
      backdrop-filter: blur(14px);
    }

    .logo {
      display: block;
      padding: 18px 22px;
      font-weight: 400;
      text-transform: uppercase;
      letter-spacing: 0;
      font-size: clamp(21px, 2vw, 34px);
      line-height: 0.96;
    }

    .menu-toggle {
      display: none;
      width: 64px;
      height: 64px;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      gap: 6px;
      border: 0;
      border-right: var(--line) solid var(--black);
      background: var(--white);
      cursor: pointer;
    }

    .menu-toggle span {
      display: block;
      width: 25px;
      height: 2px;
      background: var(--black);
      transition: transform 180ms ease, opacity 180ms ease;
    }

    .site-header.menu-open .menu-toggle span:nth-child(1) {
      transform: translateY(8px) rotate(45deg);
    }

    .site-header.menu-open .menu-toggle span:nth-child(2) {
      opacity: 0;
    }

    .site-header.menu-open .menu-toggle span:nth-child(3) {
      transform: translateY(-8px) rotate(-45deg);
    }

    .nav {
      height: 100%;
      display: grid;
      grid-template-columns: repeat(6, minmax(0, 1fr));
      border-left: var(--line) solid var(--black);
    }

    .nav a {
      display: flex;
      align-items: center;
      justify-content: center;
      min-height: 72px;
      padding: 0 14px;
      border-right: var(--line) solid var(--black);
      font-size: 12px;
      font-weight: 900;
      text-transform: uppercase;
      letter-spacing: 0.04em;
    }

    .nav a:hover {
      background: var(--orange);
      color: var(--black);
    }

    a:focus-visible,
    .btn:focus-visible {
      outline: 4px solid var(--orange);
      outline-offset: 4px;
    }

    .hero {
      min-height: auto;
      padding-top: 78px;
      display: grid;
      grid-template-columns: 1fr;
      border-bottom: var(--line) solid var(--black);
    }

    .hero-copy {
      min-height: auto;
      padding: clamp(34px, 5.4vw, 82px) var(--space-page-x) clamp(28px, 3.8vw, 58px);
      background: var(--pink);
    }

    .hero .container {
      padding-bottom: 0;
    }

    .hero .section-layout {
      grid-template-columns: 1fr;
      gap: 0;
    }

    .hero-eyebrow-spacer {
      display: none;
    }

    .eyebrow,
    .section-eyebrow,
    .manifesto-kicker {
      display: inline-block;
      margin-bottom: 24px;
      padding-bottom: 14px;
      border-bottom: var(--line) solid var(--black);
      font-size: clamp(16px, 1.35vw, 19px);
      font-weight: 950;
      text-transform: uppercase;
      letter-spacing: 0.08em;
    }

    h1 {
      max-width: 1120px;
      font-size: var(--text-hero);
      line-height: 0.88;
      letter-spacing: 0;
      text-transform: uppercase;
    }

    .hero-sub {
      margin-top: 34px;
      max-width: 980px;
      font-size: var(--text-lead);
      line-height: 1.05;
      letter-spacing: 0;
      font-weight: 900;
    }

    .hero-note {
      margin-top: 20px;
      max-width: 760px;
      font-size: var(--text-body);
      line-height: 1.25;
      font-weight: 400;
      color: var(--black);
    }

    .hero-actions,
    .cta-actions {
      display: flex;
      gap: 0;
      margin-top: 34px;
      flex-wrap: wrap;
      border: var(--line) solid var(--black);
      width: fit-content;
      background: var(--white);
    }

    .btn {
      display: inline-flex;
      justify-content: center;
      align-items: center;
      min-height: 58px;
      padding: 0 24px;
      border-right: var(--line) solid var(--black);
      background: var(--black);
      color: var(--white);
      font-size: var(--text-kicker);
      font-weight: 950;
      text-transform: uppercase;
      letter-spacing: 0.05em;
    }

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

    .btn.secondary {
      background: var(--white);
      color: var(--black);
    }

    .btn:hover {
      background: var(--orange);
      color: var(--black);
    }

    .highlight-teal {
      display: inline-block;
      padding: 0.05em 0.12em;
      background: var(--cyan);
      color: var(--white);
      line-height: 0.95;
    }

    .highlight-black {
      display: inline-block;
      padding: 0.05em 0.12em;
      background: var(--black);
      color: var(--white);
      line-height: 0.95;
    }

    .highlight-pink {
      display: inline-block;
      padding: 0.05em 0.12em;
      background: var(--pink);
      color: var(--black);
      line-height: 0.95;
    }

    section {
      border-bottom: var(--line) solid var(--black);
    }

    .container {
      max-width: var(--max-width);
      margin: 0 auto;
      padding: var(--space-section) var(--space-page-x);
    }

    .section-layout {
      display: grid;
      grid-template-columns: minmax(190px, 0.28fr) minmax(0, 1fr);
      gap: clamp(28px, 5vw, 72px);
      align-items: start;
    }

    .section-content {
      min-width: 0;
    }

    .section-title {
      font-size: var(--text-section);
      line-height: 0.9;
      letter-spacing: 0;
      text-transform: uppercase;
    }

    .section-lead {
      max-width: 900px;
      margin-top: 24px;
      font-size: var(--text-lead);
      line-height: 1.04;
      letter-spacing: 0;
      font-weight: 900;
    }

    .microcopy {
      max-width: 640px;
      margin-top: 14px;
      font-size: 14px;
      line-height: 1.55;
      font-weight: 800;
      opacity: 0.72;
    }

    .problem {
      background: var(--black);
      color: var(--white);
    }

    .problem .container {
      padding-bottom: 0;
    }

    .problem-grid {
      margin-top: 64px;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      border-top: var(--line) solid var(--white);
      border-left: var(--line) solid var(--white);
    }

    .problem-card {
      min-height: 430px;
      padding: 30px;
      border-right: var(--line) solid var(--white);
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .problem-card:nth-child(1) { background: var(--cyan); color: var(--white); }
    .problem-card:nth-child(2) { background: var(--yellow); color: var(--black); }
    .problem-card:nth-child(3) { background: var(--pink); color: var(--black); }

    .problem-card h3 {
      font-size: clamp(34px, 4.2vw, 64px);
      line-height: 0.92;
      letter-spacing: 0;
      text-transform: uppercase;
      font-weight: 400;
    }

    .problem-card p {
      font-size: var(--text-card);
      line-height: 1.02;
      font-weight: 900;
      letter-spacing: 0;
    }

    .stories {
      background: var(--cyan);
      color: var(--white);
      border-bottom: 0;
    }

    .stories .section-eyebrow {
      border-color: var(--white);
    }

    .stories .section-title,
    .stories .section-lead {
      color: var(--white);
    }

    .visual-strip,
    .story-strip,
    .manifesto-strip {
      margin-top: 44px;
      display: grid;
      overflow-x: auto;
      border-top: var(--line) solid var(--black);
      border-left: var(--line) solid var(--black);
      scroll-snap-type: x mandatory;
      scrollbar-width: thin;
    }

    .visual-strip {
      grid-template-columns: repeat(10, minmax(220px, 1fr));
    }

    .story-strip {
      grid-template-columns: repeat(5, minmax(320px, 1fr));
    }

    .manifesto-strip {
      grid-auto-flow: column;
      grid-auto-columns: clamp(320px, 34vw, 440px);
      grid-template-columns: none;
    }

    .visual-card,
    .story-card,
    .manifesto-card {
      border-right: var(--line) solid var(--black);
      border-bottom: var(--line) solid var(--black);
      scroll-snap-align: start;
      scroll-snap-stop: always;
    }

    .visual-card {
      min-height: clamp(240px, 24vw, 360px);
      min-width: 220px;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 22px;
      font-size: clamp(34px, 4vw, 66px);
      line-height: 0.92;
      letter-spacing: 0;
      font-family: "Lacquer", Arial, Helvetica, sans-serif;
      text-align: center;
    }

    .visual-card:nth-child(1),
    .visual-card:nth-child(6) { background: var(--orange); color: var(--black); }
    .visual-card:nth-child(2),
    .visual-card:nth-child(7) { background: var(--cyan); color: var(--white); }
    .visual-card:nth-child(3),
    .visual-card:nth-child(8) { background: var(--pink); color: var(--black); }
    .visual-card:nth-child(4),
    .visual-card:nth-child(9) { background: var(--yellow); color: var(--black); }
    .visual-card:nth-child(5),
    .visual-card:nth-child(10) { background: var(--black); color: var(--white); }

    .story-card {
      min-height: clamp(360px, 40vw, 500px);
      min-width: 320px;
      padding: 28px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .story-card:nth-child(1) { background: var(--yellow); }
    .story-card:nth-child(2) { background: var(--cyan); color: var(--white); }
    .story-card:nth-child(3) { background: var(--pink); }
    .story-card:nth-child(4) { background: var(--black); color: var(--white); }
    .story-card:nth-child(5) { background: var(--paper); }

    .story-name {
      padding-bottom: 12px;
      border-bottom: var(--line) solid currentColor;
      font-size: 15px;
      font-weight: 950;
      text-transform: uppercase;
      letter-spacing: 0.08em;
    }

    .story-quote {
      font-family: "Lacquer", Arial, Helvetica, sans-serif;
      font-size: clamp(34px, 4vw, 66px);
      line-height: 0.92;
      letter-spacing: 0;
      font-weight: 400;
      text-transform: none;
    }

    .manifesto {
      background: var(--yellow);
      color: var(--black);
    }

    .manifesto .container {
      padding-bottom: var(--space-section);
    }

    .manifesto-content {
      min-width: 0;
    }

    .manifesto-kicker {
      position: static;
    }

    .demand {
      font-size: var(--text-display);
      line-height: 0.9;
      letter-spacing: 0;
      text-transform: uppercase;
      font-weight: 400;
    }

    .demand-sub {
      max-width: 900px;
      margin-top: 34px;
      padding-top: 24px;
      border-top: var(--line) solid var(--black);
      font-size: var(--text-lead);
      line-height: 1.02;
      letter-spacing: 0;
      font-weight: 900;
    }

    .manifesto-closing {
      display: block;
      margin-top: 0.62em;
      font-family: "BBH Bogle", Impact, Arial Black, sans-serif;
      font-size: var(--text-display);
      line-height: 0.9;
      font-weight: 400;
      text-transform: uppercase;
    }

    .manifesto-cards-block {
      grid-column: 1 / -1;
      position: relative;
      width: min(880px, calc(100vw - 112px));
      margin-top: clamp(28px, 4vw, 52px);
      margin-left: auto;
      margin-right: auto;
    }

    .manifesto-slider {
      border: var(--line) solid var(--black);
      background: var(--white);
      box-shadow: none;
    }

    .manifesto-card {
      min-height: clamp(380px, 36vw, 460px);
      min-width: 0;
      padding: clamp(18px, 2vw, 26px);
      display: grid;
      grid-template-rows: auto minmax(0, 1fr);
      gap: clamp(22px, 3vw, 40px);
      background: var(--white);
      box-shadow: none;
      display: none;
    }

    .manifesto-card:nth-child(n) {
      background: var(--white);
      color: var(--black);
    }

    .manifesto-card.active {
      display: grid;
    }

    .manifesto-arrow {
      position: absolute;
      top: 50%;
      z-index: 2;
      width: 52px;
      height: 52px;
      border: var(--line) solid var(--black);
      background: var(--white);
      color: var(--black);
      font-size: 42px;
      line-height: 0.8;
      cursor: pointer;
      transform: translateY(-50%);
    }

    .manifesto-prev {
      left: -72px;
    }

    .manifesto-next {
      right: -72px;
    }

    .card-number {
      font-family: "BBH Bogle", Impact, Arial Black, sans-serif;
      font-size: clamp(64px, 7vw, 118px);
      line-height: 0.82;
      font-weight: 400;
      text-transform: uppercase;
      letter-spacing: 0;
      border-bottom: var(--line) solid currentColor;
      padding-bottom: 18px;
    }

    .card-text {
      align-self: end;
      font-size: clamp(25px, 2.75vw, 40px);
      line-height: 1.08;
      letter-spacing: 0;
      font-weight: 900;
      overflow-wrap: anywhere;
    }

    .rights {
      background: var(--black);
      color: var(--white);
    }

    .rights-layout {
      display: grid;
      grid-template-columns: 0.95fr 1.05fr;
      gap: 0;
      border: var(--line) solid var(--white);
    }

    .rights-copy,
    .rights-box {
      padding: clamp(28px, 4.5vw, 66px);
    }

    .rights-copy {
      background: var(--black);
      border-right: var(--line) solid var(--white);
    }

    .rights-copy p {
      margin-top: 30px;
      font-size: var(--text-lead);
      line-height: 0.98;
      letter-spacing: 0;
      font-weight: 900;
    }

    .rights-box {
      display: grid;
      grid-template-rows: repeat(4, 1fr);
      padding: 0;
      background: var(--white);
      color: var(--black);
    }

    .rights-item {
      display: flex;
      align-items: center;
      padding: 28px;
      border-bottom: var(--line) solid var(--black);
      font-size: clamp(32px, 4.6vw, 72px);
      line-height: 0.95;
      letter-spacing: 0;
      font-weight: 400;
      text-transform: uppercase;
    }

    .rights-item:last-child {
      border-bottom: 0;
    }

    .rights-item:nth-child(2) {
      background: var(--yellow);
    }

    .rights-item:nth-child(3) {
      background: var(--pink);
    }

    .keep {
      background: var(--pink);
      color: var(--black);
      padding-bottom: 0;
    }

    .keep .container {
      padding-bottom: 0;
    }

    .keep-grid {
      margin-top: 44px;
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      border-top: var(--line) solid var(--black);
      border-left: var(--line) solid var(--black);
    }

    .keep-card {
      min-height: clamp(260px, 25vw, 330px);
      padding: 24px;
      border-right: var(--line) solid var(--black);
      border-bottom: var(--line) solid var(--black);
      background: var(--pink);
      color: var(--black);
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .keep-letter {
      font-size: clamp(110px, 12vw, 190px);
      line-height: 0.85;
      color: var(--white);
    }

    .keep-card h3 {
      margin-top: 16px;
      font-size: clamp(18px, 1.7vw, 22px);
      text-transform: uppercase;
      font-weight: 950;
      letter-spacing: 0;
    }

    .keep-card p {
      margin-top: 8px;
      font-size: clamp(15px, 1.4vw, 17px);
      line-height: 1.25;
      font-weight: 400;
      color: var(--black);
    }

    .stats-grid {
      margin-top: 44px;
      display: grid;
      grid-template-columns: 1.15fr 1fr 1fr;
      border-top: var(--line) solid var(--black);
      border-left: 0;
      border-bottom: 0;
    }

    .stat-card {
      padding: 28px;
      min-height: clamp(260px, 24vw, 320px);
      background: var(--black);
      color: var(--white);
      border-right: var(--line) solid var(--white);
      display: grid;
      grid-template-rows: auto 1fr;
      gap: clamp(34px, 4.5vw, 72px);
      align-content: stretch;
    }

    .stat-card > div:last-child {
      align-self: end;
      height: clamp(118px, 9vw, 148px);
    }

    .stat-number {
      font-family: "BBH Bogle", Impact, Arial Black, sans-serif;
      font-size: clamp(58px, 7vw, 118px);
      line-height: 0.85;
      letter-spacing: 0;
      font-weight: 400;
      color: var(--pink);
    }

    .stat-title {
      font-size: 18px;
      line-height: 1.05;
      text-transform: uppercase;
      font-weight: 950;
      margin-bottom: 8px;
    }

    .stat-copy {
      font-size: 15px;
      line-height: 1.35;
      font-weight: 400;
      color: var(--white);
    }

    .keep-behind {
      grid-column: 1 / -1;
      display: grid;
      grid-template-columns: minmax(190px, 0.28fr) minmax(0, 1fr);
      gap: clamp(28px, 5vw, 72px);
      align-items: start;
      margin-top: 44px;
      color: var(--black);
    }

    .keep-behind p {
      grid-column: 2;
      max-width: 920px;
      font-size: var(--text-lead);
      line-height: 1.02;
      letter-spacing: 0;
      font-weight: 950;
    }

    .journey {
      background: var(--white);
      color: var(--black);
    }

    .timeline {
      margin-top: 44px;
      position: relative;
      display: grid;
      gap: 0;
      padding-left: 44px;
      border: 0;
      background: transparent;
    }

    .timeline::before {
      content: none;
      position: absolute;
      left: 13px;
      top: 7px;
      bottom: 8px;
      width: 4px;
      background: var(--black);
    }

    .timeline-item {
      position: relative;
      display: grid;
      grid-template-columns: minmax(190px, 0.28fr) minmax(0, 0.72fr);
      gap: clamp(18px, 3vw, 42px);
      padding-bottom: clamp(28px, 4vw, 52px);
      border-bottom: 0;
    }

    .timeline-item::before {
      content: "";
      position: absolute;
      left: -37px;
      top: 2px;
      width: 18px;
      height: 18px;
      border-radius: 999px;
      background: var(--cyan);
      border: var(--line) solid var(--black);
    }

    .timeline-item::after {
      content: "";
      position: absolute;
      left: -28px;
      top: 22px;
      bottom: 0;
      width: 4px;
      background: var(--black);
    }

    .timeline-item:last-child {
      padding-bottom: 0;
    }

    .timeline-item:last-child::after {
      content: none;
    }

    .timeline-item:last-child::before {
      left: -41px;
      top: -2px;
      width: 26px;
      height: 26px;
      background: var(--orange);
    }

    .timeline-date {
      padding: 0;
      border-right: 0;
      font-size: 14px;
      line-height: 1.1;
      font-weight: 950;
      text-transform: uppercase;
      letter-spacing: 0.06em;
      color: var(--black);
      background: transparent;
    }

    .timeline-content {
      padding: 0;
      background: transparent;
    }

    .timeline-item:nth-child(even) .timeline-content {
      background: transparent;
    }

    .timeline-title {
      font-size: clamp(30px, 4vw, 64px);
      line-height: 0.92;
      text-transform: uppercase;
      color: var(--black);
    }

    .timeline-content p {
      margin-top: 12px;
      max-width: 760px;
      font-size: clamp(17px, 1.6vw, 22px);
      line-height: 1.16;
      font-weight: 400;
      letter-spacing: 0;
    }

    .paper {
      background: var(--black);
      color: var(--white);
      text-align: left;
    }

    .paper .section-eyebrow {
      border-color: var(--white);
    }

    .paper .section-lead {
      margin-left: 0;
      margin-right: 0;
    }

    .paper-actions {
      margin-left: 0;
      margin-right: 0;
    }

    .paper .btn {
      background: var(--white);
      color: var(--black);
    }

    .paper .btn:hover {
      background: var(--pink);
      color: var(--black);
    }

    .cta {
      min-height: 72vh;
      display: grid;
      place-items: center;
      background: var(--orange);
      color: var(--black);
      text-align: left;
    }

    .cta .container {
      width: 100%;
    }

    .cta h2 {
      max-width: 1120px;
      font-size: var(--text-display);
      line-height: 0.9;
      letter-spacing: 0;
      text-transform: uppercase;
    }

    .cta p {
      max-width: 820px;
      margin-top: 34px;
      padding-top: 24px;
      border-top: var(--line) solid var(--black);
      font-size: var(--text-lead);
      line-height: 1.04;
      letter-spacing: 0;
      font-weight: 900;
    }

    .hashtag {
      display: inline-block;
      margin-top: 34px;
      font-family: "Lacquer", Arial, Helvetica, sans-serif;
      font-size: clamp(40px, 5.5vw, 88px);
      line-height: 0.9;
      color: var(--black);
    }

    .gallery {
      background: var(--pink);
      color: var(--black);
    }

    .gallery .container {
      padding-bottom: clamp(18px, 2.4vw, 32px);
    }

    .gallery-carousel {
      position: relative;
      width: 100vw;
      margin-top: 20px;
      overflow: hidden;
      cursor: grab;
      user-select: none;
      border-top: var(--line) solid var(--black);
      border-bottom: var(--line) solid var(--black);
    }

    .gallery-carousel.dragging {
      cursor: grabbing;
    }

    .gallery-rail {
      display: flex;
      flex-direction: row;
      gap: 0;
      will-change: transform;
    }

    .gallery-card {
      flex: 0 0 calc(100vw / 3);
      min-width: calc(100vw / 3);
      aspect-ratio: 4 / 3;
      overflow: hidden;
      background: var(--white);
      cursor: pointer;
    }

    .gallery-card img {
      display: block;
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .partners {
      background: var(--cyan);
      color: var(--white);
      border-top: 0;
      margin-top: -2px;
    }

    .partners .section-eyebrow {
      border-color: var(--white);
    }

    .partner-grid {
      margin-top: 44px;
      display: grid;
      grid-template-columns: repeat(5, minmax(0, 1fr));
      border-top: var(--line) solid var(--black);
      border-left: var(--line) solid var(--black);
    }

    .partner-card {
      min-height: 320px;
      padding: 24px;
      border-right: var(--line) solid var(--black);
      border-bottom: var(--line) solid var(--black);
      background: var(--white);
      color: var(--black);
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      gap: 28px;
    }

    .partner-card {
      grid-column: span 1;
    }

    .partner-card.coordinator {
      grid-column: span 1;
      min-height: 320px;
    }

    .partner-kicker {
      font-size: 12px;
      font-weight: 950;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      opacity: 0.7;
    }

    .partner-title {
      margin-top: 18px;
      font-size: clamp(24px, 2.2vw, 36px);
      line-height: 0.92;
      text-transform: uppercase;
    }

    .partner-country {
      margin-top: 12px;
      font-size: 15px;
      font-weight: 950;
      text-transform: uppercase;
      letter-spacing: 0.05em;
    }

    .partner-logo-link {
      display: flex;
      align-items: center;
      justify-content: center;
      min-height: 110px;
      padding: 12px;
      border-top: var(--line) solid var(--black);
    }

    .partner-logo-link img {
      display: block;
      max-width: 100%;
      max-height: 90px;
      object-fit: contain;
    }

    .associated {
      margin-top: 34px;
      margin-bottom: 0;
      padding: 24px;
      border: var(--line) solid var(--white);
      background: rgba(255,255,255,0.12);
    }

    .associated h3 {
      font-size: 14px;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      margin-bottom: 16px;
      font-weight: 950;
    }

    .funding-copy {
      color: var(--white);
      font-weight: 400;
      margin-top: 24px;
    }

    .tag-list {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
    }

    .tag {
      display: inline-flex;
      padding: 9px 13px;
      background: var(--white);
      color: var(--black);
      font-size: 12px;
      font-weight: 950;
      text-transform: uppercase;
      letter-spacing: 0.04em;
      border: var(--line) solid var(--white);
    }

    .funding-block {
      grid-column: 1 / -1;
      display: grid;
      grid-template-columns: minmax(190px, 0.28fr) minmax(0, 1fr);
      gap: clamp(28px, 5vw, 72px);
      align-items: start;
      margin-top: 0;
      padding-top: 0;
    }

    .partners .section-layout {
      row-gap: clamp(22px, 3vw, 34px);
    }

    .funding-content {
      grid-column: 2;
    }

    .funding-logo-grid {
      margin-top: 10px;
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      border-top: var(--line) solid var(--black);
      border-left: var(--line) solid var(--black);
    }

    .funding-logo-card {
      min-height: 220px;
      padding: clamp(24px, 4vw, 52px);
      display: flex;
      align-items: center;
      justify-content: center;
      border-right: var(--line) solid var(--black);
      border-bottom: var(--line) solid var(--black);
      background: var(--white);
    }

    .funding-logo-card img {
      display: block;
      max-width: min(100%, 360px);
      max-height: 140px;
      object-fit: contain;
    }

    .site-footer {
      background: var(--black);
      color: var(--white);
      padding: clamp(26px, 3.2vw, 40px) var(--space-page-x) clamp(20px, 2.8vw, 34px);
    }

    .footer-content {
      max-width: var(--max-width);
      margin: 0 auto;
      display: grid;
      grid-template-columns: minmax(240px, 0.8fr) minmax(180px, 0.4fr);
      gap: clamp(38px, 8vw, 140px);
      align-items: start;
    }

    .footer-brand img {
      display: block;
      width: min(226px, 64vw);
      height: auto;
      margin-bottom: 16px;
    }

    .footer-brand p {
      max-width: 360px;
      color: var(--white);
      font-size: 14px;
      line-height: 1.55;
      font-weight: 400;
    }

    .footer-brand p + p {
      margin-top: 14px;
    }

    .footer-nav a {
      display: block;
      color: var(--white);
      font-size: 14px;
      line-height: 1.55;
      font-weight: 400;
    }

    .footer-nav a + a {
      margin-top: 12px;
    }

    .footer-nav a:hover {
      color: var(--white);
    }

    .footer-bottom {
      max-width: var(--max-width);
      margin: clamp(22px, 3vw, 34px) auto 0;
      color: rgba(255,255,255,0.52);
      font-size: 12px;
      line-height: 1.55;
      font-weight: 400;
    }

    @media (max-width: 980px) {
      :root {
        --space-section: 64px;
        --text-section: clamp(40px, 10vw, 82px);
        --text-display: clamp(48px, 12vw, 104px);
      }

      .site-header {
        grid-template-columns: minmax(0, 1fr) 64px;
        align-items: stretch;
      }

      .menu-toggle {
        display: flex;
        grid-column: 2;
        grid-row: 1;
        border-right: 0;
        border-left: var(--line) solid var(--black);
      }

      .logo {
        grid-column: 1;
        grid-row: 1;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: clip;
        font-size: clamp(26px, 7vw, 54px);
      }

      .logo br {
        display: none;
      }

      .hero,
      .rights-layout,
      .hero-copy,
      .section-layout,
      .timeline-item {
        grid-template-columns: 1fr;
      }

      .hero-copy {
        min-height: auto;
      }

      .problem-grid,
      .gallery-grid,
      .partner-grid {
        grid-template-columns: 1fr;
      }

      .keep-grid {
        grid-template-columns: repeat(4, minmax(220px, 1fr));
        overflow-x: auto;
        scrollbar-width: thin;
      }

      .stats-grid {
        grid-template-columns: repeat(3, minmax(260px, 1fr));
        overflow-x: auto;
        scrollbar-width: thin;
      }

      .problem-card {
        border-bottom: var(--line) solid var(--white);
      }

      .rights-copy {
        border-right: 0;
        border-bottom: var(--line) solid var(--white);
      }

      .manifesto-kicker {
        position: static;
      }

      .nav {
        display: none;
        grid-column: 1 / -1;
        grid-template-columns: 1fr;
        height: auto;
        overflow: visible;
        border-left: 0;
        border-top: var(--line) solid var(--black);
      }

      .site-header.menu-open .nav {
        display: grid;
      }

      .nav a {
        justify-content: flex-start;
        min-height: 52px;
        min-width: 0;
        padding: 0 16px;
        border-right: 0;
        border-bottom: var(--line) solid var(--black);
      }

      .hero {
        padding-top: 64px;
      }

      .footer-content {
        grid-template-columns: 1fr;
      }

      .footer-nav {
        margin-top: 4px;
      }
    }

    @media (max-width: 620px) {
      .site-header {
        grid-template-columns: minmax(0, 1fr) 58px;
      }

      .menu-toggle {
        width: 58px;
        height: 58px;
      }

      .logo {
        padding: 14px 10px 14px 16px;
        font-size: clamp(27px, 7.2vw, 34px);
      }

      .hero {
        padding-top: 58px;
      }

      .hero-copy {
        padding: 36px 16px 42px;
      }

      .hero-sub {
        margin-top: 28px;
      }

      .hero-actions {
        margin-top: 28px;
      }

      .hero-actions,
      .cta-actions {
        width: 100%;
        display: grid;
      }

      .btn {
        width: 100%;
        border-right: 0;
        border-bottom: var(--line) solid var(--black);
      }

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

      .container {
        padding: 56px 16px;
      }

      .section-lead {
        margin-top: 22px;
      }

      .visual-strip,
      .story-strip,
      .manifesto-strip,
      .keep-grid,
      .stats-grid,
      .timeline,
      .gallery-grid,
      .partner-grid {
        margin-top: 34px;
      }

      .visual-strip,
      .story-strip {
        margin-left: -16px;
        margin-right: -16px;
      }

      .story-card {
        min-width: 86vw;
        min-height: 340px;
      }

      .visual-card {
        min-height: 220px;
      }

      .manifesto-card {
        min-height: 520px;
      }

      .manifesto-strip {
        width: 100vw;
        grid-auto-columns: 100vw;
        margin-left: 0;
        margin-right: 0;
        padding-right: 0;
        scroll-snap-type: x mandatory;
      }

      .manifesto-card {
        padding: 22px;
        gap: 24px;
      }

      .card-number {
        font-size: clamp(58px, 18vw, 82px);
        padding-bottom: 14px;
      }

      .card-text {
        font-size: clamp(25px, 7vw, 34px);
        line-height: 1.12;
      }

      .keep-card,
      .stat-card,
      .partner-card,
      .partner-card.coordinator {
        min-height: 300px;
      }

      .keep-letter {
        font-size: clamp(118px, 34vw, 160px);
      }

      .stats-grid {
                      grid-template-columns: repeat(3, 1fr);
                      overflow-x: visible;
      }

      .stat-number {
        font-size: clamp(30px, 8.5vw, 44px);
      }

                  .stat-card {
                                  min-height: auto;
                                  padding: 14px 10px;
                                  gap: 10px;
                  }

      .gallery-cell,
      .gallery-cell:nth-child(1),
      .gallery-cell:nth-child(6) {
        min-height: 210px;
      }
    }
  

    .loading,
    .error {
      padding: 140px 22px;
      min-height: 100vh;
      display: grid;
      place-items: center;
      font-size: clamp(24px, 4vw, 54px);
      line-height: 1.02;
      letter-spacing: 0;
      font-weight: 950;
      text-align: center;
    }

    .error {
      background: var(--orange);
      color: var(--black);
    }

.visual-strip {
  position: relative;
  width: 100vw;
  left: 50%;
  transform: translateX(-50%);
  overflow: hidden;
  cursor: grab;
  user-select: none;
  margin-top: 32px;
  padding-top: 0;
  border-top: var(--line) solid var(--black);
  border-bottom: var(--line) solid var(--black);
  border-left: 0;
  border-right: 0;
}
.visual-strip.dragging { cursor: grabbing; }
.visual-rail {
  display: flex;
  flex-direction: row;
  gap: 0;
  will-change: transform;
}
.visual-card {
  flex: 0 0 calc(100vw / 3);
  min-width: calc(100vw / 3);
  aspect-ratio: 4/5;
  background: #e5c222;
  background-position: center;
  background-size: cover;
  border-top: 0 !important;
  border-bottom: none;
  border-left: none;
  border-right: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  cursor: pointer;
  overflow: hidden;
  text-transform: uppercase;
}
.visual-card-title {
  font-family: "BBH Bogle", Impact, "Arial Black", sans-serif;
  font-size: clamp(42px, 7vw, 112px);
  font-weight: 400;
  line-height: 0.9;
  pointer-events: none;
}
.visual-card.poster-loaded .visual-card-title {
  opacity: 0;
}
@media (max-width: 768px) {
  .visual-card { flex: 0 0 78vw !important; min-width: 78vw !important; }
  .gallery-card { flex: 0 0 100vw !important; min-width: 100vw !important; }
}
@media (min-width: 769px) and (max-width: 1200px) {
  .visual-card { flex: 0 0 50vw !important; min-width: 50vw !important; }
  .gallery-card { flex: 0 0 50vw !important; min-width: 50vw !important; }
}
@media (max-width: 1100px) {
  .partner-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 720px) {
  .partner-grid {
    grid-template-columns: 1fr;
  }

  .partner-card,
  .partner-card.coordinator {
    min-height: 190px;
    flex-direction: row;
    align-items: stretch;
    gap: 0;
    padding: 0;
  }

  .partner-card > div {
    width: 52%;
    padding: 20px;
  }

  .partner-logo-link {
    width: 48%;
    min-height: 100%;
    padding: 18px;
    border-top: 0;
    border-left: var(--line) solid var(--black);
  }

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

  .funding-logo-card {
    min-height: 150px;
    padding: 22px;
  }

  .keep-behind,
  .funding-block {
    grid-template-columns: 1fr;
  }

  .keep-behind p,
  .funding-content {
    grid-column: 1;
  }
}
.story-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.7);
}
.story-modal.open { display: flex; }
.modal-inner {
  position: relative;
  background: #fff;
  max-width: 680px;
  width: 90vw;
  max-height: 80vh;
  overflow-y: auto;
  border: 2px solid #000;
}
.modal-header {
  padding: 32px 40px 24px;
}
.modal-header h3 {
  font-family: "BBH Bogle", Impact, "Arial Black", sans-serif;
  font-size: clamp(32px, 5vw, 60px);
  line-height: 0.9;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0;
}
.modal-body {
  padding: 24px 40px 40px;
  font-size: 18px;
  line-height: 1.6;
}
.modal-body p {
  white-space: pre-line;
}
.image-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 10000;
  align-items: center;
  justify-content: center;
  padding: clamp(16px, 3vw, 40px);
  background: rgba(0, 0, 0, 0.86);
}
.image-modal.open {
  display: flex;
}
.image-modal img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  background: var(--white);
}
.image-modal-close {
  position: fixed;
  top: 16px;
  right: 20px;
  z-index: 10001;
  width: 44px;
  height: 44px;
  border: var(--line) solid var(--white);
  background: var(--black);
  color: var(--white);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}
.modal-close {
  position: absolute;
  top: 16px;
  right: 20px;
  width: 44px;
  height: 44px;
  background: var(--black);
  color: var(--white);
  border: var(--line) solid var(--white);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  font-weight: 400;
}
@media (max-width: 768px) {
  .manifesto-cards-block {
    width: 100%;
    padding: 0 46px;
  }

  .manifesto-prev {
    left: 0;
  }

  .manifesto-next {
    right: 0;
  }
}
.manifesto-card .card-text,
.manifesto-card p {
  font-size: clamp(30px, 3.2vw, 42px);
  line-height: 1.12;
}

.manifesto-card .card-number {
  font-size: clamp(64px, 7vw, 118px);
}
section.manifesto { border-bottom: none !important; }
section.cta h2 { font-size: clamp(42px, 8vw, 112px) !important; line-height: 0.9 !important; }
.hero-copy-inner { padding-left: calc(0.28 * (min(100vw, 1320px)) + clamp(16px, 2.2vw, 28px) + clamp(28px, 5vw, 72px)); }
  section.stories .section-lead { font-size: 18px !important; font-weight: 400 !important; line-height: 1.35 !important; }
  section.stories .container { padding-bottom: 0 !important; }
  section.manifesto .container { row-gap: 32px !important; }
