/* =====================================================
   TATISO — Execor design system port
   Tokens lifted from elementor-kit-5 (post-5.css)
   ===================================================== */

:root {
  /* Brand */
  --accent-1: #0F3D3A;          /* deep teal */
  --accent-1-soft: #0F3D3A66;
  --accent-1-sticky: rgba(15,61,58,.8);
  --accent-2: #C8F8A9;          /* lime CTA */
  --accent-2-hover: #b9ef93;
  --accent-3: #F2F5F1;          /* paper */
  --accent-4: #F8F7F3;          /* cream */
  --accent-5: #FFFFFF;
  --accent-6: #000000;          /* ink */
  --accent-7: rgba(0,0,0,.1);   /* line */
  --accent-8: rgba(0,0,0,.6);   /* muted */
  --mid-teal: #1F6E69;
  --body-ink: rgba(0,0,0,.75);
  --white-soft: rgba(255,255,255,.5);
  --transition-bg: #FFBC7D;

  /* Geometry */
  --container: 1280px;
  --radius-btn: 6px;
  --radius-img: 8px;
  --radius-input: 4px;
  --ease: cubic-bezier(.22,.7,.2,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; overflow-x: clip; }
body {
  font-family: 'DM Sans', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.5em;
  color: var(--body-ink);
  background: var(--accent-5);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { max-width: 100%; display: block; }
img { border-radius: var(--radius-img); }
a { color: var(--accent-1); text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 30px; }
@media (max-width: 1024px) { .container { padding: 0 20px; } }
@media (max-width: 767px) { .container { padding: 0 15px; } }

/* ==== TYPOGRAPHY ==== */
h1, .font-h1 { color: var(--accent-6); font-family: 'DM Sans', sans-serif; font-size: 46px; font-weight: 400; line-height: 1.2em; margin: 0; letter-spacing: -.01em; }
h2, .font-h2 { color: var(--accent-6); font-family: 'DM Sans', sans-serif; font-size: 40px; font-weight: 300; line-height: 1.2em; margin: 0; letter-spacing: -.01em; }
h3, .font-h3 { color: var(--accent-6); font-family: 'DM Sans', sans-serif; font-size: 30px; font-weight: 400; line-height: 1.2em; margin: 0; letter-spacing: -.01em; }
h4, .font-h4 { color: var(--accent-6); font-family: 'DM Sans', sans-serif; font-size: 24px; font-weight: 300; line-height: 1.4em; margin: 0; }
h5, .font-h5 { color: var(--accent-6); font-family: 'DM Sans', sans-serif; font-size: 20px; font-weight: 400; line-height: 1.4em; margin: 0; }
h6, .font-h6 { color: var(--accent-6); font-family: 'DM Sans', sans-serif; font-size: 16px; font-weight: 400; line-height: 1.2em; margin: 0; }

.serif      { font-family: 'Forum', 'Cormorant Garamond', Georgia, serif; font-weight: 400; }
.serif-lg   { font-family: 'Forum', serif; font-size: 56px; line-height: 1em; font-weight: 400; }
.serif-md   { font-family: 'Forum', serif; font-size: 21px; line-height: 1.4em; font-weight: 400; }
.script     { font-family: 'DM Sans', sans-serif; font-size: 13px; font-weight: 500; line-height: 1.2em; letter-spacing: .14em; text-transform: uppercase; color: var(--mid-teal); }
.mono-cap   { font-family: 'DM Sans', sans-serif; font-size: 12px; font-weight: 500; line-height: 1em; letter-spacing: .05em; text-transform: uppercase; }
.label      { font-family: 'DM Sans', sans-serif; font-size: 14px; font-weight: 500; line-height: 1em; }

p { margin: 0; }
p + p { margin-top: 14px; }
em, i, address { font-style: normal; }
small { font-size: 12px; line-height: 1.4em; }

@media (max-width: 1024px) {
  h1,.font-h1 { font-size: 36px; line-height: 1em; }
  h2,.font-h2 { font-size: 32px; line-height: 1.1em; }
  h3,.font-h3 { font-size: 24px; line-height: 1.1em; }
  h4,.font-h4 { font-size: 20px; }
  h5,.font-h5 { font-size: 18px; }
  .serif-lg { font-size: 46px; }
}
@media (max-width: 767px) {
  body { font-size: 16px; }
  h1,.font-h1 { font-size: 30px; line-height: 1em; }
  h2,.font-h2 { font-size: 28px; line-height: 1.3em; }
  h3,.font-h3 { font-size: 24px; line-height: 1.1em; }
  .serif-lg { font-size: 36px; line-height: 1.2em; }
}

/* ==== BUTTONS ==== */
.btn, button.btn, a.btn, input[type="submit"].btn, .elementor-button {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--accent-2); color: var(--accent-1);
  font-family: 'DM Sans', sans-serif; font-size: 14px; font-weight: 500; line-height: 1em;
  border: 0; border-radius: var(--radius-btn);
  padding: 16px 22px;
  transition: background .3s var(--ease), color .3s var(--ease), transform .25s var(--ease);
  cursor: pointer;
}
.btn:hover, button.btn:hover, .elementor-button:hover {
  background: var(--accent-1); color: var(--accent-3);
}
.btn .arrow { width: 16px; height: 16px; transition: transform .25s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }

.btn--outline { background: transparent; color: var(--accent-1); border: 1px solid var(--accent-1); padding: 15px 21px; }
.btn--outline:hover { background: var(--accent-1); color: var(--accent-3); }
.btn--ghost-light { background: transparent; color: var(--accent-5); border: 1px solid rgba(255,255,255,.3); }
.btn--ghost-light:hover { background: var(--accent-2); color: var(--accent-1); border-color: var(--accent-2); }
.btn--dark { background: var(--accent-1); color: var(--accent-3); }
.btn--dark:hover { background: var(--accent-2); color: var(--accent-1); }

/* Round arrow button (page hero, cards) */
.round-arrow {
  width: 56px; height: 56px;
  border: 1px solid var(--accent-7);
  border-radius: 50%;
  display: inline-grid; place-items: center;
  color: var(--accent-1);
  transition: background .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease), transform .35s var(--ease);
  flex: 0 0 auto;
}
.round-arrow svg { width: 18px; height: 18px; transition: transform .3s var(--ease); }
.round-arrow:hover { background: var(--accent-2); border-color: var(--accent-2); }
.round-arrow:hover svg { transform: rotate(-45deg); }

/* Tiny pill chip */
.chip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 12px;
  background: var(--accent-3);
  color: var(--accent-1);
  border-radius: 999px;
  font-size: 12px; font-weight: 500; letter-spacing: .03em;
}
.chip-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent-1); }

/* ==== HEADER / NAV ==== */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 60;
  padding: 18px 0;
  background: rgba(255,255,255,.85);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: background .3s var(--ease), padding .3s var(--ease), border-color .3s var(--ease);
}
.site-header.is-scrolled {
  background: var(--accent-1-sticky);
  border-bottom-color: rgba(255,255,255,.05);
  padding: 12px 0;
}
.site-header.is-scrolled .nav__menu a,
.site-header.is-scrolled .brand__text { color: var(--accent-3); }
.site-header.is-scrolled .brand__a { color: var(--accent-2); }
.site-header.is-scrolled .nav__burger span { background: var(--accent-3); }
.site-header.is-scrolled .nav__cta { background: var(--accent-2); color: var(--accent-1); }

.nav-inner {
  max-width: var(--container); margin: 0 auto; padding: 0 30px;
  display: flex; align-items: center; justify-content: space-between; gap: 30px;
}
@media (max-width: 1024px) { .nav-inner { padding: 0 20px; } }

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

/* Logo PNG — drop your file at assets/logo.png */
.brand__img {
  height: 40px;
  width: auto;
  max-height: 40px;
  max-width: 220px;
  display: block;
  border-radius: 0;          /* override global img radius */
  object-fit: contain;
  transition: filter .3s var(--ease);
}
.site-footer .brand__img,
.footer .brand__img { height: 48px; max-height: 48px; max-width: 260px; }
/* Dark-context flip: inverts lightness while preserving green/brand hue.
   `invert(1)` flips RGB (dark grey → light grey, green → magenta);
   `hue-rotate(180deg)` rotates colour wheel 180° (magenta → green again).
   Net effect: dark wordmark turns light, green triangle stays green. */
.site-header.is-scrolled .brand__img,
.site-footer .brand__img,
.contact-block .brand__img {
  filter: invert(1) hue-rotate(180deg);
}

