
@import url("https://fonts.googleapis.com/css2?family=El+Messiri:wght@500;600;700&family=IBM+Plex+Sans+Arabic:wght@400;500;600;700&display=swap");

:root {
  --paper: #f4f0e8;
  --paper-2: #ebe3d3;
  --ink: #171615;
  --muted: #6b665d;
  --forest: #153c2f;
  --forest-2: #0f2c22;
  --burgundy: #5a2030;
  --sand: #cfc1aa;
  --stone: #948a78;
  --line: rgba(23, 22, 21, 0.16);
  --white: #fffaf0;
  --shadow: 0 24px 80px rgba(23, 22, 21, 0.12);
  --display: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --arabic-display: "El Messiri", "Aref Ruqaa", "Noto Kufi Arabic", "Traditional Arabic", serif;
  --arabic-sans: "IBM Plex Sans Arabic", "Noto Sans Arabic", "Segoe UI", Tahoma, Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  line-height: 1.5;
  letter-spacing: 0;
}
html[lang="ar"] body {
  font-family: var(--arabic-sans);
}
html[lang="ar"] h1,
html[lang="ar"] h2,
html[lang="ar"] h3,
html[lang="ar"] .manifesto h2,
html[lang="ar"] .final-cta h2,
html[lang="ar"] .pillar-main strong,
html[lang="ar"] .challenge-result p,
html[lang="ar"] .capability-panel h3,
html[lang="ar"] .cinema-copy h2,
html[lang="ar"] .sector-tile strong,
html[lang="ar"] .method-track strong,
html[lang="ar"] .wizard-step legend,
html[lang="ar"] .international h2,
html[lang="ar"] .publication-card h2,
html[lang="ar"] .featured-article h2,
html[lang="ar"] .dossier-main h2,
html[lang="ar"] .dossier-side h2,
html[lang="ar"] .info-block h2,
html[lang="ar"] .program-dossier h2,
html[lang="ar"] .about-editorial h2,
html[lang="ar"] .contact-aside h2,
html[lang="ar"] .sector-index h2,
html[lang="ar"] .program-row h2,
html[lang="ar"] .newsletter h2,
html[lang="ar"] .article-body h2,
html[lang="ar"] .principles h2 {
  font-family: var(--arabic-display);
  font-weight: 600;
  line-height: 1.16;
}
html[lang="ar"] .eyebrow,
html[lang="ar"] .primary-nav,
html[lang="ar"] .button,
html[lang="ar"] .language-switcher,
html[lang="ar"] .number,
html[lang="ar"] .pillar-row .number,
html[lang="ar"] .sector-tile span,
html[lang="ar"] .program-row span,
html[lang="ar"] .sector-index span,
html[lang="ar"] .principles span,
html[lang="ar"] .method-track span {
  letter-spacing: 0;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.18;
  background-image: linear-gradient(rgba(23,22,21,.05) 1px, transparent 1px), linear-gradient(90deg, rgba(23,22,21,.04) 1px, transparent 1px);
  background-size: 72px 72px;
  z-index: -1;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
button, input, textarea { font: inherit; }
button { cursor: pointer; }
:focus-visible { outline: 2px solid var(--burgundy); outline-offset: 4px; }
.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  transform: translateY(-140%);
  z-index: 100;
  background: var(--ink);
  color: var(--paper);
  padding: 10px 14px;
}
.skip-link:focus { transform: translateY(0); }
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  min-height: 72px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 56px);
  border-bottom: 1px solid var(--line);
  background: rgba(244, 240, 232, .9);
  backdrop-filter: blur(18px);
}
.brand img { width: 156px; height: auto; }
.primary-nav {
  display: flex;
  justify-content: center;
  gap: clamp(14px, 2vw, 28px);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.primary-nav a,
.button {
  white-space: nowrap;
}
.primary-nav a,
.language-switcher a,
.text-link {
  position: relative;
}
.primary-nav a::after,
.language-switcher a::after,
.text-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4px;
  height: 1px;
  transform: scaleX(0);
  transform-origin: right;
  background: currentColor;
  transition: transform .25s ease;
}
.primary-nav a:hover::after,
.language-switcher a:hover::after,
.text-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}
.language-switcher {
  display: flex;
  gap: 8px;
  font-size: 12px;
  letter-spacing: .08em;
}
.nav-toggle { display: none; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 20px;
  border: 1px solid var(--forest);
  background: var(--forest);
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: .07em;
  font-size: 12px;
  transition: background .25s ease, color .25s ease, transform .25s ease;
}
.button:hover { transform: translateY(-2px); background: var(--forest-2); }
.button-small { min-height: 38px; padding: 9px 14px; }
.button-outline { background: transparent; color: var(--forest); }
.button-outline:hover { color: var(--white); }
.button-light { background: var(--paper); color: var(--ink); border-color: var(--paper); }
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
}
.hero {
  min-height: calc(92vh - 72px);
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, .65fr);
  align-items: stretch;
  gap: clamp(22px, 3.6vw, 54px);
  padding: clamp(22px, 3.4vw, 48px) clamp(18px, 5vw, 72px) clamp(28px, 4vw, 56px);
}
.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 740px;
}
.eyebrow {
  margin: 0 0 18px;
  color: var(--burgundy);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: 12px;
  font-weight: 800;
}
h1, h2, h3, p { margin-top: 0; }
h1, .manifesto h2, .final-cta h2 {
  font-family: var(--display);
  line-height: .96;
  letter-spacing: 0;
  font-weight: 500;
}
h1 {
  max-width: 820px;
  margin-bottom: 22px;
  font-size: clamp(48px, 6.2vw, 104px);
}
.hero-copy p {
  max-width: 660px;
  color: var(--muted);
  font-size: clamp(17px, 1.65vw, 21px);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 26px;
  align-items: center;
  margin-top: 20px;
}
.hero-visual {
  min-height: 430px;
  align-self: center;
  border-left: 1px solid var(--line);
  padding-left: clamp(18px, 4vw, 54px);
}
[dir="rtl"] .hero-visual {
  border-left: 0;
  border-right: 1px solid var(--line);
  padding-left: 0;
  padding-right: clamp(18px, 4vw, 54px);
}
.hero-visual img {
  width: 100%;
  min-height: 430px;
  object-fit: cover;
  box-shadow: var(--shadow);
}
.section-pad {
  padding: clamp(70px, 10vw, 144px) clamp(18px, 5vw, 72px);
}
.manifesto-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, .65fr);
  gap: clamp(32px, 7vw, 96px);
  align-items: end;
  padding-top: clamp(40px, 7vw, 86px);
}
.manifesto { border-top: 1px solid var(--ink); }
.manifesto h2 {
  font-size: clamp(42px, 7vw, 104px);
  max-width: 1120px;
}
.manifesto p,
.section-heading p,
.page-hero p,
.cinema-copy p {
  color: var(--muted);
  font-size: clamp(17px, 1.5vw, 21px);
}
.section-heading {
  display: grid;
  gap: 12px;
  max-width: 920px;
  margin-bottom: 42px;
}
.section-heading h2,
.page-hero h1 {
  font-family: var(--display);
  font-size: clamp(42px, 5vw, 82px);
  line-height: 1;
  font-weight: 500;
}
.split-heading {
  max-width: none;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 28px;
}
.pillar-list {
  border-top: 1px solid var(--line);
}
.pillar-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, .55fr);
  gap: 28px;
  border-bottom: 1px solid var(--line);
  padding: 0;
}
.pillar-row > a {
  min-height: 148px;
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 28px 0;
}
.number,
.pillar-row .number,
.sector-tile span,
.program-row span,
.sector-index span,
.principles span,
.method-track span {
  color: var(--burgundy);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.pillar-main strong {
  display: block;
  font-family: var(--display);
  font-size: clamp(28px, 3vw, 48px);
  line-height: 1.05;
  font-weight: 500;
}
.pillar-main em {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-style: normal;
  max-width: 760px;
}
.row-arrow {
  font-size: 30px;
  transition: transform .25s ease;
}
.pillar-row a:hover .row-arrow { transform: translateX(8px); }
[dir="rtl"] .pillar-row a:hover .row-arrow { transform: translateX(-8px); }
.pillar-row ul,
.large-list,
.sector-detail ul,
.program-dossier ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.pillar-row ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-content: center;
  padding: 24px 0;
}
.pillar-row li,
.region-list li,
.large-list li,
.sector-detail li,
.program-dossier li {
  border-top: 1px solid var(--line);
  padding: 12px 0;
  color: var(--muted);
}
.challenge-section {
  background: var(--ink);
  color: var(--paper);
}
.challenge-section .eyebrow,
.challenge-section p { color: var(--sand); }
.challenge-grid {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(280px, .55fr);
  gap: clamp(24px, 5vw, 72px);
}
.challenge-options {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(244,240,232,.22);
  border-left: 1px solid rgba(244,240,232,.22);
}
.challenge-button {
  min-height: 110px;
  padding: 18px;
  border: 0;
  border-right: 1px solid rgba(244,240,232,.22);
  border-bottom: 1px solid rgba(244,240,232,.22);
  background: transparent;
  color: var(--paper);
  text-align: start;
  transition: background .25s ease;
}
.challenge-button:hover,
.challenge-button.is-active { background: var(--forest); }
.challenge-result {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 360px;
  padding: clamp(24px, 4vw, 42px);
  background: var(--paper);
  color: var(--ink);
}
.challenge-result span { color: var(--burgundy); text-transform: uppercase; letter-spacing: .12em; font-size: 12px; font-weight: 800; }
.challenge-result p { color: var(--ink); font-family: var(--display); font-size: clamp(28px, 3vw, 44px); line-height: 1.05; }
.capability-map {
  display: grid;
  grid-template-columns: minmax(240px, .38fr) minmax(0, 1fr);
  border: 1px solid var(--line);
}
.capability-tabs {
  display: grid;
  border-right: 1px solid var(--line);
}
[dir="rtl"] .capability-tabs {
  border-right: 0;
  border-left: 1px solid var(--line);
}
.capability-tabs button {
  min-height: 72px;
  padding: 16px 22px;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  text-align: start;
  text-transform: uppercase;
  letter-spacing: .07em;
  font-size: 13px;
}
.capability-tabs button[aria-selected="true"] {
  background: var(--forest);
  color: var(--paper);
}
.capability-panels {
  min-height: 424px;
  padding: clamp(26px, 4vw, 52px);
}
.capability-panel { display: none; }
.capability-panel.is-active { display: block; }
.capability-panel h3 {
  font-family: var(--display);
  font-size: clamp(38px, 4vw, 72px);
  line-height: 1;
  font-weight: 500;
}
.capability-panel ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 28px;
  list-style: none;
  padding: 0;
  margin: 30px 0 0;
}
.capability-panel li {
  border-top: 1px solid var(--line);
  padding: 18px 0;
  font-size: clamp(18px, 2vw, 26px);
}
.sectors-cinema {
  background: var(--paper-2);
}
.cinema-copy {
  max-width: 760px;
  margin-bottom: 42px;
}
.cinema-copy h2 {
  font-family: var(--display);
  font-size: clamp(44px, 6vw, 92px);
  line-height: .98;
  font-weight: 500;
}
.sector-strip {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(250px, 34vw);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  border-left: 1px solid var(--line);
}
.sector-tile {
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 30px;
  scroll-snap-align: start;
  padding: 26px;
  border-top: 1px solid var(--line);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(160deg, transparent 0 55%, rgba(21,60,47,.08) 55% 100%),
    var(--paper);
  transition: background .25s ease, transform .25s ease;
}
.sector-tile:hover { background-color: var(--forest); color: var(--paper); transform: translateY(-4px); }
.sector-tile strong {
  font-family: var(--display);
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1;
  font-weight: 500;
}
.method-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(260px, 1fr);
  gap: 0;
  overflow-x: auto;
  padding: 0;
  margin: 0;
  list-style: none;
  border: 1px solid var(--line);
}
.method-track li {
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px;
  border-right: 1px solid var(--line);
}
.method-track strong {
  display: block;
  font-family: var(--display);
  font-size: 36px;
  font-weight: 500;
}
.method-track p { color: var(--muted); }
.intervention {
  background: var(--forest);
  color: var(--paper);
}
.intervention .eyebrow,
.intervention p { color: var(--sand); }
.wizard-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.wizard-step {
  margin: 0;
  border: 1px solid rgba(244,240,232,.28);
  padding: 24px;
}
.wizard-step legend {
  display: flex;
  gap: 12px;
  padding: 0 8px;
  font-family: var(--display);
  font-size: 28px;
}
.wizard-step legend span {
  color: var(--sand);
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .12em;
}
.choice-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}
.choice {
  border: 1px solid rgba(244,240,232,.32);
  background: transparent;
  color: var(--paper);
  padding: 10px 12px;
}
.choice.is-selected {
  background: var(--paper);
  color: var(--forest);
}
.wizard-submit { margin-top: 26px; }
.international .map-panel {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(280px, .75fr);
  gap: clamp(26px, 5vw, 70px);
  align-items: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: clamp(28px, 5vw, 60px) 0;
}
.international h2 {
  font-family: var(--display);
  font-size: clamp(42px, 5vw, 82px);
  line-height: 1;
  font-weight: 500;
}
.region-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 22px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}
.insight-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr .8fr;
  gap: 18px;
}
.insight-card,
.publication-card,
.featured-article {
  min-height: 270px;
  padding: 24px;
  border: 1px solid var(--line);
  background: rgba(255,250,240,.42);
}
.insight-card.featured { background: var(--ink); color: var(--paper); }
.insight-card span,
.publication-card span,
.featured-article span {
  color: var(--burgundy);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 12px;
  font-weight: 800;
}
.insight-card.featured span { color: var(--sand); }
.insight-card h3,
.publication-card h2,
.featured-article h2 {
  font-family: var(--display);
  font-size: clamp(28px, 3vw, 46px);
  line-height: 1.05;
  font-weight: 500;
}
.insight-card p,
.publication-card p,
.featured-article p { color: var(--muted); }
.insight-card.featured p { color: var(--sand); }
.final-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: clamp(48px, 8vw, 96px) clamp(18px, 5vw, 72px);
  background: var(--ink);
  color: var(--paper);
}
.final-cta h2 {
  max-width: 1000px;
  font-size: clamp(40px, 6vw, 90px);
}
.final-cta.compact h2 { font-size: clamp(34px, 4vw, 60px); }
.page-hero {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(260px, .55fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: end;
  padding: clamp(72px, 10vw, 142px) clamp(18px, 5vw, 72px) clamp(42px, 6vw, 88px);
  border-bottom: 1px solid var(--line);
}
.page-hero p { max-width: 820px; }
.page-hero img {
  max-height: 420px;
  width: 100%;
  object-fit: cover;
  box-shadow: var(--shadow);
}
.dossier-grid,
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, .46fr);
  gap: clamp(28px, 6vw, 80px);
}
.dossier-main h2,
.dossier-side h2,
.info-block h2,
.program-dossier h2,
.about-editorial h2,
.contact-aside h2 {
  font-family: var(--display);
  font-size: clamp(28px, 3vw, 46px);
  font-weight: 500;
  line-height: 1.05;
}
.large-list li { font-size: clamp(22px, 3vw, 38px); color: var(--ink); }
.dossier-side {
  border-left: 1px solid var(--line);
  padding-left: 30px;
}
[dir="rtl"] .dossier-side {
  border-left: 0;
  border-right: 1px solid var(--line);
  padding-left: 0;
  padding-right: 30px;
}
.sector-index,
.program-index {
  display: grid;
  border-top: 1px solid var(--line);
}
.sector-index article,
.program-row {
  border-bottom: 1px solid var(--line);
}
.sector-index a,
.program-row a {
  display: grid;
  grid-template-columns: 90px minmax(0, .75fr) minmax(280px, 1fr) auto;
  gap: 24px;
  align-items: center;
  min-height: 154px;
  padding: 28px 0;
}
.sector-index h2,
.program-row h2 {
  font-family: var(--display);
  font-size: clamp(28px, 3vw, 48px);
  line-height: 1;
  font-weight: 500;
  margin: 0;
}
.sector-index p,
.program-row p { color: var(--muted); margin: 0; }
.sector-detail {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.info-block {
  min-height: 260px;
  padding: 28px;
  border: 1px solid var(--line);
}
.info-block p { color: var(--muted); }
.program-dossier {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.program-dossier article {
  min-height: 240px;
  border: 1px solid var(--line);
  padding: 26px;
}
.program-dossier p,
.program-dossier li { color: var(--muted); }
.double-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  padding: 0 clamp(18px, 5vw, 72px) clamp(70px, 10vw, 144px);
}
.publication-tools {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, .35fr);
  gap: 18px;
  margin-bottom: 22px;
}
.topic-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.topic-filters button {
  border: 1px solid var(--line);
  background: transparent;
  padding: 10px 12px;
}
.topic-filters button.is-active {
  background: var(--forest);
  color: var(--paper);
}
.search-label {
  display: grid;
  gap: 6px;
  color: var(--muted);
}
input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: rgba(255,250,240,.5);
  min-height: 48px;
  padding: 12px 14px;
  color: var(--ink);
}
textarea { min-height: 130px; resize: vertical; }
.featured-article {
  min-height: 360px;
  margin-bottom: 18px;
  background: var(--paper-2);
}
.publication-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.no-results { color: var(--burgundy); font-weight: 700; }
.newsletter {
  display: grid;
  grid-template-columns: minmax(0, .7fr) minmax(300px, .7fr);
  gap: 24px;
  align-items: center;
  margin: 0 clamp(18px, 5vw, 72px) clamp(70px, 10vw, 144px);
  padding: clamp(24px, 5vw, 46px);
  background: var(--ink);
  color: var(--paper);
}
.newsletter h2 {
  font-family: var(--display);
  font-size: clamp(34px, 5vw, 70px);
  line-height: 1;
  font-weight: 500;
}
.newsletter form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: end;
}
.newsletter input { background: var(--paper); }
.article-body {
  max-width: 860px;
  padding: clamp(48px, 8vw, 104px) clamp(18px, 5vw, 72px);
}
.article-body p {
  font-size: clamp(18px, 2vw, 22px);
  color: var(--muted);
}
.article-body h2 {
  margin-top: 42px;
  font-family: var(--display);
  font-size: clamp(30px, 4vw, 56px);
  line-height: 1.05;
  font-weight: 500;
}
.article-note {
  border-top: 1px solid var(--line);
  padding-top: 20px;
}
.about-editorial {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.about-editorial article,
.principles article {
  border: 1px solid var(--line);
  padding: 26px;
}
.about-editorial article:first-child {
  grid-column: span 2;
}
.principles {
  padding-top: 0;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}
.principles h2 {
  font-family: var(--display);
  font-size: 30px;
  line-height: 1;
  font-weight: 500;
}
.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
}
.contact-form label:nth-child(11),
.contact-form label:nth-child(15),
.contact-form .button,
.contact-form .form-state {
  grid-column: 1 / -1;
}
.contact-aside {
  border-left: 1px solid var(--line);
  padding-left: 30px;
}
[dir="rtl"] .contact-aside {
  border-left: 0;
  border-right: 1px solid var(--line);
  padding-left: 0;
  padding-right: 30px;
}
.contact-aside ul {
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}
.contact-aside li {
  border-top: 1px solid var(--line);
  padding: 12px 0;
}
.form-state { color: var(--forest); font-weight: 700; }
.site-footer {
  display: grid;
  grid-template-columns: minmax(260px, .55fr) minmax(0, 1fr);
  gap: clamp(32px, 6vw, 82px);
  padding: clamp(44px, 7vw, 86px) clamp(18px, 5vw, 72px);
  background: var(--forest-2);
  color: var(--paper);
}
.footer-mark p {
  max-width: 360px;
  color: var(--sand);
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}
.footer-grid h2 {
  margin-bottom: 16px;
  color: var(--sand);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .13em;
}
.footer-grid a {
  display: block;
  color: var(--paper);
  margin-bottom: 10px;
}
.footer-languages {
  display: flex;
  gap: 10px;
  margin-top: 22px;
}
[dir="rtl"] .primary-nav a::after,
[dir="rtl"] .language-switcher a::after,
[dir="rtl"] .text-link::after {
  transform-origin: left;
}
[dir="rtl"] .primary-nav a:hover::after,
[dir="rtl"] .language-switcher a:hover::after,
[dir="rtl"] .text-link:hover::after {
  transform-origin: right;
}
[dir="rtl"] .row-arrow { transform: scaleX(-1); }
@media (max-width: 1180px) {
  .site-header {
    grid-template-columns: auto auto 1fr;
  }
  .nav-toggle {
    display: inline-flex;
    justify-self: start;
    border: 1px solid var(--line);
    background: transparent;
    padding: 9px 12px;
  }
  .primary-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: start;
    gap: 0;
    padding: 20px clamp(18px, 5vw, 72px);
    background: var(--paper);
    border-bottom: 1px solid var(--line);
  }
  .primary-nav.is-open { display: flex; }
  .primary-nav a {
    width: 100%;
    padding: 15px 0;
    border-bottom: 1px solid var(--line);
  }
  .nav-actions { justify-self: end; }
}
@media (max-width: 900px) {
  .hero,
  .manifesto-grid,
  .challenge-grid,
  .international .map-panel,
  .page-hero,
  .dossier-grid,
  .contact-layout,
  .newsletter,
  .site-footer {
    grid-template-columns: 1fr;
  }
  .hero { min-height: auto; }
  .hero-visual {
    min-height: 320px;
    border-left: 0;
    padding-left: 0;
  }
  [dir="rtl"] .hero-visual {
    border-right: 0;
    padding-right: 0;
  }
  .hero-visual img { min-height: 320px; }
  .pillar-row,
  .capability-map,
  .program-dossier,
  .sector-detail,
  .about-editorial,
  .publication-grid,
  .insight-grid,
  .wizard-grid {
    grid-template-columns: 1fr;
  }
  .pillar-row > a {
    grid-template-columns: 52px minmax(0, 1fr) auto;
  }
  .capability-tabs {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  [dir="rtl"] .capability-tabs {
    border-left: 0;
  }
  .capability-panel ul,
  .region-list,
  .footer-grid,
  .principles,
  .contact-form,
  .publication-tools {
    grid-template-columns: 1fr;
  }
  .about-editorial article:first-child { grid-column: auto; }
  .sector-index a,
  .program-row a {
    grid-template-columns: 58px minmax(0, 1fr);
  }
  .sector-index p,
  .program-row p,
  .program-row em {
    grid-column: 2;
  }
  .dossier-side,
  .contact-aside,
  [dir="rtl"] .dossier-side,
  [dir="rtl"] .contact-aside {
    border: 0;
    padding: 0;
  }
  .newsletter form {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 640px) {
  .site-header {
    grid-template-columns: 1fr auto;
    gap: 12px;
  }
  .brand img { width: 136px; }
  .nav-toggle { grid-column: 2; grid-row: 1; }
  .nav-actions {
    grid-column: 1 / -1;
    width: 100%;
    justify-content: space-between;
  }
  .button-small { min-height: 36px; }
  .nav-actions .button-small {
    padding: 8px 10px;
    font-size: 11px;
  }
  h1 { font-size: 52px; }
  .challenge-options { grid-template-columns: 1fr; }
  .final-cta { grid-template-columns: 1fr; }
  .split-heading { grid-template-columns: 1fr; }
  .sector-strip { grid-auto-columns: 82vw; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    scroll-behavior: auto !important;
    transition-duration: .001ms !important;
  }
}
