:root {
  --dark: #0E1719;
  --dark-2: #162225;
  --line-dark: #2A3A3D;
  --cream: #F3F0E8;
  --card: #EAE6DB;
  --card-2: #E3DECF;
  --ink: #1A2427;
  --muted: #5B6769;
  --on-dark: #E9E6DC;
  --on-dark-muted: #9FAAA8;
  --accent: #2F5BD8;
  --accent-hover: #2448B5;
  --accent-bright: #7C9BF2;
  --sand: #D9C08A;
  --serif: "Urbanist", "Helvetica Neue", Arial, sans-serif;
  --sans: "Urbanist", "Helvetica Neue", Arial, sans-serif;
  --gutter: clamp(16px, 4vw, 56px);
  --max: 1200px;
}
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body { margin: 0; background: var(--cream); color: var(--ink); font-family: var(--sans); font-size: 1rem; line-height: 1.6; }
a { color: inherit; }
img, svg { display: block; }
:focus-visible { outline: 2px solid var(--accent-bright); outline-offset: 3px; border-radius: 4px; }
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 var(--gutter); }
.skip { position: absolute; left: -999px; top: 8px; background: var(--accent); color: #fff; padding: 8px 14px; z-index: 20; border-radius: 0; }
.skip:focus { left: 8px; }

.label { font-size: 0.8rem; font-weight: 500; color: var(--accent); margin: 0 0 16px; letter-spacing: 0.01em; }
.dark .label, .hero .label { color: var(--accent-bright); }
h1, h2, h3 { font-family: var(--serif); font-weight: 500; margin: 0; letter-spacing: -0.02em; }
h2 { font-size: clamp(2rem, 3.6vw, 2.9rem); line-height: 1.1; }
h2 em, h1 em { font-style: italic; }

.btn {
  display: inline-flex; align-items: center; gap: 8px; white-space: nowrap;
  font: 500 0.92rem/1 var(--sans); text-decoration: none;
  padding: 13px 20px; border-radius: 0; border: 1px solid transparent; cursor: pointer;
}
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-hover); }
.btn-ghost { border-color: rgba(233,230,220,.28); color: var(--on-dark); background: rgba(255,255,255,.04); }
.btn-ghost:hover { background: rgba(255,255,255,.1); }
.btn-outline { border-color: var(--ink); color: var(--ink); }
.btn-outline:hover { background: var(--ink); color: var(--cream); }

/* Header */
.site-head { position: absolute; inset: 0 0 auto; z-index: 5; color: var(--on-dark); }
.site-head .wrap { display: flex; align-items: center; justify-content: space-between; gap: 24px; height: 84px; }
.mark { display: flex; align-items: center; gap: 10px; text-decoration: none; font-family: var(--serif); font-size: 1.3rem; white-space: nowrap; }
.nav { display: flex; align-items: center; gap: 30px; font-size: 0.88rem; }
.nav a:not(.btn) { text-decoration: none; color: var(--on-dark-muted); }
.nav a:not(.btn):hover { color: var(--on-dark); }
.nav .btn { padding: 10px 18px; }