/* Fallback (SVG mark + wordmark) — used only if assets/logo.png is missing */
.brand__fallback { display: none; align-items: center; gap: 14px; }
.brand__mark { width: 38px; height: 38px; color: var(--accent-1); transition: color .3s var(--ease); }
.site-header.is-scrolled .brand__mark { color: var(--accent-2); }
.brand__text {
  display: inline-flex; flex-direction: column; gap: 4px;
  font-weight: 700; font-size: 17px; letter-spacing: .14em; color: var(--accent-6);
  font-family: 'DM Sans', sans-serif; line-height: 1;
}
.brand__text em {
  font-style: normal; font-weight: 400; font-size: 9.5px; letter-spacing: .3em; opacity: .65;
}
.brand__a { color: var(--mid-teal); display: inline-block; }

.nav__menu { display: flex; align-items: center; gap: 28px; list-style: none; margin: 0; padding: 0; }
.nav__menu > li > a {
  font-family: 'DM Sans', sans-serif; font-size: 14px; font-weight: 500;
  color: var(--accent-6); padding: 8px 0;
  transition: color .2s var(--ease);
  position: relative;
}
.nav__menu > li > a:hover, .nav__menu > li > a.is-active { color: var(--mid-teal); }
.nav__menu > li > a.is-active::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -4px;
  height: 2px; background: var(--accent-2);
}

.nav__cta {
  background: var(--accent-1); color: var(--accent-3);
  padding: 12px 22px; border-radius: var(--radius-btn);
  font-size: 14px; font-weight: 500;
  display: inline-flex; align-items: center; gap: 10px;
  transition: background .3s var(--ease), color .3s var(--ease);
}
.nav__cta:hover { background: var(--accent-2); color: var(--accent-1); }
.nav__cta .arrow { width: 14px; height: 14px; transition: transform .25s var(--ease); }
.nav__cta:hover .arrow { transform: translateX(3px); }

.nav__burger { display: none; padding: 8px; }
.nav__burger span { display: block; width: 22px; height: 1.5px; background: var(--accent-6); margin: 5px 0; transition: background .3s var(--ease); }

@media (max-width: 1024px) {
  .nav__menu { display: none; }
  .nav__burger { display: inline-flex; flex-direction: column; }
  .nav__menu.is-open {
    display: flex; flex-direction: column; align-items: stretch; gap: 4px;
    position: absolute; top: 100%; left: 16px; right: 16px;
    background: var(--accent-5); border: 1px solid var(--accent-7);
    border-radius: 8px; padding: 18px; box-shadow: 0 20px 50px -20px rgba(0,0,0,.18);
  }
  .nav__menu.is-open > li > a { padding: 12px 10px; color: var(--accent-6); }
  .site-header.is-scrolled .nav__menu.is-open > li > a { color: var(--accent-6); }
  .nav__menu.is-open > li > a:hover,
  .nav__menu.is-open > li > a.is-active,
  .site-header.is-scrolled .nav__menu.is-open > li > a:hover,
  .site-header.is-scrolled .nav__menu.is-open > li > a.is-active { color: var(--mid-teal); }
  .nav__menu.is-open > li > a { align-self: flex-start; }
  .nav__menu.is-open > li > a.is-active::after,
  .nav__menu.is-open > li > a:hover::after {
    content: ""; position: absolute; left: 10px; right: 10px; bottom: 6px;
    height: 2px; background: var(--accent-2);
  }
}

/* ==== HERO ==== */
.hero {
  position: relative;
  background: var(--accent-1);
  padding: 160px 0 80px;
  overflow: hidden;
  isolation: isolate;
  color: var(--accent-3);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url('assets/cover%20page.png');
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(15, 61, 58, 0.62);
  z-index: 0;
}
.hero__inner {
  position: relative; z-index: 1;
  max-width: var(--container); margin: 0 auto; padding: 0 30px;
  display: grid; grid-template-columns: 1.1fr .9fr; gap: 60px;
  align-items: end;
}
@media (max-width: 1024px) { .hero__inner { padding: 0 20px; grid-template-columns: 1fr; gap: 40px; } }

.hero__copy { padding-bottom: 30px; }
.hero__script { color: var(--accent-2); margin-bottom: 24px; display: inline-flex; align-items: center; gap: 14px; }
.hero__script::after { content: ""; width: 50px; height: 1px; background: var(--accent-2); }

.hero__title {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(40px, 5.8vw, 86px);
  font-weight: 300;
  line-height: 1.05em;
  letter-spacing: -.02em;
  color: var(--accent-3);
  margin: 0 0 28px;
}
.hero__title em {
  font-style: normal;
  font-family: 'Forum', 'Cormorant Garamond', serif;
  font-weight: 400;
  color: var(--accent-2);
}
.hero__lede { font-size: 17px; line-height: 1.5em; color: rgba(255,255,255,.78); max-width: 50ch; margin: 0 0 32px; }
.hero__ctas { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.hero__ctas .btn--outline { color: var(--accent-2); border-color: rgba(255,255,255,.7); }
.hero__ctas .btn--outline:hover { background: var(--accent-1); color: var(--accent-5); border-color: var(--accent-1); }

.hero__visual { position: relative; min-height: 540px; }
.hero__image {
  position: absolute; inset: 0; background-size: cover; background-position: center;
  border-radius: var(--radius-img);
  filter: saturate(.95);
}
.hero__badge {
  position: absolute; top: 28px; left: 28px;
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--accent-2); color: var(--accent-1);
  padding: 12px 18px; border-radius: 999px;
  font-size: 13px; font-weight: 500;
}
.hero__badge-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent-1); animation: pulse 2s ease-in-out infinite; }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: .4; } }
.hero__stat {
  position: absolute; left: 24px; bottom: 24px; right: 24px;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-img);
  padding: 22px 24px;
  display: grid; grid-template-columns: 1fr auto; gap: 16px; align-items: center;
}
.hero__stat__big { font-family: 'DM Sans', sans-serif; font-size: 56px; font-weight: 200; line-height: 1; color: var(--accent-1); letter-spacing: -.02em; }
.hero__stat__label { font-size: 12px; color: var(--accent-8); margin-top: 6px; max-width: 22ch; line-height: 1.4em; }

@media (max-width: 1024px) { .hero__visual { min-height: 420px; } .hero__stat__big { font-size: 44px; } }

/* ==== MARQUEE / LOGO STRIP ==== */
.logo-strip {
  background: var(--accent-3);
  padding: 0 0 60px;
}
.logo-strip__track {
  display: grid; grid-template-columns: repeat(6, 1fr);
  gap: 20px; align-items: center;
  padding-top: 30px;
  border-top: 1px solid var(--accent-7);
}
@media (max-width: 900px) { .logo-strip__track { grid-template-columns: repeat(3, 1fr); } }
.logo-strip__item {
  font-family: 'Forum', serif; font-size: 22px; color: var(--accent-1);
  text-align: center; padding: 10px;
  opacity: .65; transition: opacity .25s var(--ease);
}
.logo-strip__item:hover { opacity: 1; }

/* ==== SECTION DEFAULTS ==== */
.section { padding: clamp(80px, 9vw, 140px) 0; }
.section--cream { background: var(--accent-4); }
.section--paper { background: var(--accent-3); }
.section--dark  { background: var(--accent-1); color: var(--accent-3); }
.section--dark h1,.section--dark h2,.section--dark h3,.section--dark h4,.section--dark h5,.section--dark h6 { color: var(--accent-3); }
.section--dark a:not(.btn) { color: var(--accent-2); }

.section-head { max-width: 760px; margin: 0 0 60px; }
.section-head--center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head .script { display: block; margin-bottom: 16px; }
.section-head h2 { margin-bottom: 22px; }
.section-head h2 em { font-style: normal; font-family: 'Forum', serif; color: var(--accent-1); }
.section-head p { color: var(--accent-8); font-size: 17px; line-height: 1.55em; max-width: 60ch; }
.section-head--center p { margin-left: auto; margin-right: auto; }

