:root {
  --desktop-margins: 120px;
  --content: 1280px;
  --font: "Google Sans Flex", Inter, "Segoe UI", system-ui, sans-serif;
  --font-inter: Inter, "Google Sans Flex", system-ui, sans-serif;
  --font-display: "Baloo 2", "Google Sans Flex", system-ui, sans-serif;

  --white: #ffffff;
  --ink: #1b1b1b;
  --ink-soft: #464646;
  --violet-38: #5b5270;
  --violet-17: #241b3a;
  --grey-55: #8a8298;
  --eyebrow: #6c0072;
  --brand: #520056;
  --cta: #8509ff;
  --pink-btn: #fdcfff;
  --pink-text: #520056;
  --blob-pink: #ffd0fa;
  --blob-green: #eaffd0;
  --blob-cyan: #d0fffa;
  --blob-lilac: #ecd0ff;
  --footer: #f0e9ff;
  --muted: #faf9fc;
  --blue-56: #5e3ee0;
  --blue-83: #b9a8ff;
  --lilac: #ede5ff;
  --rose: #f8dff5;
  --mint: #ddf5e8;
  --peach: #ffe6d5;
  --sky: #ddeeff;
  --sun: #fff2c9;
  --border: rgba(36, 27, 58, 0.06);
  --shadow-card: 0 0 13.4px 4.44px rgba(0, 0, 0, 0.14);
  --shadow-programme: 0 0 16.5px 2px rgba(0, 0, 0, 0.12);
  --radius: 24px;
  --radius-lg: 28px;
}

html[lang="mr"] {
  --font: "Noto Sans Devanagari", "Google Sans Flex", Inter, "Segoe UI", system-ui, sans-serif;
  --font-inter: "Noto Sans Devanagari", Inter, "Google Sans Flex", system-ui, sans-serif;
  --font-display: "Noto Sans Devanagari", "Baloo 2", "Google Sans Flex", system-ui, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  font-optical-sizing: auto;
  color: var(--ink);
  background: var(--white);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

button,
input,
textarea {
  font-family: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -40px;
  background: var(--cta);
  color: white;
  padding: 8px 12px;
  border-radius: 8px;
  z-index: 200;
}

.skip-link:focus {
  top: 16px;
}

.container {
  width: 100%;
  max-width: calc(var(--content) + var(--desktop-margins) * 2);
  margin: 0 auto;
  padding: 0 var(--desktop-margins);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--white);
  border-bottom: 1px solid rgba(200, 200, 200, 0.74);
}

.header-inner {
  max-width: calc(var(--content) + var(--desktop-margins) * 2);
  margin: 0 auto;
  padding: 18px var(--desktop-margins);
  display: flex;
  align-items: center;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.brand-mark {
  width: 58px;
  height: 58px;
  display: block;
  object-fit: contain;
}

.brand-mark svg,
.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  color: var(--brand);
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  white-space: nowrap;
}

.brand-rule {
  display: block;
  height: 1px;
  background: #bebebe;
  width: 100%;
}

.brand-divider {
  width: 1px;
  height: 48px;
  background: #bebebe;
  border-radius: 12px;
  flex-shrink: 0;
}

.partner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: transparent;
  gap: 2px;
}

.partner img {
  display: block;
  height: 44px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
}

.partner-tagline {
  color: #1a237e;
  font-family: Tinos, "Times New Roman", Times, serif;
  font-size: 8.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.15;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
}

.nav {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 18px;
  flex-wrap: wrap;
}

.nav-link {
  color: var(--ink-soft);
  font-size: 16px;
  font-weight: 500;
  line-height: 16px;
  padding: 8px 4px;
}

.nav-link.is-active,
.nav-link:hover {
  color: var(--brand);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 24px;
  border: 0;
  border-radius: 24px;
  font-size: 16px;
  font-weight: 500;
  line-height: 16px;
  cursor: pointer;
  white-space: nowrap;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.btn .icon {
  width: 24px;
  height: 24px;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--cta);
  color: white;
}

.btn-primary:hover {
  background: #7400e6;
}

.btn-pink {
  background: var(--pink-btn);
  color: var(--pink-text);
}

.btn-pink:hover {
  background: #f5b8f2;
}