/* Hero */
.hero { position: relative; overflow: hidden; background: var(--dark); color: var(--on-dark); min-height: max(640px, 92vh); display: flex; align-items: flex-end; }
.hero-slides { position: absolute; inset: 0; }
.hero-slide {
  position: absolute; inset: 0; background-size: cover; background-repeat: no-repeat;
  opacity: 0; transform: scale(1.06); transition: opacity 1.4s ease, transform 7.5s ease-out;
}
.hero-slide.is-active { opacity: 1; transform: scale(1); }
.hero-overlay {
  position: absolute; inset: 0; pointer-events: none;
  background:
    linear-gradient(to top, rgba(14,23,25,.96) 0%, rgba(14,23,25,.72) 32%, rgba(14,23,25,.28) 62%, rgba(14,23,25,.45) 100%),
    linear-gradient(to right, rgba(14,23,25,.55), rgba(14,23,25,0) 65%);
}
.hero .wrap { position: relative; z-index: 2; width: 100%; padding-bottom: clamp(48px, 8vh, 88px); padding-top: 140px; display: grid; grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr); gap: 40px; align-items: end; }
.hero h1 { font-size: clamp(2.9rem, 6.6vw, 5.6rem); line-height: 1.02; }
.hero h1 em { color: var(--sand); }
.hero h1, .hero-side p { text-shadow: 0 1px 24px rgba(0,0,0,.35); }
.hero-side p { color: #C9D0CD; margin: 0 0 24px; max-width: 30em; font-size: 0.98rem; }
.actions { display: flex; flex-wrap: wrap; gap: 10px; }
.hero-controls { margin-top: 40px; }
.hero-bars { display: flex; gap: 6px; max-width: 200px; }
.hero-bars button { flex: 1; height: 20px; padding: 0; border: 0; background: none; cursor: pointer; position: relative; }
.hero-bars button::before { content: ""; position: absolute; left: 0; right: 0; top: 9px; height: 2px; background: rgba(233,230,220,.28); }
.hero-bars button span { position: absolute; left: 0; top: 9px; height: 2px; width: 0; background: var(--sand); }
.hero-bars button.done span { width: 100%; }
.hero-bars button.current span { animation: fill var(--slide-ms, 7000ms) linear forwards; }
@keyframes fill { from { width: 0; } to { width: 100%; } }


/* Clients */
.clients { padding: 44px 0 28px; text-align: center; }
.clients p { margin: 0 0 26px; font-size: 0.82rem; color: var(--muted); }
.marquee {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 10%, #000 90%, transparent);
          mask-image: linear-gradient(to right, transparent, #000 10%, #000 90%, transparent);
}
.marquee-track { display: flex; width: max-content; animation: marquee 45s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee ul { list-style: none; margin: 0; padding: 0; display: flex; align-items: center; }
.marquee li { flex: none; padding: 0 clamp(28px, 3.5vw, 52px); }
.marquee img { display: block; height: 44px; width: auto; max-width: 170px; object-fit: contain; filter: grayscale(1); opacity: .7; transition: filter .3s, opacity .3s; }
.marquee li:hover img { filter: none; opacity: 1; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* About */
.about { padding: clamp(72px, 9vw, 120px) 0 clamp(56px, 7vw, 96px); }
.about-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 2.6fr); gap: 40px; }
.about-copy p { font-family: var(--serif); font-size: clamp(1.25rem, 1.9vw, 1.55rem); line-height: 1.45; margin: 0 0 20px; max-width: 34em; font-weight: 400; }
.pillars { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; margin-top: 44px; }
.pillar { background: var(--card); border-radius: 0; padding: 22px 22px 26px; }
.pillar .ico { width: 36px; height: 36px; border-radius: 0; background: var(--dark); display: grid; place-items: center; margin-bottom: 28px; }
.pillar .ico svg { width: 18px; height: 18px; }
.pillar h3 { font-size: 1.2rem; font-weight: 400; margin-bottom: 8px; }
.pillar p { margin: 0; font-size: 0.9rem; color: var(--muted); }

/* Services */
.services { padding: clamp(56px, 7vw, 96px) 0 clamp(72px, 9vw, 120px); }
.section-head { text-align: center; max-width: 40em; margin: 0 auto clamp(40px, 5vw, 64px); }
.section-head p:not(.label) { color: var(--muted); margin: 14px auto 0; max-width: 32em; font-size: 0.95rem; }
.svc-grid { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; }
.svc { background: var(--card); border-radius: 0; padding: 28px 26px 28px; min-height: 340px; display: flex; flex-direction: column; }
.svc .art { flex: 1; display: grid; place-items: center; padding: 8px 0 24px; }
.svc .art svg { width: 132px; height: 132px; }
.svc h3 { font-size: 1.3rem; font-weight: 400; margin-bottom: 8px; }
.svc p { margin: 0; font-size: 0.88rem; color: var(--muted); max-width: 28em; }
.svc.lead { background: var(--accent); color: #fff; }
.svc.lead p { color: #D8E1FB; }

/* Rough shaded texture on cards */
.pillar, .svc {
  position: relative; isolation: isolate; overflow: hidden;
  clip-path: polygon(0 0.6%, 18% 0, 47% 0.9%, 76% 0, 100% 0.7%, 99.3% 34%, 100% 71%, 99.5% 100%, 68% 99.2%, 36% 100%, 9% 99.4%, 0 100%, 0.7% 62%, 0 27%);
}
.pillar > *, .svc > * { position: relative; z-index: 1; }
.pillar::before, .svc::before {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(130% 95% at 100% 100%, rgba(26,36,39,.16), transparent 58%),
    radial-gradient(70% 60% at 0% 0%, rgba(255,255,255,.35), transparent 70%);
}
.pillar::after, .svc::after {
  content: ""; position: absolute; inset: -2px; z-index: 0; pointer-events: none;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0.1 0 0 0 0 0.14 0 0 0 0 0.15 0 0 0 .9 -.28'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E"),
    repeating-linear-gradient(-58deg, rgba(26,36,39,.10) 0 1px, transparent 1px 6px);
  -webkit-mask-image: linear-gradient(135deg, rgba(0,0,0,.55) 0%, rgba(0,0,0,.35) 45%, #000 100%);
          mask-image: linear-gradient(135deg, rgba(0,0,0,.55) 0%, rgba(0,0,0,.35) 45%, #000 100%);
  mix-blend-mode: multiply; opacity: .75;
}
.svc.lead::before { background: radial-gradient(130% 95% at 100% 100%, rgba(8,20,70,.45), transparent 60%), radial-gradient(70% 60% at 0% 0%, rgba(255,255,255,.14), transparent 70%); }
.svc.lead::after { opacity: .9; }

/* Impact */
.dark { background: var(--dark); color: var(--on-dark); }
.impact { position: relative; overflow: hidden; padding: clamp(64px, 8vw, 104px) 0; }
.impact::before { content: ""; position: absolute; inset: 0; background: radial-gradient(50% 80% at 85% 0%, rgba(217,192,138,.10), transparent 70%); }
.impact .wrap { position: relative; }
.impact-head { display: grid; grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr); gap: 40px; align-items: end; margin-bottom: clamp(48px, 6vw, 72px); }
.impact-head p:not(.label) { color: var(--on-dark-muted); margin: 0; font-size: 0.92rem; max-width: 26em; justify-self: end; }
.stats { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); margin: 0; }
.stats > div { padding: 0 28px; border-left: 1px solid var(--line-dark); display: flex; flex-direction: column; }
.stats > div:first-child { padding-left: 0; border-left: 0; }
.stats dd { order: 1; margin: 0 0 14px; font-family: var(--serif); font-weight: 400; font-size: clamp(2.6rem, 4.6vw, 3.8rem); line-height: 1; color: var(--accent-bright); font-variant-numeric: lining-nums; }
.stats dt { order: 2; font-size: 0.86rem; color: var(--on-dark-muted); max-width: 16em; }

/* Approach */
.approach { padding: clamp(72px, 9vw, 120px) 0; }
.approach-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.25fr); gap: clamp(32px, 6vw, 96px); }
.approach-intro { display: flex; flex-direction: column; }
.approach-intro .grow { flex: 1; min-height: 40px; }
.approach-intro p:not(.label) { color: var(--muted); font-size: 0.95rem; max-width: 26em; margin: 0 0 24px; }
.steps { border-top: 1px solid #D5D0C2; }
.step { border-bottom: 1px solid #D5D0C2; }
.step summary { list-style: none; cursor: pointer; display: flex; align-items: baseline; gap: 18px; padding: 20px 0; font-family: var(--serif); font-size: 1.45rem; font-weight: 400; }
.step summary::-webkit-details-marker { display: none; }
.step summary .n { font-family: var(--sans); font-size: 0.85rem; color: var(--muted); font-variant-numeric: tabular-nums; width: 1.6rem; }
.step summary .plus { margin-left: auto; width: 14px; height: 14px; position: relative; flex: none; align-self: center; }
.step summary .plus::before, .step summary .plus::after { content: ""; position: absolute; background: var(--ink); left: 0; top: 6px; width: 14px; height: 1.5px; transition: transform .25s ease; }
.step summary .plus::after { transform: rotate(90deg); }
.step[open] summary .plus::after { transform: rotate(0); }
.step .body { display: grid; grid-template-columns: minmax(0, 1fr) 104px; gap: 24px; padding: 0 0 24px 2.7rem; }
.step .body p { margin: 0; color: var(--muted); font-size: 0.92rem; max-width: 30em; }
.step .body svg { width: 104px; height: 104px; }
.step .bar { height: 2px; background: #D5D0C2; margin-top: 18px; position: relative; overflow: hidden; }
.step .bar span { position: absolute; inset: 0 auto 0 0; background: var(--accent); }

/* Testimonial */
.voices { padding: clamp(40px, 6vw, 72px) 0 clamp(80px, 10vw, 128px); text-align: center; }
.voices .quote-mark { font-family: var(--serif); font-size: 3.6rem; line-height: 0.6; color: var(--accent); margin: 0 0 12px; font-style: italic; }
.carousel { position: relative; max-width: 900px; margin: 0 auto; }
.slide { display: none; margin: 0; }
.slide.active { display: block; }
.slide blockquote { margin: 0 auto; max-width: 30em; font-family: var(--serif); font-style: italic; font-weight: 400; font-size: clamp(1.5rem, 3vw, 2.3rem); line-height: 1.22; }
.slide figcaption { margin-top: 28px; font-size: 0.88rem; }
.slide figcaption b { display: block; font-weight: 600; }
.slide figcaption span { color: var(--muted); }
.car-btn { position: absolute; top: 40%; width: 42px; height: 42px; border-radius: 0; border: 0; display: grid; place-items: center; cursor: pointer; background: var(--card-2); color: var(--ink); }
.car-btn:hover { background: var(--accent); color: #fff; }
.car-btn.prev { left: -8px; } .car-btn.next { right: -8px; }
.car-btn svg { width: 16px; height: 16px; }
.dots { display: flex; justify-content: center; gap: 8px; margin-top: 28px; }
.dots button { width: 8px; height: 8px; border-radius: 50%; border: 0; padding: 0; background: #C9C3B3; cursor: pointer; }
.dots button[aria-current="true"] { background: var(--accent); width: 22px; border-radius: 999px; }

/* CTA */
.cta { position: relative; overflow: hidden; text-align: center; padding: clamp(80px, 11vw, 140px) 0; }
.cta::before { content: ""; position: absolute; inset: 0; background: radial-gradient(45% 70% at 50% 110%, rgba(217,192,138,.22), transparent 70%); }
.cta .wrap { position: relative; }
.cta h2 { font-size: clamp(2.2rem, 4.4vw, 3.4rem); margin-bottom: 16px; }
.cta p:not(.label) { color: var(--on-dark-muted); max-width: 30em; margin: 0 auto 32px; }
.cta .actions { justify-content: center; }

/* Footer */

@media (max-width: 960px) {
  .hero .wrap, .impact-head, .approach-grid { grid-template-columns: minmax(0, 1fr); }
  .impact-head p:not(.label) { justify-self: start; }
  .about-grid { grid-template-columns: minmax(0, 1fr); gap: 0; }
  .svc-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .stats { grid-template-columns: repeat(2, minmax(0, 1fr)); row-gap: 40px; }
  .stats > div:nth-child(3) { padding-left: 0; border-left: 0; }
}
@media (max-width: 640px) {
  .pillars, .svc-grid { grid-template-columns: minmax(0, 1fr); }
  .svc { min-height: 0; }
  .svc .art svg { width: 104px; height: 104px; }
  .step .body { grid-template-columns: minmax(0, 1fr); padding-left: 0; }
  .step .body svg { display: none; }
  .car-btn { top: auto; bottom: -58px; }
  .car-btn.prev { left: calc(50% - 90px); } .car-btn.next { right: calc(50% - 90px); }
  .dots { margin-top: 40px; }
  .marquee img { height: 36px; max-width: 140px; }
}
@media (prefers-reduced-motion: reduce) {
  .marquee { -webkit-mask-image: none; mask-image: none; }
  .marquee-track { animation: none; width: auto; justify-content: center; }
  .marquee-track ul { flex-wrap: wrap; justify-content: center; row-gap: 24px; }
  .marquee-track ul[aria-hidden] { display: none; }
  .hero-slide { transition: opacity .01s; transform: none !important; }
  .step summary .plus::after { transition: none; }
}

/* ---------- Service pages ---------- */
.page-hero { min-height: max(540px, 72vh); }
.crumbs { margin: 0 0 22px; font-size: 0.82rem; color: var(--on-dark-muted); }
.crumbs ol { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 6px; }
.crumbs li + li::before { content: "/"; margin-right: 6px; opacity: .5; }
.crumbs a { text-decoration: none; }
.crumbs a:hover { color: var(--on-dark); text-decoration: underline; text-underline-offset: 3px; }
.crumbs [aria-current] { color: var(--on-dark); }

.detail { padding: clamp(72px, 9vw, 120px) 0; }
.detail + .detail { padding-top: 0; }
.detail-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.7fr); gap: clamp(32px, 6vw, 96px); align-items: start; }
.detail-intro { position: sticky; top: 32px; }
.detail-intro p:not(.label) { color: var(--muted); font-size: 0.95rem; max-width: 26em; margin: 16px 0 0; }
.detail-art { margin-top: 32px; width: 120px; height: 120px; }
.detail-art svg { width: 100%; height: 100%; }

.cap-grid { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
.cap-grid .pillar { padding: 26px 24px 28px; }
.cap-grid .pillar .ico { margin-bottom: 22px; }

.when-list { list-style: none; margin: 0; padding: 0; border-top: 1px solid #D5D0C2; }
.when-list li { display: flex; gap: 18px; align-items: baseline; padding: 22px 0; border-bottom: 1px solid #D5D0C2; font-family: var(--serif); font-size: clamp(1.2rem, 1.8vw, 1.45rem); line-height: 1.35; font-weight: 400; }
.when-list li::before { content: ""; flex: none; width: 8px; height: 8px; background: var(--accent); transform: translateY(-3px); }

.deliver { padding: clamp(64px, 8vw, 104px) 0; }
.deliver-head { max-width: 40em; margin-bottom: clamp(36px, 5vw, 56px); }
.deliver-grid { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); }
.deliver-grid li { padding: 0 24px; border-left: 1px solid var(--line-dark); }
.deliver-grid li:first-child { padding-left: 0; border-left: 0; }
.deliver-grid h3 { font-size: 1.3rem; font-weight: 400; color: var(--on-dark); margin-bottom: 8px; }
.deliver-grid p { margin: 0; font-size: 0.88rem; color: var(--on-dark-muted); }

.regions { padding: clamp(56px, 7vw, 88px) 0 0; }
.region-row { list-style: none; margin: 24px 0 0; padding: 0; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 12px; }
.region-row li { padding: 20px 22px; border: 1px solid #D5D0C2; }
.region-row b { display: block; font-family: var(--serif); font-weight: 400; font-size: 1.25rem; }
.region-row span { font-size: 0.85rem; color: var(--muted); }

.more { padding: clamp(72px, 9vw, 120px) 0; }
.more-head { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: end; gap: 16px; margin-bottom: 32px; }
.more-grid { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 12px; }
.more-grid .pillar { display: flex; flex-direction: column; min-height: 190px; padding: 22px 20px 24px; }
.more-grid .pillar h3 { font-size: 1.12rem; margin-top: auto; }
.more-grid .pillar p { font-size: 0.82rem; }

/* Whole-card links (home service grid and related services) */
.card-link { position: static !important; }
.card-link::before { content: ""; position: absolute; inset: 0; z-index: 3; }
.svc .card-link { display: inline-block; margin-top: 16px; font-size: 0.86rem; font-weight: 500; color: var(--accent); text-decoration: underline; text-underline-offset: 4px; }
.svc.lead .card-link { color: #fff; }
.svc:hover h3, .more-grid .pillar:hover h3 { text-decoration: underline; text-underline-offset: 5px; text-decoration-thickness: 1px; }
.card-link:focus-visible { outline: none; }
.card-link:focus-visible::before { outline: 2px solid var(--accent); outline-offset: -4px; }

@media (max-width: 1100px) { .more-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (max-width: 960px) {
  .detail-grid { grid-template-columns: minmax(0, 1fr); }
  .detail-intro { position: static; }
  .deliver-grid, .region-row { grid-template-columns: repeat(2, minmax(0, 1fr)); row-gap: 32px; }
  .deliver-grid li:nth-child(3) { padding-left: 0; border-left: 0; }
}
@media (max-width: 640px) {
  .cap-grid, .more-grid, .region-row { grid-template-columns: minmax(0, 1fr); }
  .deliver-grid { grid-template-columns: minmax(0, 1fr); }
  .deliver-grid li { padding: 0; border-left: 0; }
  .more-grid .pillar { min-height: 0; }
}
.sr-only { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
.more-grid .card-link { text-decoration: none; }

/* ---------- About and contact pages ---------- */
.nav a[aria-current="page"] { color: var(--on-dark); text-decoration: underline; text-underline-offset: 6px; text-decoration-color: var(--sand); }
.prose p { font-family: var(--serif); font-weight: 400; font-size: clamp(1.15rem, 1.6vw, 1.35rem); line-height: 1.55; margin: 0 0 20px; max-width: 36em; }
.prose p:first-child { font-size: clamp(1.3rem, 2vw, 1.6rem); line-height: 1.45; }
.values { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; }
.values .pillar { min-height: 240px; display: flex; flex-direction: column; }
.values .pillar h3 { margin-top: auto; font-size: 1.45rem; }
.partner-list { list-style: none; margin: 0; padding: 0; border-top: 1px solid #D5D0C2; }
.partner-list li { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.4fr); gap: 24px; padding: 22px 0; border-bottom: 1px solid #D5D0C2; }
.partner-list b { font-family: var(--serif); font-weight: 400; font-size: 1.3rem; line-height: 1.3; }
.partner-list span { color: var(--muted); font-size: 0.92rem; }

.contact-grid { display: grid; grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr); gap: clamp(32px, 6vw, 96px); align-items: start; }
.form { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }
.field-full { grid-column: 1 / -1; }
.field label { display: block; font-size: 0.86rem; font-weight: 500; margin-bottom: 8px; }
.field .opt { color: var(--muted); font-weight: 400; }
.field input, .field select, .field textarea {
  width: 100%; font: 400 1rem/1.4 var(--sans); color: var(--ink);
  background: #FBFAF6; border: 1px solid #C9C3B3; border-radius: 0; padding: 13px 14px;
}
.field select { appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--ink) 50%), linear-gradient(135deg, var(--ink) 50%, transparent 50%); background-position: calc(100% - 20px) 55%, calc(100% - 15px) 55%; background-size: 5px 5px; background-repeat: no-repeat; padding-right: 40px; }
.field textarea { min-height: 170px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: 2px solid var(--accent); outline-offset: 0; border-color: var(--accent); }
.field [aria-invalid="true"] { border-color: #B3261E; }
.field .error { display: block; margin-top: 6px; font-size: 0.82rem; color: #B3261E; min-height: 1em; }
.form-foot { grid-column: 1 / -1; display: flex; flex-wrap: wrap; align-items: center; gap: 16px 24px; margin-top: 4px; }
.form-foot p { margin: 0; font-size: 0.84rem; color: var(--muted); max-width: 30em; }
.form .btn { border: 0; }
.form-status { grid-column: 1 / -1; margin: 0; padding: 16px 18px; background: var(--card); border-left: 3px solid var(--accent); font-size: 0.92rem; }
.form-status[hidden] { display: none; }

.contact-aside { display: grid; gap: 12px; }
.contact-aside .pillar h3 { margin-bottom: 10px; }
.contact-aside .pillar p { font-size: 0.92rem; }
.contact-aside a.big { font-family: var(--serif); font-size: 1.35rem; color: var(--accent); word-break: break-word; }
.office-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.office-list li { display: flex; justify-content: space-between; gap: 12px; font-size: 0.92rem; }
.office-list b { font-weight: 600; }
.office-list span { color: var(--muted); }
.next-steps { list-style: none; margin: 0; padding: 0; counter-reset: s; display: grid; gap: 14px; }
.next-steps li { counter-increment: s; display: grid; grid-template-columns: 1.8rem minmax(0, 1fr); font-size: 0.92rem; color: var(--muted); }
.next-steps li::before { content: counter(s, decimal-leading-zero); font-size: 0.8rem; color: var(--ink); padding-top: 2px; }

@media (max-width: 960px) {
  .values { grid-template-columns: minmax(0, 1fr); }
  .values .pillar { min-height: 0; }
  .contact-grid { grid-template-columns: minmax(0, 1fr); }
}
@media (max-width: 640px) {
  .form { grid-template-columns: minmax(0, 1fr); }
  .partner-list li { grid-template-columns: minmax(0, 1fr); gap: 4px; }
}

/* Minimal home hero: small, single column, pinned to the left edge */
.hero .wrap.hero-min { display: block; max-width: none; padding-left: var(--gutter); padding-right: var(--gutter); }
.hero-min .label { margin-bottom: 12px; }
.hero-min h1 { font-size: clamp(2.1rem, 3.4vw, 3rem); line-height: 1.05; margin-bottom: 16px; }
.hero-min .hero-lede { max-width: 26rem; margin: 0 0 22px; font-size: 0.92rem; line-height: 1.6; color: #C9D0CD; text-shadow: 0 1px 18px rgba(0,0,0,.35); }
.hero-min .hero-controls { margin-top: 28px; }
.hero-min .hero-bars { max-width: 150px; }
.hero-home .hero-overlay, .page-hero .hero-overlay {
  background:
    linear-gradient(to top, rgba(14,23,25,.9) 0%, rgba(14,23,25,.45) 38%, rgba(14,23,25,.15) 70%, rgba(14,23,25,.4) 100%),
    linear-gradient(to right, rgba(14,23,25,.6), rgba(14,23,25,0) 50%);
}
/* Header spans the full width so the logo lines up with the hero text */
.site-head .wrap { max-width: none; }

/* Header menu: full links on desktop, a menu button below 960px */
.nav .btn .short { display: none; }
.menu-btn { display: none; }
@media (max-width: 960px) {
  .menu-btn {
    display: inline-grid; place-items: center; width: 44px; height: 44px; padding: 0; cursor: pointer;
    background: transparent; color: var(--on-dark); border: 0; border-radius: 0;
  }
  .menu-btn .bars { position: relative; display: block; width: 24px; height: 2px; background: currentColor; transition: background .2s ease; }
  .menu-btn .bars::before, .menu-btn .bars::after { content: ""; position: absolute; left: 0; width: 24px; height: 2px; background: currentColor; transition: transform .2s ease, top .2s ease; }
  .menu-btn .bars::before { top: -7px; }
  .menu-btn .bars::after { top: 7px; }
  .menu-btn[aria-expanded="true"] .bars { background: transparent; }
  .menu-btn[aria-expanded="true"] .bars::before { top: 0; transform: rotate(45deg); }
  .menu-btn[aria-expanded="true"] .bars::after { top: 0; transform: rotate(-45deg); }
  .nav {
    display: none; position: absolute; top: 84px; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--dark); border-top: 1px solid var(--line-dark);
    padding: 4px var(--gutter) 24px; box-shadow: 0 24px 40px rgba(0,0,0,.35);
  }
  .nav.open { display: flex; }
  .nav a:not(.btn) { display: block; padding: 15px 0; border-bottom: 1px solid var(--line-dark); font-size: 1.05rem; color: var(--on-dark); }
  .nav a[aria-current="page"] { text-decoration: none; color: var(--sand); }
  .nav .btn { margin-top: 20px; justify-content: center; padding: 14px 18px; }
}
@media (prefers-reduced-motion: reduce) {
  .menu-btn .bars, .menu-btn .bars::before, .menu-btn .bars::after { transition: none; }
}

/* ---------- Footer ---------- */
.site-foot { --mono: "Urbanist", "Helvetica Neue", Arial, sans-serif; background: #0B1214; color: #A7AFAD; border-top: 1px solid var(--line-dark); font-size: 1rem; }
.foot-grid { display: grid; grid-template-columns: minmax(0, 1.55fr) repeat(4, minmax(0, 1fr)); gap: 40px 48px; padding: clamp(64px, 8vw, 104px) 0 clamp(56px, 7vw, 88px); }
.foot-brand .foot-mark { color: var(--on-dark); font-size: 1.9rem; gap: 14px; margin-bottom: 28px; letter-spacing: -0.01em; }
.foot-brand p { margin: 0 0 16px; font-size: 0.9rem; line-height: 1.6; max-width: 25em; color: #98A19F; }
.foot-brand .foot-tagline { margin-top: 28px; font-family: var(--serif); font-style: italic; font-size: 1.3rem; color: var(--sand); }
.foot-col h2 { font-family: var(--mono); font-weight: 500; font-size: 0.92rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--on-dark); margin: 6px 0 26px; }
.foot-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 16px; }
.foot-col li { font-size: 1rem; line-height: 1.3; }
.foot-col a { text-decoration: none; color: #A7AFAD; overflow-wrap: anywhere; }
.foot-col a:hover { color: var(--on-dark); text-decoration: underline; text-underline-offset: 4px; }
.foot-col .plain li { color: #A7AFAD; }
.foot-col .foot-social-h { margin-top: 44px; }
.foot-social { display: flex !important; gap: 16px !important; }
.foot-social a { display: grid; place-items: center; width: 40px; height: 40px; color: #C9D0CD; }
.foot-social a:hover { color: var(--sand); }
.foot-social svg { width: 34px; height: 34px; }
.foot-base { border-top: 1px solid var(--line-dark); padding: 26px 0 30px; font-size: 0.86rem; color: #8C9593; }
.foot-base .wrap { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 10px 32px; }
@media (max-width: 1100px) {
  .foot-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .foot-brand { grid-column: 1 / -1; }
}
@media (max-width: 760px) {
  .foot-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 48px 24px; }
}
@media (max-width: 420px) {
  .foot-grid { grid-template-columns: minmax(0, 1fr); }
}
.site-foot .wrap { max-width: none; }
.page-hero { min-height: max(460px, 64vh); }
.hero-min .crumbs { margin-bottom: 16px; }

/* ---------- World map (section above the footer) ---------- */
.cta-map { margin-top: clamp(44px, 6vw, 80px); }
.world-map { position: relative; margin: 0 auto; max-width: 1100px; }
.world-map img { display: block; width: 100%; height: auto; }
.pin { position: absolute; width: 10px; height: 10px; transform: translate(-50%, -50%); background: var(--accent-bright); box-shadow: 0 0 0 3px rgba(14,23,25,.9); }
.pin::after { content: ""; position: absolute; inset: -6px; border: 1px solid var(--accent-bright); opacity: 0; animation: pin-pulse 2.8s ease-out infinite; }
.pin + .pin::after { animation-delay: .9s; }
.pin + .pin + .pin::after { animation-delay: 1.8s; }
@keyframes pin-pulse { 0% { opacity: .9; transform: scale(.6); } 100% { opacity: 0; transform: scale(2.4); } }
.pin-label { position: absolute; left: 14px; top: 50%; transform: translateY(-50%); white-space: nowrap; font-size: 0.78rem; font-weight: 500; color: var(--on-dark); background: rgba(14,23,25,.85); padding: 3px 8px; }
.pin-left .pin-label { left: auto; right: 14px; }
.map-legend { list-style: none; margin: 24px 0 0; padding: 0; display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 28px; font-size: 0.84rem; color: var(--on-dark-muted); }
.map-legend li { display: flex; align-items: center; gap: 8px; }
.key { display: inline-block; width: 10px; height: 10px; }
.key-office { background: var(--accent-bright); }
.key-country { background: var(--sand); border-radius: 50%; }
.map-band .wrap:first-of-type p:not(.label) { margin-bottom: 0; }
@media (max-width: 640px) {
  .pin { width: 8px; height: 8px; }
  .pin-label { font-size: 0.7rem; padding: 2px 6px; left: 11px; }
  .pin-left .pin-label { right: 11px; }
}
@media (prefers-reduced-motion: reduce) { .pin::after { animation: none; } }

/* ---------- Photography ---------- */
.hero-slide { background-image: var(--img-sm); }
@media (min-width: 900px) { .hero-slide { background-image: var(--img); } }
.photo { margin: 0; }
.photo img { display: block; width: 100%; height: auto; object-fit: cover; background: var(--card-2); }
.photo figcaption { margin-top: 10px; font-size: 0.8rem; color: var(--muted); line-height: 1.45; }
.photo figcaption b { font-weight: 600; color: var(--ink); margin-right: 6px; }
.photo figcaption a { color: inherit; }
.about-side { display: flex; flex-direction: column; }
.about-photo { margin-top: 20px; max-width: 360px; }
.about-photo img { aspect-ratio: 4 / 5; }
.photo-strip { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.photo-strip img { aspect-ratio: 4 / 3; }
@media (max-width: 960px) {
  .about-photo { max-width: none; margin-bottom: 36px; }
  .about-photo img { aspect-ratio: 16 / 9; }
}
@media (max-width: 760px) {
  .photo-strip { grid-template-columns: minmax(0, 1fr); gap: 28px; }
}
.credit-list { list-style: none; margin: 0; padding: 0; border-top: 1px solid #D5D0C2; }
.credit-list li { display: grid; grid-template-columns: 160px minmax(0, 1fr); gap: 20px; align-items: center; padding: 16px 0; border-bottom: 1px solid #D5D0C2; }
.credit-list img { width: 160px; height: 107px; object-fit: cover; }
.credit-list b { display: block; font-family: var(--serif); font-weight: 400; font-size: 1.15rem; margin-bottom: 2px; }
.credit-list span { display: block; font-size: 0.86rem; color: var(--muted); overflow-wrap: anywhere; }
.credit-list a { color: var(--accent); }
.credits .crumbs a, .credits .crumbs { color: var(--on-dark-muted); }
@media (max-width: 560px) { .credit-list li { grid-template-columns: 96px minmax(0, 1fr); gap: 14px; } .credit-list img { width: 96px; height: 64px; } }

/* ---------- Logo ---------- */
.mark .logo { display: block; height: 42px; width: auto; }
.foot-mark .logo { height: 76px; }
@media (max-width: 640px) {
  .mark .logo { height: 34px; }
  .foot-mark .logo { height: 64px; }
}

/* Light version of the world map (homepage "Who we are") */
.about-map { margin: 40px 0 44px; max-width: none; }
.world-map--light .pin { background: var(--accent); box-shadow: 0 0 0 3px var(--cream); }
.world-map--light .pin::after { border-color: var(--accent); }
.world-map--light .pin-label { background: var(--ink); color: var(--cream); }
.world-map--light .map-legend { color: var(--muted); justify-content: flex-start; margin-top: 18px; }
.world-map--light .key-office { background: var(--accent); }
.world-map--light .key-country { background: #B8893A; }

/* ---------- Urbanist tuning ---------- */
body { font-size: 1.0625rem; }
h1 em, h2 em, h3 em { font-weight: 400; }
.hero h1 { font-weight: 600; }
.stats dd { font-weight: 500; }
.foot-col h2 { font-weight: 700; letter-spacing: 0.12em; font-size: 0.82rem; }

/* Darker, slightly heavier text on the textured cards */
.pillar p, .svc:not(.lead) p { color: #34403F; font-weight: 500; }
.svc.lead p { color: #EEF2FD; font-weight: 500; }

/* ---------- Homepage hero artwork: futuristic gradients with fading African-inspired patterns ---------- */
.hero-art { overflow: hidden; }
.hero-art::before, .hero-art::after { content: ""; position: absolute; pointer-events: none; }
/* soft moving glow */
.hero-art::after { inset: -20%; filter: blur(40px); opacity: .9; animation: art-glow 18s ease-in-out infinite alternate; }
/* the pattern layer, faded out towards the text with a mask */
.hero-art::before {
  inset: -60px; background-repeat: repeat; z-index: 1;
  -webkit-mask-image: radial-gradient(ellipse 65% 70% at 72% 38%, #000 0%, rgba(0,0,0,.55) 38%, transparent 72%);
          mask-image: radial-gradient(ellipse 65% 70% at 72% 38%, #000 0%, rgba(0,0,0,.55) 38%, transparent 72%);
  animation: art-drift 60s linear infinite, art-fade 9s ease-in-out infinite alternate;
}
/* 1: cobalt and teal, woven zigzag bands */
.art-1 { background: linear-gradient(135deg, #06122B 0%, #0B2566 48%, #0A1417 100%); }
.art-1::after { background:
  radial-gradient(40% 45% at 76% 30%, rgba(47,91,216,.9), transparent 70%),
  radial-gradient(35% 40% at 58% 82%, rgba(31,181,165,.55), transparent 70%),
  radial-gradient(25% 30% at 95% 70%, rgba(124,155,242,.45), transparent 70%); }
.art-1::before {
  background-size: 56px 28px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='56' height='28'%3E%3Cg fill='none' stroke='%23E9EEFF' stroke-linejoin='round'%3E%3Cpath d='M0 20 14 6l14 14L42 6l14 14' stroke-width='1.3'/%3E%3Cpath d='M0 27 14 13l14 14 14-14 14 14' stroke-width='.6' stroke-opacity='.6'/%3E%3C/g%3E%3Ccircle cx='28' cy='3' r='1.3' fill='%23E9EEFF'/%3E%3C/svg%3E");
}
/* 2: saffron and plum, diamond lattice */
.art-2 { background: linear-gradient(135deg, #160C06 0%, #3A2410 50%, #0A1417 100%); }
.art-2::after { background:
  radial-gradient(40% 45% at 74% 32%, rgba(230,168,58,.85), transparent 70%),
  radial-gradient(30% 38% at 92% 78%, rgba(176,53,122,.45), transparent 70%),
  radial-gradient(28% 30% at 52% 70%, rgba(217,192,138,.35), transparent 70%); }
.art-2::before {
  background-size: 48px 48px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='48' height='48'%3E%3Cg fill='none' stroke='%23FFF1D6'%3E%3Cpath d='M24 2 46 24 24 46 2 24Z' stroke-width='1.2'/%3E%3Cpath d='M24 13 35 24 24 35 13 24Z' stroke-width='.8' stroke-opacity='.7'/%3E%3C/g%3E%3Cg fill='%23FFF1D6'%3E%3Ccircle cx='24' cy='24' r='1.8'/%3E%3Ccircle cx='0' cy='0' r='1.4'/%3E%3Ccircle cx='48' cy='0' r='1.4'/%3E%3Ccircle cx='0' cy='48' r='1.4'/%3E%3Ccircle cx='48' cy='48' r='1.4'/%3E%3C/g%3E%3C/svg%3E");
}
/* 3: violet and aqua, mudcloth-style triangles, dashes and dots */
.art-3 { background: linear-gradient(135deg, #0F0A28 0%, #221758 50%, #0A1417 100%); }
.art-3::after { background:
  radial-gradient(40% 45% at 72% 34%, rgba(124,92,240,.8), transparent 70%),
  radial-gradient(32% 40% at 56% 84%, rgba(52,195,214,.45), transparent 70%),
  radial-gradient(25% 28% at 94% 22%, rgba(236,120,200,.3), transparent 70%); }
.art-3::before {
  background-size: 60px 60px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Cg fill='none' stroke='%23EFEAFF'%3E%3Cpath d='M0 7h60' stroke-width='1.2' stroke-dasharray='7 5'/%3E%3Cpath d='M5 32l7-12 7 12zM35 32l7-12 7 12z' stroke-width='1.1'/%3E%3Cpath d='M0 48h60' stroke-width='2' stroke-dasharray='2 6' stroke-linecap='round'/%3E%3C/g%3E%3Cg fill='%23EFEAFF'%3E%3Ccircle cx='27' cy='26' r='1.5'/%3E%3Ccircle cx='57' cy='26' r='1.5'/%3E%3C/g%3E%3C/svg%3E");
}
@keyframes art-drift { from { transform: translate3d(0, 0, 0); } to { transform: translate3d(-56px, 48px, 0); } }
@keyframes art-fade { from { opacity: .12; } to { opacity: .42; } }
@keyframes art-glow { from { transform: translate3d(-2%, 1%, 0) scale(1); } to { transform: translate3d(3%, -2%, 0) scale(1.08); } }
@media (prefers-reduced-motion: reduce) {
  .hero-art::before { animation: none; opacity: .3; }
  .hero-art::after { animation: none; }
}

/* ---------- Sticky glass header ---------- */
html { scroll-padding-top: 96px; }
.site-head {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  background: rgba(14, 23, 25, .22);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
          backdrop-filter: blur(16px) saturate(160%);
  border-bottom: 1px solid rgba(233, 230, 220, .08);
  transition: background .3s ease, box-shadow .3s ease;
}
.site-head.scrolled { background: rgba(14, 23, 25, .62); box-shadow: 0 10px 30px rgba(0, 0, 0, .18); }
.site-head .wrap { height: 76px; position: relative; }
.head-actions { display: none; align-items: center; gap: 2px; }
.search-btn { display: none; }

/* ---------- Search (phones and tablets) ---------- */
.search-panel {
  position: absolute; top: 100%; left: 0; right: 0; padding: 14px var(--gutter) 18px;
  background: rgba(14, 23, 25, .82);
  -webkit-backdrop-filter: blur(18px) saturate(160%); backdrop-filter: blur(18px) saturate(160%);
  border-top: 1px solid var(--line-dark); box-shadow: 0 24px 40px rgba(0, 0, 0, .35);
}
.search-panel[hidden] { display: none; }
.search-panel input {
  width: 100%; font: 500 1.05rem/1.3 var(--sans); color: var(--on-dark);
  background: rgba(255, 255, 255, .06); border: 1px solid rgba(233, 230, 220, .25); border-radius: 0; padding: 13px 14px;
}
.search-panel input::placeholder { color: var(--on-dark-muted); }
.search-panel input:focus { outline: 2px solid var(--accent-bright); outline-offset: 0; }
.search-results { list-style: none; margin: 8px 0 0; padding: 0; max-height: 60vh; overflow-y: auto; }
.search-results a { display: block; padding: 12px 2px; border-bottom: 1px solid var(--line-dark); text-decoration: none; color: var(--on-dark); }
.search-results a:hover, .search-results a:focus-visible { color: var(--sand); }
.search-results small { display: block; margin-top: 2px; font-size: 0.82rem; color: var(--on-dark-muted); }
.search-results .empty, .search-results .hint { padding: 12px 2px; font-size: 0.9rem; color: var(--on-dark-muted); }

@media (max-width: 960px) {
  .head-actions { display: flex; }
  .search-btn { display: inline-grid; place-items: center; width: 44px; height: 44px; padding: 0; background: transparent; border: 0; color: var(--on-dark); cursor: pointer; }
  .nav { top: 100%; background: rgba(14, 23, 25, .9); -webkit-backdrop-filter: blur(18px) saturate(160%); backdrop-filter: blur(18px) saturate(160%); }
}

/* ---------- Shorter heroes on phones ---------- */
@media (max-width: 640px) {
  .hero-home { min-height: min(600px, 76svh); }
  .page-hero { min-height: min(460px, 58svh); }
  .hero .wrap { padding-top: 104px; padding-bottom: 32px; }
  .site-head .wrap { height: 64px; }
  html { scroll-padding-top: 80px; }
}

/* Headings: no italic phrases */
h1 em, h2 em, h3 em { font-style: normal; font-weight: inherit; }

/* Header: no dividing line; fully transparent over the hero, glass only once scrolled */
.site-head { border-bottom: 0; background: transparent; -webkit-backdrop-filter: none; backdrop-filter: none; box-shadow: none; }
.site-head.scrolled {
  background: rgba(14, 23, 25, .62);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
          backdrop-filter: blur(16px) saturate(160%);
  box-shadow: 0 10px 30px rgba(0, 0, 0, .18);
}
.search-panel, .nav { border-top: 0; }

/* Minimal slider controls: short dashes, the current one slightly longer */
.hero-min .hero-controls { margin-top: 22px; }
.hero-min .hero-bars { max-width: none; gap: 6px; }
.hero-bars button { flex: 0 0 14px; height: 14px; transition: flex-basis .3s ease; }
.hero-bars button::before, .hero-bars button span { top: 6px; height: 1.5px; }
.hero-bars button[aria-current="true"] { flex-basis: 26px; }

/* Minimal buttons: smaller and lighter */
.btn { padding: 9px 15px; font-size: 0.84rem; font-weight: 500; letter-spacing: 0.01em; gap: 6px; }
.nav .btn { padding: 8px 14px; font-size: 0.82rem; }
.hero-min .btn { margin-top: 2px; }
@media (max-width: 960px) { .nav .btn { padding: 11px 16px; font-size: 0.9rem; } }
@media (prefers-reduced-motion: reduce) { .hero-bars button { transition: none; } }

/* Track record: rough, grainy gradient */
.impact {
  background:
    radial-gradient(60% 90% at 88% 10%, rgba(47, 91, 216, .55), transparent 65%),
    radial-gradient(45% 70% at 8% 100%, rgba(217, 192, 138, .28), transparent 70%),
    radial-gradient(40% 60% at 55% 55%, rgba(31, 181, 165, .14), transparent 70%),
    linear-gradient(125deg, #0B1416 0%, #0F2033 45%, #16244F 78%, #22203A 100%);
}
.impact::before {
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1.1 -.42'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E"),
    repeating-linear-gradient(-58deg, rgba(255, 255, 255, .045) 0 1px, transparent 1px 7px);
  opacity: .55; mix-blend-mode: soft-light; pointer-events: none;
}
.impact::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='1.1' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1.2 -.55'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23g)'/%3E%3C/svg%3E");
  opacity: .5;
}
.impact .wrap { position: relative; z-index: 1; }

/* Contact band ("Tell us about your programme" and the contact page map band): same rough gradient */
.cta {
  background:
    radial-gradient(55% 90% at 12% 0%, rgba(47, 91, 216, .5), transparent 65%),
    radial-gradient(50% 80% at 92% 100%, rgba(217, 192, 138, .3), transparent 70%),
    radial-gradient(40% 60% at 50% 50%, rgba(31, 181, 165, .12), transparent 70%),
    linear-gradient(235deg, #0B1416 0%, #0F2033 45%, #16244F 78%, #22203A 100%);
}
.cta::before {
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1.1 -.42'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E"),
    repeating-linear-gradient(58deg, rgba(255, 255, 255, .045) 0 1px, transparent 1px 7px);
  opacity: .55; mix-blend-mode: soft-light; pointer-events: none;
}
.cta::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='1.1' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1.2 -.55'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23g)'/%3E%3C/svg%3E");
  opacity: .5;
}
.cta .wrap { position: relative; z-index: 1; }

/* Track record figures: compact, side by side */
.stats { gap: 0; }
.stats dt { max-width: none; }
@media (max-width: 960px) {
  .stats { grid-template-columns: repeat(2, minmax(0, 1fr)); column-gap: 20px; row-gap: 28px; }
  .stats > div, .stats > div:first-child, .stats > div:nth-child(3) { padding: 16px 0 0; border-left: 0; border-top: 1px solid rgba(233, 230, 220, .18); }
  .stats dd { font-size: clamp(2.2rem, 9vw, 2.8rem); margin-bottom: 8px; }
  .stats dt { font-size: 0.86rem; }
}

/* Inner page heroes: blue rough gradient laid over the photo */
.page-hero .hero-slide { filter: grayscale(.4) saturate(.85) contrast(1.05); }
.page-hero .hero-overlay {
  background:
    linear-gradient(to top, rgba(11, 20, 22, .92) 0%, rgba(11, 20, 22, .45) 42%, rgba(11, 20, 22, .05) 78%),
    radial-gradient(60% 90% at 88% 8%, rgba(47, 91, 216, .6), transparent 65%),
    radial-gradient(45% 70% at 6% 100%, rgba(217, 192, 138, .22), transparent 70%),
    linear-gradient(125deg, rgba(11, 20, 22, .72) 0%, rgba(15, 32, 51, .55) 45%, rgba(22, 36, 79, .6) 78%, rgba(34, 32, 58, .62) 100%);
}
.page-hero::after {
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1.1 -.42'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E"),
    repeating-linear-gradient(-58deg, rgba(255, 255, 255, .05) 0 1px, transparent 1px 7px);
  opacity: .6; mix-blend-mode: soft-light;
}

/* ---------- Inner heroes: stronger blue ---------- */
.page-hero .hero-slide { filter: grayscale(.65) saturate(.7) contrast(1.08); }
.page-hero .hero-overlay {
  background:
    linear-gradient(to top, rgba(8, 16, 34, .94) 0%, rgba(8, 16, 34, .5) 42%, rgba(8, 16, 34, .1) 80%),
    radial-gradient(65% 95% at 88% 5%, rgba(47, 91, 216, .85), transparent 65%),
    radial-gradient(45% 70% at 6% 100%, rgba(217, 192, 138, .2), transparent 70%),
    linear-gradient(125deg, rgba(10, 24, 58, .82) 0%, rgba(18, 44, 110, .7) 45%, rgba(28, 54, 140, .68) 78%, rgba(30, 30, 80, .75) 100%);
}

/* ---------- Hero decoration: acacia horizon + fading woven pattern ---------- */
.hero-deco { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.hero-deco::before {
  content: ""; position: absolute; top: 0; right: 0; width: 55%; height: 70%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='56' height='28'%3E%3Cg fill='none' stroke='%23E9EEFF' stroke-linejoin='round'%3E%3Cpath d='M0 20 14 6l14 14L42 6l14 14' stroke-width='1.2'/%3E%3Cpath d='M0 27 14 13l14 14 14-14 14 14' stroke-width='.6' stroke-opacity='.6'/%3E%3C/g%3E%3Ccircle cx='28' cy='3' r='1.2' fill='%23E9EEFF'/%3E%3C/svg%3E");
  background-size: 56px 28px; opacity: .22;
  -webkit-mask-image: radial-gradient(ellipse 70% 80% at 85% 20%, #000 0%, rgba(0,0,0,.4) 45%, transparent 75%);
          mask-image: radial-gradient(ellipse 70% 80% at 85% 20%, #000 0%, rgba(0,0,0,.4) 45%, transparent 75%);
}
.hero-deco::after {
  content: ""; position: absolute; right: 3%; bottom: 0; width: min(46vw, 640px); aspect-ratio: 640 / 190;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 640 190'%3E%3Cg fill='%23D9C08A'%3E%3Cellipse cx='150' cy='74' rx='92' ry='13'/%3E%3Cellipse cx='112' cy='66' rx='46' ry='9'/%3E%3Cellipse cx='192' cy='67' rx='42' ry='8'/%3E%3Cellipse cx='150' cy='60' rx='30' ry='6'/%3E%3Cellipse cx='430' cy='104' rx='60' ry='9'/%3E%3Cellipse cx='404' cy='98' rx='30' ry='6'/%3E%3Cellipse cx='458' cy='99' rx='27' ry='5.5'/%3E%3Cellipse cx='565' cy='128' rx='34' ry='6'/%3E%3Cellipse cx='552' cy='124' rx='17' ry='4'/%3E%3C/g%3E%3Cg fill='none' stroke='%23D9C08A' stroke-linecap='round'%3E%3Cpath d='M150 170 147 122 128 84M147 124 170 82M148 138 158 108M149 150 136 118' stroke-width='5'/%3E%3Cpath d='M430 170 428 136 414 110M428 138 446 108M429 150 437 128' stroke-width='3.6'/%3E%3Cpath d='M565 170 564 150 556 133M564 152 574 132' stroke-width='2.6'/%3E%3Cpath d='M0 170H640' stroke-width='1.2'/%3E%3Cpath d='M40 170l3-7 3 7M250 170l2-5 3 5M330 170l3-7 3 7M500 170l2-5 3 5M610 170l3-6 3 6' stroke-width='1.2'/%3E%3C/g%3E%3C/svg%3E") no-repeat center bottom / contain;
  opacity: .32;
}
@media (max-width: 760px) { .hero-deco::after { display: none; } .hero-deco::before { width: 80%; height: 55%; } }

/* ---------- Heroes less tall on desktop ---------- */
@media (min-width: 961px) {
  .hero-home { min-height: max(560px, 80vh); }
  .page-hero { min-height: max(440px, 58vh); }
  .hero .wrap { padding-top: 120px; }
}

/* ---------- World map: country boxes with leader lines ---------- */
.map-canvas { position: relative; }
.map-canvas img { display: block; width: 100%; height: auto; }
.map-leaders { position: absolute; inset: 0; width: 100%; height: 100%; overflow: visible; }
.map-leaders .leaders line { stroke-width: 1; vector-effect: non-scaling-stroke; }
.map-chips { position: absolute; inset: 0; }
.chip { position: absolute; display: flex; flex-direction: column; gap: 1px; padding: 5px 9px 6px; white-space: nowrap; line-height: 1.15; }
.chip-left { transform: translate(-100%, -50%); text-align: right; }
.chip-right { transform: translate(0, -50%); }
.chip b { font-size: 0.8rem; font-weight: 600; }
.chip small { font-size: 0.68rem; }
/* light (homepage) */
.world-map--light .leaders line { stroke: #9A8A66; }
.world-map--light .m-office { fill: var(--accent); stroke: var(--cream); stroke-width: 2; }
.world-map--light .m-country { fill: #B8893A; stroke: var(--cream); stroke-width: 2; }
.world-map--light .chip { background: #FBFAF6; border: 1px solid #C9B98F; color: var(--ink); }
.world-map--light .chip small { color: var(--muted); }
/* dark (contact page band) */
.world-map--dark .leaders line { stroke: rgba(217, 192, 138, .55); }
.world-map--dark .m-office { fill: var(--accent-bright); stroke: #0E1719; stroke-width: 2; }
.world-map--dark .m-country { fill: var(--sand); stroke: #0E1719; stroke-width: 2; }
.world-map--dark .chip { background: rgba(14, 23, 25, .88); border: 1px solid rgba(217, 192, 138, .45); color: var(--on-dark); text-align: left; }
.world-map--dark .chip-left { text-align: right; }
.world-map--dark .chip small { color: var(--on-dark-muted); }
.world-map--dark .map-legend { justify-content: center; }
@media (max-width: 640px) {
  .chip { padding: 2px 5px 3px; }
  .chip b { font-size: 0.62rem; }
  .chip small { display: none; }
}

/* ---------- "Where we work": blue rough gradient + regional map ---------- */
.rough-blue {
  position: relative; overflow: hidden; color: var(--on-dark);
  background:
    radial-gradient(60% 90% at 88% 10%, rgba(47, 91, 216, .6), transparent 65%),
    radial-gradient(45% 70% at 8% 100%, rgba(217, 192, 138, .24), transparent 70%),
    radial-gradient(40% 60% at 55% 55%, rgba(31, 181, 165, .12), transparent 70%),
    linear-gradient(125deg, #0A1428 0%, #10254A 45%, #183070 78%, #22203A 100%);
}
.rough-blue::before, .rough-blue::after { content: ""; position: absolute; inset: 0; pointer-events: none; }
.rough-blue::before {
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1.1 -.42'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E"),
    repeating-linear-gradient(-58deg, rgba(255, 255, 255, .045) 0 1px, transparent 1px 7px);
  opacity: .55; mix-blend-mode: soft-light;
}
.rough-blue::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='1.1' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1.2 -.55'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23g)'/%3E%3C/svg%3E");
  opacity: .5;
}
.rough-blue .wrap { position: relative; z-index: 1; }
.where-band { padding: clamp(72px, 9vw, 120px) 0; }
.where-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(36px, 6vw, 96px); align-items: center; }
.where-intro { color: #C3CCD9; max-width: 30em; margin: 16px 0 28px; }
.where-band .partner-list { border-top-color: rgba(233, 230, 220, .18); }
.where-band .partner-list li { border-bottom-color: rgba(233, 230, 220, .18); grid-template-columns: 9rem minmax(0, 1fr); }
.where-band .partner-list b { color: var(--sand); }
.where-band .partner-list span { color: #C3CCD9; }
.region-map { margin: 0; max-width: 520px; justify-self: end; width: 100%; }
.region-map .map-legend { justify-content: flex-start; }
@media (max-width: 960px) {
  .where-grid { grid-template-columns: minmax(0, 1fr); }
  .region-map { justify-self: center; }
}

/* ---------- Interactive map: clickable countries and pop-up ---------- */
.map-shapes { position: absolute; inset: 0; width: 100%; height: 100%; }
.map-shape { fill: transparent; cursor: pointer; transition: fill .2s ease; }
.world-map--dark .map-shape:hover, .world-map--dark .map-shape.is-active { fill: rgba(255, 255, 255, .24); }
.world-map--light .map-shape:hover, .world-map--light .map-shape.is-active { fill: rgba(26, 36, 39, .16); }
.map-hot { position: absolute; z-index: 2; width: 34px; height: 34px; transform: translate(-50%, -50%); padding: 0; border: 0; background: transparent; cursor: pointer; display: grid; place-items: center; }
.map-hot span { position: relative; display: block; width: 12px; height: 12px; transition: transform .2s ease; }
.map-hot span::after { content: ""; position: absolute; inset: -5px; border: 1.5px solid currentColor; opacity: 0; animation: pin-pulse 2.8s ease-out infinite; }
.map-hot--office span { background: currentColor; }
.map-hot--country span, .map-hot--country span::after { border-radius: 50%; }
.map-hot--country span { background: currentColor; }
.world-map--dark .map-hot--office { color: var(--accent-bright); }
.world-map--dark .map-hot--country { color: #F3E3B8; }
.world-map--light .map-hot--office { color: var(--accent); }
.world-map--light .map-hot--country { color: #8A6420; }
.map-hot span { box-shadow: 0 0 0 2px rgba(10, 20, 40, .7); }
.world-map--light .map-hot span { box-shadow: 0 0 0 2px var(--cream); }
.map-hot:hover span, .map-hot[aria-expanded="true"] span { transform: scale(1.35); }
.map-hot:focus-visible { outline: 2px solid currentColor; outline-offset: 0; }

.map-pop {
  position: absolute; z-index: 5; width: min(290px, 88%); padding: 16px 18px 16px;
  background: rgba(10, 20, 44, .94); color: var(--on-dark);
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  border: 1px solid rgba(217, 192, 138, .4); box-shadow: 0 18px 40px rgba(0, 0, 0, .35);
  text-align: left; animation: pop-in .22s ease-out;
}
.map-pop[hidden] { display: none; }
.world-map--light .map-pop { background: #FBFAF6; color: var(--ink); border-color: #C9B98F; box-shadow: 0 18px 40px rgba(26, 36, 39, .18); }
.map-pop-kind { margin: 0 0 4px; font-size: 0.74rem; font-weight: 600; color: var(--sand); }
.world-map--light .map-pop-kind { color: #8A6420; }
.map-pop-title { margin: 0 0 8px; font-size: 1.3rem; font-weight: 600; letter-spacing: -0.01em; outline: none; }
.map-pop-text { margin: 0 0 12px; font-size: 0.88rem; line-height: 1.5; color: #C9D2E0; }
.world-map--light .map-pop-text { color: #34403F; }
.map-pop-link { font-size: 0.84rem; font-weight: 600; color: var(--accent-bright); text-underline-offset: 3px; }
.world-map--light .map-pop-link { color: var(--accent); }
.map-pop-close { position: absolute; top: 6px; right: 6px; width: 32px; height: 32px; border: 0; background: transparent; color: inherit; font-size: 1.3rem; line-height: 1; cursor: pointer; opacity: .7; }
.map-pop-close:hover { opacity: 1; }
.map-hint { margin: 8px 0 0; font-size: 0.8rem; color: var(--on-dark-muted); }
.world-map--light .map-hint { color: var(--muted); }
@keyframes pop-in { from { opacity: 0; transform: translateY(6px) scale(.97); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) {
  .map-pop { animation: none; }
  .map-hot span::after { animation: none; }
  .map-shape, .map-hot span { transition: none; }
}

/* Map pop-up: rough blue gradient card (both map variants), smaller on phones */
.map-pop, .world-map--light .map-pop {
  color: var(--on-dark); border: 1px solid rgba(124, 155, 242, .35); isolation: isolate; overflow: hidden;
  background:
    radial-gradient(90% 120% at 100% 0%, rgba(47, 91, 216, .75), transparent 60%),
    radial-gradient(70% 90% at 0% 100%, rgba(217, 192, 138, .22), transparent 70%),
    linear-gradient(135deg, #0B1733 0%, #13295C 55%, #1B2B63 100%);
  box-shadow: 0 16px 36px rgba(6, 12, 30, .45);
}
.map-pop::before {
  content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none; opacity: .55; mix-blend-mode: soft-light;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1.1 -.42'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E"),
    repeating-linear-gradient(-58deg, rgba(255, 255, 255, .05) 0 1px, transparent 1px 7px);
}
.world-map--light .map-pop-kind, .map-pop-kind { color: var(--sand); }
.world-map--light .map-pop-text, .map-pop-text { color: #CAD4E6; }
.world-map--light .map-pop-link, .map-pop-link { color: #A9BEFF; }
@media (max-width: 640px) {
  .map-pop { width: min(210px, 64%); padding: 10px 12px 11px; }
  .map-pop-kind { font-size: 0.64rem; margin-bottom: 2px; }
  .map-pop-title { font-size: 1rem; margin-bottom: 4px; }
  .map-pop-text { font-size: 0.74rem; line-height: 1.42; margin-bottom: 7px; }
  .map-pop-link { font-size: 0.72rem; }
  .map-pop-close { width: 26px; height: 26px; top: 3px; right: 3px; font-size: 1.05rem; }
}

/* ---------- Map box: the whole map sits in a rough blue gradient panel ---------- */
.region-map {
  position: relative; isolation: isolate; overflow: hidden;
  padding: clamp(14px, 2.4vw, 24px) clamp(14px, 2.4vw, 24px) clamp(16px, 2.4vw, 22px);
  border: 1px solid rgba(124, 155, 242, .28);
  background:
    radial-gradient(70% 55% at 90% 5%, rgba(47, 91, 216, .7), transparent 65%),
    radial-gradient(60% 45% at 5% 100%, rgba(217, 192, 138, .22), transparent 70%),
    radial-gradient(50% 40% at 50% 55%, rgba(31, 181, 165, .12), transparent 70%),
    linear-gradient(160deg, #0A1530 0%, #112A5C 50%, #182A62 80%, #1E1F45 100%);
  box-shadow: 0 24px 50px rgba(8, 16, 40, .28);
}
.region-map::before, .region-map::after { content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none; }
.region-map::before {
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1.1 -.42'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E"),
    repeating-linear-gradient(-58deg, rgba(255, 255, 255, .045) 0 1px, transparent 1px 7px);
  opacity: .55; mix-blend-mode: soft-light;
}
.region-map::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='1.1' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1.2 -.55'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23g)'/%3E%3C/svg%3E");
  opacity: .45;
}
.region-map .map-legend { color: #C3CCD9; margin-top: 14px; }
.region-map .map-hint { color: #9FB0CC; }
.about-map { max-width: 560px; }

/* ---------- Service cards: rough blue gradient ---------- */
.svc, .svc.lead {
  color: var(--on-dark);
  background:
    radial-gradient(80% 60% at 95% 0%, rgba(47, 91, 216, .6), transparent 65%),
    radial-gradient(70% 55% at 0% 100%, rgba(217, 192, 138, .18), transparent 70%),
    linear-gradient(155deg, #0B1733 0%, #112A5C 55%, #182A62 100%);
}
.svc.lead {
  background:
    radial-gradient(80% 60% at 95% 0%, rgba(124, 155, 242, .55), transparent 65%),
    radial-gradient(70% 55% at 0% 100%, rgba(217, 192, 138, .22), transparent 70%),
    linear-gradient(155deg, #1A3A9A 0%, #2448B5 55%, #1E3582 100%);
}
.svc::before { background: radial-gradient(90% 70% at 50% 0%, rgba(255, 255, 255, .06), transparent 70%); }
.svc::after {
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1.1 -.42'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E"),
    repeating-linear-gradient(-58deg, rgba(255, 255, 255, .05) 0 1px, transparent 1px 7px);
  -webkit-mask-image: none; mask-image: none;
  mix-blend-mode: soft-light; opacity: .6;
}
.svc h3 { color: var(--on-dark); }
.svc:not(.lead) p, .svc.lead p { color: #CAD4E6; }
.svc .card-link, .svc.lead .card-link { color: #A9BEFF; }
.svc .art svg { stroke: #E3E8F5; }
.svc .art svg [fill="#1A2427"] { fill: #E3E8F5; }
.svc .art svg [fill="#2F5BD8"] { fill: var(--sand); }

/* ---------- Homepage hero photos: crisp, with the rough blue texture ---------- */
.hero-home .hero-slide { filter: saturate(.9) contrast(1.06); }
.hero-home .hero-overlay {
  background:
    linear-gradient(to top, rgba(8, 16, 34, .9) 0%, rgba(8, 16, 34, .42) 42%, rgba(8, 16, 34, .08) 78%),
    linear-gradient(to right, rgba(8, 16, 34, .55), rgba(8, 16, 34, 0) 55%),
    radial-gradient(65% 95% at 88% 5%, rgba(47, 91, 216, .6), transparent 65%),
    linear-gradient(125deg, rgba(10, 24, 58, .5) 0%, rgba(18, 44, 110, .38) 50%, rgba(30, 30, 80, .45) 100%);
}
.hero-home::after {
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1.1 -.42'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E"),
    repeating-linear-gradient(-58deg, rgba(255, 255, 255, .05) 0 1px, transparent 1px 7px);
  opacity: .55; mix-blend-mode: soft-light;
}
.hero-home .hero-deco::after { display: none; }

/* "Who we are": words and map side by side */
.about-split { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(32px, 5vw, 80px); align-items: center; }
.about-words .about-copy p:last-child { margin-bottom: 0; }
.about-split .about-map { margin: 0; max-width: none; justify-self: stretch; }
.about .pillars { margin-top: clamp(40px, 5vw, 64px); }
@media (max-width: 960px) {
  .about-split { grid-template-columns: minmax(0, 1fr); }
  .about-split .about-map { max-width: 560px; }
}

/* Menu items: bold capitals */
.nav a:not(.btn) { font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; font-size: 0.76rem; }
@media (max-width: 960px) { .nav a:not(.btn) { font-size: 0.9rem; letter-spacing: 0.1em; } }

/* "Who we are": text column stretches to the map's height, points as compact rows */
.about-split { align-items: stretch; }
.about-words { display: flex; flex-direction: column; }
.about-words .pillars { margin-top: auto; padding-top: 28px; grid-template-columns: minmax(0, 1fr); gap: 10px; }
.about-words .pillar { display: grid; grid-template-columns: 40px minmax(0, 1fr); column-gap: 16px; align-items: center; padding: 14px 18px; }
.about-words .pillar .ico { grid-row: span 2; margin: 0; }
.about-words .pillar h3 { font-size: 1.05rem; margin: 0 0 2px; }
.about-words .pillar p { font-size: 0.86rem; margin: 0; }
.about-words .about-copy p { font-size: clamp(1.1rem, 1.5vw, 1.3rem); }
@media (max-width: 960px) { .about-words .pillars { margin-top: 0; } }

/* ---------- Phones: photo band on top, text below on the blue gradient (no heavy cropping) ---------- */
@media (max-width: 640px) {
  .hero, .hero-home, .page-hero {
    display: block; min-height: 0;
    background: linear-gradient(180deg, #0B1733 0%, #10254F 55%, #13295C 100%);
  }
  .hero .hero-slides { position: relative; inset: auto; height: 82vw; }
  .hero .hero-slide { transform: none; }
  .hero .hero-overlay, .hero-home .hero-overlay, .page-hero .hero-overlay {
    inset: 0 0 auto 0; height: 82vw;
    background:
      linear-gradient(to bottom, rgba(8, 16, 34, .5) 0%, rgba(8, 16, 34, .05) 28%, rgba(11, 23, 51, .12) 62%, #0B1733 100%),
      radial-gradient(70% 80% at 92% 0%, rgba(47, 91, 216, .45), transparent 65%);
  }
  .hero .wrap.hero-min { position: relative; z-index: 2; margin-top: -30px; padding-top: 0; padding-bottom: 40px; }
  .hero-home .hero-slide:nth-child(1) { background-position: 58% 55%; }
  .hero-home .hero-slide:nth-child(3) { background-position: 72% 30%; }
}
@media (max-width: 640px) {
  .hero, .hero-home, .page-hero { background: linear-gradient(180deg, #0B1733 0, #0B1733 82vw, #12285A 100%); }
  .hero .hero-overlay, .hero-home .hero-overlay, .page-hero .hero-overlay {
    background:
      linear-gradient(to bottom, rgba(11, 23, 51, .5) 0%, rgba(11, 23, 51, .05) 26%, rgba(11, 23, 51, .2) 58%, rgba(11, 23, 51, .85) 86%, #0B1733 100%),
      radial-gradient(70% 80% at 92% 0%, rgba(47, 91, 216, .45), transparent 65%);
  }
}

/* ---------- Tighter spacing throughout ---------- */
.about { padding: clamp(48px, 6vw, 80px) 0; }
.services { padding: clamp(40px, 5vw, 72px) 0 clamp(48px, 6vw, 80px); }
.impact { padding: clamp(48px, 6vw, 76px) 0; }
.impact-head { margin-bottom: clamp(28px, 4vw, 44px); }
.approach { padding: clamp(48px, 6vw, 80px) 0; }
.voices { padding: clamp(24px, 4vw, 44px) 0 clamp(56px, 7vw, 84px); }
.cta { padding: clamp(56px, 7vw, 92px) 0; }
.cta p:not(.label) { margin-bottom: 24px; }
.detail { padding: clamp(48px, 6vw, 80px) 0; }
.deliver { padding: clamp(48px, 6vw, 72px) 0; }
.deliver-head { margin-bottom: clamp(24px, 3vw, 36px); }
.more { padding: clamp(48px, 6vw, 80px) 0; }
.regions { padding-top: clamp(36px, 5vw, 60px); }
.where-band { padding: clamp(48px, 6vw, 80px) 0; }
.clients { padding: 32px 0 12px; }
.clients p { margin-bottom: 16px; }
.section-head { margin-bottom: clamp(28px, 4vw, 44px); }
.label { margin-bottom: 10px; }
.svc { min-height: 290px; padding: 24px 22px; }
.svc .art { padding: 4px 0 16px; }
.svc .art svg { width: 112px; height: 112px; }
.step summary { padding: 16px 0; }
.step .body { padding-bottom: 18px; }
.approach-intro .grow { min-height: 24px; }
.about .pillars, .pillars { margin-top: 28px; }
.foot-grid { padding: clamp(48px, 6vw, 72px) 0 clamp(40px, 5vw, 56px); gap: 32px 40px; }
.foot-col h2 { margin-bottom: 18px; }
.foot-col ul { gap: 12px; }
.contact-grid .intro { margin-bottom: 24px !important; }
@media (max-width: 640px) {
  .about, .services, .impact, .approach, .detail, .more, .where-band, .cta, .deliver { padding-top: 44px; padding-bottom: 44px; }
  .detail + .detail { padding-top: 0; }
  .voices { padding: 16px 0 72px; }
  .svc { min-height: 0; padding: 20px 18px; }
  .svc .art svg { width: 88px; height: 88px; }
  .hero .wrap.hero-min { padding-bottom: 32px; }
  .foot-grid { gap: 36px 20px; }
}

/* ---------- Case studies and reports library ---------- */
.library { padding: clamp(44px, 6vw, 76px) 0 clamp(56px, 7vw, 88px); }
.lib-head { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: end; gap: 12px 24px; margin-bottom: 18px; }
.lib-count { margin: 0; font-size: 0.88rem; color: var(--muted); font-weight: 500; }
.lib-filters {
  position: sticky; top: 84px; z-index: 10; display: flex; flex-wrap: wrap; align-items: center; gap: 10px;
  padding: 12px; background: rgba(251, 250, 246, .92); border: 1px solid #DCD6C8;
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px); box-shadow: 0 10px 24px rgba(26, 36, 39, .06);
}
.lib-search { position: relative; flex: 1 1 280px; }
.lib-search svg { position: absolute; left: 12px; top: 50%; transform: translateY(-50%); color: var(--muted); }
.lib-search input { width: 100%; font: 500 0.95rem/1.3 var(--sans); color: var(--ink); background: #fff; border: 1px solid #C9C3B3; border-radius: 0; padding: 10px 12px 10px 38px; }
.lib-search input:focus, .lib-selects select:focus { outline: 2px solid var(--accent); outline-offset: 0; border-color: var(--accent); }
.lib-segs { display: flex; border: 1px solid #C9C3B3; background: #fff; overflow-x: auto; }
.seg { flex: none; padding: 9px 13px; font: 600 0.8rem/1 var(--sans); color: var(--ink); background: transparent; border: 0; border-right: 1px solid #E2DDD0; cursor: pointer; white-space: nowrap; }
.seg:last-child { border-right: 0; }
.seg:hover { background: #F1EEE6; }
.seg[aria-pressed="true"] { background: var(--accent); color: #fff; }
.lib-selects { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; }
.lib-selects select {
  font: 500 0.84rem/1.2 var(--sans); color: var(--ink); background-color: #fff; border: 1px solid #C9C3B3; border-radius: 0;
  padding: 9px 32px 9px 11px; appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--ink) 50%), linear-gradient(135deg, var(--ink) 50%, transparent 50%);
  background-position: calc(100% - 16px) 52%, calc(100% - 11px) 52%; background-size: 5px 5px; background-repeat: no-repeat;
}
.lib-clear { border: 0; background: none; padding: 6px 4px; font: 600 0.82rem var(--sans); color: var(--accent); text-decoration: underline; text-underline-offset: 3px; cursor: pointer; }
.lib-clear[hidden] { display: none; }

.lib-grid { list-style: none; margin: 22px 0 0; padding: 0; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.ins-card[hidden] { display: none; }
.ins-card article { height: 100%; display: flex; flex-direction: column; background: #FBFAF6; border: 1px solid #DCD6C8; transition: transform .2s ease, box-shadow .2s ease; }
.ins-card article:hover { transform: translateY(-3px); box-shadow: 0 16px 34px rgba(26, 36, 39, .12); }
.ins-media { position: relative; aspect-ratio: 16 / 10; overflow: hidden; background: #0B1733; }
.ins-media img { display: block; width: 100%; height: 100%; object-fit: cover; filter: grayscale(.35) saturate(.85) contrast(1.05); transition: transform .5s ease; }
.ins-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(10, 24, 58, .5), rgba(47, 91, 216, .22) 60%, rgba(10, 24, 58, .35)); }
.ins-card article:hover .ins-media img { transform: scale(1.04); }
.ins-type, .ins-sample { position: absolute; z-index: 1; top: 12px; font: 700 0.68rem/1 var(--sans); letter-spacing: 0.08em; text-transform: uppercase; padding: 6px 9px; }
.ins-type { left: 12px; background: rgba(10, 20, 44, .88); color: var(--sand); }
.ins-card[data-type="report"] .ins-type { background: var(--accent); color: #fff; }
.ins-card[data-type="brief"] .ins-type { background: #1D7F77; color: #fff; }
.ins-sample { right: 12px; background: #F3E3B8; color: #5A4412; }
.ins-body { display: flex; flex-direction: column; flex: 1; padding: 16px 18px 18px; }
.ins-meta { margin: 0 0 6px; font-size: 0.78rem; font-weight: 600; color: var(--muted); }
.ins-body h3 { margin: 0 0 8px; font-size: 1.18rem; line-height: 1.25; font-weight: 600; }
.ins-summary { margin: 0 0 14px; font-size: 0.9rem; line-height: 1.55; color: #34403F; }
.ins-tag { margin: auto 0 10px; font-size: 0.76rem; font-weight: 700; color: var(--accent); }
.ins-link { align-self: flex-start; font-size: 0.86rem; font-weight: 600; color: var(--ink); text-underline-offset: 4px; }
.ins-link:hover { color: var(--accent); }
.lib-empty { margin-top: 22px; padding: 36px 20px; text-align: center; border: 1px dashed #C9C3B3; }
.lib-empty[hidden] { display: none; }
.lib-empty p { margin: 0 0 16px; color: var(--muted); }
.lib-empty b { color: var(--ink); }
@media (max-width: 960px) { .lib-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 640px) {
  .lib-filters { top: 72px; padding: 10px; gap: 8px; }
  .lib-search { flex-basis: 100%; }
  .lib-segs { width: 100%; }
  .seg { flex: 1 0 auto; }
  .lib-selects { width: 100%; }
  .lib-selects select { flex: 1 1 0; min-width: 0; }
  .lib-grid { grid-template-columns: minmax(0, 1fr); }
}
@media (prefers-reduced-motion: reduce) {
  .ins-card article, .ins-media img { transition: none; }
  .ins-card article:hover { transform: none; }
  .ins-card article:hover .ins-media img { transform: none; }
}

/* Wide service card (Tech for impact) */
.svc-wide { grid-column: 1 / -1; display: grid; grid-template-columns: 180px minmax(0, 1fr); column-gap: clamp(20px, 4vw, 48px); align-items: center; min-height: 0; }
.svc-wide .art { grid-row: 1 / span 3; padding: 0; }
.svc-wide h3, .svc-wide p, .svc-wide .card-link { grid-column: 2; }
.svc-wide p { max-width: 46em; }
@media (max-width: 960px) { .svc-wide { grid-template-columns: 120px minmax(0, 1fr); } .svc-wide .art svg { width: 96px; height: 96px; } }
@media (max-width: 640px) {
  .svc-wide { display: flex; flex-direction: column; align-items: stretch; }
  .svc-wide .art { padding: 4px 0 16px; }
}
.more-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
@media (max-width: 640px) { .more-grid { grid-template-columns: minmax(0, 1fr); } }

/* Less empty space at the bottom of every hero */
.hero .wrap, .hero .wrap.hero-min { padding-bottom: clamp(24px, 4.5vh, 44px); }
.hero-min .hero-controls { margin-top: 16px; }
@media (max-width: 640px) {
  .hero .wrap.hero-min { padding-bottom: 20px; }
  .hero-min .hero-controls { margin-top: 14px; }
}

/* ---------- "Start a conversation" band: minimal buttons + newsletter ---------- */
.cta { text-align: left; }
.cta-grid { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr); align-items: stretch; border-top: 1px solid rgba(233, 230, 220, .16); border-bottom: 1px solid rgba(233, 230, 220, .16); }
.cta-main { padding: clamp(28px, 4vw, 44px) clamp(24px, 4vw, 56px) clamp(28px, 4vw, 44px) 0; }
.cta .cta-main p:not(.label) { margin: 0 0 22px; max-width: 30em; }
.cta h2 { margin-bottom: 12px; }
.cta-actions { display: flex; flex-wrap: nowrap; gap: 8px; }
.cta-actions .btn { padding: 8px 14px; font-size: 0.82rem; }
.newsletter { padding: clamp(28px, 4vw, 44px) 0 clamp(28px, 4vw, 44px) clamp(24px, 4vw, 56px); border-left: 1px solid rgba(233, 230, 220, .16); }
.newsletter h3 { margin: 0 0 8px; font-size: clamp(1.25rem, 2vw, 1.55rem); font-weight: 500; color: var(--on-dark); }
.nl-text { margin: 0 0 20px; font-size: 0.9rem; color: #B9C4D6; max-width: 32em; }
.nl-row { display: flex; align-items: stretch; border-bottom: 1px solid rgba(233, 230, 220, .45); }
.nl-row:focus-within { border-bottom-color: var(--accent-bright); }
.nl-row input {
  flex: 1; min-width: 0; padding: 10px 0; font: 500 0.95rem/1.3 var(--sans); color: var(--on-dark);
  background: transparent; border: 0; border-radius: 0;
}
.nl-row input::placeholder { color: #8FA0BC; }
.nl-row input:focus { outline: none; }
.nl-row .btn { align-self: center; margin-left: 12px; padding: 7px 13px; font-size: 0.8rem; }
.nl-status { min-height: 1.2em; margin: 10px 0 0; font-size: 0.82rem; color: #B9C4D6; }
.nl-status.is-error { color: #FFB4A8; }
@media (max-width: 760px) {
  .cta-grid { grid-template-columns: minmax(0, 1fr); }
  .cta-main { padding: 28px 0; }
  .newsletter { padding: 28px 0; border-left: 0; border-top: 1px solid rgba(233, 230, 220, .16); }
}

/* ---------- Careers ---------- */
.ways { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); border-top: 1px solid #D5D0C2; }
.ways li { display: flex; flex-direction: column; padding: 22px 22px 24px 0; }
.ways li + li { padding-left: 22px; border-left: 1px solid #D5D0C2; }
.ways h3 { margin: 0 0 8px; font-size: 1.15rem; font-weight: 600; }
.ways p { margin: 0 0 16px; font-size: 0.9rem; color: #34403F; }
.ways a { margin-top: auto; font-size: 0.86rem; font-weight: 600; color: var(--accent); text-underline-offset: 4px; }
.roles-panel { display: grid; grid-template-columns: minmax(0, 1.4fr) auto; gap: 24px 40px; align-items: end; padding: clamp(28px, 4vw, 48px); }
.roles-panel > div { position: relative; z-index: 1; }
.roles-panel h2 { color: var(--on-dark); margin-bottom: 10px; }
.roles-panel p:not(.label) { margin: 0; color: #CAD4E6; max-width: 34em; }
.roles-panel .label { color: var(--accent-bright); }
.roles-actions { display: flex; flex-wrap: wrap; gap: 8px; }
.roles-actions .btn { padding: 8px 14px; font-size: 0.82rem; }
@media (max-width: 960px) {
  .ways { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .ways li:nth-child(3) { padding-left: 0; border-left: 0; }
  .ways li:nth-child(n+3) { border-top: 1px solid #D5D0C2; }
  .roles-panel { grid-template-columns: minmax(0, 1fr); }
}
@media (max-width: 560px) {
  .ways { grid-template-columns: minmax(0, 1fr); }
  .ways li, .ways li + li { padding: 18px 0; border-left: 0; }
  .ways li + li { border-top: 1px solid #D5D0C2; }
}

/* ---------- Footer: rough texture ---------- */
.site-foot {
  position: relative; isolation: isolate; overflow: hidden;
  background:
    radial-gradient(55% 80% at 95% 0%, rgba(47, 91, 216, .28), transparent 65%),
    radial-gradient(45% 70% at 0% 100%, rgba(217, 192, 138, .12), transparent 70%),
    linear-gradient(160deg, #0A1220 0%, #0C1830 55%, #0E1A36 100%);
}
.site-foot::before, .site-foot::after { content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none; }
.site-foot::before {
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1.1 -.42'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E"),
    repeating-linear-gradient(-58deg, rgba(255, 255, 255, .04) 0 1px, transparent 1px 7px);
  opacity: .5; mix-blend-mode: soft-light;
}
.site-foot::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='1.1' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1.2 -.55'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23g)'/%3E%3C/svg%3E");
  opacity: .45;
}
/* Footer: black base, same rough texture */
.site-foot { background: linear-gradient(160deg, #050505 0%, #0A0A0A 60%, #0D0D0D 100%); }
.site-foot::before { opacity: .45; }
.foot-base { border-top-color: rgba(255, 255, 255, .1); }

/* Service pages: "Where we deliver this work" with the dotted world map */
.regions-split { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.5fr); gap: clamp(24px, 4vw, 56px); align-items: center; }
.regions-split .region-row { grid-template-columns: minmax(0, 1fr); gap: 8px; margin-top: 16px; }
.regions-split .region-row li { padding: 14px 18px; }
.regions-map { margin: 0; }
.regions-map .map-legend { justify-content: flex-start; margin-top: 14px; }
@media (max-width: 960px) {
  .regions-split { grid-template-columns: minmax(0, 1fr); }
  .regions-split .region-row { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 640px) { .hero-home .hero-slide:nth-child(1) { background-position: 50% 30%; } }