/* ==== SERVICES GRID (4 cards w/ icon) ==== */
.services {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}
@media (max-width: 1024px) { .services { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .services { grid-template-columns: 1fr; } }
.service {
  background: var(--accent-5);
  border: 1px solid var(--accent-7);
  border-radius: var(--radius-img);
  padding: 36px 30px 32px;
  display: flex; flex-direction: column;
  transition: background .3s var(--ease), border-color .3s var(--ease), transform .35s var(--ease);
}
.service:hover { background: var(--accent-1); color: var(--accent-3); transform: translateY(-4px); border-color: var(--accent-1); }
.service:hover h3, .service:hover .service__icon { color: var(--accent-2); }
.service:hover p { color: rgba(255,255,255,.75); }
.service:hover .round-arrow { background: var(--accent-2); border-color: var(--accent-2); color: var(--accent-1); }

.service__icon {
  width: 56px; height: 56px; color: var(--accent-1);
  display: grid; place-items: center;
  background: var(--accent-3);
  border-radius: var(--radius-img);
  margin-bottom: 32px;
  transition: background .3s var(--ease), color .3s var(--ease);
}
.service:hover .service__icon { background: rgba(200,248,169,.18); color: var(--accent-2); }
.service__icon svg { width: 28px; height: 28px; }
.service h3 { font-size: 24px; font-weight: 400; line-height: 1.25em; margin: 0 0 12px; color: inherit; transition: color .3s var(--ease); }
.service p { font-size: 14.5px; color: var(--accent-8); margin: 0 0 24px; flex: 1; line-height: 1.55em; transition: color .3s var(--ease); }
.service__footer { display: flex; align-items: center; justify-content: space-between; margin-top: auto; padding-top: 18px; border-top: 1px solid var(--accent-7); transition: border-color .3s var(--ease); }
.service:hover .service__footer { border-color: rgba(255,255,255,.18); }
.service__tag { font-size: 12px; font-weight: 500; letter-spacing: .05em; color: inherit; opacity: .8; }

/* ==== EDITORIAL TWO-COL (large H2 + small label) ==== */
.editorial-2 { display: grid; grid-template-columns: 1.05fr .95fr; gap: 80px; align-items: end; }
@media (max-width: 1024px) { .editorial-2 { grid-template-columns: 1fr; gap: 40px; align-items: start; } }
.editorial-2__head h2 { font-size: clamp(34px, 4vw, 56px); font-weight: 300; line-height: 1.15em; margin: 0 0 28px; }
.editorial-2__head h2 em { font-style: normal; font-family: 'Forum', serif; font-weight: 400; }

/* ==== "DRIVING SUCCESS" — image + alternating text columns ==== */
.driving { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
@media (max-width: 1024px) { .driving { grid-template-columns: 1fr; gap: 30px; } }
.driving__visual { position: relative; }
.driving__visual img, .driving__visual .img {
  width: 100%; aspect-ratio: 4/5; object-fit: cover;
  background-size: cover; background-position: center;
  border-radius: var(--radius-img);
  display: block;
}
.driving__visual::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(200,248,169,.0), rgba(15,61,58,.18));
  border-radius: var(--radius-img); pointer-events: none;
}
.driving__lead h5 { font-size: 18px; margin-bottom: 14px; color: var(--mid-teal); font-weight: 500; }
.driving__lead p { font-size: 16px; line-height: 1.65em; color: var(--body-ink); margin: 0 0 18px; }

.driving__points {
  display: grid; grid-template-columns: 1fr 1fr; gap: 22px;
  margin-top: 36px; padding-top: 36px;
  border-top: 1px solid var(--accent-7);
}
@media (max-width: 600px) { .driving__points { grid-template-columns: 1fr; } }
.driving__point h6 { font-size: 16px; margin: 0 0 8px; color: var(--accent-6); }
.driving__point p { font-size: 14px; color: var(--accent-8); line-height: 1.55em; margin: 0; }

/* ==== "WE ADD VALUE" big quote + 3 col ==== */
.value-block { background: var(--accent-1); color: var(--accent-3); padding: clamp(80px, 9vw, 140px) 0; position: relative; overflow: hidden; }
.value-block__quote {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(28px, 3.4vw, 52px);
  font-weight: 300;
  line-height: 1.2em;
  letter-spacing: -.015em;
  color: var(--accent-3);
  max-width: 22ch;
  margin: 0 0 60px;
}
.value-block__quote em { font-style: normal; font-family: 'Forum', serif; color: var(--accent-2); font-weight: 400; }
.value-block__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; padding-top: 50px; border-top: 1px solid rgba(255,255,255,.15); }
@media (max-width: 900px) { .value-block__grid { grid-template-columns: 1fr; } }
.value-block__item h5 { color: var(--accent-2); font-size: 18px; margin: 0 0 14px; font-weight: 500; }
.value-block__item p { color: rgba(255,255,255,.8); font-size: 15px; line-height: 1.6em; margin: 0; }

/* ==== TABS — "Find the Right Solution" ==== */
.tabs { display: grid; grid-template-columns: .9fr 1.1fr; gap: 60px; }
@media (max-width: 1024px) { .tabs { grid-template-columns: 1fr; gap: 30px; } }

.tabs__buttons { display: flex; flex-direction: column; gap: 12px; }
.tabs__btn {
  text-align: left; cursor: pointer;
  background: var(--accent-5); color: var(--accent-6);
  border: 1px solid var(--accent-7);
  border-radius: var(--radius-img);
  padding: 22px 26px;
  font-family: 'DM Sans', sans-serif; font-size: 17px; font-weight: 500;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  transition: background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
}
.tabs__btn:hover { border-color: var(--accent-1); }
.tabs__btn.is-active { background: var(--accent-1); color: var(--accent-3); border-color: var(--accent-1); }
.tabs__btn .round-arrow { width: 36px; height: 36px; border-color: currentColor; opacity: .8; }
.tabs__btn .round-arrow svg { width: 14px; height: 14px; }
.tabs__btn.is-active .round-arrow { background: var(--accent-2); border-color: var(--accent-2); color: var(--accent-1); opacity: 1; }

.tabs__panel { display: none; background: var(--accent-5); border: 1px solid var(--accent-7); border-radius: var(--radius-img); padding: 40px; }
.tabs__panel.is-active { display: block; }
.tabs__panel > p { color: var(--accent-8); font-size: 15.5px; line-height: 1.65em; margin: 0 0 28px; }
.tabs__panel__list {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px;
  margin-top: 24px; padding-top: 24px;
  border-top: 1px solid var(--accent-7);
}
@media (max-width: 600px) { .tabs__panel__list { grid-template-columns: 1fr; } }
.tabs__sub { background: var(--accent-3); border-radius: var(--radius-img); padding: 22px 24px; }
.tabs__sub h5 { font-size: 17px; margin: 0 0 6px; }
.tabs__sub p { font-size: 13.5px; color: var(--accent-8); margin: 0; line-height: 1.5em; }

/* ==== STATS / "Trusted by Businesses" ==== */
.stats-band { background: var(--accent-4); padding: clamp(80px, 8vw, 120px) 0; }
body[data-page="home"] .stats-band { background: var(--accent-2); padding: clamp(56px, 5vw, 90px) 0; }
body[data-page="home"] .stats-band .stats-band__head { margin-bottom: 0; }
body[data-page="home"] .stats-band .stat-cell { border-right-color: rgba(15,61,58,.18); }
body[data-page="reach"] .stats-band { padding: clamp(56px, 5vw, 90px) 0; }
body[data-page="reach"] .stats-band .stats-band__head { margin-bottom: 0; }
.stats-band__head { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: end; margin-bottom: 60px; }
@media (max-width: 900px) { .stats-band__head { grid-template-columns: 1fr; gap: 24px; } }
.stats-band__head h2 { font-size: clamp(32px, 3.8vw, 56px); font-weight: 300; line-height: 1.15em; margin: 0; }
.stats-band__head h2 em { font-style: normal; font-family: 'Forum', serif; color: var(--accent-1); }
.stats-band__head p { color: var(--accent-8); font-size: 15.5px; line-height: 1.65em; margin: 0; }
.stats-band__grid {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 0;
  border-top: 1px solid var(--accent-7);
}
@media (max-width: 1024px) { .stats-band__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .stats-band__grid { grid-template-columns: 1fr; } }
.stat-cell {
  padding: 36px 24px;
  border-right: 1px solid var(--accent-7);
}
.stat-cell:last-child { border-right: 0; }
@media (max-width: 1024px) {
  .stat-cell:nth-child(2n) { border-right: 0; }
}
.stat-cell__num {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(48px, 5vw, 66px); font-weight: 200;
  line-height: 1em;
  color: var(--accent-1);
  letter-spacing: -.02em;
  margin-bottom: 12px;
}
.stat-cell__num em { font-family: 'Forum', serif; font-style: normal; font-weight: 400; }
.stat-cell h5 { font-size: 15px; font-weight: 500; color: var(--accent-6); }

/* ==== TESTIMONIALS ==== */
.testimonials { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: stretch; }
@media (max-width: 900px) { .testimonials { grid-template-columns: 1fr; gap: 30px; } }
.testimonial-card {
  background: var(--accent-5);
  border: 1px solid var(--accent-7);
  border-radius: var(--radius-img);
  padding: 36px 32px;
  display: flex; flex-direction: column;
  position: relative;
  transition: transform .35s var(--ease), border-color .3s var(--ease);
}
.testimonial-card:hover { transform: translateY(-4px); border-color: var(--accent-1); }
.testimonial-card__mark { font-family: 'Forum', serif; font-size: 56px; color: var(--accent-2); line-height: 1; margin-bottom: 4px; }
.testimonial-card p { font-size: 18px; line-height: 1.55em; color: var(--accent-6); margin: 0 0 30px; flex: 1; }
.testimonial-card__author { display: flex; align-items: center; gap: 14px; padding-top: 22px; border-top: 1px solid var(--accent-7); }
.testimonial-card__avatar { width: 48px; height: 48px; border-radius: 50%; background: var(--accent-3); background-size: cover; background-position: center; }
.testimonial-card__author h5 { font-size: 16px; margin: 0 0 2px; }
.testimonial-card__author small { color: var(--accent-8); font-size: 12.5px; }