.btn-lang {
  background: rgba(253, 253, 253, 0.78);
  color: var(--ink-soft);
  outline: 0.52px solid #9a9a9a;
  outline-offset: -0.52px;
}

.btn-lang .chevron {
  width: 18px;
  height: 18px;
}

.lang {
  position: relative;
}

.lang-menu {
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  margin: 0;
  padding: 8px;
  list-style: none;
  background: white;
  border-radius: 16px;
  box-shadow: var(--shadow-card);
  min-width: 140px;
  z-index: 20;
}

.lang-menu button {
  width: 100%;
  text-align: left;
  background: none;
  border: 0;
  padding: 10px 12px;
  border-radius: 10px;
  color: var(--violet-38);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
}

.lang-menu button:hover,
.lang-menu button[aria-selected="true"] {
  background: var(--lilac);
  color: var(--brand);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  padding: 10px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  height: 2px;
  background: var(--brand);
  margin: 6px 0;
  border-radius: 2px;
}

.hero {
  position: relative;
  overflow: visible;
  padding: 56px 0 120px;
  min-height: 720px;
  background: transparent;
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 46%;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #fff 78%, #fff 100%);
  pointer-events: none;
  z-index: 1;
}

.blobs {
  position: absolute;
  inset: -10% -8% 8% -8%;
  pointer-events: none;
  z-index: 0;
  -webkit-mask-image: radial-gradient(ellipse 78% 68% at 50% 38%, #000 12%, rgba(0, 0, 0, 0.55) 48%, transparent 78%);
  mask-image: radial-gradient(ellipse 78% 68% at 50% 38%, #000 12%, rgba(0, 0, 0, 0.55) 48%, transparent 78%);
}

.blobs::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 48% at 20% 46%, rgba(186, 255, 224, 0.8) 0%, rgba(186, 255, 224, 0) 70%),
    radial-gradient(ellipse 48% 55% at 80% 34%, rgba(226, 208, 255, 0.75) 0%, rgba(226, 208, 255, 0) 68%),
    radial-gradient(ellipse 36% 36% at 50% 62%, rgba(255, 232, 196, 0.45) 0%, rgba(255, 232, 196, 0) 70%),
    radial-gradient(ellipse 32% 40% at 88% 70%, rgba(255, 208, 245, 0.4) 0%, rgba(255, 208, 245, 0) 68%);
}

.blob {
  position: absolute;
  width: 620px;
  height: 640px;
  border-radius: 9999px;
  filter: blur(130px);
  opacity: 0.55;
}

.blob-pink {
  background: #ffd0fa;
}

.blob-green {
  background: #c8ffd8;
}

.blob-cyan {
  background: #c8fff6;
}

.blob-lilac {
  background: #e4d4ff;
}

.blob-yellow {
  background: #ffe9b8;
}

.blob-a {
  right: -12%;
  top: -18%;
}

.blob-b {
  left: -18%;
  top: 6%;
}

.blob-c {
  left: 8%;
  top: 48%;
  opacity: 0.55;
}

.blob-d {
  left: 38%;
  top: 58%;
  width: 480px;
  height: 420px;
  opacity: 0.5;
}

.blob-e {
  left: 48%;
  bottom: -22%;
  opacity: 0.4;
}

.blob-f {
  right: -20%;
  top: 12%;
  width: 760px;
  height: 720px;
}

.blob-g {
  right: 12%;
  bottom: -20%;
  opacity: 0.45;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
  align-items: center;
  gap: 32px;
}