/* ==== CONTACT BLOCK ==== */
.contact-block {
  background: var(--accent-1); color: var(--accent-3);
  padding: clamp(80px, 9vw, 130px) 0;
  position: relative;
  overflow: hidden;
}
.contact-block__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
@media (max-width: 1024px) { .contact-block__inner { grid-template-columns: 1fr; gap: 40px; } }
.contact-block h2 { color: var(--accent-3); font-size: clamp(34px, 4.4vw, 64px); font-weight: 300; line-height: 1.1em; margin: 0 0 24px; }
.contact-block h2 em { font-style: normal; font-family: 'Forum', serif; color: var(--accent-2); }
.contact-block .script { color: var(--accent-2); margin-bottom: 14px; }
.contact-block .lede { color: rgba(255,255,255,.75); font-size: 16px; line-height: 1.65em; max-width: 50ch; }
.contact-info { margin-top: 36px; display: grid; gap: 18px; }
.contact-info__row { display: grid; grid-template-columns: 24px 1fr; gap: 14px; align-items: start; color: rgba(255,255,255,.85); }
.contact-info__row svg { width: 20px; height: 20px; color: var(--accent-2); margin-top: 4px; }
.contact-info__row h5 { font-size: 14px; color: var(--accent-3); margin: 0 0 2px; font-weight: 500; }
.contact-info__row p { font-size: 14.5px; margin: 0; color: rgba(255,255,255,.7); }

.contact-form {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-img);
  padding: 36px;
  display: grid; gap: 16px;
}
.contact-form label {
  display: flex; flex-direction: column; gap: 8px;
  font-size: 13px; color: rgba(255,255,255,.7);
}
.contact-form input, .contact-form textarea {
  font: inherit; font-size: 15px;
  background: rgba(255,255,255,.05); color: var(--accent-3);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-input);
  padding: 12px 14px;
  outline: none; transition: border-color .2s var(--ease);
}
.contact-form input::placeholder, .contact-form textarea::placeholder { color: rgba(255,255,255,.35); }
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--accent-2); }
.contact-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 600px) { .contact-form__row { grid-template-columns: 1fr; } }
.contact-form button { justify-self: start; margin-top: 10px; }
.contact-form small { color: rgba(255,255,255,.45); font-size: 12px; line-height: 1.5em; }

/* ==== NEWSLETTER ==== */
.newsletter { background: var(--accent-2); padding: clamp(60px, 7vw, 100px) 0; }
.newsletter__inner {
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 60px; align-items: center;
}
@media (max-width: 900px) { .newsletter__inner { grid-template-columns: 1fr; gap: 30px; } }
.newsletter h3 { color: var(--accent-1); font-size: clamp(28px, 3vw, 42px); font-weight: 400; line-height: 1.1em; margin: 0 0 14px; }
.newsletter h3 em { font-style: normal; font-family: 'Forum', serif; }
.newsletter p { color: var(--accent-1); opacity: .75; font-size: 14px; line-height: 1.5em; margin: 14px 0 0; max-width: 50ch; }
.newsletter__form { display: flex; gap: 12px; flex-wrap: wrap; }
.newsletter__form input {
  flex: 1; min-width: 240px;
  background: var(--accent-5); color: var(--accent-6);
  border: 1px solid var(--accent-1);
  border-radius: var(--radius-input);
  padding: 14px 16px;
  font: inherit; font-size: 15px;
  outline: none;
}
.newsletter__form button { background: var(--accent-1); color: var(--accent-3); border: 0; padding: 14px 22px; border-radius: var(--radius-btn); font-weight: 500; font-size: 14px; cursor: pointer; transition: background .25s var(--ease); }
.newsletter__form button:hover { background: var(--accent-6); }

/* ==== FOOTER ==== */
.site-footer {
  background: var(--accent-1);
  color: var(--accent-3);
  padding: 80px 0 32px;
}
.site-footer .container > .footer__top {
  display: grid; grid-template-columns: 1.4fr 1.6fr; gap: 60px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
@media (max-width: 900px) { .site-footer .container > .footer__top { grid-template-columns: 1fr; } }
.site-footer h3 { color: var(--accent-3); font-size: clamp(28px, 3vw, 42px); font-weight: 400; line-height: 1.1em; margin: 28px 0 16px; }
.site-footer h3 em { font-style: normal; font-family: 'Forum', serif; color: var(--accent-2); }
.site-footer .footer__lede { color: rgba(255,255,255,.6); max-width: 46ch; margin: 0; line-height: 1.65em; font-size: 15px; }
.site-footer .brand__text { color: var(--accent-3); }
.site-footer .brand__a { color: var(--accent-2); }
.site-footer .brand__mark { color: var(--accent-2); }
.footer__cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
@media (max-width: 600px) { .footer__cols { grid-template-columns: 1fr 1fr; } }
.footer__cols h6 { font-size: 11px; letter-spacing: .25em; text-transform: uppercase; color: var(--accent-2); margin: 0 0 16px; font-weight: 600; }
.footer__cols a { display: block; padding: 5px 0; color: rgba(255,255,255,.6); font-size: 14px; transition: color .2s var(--ease); }
.footer__cols a:hover { color: var(--accent-2); }
.footer__base { display: flex; justify-content: space-between; align-items: center; padding-top: 26px; gap: 20px; }
@media (max-width: 720px) { .footer__base { flex-direction: column; align-items: flex-start; } }
.footer__base small { color: rgba(255,255,255,.45); font-size: 12px; }

/* ==== REVEAL ==== */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal[data-i="1"] { transition-delay: .05s; }
.reveal[data-i="2"] { transition-delay: .12s; }
.reveal[data-i="3"] { transition-delay: .19s; }
.reveal[data-i="4"] { transition-delay: .26s; }
.reveal[data-i="5"] { transition-delay: .33s; }
.reveal-left { opacity: 0; transform: translateX(-30px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal-left.is-visible { opacity: 1; transform: none; }
.reveal-right { opacity: 0; transform: translateX(30px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal-right.is-visible { opacity: 1; transform: none; }

body { animation: pageIn .55s var(--ease) both; }
@keyframes pageIn { from { opacity: 0; } to { opacity: 1; } }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal, .reveal-left, .reveal-right { opacity: 1; transform: none; }
}

/* ============================================================
   SUB-PAGE COMPONENTS (Execor design language)
   ============================================================ */

/* ==== PAGE HERO ==== */
.page-hero {
  position: relative;
  background: var(--accent-3);
  padding: 180px 0 110px;
  overflow: hidden;
}
.page-hero--dark { background: var(--accent-1); color: var(--accent-3); }
body[data-page="about"] .page-hero { isolation: isolate; }
body[data-page="about"] .page-hero::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background: url('assets/nairobi-keny.jpg') center/cover no-repeat;
}
body[data-page="about"] .page-hero::after {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background: rgba(15, 61, 58, 0.62);
}
body[data-page="about"] .page-hero__inner { z-index: 1; }
.page-hero--dark h1, .page-hero--dark .page-hero__lede { color: var(--accent-3); }
.page-hero--dark .breadcrumb { color: rgba(255,255,255,.65); }
.page-hero--dark .breadcrumb a { color: rgba(255,255,255,.55); }
.page-hero--dark .breadcrumb a:hover { color: var(--accent-2); }
.page-hero--dark .script { color: var(--accent-2); }

.page-hero__inner {
  position: relative;
  max-width: var(--container); margin: 0 auto; padding: 0 30px;
  display: grid; grid-template-columns: 1.15fr .85fr; gap: 70px; align-items: end;
}
@media (max-width: 1024px) { .page-hero__inner { padding: 0 20px; grid-template-columns: 1fr; gap: 40px; } }
.page-hero--center .page-hero__inner { grid-template-columns: 1fr; text-align: center; align-items: center; }
.page-hero--center .breadcrumb { justify-content: center; }
.page-hero--center .page-hero__title { margin-left: auto; margin-right: auto; max-width: 22ch; }
.page-hero--center .page-hero__lede { margin-left: auto; margin-right: auto; }

.breadcrumb {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 12px; letter-spacing: .04em;
  color: var(--accent-8); margin-bottom: 24px;
  font-family: 'DM Sans', sans-serif;
}
.breadcrumb a { color: var(--accent-1); transition: color .2s var(--ease); }
.breadcrumb a:hover { color: var(--mid-teal); }
.breadcrumb .sep { opacity: .4; }

.page-hero .script { display: inline-flex; align-items: center; gap: 14px; color: var(--mid-teal); margin-bottom: 16px; }
.page-hero .script::after { content: ""; width: 50px; height: 1px; background: currentColor; opacity: .5; }

.page-hero__title {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(38px, 5.5vw, 86px);
  font-weight: 300;
  line-height: 1.05em;
  letter-spacing: -.02em;
  color: var(--accent-6);
  margin: 0 0 26px;
}
.page-hero--dark .page-hero__title { color: var(--accent-3); }
.page-hero__title em {
  font-style: normal;
  font-family: 'Forum', 'Cormorant Garamond', serif;
  font-weight: 400;
  color: var(--accent-1);
}
.page-hero--dark .page-hero__title em { color: var(--accent-2); }
.page-hero__lede {
  font-size: 17px; line-height: 1.6em; color: var(--body-ink);
  max-width: 56ch; margin: 0 0 28px;
}
.page-hero--dark .page-hero__lede { color: rgba(255,255,255,.7); }

.page-hero__visual { position: relative; min-height: 460px; }
.page-hero__image {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  border-radius: var(--radius-img);
}
img.page-hero__image {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  display: block;
}
.page-hero__badge {
  position: absolute; top: 24px; left: 24px;
  background: var(--accent-2); color: var(--accent-1);
  padding: 10px 16px; border-radius: 999px;
  font-size: 12px; font-weight: 600; letter-spacing: .04em;
  display: inline-flex; align-items: center; gap: 10px;
}
.page-hero__chip {
  position: absolute; bottom: 24px; left: 24px; right: 24px;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-img);
  padding: 20px 22px;
  display: grid; grid-template-columns: 1fr auto; gap: 14px; align-items: center;
}
.page-hero__chip__num {
  font-family: 'DM Sans', sans-serif; font-size: 44px; font-weight: 200;
  color: var(--accent-1); line-height: 1; letter-spacing: -.02em;
}
.page-hero__chip__lbl { font-size: 12px; color: var(--accent-8); margin-top: 4px; line-height: 1.4em; }

/* Marquee bar — italic Forum */
.marquee-bar {
  background: var(--accent-1); color: var(--accent-3);
  padding: 22px 0; overflow: hidden;
  border-top: 1px solid rgba(255,255,255,.08);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.marquee-bar__track {
  display: inline-flex; gap: 60px; white-space: nowrap;
  animation: mq-scroll 32s linear infinite;
  font-family: 'Forum', serif; font-style: normal;
  font-size: 24px; align-items: center;
}
.marquee-bar__track span { display: inline-flex; gap: 60px; align-items: center; }
.marquee-bar__track .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--accent-2); flex: 0 0 7px;
}
@keyframes mq-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ==== MISSION LIST — numbered grid for vision page ==== */
.mission-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 0; }
.mission-list li {
  display: grid; grid-template-columns: 72px 1fr;
  gap: 28px; align-items: start;
  padding: 28px 0;
  border-bottom: 1px solid var(--accent-7);
}
.mission-list li:last-child { border-bottom: 0; }
.section--dark .mission-list li { border-bottom-color: rgba(255,255,255,.12); }
.mission-list .num {
  font-family: 'Forum', serif; font-style: normal;
  font-size: 36px; line-height: 1; color: var(--mid-teal);
  letter-spacing: -.02em;
}
.section--dark .mission-list .num { color: var(--accent-2); }
.mission-list h4 { font-size: 22px; font-weight: 400; line-height: 1.3em; margin: 0 0 8px; }
.mission-list p { font-size: 14.5px; color: var(--accent-8); line-height: 1.6em; margin: 0; }
.section--dark .mission-list p { color: rgba(255,255,255,.7); }
.section--dark .mission-list h4 { color: var(--accent-3); }

/* ==== SECTOR ROW — horizontal listing with hover slide ==== */
.sector-row-list { border-top: 1px solid var(--accent-7); margin: 0; padding: 0; list-style: none; }
.sector-row-list > li { display: contents; }
.sector-row {
  display: grid; grid-template-columns: 70px 1.2fr 1.6fr auto 60px;
  gap: 30px; align-items: center;
  padding: 32px 0;
  border-bottom: 1px solid var(--accent-7);
  cursor: pointer; color: var(--accent-6);
  transition: padding .35s var(--ease), background .35s var(--ease);
}
.sector-row:hover { padding-left: 16px; padding-right: 16px; background: var(--accent-4); }
.sector-row__num { font-family: 'Forum', serif; font-style: normal; font-size: 20px; color: var(--accent-8); }
.sector-row__name {
  font-family: 'DM Sans', sans-serif; font-weight: 300;
  font-size: clamp(22px, 2.2vw, 34px); line-height: 1.15em; margin: 0;
}
.sector-row__name em { font-family: 'Forum', serif; font-style: normal; font-weight: 400; color: var(--accent-1); }
.sector-row__desc { font-size: 14.5px; color: var(--accent-8); margin: 0; line-height: 1.55em; }
.sector-row__tags { display: flex; flex-wrap: wrap; gap: 6px; justify-content: flex-end; }
.sector-row__tags span { font-size: 11px; padding: 4px 10px; background: var(--accent-3); color: var(--accent-1); border-radius: 999px; letter-spacing: .03em; font-weight: 500; }
@media (max-width: 1000px) {
  .sector-row { grid-template-columns: 50px 1fr auto; }
  .sector-row__desc, .sector-row__tags { display: none; }
}

/* ==== DEEP-DIVE ROWS (image + text alternating) ==== */
.deep-dive { display: grid; gap: 80px; }
.deep-dive__row { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.deep-dive__row.is-reverse .deep-dive__media { order: 2; }
@media (max-width: 900px) {
  .deep-dive__row, .deep-dive__row.is-reverse { grid-template-columns: 1fr; gap: 30px; }
  .deep-dive__row.is-reverse .deep-dive__media { order: 0; }
}
.deep-dive__media {
  position: relative; min-height: 480px;
  background-size: cover; background-position: center;
  border-radius: var(--radius-img);
  overflow: hidden;
}
.deep-dive__media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(15,61,58,.05), rgba(15,61,58,.18));
}
.deep-dive__badge {
  position: absolute; bottom: 22px; left: 22px;
  background: var(--accent-5); color: var(--accent-1);
  padding: 10px 16px; border-radius: 999px;
  font-family: 'Forum', serif; font-style: normal; font-size: 16px;
  z-index: 2;
}
.deep-dive__body h3 {
  font-family: 'DM Sans', sans-serif; font-weight: 300;
  font-size: clamp(28px, 3vw, 44px); line-height: 1.1em; margin: 0 0 16px;
  letter-spacing: -.015em;
}
.deep-dive__body h3 em { font-family: 'Forum', serif; font-style: normal; font-weight: 400; color: var(--accent-1); }
.deep-dive__body p { font-size: 15.5px; color: var(--accent-8); line-height: 1.65em; margin: 0 0 18px; }
.deep-dive__body ul { display: flex; flex-wrap: wrap; gap: 8px; list-style: none; margin: 0 0 26px; padding: 0; }
.deep-dive__body li {
  font-size: 12px; padding: 6px 12px; background: var(--accent-3); color: var(--accent-1);
  border-radius: 999px; font-weight: 500;
}
.deep-dive__small {
  font-family: 'DM Sans', sans-serif; font-size: 12px; font-weight: 500;
  text-transform: uppercase; letter-spacing: .15em; color: var(--mid-teal);
  margin-bottom: 12px; display: inline-block;
}

/* ==== DEEP-DIVE CAROUSEL ==== */
.dd-carousel { position: relative; }
.dd-carousel__viewport { overflow: hidden; margin: 0 -16px; }
.dd-carousel__track {
  display: flex;
  transition: transform .9s cubic-bezier(.22, .61, .36, 1);
  will-change: transform;
}
.dd-carousel__slide {
  flex: 0 0 50%;
  min-width: 0;
  padding: 4px 16px;
  box-sizing: border-box;
}
.dd-carousel__slide .deep-dive__row {
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: stretch;
}
.dd-carousel__slide .deep-dive__media {
  min-height: 0;
  height: 100%;
  overflow: hidden;
  transform: scale(1.04);
  transition: transform 1.4s cubic-bezier(.22, .61, .36, 1);
}
.dd-carousel__slide.is-active .deep-dive__media { transform: scale(1); }
.dd-carousel__slide .deep-dive__body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.dd-carousel__slide .deep-dive__body h3 { font-size: clamp(22px, 1.9vw, 30px); margin-bottom: 12px; }
.dd-carousel__slide .deep-dive__body p { font-size: 14.5px; margin-bottom: 14px; }
.dd-carousel__slide .deep-dive__body ul { margin-bottom: 20px; }
.dd-carousel__slide .deep-dive__body .link-arrow { margin-top: auto; }