.hero-copy {
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.eyebrow {
  margin: 0;
  color: var(--eyebrow);
  font-size: 16px;
  font-weight: 600;
  line-height: 20px;
}

.hero-titles {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

h1 {
  margin: 0;
  color: var(--ink);
  font-size: 64px;
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: -0.02em;
}

.hero-sub {
  margin: 0;
  color: var(--ink-soft);
  font-size: 42px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.015em;
}

.hero-body {
  margin: 0;
  max-width: 520px;
  color: var(--ink-soft);
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 8px;
}

.hero-visual {
  min-width: 0;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.hero-visual img {
  width: 100%;
  max-width: none;
  height: auto;
  max-height: 680px;
  object-fit: contain;
  object-position: center;
  margin-right: 0;
}

.section {
  position: relative;
  z-index: 2;
  padding: 96px 0;
  background: #fff;
}

.lede + .lede {
  margin-top: 10px;
}

.challenge-card,
.programme-card,
.approach-card,
.stat-card,
.story-card,
.voice-card {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.challenge-card:hover,
.programme-card:hover,
.stat-card:hover,
.story-card:hover,
.voice-card:hover {
  transform: translateY(-4px);
}

.section-muted {
  background: var(--muted);
}

.section h2 {
  margin: 13px 0 0;
  color: var(--ink);
  font-size: 52px;
  font-weight: 400;
  line-height: 56px;
}

.lede {
  margin: 12px 0 0;
  color: var(--violet-38);
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  max-width: 920px;
}

.section-muted .lede {
  color: var(--ink-soft);
}

.challenge-grid,
.programme-grid {
  display: flex;
  gap: 28px;
  margin-top: 56px;
  flex-wrap: wrap;
}

.card {
  background: white;
  border-radius: var(--radius);
}

.challenge-card {
  flex: 1 1 280px;
  min-height: 200px;
  padding: 24px;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.icon-tile {
  width: 52px;
  height: 52px;
  border-radius: 8px;
  display: grid;
  place-items: center;
}

.icon-tile svg {
  width: 24px;
  height: 24px;
}

.icon-tile-blue {
  background: #cfe2ff;
}

.icon-tile-purple {
  background: var(--lilac);
}

.icon-tile-green {
  background: var(--mint);
}

.challenge-card h3,
.programme-card h3 {
  margin: 0;
  color: var(--ink);
  font-size: 20px;
  font-weight: 500;
  line-height: 24px;
}

.challenge-card p,
.programme-card p {
  margin: 8px 0 0;
  color: var(--violet-38);
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
}

.programme-card {
  flex: 1 1 280px;
  min-width: 180px;
  padding: 24px;
  box-shadow: var(--shadow-programme);
  border: 1px solid #bebebe;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 10px;
}

.programme-art {
  position: relative;
  width: 100%;
  height: 302px;
  overflow: hidden;
  border-radius: 16px;
  display: grid;
  place-items: center;
}

.mini-blob {
  display: none;
}

.programme-art img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.programme-art-cutout {
  background: #fff;
}

.programme-art-cutout img {
  object-fit: contain;
}

.communities-card {
  margin-top: 32px;
  background: white;
  border-radius: var(--radius-lg);
  outline: 1px solid var(--border);
  outline-offset: -1px;
  padding: 28px;
}

.communities-card h3 {
  margin: 0;
  color: var(--violet-17);
  font-family: var(--font-inter);
  font-size: 19px;
  font-weight: 700;
}

.communities-card > p {
  margin: 8px 0 0;
  color: var(--violet-38);
  font-family: var(--font-inter);
  font-size: 15px;
  font-weight: 400;
  line-height: 24px;
}

.pills {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
  margin-top: 18px;
  align-items: center;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 100px;
  font-family: var(--font-inter);
  font-size: 14px;
  font-weight: 600;
}

.pill svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.pill-green {
  background: var(--mint);
  color: #2a7d53;
}

.pill-purple {
  background: var(--lilac);
  color: #5e3ee0;
}

.pill-pink {
  background: var(--rose);
  color: #a8397f;
}

.pill-blue {
  background: var(--sky);
  color: #2a5f94;
}

.pill-orange {
  background: var(--peach);
  color: #a85b26;
}

.communities-note {
  margin-top: 16px !important;
  color: var(--grey-55) !important;
  font-family: var(--font-inter) !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  line-height: 20px !important;
}

.approach-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 24px;
  margin-top: 42px;
}

.approach-card {
  min-height: 260px;
  padding: 24px;
  border-radius: var(--radius-lg);
  outline: 1px solid var(--border);
  outline-offset: -1px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.approach-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.7);
  display: grid;
  place-items: center;
}

.approach-icon svg {
  width: 26px;
  height: 26px;
}

.approach-card h3 {
  margin: 0;
  color: var(--violet-17);
  font-family: var(--font-inter);
  font-size: 19px;
  font-weight: 700;
}

.approach-card p {
  margin: 8px 0 0;
  color: var(--violet-38);
  font-family: var(--font-inter);
  font-size: 14.5px;
  font-weight: 400;
  line-height: 22.48px;
}

.bg-lilac {
  background: var(--lilac);
}

.bg-rose {
  background: var(--rose);
}

.bg-mint {
  background: var(--mint);
}

.bg-peach {
  background: var(--peach);
}

.bg-sky {
  background: var(--sky);
}

.bg-sun {
  background: var(--sun);
}

.gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 41px;
}

.gallery-tile {
  margin: 0;
  height: 269px;
  border-radius: 20px;
  outline: 2px solid var(--blue-83);
  outline-offset: -2px;
  background: linear-gradient(143deg, #efeafb 0%, #f5f1fc 100%);
  display: flex;
  align-items: flex-end;
  padding: 12px;
  overflow: hidden;
  position: relative;
}

.gallery-wide {
  grid-column: span 2;
}

.gallery-tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-chip {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  background: rgba(36, 27, 58, 0.78);
  color: white;
  border-radius: 100px;
  font-family: var(--font-inter);
  font-size: 12px;
  font-weight: 600;
}

.photo-chip svg {
  width: 13px;
  height: 13px;
}

.stats {
  display: flex;
  gap: 24px;
  margin-top: 41px;
  flex-wrap: wrap;
}

.stat-card {
  flex: 1 1 200px;
  padding: 32px 24px;
  background: white;
  border-radius: var(--radius-lg);
  outline: 1px solid var(--border);
  outline-offset: -1px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-align: center;
}

.stat-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: grid;
  place-items: center;
}

.stat-icon svg {
  width: 24px;
  height: 24px;
}

.stat-num {
  margin: 12px 0 0;
  color: var(--blue-56);
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 700;
  line-height: 1;
}

.stat-label {
  margin: 0;
  color: var(--violet-38);
  font-size: 14px;
  font-weight: 400;
  line-height: 18px;
}

.photo-note {
  margin: 24px 0 0;
  color: var(--grey-55);
  font-size: 14px;
  line-height: 18px;
}

.stories-grid,
.voices-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 42px;
}

.story-card {
  overflow: hidden;
  background: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow-programme);
  padding: 0 0 22px;
}