.dd-carousel__slide .deep-dive__body > * {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .7s ease, transform .7s ease;
}
.dd-carousel__slide.is-active .deep-dive__body > * { opacity: 1; transform: none; }
.dd-carousel__slide.is-active .deep-dive__body > *:nth-child(1) { transition-delay: .12s; }
.dd-carousel__slide.is-active .deep-dive__body > *:nth-child(2) { transition-delay: .20s; }
.dd-carousel__slide.is-active .deep-dive__body > *:nth-child(3) { transition-delay: .28s; }
.dd-carousel__slide.is-active .deep-dive__body > *:nth-child(4) { transition-delay: .36s; }
.dd-carousel__slide.is-active .deep-dive__body > *:nth-child(5) { transition-delay: .44s; }

.dd-carousel__controls {
  display: flex; align-items: center; justify-content: center;
  gap: 28px; margin-top: 56px;
}
.dd-carousel__btn {
  width: 52px; height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(15, 61, 58, .22);
  background: transparent;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--accent-1);
  cursor: pointer;
  transition: background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease), transform .25s var(--ease);
}
.dd-carousel__btn:hover {
  background: var(--accent-1);
  color: var(--accent-3);
  border-color: var(--accent-1);
  transform: translateY(-2px);
}
.dd-carousel__btn:focus-visible {
  outline: 2px solid var(--accent-1);
  outline-offset: 3px;
}

.dd-carousel__dots { display: flex; gap: 10px; align-items: center; }
.dd-carousel__dot {
  width: 30px; height: 4px;
  background: rgba(15, 61, 58, .18);
  border: none; padding: 0;
  border-radius: 2px;
  cursor: pointer;
  transition: width .35s var(--ease), background .35s var(--ease);
}
.dd-carousel__dot:hover:not(.is-active) { background: rgba(15, 61, 58, .42); }
.dd-carousel__dot.is-active {
  width: 56px;
  background:
    linear-gradient(90deg, var(--accent-1) 0%, var(--accent-1) 100%) no-repeat,
    rgba(15, 61, 58, .18);
  background-size: var(--dd-progress, 0%) 100%, 100% 100%;
}

@media (max-width: 900px) {
  .dd-carousel__viewport { margin: 0; }
  .dd-carousel__slide { flex: 0 0 100%; padding: 4px; }
  .dd-carousel__slide .deep-dive__row { grid-template-columns: 1fr; gap: 30px; }
  .dd-carousel__slide .deep-dive__media { height: auto; min-height: 320px; }
  .dd-carousel__controls { gap: 18px; margin-top: 40px; }
  .dd-carousel__btn { width: 44px; height: 44px; }
}

@media (prefers-reduced-motion: reduce) {
  .dd-carousel__track { transition: none; }
  .dd-carousel__slide .deep-dive__media,
  .dd-carousel__slide .deep-dive__body > * { transition: none; transform: none; opacity: 1; }
}

/* ==== PROCESS / 4-STEP TIMELINE ==== */
.process {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
  position: relative;
}
@media (max-width: 1000px) { .process { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .process { grid-template-columns: 1fr; } }
.process__step { position: relative; padding-top: 44px; }
.process__step::before {
  content: ""; position: absolute; top: 18px; left: 0; right: 0;
  height: 1px; background: var(--accent-7);
}
.process__step::after {
  content: ""; position: absolute; top: 14px; left: 0;
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--accent-2);
  outline: 4px solid var(--accent-3);
  box-shadow: 0 0 0 1px var(--accent-2);
}
.section--cream .process__step::after { outline-color: var(--accent-4); }
.section--paper .process__step::after { outline-color: var(--accent-3); }
.process__num {
  font-family: 'Forum', serif; font-style: normal;
  font-size: 14px; color: var(--accent-8); margin-bottom: 14px;
  letter-spacing: .03em;
}
.process__step h4 {
  font-family: 'DM Sans', sans-serif; font-weight: 400;
  font-size: 22px; line-height: 1.25em; margin: 0 0 10px;
}
.process__step p { font-size: 14.5px; color: var(--accent-8); line-height: 1.6em; margin: 0; }

/* ==== STRUCTURE DIAGRAM (platform) ==== */
.structure { display: flex; flex-direction: column; gap: 6px; padding: 20px 0; }
.layer { padding: 20px 0; }
.layer__title {
  text-align: center;
  font-family: 'Forum', serif; font-style: normal;
  font-size: 18px; color: var(--accent-2); margin: 0 0 22px;
  letter-spacing: .03em;
}
.layer__title::before, .layer__title::after { content: " · "; opacity: .6; }
.connector { display: flex; justify-content: center; }
.connector span {
  display: block; width: 1px; height: 40px;
  background: linear-gradient(180deg, transparent, var(--accent-2), transparent);
  position: relative;
}
.connector span::after {
  content: ""; position: absolute; left: 50%; top: 0; transform: translateX(-50%);
  width: 6px; height: 6px; border-radius: 50%; background: var(--accent-2);
  animation: drip 2.6s ease-in-out infinite;
}
@keyframes drip {
  0%   { top: 0; opacity: 0; }
  20%  { opacity: 1; }
  80%  { opacity: 1; }
  100% { top: 100%; opacity: 0; }
}
.layer-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; max-width: 760px; margin: 0 auto; }
@media (max-width: 640px) { .layer-cards { grid-template-columns: 1fr; } }
.layer-card {
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-img); padding: 24px;
  transition: border-color .3s var(--ease), background .3s var(--ease), transform .3s var(--ease);
}
.layer-card:hover { border-color: var(--accent-2); background: rgba(200,248,169,.06); transform: translateY(-3px); }
.layer-card__icon {
  width: 44px; height: 44px; border-radius: var(--radius-img);
  background: rgba(200,248,169,.12); color: var(--accent-2);
  display: grid; place-items: center; margin-bottom: 14px;
}
.layer-card__icon svg { width: 22px; height: 22px; }
.layer-card h5 { font-family: 'DM Sans', sans-serif; font-size: 18px; font-weight: 400; color: var(--accent-3); margin: 0 0 6px; }
.layer-card p { font-size: 13.5px; color: rgba(255,255,255,.65); margin: 0; line-height: 1.55em; }

.core-card {
  margin: 0 auto; max-width: 560px;
  background: linear-gradient(135deg, var(--mid-teal), var(--accent-1));
  border: 1px solid var(--accent-2);
  border-radius: var(--radius-img);
  padding: 32px 36px;
  display: flex; align-items: center; gap: 22px;
  box-shadow: 0 24px 60px -28px rgba(200,248,169,.4), inset 0 0 60px rgba(200,248,169,.04);
  position: relative;
}
.core-card::before {
  content: ""; position: absolute; inset: -2px; z-index: -1;
  background: linear-gradient(135deg, rgba(200,248,169,.4), transparent 50%, rgba(200,248,169,.2));
  filter: blur(20px); opacity: .5;
  animation: corePulse 4s ease-in-out infinite alternate;
}
@keyframes corePulse { from { opacity: .3; } to { opacity: .7; } }
.core-card__africa { width: 74px; height: 74px; color: var(--accent-2); flex: 0 0 auto; }
.core-card__kicker { display: block; font-family: 'Forum', serif; font-style: normal; font-size: 14px; color: var(--accent-2); margin-bottom: 6px; }
.core-card h4 {
  font-family: 'DM Sans', sans-serif; font-weight: 300;
  font-size: 22px; line-height: 1.2em; color: var(--accent-3); margin: 0;
}

.country-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
@media (max-width: 760px) { .country-grid { grid-template-columns: 1fr 1fr; } }
.country-cell {
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-img); padding: 20px;
  display: flex; flex-direction: column; gap: 8px;
  transition: border-color .3s var(--ease), transform .3s var(--ease), background .3s var(--ease);
}
.country-cell:hover { border-color: var(--accent-2); background: rgba(200,248,169,.05); transform: translateY(-3px); }
.country-cell strong {
  font-family: 'DM Sans', sans-serif; font-size: 18px; font-weight: 400; color: var(--accent-3);
}
.country-cell em {
  font-style: normal; font-family: 'Forum', serif; font-size: 13px;
  color: var(--accent-2); letter-spacing: .02em;
}

.flag {
  width: 32px; height: 22px; display: block; overflow: hidden;
  border-radius: 3px; box-shadow: 0 0 0 1px rgba(255,255,255,.15);
}
.flag--za {
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8' preserveAspectRatio='none'><rect width='12' height='4' fill='%23de3831'/><rect y='4' width='12' height='4' fill='%23002395'/><path d='M-2 -2L5 4H14M-2 10L5 4' stroke='%23fff' stroke-width='3.2' fill='none'/><path d='M-2 -2L5 4H14M-2 10L5 4' stroke='%23007a4d' stroke-width='2.2' fill='none'/><polygon points='0,1.4 0,6.6 3.2,4' fill='%23000'/><path d='M0 1.4L3.2 4L0 6.6' stroke='%23ffb612' stroke-width='0.5' fill='none'/></svg>") center/100% 100% no-repeat;
}
.flag--ke { background: linear-gradient(180deg, #000 0 20%, #fff 20% 25%, #be3a34 25% 50%, #fff 50% 55%, #007a3d 55% 80%, #000 80%); }
.flag--gh {
  background: linear-gradient(180deg, #ce1126 0 33.33%, #fcd116 33.33% 66.66%, #006b3f 66.66%);
  position: relative;
}
.flag--gh::after { content: "★"; position: absolute; inset: 0; display: grid; place-items: center; color: #000; font-size: 10px; line-height: 1; }
.flag--ng { background: linear-gradient(90deg, #008753 0 33.33%, #fff 33.33% 66.66%, #008753 66.66%); }

.impact-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; padding: 14px 0; }
@media (max-width: 760px) { .impact-grid { grid-template-columns: 1fr 1fr; } }
.impact-grid > div {
  border-left: 2px solid var(--accent-2); padding: 6px 0 6px 18px;
}
.impact-grid strong {
  display: block; font-family: 'DM Sans', sans-serif; font-size: 16px;
  font-weight: 400; color: var(--accent-3); margin-bottom: 4px;
}
.impact-grid span { font-size: 12.5px; color: rgba(255,255,255,.65); }

/* ==== REACH / COUNTRY CARDS (light context) ==== */
.reach-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
@media (max-width: 1000px) { .reach-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .reach-grid { grid-template-columns: 1fr; } }
.reach-card {
  background: var(--accent-5); border: 1px solid var(--accent-7);
  border-radius: var(--radius-img); overflow: hidden;
  transition: transform .35s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.reach-card:hover { transform: translateY(-6px); border-color: var(--accent-1); box-shadow: 0 30px 60px -28px rgba(15,61,58,.18); }
.reach-card__img {
  height: 180px; position: relative;
  background-size: cover; background-position: center;
  filter: saturate(.9);
}
.reach-card__img::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(15,61,58,.35));
}
.reach-card__body { padding: 22px 24px 26px; position: relative; }
.reach-card__flag { width: 36px; height: 24px; border-radius: 3px; margin: -38px 0 14px; position: relative; z-index: 2; box-shadow: 0 8px 20px -8px rgba(0,0,0,.4); border: 1px solid rgba(255,255,255,.4); }
.reach-card h3 { font-family: 'DM Sans', sans-serif; font-weight: 400; font-size: 22px; line-height: 1.2em; margin: 0 0 8px; }
.reach-card h3 em { font-family: 'Forum', serif; font-style: normal; color: var(--accent-1); }
.reach-card p { font-size: 14px; color: var(--accent-8); line-height: 1.6em; margin: 0 0 16px; }
.reach-card ul { list-style: none; margin: 0; padding: 14px 0 0; border-top: 1px solid var(--accent-7); display: flex; flex-wrap: wrap; gap: 6px; }
.reach-card li {
  font-size: 11px; padding: 4px 10px; background: var(--accent-3);
  color: var(--accent-1); border-radius: 999px; font-weight: 500;
}

/* ==== AFRICA MAP ==== */
.africa-map {
  position: relative;
  background: linear-gradient(135deg, var(--mid-teal), var(--accent-1));
  border: 1px solid var(--accent-2);
  border-radius: var(--radius-img);
  padding: 40px;
}
.africa-map svg { width: 100%; max-width: 480px; margin: 0 auto; display: block; height: auto; color: var(--accent-2); }
.africa-map .pin { fill: var(--accent-2); filter: drop-shadow(0 0 6px rgba(200,248,169,.7)); }
.africa-map .pin-ring {
  fill: none; stroke: var(--accent-2); stroke-width: 1;
  transform-origin: center; transform-box: fill-box;
  animation: ping 2.6s ease-out infinite;
}
.africa-map .pin-ring--ke { animation-delay: .3s; }
.africa-map .pin-ring--gh { animation-delay: .6s; }
.africa-map .pin-ring--ng { animation-delay: .9s; }
@keyframes ping {
  0% { transform: scale(.4); opacity: 1; }
  100% { transform: scale(4); opacity: 0; }
}

/* ==== PULL QUOTE ==== */
.pull-quote {
  padding: clamp(80px, 9vw, 130px) 0;
  text-align: center;
}
.pull-quote--cream { background: var(--accent-4); }
.pull-quote--paper { background: var(--accent-3); }
.pull-quote--dark  { background: var(--accent-1); color: var(--accent-3); }
.pull-quote__inner { max-width: 980px; margin: 0 auto; padding: 0 30px; }
.pull-quote__mark {
  font-family: 'Forum', serif; font-style: normal;
  font-size: 120px; line-height: .7; color: var(--accent-2);
  margin-bottom: -10px;
}
.pull-quote p {
  font-family: 'Forum', serif; font-style: normal;
  font-size: clamp(28px, 3.6vw, 52px); line-height: 1.2em;
  letter-spacing: -.01em;
  margin: 0 0 30px;
  color: var(--accent-6);
}
.pull-quote--dark p { color: var(--accent-3); }
.pull-quote p em, .pull-quote p .em {
  font-family: 'DM Sans', sans-serif; font-style: normal; font-weight: 300;
  color: var(--mid-teal);
}
.pull-quote--dark p em { color: var(--accent-2); }
.pull-quote__author {
  display: inline-flex; align-items: center; gap: 14px;
  font-size: 12px; color: var(--accent-8); letter-spacing: .15em; text-transform: uppercase; font-weight: 500;
}
.pull-quote--dark .pull-quote__author { color: rgba(255,255,255,.5); }
.pull-quote__author::before, .pull-quote__author::after { content: ""; width: 26px; height: 1px; background: currentColor; opacity: .6; }

/* ==== BANNER STRIP (full-bleed image divider) ==== */
.banner-strip {
  position: relative;
  min-height: clamp(340px, 38vw, 480px);
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  color: var(--accent-3);
  background-color: var(--accent-1);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}
.banner-strip::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(180deg, rgba(15,61,58,.5) 0%, rgba(15,61,58,.72) 100%);
}
.banner-strip__inner {
  position: relative; z-index: 1;
  max-width: 760px;
  padding: 80px 24px;
}
.banner-strip .script { color: var(--accent-2); margin-bottom: 18px; display: inline-block; }
.banner-strip h2 {
  color: var(--accent-3);
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: clamp(28px, 3.6vw, 52px);
  line-height: 1.15em;
  letter-spacing: -.015em;
  margin: 0;
}
.banner-strip h2 em {
  font-family: 'Forum', serif;
  font-style: normal;
  font-weight: 400;
  color: var(--accent-2);
}
@media (max-width: 600px) {
  .banner-strip__inner { padding: 60px 20px; }
}

/* ==== VIDEO BANNER (click-to-load YouTube embed) ==== */
.video-banner {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-img);
  overflow: hidden;
  background: var(--accent-1);
  cursor: pointer;
  box-shadow: 0 30px 70px rgba(15,61,58,.18);
}
.video-banner__poster {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: 0;
  transition: transform 1.2s cubic-bezier(.22,.61,.36,1);
}
.video-banner::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(15,61,58,.05) 0%, rgba(15,61,58,.45) 100%);
  pointer-events: none;
  transition: opacity .4s ease;
}
.video-banner:hover .video-banner__poster { transform: scale(1.04); }
.video-banner__play {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 96px; height: 96px;
  border-radius: 50%;
  background: var(--accent-2);
  color: var(--accent-1);
  display: inline-flex; align-items: center; justify-content: center;
  z-index: 2;
  transition: transform .35s var(--ease), background .35s var(--ease);
  box-shadow: 0 12px 40px rgba(0,0,0,.25);
}
.video-banner__play svg { margin-left: 6px; }
.video-banner__play::before {
  content: ""; position: absolute; inset: -14px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.4);
  animation: videoPulse 2.4s ease-out infinite;
}
@keyframes videoPulse {
  0%   { transform: scale(.85); opacity: .9; }
  100% { transform: scale(1.45); opacity: 0; }
}
.video-banner:hover .video-banner__play {
  transform: translate(-50%, -50%) scale(1.06);
  background: var(--accent-2-hover);
}
.video-banner:focus-visible {
  outline: 3px solid var(--accent-2);
  outline-offset: 4px;
}
.video-banner.is-playing .video-banner__play,
.video-banner.is-playing .video-banner__poster { display: none; }
.video-banner.is-playing::after { opacity: 0; }
.video-banner__frame {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  border: 0;
  border-radius: var(--radius-img);
}
@media (max-width: 600px) {
  .video-banner__play { width: 72px; height: 72px; }
  .video-banner__play svg { width: 22px; height: 22px; }
}
@media (prefers-reduced-motion: reduce) {
  .video-banner__play::before { animation: none; }
  .video-banner:hover .video-banner__poster { transform: none; }
  .video-banner__poster { transition: none; }
}