.story-art {
  height: 180px;
  overflow: hidden;
  background: var(--lilac);
}

.story-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-place {
  margin: 16px 22px 0;
  color: var(--eyebrow);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

html[lang="mr"] .story-place {
  text-transform: none;
  letter-spacing: 0.02em;
}

.story-card h3 {
  margin: 6px 22px 0;
  color: var(--violet-17);
  font-family: var(--font-inter);
  font-size: 19px;
  font-weight: 700;
}

.story-card p:not(.story-place) {
  margin: 8px 22px 0;
  color: var(--violet-38);
  font-family: var(--font-inter);
  font-size: 14.5px;
  line-height: 22px;
}

.voice-card {
  padding: 28px 24px 24px;
  border-radius: var(--radius-lg);
  outline: 1px solid var(--border);
  outline-offset: -1px;
  display: flex;
  flex-direction: column;
  min-height: 280px;
}

.voice-mark {
  margin: 0;
  color: var(--cta);
  font-size: 48px;
  line-height: 0.7;
  font-weight: 700;
}

.voice-card blockquote {
  margin: 12px 0 0;
  color: var(--violet-38);
  font-family: var(--font-inter);
  font-size: 15px;
  font-weight: 400;
  line-height: 24px;
}

.voice-name {
  margin: auto 0 0;
  padding-top: 20px;
  color: var(--violet-17);
  font-family: var(--font-inter);
  font-size: 16px;
  font-weight: 700;
}

.voice-role {
  margin: 4px 0 0;
  color: var(--grey-55);
  font-size: 13px;
  font-weight: 500;
  line-height: 18px;
}

.site-footer {
  background: var(--footer);
  padding: 48px 0 32px;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 64px;
}

.footer-top {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.footer-brand {
  flex: 1 1 320px;
}

.footer-brand-row {
  flex-wrap: wrap;
}

.footer-brand p {
  margin: 24px 0 0;
  color: var(--violet-38);
  font-size: 14px;
  line-height: 18px;
}

.footer-links {
  flex: 1 1 360px;
  display: flex;
  gap: 24px;
}

.footer-links > div {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-links h4 {
  margin: 0 0 18px;
  color: var(--grey-55);
  font-size: 20px;
  font-weight: 400;
  line-height: 24px;
}

.footer-links a,
.footer-links button {
  background: none;
  border: 0;
  padding: 7px 0;
  color: var(--violet-38);
  font-size: 16px;
  font-weight: 500;
  line-height: 16px;
  cursor: pointer;
  text-align: left;
}

.footer-links a:hover,
.footer-links button:hover {
  color: var(--brand);
}

.footer-bottom {
  padding-top: 28px;
  border-top: 1px solid rgba(36, 27, 58, 0.08);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-bottom p {
  margin: 0;
  color: var(--grey-55);
  font-family: var(--font-inter);
  font-size: 13.5px;
}

.modal[hidden] {
  display: none;
}

.modal {
  position: fixed;
  inset: 0;
  background: rgba(36, 27, 58, 0.45);
  display: grid;
  place-items: center;
  z-index: 80;
  padding: 24px;
}

.modal-card {
  width: min(480px, 100%);
  background: white;
  border-radius: 28px;
  padding: 32px;
  position: relative;
  box-shadow: var(--shadow-card);
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 16px;
  border: 0;
  background: none;
  font-size: 28px;
  color: var(--violet-38);
  cursor: pointer;
}

.modal-card h2 {
  margin: 0 0 8px;
  font-size: 28px;
  line-height: 1.2;
}

.modal-card p {
  color: var(--violet-38);
  font-size: 15px;
  line-height: 22px;
}

.modal-card form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 16px;
}

.modal-card label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
}

.modal-card input,
.modal-card textarea {
  border: 1px solid #d7d2e0;
  border-radius: 12px;
  padding: 12px 14px;
  font-size: 15px;
}

.modal-card input:focus,
.modal-card textarea:focus {
  outline: 2px solid var(--cta);
  border-color: transparent;
}

.form-status {
  min-height: 20px;
  margin: 0;
  color: #2a7d53 !important;
}

@media (max-width: 1100px) {
  :root {
    --desktop-margins: 48px;
  }

  h1 {
    font-size: 48px;
    line-height: 1.1;
  }

  .hero-sub {
    font-size: 32px;
    line-height: 1.2;
  }

  .section h2 {
    font-size: 40px;
    line-height: 1.15;
  }

  .approach-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .hero-visual {
    justify-content: center;
  }

  .hero-visual img {
    width: 100%;
    margin-right: 0;
    max-height: 520px;
  }
}

@media (max-width: 860px) {
  :root {
    --desktop-margins: 20px;
  }

  .brand-divider,
  .partner {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    align-items: stretch;
    padding: 12px 20px 20px;
    border-bottom: 1px solid rgba(200, 200, 200, 0.74);
    gap: 4px;
  }

  .nav.is-open {
    display: flex;
  }

  .nav-link {
    padding: 12px 4px;
  }

  .header-inner {
    flex-wrap: wrap;
    padding: 10px 20px;
  }

  h1 {
    font-size: 36px;
    line-height: 1.15;
  }

  .hero-sub {
    font-size: 26px;
  }

  .section h2 {
    font-size: 30px;
    line-height: 1.2;
  }

  .hero {
    padding: 24px 0 48px;
  }

  .hero-visual img {
    width: 100%;
    margin-right: 0;
    max-height: 380px;
  }

  .approach-grid,
  .gallery,
  .stories-grid,
  .voices-grid {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-tile {
    height: 180px;
  }

  .blob {
    width: 280px;
    height: 280px;
    filter: blur(90px);
  }

  .footer-links {
    width: 100%;
  }
}

@media (max-width: 560px) {
  .approach-grid,
  .gallery,
  .stories-grid,
  .voices-grid {
    grid-template-columns: 1fr;
  }

  .gallery-wide {
    grid-column: span 1;
  }

  .btn-lang span {
    display: none;
  }
}