/* ==== NEXT-LINK BLOCKS ==== */
.next-links {
  background: var(--accent-3);
  border-top: 1px solid var(--accent-7);
}
.next-links__grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  border: 1px solid var(--accent-7);
  background: var(--accent-5);
}
@media (max-width: 720px) { .next-links__grid { grid-template-columns: 1fr; } }
.next-link {
  display: flex; justify-content: space-between; align-items: center; gap: 24px;
  padding: 48px 40px; border-right: 1px solid var(--accent-7);
  transition: background .3s var(--ease), color .3s var(--ease);
}
.next-link:last-child { border-right: 0; }
@media (max-width: 720px) { .next-link { border-right: 0; border-bottom: 1px solid var(--accent-7); } .next-link:last-child { border-bottom: 0; } }
.next-link:hover { background: var(--accent-1); color: var(--accent-3); }
.next-link:hover small { color: var(--accent-2); }
.next-link:hover .nl-arrow { background: var(--accent-2); border-color: var(--accent-2); color: var(--accent-1); }
.next-link small {
  display: block; font-size: 11px; letter-spacing: .15em; text-transform: uppercase;
  color: var(--mid-teal); margin-bottom: 8px; font-weight: 600;
}
.next-link strong {
  font-family: 'Forum', serif; font-style: normal; font-weight: 400;
  font-size: clamp(22px, 2.4vw, 30px); letter-spacing: -.01em;
}
.nl-arrow {
  width: 56px; height: 56px;
  border: 1px solid currentColor; border-radius: 50%;
  display: grid; place-items: center; flex: 0 0 auto;
  transition: background .3s var(--ease), border-color .3s var(--ease), transform .4s var(--ease), color .3s var(--ease);
}
.nl-arrow svg { width: 18px; height: 18px; }
.next-link:hover .nl-arrow { transform: rotate(-45deg); }

/* ==== DECORATIVE — small chip variant for kickers / page-hero ==== */
.tag-chip {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 7px 14px; background: var(--accent-3); color: var(--accent-1);
  border-radius: 999px; font-size: 12px; font-weight: 500; letter-spacing: .03em;
}
.tag-chip-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--mid-teal); }
.section--dark .tag-chip { background: rgba(255,255,255,.08); color: var(--accent-3); }
.section--dark .tag-chip-dot { background: var(--accent-2); }

/* ============================================================
   ORG CHART — vertical ecosystem diagram (platform page)
   ============================================================ */
.org-chart {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 1180px;
  margin: 0 auto;
}

/* Section divider title row */
.org-section { padding: 0; }
.org-section-title {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 0 0 26px;
}
.org-section-title .ost-dot {
  width: 7px; height: 7px; flex: 0 0 7px;
  border-radius: 50%;
  background: var(--accent-1);
}
.org-section-title .ost-line {
  flex: 1;
  height: 1px;
  background-image: linear-gradient(90deg, var(--accent-1) 50%, transparent 50%);
  background-size: 7px 1px;
  background-repeat: repeat-x;
  opacity: .55;
}
.org-section-title .ost-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--accent-1);
  white-space: nowrap;
}

/* Card grid */
.org-cards {
  display: grid;
  gap: 18px;
  margin: 0 0 32px;
}
.org-cards--2 { grid-template-columns: repeat(2, 1fr); max-width: 760px; margin-left: auto; margin-right: auto; }
.org-cards--3 { grid-template-columns: repeat(3, 1fr); }
.org-cards--4 { grid-template-columns: repeat(4, 1fr); }
.org-cards--6 { grid-template-columns: repeat(6, 1fr); }
@media (max-width: 1024px) {
  .org-cards--6 { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 760px) {
  .org-cards--4 { grid-template-columns: repeat(2, 1fr); }
  .org-cards--6 { grid-template-columns: repeat(2, 1fr); }
  .org-cards--2 { grid-template-columns: 1fr; }
}
@media (max-width: 460px) {
  .org-cards--3, .org-cards--4 { grid-template-columns: 1fr; }
}

/* Generic card */
.org-card {
  background: var(--accent-5);
  border: 1px solid var(--accent-7);
  border-radius: 4px;
  padding: 20px 22px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: border-color .25s var(--ease), transform .25s var(--ease), box-shadow .25s var(--ease);
}
.org-card:hover {
  border-color: var(--accent-1);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px -18px rgba(15,61,58,.25);
}
.org-card__icon {
  width: 40px; height: 40px;
  flex: 0 0 40px;
  color: var(--accent-1);
  display: grid;
  place-items: center;
}
.org-card__icon svg { width: 100%; height: 100%; }
.org-card__title {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: var(--accent-6);
  margin: 0 0 4px;
  line-height: 1.25em;
}
.org-card__desc {
  font-family: 'DM Sans', sans-serif;
  font-size: 12.5px;
  color: var(--accent-8);
  margin: 0;
  line-height: 1.5em;
}

/* Stacked variant — icon above label (for sectors) */
.org-card--stacked {
  flex-direction: column;
  text-align: center;
  gap: 14px;
  padding: 24px 14px;
}
.org-card--stacked .org-card__icon { width: 36px; height: 36px; flex: 0 0 auto; }
.org-card--stacked .org-card__title { font-weight: 500; font-size: 14px; }

/* Country card variant — country shape + name+holdco */
.org-country .org-card__icon { color: var(--accent-1); }
.org-country .org-card__icon svg { fill: var(--accent-1); }

/* Country flag chip — replaces SVG silhouette with national flag */
.org-country .org-card__icon { overflow: hidden; }
.org-flag {
  width: 100%;
  height: 28px;
  border-radius: 4px;
  background-size: cover;
  background-position: center;
  box-shadow: 0 0 0 1px rgba(15,61,58,.10), 0 2px 6px -3px rgba(15,61,58,.25);
}

/* Wide variant — for country / asset-manager rows where centered content reads better */
.org-card--center {
  justify-content: center;
  text-align: center;
}
.org-card--center .org-card__body { flex: 0 1 auto; }

/* === Holdco row: SP | HOLDCO | CMP === */
.org-holdco-row {
  display: grid;
  grid-template-columns: 1fr 1.7fr 1fr;
  gap: 24px;
  align-items: center;
  margin: 0 0 32px;
}
@media (max-width: 1024px) {
  .org-holdco-row { grid-template-columns: 1fr; gap: 22px; }
}
.org-side {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 0;
}
.org-side__icon {
  width: 56px; height: 56px;
  border: 1px solid var(--accent-7);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--accent-1);
}
.org-side__icon svg { width: 26px; height: 26px; }
.org-side h5 {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--accent-6);
  margin: 0;
}
.org-side p {
  font-family: 'DM Sans', sans-serif;
  font-size: 12.5px;
  color: var(--accent-8);
  margin: 0;
  line-height: 1.5em;
  max-width: 22ch;
}
.org-side--right { align-items: flex-end; text-align: right; }
.org-side--right p { margin-left: auto; }
@media (max-width: 1024px) {
  .org-side, .org-side--right { flex-direction: row; align-items: center; text-align: left; gap: 16px; }
  .org-side--right { justify-content: flex-end; }
  .org-side p { max-width: none; }
}

.org-holdco {
  background: var(--accent-1);
  color: var(--accent-5);
  border-radius: 6px;
  padding: 28px 32px;
  display: flex;
  align-items: center;
  gap: 22px;
  min-height: 130px;
}
.org-holdco__map {
  width: 84px; height: 84px;
  color: var(--accent-2);
  flex: 0 0 84px;
}
.org-holdco__map svg { width: 100%; height: 100%; }
.org-holdco__title {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(22px, 2.2vw, 30px);
  font-weight: 700;
  letter-spacing: -.01em;
  color: var(--accent-5);
  line-height: 1.1em;
  margin: 0 0 6px;
}
.org-holdco__subtitle {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  color: rgba(255,255,255,.85);
  line-height: 1.4em;
  margin: 0;
}

/* Connector between holdco row and country holdcos / etc. */
.org-tick-row {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 0 0 10px;
}
.org-tick-row .ost-dot { width: 7px; height: 7px; flex: 0 0 7px; border-radius: 50%; background: var(--accent-1); }
.org-tick-row .ost-line {
  flex: 1; height: 1px;
  background-image: linear-gradient(90deg, var(--accent-1) 50%, transparent 50%);
  background-size: 7px 1px;
  background-repeat: repeat-x;
  opacity: .55;
}

/* Subtle grain over dark sections */
.has-grain { position: relative; }
.has-grain::after {
  content: "";
  position: absolute; inset: 0; z-index: 0;
  background-image: radial-gradient(rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 3px 3px;
  pointer-events: none; mix-blend-mode: overlay;
}
.has-grain > * { position: relative; z-index: 1; }

