:root {
  --forest: #102f27;
  --forest-2: #193f33;
  --leaf: #c7a878;
  --moss: #b8b5a8;
  --clay: #a66d42;
  --soil: #5c4632;
  --cream: #e8dfce;
  --paper: #f0e9dc;
  --ink: #0e1714;
  --muted: #7a7570;
  --line: rgba(14, 23, 20, 0.12);
  --shadow: 0 24px 70px rgba(14, 23, 20, 0.16);
  --ink-next: #0e1714;
  --paper-next: #f0e9dc;
  --bone: #e8dfce;
  --canopy: #1f3329;
  --canopy-2: #2a4438;
  --bark: #2d251e;
  --sand: #c7a878;
  --mist: #b8b5ad;
  --line-ink: rgba(14, 23, 20, 0.12);
  --shadow-ink: 0 24px 70px rgba(14, 23, 20, 0.18);
  --font-display: 'Fraunces', 'Source Serif 4', Georgia, serif;
  --font-sans: 'Inter Tight', Inter, system-ui, -apple-system, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: "Inter Tight", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.55;
  font-size: 16px;
  overflow-wrap: break-word;
  word-break: break-word;
}

body.menu-open {
  overflow: hidden;
}

body.opening-active {
  overflow: hidden;
}

body.opening-active .site-header {
  opacity: 0;
  pointer-events: none;
}

img {
  display: block;
  max-width: 100%;
}

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

p {
  margin: 0;
}

.container {
  width: min(1200px, calc(100% - 44px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(16, 47, 39, 0.12);
  background: rgba(232, 223, 206, 0.88);
  backdrop-filter: blur(22px);
  color: var(--forest);
}

.opening-scene {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #0e1714;
  color: var(--bone);
  pointer-events: none;
  animation: openingExit 0.95s ease 5.9s forwards;
}

.opening-copy {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: center;
  gap: 22px;
  padding: 0 24px;
  text-align: center;
  transform: translateY(16px);
  opacity: 0;
  animation: openingCopy 3.3s ease 1s forwards;
}

.opening-logo {
  width: clamp(72px, 14vw, 112px);
  height: auto;
  filter: drop-shadow(0 0 32px rgba(199, 168, 120, 0.18));
}

.opening-logo-bg {
  fill: #0e1714;
}

.opening-logo-landscape {
  fill: #e8dfce;
  opacity: 0.82;
  transform: none;
}

.opening-logo-sun {
  fill: #c7a878;
  transform-box: view-box;
  transform-origin: 75px 75px;
  will-change: transform;
  animation: logoSunRise 2.8s cubic-bezier(0.22, 0.72, 0.18, 1) 0.45s forwards;
}

.opening-copy strong {
  font-size: clamp(0.68rem, 1.6vw, 0.84rem);
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(232, 223, 206, 0.6);
  line-height: 1;
}

.opening-skipped .opening-scene {
  display: none;
}

.nav-wrap {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: 0;
  font-size: 1.2rem;
}

.brand img {
  width: 42px;
  height: 42px;
}

.nav-toggle {
  display: none;
  position: relative;
  z-index: 201;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(15, 51, 42, 0.18);
  border-radius: 50%;
  background: transparent;
  color: var(--forest);
  cursor: pointer;
}

.nav-toggle span,
.nav-toggle::before,
.nav-toggle::after {
  content: "";
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-open .nav-toggle span {
  opacity: 0;
}

.menu-open .nav-toggle::before {
  transform: translateY(6px) rotate(45deg);
}

.menu-open .nav-toggle::after {
  transform: translateY(-6px) rotate(-45deg);
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 5px;
}

@media (max-width: 1120px) and (min-width: 641px) {
  .nav-wrap {
    gap: 12px;
  }

  .brand {
    gap: 8px;
    font-size: 1rem;
  }

  .brand img {
    width: 38px;
    height: 38px;
  }

  .primary-nav {
    gap: 2px;
  }

  .nav-link {
    padding: 9px 6px;
    font-size: 0.78rem;
  }

  .nav-cta {
    min-height: 40px;
    padding: 0 12px;
    font-size: 0.78rem;
  }
}

.nav-item {
  position: relative;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 11px 9px;
  border-radius: 999px;
  color: rgba(15, 51, 42, 0.75);
  font-size: 0.9rem;
  font-weight: 650;
  transition: background 0.2s ease, color 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
  background: rgba(199, 168, 120, 0.18);
  color: var(--forest);
}

.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  width: 286px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.nav-item:hover .dropdown,
.nav-item:focus-within .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown a {
  display: block;
  padding: 10px 12px;
  border-radius: 6px;
  color: var(--forest);
  font-weight: 650;
  font-size: 0.92rem;
}

.dropdown a:hover {
  background: rgba(199, 168, 120, 0.18);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.84rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--leaf);
  color: var(--forest);
  box-shadow: 0 14px 34px rgba(199, 168, 120, 0.28);
}

.btn-primary:hover {
  background: #d9bc96;
}

.btn-outline {
  border-color: rgba(255, 255, 255, 0.44);
  color: #fff;
}

.btn-outline:hover {
  background: #fff;
  color: var(--forest);
}

.hero {
  position: relative;
  min-height: 720px;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fff;
  background: var(--forest);
}

.page-hero {
  min-height: 540px;
}

.hero-media,
.hero::before {
  position: absolute;
  inset: 0;
}

.hero-media {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.86;
}

.hero::before {
  content: "";
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(8, 31, 25, 0.88), rgba(8, 31, 25, 0.36) 58%, rgba(8, 31, 25, 0.08)),
    linear-gradient(0deg, rgba(8, 31, 25, 0.74), rgba(8, 31, 25, 0.04) 62%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 160px 0 92px;
  max-width: 900px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--moss);
  font-weight: 850;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 2px;
  background: var(--leaf);
}

h1,
h2,
h3,
h4 {
  margin: 0;
  line-height: 1.04;
  letter-spacing: 0;
}

h1 {
  max-width: 880px;
  font-size: clamp(3.35rem, 7.4vw, 7rem);
  letter-spacing: 0;
}

.page-hero h1 {
  font-size: clamp(3rem, 7vw, 6.2rem);
}

.hero .lead {
  max-width: 760px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.1rem, 1.8vw, 1.38rem);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.renewed-hero {
  position: relative;
  min-height: calc(100vh - 84px);
  display: grid;
  align-items: stretch;
  overflow: hidden;
  background: #0c251f;
  color: #f0e9dc;
}

.renewed-hero-media,
.renewed-hero::before,
.renewed-hero-grain {
  position: absolute;
  inset: 0;
}

.renewed-hero-media {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.58;
  filter: saturate(0.78) contrast(1.05);
}

.renewed-hero::before {
  content: "";
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(8, 25, 21, 0.96), rgba(8, 25, 21, 0.7) 46%, rgba(8, 25, 21, 0.26)),
    radial-gradient(circle at 77% 26%, rgba(166, 109, 66, 0.32), transparent 34%),
    linear-gradient(0deg, rgba(8, 25, 21, 0.92), rgba(8, 25, 21, 0.04) 64%);
}

.renewed-hero-grain {
  z-index: 2;
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(240, 233, 220, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(240, 233, 220, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(90deg, black, transparent 76%);
}

.renewed-hero-layout {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
  gap: clamp(28px, 5vw, 72px);
  align-items: end;
  padding: clamp(122px, 16vh, 182px) 0 76px;
}

.renewed-hero-copy h1 {
  max-width: 920px;
  font-size: clamp(3.2rem, 6.8vw, 6.9rem);
  line-height: 0.94;
  text-wrap: balance;
}

.renewed-hero-copy .lead {
  max-width: 760px;
  margin-top: 24px;
  color: rgba(240, 233, 220, 0.8);
  font-size: clamp(1.04rem, 1.55vw, 1.28rem);
  line-height: 1.55;
}

.hero-intelligence {
  padding: 28px;
  border: 1px solid rgba(240, 233, 220, 0.2);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(240, 233, 220, 0.14), rgba(240, 233, 220, 0.06)),
    rgba(16, 47, 39, 0.62);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px);
}

.mini-label {
  display: inline-flex;
  color: var(--moss);
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-intelligence strong {
  display: block;
  margin-top: 16px;
  color: #f0e9dc;
  font-size: clamp(1.22rem, 2vw, 1.75rem);
  line-height: 1.14;
}

.hero-metrics {
  display: grid;
  gap: 1px;
  margin-top: 28px;
  overflow: hidden;
  border: 1px solid rgba(240, 233, 220, 0.13);
  border-radius: 8px;
  background: rgba(240, 233, 220, 0.12);
}

.hero-metrics div {
  padding: 18px;
  background: rgba(240, 233, 220, 0.07);
}

.hero-metrics b,
.hero-metrics span {
  display: block;
}

.hero-metrics b {
  color: var(--leaf);
  font-size: 1.35rem;
  line-height: 1;
}

.hero-metrics span {
  margin-top: 5px;
  color: rgba(240, 233, 220, 0.68);
  font-size: 0.92rem;
}

.renewed-proof {
  position: relative;
  z-index: 4;
  margin-top: -38px;
}

.renewed-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid rgba(16, 47, 39, 0.14);
  border-radius: 8px;
  background: rgba(16, 47, 39, 0.12);
  box-shadow: 0 28px 80px rgba(16, 47, 39, 0.17);
}

.renewed-proof-grid div {
  padding: 28px;
  background: #f0e9dc;
}

.renewed-proof-grid span {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--clay);
  font-weight: 850;
}

.renewed-proof-grid strong {
  display: block;
  color: var(--forest);
  font-size: 1.42rem;
  line-height: 1;
}

.renewed-proof-grid p {
  margin-top: 10px;
  color: var(--muted);
}

.institution-trust,
.systems-philosophy,
.institution-domains,
.impact-stories,
.investment-experience,
.data-explainers,
.final-vision {
  background: #e4d9c8;
}

.institution-trust {
  padding-top: clamp(72px, 10vw, 132px);
}

.planetary-witness {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: #050f0c;
  color: #f0e9dc;
  padding-bottom: clamp(56px, 9vh, 88px);
}

.planetary-witness img,
.planetary-witness::before,
.witness-veil {
  position: absolute;
  inset: 0;
}

.planetary-witness img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.35) saturate(0.65) brightness(0.58) contrast(1.12);
  animation: atmosphericDrift 34s ease-in-out infinite alternate;
}

@media (prefers-reduced-motion: reduce) {
  .planetary-witness img {
    animation: none;
  }
}

.planetary-witness::before {
  content: "";
  z-index: 1;
  background:
    linear-gradient(
      180deg,
      rgba(5, 15, 12, 0.52) 0%,
      rgba(5, 15, 12, 0.06) 16%,
      rgba(5, 15, 12, 0) 38%,
      rgba(5, 15, 12, 0.18) 62%,
      rgba(5, 15, 12, 0.78) 100%
    ),
    radial-gradient(
      ellipse 58% 72% at 0% 72%,
      rgba(5, 15, 12, 0.58),
      transparent 64%
    );
}

.witness-veil {
  z-index: 2;
  opacity: 0.09;
  background:
    linear-gradient(rgba(240, 233, 220, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(240, 233, 220, 0.03) 1px, transparent 1px);
  background-size: 88px 88px;
}

.witness-copy {
  position: relative;
  z-index: 3;
  max-width: 1120px;
}

.witness-copy .section-kicker {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: clamp(24px, 4vh, 40px);
}

.witness-copy .section-kicker::before {
  content: "";
  flex-shrink: 0;
  width: 22px;
  height: 1px;
  background: var(--sand);
  opacity: 0.85;
}

.witness-copy h2 {
  font-family: var(--font-display);
  font-weight: 300;
  font-variation-settings: "opsz" 144;
  max-width: 18ch;
  color: #f0e9dc;
  font-size: clamp(3.2rem, 8vw, 10rem);
  line-height: 0.88;
  letter-spacing: -0.03em;
}

.witness-copy p {
  max-width: 560px;
  margin-top: 32px;
  color: rgba(240, 233, 220, 0.66);
  font-size: clamp(1rem, 1.45vw, 1.2rem);
  line-height: 1.68;
}

.witness-annotations {
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
}

.witness-annotations span {
  position: absolute;
  padding: 6px 10px;
  border: 1px solid rgba(240, 233, 220, 0.12);
  border-radius: 999px;
  background: rgba(5, 15, 12, 0.22);
  color: rgba(240, 233, 220, 0.48);
  font-size: 0.66rem;
  font-weight: 550;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  backdrop-filter: blur(6px);
}

.witness-annotations span:nth-child(1) { right: 8%;  top: 20%; }
.witness-annotations span:nth-child(2) { right: 22%; top: 46%; }
.witness-annotations span:nth-child(3) { right: 8%;  bottom: 34%; }
.witness-annotations span:nth-child(4) { left: 48%; top: 14%; }

.trust-grid,
.systems-grid,
.investment-experience-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(34px, 6vw, 84px);
  align-items: center;
}

.trust-copy .section-title {
  font-size: clamp(2.7rem, 6.8vw, 6.6rem);
  line-height: 0.9;
  letter-spacing: -0.04em;
}

.trust-ledger {
  display: grid;
  border-top: 1px solid rgba(16, 47, 39, 0.16);
}

.trust-ledger article {
  display: grid;
  grid-template-columns: 54px minmax(0, 0.6fr) minmax(0, 1fr);
  gap: 24px;
  align-items: start;
  padding: 28px 0;
  border-bottom: 1px solid rgba(16, 47, 39, 0.16);
}

.trust-ledger span {
  color: var(--clay);
  font-weight: 900;
}

.trust-ledger strong {
  color: var(--forest);
  font-size: clamp(1.2rem, 2vw, 1.65rem);
  line-height: 1;
}

.trust-ledger p {
  margin: 0;
  color: var(--muted);
}

.systems-philosophy {
  background:
    radial-gradient(circle at 78% 18%, rgba(199, 168, 120, 0.12), transparent 28%),
    #0c211b;
  color: #f0e9dc;
}

.systems-philosophy .section-title {
  color: #f0e9dc;
}

.systems-philosophy p {
  color: rgba(240, 233, 220, 0.72);
}

.systems-orbit {
  position: relative;
  min-height: 520px;
  border: 1px solid rgba(240, 233, 220, 0.14);
  border-radius: 8px;
  background:
    radial-gradient(circle at 50% 50%, rgba(199, 168, 120, 0.18), transparent 18%),
    linear-gradient(135deg, rgba(240, 233, 220, 0.09), rgba(240, 233, 220, 0.02));
  overflow: hidden;
}

.orbit-core,
.orbit-node,
.orbit-ring {
  position: absolute;
}

.orbit-core {
  left: 50%;
  top: 50%;
  display: grid;
  place-items: center;
  width: 132px;
  height: 132px;
  border-radius: 50%;
  background: #f0e9dc;
  color: var(--forest);
  font-weight: 900;
  transform: translate(-50%, -50%);
}

.orbit-ring {
  left: 50%;
  top: 50%;
  border: 1px solid rgba(240, 233, 220, 0.22);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.ring-1 {
  width: 290px;
  height: 290px;
}

.ring-2 {
  width: 430px;
  height: 430px;
}

.orbit-node {
  padding: 10px 12px;
  border: 1px solid rgba(240, 233, 220, 0.18);
  border-radius: 999px;
  background: rgba(240, 233, 220, 0.08);
  color: #f0e9dc;
  font-size: 0.8rem;
  font-weight: 850;
}

.node-1 { left: 18%; top: 28%; }
.node-2 { right: 14%; top: 24%; }
.node-3 { left: 14%; bottom: 20%; }
.node-4 { right: 18%; bottom: 26%; }

.institution-domains {
  background: #07150f;
  color: #f0e9dc;
}

.domain-head,
.impact-head,
.data-head {
  max-width: 980px;
  margin-bottom: 36px;
}

.institution-domains .section-title,
.impact-stories .section-title,
.data-explainers .section-title {
  color: inherit;
}

.domain-cinema-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-rows: minmax(150px, auto);
  gap: 1px;
  min-height: 760px;
  border: 1px solid rgba(240, 233, 220, 0.12);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(240, 233, 220, 0.12);
}

.domain-cinema-card {
  position: relative;
  display: flex;
  min-height: 100%;
  min-width: 0;
  padding: 24px;
  color: #f0e9dc;
  overflow: hidden;
  border-right: 1px solid rgba(240, 233, 220, 0.12);
  transition: flex 0.35s ease, filter 0.35s ease;
}

.domain-cinema-card:nth-child(1) { grid-column: span 7; grid-row: span 3; }
.domain-cinema-card:nth-child(2) { grid-column: span 5; grid-row: span 2; }
.domain-cinema-card:nth-child(3) { grid-column: span 5; grid-row: span 3; }
.domain-cinema-card:nth-child(4) { grid-column: span 4; grid-row: span 2; }
.domain-cinema-card:nth-child(5) { grid-column: span 4; grid-row: span 2; }
.domain-cinema-card:nth-child(6) { grid-column: span 4; grid-row: span 2; }

.domain-cinema-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.42;
  filter: grayscale(0.35) contrast(1.08) brightness(0.72);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.domain-cinema-card:hover img {
  opacity: 0.68;
  transform: scale(1.05);
}

.domain-cinema-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(0deg, rgba(5, 15, 12, 0.92), rgba(5, 15, 12, 0.1));
}

.domain-cinema-card span,
.domain-cinema-card div {
  position: relative;
  z-index: 2;
}

.domain-cinema-card span {
  color: var(--leaf);
  font-weight: 900;
}

.domain-cinema-card div {
  align-self: flex-end;
}

.domain-cinema-card h3 {
  color: #f0e9dc;
  font-size: clamp(1.7rem, 3vw, 3.1rem);
  line-height: 0.95;
  writing-mode: horizontal-tb;
  transform: none;
  transition: transform 0.2s ease;
}

.domain-cinema-card p {
  max-width: 26ch;
  margin-top: 12px;
  color: rgba(240, 233, 220, 0.72);
}

.domain-cinema-card:nth-child(1) h3,
.domain-cinema-card:nth-child(3) h3 {
  font-size: clamp(2.7rem, 6vw, 6.6rem);
  letter-spacing: -0.05em;
}

.field-charter {
  position: relative;
  overflow: hidden;
  background: #e4d9c8;
}

.field-charter-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(34px, 7vw, 96px);
  align-items: center;
}

.field-charter-image {
  position: relative;
  min-height: 680px;
  overflow: hidden;
  border-radius: 8px;
}

.field-charter-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.7) brightness(0.82);
}

.field-charter-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(5, 15, 12, 0.58), transparent 58%),
    radial-gradient(circle at 72% 20%, rgba(199, 168, 120, 0.18), transparent 24%);
}

.field-charter-copy h2 {
  max-width: 850px;
  color: var(--forest);
  font-size: clamp(3.4rem, 8vw, 9rem);
  line-height: 0.82;
  letter-spacing: -0.055em;
}

.field-charter-copy p {
  max-width: 620px;
  margin-top: 24px;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.55vw, 1.28rem);
  line-height: 1.62;
}

.field-charter-copy div {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.field-charter-copy b {
  padding: 10px 12px;
  border: 1px solid rgba(16, 47, 39, 0.14);
  border-radius: 999px;
  background: rgba(240, 233, 220, 0.7);
  color: var(--forest);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.impact-stories {
  background: #e8dfce;
}

.impact-story-stack {
  display: grid;
  gap: 18px;
}

.impact-story {
  position: sticky;
  top: 96px;
  display: grid;
  min-height: 520px;
  overflow: hidden;
  border-radius: 8px;
  color: #f0e9dc;
  box-shadow: 0 34px 90px rgba(16, 47, 39, 0.18);
}

.impact-story img,
.impact-story::before {
  grid-area: 1 / 1;
}

.impact-story img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.74) contrast(1.1) brightness(0.7);
}

.impact-story::before {
  content: "";
  z-index: 1;
  background: linear-gradient(90deg, rgba(5, 15, 12, 0.94), rgba(5, 15, 12, 0.34));
}

.impact-story div {
  grid-area: 1 / 1;
  z-index: 2;
  align-self: end;
  max-width: 720px;
  padding: clamp(30px, 6vw, 70px);
}

.impact-story span {
  color: var(--leaf);
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.impact-story h3 {
  margin-top: 18px;
  color: #f0e9dc;
  font-size: clamp(3rem, 7vw, 7.2rem);
  line-height: 0.86;
  letter-spacing: -0.04em;
}

.impact-story p {
  max-width: 56ch;
  margin-top: 20px;
  color: rgba(240, 233, 220, 0.76);
}

.investment-experience {
  background: #0f2d25;
  color: #f0e9dc;
}

.investment-experience .section-title {
  color: #f0e9dc;
}

.investment-experience p {
  color: rgba(240, 233, 220, 0.72);
}

.investment-map {
  position: relative;
  min-height: 520px;
  border: 1px solid rgba(240, 233, 220, 0.16);
  border-radius: 8px;
  background:
    radial-gradient(circle at 72% 38%, rgba(199, 168, 120, 0.18), transparent 20%),
    radial-gradient(circle at 42% 52%, rgba(176, 111, 66, 0.18), transparent 18%),
    linear-gradient(135deg, rgba(240, 233, 220, 0.09), rgba(240, 233, 220, 0.02));
  overflow: hidden;
}

.investment-map::before {
  content: "";
  position: absolute;
  inset: 12%;
  border: 1px solid rgba(240, 233, 220, 0.12);
  border-radius: 50%;
  transform: rotate(-18deg);
}

.map-region {
  position: absolute;
  display: grid;
  place-items: center;
  width: 134px;
  height: 134px;
  border-radius: 50%;
  background: rgba(240, 233, 220, 0.92);
  color: var(--forest);
  font-weight: 900;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.map-region.india {
  right: 18%;
  top: 26%;
}

.map-region.africa {
  left: 20%;
  bottom: 26%;
}

.map-line {
  position: absolute;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(199, 168, 120, 0.74), transparent);
  transform-origin: left center;
}

.line-1 {
  left: 28%;
  top: 56%;
  width: 46%;
  transform: rotate(-25deg);
}

.line-2 {
  left: 24%;
  top: 62%;
  width: 54%;
  transform: rotate(18deg);
}

.data-explainers {
  background: #e4d9c8;
}

.carbon-flow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid rgba(16, 47, 39, 0.16);
  border-radius: 8px;
  overflow: hidden;
}

.carbon-flow article {
  min-height: 260px;
  padding: 28px;
  border-right: 1px solid rgba(16, 47, 39, 0.14);
  background:
    radial-gradient(circle at 92% 10%, rgba(199, 168, 120, 0.18), transparent 30%),
    rgba(240, 233, 220, 0.6);
}

.carbon-flow span {
  color: var(--clay);
  font-weight: 900;
}

.carbon-flow strong {
  display: block;
  margin-top: 100px;
  color: var(--forest);
  font-size: clamp(1.45rem, 2.2vw, 2.2rem);
  line-height: 0.95;
}

.carbon-flow p {
  margin-top: 10px;
  color: var(--muted);
}

.final-vision {
  position: relative;
  min-height: 720px;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: #07150f;
  color: #f0e9dc;
}

.final-vision img,
.final-vision::before {
  position: absolute;
  inset: 0;
}

.final-vision img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
  filter: saturate(0.7) brightness(0.68);
}

.final-vision::before {
  content: "";
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(5, 15, 12, 0.94), rgba(5, 15, 12, 0.36)),
    linear-gradient(0deg, rgba(5, 15, 12, 0.98), transparent 66%);
}

.final-vision-copy {
  position: relative;
  z-index: 2;
  max-width: 1120px;
  padding-bottom: clamp(58px, 8vw, 100px);
}

.final-vision-copy h2 {
  max-width: 1050px;
  color: #f0e9dc;
  font-size: clamp(3.5rem, 8vw, 8.8rem);
  line-height: 0.85;
  letter-spacing: -0.045em;
}

@keyframes atmosphericDrift {
  from { transform: translate3d(-1%, 0, 0) scale(1); }
  to { transform: translate3d(2%, -1%, 0) scale(1.04); }
}

@keyframes particleDrift {
  from { background-position: 0 0, 0 0; }
  to { background-position: 240px 180px, -180px 240px; }
}

/* ── Client / Partner logos strip ─────────────────────────────── */
.client-logos {
  overflow: hidden;
  padding: 48px 0 44px;
  background: var(--paper);
  border-top: 1px solid rgba(16, 47, 39, 0.1);
  border-bottom: 1px solid rgba(16, 47, 39, 0.1);
}

.client-logos-inner {
  text-align: center;
}

.client-logos-label {
  font-family: "Inter Tight", sans-serif;
  font-size: clamp(0.7rem, 1.1vw, 0.82rem);
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: rgba(16, 47, 39, 0.45);
  margin-bottom: 28px;
}

.client-logos-track {
  display: flex;
  align-items: center;
  gap: 32px;
  width: max-content;
  animation: climateMarquee 44s linear infinite;
  padding: 0 16px;
}

.client-logos-track:hover {
  animation-play-state: paused;
}

.client-logo-item {
  flex-shrink: 0;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  overflow: hidden;
  background: #fff;
  border: 1.5px solid rgba(16, 47, 39, 0.12);
  box-shadow: 0 2px 14px rgba(16, 47, 39, 0.07);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.client-logo-item:hover {
  box-shadow: 0 4px 24px rgba(16, 47, 39, 0.15);
  transform: scale(1.06);
}

.client-logo-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 8px;
  display: block;
  box-sizing: border-box;
}

.climate-marquee {
  overflow: hidden;
  border-top: 1px solid rgba(16, 47, 39, 0.12);
  border-bottom: 1px solid rgba(16, 47, 39, 0.12);
  background: #102f27;
  color: #f0e9dc;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: climateMarquee 30s linear infinite;
}

.marquee-track span {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  padding: 18px 24px;
  color: rgba(240, 233, 220, 0.78);
  font-size: clamp(0.86rem, 1.4vw, 1.06rem);
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.marquee-track span::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--leaf);
  box-shadow: 0 0 24px rgba(199, 168, 120, 0.72);
}

.section.climate-action-room {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 14% 18%, rgba(199, 168, 120, 0.18), transparent 25%),
    radial-gradient(circle at 82% 12%, rgba(176, 111, 66, 0.18), transparent 30%),
    linear-gradient(135deg, #081915, #102f27 58%, #183b30);
  color: #f0e9dc;
}

.climate-action-room::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(240, 233, 220, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(240, 233, 220, 0.035) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(circle at 70% 25%, black, transparent 72%);
  pointer-events: none;
}

.action-room-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(34px, 6vw, 84px);
  align-items: center;
}

.action-room-copy {
  position: sticky;
  top: 126px;
}

.action-room-copy .section-title,
.climate-action-room .section-title {
  color: #f0e9dc;
}

.action-room-copy p {
  margin-top: 20px;
  color: rgba(240, 233, 220, 0.72);
}

.action-room-cards {
  display: grid;
  gap: 16px;
  perspective: 1200px;
}

.action-room-card {
  position: relative;
  min-height: 230px;
  padding: clamp(24px, 4vw, 34px);
  border: 1px solid rgba(240, 233, 220, 0.15);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(240, 233, 220, 0.14), rgba(240, 233, 220, 0.045)),
    rgba(240, 233, 220, 0.05);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.18);
  transform-style: preserve-3d;
  transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

.action-room-card:hover {
  border-color: rgba(199, 168, 120, 0.55);
  background:
    radial-gradient(circle at 90% 10%, rgba(199, 168, 120, 0.16), transparent 30%),
    linear-gradient(135deg, rgba(240, 233, 220, 0.16), rgba(240, 233, 220, 0.055));
}

.action-room-card span {
  color: var(--leaf);
  font-weight: 900;
}

.action-room-card h3 {
  margin-top: 46px;
  color: #f0e9dc;
  font-size: clamp(2.2rem, 4vw, 4.2rem);
  line-height: 0.9;
}

.action-room-card p {
  max-width: 60ch;
  margin-top: 14px;
  color: rgba(240, 233, 220, 0.72);
}

.action-room-card div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.action-room-card b {
  padding: 8px 10px;
  border: 1px solid rgba(240, 233, 220, 0.14);
  border-radius: 999px;
  background: rgba(240, 233, 220, 0.08);
  color: #f0e9dc;
  font-size: 0.78rem;
}

.advisory-matrix {
  background:
    radial-gradient(circle at 80% 12%, rgba(166, 109, 66, 0.1), transparent 28%),
    var(--paper);
}

.advisory-matrix-head {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: end;
  margin-bottom: 28px;
}

.advisory-matrix-head p {
  color: var(--muted);
  font-size: 1.04rem;
}

.advisory-matrix-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
  box-shadow: 0 28px 80px rgba(16, 47, 39, 0.1);
}

.advisory-card {
  position: relative;
  min-height: 320px;
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 28px 24px 24px;
  background:
    radial-gradient(ellipse at 90% 0%, rgba(199, 168, 120, 0.2), transparent 38%),
    linear-gradient(180deg, #f0e9dc, #e8dfce);
  transition: background 0.28s ease, transform 0.28s ease, box-shadow 0.28s ease;
}

.advisory-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(16, 47, 39, 0.1);
  background:
    radial-gradient(ellipse at 90% 0%, rgba(199, 168, 120, 0.3), transparent 38%),
    #f0e9dc;
}

.advisory-card:hover .advisory-arrow {
  color: var(--clay);
  transform: translate(2px, -2px);
}

/* Index number */
.advisory-index {
  color: var(--clay);
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.advisory-visual {
  position: relative;
  min-height: 138px;
  margin: 20px 0 18px;
  overflow: hidden;
  border: 1px solid rgba(16, 47, 39, 0.1);
  border-radius: 6px;
  background:
    radial-gradient(circle at 20% 26%, rgba(166, 109, 66, 0.2), transparent 14%),
    radial-gradient(circle at 78% 72%, rgba(199, 168, 120, 0.2), transparent 16%),
    linear-gradient(rgba(16, 47, 39, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 47, 39, 0.05) 1px, transparent 1px),
    linear-gradient(140deg, rgba(193, 180, 154, 0.5), rgba(240, 233, 220, 0.35));
  background-size: 100% 100%, 100% 100%, 20px 20px, 20px 20px, 100% 100%;
}

.advisory-visual::before,
.advisory-visual::after {
  content: "";
  position: absolute;
  border-radius: 50%;
}

.advisory-visual::before {
  width: 100px;
  height: 100px;
  right: 18px;
  top: 16px;
  border: 1.5px solid rgba(16, 47, 39, 0.24);
  box-shadow:
    inset 0 0 0 18px rgba(199, 168, 120, 0.15),
    -72px 22px 0 -24px rgba(166, 109, 66, 0.24);
}

.advisory-visual::after {
  width: 32px;
  height: 32px;
  left: 22px;
  bottom: 20px;
  background: rgba(199, 168, 120, 0.72);
  box-shadow:
    46px -38px 0 rgba(166, 109, 66, 0.42),
    88px -10px 0 rgba(16, 47, 39, 0.16);
}

/* Visual 2 — organic blob variant */
.visual-2::before {
  border-radius: 46% 54% 56% 44% / 44% 48% 52% 56%;
  transform: rotate(22deg);
}

/* Visual 3 — diagonal slash composition */
.visual-3 {
  background:
    linear-gradient(132deg, transparent 44%, rgba(16, 47, 39, 0.18) 44.5% 46.5%, transparent 47%),
    linear-gradient(132deg, transparent 54%, rgba(199, 168, 120, 0.32) 54.5% 56.5%, transparent 57%),
    radial-gradient(circle at 22% 62%, rgba(199, 168, 120, 0.32), transparent 18%),
    linear-gradient(rgba(16, 47, 39, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 47, 39, 0.05) 1px, transparent 1px),
    linear-gradient(140deg, rgba(193, 180, 154, 0.5), rgba(240, 233, 220, 0.35));
  background-size: 100% 100%, 100% 100%, 100% 100%, 20px 20px, 20px 20px, 100% 100%;
}

/* Visual 4 — column/bar chart composition */
.visual-4 {
  background:
    linear-gradient(to top, rgba(166, 109, 66, 0.38) 52%, transparent 52%),
    linear-gradient(to top, rgba(199, 168, 120, 0.28) 72%, transparent 72%),
    linear-gradient(to top, rgba(16, 47, 39, 0.16) 36%, transparent 36%),
    linear-gradient(rgba(16, 47, 39, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 47, 39, 0.05) 1px, transparent 1px),
    linear-gradient(140deg, rgba(193, 180, 154, 0.5), rgba(240, 233, 220, 0.35));
  background-size: 28% 100%, 28% 100%, 28% 100%, 20px 20px, 20px 20px, 100% 100%;
  background-position: 14% 100%, 46% 100%, 78% 100%, 0 0, 0 0, 0 0;
  background-repeat: no-repeat, no-repeat, no-repeat, repeat, repeat, no-repeat;
}

.visual-4::before {
  width: 80px;
  height: 50px;
  border-radius: 999px;
  top: 18px;
  right: 16px;
  border: 1.5px solid rgba(16, 47, 39, 0.2);
  box-shadow: inset 0 0 0 14px rgba(199, 168, 120, 0.14);
}

/* Label — editorial italic, not pill */
.advisory-label {
  margin-bottom: 8px;
  color: var(--muted);
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0.02em;
}

/* Title — Fraunces display serif */
.advisory-title {
  font-family: var(--font-display);
  color: var(--forest);
  font-size: clamp(1.25rem, 1.8vw, 1.75rem);
  font-weight: 600;
  line-height: 1.08;
  font-style: italic;
}

.advisory-card p {
  flex: 1;
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.55;
}

/* Arrow indicator */
.advisory-arrow {
  align-self: flex-end;
  margin-top: 20px;
  color: rgba(166, 109, 66, 0.5);
  font-size: 1rem;
  transition: color 0.22s ease, transform 0.22s ease;
}

.renewed-manifesto {
  background:
    linear-gradient(90deg, rgba(193, 180, 154, 0.32), transparent 36%),
    var(--paper);
}

.manifesto-grid {
  display: grid;
  grid-template-columns: minmax(180px, 0.48fr) minmax(0, 1fr);
  gap: clamp(32px, 6vw, 86px);
  align-items: start;
}

.manifesto-mark {
  position: sticky;
  top: 122px;
  font-size: clamp(3.2rem, 7.8vw, 7.2rem);
  font-weight: 850;
  line-height: 0.84;
  letter-spacing: 0;
  text-transform: uppercase;
  background: linear-gradient(160deg, #e85c1a 0%, #c47a2a 35%, #4a9e6b 70%, #1a6b45 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.renewed-pathways {
  background: #17372e;
  color: #f0e9dc;
}

.pathway-head {
  display: grid;
  grid-template-columns: 0.42fr 1fr;
  gap: 44px;
  align-items: end;
  margin-bottom: 38px;
}

.pathway-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.pathway-card {
  position: relative;
  min-height: 472px;
  display: flex;
  align-items: end;
  overflow: hidden;
  border: 1px solid rgba(240, 233, 220, 0.14);
  border-radius: 8px;
  background: #102f27;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
  transition: transform 0.28s ease, border-color 0.28s ease;
}

.pathway-card:hover {
  transform: translateY(-8px);
  border-color: rgba(193, 180, 154, 0.58);
}

.pathway-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.68;
  transition: transform 0.55s ease, opacity 0.55s ease;
}

.pathway-card:hover img {
  transform: scale(1.06);
  opacity: 0.82;
}

.pathway-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(16, 47, 39, 0.05), rgba(16, 47, 39, 0.96)),
    linear-gradient(90deg, rgba(16, 47, 39, 0.5), transparent);
}

.pathway-body {
  position: relative;
  z-index: 2;
  padding: 28px;
}

.pathway-body h3 {
  margin-top: 12px;
  color: #f0e9dc;
  font-size: clamp(1.85rem, 2.8vw, 3rem);
  line-height: 1;
}

.pathway-body p {
  margin-top: 16px;
  color: rgba(240, 233, 220, 0.78);
}

.pathway-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.pathway-links a {
  padding: 8px 11px;
  border: 1px solid rgba(240, 233, 220, 0.18);
  border-radius: 999px;
  background: rgba(240, 233, 220, 0.1);
  color: #f0e9dc;
  font-size: 0.85rem;
  font-weight: 750;
}

.carbon-lab {
  background:
    linear-gradient(180deg, var(--paper), #e2d8c6);
}

.carbon-lab-grid {
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  gap: clamp(34px, 6vw, 78px);
  align-items: center;
}

.carbon-lab-media {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 34px 90px rgba(16, 47, 39, 0.2);
}

.carbon-lab-media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.carbon-chip {
  position: absolute;
  left: 20px;
  bottom: 20px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(240, 233, 220, 0.9);
  color: var(--forest);
  font-weight: 850;
}

.carbon-list {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.carbon-list a {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 17px 0;
  border-bottom: 1px solid var(--line);
  color: var(--forest);
  font-weight: 850;
}

.carbon-list a::after {
  content: "->";
  color: var(--clay);
}

.renewed-method {
  background:
    radial-gradient(circle at 18% 18%, rgba(199, 168, 120, 0.16), transparent 32%),
    linear-gradient(135deg, #102f27, #0b241e 64%, #17372e);
  color: #f0e9dc;
}

.method-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(34px, 6vw, 82px);
  align-items: start;
}

.method-intro {
  position: sticky;
  top: 122px;
}

.method-intro p {
  max-width: 620px;
  margin-top: 22px;
  color: rgba(240, 233, 220, 0.72);
  font-size: 1.05rem;
}

.method-scope {
  margin-top: 30px;
  padding: 22px;
  border: 1px solid rgba(240, 233, 220, 0.12);
  border-radius: 8px;
  background: rgba(240, 233, 220, 0.06);
}

.method-scope span {
  display: block;
  margin-bottom: 14px;
  color: var(--moss);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.method-scope div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.method-scope a {
  padding: 8px 10px;
  border: 1px solid rgba(240, 233, 220, 0.14);
  border-radius: 999px;
  background: rgba(240, 233, 220, 0.08);
  color: #f0e9dc;
  font-size: 0.86rem;
  font-weight: 750;
}

.method-stack {
  display: grid;
  gap: 14px;
}

.method-step {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 18px;
  padding: 26px;
  border: 1px solid rgba(240, 233, 220, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(240, 233, 220, 0.1), rgba(240, 233, 220, 0.045)),
    rgba(240, 233, 220, 0.04);
  transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

.method-step:hover {
  transform: translateX(6px);
  border-color: rgba(199, 168, 120, 0.44);
  background:
    linear-gradient(135deg, rgba(199, 168, 120, 0.12), rgba(240, 233, 220, 0.045)),
    rgba(240, 233, 220, 0.06);
}

.method-step span {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(199, 168, 120, 0.34);
  border-radius: 50%;
  color: var(--leaf);
  font-weight: 850;
}

.method-step h3 {
  color: #f0e9dc;
  font-size: clamp(1.45rem, 2.3vw, 2rem);
}

.method-step p {
  margin-top: 8px;
  color: rgba(240, 233, 220, 0.7);
}

.method-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.method-tags b {
  padding: 7px 9px;
  border-radius: 999px;
  background: rgba(193, 180, 154, 0.13);
  color: var(--moss);
  font-size: 0.78rem;
  font-weight: 850;
}

.project-pipeline {
  background:
    linear-gradient(135deg, rgba(16, 47, 39, 0.96), rgba(11, 36, 30, 0.98)),
    #102f27;
  color: #f0e9dc;
}

.project-pipeline-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: clamp(30px, 6vw, 78px);
  align-items: start;
}

.project-pipeline-copy {
  position: sticky;
  top: 122px;
}

.project-pipeline .section-title {
  color: #f0e9dc;
}

.project-pipeline-copy p {
  margin-top: 22px;
  color: rgba(240, 233, 220, 0.72);
}

.project-pipeline-copy .btn {
  margin-top: 28px;
}

.project-pipeline-list {
  display: grid;
  gap: 14px;
}

.project-pipeline-list a {
  position: relative;
  display: grid;
  grid-template-columns: minmax(148px, 0.38fr) minmax(0, 1fr);
  gap: clamp(18px, 3vw, 30px);
  align-items: center;
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid rgba(240, 233, 220, 0.14);
  border-radius: 8px;
  background:
    radial-gradient(circle at 100% 0%, rgba(199, 168, 120, 0.14), transparent 34%),
    rgba(240, 233, 220, 0.06);
  transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

.project-orbit {
  position: relative;
  display: block;
  width: 100%;
  min-height: 152px;
  border: 1px solid rgba(193, 180, 154, 0.24);
  border-radius: 8px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(16, 47, 39, 0.1), rgba(16, 47, 39, 0.62)),
    url("../images/covers/nature-cover.jpg") center / cover;
}

.project-orbit::before,
.project-orbit::after {
  content: "";
  position: absolute;
  border-radius: 50%;
}

.project-orbit::before {
  inset: 14px;
  border: 1px solid rgba(240, 233, 220, 0.34);
  border-radius: 7px;
}

.project-orbit::after {
  width: 86px;
  height: 86px;
  right: -20px;
  bottom: -30px;
  border: 1px solid rgba(240, 233, 220, 0.32);
  background: rgba(199, 168, 120, 0.32);
}

.project-orbit b {
  position: absolute;
  left: 20px;
  top: 18px;
  z-index: 1;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(240, 233, 220, 0.9);
  color: var(--forest);
  font-size: 0.8rem;
  font-style: normal;
  font-weight: 900;
}

.orbit-2 {
  background:
    linear-gradient(180deg, rgba(16, 47, 39, 0.08), rgba(16, 47, 39, 0.62)),
    url("../images/covers/solar-cover.jpg") center / cover;
}

.orbit-3 {
  background:
    linear-gradient(180deg, rgba(16, 47, 39, 0.08), rgba(16, 47, 39, 0.62)),
    url("../images/covers/community-cover.jpg") center / cover;
}

.orbit-2::after {
  background: rgba(166, 109, 66, 0.36);
}

.orbit-3::after {
  background: rgba(193, 180, 154, 0.34);
}

.project-pipeline-list span {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--moss);
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.project-pipeline-list a:hover {
  transform: translateX(6px);
  border-color: rgba(199, 168, 120, 0.46);
  background:
    radial-gradient(circle at 100% 0%, rgba(199, 168, 120, 0.2), transparent 34%),
    rgba(240, 233, 220, 0.08);
}

.project-pipeline-list strong {
  display: block;
  color: #f0e9dc;
  font-size: clamp(1.7rem, 3vw, 3rem);
  line-height: 1;
}

.project-pipeline-list p {
  max-width: 720px;
  margin-top: 12px;
  color: rgba(240, 233, 220, 0.72);
}

.renewed-quote {
  background: #e2d8c6;
}

/* Featured In section */
.section.our-wins {
  background:
    radial-gradient(circle at 8% 10%, rgba(199, 168, 120, 0.1), transparent 32%),
    radial-gradient(circle at 92% 90%, rgba(16, 47, 39, 0.4), transparent 36%),
    linear-gradient(160deg, #070f0d 0%, #0b2118 55%, #0a1710 100%);
  color: var(--paper-next);
}

.featured-in-head {
  max-width: 640px;
  margin-bottom: clamp(36px, 5vw, 56px);
}

.featured-in-allcaps {
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* ── Unified "Our Wins" grid ───────────────────────────────────── */
.wins-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: clamp(14px, 2vw, 24px);
}

.wins-card {
  margin: 0;
  display: flex;
  flex-direction: column;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(199, 168, 120, 0.15);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.wins-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.55);
}

.wins-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
  filter: saturate(0.88);
}

.wins-card figcaption {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 12px 14px;
  background: rgba(14, 23, 20, 0.72);
  flex: 1;
}

.wins-card figcaption strong {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--sand);
}

.wins-card figcaption span {
  font-family: var(--font-sans);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: rgba(240, 233, 220, 0.55);
}

/* Advisory overview grid */
.advisory-services-overview {
  background: var(--paper);
  color: var(--forest);
}

.advisory-overview-head {
  max-width: 680px;
  margin-bottom: clamp(40px, 6vw, 64px);
}

.advisory-overview-head p {
  font-family: var(--font-sans);
  font-size: clamp(14px, 1.3vw, 16px);
  line-height: 1.65;
  color: var(--clay);
  margin: 16px 0 0;
}

.advisory-domains-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 3vw, 40px);
}

.advisory-domain-card {
  background: rgba(16, 47, 39, 0.04);
  border: 1px solid rgba(16, 47, 39, 0.12);
  border-radius: 16px;
  padding: clamp(28px, 3.5vw, 48px);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.advisory-domain-num {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--sand);
}

.advisory-domain-title {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 400;
  color: var(--forest);
  margin: 0;
  line-height: 1.25;
  letter-spacing: -0.01em;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(16, 47, 39, 0.1);
}

.advisory-domain-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.advisory-domain-list li {
  font-family: var(--font-sans);
  font-size: clamp(13px, 1.3vw, 15px);
  line-height: 1.5;
  color: var(--forest);
  padding-left: 16px;
  position: relative;
}

.advisory-domain-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--sand);
}

.advisory-domain-list li span {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--clay);
  margin-top: 2px;
}

.advisory-domain-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  color: var(--forest);
  text-decoration: none;
  border-bottom: 1px solid var(--sand);
  padding-bottom: 4px;
  width: fit-content;
  transition: color 0.25s ease, border-color 0.25s ease;
}

.advisory-domain-link:hover {
  color: var(--clay);
  border-color: var(--clay);
}

@media (max-width: 840px) {
  .advisory-domains-grid {
    grid-template-columns: 1fr;
  }

}

@media (max-width: 560px) {
  .advisory-overview-grid {
    grid-template-columns: 1fr;
  }
  .advisory-overview-card {
    padding: 24px 20px;
  }
}

.client-proof-bridge {
  background:
    radial-gradient(circle at 14% 18%, rgba(199, 168, 120, 0.18), transparent 28%),
    radial-gradient(circle at 88% 12%, rgba(166, 109, 66, 0.14), transparent 26%),
    linear-gradient(180deg, #e2d8c6 0%, #f0e9dc 100%);
  color: var(--forest);
  padding-block: clamp(72px, 9vw, 128px);
}

.client-proof-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(30px, 6vw, 76px);
  align-items: center;
}

.client-proof-copy {
  padding: clamp(28px, 4vw, 46px);
  border-left: 6px solid var(--clay);
  border-radius: 8px;
  background: rgba(240, 233, 220, 0.78);
  box-shadow: 0 24px 70px rgba(16, 47, 39, 0.1);
}

.client-proof-copy .section-title {
  color: var(--forest);
  font-size: clamp(2rem, 4vw, 4.2rem);
}

.client-proof-copy p {
  max-width: 600px;
  margin-top: 22px;
  color: var(--muted);
  font-size: 1.06rem;
}

.client-proof-cards {
  display: grid;
  gap: 14px;
}

.client-proof-cards a {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 18px;
  padding: 24px;
  border: 1px solid rgba(16, 47, 39, 0.14);
  border-radius: 8px;
  background: rgba(240, 233, 220, 0.9);
  box-shadow: 0 18px 54px rgba(16, 47, 39, 0.1);
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.client-proof-cards a:hover {
  transform: translateY(-4px);
  border-color: rgba(199, 168, 120, 0.56);
  box-shadow: 0 26px 70px rgba(16, 47, 39, 0.14);
}

.client-proof-cards span {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(199, 168, 120, 0.42);
  border-radius: 50%;
  color: var(--leaf);
  font-weight: 850;
  background: rgba(199, 168, 120, 0.08);
  grid-row: span 2;
}

.client-proof-cards strong {
  display: block;
  color: var(--forest);
  font-size: clamp(1.25rem, 2vw, 1.7rem);
  line-height: 1.05;
}

.client-proof-cards p {
  margin-top: 8px;
  color: var(--muted);
}

.section.about-movement {
  background:
    radial-gradient(circle at 80% 20%, rgba(166, 109, 66, 0.16), transparent 28%),
    linear-gradient(135deg, #102f27, #0b241e);
  color: #f0e9dc;
}

.about-movement-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(34px, 6vw, 82px);
  align-items: start;
}

.about-movement-copy {
  position: sticky;
  top: 122px;
}

.about-movement .section-title {
  color: #f0e9dc;
}

.about-movement-copy p {
  max-width: 600px;
  margin-top: 22px;
  color: rgba(240, 233, 220, 0.72);
  font-size: 1.06rem;
}

.about-movement-list {
  display: grid;
  gap: 14px;
}

.about-movement-list article {
  display: grid;
  grid-template-columns: 62px minmax(0, 1fr);
  gap: 18px;
  padding: 24px;
  border: 1px solid rgba(240, 233, 220, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(240, 233, 220, 0.1), rgba(240, 233, 220, 0.045)),
    rgba(240, 233, 220, 0.04);
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.14);
}

.about-movement-list span {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(199, 168, 120, 0.42);
  border-radius: 50%;
  color: var(--leaf);
  font-weight: 850;
}

.about-movement-list strong {
  display: block;
  color: #f0e9dc;
  font-size: clamp(1.25rem, 2vw, 1.7rem);
  line-height: 1.05;
}

.about-movement-list p {
  margin-top: 8px;
  color: rgba(240, 233, 220, 0.72);
}

.service-hero {
  position: relative;
  min-height: 660px;
  align-items: stretch;
  background: #0c251f;
}

.service-hero::before {
  display: none;
}

.service-hero-media {
  opacity: 0.72;
  filter: saturate(0.8) contrast(1.08);
}

.service-hero-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(8, 25, 21, 0.95), rgba(8, 25, 21, 0.72) 46%, rgba(8, 25, 21, 0.2)),
    radial-gradient(circle at 78% 20%, rgba(166, 109, 66, 0.28), transparent 30%),
    linear-gradient(0deg, rgba(8, 25, 21, 0.86), rgba(8, 25, 21, 0.02) 58%);
}

.service-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
  gap: clamp(30px, 6vw, 76px);
  align-items: end;
  padding: clamp(132px, 17vh, 190px) 0 78px;
}

.service-hero-copy h1 {
  color: #f0e9dc;
  font-size: clamp(3.2rem, 5.8vw, 6rem);
  line-height: 0.93;
  overflow-wrap: break-word;
}

.service-hero-copy .lead {
  max-width: 720px;
  color: rgba(240, 233, 220, 0.8);
}

.service-brief {
  padding: 28px;
  border: 1px solid rgba(240, 233, 220, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(240, 233, 220, 0.14), rgba(240, 233, 220, 0.06)),
    rgba(16, 47, 39, 0.66);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(18px);
}

.service-brief strong {
  display: block;
  margin-top: 14px;
  color: #f0e9dc;
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  line-height: 1.08;
}

.service-brief ul {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.service-brief li {
  display: flex;
  gap: 10px;
  color: rgba(240, 233, 220, 0.76);
  font-weight: 700;
}

.service-brief li::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-top: 9px;
  border-radius: 50%;
  background: var(--leaf);
  flex: 0 0 auto;
}

.service-proof {
  position: relative;
  z-index: 3;
  margin-top: -38px;
}

.service-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid rgba(16, 47, 39, 0.14);
  border-radius: 8px;
  background: rgba(16, 47, 39, 0.12);
  box-shadow: 0 28px 80px rgba(16, 47, 39, 0.18);
}

.service-proof-grid div {
  padding: 30px;
  background: #f0e9dc;
}

.service-proof-grid span {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--clay);
  font-weight: 850;
}

.service-proof-grid strong {
  display: block;
  color: var(--forest);
  font-size: 1.7rem;
  line-height: 1;
}

.service-proof-grid p {
  margin-top: 10px;
  color: var(--muted);
}

.service-overview {
  background:
    linear-gradient(90deg, rgba(193, 180, 154, 0.28), transparent 42%),
    var(--paper);
}

.service-overview-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(34px, 6vw, 76px);
  align-items: start;
}

.service-overview-panel {
  padding: clamp(26px, 4vw, 42px);
  border-left: 6px solid var(--clay);
  border-radius: 8px;
  background: rgba(240, 233, 220, 0.78);
  box-shadow: 0 24px 70px rgba(16, 47, 39, 0.12);
}

.service-delivery {
  background:
    radial-gradient(circle at 12% 0%, rgba(199, 168, 120, 0.16), transparent 32%),
    linear-gradient(180deg, #f0e9dc, #e8dfce);
}

.service-delivery-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(34px, 6vw, 82px);
  align-items: start;
}

.service-delivery-copy {
  position: sticky;
  top: 122px;
}

.service-delivery-copy p {
  margin-top: 20px;
  color: var(--muted);
}

.service-delivery-steps {
  display: grid;
  gap: 12px;
}

.service-delivery-steps article {
  position: relative;
  min-height: auto;
  display: block;
  padding: clamp(20px, 3vw, 28px) clamp(100px, 12vw, 132px) clamp(20px, 3vw, 28px) clamp(96px, 10vw, 116px);
  border: 1px solid rgba(16, 47, 39, 0.14);
  border-radius: 8px;
  background:
    radial-gradient(circle at 96% 50%, rgba(199, 168, 120, 0.14), transparent 28%),
    linear-gradient(90deg, rgba(240, 233, 220, 0.98), rgba(232, 223, 206, 0.88)),
    rgba(240, 233, 220, 0.94);
  box-shadow: 0 18px 48px rgba(16, 47, 39, 0.08);
  overflow: hidden;
}

.service-delivery-steps article::after {
  content: "";
  position: absolute;
  right: 24px;
  top: 50%;
  width: 82px;
  height: 82px;
  border: 1px solid rgba(16, 47, 39, 0.1);
  border-radius: 50%;
  background:
    linear-gradient(135deg, transparent 46%, rgba(16, 47, 39, 0.12) 47% 49%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(199, 168, 120, 0.13), transparent 62%);
  transform: translateY(-50%);
}

.service-delivery-steps span {
  position: absolute;
  left: 28px;
  top: 26px;
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(199, 168, 120, 0.5);
  border-radius: 50%;
  color: var(--clay);
  font-weight: 900;
}

.service-delivery-steps strong {
  display: block;
  margin-top: 0;
  color: var(--forest);
  font-size: clamp(1.42rem, 2.2vw, 2rem);
  line-height: 1.05;
  max-width: none;
}

.service-delivery-steps p {
  margin-top: 8px;
  color: var(--muted);
  max-width: 56ch;
  position: relative;
  z-index: 1;
}

.service-scope {
  background: #17372e;
  color: #f0e9dc;
}

.service-scope-head {
  max-width: 920px;
  margin-bottom: 34px;
}

.service-scope .section-title {
  color: #f0e9dc;
}

.service-offer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.service-offer-card {
  position: relative;
  min-height: 176px;
  padding: 26px;
  border: 1px solid rgba(16, 47, 39, 0.16);
  border-radius: 8px;
  background:
    radial-gradient(circle at 92% 16%, rgba(199, 168, 120, 0.18), transparent 30%),
    linear-gradient(135deg, rgba(240, 233, 220, 0.98), rgba(232, 223, 206, 0.9));
  box-shadow: 0 18px 48px rgba(16, 47, 39, 0.08);
  overflow: hidden;
  transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

.service-offer-card::after {
  content: "";
  position: absolute;
  right: 22px;
  bottom: 22px;
  width: 78px;
  height: 78px;
  border: 1px solid rgba(16, 47, 39, 0.1);
  border-radius: 50%;
  background:
    linear-gradient(135deg, transparent 46%, rgba(16, 47, 39, 0.12) 47% 49%, transparent 50%),
    rgba(199, 168, 120, 0.08);
}

.service-offer-card:hover {
  transform: translateY(-6px);
  border-color: rgba(199, 168, 120, 0.58);
  background:
    radial-gradient(circle at 92% 16%, rgba(199, 168, 120, 0.24), transparent 30%),
    linear-gradient(135deg, #f0e9dc, #e4d9c8);
}

.service-offer-card span {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(199, 168, 120, 0.58);
  border-radius: 50%;
  color: var(--clay);
  font-weight: 850;
}

.service-offer-card h3 {
  position: relative;
  z-index: 1;
  margin-top: 22px;
  color: var(--forest);
  font-size: clamp(1.45rem, 2.2vw, 2rem);
}

.service-offer-card p {
  position: relative;
  z-index: 1;
  max-width: 34ch;
  margin-top: 12px;
  color: var(--muted);
}

.service-quote {
  background: #e2d8c6;
}

.investment-intro {
  background:
    radial-gradient(circle at 18% 0%, rgba(199, 168, 120, 0.16), transparent 30%),
    var(--paper);
}

.investment-intro-grid,
.event-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(34px, 6vw, 76px);
  align-items: start;
}

.investment-lanes {
  background: #17372e;
  color: #f0e9dc;
}

.investment-lanes .section-title {
  color: #f0e9dc;
}

.investment-lane-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.investment-lane-card {
  min-height: 340px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid rgba(240, 233, 220, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(240, 233, 220, 0.1), rgba(240, 233, 220, 0.02)),
    radial-gradient(circle at 100% 0%, rgba(199, 168, 120, 0.18), transparent 34%),
    rgba(7, 28, 22, 0.62);
  box-shadow: 0 28px 76px rgba(0, 0, 0, 0.18);
}

.investment-lane-card > span {
  color: var(--leaf);
  font-weight: 900;
}

.investment-lane-card h3 {
  margin-top: auto;
  color: #f0e9dc;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 0.95;
}

.investment-lane-card p {
  max-width: 56ch;
  margin-top: 16px;
  color: rgba(240, 233, 220, 0.72);
}

.investment-lane-card div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.investment-lane-card b {
  padding: 8px 10px;
  border: 1px solid rgba(240, 233, 220, 0.14);
  border-radius: 999px;
  background: rgba(240, 233, 220, 0.08);
  color: #f0e9dc;
  font-size: 0.78rem;
}

.event-hero .service-hero-scrim {
  background:
    linear-gradient(90deg, rgba(8, 25, 21, 0.96), rgba(8, 25, 21, 0.58) 54%, rgba(8, 25, 21, 0.16)),
    radial-gradient(circle at 78% 22%, rgba(166, 109, 66, 0.32), transparent 28%),
    linear-gradient(0deg, rgba(8, 25, 21, 0.9), rgba(8, 25, 21, 0.08) 62%);
}

.event-intro {
  background:
    linear-gradient(90deg, rgba(193, 180, 154, 0.25), transparent 44%),
    #f0e9dc;
}

.event-quote {
  padding: clamp(26px, 4vw, 44px);
  border-left: 6px solid var(--clay);
  border-radius: 8px;
  background: rgba(232, 223, 206, 0.88);
  box-shadow: 0 24px 70px rgba(16, 47, 39, 0.1);
}

.event-quote h2 {
  margin: 0;
  color: var(--forest);
  font-size: clamp(2.4rem, 5vw, 4.8rem);
  line-height: 0.95;
}

.section.event-inspired {
  background: #102f27;
  color: #f0e9dc;
}

.event-inspired .section-title {
  color: #f0e9dc;
}

.event-inspired .section-copy p {
  color: rgba(240, 233, 220, 0.68);
}

.inspiration-logo-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 32px;
}

.inspiration-logo-card {
  min-height: 190px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  border: 1px solid rgba(240, 233, 220, 0.16);
  border-radius: 8px;
  background:
    radial-gradient(circle at 90% 8%, rgba(199, 168, 120, 0.18), transparent 32%),
    rgba(240, 233, 220, 0.06);
}

.inspiration-logo-card.has-logo-image {
  background:
    radial-gradient(circle at 90% 8%, rgba(199, 168, 120, 0.14), transparent 32%),
    rgba(240, 233, 220, 0.08);
}

.inspiration-logo-image {
  display: grid;
  place-items: center;
  min-height: 104px;
  padding: 16px;
  border: 1px solid rgba(240, 233, 220, 0.16);
  border-radius: 8px;
  background: rgba(240, 233, 220, 0.96);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.2);
}

.inspiration-logo-image img {
  width: 100%;
  max-width: 260px;
  max-height: 92px;
  object-fit: contain;
}

.inspiration-logo-mark {
  display: grid;
  gap: 16px;
  justify-items: start;
}

.inspiration-logo-mark i {
  position: relative;
  display: block;
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, rgba(240, 233, 220, 0.92) 0 25%, transparent 26%),
    conic-gradient(from 18deg, #f0e9dc, #c7a878, #b06f42, #f0e9dc);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.22);
}

.inspiration-logo-mark i::after {
  content: "";
  position: absolute;
  inset: 13px;
  border: 2px solid rgba(16, 47, 39, 0.7);
  border-radius: 50%;
}

.inspiration-logo-mark strong {
  color: #f0e9dc;
  font-size: clamp(2.2rem, 4vw, 4.4rem);
  letter-spacing: -0.04em;
  line-height: 0.85;
}

.logo-fifa strong,
.logo-icc strong {
  font-weight: 900;
  letter-spacing: 0.02em;
}

.logo-fifa i {
  border-radius: 999px;
  background:
    radial-gradient(circle at 36% 36%, #f0e9dc 0 14%, transparent 15%),
    radial-gradient(circle at 64% 36%, #f0e9dc 0 14%, transparent 15%),
    radial-gradient(circle at 50% 62%, #f0e9dc 0 14%, transparent 15%),
    linear-gradient(135deg, #1d4f8f, #40a8c4 50%, #87c66a);
}

.logo-fifa i::after {
  inset: 18px;
  border-color: rgba(240, 233, 220, 0.74);
}

.logo-rath-yatra i {
  background:
    radial-gradient(circle at 50% 50%, #f0e9dc 0 11%, transparent 12%),
    repeating-conic-gradient(from 0deg, #b06f42 0 10deg, #f0e9dc 10deg 18deg),
    #b06f42;
}

.logo-rath-yatra i::after {
  inset: 7px;
  border: 3px solid rgba(240, 233, 220, 0.82);
}

.logo-rath-yatra strong {
  max-width: 260px;
  font-size: clamp(1.9rem, 3.3vw, 3.5rem);
  letter-spacing: -0.02em;
}

.logo-icc i {
  border-radius: 18px;
  background:
    linear-gradient(90deg, transparent 42%, rgba(240, 233, 220, 0.92) 42% 58%, transparent 58%),
    linear-gradient(0deg, transparent 42%, rgba(240, 233, 220, 0.92) 42% 58%, transparent 58%),
    linear-gradient(135deg, #17372e, #6aa34f 52%, #d7ddae);
}

.logo-icc i::after {
  inset: 11px;
  border-color: rgba(240, 233, 220, 0.7);
  border-radius: 12px;
}

.inspiration-logo-card span {
  color: rgba(240, 233, 220, 0.68);
}

.event-showcase {
  background:
    radial-gradient(circle at 85% 8%, rgba(199, 168, 120, 0.16), transparent 34%),
    #e8dfce;
}

.event-showcase-head {
  max-width: 900px;
  margin-bottom: 32px;
}

.event-showcase-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.event-showcase-card {
  overflow: hidden;
  border: 1px solid rgba(16, 47, 39, 0.14);
  border-radius: 8px;
  background: #f0e9dc;
  box-shadow: 0 22px 60px rgba(16, 47, 39, 0.1);
}

.event-showcase-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  filter: saturate(0.88) contrast(1.05);
}

.event-showcase-card div {
  padding: clamp(22px, 3vw, 32px);
}

.event-showcase-card h3 {
  color: var(--forest);
  font-size: clamp(2rem, 3.4vw, 3rem);
  line-height: 0.95;
}

.event-showcase-card p {
  margin-top: 14px;
  color: var(--muted);
}

.event-showcase-card ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.event-showcase-card li {
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(199, 168, 120, 0.18);
  color: var(--forest);
  font-size: 0.78rem;
  font-weight: 800;
}

a.event-showcase-card {
  text-decoration: none;
  cursor: pointer;
  display: block;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

a.event-showcase-card:hover {
  transform: translateY(-4px);
}

.event-showcase-cta {
  display: inline-block;
  margin-top: 16px;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  color: var(--clay);
  letter-spacing: 0.06em;
  border-bottom: 1px solid var(--sand);
  padding-bottom: 3px;
}

/* ── Wedding Case Study ── */
.section.wedding-case-study {
  background:
    radial-gradient(circle at 10% 8%, rgba(199, 168, 120, 0.13), transparent 30%),
    radial-gradient(circle at 90% 88%, rgba(166, 109, 66, 0.11), transparent 32%),
    linear-gradient(155deg, #060f0d 0%, #0b2118 52%, #080f0e);
  color: #f0e9dc;
}

.wedding-case-header {
  max-width: 940px;
  margin-bottom: 64px;
}

.wedding-case-headline {
  margin-top: 22px;
  color: #f0e9dc;
  font-size: clamp(2.1rem, 6.4vw, 5.6rem);
  line-height: 0.96;
  letter-spacing: -0.025em;
}

.wedding-case-lead {
  max-width: 700px;
  margin-top: 30px;
  color: rgba(240, 233, 220, 0.68);
  font-size: 1.08rem;
  line-height: 1.64;
}

.wedding-case-media {
  margin: 0 0 72px;
}

.wedding-case-media img {
  width: 100%;
  max-height: 600px;
  object-fit: cover;
  object-position: center 20%;
  border-radius: 8px;
  border: 1px solid rgba(240, 233, 220, 0.1);
  filter: saturate(0.9) contrast(1.05);
}

.wedding-case-media figcaption {
  margin-top: 14px;
  color: rgba(240, 233, 220, 0.38);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.wedding-stat-bar {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-bottom: 72px;
  border: 1px solid rgba(240, 233, 220, 0.1);
  border-radius: 8px;
  overflow: hidden;
}

.wedding-stat {
  padding: clamp(22px, 3.8vw, 44px) clamp(18px, 3vw, 36px);
  border-right: 1px solid rgba(240, 233, 220, 0.1);
  background: rgba(240, 233, 220, 0.038);
}

.wedding-stat:last-child {
  border-right: none;
}

.wedding-stat-num {
  display: block;
  color: #c7a878;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.8vw, 4rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.025em;
}

.wedding-stat-label {
  display: block;
  margin-top: 12px;
  color: rgba(240, 233, 220, 0.52);
  font-size: 0.8rem;
  line-height: 1.42;
  letter-spacing: 0.02em;
}

.wedding-pillar-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 72px;
}

.wedding-pillar {
  padding: clamp(22px, 3.2vw, 36px);
  border: 1px solid rgba(240, 233, 220, 0.11);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(240, 233, 220, 0.075), rgba(240, 233, 220, 0.025));
}

.wedding-pillar-title {
  display: block;
  margin-bottom: 12px;
  color: #f0e9dc;
  font-size: clamp(0.96rem, 1.5vw, 1.12rem);
  font-weight: 760;
  letter-spacing: 0.005em;
}

.wedding-pillar p {
  color: rgba(240, 233, 220, 0.62);
  font-size: 0.9rem;
  line-height: 1.6;
}

.wedding-credential {
  margin-bottom: 72px;
  padding: clamp(26px, 4.2vw, 52px);
  border: 1px solid rgba(199, 168, 120, 0.24);
  border-left: 3px solid #c7a878;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(199, 168, 120, 0.09), rgba(199, 168, 120, 0.03));
}

.wedding-credential-label {
  display: block;
  margin-bottom: 18px;
  color: #c7a878;
  font-size: 0.76rem;
  font-weight: 820;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.wedding-credential p {
  max-width: 800px;
  color: rgba(240, 233, 220, 0.8);
  font-size: clamp(0.98rem, 1.45vw, 1.12rem);
  line-height: 1.7;
}

.wedding-closing-quote {
  max-width: 860px;
  padding-top: 52px;
  border-top: 1px solid rgba(240, 233, 220, 0.12);
}

.wedding-closing-quote blockquote {
  margin: 0;
  color: #f0e9dc;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.4vw, 2.8rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1.2;
}

.wedding-closing-quote cite {
  display: block;
  margin-top: 24px;
  color: rgba(240, 233, 220, 0.46);
  font-size: 0.84rem;
  font-style: normal;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.page-hero {
  min-height: 560px;
}

.page-hero::before {
  background:
    linear-gradient(90deg, rgba(8, 25, 21, 0.94), rgba(8, 25, 21, 0.58) 54%, rgba(8, 25, 21, 0.12)),
    radial-gradient(circle at 78% 22%, rgba(166, 109, 66, 0.28), transparent 28%),
    linear-gradient(0deg, rgba(8, 25, 21, 0.86), rgba(8, 25, 21, 0.02) 60%);
}

.page-hero .hero-media {
  opacity: 0.72;
  filter: saturate(0.82) contrast(1.08);
}

.page-hero .hero-content {
  padding-bottom: 78px;
}

.page-hero .lead {
  color: rgba(240, 233, 220, 0.82);
}

.section:not(.renewed-method):not(.renewed-pathways):not(.section-dark):not(.service-scope) .card {
  background:
    linear-gradient(180deg, rgba(240, 233, 220, 0.96), rgba(240, 233, 220, 0.86)),
    #f0e9dc;
}

.team-card {
  background: #f0e9dc;
}

.team-card img {
  filter: saturate(0.92);
}

.contact-grid .form {
  border-top: 6px solid var(--clay);
  box-shadow: 0 28px 80px rgba(16, 47, 39, 0.14);
}

.proof-strip {
  position: relative;
  z-index: 3;
  margin-top: -54px;
  background: transparent;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(15, 51, 42, 0.12);
  border-radius: 8px;
  background: rgba(15, 51, 42, 0.12);
  box-shadow: 0 24px 60px rgba(15, 51, 42, 0.16);
}

.proof-grid div {
  padding: 26px;
  background: rgba(255, 253, 248, 0.94);
}

.proof-grid strong,
.proof-grid span {
  display: block;
}

.proof-grid strong {
  color: var(--forest);
  font-size: 1rem;
}

.proof-grid span {
  margin-top: 7px;
  color: var(--muted);
  font-size: 0.95rem;
}

.process-band {
  padding: 0;
  background: linear-gradient(180deg, var(--forest) 0 50%, var(--paper) 50% 100%);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(15, 51, 42, 0.12);
  border-radius: 8px;
  background: rgba(15, 51, 42, 0.12);
  box-shadow: 0 28px 70px rgba(15, 51, 42, 0.18);
}

.process-grid div {
  padding: 30px;
  background: #f0e9dc;
}

.process-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: var(--forest);
  color: var(--moss);
  font-weight: 850;
  font-size: 0.86rem;
}

.process-grid strong {
  display: block;
  color: var(--forest);
  font-size: 1.55rem;
  line-height: 1.05;
}

.process-grid p {
  margin-top: 10px;
  color: var(--muted);
}

.section {
  padding: clamp(80px, 8vw, 112px) 0;
  background: var(--paper);
}

.section-dark {
  color: #fff;
  background:
    linear-gradient(135deg, #0f332a, #173d33 58%, #254d3c);
}

.section-soft {
  background: #f3eddf;
}

.section.advisory-matrix {
  background:
    radial-gradient(circle at 80% 12%, rgba(166, 109, 66, 0.1), transparent 28%),
    var(--paper);
}

.section.project-pipeline {
  background:
    linear-gradient(135deg, rgba(16, 47, 39, 0.96), rgba(11, 36, 30, 0.98)),
    #102f27;
  color: #f0e9dc;
}

.section.service-scope {
  background:
    radial-gradient(circle at 90% 12%, rgba(199, 168, 120, 0.16), transparent 28%),
    linear-gradient(180deg, #f0e9dc, #e8dfce);
  color: var(--ink);
}

.section.service-delivery {
  background:
    radial-gradient(circle at 12% 0%, rgba(199, 168, 120, 0.16), transparent 32%),
    linear-gradient(180deg, #f0e9dc, #e8dfce);
}

.section.service-overview {
  background:
    linear-gradient(90deg, rgba(193, 180, 154, 0.28), transparent 42%),
    var(--paper);
}

.section.service-scope .section-kicker {
  color: var(--clay);
}

.section.service-scope .section-title {
  color: var(--forest);
}

.section.renewed-quote,
.section.service-quote {
  background: #e2d8c6;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 52px;
  align-items: center;
}

.section-title {
  max-width: 720px;
  font-size: clamp(2.2rem, 4.5vw, 4.7rem);
}

.section-kicker {
  margin-bottom: 14px;
  color: var(--clay);
  font-weight: 850;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.section-copy {
  display: grid;
  gap: 18px;
  color: var(--muted);
  font-size: 1.05rem;
}

.section-dark .section-copy {
  color: rgba(255, 255, 255, 0.76);
}

.feature-image {
  overflow: hidden;
  border: 1px solid rgba(15, 51, 42, 0.1);
  border-radius: 8px;
  box-shadow: 0 28px 70px rgba(15, 51, 42, 0.18);
}

.feature-image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.feature-image:hover img {
  transform: scale(1.04);
}

.grid {
  display: grid;
  gap: 22px;
}

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

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

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

.card {
  position: relative;
  overflow: hidden;
  min-height: 100%;
  border: 1px solid rgba(15, 51, 42, 0.11);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 44px rgba(15, 51, 42, 0.09);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.card:hover {
  transform: translateY(-5px);
  border-color: rgba(199, 168, 120, 0.58);
  box-shadow: var(--shadow);
}

.card-img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.card-body {
  padding: 30px;
}

.card h3,
.card h4 {
  font-size: 1.25rem;
  margin-bottom: 10px;
}

.card h3::after,
.card h4::after {
  content: "";
  display: block;
  width: 34px;
  height: 3px;
  margin-top: 14px;
  border-radius: 999px;
  background: var(--clay);
}

.service-card h3::after,
.team-card h3::after {
  display: none;
}

.card p {
  color: var(--muted);
}

.service-card {
  color: #fff;
  min-height: 410px;
  display: flex;
  align-items: end;
  isolation: isolate;
}

.service-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
  transition: transform 0.45s ease;
}

.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(15, 51, 42, 0.06), rgba(15, 51, 42, 0.9));
}

.service-card:hover img {
  transform: scale(1.05);
}

.service-card .card-body {
  width: 100%;
}

.service-card p {
  color: rgba(255, 255, 255, 0.78);
}

.stat-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
}

.stat {
  padding: 28px;
  background: rgba(255, 255, 255, 0.06);
}

.stat strong {
  display: block;
  color: var(--leaf);
  font-size: 2rem;
  line-height: 1;
}

.stat span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.76);
}

.quote-band {
  padding: 58px;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(240, 233, 220, 0.94), rgba(240, 233, 220, 0.88)),
    var(--moss);
  color: var(--forest);
  box-shadow: 0 24px 60px rgba(15, 51, 42, 0.12);
}

.quote-band h2 {
  font-size: clamp(1.6rem, 3.2vw, 3.2rem);
  font-family: var(--font-display);
  font-weight: 300;
  font-variation-settings: "opsz" 144;
  letter-spacing: -0.02em;
  line-height: 1.12;
}

.quote-attr {
  margin-top: 24px;
  font-size: 0.82rem;
  font-weight: 550;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.6;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.pill {
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--forest);
  font-weight: 750;
}

.accordion {
  border-top: 1px solid var(--line);
}

.accordion-item {
  border-bottom: 1px solid var(--line);
}

.accordion-button {
  width: 100%;
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 0;
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-size: clamp(1.35rem, 3vw, 2.45rem);
  font-weight: 850;
  text-align: left;
  cursor: pointer;
}

.accordion-button::after {
  content: "+";
  color: var(--clay);
}

.accordion-button[aria-expanded="true"]::after {
  content: "-";
}

.accordion-panel {
  display: none;
  max-width: 780px;
  padding: 0 0 26px;
  color: var(--muted);
}

.accordion-panel.open {
  display: block;
}

.team-card img {
  width: 100%;
  aspect-ratio: 1 / 1.08;
  object-fit: cover;
  object-position: top center;
  background: var(--cream);
}

.team-grid {
  align-items: stretch;
}

.team-flip-card {
  min-height: 500px;
  perspective: 1200px;
  outline: none;
}

.team-flip-inner {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 560px;
  transform-style: preserve-3d;
  transition: transform 0.7s cubic-bezier(0.2, 0.75, 0.2, 1);
}

.team-flip-card:hover .team-flip-inner,
.team-flip-card:focus-within .team-flip-inner,
.team-flip-card.is-flipped .team-flip-inner {
  transform: rotateY(180deg);
}

.team-face {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border: 1px solid rgba(16, 47, 39, 0.14);
  border-radius: 8px;
  background: #f0e9dc;
  box-shadow: 0 24px 70px rgba(16, 47, 39, 0.12);
  backface-visibility: hidden;
}

.team-front {
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
}

.team-photo-wrap {
  position: relative;
  overflow: hidden;
  min-height: 315px;
}

.team-photo-wrap img {
  width: 100%;
  height: 100%;
  min-height: 315px;
  object-fit: cover;
  object-position: top center;
  background: var(--cream);
  filter: grayscale(1) contrast(1.05);
  display: block;
}

.team-name-plate {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px 20px 18px;
  background: linear-gradient(to top, rgba(10, 28, 22, 0.92) 0%, rgba(10, 28, 22, 0.6) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.team-name-plate strong {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 1.8vw, 1.35rem);
  font-weight: 500;
  color: var(--paper);
  line-height: 1.2;
}

.team-name-plate span {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sand);
  opacity: 0.85;
}

.team-info {
  padding: 16px 20px;
}

.team-info h3,
.team-back h3 {
  margin-top: 10px;
  color: var(--forest);
  font-size: clamp(1.35rem, 2.2vw, 2rem);
}

.team-contact {
  margin-top: 14px;
  overflow-wrap: anywhere;
  color: var(--muted);
  font-weight: 700;
  font-size: 0.95rem;
}

.team-back {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 32px;
  background:
    radial-gradient(circle at 20% 18%, rgba(199, 168, 120, 0.22), transparent 32%),
    linear-gradient(135deg, #102f27, #17372e);
  color: #f0e9dc;
  transform: rotateY(180deg);
}

.team-back .mini-label {
  color: var(--moss);
}

.team-back h3 {
  color: #f0e9dc;
}

.team-back p {
  margin-top: 18px;
  color: rgba(240, 233, 220, 0.76);
  font-size: 1.04rem;
}

.team-back-role {
  margin-top: 4px !important;
  font-size: 0.82rem !important;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sand) !important;
  opacity: 0.7;
}

.team-linkedin {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  padding-top: 24px;
  color: var(--sand);
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  transition: opacity 0.2s ease;
}

.team-linkedin:hover {
  opacity: 0.75;
}

.bio-note {
  margin-top: auto !important;
  padding-top: 24px;
  color: var(--moss) !important;
  font-weight: 800;
  font-size: 0.92rem !important;
}

.role {
  color: var(--clay);
  font-weight: 750;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 36px;
  align-items: start;
}

.contact-section {
  background:
    linear-gradient(90deg, rgba(193, 180, 154, 0.28), transparent 42%),
    var(--paper);
}

.contact-intro {
  display: grid;
  gap: 20px;
}

.contact-intro > p {
  color: var(--muted);
  font-size: 1.08rem;
}

.contact-info-panel,
.next-steps {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(240, 233, 220, 0.78);
  box-shadow: 0 18px 54px rgba(16, 47, 39, 0.1);
}

.contact-info-panel {
  display: grid;
  gap: 1px;
  overflow: hidden;
  padding: 0;
  background: rgba(16, 47, 39, 0.12);
}

.contact-info-panel div {
  display: grid;
  gap: 4px;
  padding: 18px;
  background: rgba(240, 233, 220, 0.88);
}

.contact-info-panel strong {
  color: var(--clay);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-info-panel a,
.contact-info-panel span {
  color: var(--forest);
  font-weight: 800;
}

.next-steps ol {
  display: grid;
  gap: 12px;
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
}

.next-steps li::marker {
  color: var(--clay);
  font-weight: 850;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.form {
  display: grid;
  gap: 14px;
}

.form input,
.form textarea,
.form select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 15px 16px;
  color: var(--ink);
  font: inherit;
}

.form textarea {
  min-height: 140px;
  resize: vertical;
}

.contact-form textarea {
  min-height: 180px;
}

.form-note {
  padding: 14px 16px;
  border-radius: 8px;
  background: rgba(199, 168, 120, 0.18);
  color: var(--forest);
  font-size: 0.95rem;
}

.site-footer {
  color: #fff;
  background: #0c2922;
}

.footer-cta {
  padding: 78px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.footer-title {
  font-size: clamp(2.4rem, 6vw, 5.2rem);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.footer-links h3 {
  margin-bottom: 12px;
  color: var(--leaf);
  font-size: 1rem;
}

.footer-links ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.76);
}

.footer-links a:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.92rem;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ── Stagger reveal delays for sibling card groups ── */
.advisory-matrix-grid .advisory-card.reveal:nth-child(2),
.method-stack .method-step.reveal:nth-child(2),
.service-offer-grid .service-offer-card.reveal:nth-child(2),
.action-room-cards .action-room-card.reveal:nth-child(2) {
  transition-delay: 0.1s;
}

.advisory-matrix-grid .advisory-card.reveal:nth-child(3),
.method-stack .method-step.reveal:nth-child(3),
.service-offer-grid .service-offer-card.reveal:nth-child(3),
.action-room-cards .action-room-card.reveal:nth-child(3) {
  transition-delay: 0.2s;
}

.advisory-matrix-grid .advisory-card.reveal:nth-child(4),
.method-stack .method-step.reveal:nth-child(4),
.service-offer-grid .service-offer-card.reveal:nth-child(4),
.action-room-cards .action-room-card.reveal:nth-child(4) {
  transition-delay: 0.3s;
}

@media (prefers-reduced-motion: reduce) {
  .advisory-matrix-grid .advisory-card.reveal,
  .method-stack .method-step.reveal,
  .service-offer-grid .service-offer-card.reveal,
  .action-room-cards .action-room-card.reveal {
    transition-delay: 0s;
  }
}

/* Final method-section override: keep the renewed operating model dark, compact, and readable. */
.section.renewed-method {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 18%, rgba(199, 168, 120, 0.18), transparent 26%),
    radial-gradient(circle at 86% 16%, rgba(166, 109, 66, 0.18), transparent 28%),
    linear-gradient(135deg, #102f27, #0b241e 62%, #17372e);
  color: #f0e9dc;
}

.section.renewed-method::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(240, 233, 220, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(240, 233, 220, 0.035) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(90deg, black, transparent 82%);
  pointer-events: none;
}

.section.renewed-method .container {
  position: relative;
  z-index: 1;
}

.section.renewed-method .section-title {
  color: #f0e9dc;
}

.section.renewed-method .section-kicker {
  color: var(--moss);
}

.section.renewed-method .method-intro p {
  color: rgba(240, 233, 220, 0.76);
}

.section.renewed-method .method-scope {
  border-color: rgba(240, 233, 220, 0.16);
  background: rgba(240, 233, 220, 0.08);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.16);
}

.section.renewed-method .method-scope a {
  border-color: rgba(193, 180, 154, 0.24);
  background: rgba(193, 180, 154, 0.1);
  color: #f0e9dc;
}

.section.renewed-method .method-stack {
  gap: 16px;
}

.section.renewed-method .method-step {
  min-height: auto;
  grid-template-columns: 62px minmax(0, 1fr);
  align-items: start;
  padding: 28px;
  border: 1px solid rgba(240, 233, 220, 0.14);
  background:
    linear-gradient(135deg, rgba(240, 233, 220, 0.12), rgba(240, 233, 220, 0.045)),
    rgba(240, 233, 220, 0.04);
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.14);
}

.section.renewed-method .method-step:hover {
  transform: translateY(-4px);
  border-color: rgba(199, 168, 120, 0.5);
}

.section.renewed-method .method-step > span {
  width: 50px;
  height: 50px;
  color: var(--leaf);
  border-color: rgba(199, 168, 120, 0.42);
  background: rgba(199, 168, 120, 0.08);
}

.section.renewed-method .method-step h3 {
  color: #f0e9dc;
}

.section.renewed-method .method-step p {
  color: rgba(240, 233, 220, 0.74);
}

.section.renewed-method .method-tags b {
  background: rgba(193, 180, 154, 0.16);
  color: #e3edbd;
}

@keyframes openingExit {
  to {
    opacity: 0;
    visibility: hidden;
  }
}

@keyframes logoSunRise {
  0% {
    opacity: 1;
    transform: translate3d(0, 48px, 0);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes openingCopy {
  0% {
    opacity: 0;
    transform: translateY(16px);
  }
  34%, 84% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(-8px);
  }
}

@keyframes heroBreath {
  0% {
    transform: scale(1.02);
  }
  100% {
    transform: scale(1.052);
  }
}

@keyframes climateMarquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 640px) {
  /* Force header to fixed so hamburger is always reachable */
  .site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 200;
  }

  body {
    padding-top: 64px;
  }

  .nav-toggle {
    display: block;
  }

  /* ── Full-screen mobile nav overlay ── */
  .primary-nav {
    position: fixed;
    inset: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 6px;
    padding: 100px 24px 40px;
    overflow-y: auto;
    background:
      radial-gradient(circle at 80% 10%, rgba(199, 168, 120, 0.14), transparent 40%),
      radial-gradient(circle at 20% 90%, rgba(74, 158, 107, 0.1), transparent 40%),
      #071a14;
    z-index: 200;
    animation: none;
  }

  .menu-open .primary-nav {
    display: flex;
  }

  .primary-nav .nav-link {
    color: rgba(240, 233, 220, 0.9);
    font-size: 1.15rem;
    font-weight: 600;
    padding: 16px 18px;
    border-radius: 10px;
    background: rgba(240, 233, 220, 0.06);
    border: none;
    width: 100%;
    justify-content: space-between;
  }

  .primary-nav .nav-link:hover,
  .primary-nav .nav-link.active {
    background: rgba(199, 168, 120, 0.15);
    color: #fff;
  }

  .nav-link {
    width: 100%;
    justify-content: space-between;
    border-radius: 10px;
    padding: 16px 18px;
    background: rgba(240, 233, 220, 0.06);
  }

  .dropdown {
    position: static;
    width: 100%;
    display: grid;
    gap: 4px;
    margin: -2px 0 0;
    opacity: 1;
    visibility: visible;
    transform: none;
    padding: 8px;
    background: rgba(4, 24, 19, 0.3);
    border-color: rgba(240, 233, 220, 0.08);
    box-shadow: none;
  }

  .dropdown a {
    color: rgba(255, 255, 255, 0.82);
    padding: 11px 14px;
    font-size: 0.95rem;
  }

  .dropdown a:hover {
    background: rgba(199, 168, 120, 0.13);
    color: #fff;
  }

  .nav-cta {
    width: 100%;
    justify-content: center;
    margin-top: 8px;
    font-size: 1rem;
    padding: 16px;
  }

  .split,
  .contact-grid,
  .form-row,
  .footer-grid,
  .renewed-hero-layout,
  .manifesto-grid,
  .advisory-matrix-head,
  .pathway-head,
  .carbon-lab-grid,
  .method-layout,
  .project-pipeline-grid,
  .service-delivery-grid,
  .client-proof-grid,
  .about-movement-grid,
  .service-hero-grid,
  .service-overview-grid,
  .investment-intro-grid,
  .event-intro-grid,
  .action-room-grid,  .trust-grid,
  .systems-grid,
  .investment-experience-grid {
    grid-template-columns: 1fr;
  }

  .grid-4,
  .grid-3,
  .advisory-matrix-grid,
  .pathway-grid,
  .service-offer-grid,
  .investment-lane-grid,
  .event-showcase-grid,
  .carbon-flow {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-delivery-steps {
    grid-template-columns: 1fr;
  }

  .service-delivery-steps article {
    padding-right: 26px;
  }

  .service-delivery-steps article::after {
    display: none;
  }

  .stat-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .proof-grid {
    grid-template-columns: 1fr;
  }

  .process-grid {
    grid-template-columns: 1fr;
  }

  .service-proof-grid,
  .wedding-pillar-grid {
    grid-template-columns: 1fr;
  }

  .wedding-stat-bar {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .wedding-stat:nth-child(2) {
    border-right: none;
  }

  .wedding-stat:nth-child(3),
  .wedding-stat:nth-child(4) {
    border-top: 1px solid rgba(240, 233, 220, 0.1);
  }

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

  .renewed-hero-layout {
    padding-top: 116px;
  }

  .hero-intelligence {
    max-width: 520px;
  }

  .manifesto-mark {
    position: static;
  }

  .method-intro {
    position: static;
  }

  .project-pipeline-copy {
    position: static;
  }

  .service-delivery-copy {
    position: static;
  }

  .action-room-copy {
    position: static;
  }

  .evidence-copy {
    position: static;
  }

  .about-movement-copy {
    position: static;
  }

  .pathway-card {
    min-height: 460px;
  }

  .domain-cinema-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    min-height: auto;
  }

  .domain-cinema-card {
    min-height: 360px;
  }

  .domain-cinema-card h3 {
    writing-mode: horizontal-tb;
    transform: none;
  }

  .domain-cinema-card p {
    max-height: none;
  }

  .impact-story {
    position: relative;
  }

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

  .service-hero-grid {
    padding-top: 116px;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, 1160px);
  }

  .nav-wrap {
    min-height: 70px;
  }

  .primary-nav {
    inset: 76px 14px auto 14px;
    max-height: calc(100vh - 90px);
  }

  .brand span {
    font-size: 1.05rem;
  }

  .eyebrow {
    max-width: 100%;
    font-size: 0.72rem;
  }

  .eyebrow::before {
    width: 24px;
  }

  .hero,
  .page-hero {
    min-height: 520px;
  }

  .hero-content {
    padding: 118px 0 58px;
  }

  h1 {
    font-size: 3rem;
  }

  .section {
    padding: 68px 0;
  }

  .grid-2,
  .grid-3,
  .grid-4,
  .advisory-matrix-grid,
  .pathway-grid,
  .service-delivery-steps,
  .service-offer-grid,
  .investment-lane-grid,
  .event-showcase-grid,
  .inspiration-logo-grid,
  .domain-cinema-grid,
  .carbon-flow,
  .stat-strip,
  .footer-links,
  .renewed-proof-grid,
  .service-proof-grid {
    grid-template-columns: 1fr;
  }

  .renewed-hero-layout {
    padding: 104px 0 54px;
  }

  .service-hero-grid {
    padding: 104px 0 54px;
  }  .final-vision-copy h2,
  .witness-copy h2,
  .field-charter-copy h2 {
    font-size: clamp(3rem, 15vw, 5rem);
  }

  .trust-ledger article {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .systems-orbit,
  .investment-map {
    min-height: 360px;
  }

  .orbit-core,
  .map-region {
    width: 108px;
    height: 108px;
  }

  .ring-1 {
    width: 220px;
    height: 220px;
  }

  .ring-2 {
    width: 320px;
    height: 320px;
  }

  .domain-cinema-card {
    min-height: 320px;
    grid-column: span 12 !important;
    grid-row: span 1 !important;
  }

  .domain-cinema-card h3 {
    writing-mode: horizontal-tb;
    transform: none;
  }

  .domain-cinema-card p {
    max-height: none;
  }

  .field-charter-grid {
    grid-template-columns: 1fr;
  }

  .field-charter-image {
    min-height: 360px;
  }

  .renewed-hero-copy h1 {
    font-size: clamp(2.7rem, 14vw, 4.05rem);
  }

  .service-hero-copy h1 {
    font-size: clamp(3rem, 16vw, 4.6rem);
  }

  .hero-intelligence {
    padding: 20px;
  }

  .renewed-proof {
    margin-top: 0;
  }

  .renewed-proof-grid div,
  .advisory-card,
  .pathway-body,
  .service-proof-grid div,
  .service-offer-card,
  .service-delivery-steps article,
  .method-step {
    padding: 22px;
  }

  .advisory-card {
    min-height: 250px;
  }

  .advisory-visual {
    min-height: 92px;
    margin: 18px 0 24px;
  }

  .project-pipeline-list a {
    grid-template-columns: 1fr;
  }

  .project-orbit {
    width: 100%;
    min-height: 180px;
  }

  .service-proof {
    margin-top: 0;
  }

  .service-offer-card {
    min-height: auto;
  }

  .service-delivery-steps article {
    min-height: auto;
    padding: 22px;
  }

  .service-delivery-steps span {
    position: static;
    margin-bottom: 16px;
  }

  .service-delivery-steps strong {
    margin-top: 10px;
  }

  .pathway-card {
    min-height: 400px;
  }

  .carbon-lab-media img {
    aspect-ratio: 4 / 3;
  }

  .method-step {
    grid-template-columns: 46px 1fr;
  }

  .section.renewed-method .method-step {
    grid-template-columns: 48px minmax(0, 1fr);
    padding: 20px;
  }

  .section.renewed-method .method-step > span {
    width: 40px;
    height: 40px;
  }

  .section.renewed-method .method-tags {
    gap: 6px;
  }

  .section.renewed-method .method-tags b {
    font-size: 0.72rem;
  }

  .client-proof-copy {
    padding: 22px;
  }

  .client-proof-cards a {
    grid-template-columns: 48px minmax(0, 1fr);
    padding: 20px;
  }

  .client-proof-cards span {
    width: 40px;
    height: 40px;
  }

  .about-movement-list article {
    grid-template-columns: 48px minmax(0, 1fr);
    padding: 20px;
  }

  .about-movement-list span {
    width: 40px;
    height: 40px;
  }

  .team-flip-card,
  .team-flip-inner {
    min-height: 480px;
  }

  .team-front img {
    min-height: 285px;
  }

  .team-back {
    padding: 24px;
  }

  .quote-band {
    padding: 30px;
  }

  .footer-bottom {
    flex-direction: column;
  }

  /* Wedding case study mobile overrides */
  .wedding-case-header {
    margin-bottom: 40px;
  }

  .wedding-case-media {
    margin-bottom: 48px;
  }

  .wedding-stat-bar {
    margin-bottom: 48px;
  }

  .wedding-pillar-grid {
    margin-bottom: 48px;
  }

  .wedding-credential {
    margin-bottom: 48px;
    padding: 24px;
    border-left-width: 3px;
  }

  .wedding-closing-quote {
    padding-top: 36px;
  }

  .wedding-closing-quote blockquote {
    font-size: clamp(1.4rem, 5.2vw, 2rem);
  }

  /* Service brief stacked inside hero on mobile */
  .service-brief {
    margin-top: 36px;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: rgba(16, 47, 39, 0.88);
  }
}

/* ============================================================
   Phase B — Cinematic hero. Full-bleed photo, asymmetric editorial
   anchor bottom-left, quiet underline CTA bottom-right, slow
   atmospheric breath on the image, layered veil for readability.
   ============================================================ */

.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  overflow: hidden;
  background: var(--canopy);
  color: var(--paper-next);
  isolation: isolate;
}

.hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 56%;
  transform: scale(1.02);
  animation: heroBreath 26s ease-in-out infinite alternate;
  filter: saturate(0.72) contrast(1.08) brightness(0.88);
  z-index: 0;
}

.hero-veil {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 130% 80% at 50% 50%, transparent 52%, rgba(14, 23, 20, 0.26) 100%),
    linear-gradient(
      90deg,
      rgba(14, 23, 20, 0.74) 0%,
      rgba(14, 23, 20, 0.22) 52%,
      transparent 100%
    ),
    linear-gradient(
      180deg,
      rgba(14, 23, 20, 0.32) 0%,
      rgba(14, 23, 20, 0.06) 14%,
      rgba(14, 23, 20, 0) 42%,
      rgba(14, 23, 20, 0.48) 74%,
      rgba(14, 23, 20, 0.86) 100%
    ),
    radial-gradient(
      ellipse 72% 58% at 6% 96%,
      rgba(14, 23, 20, 0.56),
      transparent 64%
    );
  pointer-events: none;
  z-index: 1;
}

.hero-grain {
  position: absolute;
  inset: 0;
  opacity: 0.11;
  mix-blend-mode: overlay;
  pointer-events: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 220 220'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.92' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 0.6 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  background-size: 260px 260px;
  z-index: 2;
}

.hero-frame {
  position: relative;
  z-index: 3;
  max-width: 1440px;
  height: 100%;
  margin: 0 auto;
  padding: clamp(112px, 14vh, 152px) clamp(28px, 6vw, 96px) clamp(64px, 10vh, 96px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  grid-template-rows: 1fr;
  align-items: end;
  gap: 32px 48px;
}

.hero-anchor {
  grid-column: 1 / -1;
  grid-row: 1;
  max-width: 960px;
  align-self: end;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--paper-next);
  opacity: 0.72;
  margin: 0 0 clamp(28px, 4.5vh, 48px);
  max-width: 56ch;
  line-height: 1.5;
}

.hero-eyebrow::before {
  content: "";
  flex-shrink: 0;
  width: 22px;
  height: 1px;
  background: var(--sand);
  opacity: 0.9;
}

.hero-headline {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(44px, 7.6vw, 116px);
  line-height: 0.98;
  letter-spacing: -0.022em;
  color: var(--paper-next);
  margin: 0;
  max-width: 14ch;
  font-variation-settings: "opsz" 144;
  text-wrap: balance;
}

.hero-cta {
  grid-column: 2;
  grid-row: 2;
  justify-self: end;
  align-self: end;
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--paper-next);
  text-decoration: none;
  padding: 0 0 6px;
  border-bottom: 1px solid var(--sand);
  transition: color 0.4s ease, border-color 0.4s ease;
}

.hero-cta span {
  display: inline-block;
  transition: transform 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.hero-cta:hover {
  color: #fff;
  border-bottom-color: var(--paper-next);
}

.hero-cta:hover span {
  transform: translateX(6px);
}

.hero-cta:focus-visible {
  outline: 1px solid var(--sand);
  outline-offset: 8px;
  border-radius: 1px;
}

/* --- Stitch hero: new elements --- */
.hero-content-left {
  grid-column: 1;
  grid-row: 1;
  display: flex;
  flex-direction: column;
  gap: clamp(18px, 2.4vh, 28px);
  align-self: end;
  max-width: 680px;
}

.hero-eyebrow-pill {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--sand);
  border: 1px solid rgba(199, 168, 120, 0.4);
  background: rgba(199, 168, 120, 0.07);
  padding: 6px 14px;
  border-radius: 100px;
  width: fit-content;
  white-space: nowrap;
}

.hero-lead {
  font-family: var(--font-sans);
  font-size: clamp(15px, 1.45vw, 18px);
  line-height: 1.65;
  color: rgba(240, 233, 220, 0.68);
  max-width: 44ch;
  margin: 0;
}

.hero-actions-dual {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 16px;
}

.hero-sidebar-card {
  grid-column: 2;
  grid-row: 1;
  align-self: start;
  background: rgba(14, 23, 20, 0.76);
  backdrop-filter: blur(22px) saturate(1.3);
  -webkit-backdrop-filter: blur(22px) saturate(1.3);
  border: 1px solid rgba(199, 168, 120, 0.22);
  border-radius: 16px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.42);
}

.hero-sidebar-label {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--sand);
  opacity: 0.75;
}

.hero-sidebar-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 400;
  color: var(--paper-next);
  margin: 0 0 4px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(199, 168, 120, 0.18);
  line-height: 1.35;
  letter-spacing: -0.01em;
}

.hero-sidebar-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-family: var(--font-sans);
  font-size: 14px;
  line-height: 1.45;
  color: rgba(240, 233, 220, 0.68);
}

.hero-sidebar-list li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-sidebar-list li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--sand);
  opacity: 0.65;
  flex-shrink: 0;
}

@media (max-width: 840px) {
  .hero {
    min-height: 580px;
  }
  .hero-frame {
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr;
    padding: 104px 24px 56px;
    gap: 28px;
  }
  .hero-content-left {
    grid-column: 1;
    grid-row: 2;
    align-self: end;
    max-width: 100%;
  }
  .hero-sidebar-card {
    grid-column: 1;
    grid-row: 1;
    align-self: auto;
    padding: 24px 20px;
  }
  .hero-anchor {
    grid-column: 1;
  }
  .hero-cta {
    grid-column: 1;
    grid-row: 2;
    justify-self: start;
  }
}

@media (max-width: 560px) {
  .hero-headline {
    font-size: clamp(36px, 10vw, 56px);
    max-width: 16ch;
  }
  .hero-eyebrow {
    font-size: 10px;
    letter-spacing: 0.2em;
  }
  .hero-sidebar-title {
    font-size: 18px;
  }
  .hero-actions-dual {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-media {
    animation: none;
    transform: none;
  }
}

/* ============================================================
   Phase C — Living Systems. Editorial slab + scroll-triggered
   system diagram. Replaces manifesto + carbon-lab + method
   conceptually. Lives between hero and the legacy sections
   until Phase D restructures the homepage.
   ============================================================ */

.living-systems {
  position: relative;
  background: var(--paper-next);
  color: var(--bark);
  padding: clamp(112px, 16vh, 168px) clamp(28px, 6vw, 96px);
  border-top: 1px solid var(--line-ink);
  border-bottom: 1px solid var(--line-ink);
  overflow: hidden;
}

.living-systems::before {
  /* Subtle paper texture — almost invisible, gives the surface life */
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.04;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'><filter id='p'><feTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.18  0 0 0 0 0.15  0 0 0 0 0.12  0 0 0 0.7 0'/></filter><rect width='100%25' height='100%25' filter='url(%23p)'/></svg>");
  background-size: 320px 320px;
}

.ls-frame {
  position: relative;
  z-index: 1;
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(56px, 7vw, 112px);
}

.ls-copy {
  max-width: 56ch;
}

.ls-flag {
  display: block;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--bark);
  opacity: 0.5;
  margin: 0 0 clamp(28px, 4.5vh, 44px);
}

.ls-title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(32px, 4.4vw, 60px);
  line-height: 1.04;
  letter-spacing: -0.018em;
  color: var(--bark);
  margin: 0 0 clamp(28px, 4vh, 40px);
  max-width: 22ch;
  text-wrap: balance;
  font-variation-settings: "opsz" 96;
}

.ls-body {
  font-family: var(--font-sans);
  font-size: clamp(16px, 1.05vw, 18px);
  line-height: 1.6;
  color: var(--bark);
  opacity: 0.82;
  margin: 0;
  max-width: 52ch;
}

.ls-diagram {
  position: relative;
  width: 100%;
}

.ls-svg {
  width: 100%;
  height: auto;
  color: var(--bark);
  display: block;
  overflow: visible;
}

.ls-line {
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
  opacity: 0.42;
  transition: stroke-dashoffset 1.4s cubic-bezier(0.65, 0, 0.35, 1);
}

.ls-diagram.in-view .ls-line {
  stroke-dashoffset: 0;
}

.ls-diagram.in-view .ls-line:nth-of-type(1) { transition-delay: 0.05s; }
.ls-diagram.in-view .ls-line:nth-of-type(2) { transition-delay: 0.15s; }
.ls-diagram.in-view .ls-line:nth-of-type(3) { transition-delay: 0.25s; }
.ls-diagram.in-view .ls-line:nth-of-type(4) { transition-delay: 0.35s; }
.ls-diagram.in-view .ls-line:nth-of-type(5) { transition-delay: 0.45s; }
.ls-diagram.in-view .ls-line:nth-of-type(6) { transition-delay: 0.6s; }
.ls-diagram.in-view .ls-line:nth-of-type(7) { transition-delay: 0.7s; }
.ls-diagram.in-view .ls-line:nth-of-type(8) { transition-delay: 0.82s; }
.ls-diagram.in-view .ls-line:nth-of-type(9) { transition-delay: 0.92s; }
.ls-diagram.in-view .ls-line:nth-of-type(10) { transition-delay: 1.02s; }

.ls-node circle {
  fill: currentColor;
  opacity: 0;
  transform-origin: center;
  transform: scale(0.2);
  transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.ls-diagram.in-view .ls-node circle {
  opacity: 1;
  transform: scale(1);
}

.ls-diagram.in-view .ls-node[data-node="carbon"] circle { transition-delay: 0.3s; }
.ls-diagram.in-view .ls-node[data-node="forests"] circle { transition-delay: 0.5s; }
.ls-diagram.in-view .ls-node[data-node="water"] circle { transition-delay: 0.65s; }
.ls-diagram.in-view .ls-node[data-node="land"] circle { transition-delay: 0.85s; }
.ls-diagram.in-view .ls-node[data-node="communities"] circle { transition-delay: 1.0s; }
.ls-diagram.in-view .ls-node[data-node="capital"] circle { transition-delay: 1.2s; }

.ls-node-label {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  fill: currentColor;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.ls-diagram.in-view .ls-node-label {
  opacity: 0.88;
}

.ls-diagram.in-view .ls-node[data-node="carbon"] .ls-node-label {
  opacity: 1;
  transition-delay: 0.5s;
}
.ls-diagram.in-view .ls-node[data-node="forests"] .ls-node-label { transition-delay: 0.7s; }
.ls-diagram.in-view .ls-node[data-node="water"] .ls-node-label { transition-delay: 0.85s; }
.ls-diagram.in-view .ls-node[data-node="land"] .ls-node-label { transition-delay: 1.05s; }
.ls-diagram.in-view .ls-node[data-node="communities"] .ls-node-label { transition-delay: 1.2s; }
.ls-diagram.in-view .ls-node[data-node="capital"] .ls-node-label { transition-delay: 1.4s; }

@media (max-width: 960px) {
  .ls-frame {
    grid-template-columns: 1fr;
    gap: 56px;
  }
  .ls-diagram {
    max-width: 560px;
    margin: 0 auto;
  }
}

@media (max-width: 560px) {
  .living-systems {
    padding: 80px 24px;
  }
  .ls-title {
    font-size: clamp(28px, 7vw, 40px);
  }
  .ls-node-label {
    font-size: 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ls-line,
  .ls-node circle,
  .ls-node-label {
    transition: none;
  }
  .ls-line { stroke-dashoffset: 0; }
  .ls-node circle { opacity: 1; transform: scale(1); }
  .ls-node-label { opacity: 0.88; }
}

/* ============================================================
   Phase C — Where We Work. Cinematic dark-canopy map section.
   Stylized continent silhouettes, glowing pulse pins on Germany,
   Africa, and Surat. Connecting arcs draw between regions on
   scroll. Tonal flip (paper Living Systems -> dark Where We Work)
   creates pacing.
   ============================================================ */

.field-map {
  position: relative;
  background: var(--canopy);
  color: var(--paper-next);
  padding: clamp(112px, 14vh, 156px) clamp(28px, 6vw, 96px);
  overflow: hidden;
  isolation: isolate;
}

.field-map::before {
  /* Soft warm light leak from the bottom-left, like a documentary still */
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 65% 55% at 8% 100%, rgba(199, 168, 120, 0.10), transparent 60%),
    radial-gradient(ellipse 60% 45% at 100% 0%, rgba(184, 181, 173, 0.05), transparent 55%);
  z-index: 0;
}

.field-map::after {
  /* Grain overlay matched to hero feel */
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.06;
  mix-blend-mode: overlay;
  pointer-events: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 220 220'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.92' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 0.6 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  background-size: 260px 260px;
  z-index: 0;
}

.fm-frame {
  position: relative;
  z-index: 1;
  max-width: 1480px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  grid-template-rows: auto auto;
  gap: clamp(48px, 7vh, 88px);
}

.fm-map {
  width: 100%;
  position: relative;
  color: var(--paper-next);
}

.fm-svg {
  width: 100%;
  height: auto;
  display: block;
  overflow: visible;
  filter: drop-shadow(0 12px 40px rgba(0, 0, 0, 0.35));
}

/* Graticule lines — barely visible, a hint of cartographic structure */
.fm-graticule line {
  stroke-dasharray: 2 6;
  opacity: 0;
  transition: opacity 1.2s ease 0.3s;
}

.fm-map.in-view .fm-graticule line {
  opacity: 0.09;
}

/* Continents — soft fill + hairline, fade in on view */
.fm-continents path {
  fill-opacity: 0.06;
  stroke-opacity: 0;
  transition: stroke-opacity 1.4s ease, fill-opacity 1.4s ease;
}

.fm-map.in-view .fm-continents path {
  fill-opacity: 0.07;
  stroke-opacity: 0.28;
}

/* Connection arcs — sand color, draw in after continents */
.fm-arc {
  stroke: var(--sand);
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
  opacity: 0.7;
  transition: stroke-dashoffset 1.6s cubic-bezier(0.65, 0, 0.35, 1);
}

.fm-map.in-view .fm-arc {
  stroke-dashoffset: 0;
}

.fm-map.in-view .fm-arc:nth-of-type(1) { transition-delay: 1.6s; }
.fm-map.in-view .fm-arc:nth-of-type(2) { transition-delay: 2.1s; }

/* Pin cores — fade and scale in */
.fm-core {
  fill: var(--sand);
  opacity: 0;
  transform-box: fill-box;
  transform-origin: center;
  transform: scale(0);
  transition: opacity 0.5s ease, transform 0.55s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.fm-map.in-view .fm-core {
  opacity: 1;
  transform: scale(1);
  filter: drop-shadow(0 0 6px rgba(199, 168, 120, 0.6));
}

.fm-map.in-view .fm-pin[data-pin="germany"] .fm-core { transition-delay: 0.9s; }
.fm-map.in-view .fm-pin[data-pin="africa"] .fm-core { transition-delay: 1.1s; }
.fm-map.in-view .fm-pin[data-pin="india"] .fm-core { transition-delay: 1.3s; }

/* Pulse rings — only animate after section is in view, infinite */
.fm-pulse {
  fill: var(--sand);
  transform-box: fill-box;
  transform-origin: center;
  transform: scale(1);
  opacity: 0;
}

.fm-map.in-view .fm-pulse-1 {
  animation: fmPulse 3s cubic-bezier(0.22, 0.61, 0.36, 1) infinite;
  animation-delay: 1.6s;
}
.fm-map.in-view .fm-pulse-2 {
  animation: fmPulse 3s cubic-bezier(0.22, 0.61, 0.36, 1) infinite;
  animation-delay: 2.6s;
}
.fm-map.in-view .fm-pulse-3 {
  animation: fmPulse 3s cubic-bezier(0.22, 0.61, 0.36, 1) infinite;
  animation-delay: 3.6s;
}

@keyframes fmPulse {
  0% { transform: scale(1); opacity: 0.55; }
  85% { opacity: 0; }
  100% { transform: scale(8); opacity: 0; }
}

/* Leader lines from pin to label */
.fm-leader {
  stroke: var(--sand);
  stroke-width: 0.6;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.fm-map.in-view .fm-leader { opacity: 0.55; }
.fm-map.in-view .fm-pin[data-pin="germany"] .fm-leader { transition-delay: 1.3s; }
.fm-map.in-view .fm-pin[data-pin="africa"] .fm-leader { transition-delay: 1.5s; }
.fm-map.in-view .fm-pin[data-pin="india"] .fm-leader { transition-delay: 1.7s; }

/* Pin labels — main name + sub line */
.fm-pin-label {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  fill: var(--paper-next);
  opacity: 0;
  transition: opacity 0.7s ease;
}

.fm-pin-sub {
  font-family: var(--font-sans);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.08em;
  fill: var(--paper-next);
  opacity: 0;
  transition: opacity 0.7s ease;
}

.fm-map.in-view .fm-pin-label { opacity: 0.95; }
.fm-map.in-view .fm-pin-sub { opacity: 0.6; }

.fm-map.in-view .fm-pin[data-pin="germany"] .fm-pin-label,
.fm-map.in-view .fm-pin[data-pin="germany"] .fm-pin-sub { transition-delay: 1.5s; }
.fm-map.in-view .fm-pin[data-pin="africa"] .fm-pin-label,
.fm-map.in-view .fm-pin[data-pin="africa"] .fm-pin-sub { transition-delay: 1.75s; }
.fm-map.in-view .fm-pin[data-pin="india"] .fm-pin-label,
.fm-map.in-view .fm-pin[data-pin="india"] .fm-pin-sub { transition-delay: 2.0s; }

/* Editorial copy block below the map */
.fm-copy {
  max-width: 720px;
}

.fm-flag {
  display: block;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--paper-next);
  opacity: 0.55;
  margin: 0 0 clamp(24px, 3vh, 36px);
}

.fm-title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(32px, 4.6vw, 60px);
  line-height: 1.04;
  letter-spacing: -0.018em;
  color: var(--paper-next);
  margin: 0 0 clamp(24px, 3.5vh, 36px);
  max-width: 22ch;
  text-wrap: balance;
  font-variation-settings: "opsz" 96;
}

.fm-body {
  font-family: var(--font-sans);
  font-size: clamp(16px, 1.05vw, 18px);
  line-height: 1.6;
  color: var(--paper-next);
  opacity: 0.78;
  margin: 0 0 36px;
  max-width: 56ch;
}

.fm-legend {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 16px;
  max-width: 540px;
}

.fm-legend li {
  display: grid;
  grid-template-columns: 14px auto 1fr;
  gap: 14px;
  align-items: baseline;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(244, 237, 224, 0.1);
}

.fm-legend li:last-child {
  border-bottom: none;
}

.fm-legend-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--sand);
  box-shadow: 0 0 8px rgba(199, 168, 120, 0.6);
  margin-top: 7px;
}

.fm-legend strong {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--paper-next);
}

.fm-legend span:last-child {
  font-family: var(--font-sans);
  font-size: 13px;
  color: var(--paper-next);
  opacity: 0.62;
  letter-spacing: 0.02em;
}

@media (min-width: 1100px) {
  .fm-frame {
    grid-template-columns: minmax(0, 1.4fr) minmax(280px, 1fr);
    grid-template-rows: 1fr;
    align-items: end;
    gap: clamp(48px, 6vw, 96px);
  }
  .fm-copy {
    align-self: end;
    padding-bottom: clamp(16px, 4vh, 48px);
  }
}

@media (max-width: 760px) {
  .field-map {
    padding: 80px 24px;
  }
  .fm-pin-label { font-size: 10px; }
  .fm-pin-sub { font-size: 8px; }
  .fm-title { font-size: clamp(28px, 7vw, 40px); }
}

@media (prefers-reduced-motion: reduce) {
  .fm-graticule line,
  .fm-continents path,
  .fm-arc,
  .fm-core,
  .fm-leader,
  .fm-pin-label,
  .fm-pin-sub {
    transition: none;
  }
  .fm-map.in-view .fm-graticule line { opacity: 0.09; }
  .fm-map.in-view .fm-continents path { stroke-opacity: 0.28; fill-opacity: 0.07; }
  .fm-map.in-view .fm-arc { stroke-dashoffset: 0; }
  .fm-map.in-view .fm-core { opacity: 1; transform: scale(1); }
  .fm-map.in-view .fm-leader { opacity: 0.55; }
  .fm-map.in-view .fm-pin-label { opacity: 0.95; }
  .fm-map.in-view .fm-pin-sub { opacity: 0.6; }
  .fm-pulse-1, .fm-pulse-2, .fm-pulse-3 { animation: none; }
}

/* ============================================================
   Phase C — Three Practices. The only grid on the new homepage.
   Editorial cards with asymmetric vertical rhythm, restrained
   typography, no icons, no badges. The service offer anchored
   without a brochure feel.
   ============================================================ */

.practices {
  background: var(--bone);
  color: var(--bark);
  padding: clamp(112px, 14vh, 152px) clamp(28px, 6vw, 96px);
  border-top: 1px solid var(--line-ink);
}

.pr-frame {
  max-width: 1440px;
  margin: 0 auto;
}

.pr-head {
  margin: 0 0 clamp(64px, 9vh, 96px);
  max-width: 760px;
}

.pr-flag {
  display: block;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--bark);
  opacity: 0.5;
  margin: 0 0 24px;
}

.pr-title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(32px, 4.4vw, 60px);
  line-height: 1.04;
  letter-spacing: -0.018em;
  color: var(--bark);
  margin: 0;
  max-width: 22ch;
  text-wrap: balance;
  font-variation-settings: "opsz" 96;
}

.pr-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(20px, 2.4vw, 44px);
  align-items: start;
}

.pr-card--advisory { margin-top: 0; }
.pr-card--csr      { margin-top: 0; }
.pr-card--carbon   { margin-top: 0; }
.pr-card--events   { margin-top: 0; }

.pr-card {
  display: block;
  text-decoration: none;
  color: inherit;
}

.pr-image {
  position: relative;
  overflow: hidden;
  background: var(--canopy);
}

.pr-card--advisory .pr-image,
.pr-card--csr      .pr-image,
.pr-card--carbon   .pr-image,
.pr-card--events   .pr-image { aspect-ratio: 3 / 4; }

.pr-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.88) contrast(1.04) brightness(0.92);
  transition: transform 1s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              filter 0.6s ease;
}

.pr-card:hover .pr-image img {
  transform: scale(1.045);
  filter: saturate(0.95) contrast(1.05) brightness(0.96);
}

.pr-body {
  padding: 28px 0 0;
}

.pr-label {
  display: block;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bark);
  opacity: 0.55;
  margin: 0 0 18px;
}

.pr-card-title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1.12;
  letter-spacing: -0.015em;
  color: var(--bark);
  margin: 0 0 28px;
  max-width: 22ch;
  text-wrap: balance;
  font-variation-settings: "opsz" 60;
}

.pr-link {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bark);
  padding-bottom: 5px;
  border-bottom: 1px solid var(--sand);
  transition: border-color 0.4s ease;
}

.pr-link span {
  display: inline-block;
  transition: transform 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.pr-card:hover .pr-link {
  border-bottom-color: var(--bark);
}

.pr-card:hover .pr-link span {
  transform: translateX(6px);
}

@media (max-width: 1100px) {
  .pr-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(24px, 3vw, 40px);
  }
}

@media (max-width: 960px) {
  .pr-grid {
    grid-template-columns: 1fr;
    gap: 56px;
  }
  .pr-card--advisory,
  .pr-card--csr,
  .pr-card--carbon,
  .pr-card--events {
    margin-top: 0;
  }
  .pr-card--advisory .pr-image,
  .pr-card--csr .pr-image,
  .pr-card--carbon .pr-image,
  .pr-card--events .pr-image {
    aspect-ratio: 4 / 3;
  }
}

@media (prefers-reduced-motion: reduce) {
  .pr-image img,
  .pr-link span,
  .pr-link {
    transition: none;
  }
  .pr-card:hover .pr-image img {
    transform: none;
    filter: saturate(0.88) contrast(1.04) brightness(0.92);
  }
}

@media (max-width: 960px) and (min-width: 641px) {
  .wedding-pillar-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .wedding-stat-bar {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .wedding-stat:nth-child(2) {
    border-right: none;
  }

  .wedding-stat:nth-child(3),
  .wedding-stat:nth-child(4) {
    border-top: 1px solid rgba(240, 233, 220, 0.1);
  }
}

/* ── CSR Facilitation page ── */

.csr-hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  background: var(--forest);
}

.csr-hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.6) brightness(0.5);
}

.csr-hero-veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    rgba(14, 23, 20, 0.88) 0%,
    rgba(14, 23, 20, 0.62) 55%,
    rgba(14, 23, 20, 0.3) 100%
  );
}

.csr-hero-frame {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 120px 0 80px;
}

.csr-hero-content {
  max-width: 680px;
}

.csr-hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.6rem);
  font-weight: 400;
  line-height: 1.08;
  color: var(--paper);
  margin: 20px 0 24px;
  letter-spacing: -0.02em;
}

.csr-hero-lead {
  font-size: 1.15rem;
  color: var(--cream);
  margin-bottom: 16px;
  font-weight: 500;
  line-height: 1.5;
}

.csr-hero-body {
  font-size: 0.975rem;
  color: rgba(240, 233, 220, 0.75);
  line-height: 1.65;
  margin-bottom: 36px;
  max-width: 560px;
}

.csr-hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ── 3-step process ── */

.csr-process {
  padding: 80px 0;
}

.csr-process-head {
  margin-bottom: 56px;
}

.csr-process .section-title {
  color: var(--paper);
}

.csr-process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 40px;
}

.csr-step {
  border-top: 1px solid rgba(199, 168, 120, 0.4);
  padding-top: 24px;
  color: var(--cream);
}

.csr-step-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--sand);
  line-height: 1;
  margin-bottom: 16px;
}

.csr-step-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--paper);
  margin: 0 0 12px;
}

.csr-step p {
  font-size: 0.95rem;
  line-height: 1.65;
  color: rgba(240, 233, 220, 0.75);
  margin: 0;
}

/* ── Project tabs ── */

.csr-projects {
  background: var(--paper);
}

.csr-projects-head {
  margin-bottom: 48px;
}

.csr-tab-bar {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.csr-tab {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 10px 26px;
  border-radius: 100px;
  border: 1.5px solid rgba(199, 168, 120, 0.55);
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  transition: background 0.18s, border-color 0.18s, color 0.18s;
}

.csr-tab:hover {
  border-color: var(--sand);
  background: rgba(199, 168, 120, 0.12);
}

.csr-tab.active {
  background: var(--sand);
  border-color: var(--sand);
  color: var(--forest);
}

.csr-panel {
  animation: csr-fade-in 0.22s ease;
}

@keyframes csr-fade-in {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.csr-panel-header {
  margin-bottom: 36px;
}

.csr-project-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--clay);
  margin-bottom: 8px;
}

.csr-panel-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 400;
  color: var(--forest);
  margin: 0;
  line-height: 1.15;
}

.csr-panel-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2px;
}

.csr-panel-block {
  background: var(--cream);
  padding: 28px 30px;
}

.csr-panel-block--highlight {
  background: rgba(199, 168, 120, 0.13);
  border-left: 3px solid var(--sand);
}

.csr-block-label {
  display: block;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
}

.csr-panel-block p {
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0;
  color: var(--ink);
}

.csr-panel-block--highlight .csr-block-label {
  color: var(--clay);
}

.csr-checks {
  margin: 0;
  padding-left: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.csr-checks li {
  font-size: 0.9rem;
  line-height: 1.55;
  padding-left: 22px;
  position: relative;
  color: var(--ink);
}

.csr-checks li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--sand);
  font-weight: 700;
}

/* ── Trust section ── */

.csr-trust {
  padding: 80px 0;
}

.csr-trust-head {
  margin-bottom: 56px;
}

.csr-trust .section-title {
  color: var(--paper);
}

.csr-trust-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 40px;
}

.csr-trust-card {
  border-top: 2px solid var(--sand);
  padding-top: 28px;
}

.csr-trust-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--paper);
  margin: 0 0 14px;
}

.csr-trust-card p {
  font-size: 0.95rem;
  line-height: 1.65;
  color: rgba(240, 233, 220, 0.72);
  margin: 0;
}

/* ── CSR contact section ── */

.csr-contact-section {
  background: var(--paper);
  padding: 80px 0;
}

.csr-contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 60px;
  align-items: start;
}

.csr-contact-copy .section-title {
  margin-bottom: 16px;
}

.csr-contact-copy p {
  font-size: 0.97rem;
  line-height: 1.7;
  color: var(--muted);
}

.csr-form {
  background: #fff;
}

/* ── CSR responsive ── */

@media (max-width: 900px) {
  .csr-process-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .csr-trust-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .csr-contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 640px) {
  .csr-panel-grid {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .csr-tab-bar {
    gap: 6px;
  }

  .csr-tab {
    font-size: 0.82rem;
    padding: 8px 18px;
  }
}

/* ── PM-KUSUM Solar page ── */

.kusum-hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  background: var(--forest);
}

.kusum-hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.5) brightness(0.4);
}

.kusum-hero-veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(14,23,20,0.25) 0%, rgba(14,23,20,0.65) 50%, rgba(14,23,20,0.97) 100%);
}

.kusum-solar-nodes {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.ksn {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--sand);
  box-shadow: 0 0 10px rgba(199,168,120,0.7);
}

.ksn::before,
.ksn::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(199,168,120,0.35);
  animation: ksn-expand 3s ease-out infinite;
}

.ksn::before { inset: -7px; }
.ksn::after  { inset: -16px; animation-delay: 0.9s; }

@keyframes ksn-expand {
  0%   { opacity: 0.7; transform: scale(1); }
  100% { opacity: 0;   transform: scale(2.2); }
}

.ksn-1 { top: 54%; left: 21%; }
.ksn-2 { top: 40%; left: 27%; animation-delay: 0.5s; }
.ksn-3 { top: 62%; left: 33%; animation-delay: 1s; }
.ksn-4 { top: 48%; left: 43%; animation-delay: 1.4s; }
.ksn-5 { top: 74%; left: 46%; animation-delay: 0.3s; }
.ksn-6 { top: 37%; left: 52%; animation-delay: 0.8s; }

.kusum-hero-content {
  position: relative;
  z-index: 1;
  padding-top: 140px;
  padding-bottom: 80px;
  max-width: 680px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(199,168,120,0.6);
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.breadcrumb a {
  color: rgba(199,168,120,0.6);
  text-decoration: none;
  transition: color 0.15s;
}

.breadcrumb a:hover { color: var(--sand); }

.breadcrumb span:last-child { color: rgba(240,233,220,0.8); }

.kusum-hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.8rem);
  font-weight: 400;
  line-height: 1.08;
  color: var(--paper);
  margin: 0 0 20px;
  letter-spacing: -0.02em;
}

.kusum-hero-lead {
  font-size: 1.05rem;
  line-height: 1.65;
  color: rgba(240,233,220,0.68);
  margin: 0 0 36px;
  max-width: 520px;
}

/* ── Glassmorphic PM-KUSUM cards ── */

.kusum-scheme-section { padding: 80px 0; }

.kusum-scheme-head { margin-bottom: 0; }

.kusum-scheme-intro {
  font-size: 0.97rem;
  line-height: 1.7;
  color: rgba(240,233,220,0.6);
  max-width: 620px;
  margin: 16px 0 52px;
}

.kusum-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.kusum-card {
  background: rgba(16,47,39,0.38);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(199,168,120,0.16);
  border-radius: 16px;
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
}

.kusum-card:hover {
  border-color: rgba(199,168,120,0.45);
  box-shadow: 0 0 48px rgba(199,168,120,0.08), 0 12px 40px rgba(0,0,0,0.35);
  transform: translateY(-5px);
}

.kusum-card-icon {
  width: 52px;
  height: 52px;
  color: var(--sand);
  opacity: 0.8;
  flex-shrink: 0;
}

.kusum-card-tag {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sand);
}

.kusum-card-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--paper);
  margin: 0;
  line-height: 1.2;
}

.kusum-card-text {
  font-size: 0.9rem;
  line-height: 1.65;
  color: rgba(240,233,220,0.65);
  margin: 0;
  flex: 1;
}

.kusum-card-specs {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid rgba(199,168,120,0.14);
  padding-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.kusum-card-specs li {
  font-size: 0.8rem;
  color: rgba(199,168,120,0.65);
  padding-left: 14px;
  position: relative;
}

.kusum-card-specs li::before {
  content: '→';
  position: absolute;
  left: 0;
  opacity: 0.6;
}

/* ── Timeline ── */

.kusum-timeline-section { background: var(--paper); }

.kusum-tl-head { margin-bottom: 56px; }

.kusum-timeline {
  position: relative;
  padding-left: 54px;
  max-width: 720px;
}

.kusum-timeline::before {
  content: '';
  position: absolute;
  left: 12px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: linear-gradient(to bottom, var(--sand), rgba(199,168,120,0.08));
}

.kusum-node {
  position: relative;
  margin-bottom: 56px;
}

.kusum-node:last-child { margin-bottom: 0; }

.kusum-node-dot {
  position: absolute;
  left: -47px;
  top: 6px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--sand);
  box-shadow: 0 0 0 4px rgba(199,168,120,0.14), 0 0 18px rgba(199,168,120,0.3);
}

.kusum-node-dot::after {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1.5px solid rgba(199,168,120,0.3);
  animation: knode-pulse 2.6s ease-out infinite;
}

@keyframes knode-pulse {
  0%   { opacity: 0.8; transform: scale(1); }
  100% { opacity: 0;   transform: scale(2.1); }
}

.kusum-node-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--clay);
  margin-bottom: 6px;
}

.kusum-node-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--forest);
  margin: 0 0 12px;
  line-height: 1.15;
}

.kusum-node p {
  font-size: 0.97rem;
  line-height: 1.72;
  color: var(--muted);
  margin: 0;
}

/* ── ESG / Carbon CTA section ── */

.kusum-esg-section {
  background:
    radial-gradient(ellipse at 25% 60%, rgba(25,63,51,0.7) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 20%, rgba(16,47,39,0.5) 0%, transparent 50%),
    var(--ink);
  padding: 100px 0;
}

.kusum-esg-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.kusum-esg-inner .section-kicker { display: block; margin-bottom: 24px; }

.kusum-esg-headline {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.9rem);
  font-weight: 400;
  color: var(--paper);
  line-height: 1.14;
  margin: 0 0 28px;
  letter-spacing: -0.02em;
}

.kusum-esg-body {
  font-size: 0.98rem;
  line-height: 1.72;
  color: rgba(240,233,220,0.65);
  margin: 0 0 48px;
}

.kusum-esg-pillars {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  text-align: left;
  margin-bottom: 52px;
}

.kusum-esg-pillars > div {
  border-top: 1.5px solid rgba(199,168,120,0.28);
  padding-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.kusum-esg-pillars strong {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--sand);
}

.kusum-esg-pillars span {
  font-size: 0.8rem;
  line-height: 1.5;
  color: rgba(240,233,220,0.5);
}

.kusum-cta-pulse {
  font-size: 1rem;
  padding: 16px 44px;
  animation: kusum-glow 2.8s ease-in-out infinite;
}

@keyframes kusum-glow {
  0%, 100% { box-shadow: 0 0 16px rgba(199,168,120,0.3), 0 4px 14px rgba(0,0,0,0.3); }
  50%       { box-shadow: 0 0 44px rgba(199,168,120,0.65), 0 0 80px rgba(199,168,120,0.18), 0 4px 20px rgba(0,0,0,0.35); }
}

@media (max-width: 860px) {
  .kusum-cards { grid-template-columns: 1fr; }
  .kusum-esg-pillars { grid-template-columns: 1fr; }
}

/* ── Touch device overrides ── */
@media (hover: none) {
  .team-flip-card:hover .team-flip-inner {
    transform: none;
  }

  .team-flip-card.is-flipped .team-flip-inner {
    transform: rotateY(180deg);
  }

  [data-tilt-card]:hover {
    transform: none !important;
  }

  .event-showcase-card img {
    filter: saturate(0.88) contrast(1.04);
  }

  .service-proof-card:hover,
  .action-room-card:hover {
    transform: none;
  }
}

/* ═══════════════════════════════════════════════
   GOVERNMENT & ACADEMIC EVENTS PAGE
   Eco-futurism dark theme — native CSS only
═══════════════════════════════════════════════ */

/* ── Hero ── */
.gov-events-hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  background:
    radial-gradient(ellipse at 20% 60%, rgba(74, 222, 128, 0.08), transparent 45%),
    radial-gradient(ellipse at 80% 20%, rgba(199, 168, 120, 0.12), transparent 40%),
    linear-gradient(160deg, #061410, #0a1f1a 55%, #0f2b22);
  color: #e8dfce;
  overflow: hidden;
}

.gov-events-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(74, 222, 128, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(74, 222, 128, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: linear-gradient(180deg, transparent, black 30%, black 80%, transparent);
  pointer-events: none;
}

.gov-events-hero-frame {
  position: relative;
  z-index: 2;
  padding-top: clamp(96px, 12vw, 160px);
  padding-bottom: clamp(80px, 10vw, 130px);
}

.gov-events-hero-content {
  max-width: 780px;
}

.gov-events-headline {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 300;
  font-style: italic;
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: #e8dfce;
  margin: 24px 0 28px;
}

.gov-events-lead {
  max-width: 60ch;
  color: rgba(232, 223, 206, 0.72);
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  line-height: 1.65;
  margin-bottom: 40px;
}

.gov-events-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ── Eco section base ── */
.eco-section {
  padding: clamp(72px, 9vw, 120px) 0;
  background:
    radial-gradient(ellipse at 90% 10%, rgba(74, 222, 128, 0.06), transparent 40%),
    linear-gradient(180deg, #0a1f1a, #081814);
  color: #e8dfce;
}

.eco-section--alt {
  background:
    radial-gradient(ellipse at 10% 80%, rgba(199, 168, 120, 0.08), transparent 40%),
    linear-gradient(180deg, #081814, #0a1f1a);
}

/* ── Eco section header ── */
.eco-section-header {
  max-width: 760px;
  margin-bottom: clamp(44px, 6vw, 72px);
}

.eco-kicker {
  display: block;
  color: #4ade80;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.eco-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.6rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.06;
  letter-spacing: -0.01em;
  color: #e8dfce;
  margin: 0 0 16px;
}

.eco-subhead {
  color: rgba(232, 223, 206, 0.62);
  font-size: 1rem;
  line-height: 1.7;
  margin: 0;
}

/* ── Metric glass grid ── */
.metric-glass-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: rgba(74, 222, 128, 0.1);
  border: 1px solid rgba(74, 222, 128, 0.15);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: clamp(44px, 6vw, 72px);
}

.metric-glass-card {
  display: flex;
  flex-direction: column;
  padding: 28px 24px 24px;
  background:
    radial-gradient(ellipse at 80% 10%, rgba(74, 222, 128, 0.07), transparent 50%),
    rgba(10, 31, 26, 0.85);
  backdrop-filter: blur(20px);
  transition: background 0.3s ease, transform 0.3s ease;
}

.metric-glass-card:hover {
  background:
    radial-gradient(ellipse at 80% 10%, rgba(74, 222, 128, 0.14), transparent 50%),
    rgba(12, 38, 32, 0.95);
}

/* ── Metric visual zones ── */
.metric-visual {
  height: 110px;
  margin-bottom: 20px;
  border-radius: 6px;
  position: relative;
  overflow: hidden;
  background: rgba(74, 222, 128, 0.05);
  border: 1px solid rgba(74, 222, 128, 0.1);
}

/* Bottles visual — cascading dot columns */
.mv-bottles {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 8px;
  padding: 12px;
}

.mv-bottles i {
  display: block;
  width: 16px;
  border-radius: 3px 3px 2px 2px;
  background: linear-gradient(180deg, rgba(74, 222, 128, 0.7), rgba(74, 222, 128, 0.25));
  animation: bottleFloat 2.4s ease-in-out infinite;
}

.mv-bottles i:nth-child(1) { height: 60px; animation-delay: 0s; }
.mv-bottles i:nth-child(2) { height: 78px; animation-delay: 0.2s; }
.mv-bottles i:nth-child(3) { height: 50px; animation-delay: 0.4s; }
.mv-bottles i:nth-child(4) { height: 70px; animation-delay: 0.1s; }
.mv-bottles i:nth-child(5) { height: 55px; animation-delay: 0.3s; }
.mv-bottles i:nth-child(6) { height: 65px; animation-delay: 0.5s; }

@keyframes bottleFloat {
  0%, 100% { opacity: 0.6; transform: translateY(0); }
  50% { opacity: 1; transform: translateY(-4px); }
}

/* Fabric visual — woven grid */
.mv-fabric {
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(0deg, transparent, transparent 8px, rgba(74, 222, 128, 0.15) 8px, rgba(74, 222, 128, 0.15) 9px),
    repeating-linear-gradient(90deg, transparent, transparent 8px, rgba(199, 168, 120, 0.15) 8px, rgba(199, 168, 120, 0.15) 9px),
    linear-gradient(135deg, rgba(74, 222, 128, 0.1), rgba(199, 168, 120, 0.08));
  animation: fabricShimmer 3s ease-in-out infinite;
}

@keyframes fabricShimmer {
  0%, 100% { opacity: 0.7; }
  50% { opacity: 1; }
}

/* Donut visual */
.metric-visual--donut {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.donut-svg {
  width: 80px;
  height: 80px;
}

.donut-pct {
  position: absolute;
  font-family: var(--font-sans);
  font-size: 1.1rem;
  font-weight: 700;
  color: #4ade80;
}

/* Odometer visual */
.mv-odometer {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.odo-panel {
  background: rgba(74, 222, 128, 0.1);
  border: 1px solid rgba(74, 222, 128, 0.2);
  border-radius: 4px;
  padding: 8px 10px;
  text-align: center;
}

.odo-num {
  display: block;
  color: #4ade80;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  font-variant-numeric: tabular-nums;
}

.odo-unit {
  display: block;
  color: rgba(232, 223, 206, 0.5);
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 2px;
}

.odo-sep {
  color: rgba(74, 222, 128, 0.5);
  font-size: 1.2rem;
  font-weight: 300;
}

/* Sun visual */
.mv-sun {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sun-core {
  display: block;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: radial-gradient(circle, #ffd97d, #c7a878);
  box-shadow: 0 0 20px rgba(199, 168, 120, 0.6);
  animation: sunPulse 2s ease-in-out infinite;
  position: relative;
  z-index: 2;
}

@keyframes sunPulse {
  0%, 100% { box-shadow: 0 0 16px rgba(199, 168, 120, 0.5); transform: scale(1); }
  50% { box-shadow: 0 0 32px rgba(199, 168, 120, 0.9); transform: scale(1.1); }
}

.sun-ray {
  display: block;
  position: absolute;
  width: 3px;
  height: 18px;
  background: linear-gradient(180deg, rgba(199, 168, 120, 0.8), transparent);
  border-radius: 2px;
  transform-origin: 1.5px 36px;
  animation: sunRayPulse 2s ease-in-out infinite;
}

.sun-ray-1 { transform: rotate(0deg); animation-delay: 0s; }
.sun-ray-2 { transform: rotate(45deg); animation-delay: 0.25s; }
.sun-ray-3 { transform: rotate(90deg); animation-delay: 0.5s; }
.sun-ray-4 { transform: rotate(135deg); animation-delay: 0.75s; }
.sun-ray-5 { transform: rotate(180deg); animation-delay: 1s; }
.sun-ray-6 { transform: rotate(225deg); animation-delay: 1.25s; }
.sun-ray-7 { transform: rotate(270deg); animation-delay: 1.5s; }
.sun-ray-8 { transform: rotate(315deg); animation-delay: 1.75s; }

@keyframes sunRayPulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}

/* EV visual */
.mv-ev {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.ev-body {
  width: 64px;
  height: 24px;
  background: linear-gradient(135deg, rgba(74, 222, 128, 0.6), rgba(74, 222, 128, 0.25));
  border-radius: 6px 10px 4px 4px;
  position: relative;
  animation: evGlide 3s ease-in-out infinite;
}

.ev-body::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 10px;
  width: 36px;
  height: 14px;
  background: rgba(74, 222, 128, 0.4);
  border-radius: 4px 4px 0 0;
}

.ev-wheels {
  display: flex;
  gap: 36px;
  margin-top: -6px;
}

.ev-wheels i {
  display: block;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 2px solid rgba(74, 222, 128, 0.7);
  background: rgba(74, 222, 128, 0.15);
}

.ev-track {
  width: 100px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(74, 222, 128, 0.4), transparent);
}

@keyframes evGlide {
  0%, 100% { transform: translateX(-6px); }
  50% { transform: translateX(6px); }
}

/* Bio / leaf visual */
.mv-bio {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bio-leaf {
  display: block;
  position: absolute;
  width: 32px;
  height: 44px;
  border-radius: 50% 0;
  background: linear-gradient(135deg, rgba(74, 222, 128, 0.6), rgba(74, 222, 128, 0.2));
  animation: leafSway 3s ease-in-out infinite;
}

.bio-leaf-1 { transform: rotate(-30deg) translateX(-12px); animation-delay: 0s; }
.bio-leaf-2 { transform: rotate(30deg) translateX(12px) scaleX(-1); animation-delay: 0.5s; }

.bio-circle {
  display: block;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid rgba(199, 168, 120, 0.5);
  position: relative;
  z-index: 2;
  animation: bioCirclePulse 2.5s ease-in-out infinite;
}

@keyframes leafSway {
  0%, 100% { transform: rotate(-30deg) translateX(-12px); }
  50% { transform: rotate(-24deg) translateX(-12px) translateY(-4px); }
}

@keyframes bioCirclePulse {
  0%, 100% { border-color: rgba(199, 168, 120, 0.4); }
  50% { border-color: rgba(199, 168, 120, 0.9); }
}

/* Tree visual */
.mv-tree {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding-bottom: 12px;
}

.tree-trunk {
  width: 8px;
  height: 0;
  background: linear-gradient(180deg, rgba(166, 109, 66, 0.8), rgba(166, 109, 66, 0.4));
  border-radius: 2px;
  transition: height 1.6s cubic-bezier(0.34, 1.2, 0.64, 1) 0.4s;
}

.tree-canopy {
  width: 0;
  height: 0;
  position: absolute;
  bottom: 40px;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-bottom: 0px solid rgba(74, 222, 128, 0.8);
  transition: border-bottom-width 1.4s cubic-bezier(0.34, 1.2, 0.64, 1) 0.6s;
}

.metric-glass-card.in-view .tree-trunk { height: 40px; }
.metric-glass-card.in-view .tree-canopy { border-bottom-width: 60px; }
.metric-glass-card.in-view .donut-fill { stroke-dashoffset: var(--donut-offset, 162); }

/* ── Metric text ── */
.metric-num {
  font-family: var(--font-sans);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 800;
  color: #4ade80;
  line-height: 1;
  font-variant-numeric: tabular-nums;
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}

.metric-hero-label {
  font-family: var(--font-sans);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 800;
  color: #4ade80;
  line-height: 1;
  margin-bottom: 6px;
  display: block;
}

.metric-label {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 700;
  color: rgba(232, 223, 206, 0.85);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 10px;
  display: block;
}

.metric-desc {
  font-size: 0.84rem;
  color: rgba(232, 223, 206, 0.5);
  line-height: 1.55;
  margin: 0;
  flex: 1;
}

/* ── Footprint badge ── */
.eco-footprint-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: clamp(36px, 5vw, 56px);
  margin-bottom: clamp(44px, 6vw, 72px);
  background:
    radial-gradient(ellipse at 50% 0%, rgba(74, 222, 128, 0.12), transparent 55%),
    rgba(74, 222, 128, 0.04);
  border: 1px solid rgba(74, 222, 128, 0.2);
  border-radius: 12px;
  text-align: center;
}

.eco-footprint-inner {
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.eco-footprint-num {
  font-family: var(--font-display);
  font-size: clamp(4rem, 9vw, 8rem);
  font-weight: 300;
  font-style: italic;
  color: #4ade80;
  line-height: 1;
  letter-spacing: -0.03em;
}

.eco-footprint-unit {
  font-family: var(--font-sans);
  font-size: clamp(1.2rem, 2.5vw, 2rem);
  color: rgba(74, 222, 128, 0.6);
  font-weight: 400;
}

.eco-footprint-label {
  font-size: 0.84rem;
  color: rgba(232, 223, 206, 0.5);
  letter-spacing: 0.04em;
}

/* ── Before / After comparison slider ── */
.comparison-section {
  margin-bottom: clamp(44px, 6vw, 72px);
}

.comparison-title {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.5vw, 2rem);
  font-weight: 400;
  font-style: italic;
  color: #e8dfce;
  margin: 0 0 6px;
}

.comparison-hint {
  font-size: 0.8rem;
  color: rgba(232, 223, 206, 0.4);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 0 0 24px;
}

.comparison-wrap {
  position: relative;
  height: 280px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(74, 222, 128, 0.12);
  user-select: none;
}

.comparison-side {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 32px 40px;
  gap: 20px;
}

.comparison-conventional {
  background:
    radial-gradient(ellipse at 80% 20%, rgba(239, 68, 68, 0.08), transparent 50%),
    rgba(30, 10, 10, 0.95);
}

.comparison-green {
  background:
    radial-gradient(ellipse at 20% 80%, rgba(74, 222, 128, 0.12), transparent 50%),
    rgba(8, 30, 20, 0.98);
  clip-path: inset(0 50% 0 0);
  transition: clip-path 0s;
}

.comparison-badge {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(239, 68, 68, 0.8);
  border: 1px solid rgba(239, 68, 68, 0.3);
  border-radius: 999px;
  padding: 4px 12px;
  width: max-content;
}

.comparison-badge--green {
  color: #4ade80;
  border-color: rgba(74, 222, 128, 0.3);
}

.comparison-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.comparison-conventional .comparison-list li {
  color: rgba(232, 223, 206, 0.45);
  font-size: 0.9rem;
  padding-left: 18px;
  position: relative;
}

.comparison-conventional .comparison-list li::before {
  content: "✕";
  position: absolute;
  left: 0;
  color: rgba(239, 68, 68, 0.5);
  font-size: 0.7rem;
}

.comparison-green .comparison-list li {
  color: rgba(232, 223, 206, 0.9);
  font-size: 0.9rem;
  padding-left: 18px;
  position: relative;
}

.comparison-green .comparison-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #4ade80;
  font-size: 0.8rem;
}

/* Handle */
.comparison-handle {
  position: absolute;
  top: 0;
  left: 50%;
  height: 100%;
  width: 2px;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  pointer-events: none;
  z-index: 3;
}

.comparison-handle-bar {
  flex: 1;
  width: 2px;
  background: rgba(74, 222, 128, 0.5);
}

.comparison-handle-knob {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #4ade80;
  color: #081814;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  box-shadow: 0 0 20px rgba(74, 222, 128, 0.5);
  flex-shrink: 0;
}

/* Invisible range input sits on top */
.comparison-range {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: ew-resize;
  z-index: 10;
  margin: 0;
}

/* ── 98% reduction chart ── */
.reduction-chart-section {
  margin-bottom: clamp(40px, 6vw, 64px);
}

.reduction-chart-title {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.5vw, 2rem);
  font-weight: 400;
  font-style: italic;
  color: #e8dfce;
  margin: 0 0 6px;
}

.reduction-chart-sub {
  font-size: 0.8rem;
  color: rgba(232, 223, 206, 0.4);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 0 0 36px;
}

.reduction-chart {
  display: flex;
  align-items: flex-end;
  gap: clamp(24px, 4vw, 64px);
  height: 320px;
  padding-bottom: 0;
}

.chart-bar-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  flex: 0 0 auto;
}

.chart-bar {
  position: relative;
  width: clamp(64px, 8vw, 100px);
  height: 0;
  border-radius: 6px 6px 0 0;
  transition: height 1.4s cubic-bezier(0.34, 1.1, 0.64, 1);
  cursor: pointer;
}

.chart-bar--conventional {
  background: linear-gradient(180deg, rgba(239, 68, 68, 0.9), rgba(185, 28, 28, 0.7));
  box-shadow: 0 0 24px rgba(239, 68, 68, 0.2);
  --final-height: 280px;
}

.chart-bar--green {
  background: linear-gradient(180deg, #4ade80, rgba(34, 197, 94, 0.7));
  box-shadow: 0 0 20px rgba(74, 222, 128, 0.35);
  --final-height: 12px;
}

.reduction-chart.bars-animate .chart-bar--conventional { height: var(--final-height); }
.reduction-chart.bars-animate .chart-bar--green { height: var(--final-height); }

/* Tooltips */
.bar-tooltip {
  position: absolute;
  bottom: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 200px;
  padding: 14px 16px;
  background: rgba(8, 24, 18, 0.96);
  border: 1px solid rgba(74, 222, 128, 0.2);
  border-radius: 8px;
  backdrop-filter: blur(12px);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s ease;
  z-index: 20;
  white-space: nowrap;
}

.bar-tooltip--right {
  left: auto;
  right: 0;
  transform: none;
}

.chart-bar:hover .bar-tooltip,
.chart-bar:focus .bar-tooltip {
  opacity: 1;
}

.bar-tooltip strong {
  display: block;
  font-size: 0.78rem;
  color: #e8dfce;
  margin-bottom: 10px;
  letter-spacing: 0.02em;
}

.bar-tooltip ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.bar-tooltip li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-size: 0.76rem;
}

.bar-tooltip li span { color: rgba(232, 223, 206, 0.55); }
.bar-tooltip li b { color: #4ade80; font-weight: 600; }

.chart-bar-label {
  font-size: 0.76rem;
  color: rgba(232, 223, 206, 0.6);
  text-align: center;
  line-height: 1.4;
}

.chart-bar-label b {
  display: block;
  color: #e8dfce;
  font-size: 0.84rem;
  margin-top: 4px;
}

/* Reduction badge */
.reduction-badge {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 36px;
  padding: 24px 32px;
  background: rgba(74, 222, 128, 0.06);
  border: 1px solid rgba(74, 222, 128, 0.15);
  border-radius: 8px;
}

.reduction-pct {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 300;
  font-style: italic;
  color: #4ade80;
  line-height: 1;
  letter-spacing: -0.02em;
  flex-shrink: 0;
}

.reduction-desc {
  font-size: 0.9rem;
  color: rgba(232, 223, 206, 0.65);
  line-height: 1.5;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .metric-glass-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .comparison-wrap {
    height: auto;
    min-height: 320px;
  }

  .reduction-chart {
    height: 240px;
  }
}

@media (max-width: 600px) {
  .metric-glass-grid {
    grid-template-columns: 1fr;
  }

  .comparison-wrap {
    height: auto;
    min-height: unset;
    display: flex;
    flex-direction: column;
    overflow: visible;
  }

  .comparison-side {
    position: static;
    padding: 24px 20px;
    min-height: 180px;
  }

  .comparison-conventional {
    border-radius: 10px 10px 0 0;
  }

  .comparison-green {
    clip-path: none !important;
    border-radius: 0 0 10px 10px;
  }

  .comparison-range,
  .comparison-handle {
    display: none;
  }

  .gov-events-actions {
    flex-direction: column;
  }

  .reduction-badge {
    flex-direction: column;
    text-align: center;
  }
}

/* ══════════════════════════════════════════════
   GLOBAL RECOGNITION — DGEMS WORLD MAP
   ══════════════════════════════════════════════ */

.recog-globe-section {
  padding-block: 5.5rem 6rem;
}

.recog-header {
  text-align: center;
  margin-bottom: 3rem;
}

.recog-header .section-title {
  max-width: 640px;
  margin-inline: auto;
}

/* Poster — image + SVG overlay stacked */
.recog-poster {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(199, 168, 120, 0.12);
  line-height: 0;
}

.recog-poster-img {
  width: 100%;
  display: block;
}

.recog-cert-caption {
  font-size: 0.78rem;
  color: rgba(240, 233, 220, 0.45);
  text-align: center;
  letter-spacing: 0.04em;
  margin: 1.2rem 0 0;
}

/* ══════════════════════════════════════════════
   AFRICA INVESTMENTS PAGE
   ══════════════════════════════════════════════ */

/* Hero */
.africa-hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.africa-hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.africa-hero-veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(14, 23, 20, 0.55) 0%,
    rgba(16, 47, 39, 0.78) 60%,
    rgba(10, 18, 14, 0.92) 100%
  );
}

.africa-hero-content {
  position: relative;
  z-index: 1;
  padding-block: 7rem 5rem;
  max-width: 780px;
}

.africa-hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5.5vw, 4.6rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.08;
  color: var(--paper);
  margin: 1.2rem 0 1.6rem;
}

.africa-hero-lead {
  font-size: clamp(1rem, 1.6vw, 1.18rem);
  color: rgba(240, 233, 220, 0.8);
  max-width: 640px;
  line-height: 1.65;
  margin: 0;
}

/* ── Africa Eco-Futurism ───────────────────────────────────── */
.af-tabs-section {
  background: #0e0a08;
  padding: 0 0 7rem;
}

.af-tab-bar {
  display: flex;
  gap: 6px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 100px;
  padding: 6px;
  width: fit-content;
  margin: 0 auto 4.5rem;
}

.af-tab {
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.42);
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  padding: 0.7rem 1.75rem;
  border-radius: 100px;
  cursor: pointer;
  transition: color 0.25s, background 0.25s, box-shadow 0.25s;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
}

.af-tab svg { width: 15px; height: 15px; flex-shrink: 0; }

.af-tab:hover:not(.active) { color: rgba(255, 255, 255, 0.72); }

.af-tab.active {
  background: #ff6b35;
  color: #1a0600;
  font-weight: 700;
  box-shadow: 0 0 18px rgba(255, 107, 53, 0.45), 0 0 42px rgba(255, 107, 53, 0.14);
}

.af-panel { animation: fadeUp 0.3s ease both; }

.af-panel-hero {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 3.5rem;
}

/* Vis box */
.af-vis-box {
  position: relative;
  width: 300px;
  height: 340px;
  border-radius: 20px;
  background: rgba(255, 107, 53, 0.03);
  border: 1px solid rgba(255, 107, 53, 0.13);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.af-vis-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 60%, rgba(255, 107, 53, 0.09) 0%, transparent 68%);
  pointer-events: none;
}

.af-vis-box--forest { height: 300px; }

.af-vis-spin {
  position: absolute;
  inset: -60%;
  background: conic-gradient(from 0deg, transparent 0%, rgba(255, 107, 53, 0.025) 25%, transparent 50%);
  animation: af-spin 32s linear infinite;
}

@keyframes af-spin { to { transform: rotate(360deg); } }

/* Africa SVG map */
.af-africa-svg {
  width: 90%;
  height: 90%;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 0 18px rgba(255, 107, 53, 0.2));
}

.af-map-shape {
  stroke: rgba(255, 107, 53, 0.38);
  stroke-width: 1.5;
  fill: rgba(255, 107, 53, 0.05);
}

.af-map-node {
  fill: #ff6b35;
  animation: af-node-pulse 2.5s ease-in-out infinite;
}

@keyframes af-node-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.35; }
}

.af-map-ring {
  fill: none;
  stroke: #ff6b35;
  stroke-width: 0.8;
  opacity: 0;
  animation: af-ring-expand 2.8s ease-out infinite;
}

@keyframes af-ring-expand {
  0% { r: 5px; opacity: 0.65; }
  100% { r: 16px; opacity: 0; }
}

.af-map-line {
  stroke: rgba(255, 107, 53, 0.28);
  stroke-width: 0.8;
  stroke-dasharray: 4 3;
  animation: af-dash-move 3s linear infinite;
}

@keyframes af-dash-move { to { stroke-dashoffset: -14; } }

.af-map-label {
  fill: rgba(255, 255, 255, 0.6);
  font-family: var(--font-sans);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

/* Forest / tree SVG */
.af-tree-svg {
  width: 100px;
  height: 130px;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 0 22px rgba(255, 107, 53, 0.28));
}

.af-tree-shape {
  stroke: rgba(255, 107, 53, 0.48);
  stroke-width: 1.2;
  fill: rgba(255, 107, 53, 0.07);
}

.af-tree-dot {
  fill: #ff6b35;
  animation: af-node-pulse 2.8s ease-in-out infinite;
}

/* Panel intro */
.af-panel-kicker {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #ff6b35;
  margin-bottom: 1rem;
}

.af-panel-headline {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.8vw, 2.4rem);
  font-weight: 300;
  font-style: italic;
  color: #fff;
  line-height: 1.15;
  margin: 0 0 1.1rem;
}

.af-panel-intro p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 1rem;
  line-height: 1.7;
  margin: 0;
  max-width: 48ch;
}

/* Market cards — 2×2 */
.af-markets-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.af-market-card {
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 16px;
  padding: 2rem;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s, background 0.3s;
}

.af-market-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 12%; right: 12%;
  height: 1px;
  background: linear-gradient(90deg, transparent, #ff6b35, transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.af-market-card:hover {
  border-color: rgba(255, 107, 53, 0.28);
  box-shadow: 0 0 32px rgba(255, 107, 53, 0.1), 0 8px 40px rgba(0,0,0,0.5);
  transform: translateY(-5px);
  background: rgba(255, 107, 53, 0.04);
}

.af-market-card:hover::after { opacity: 1; }

.af-market-country {
  display: block;
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 300;
  font-style: italic;
  color: #ff6b35;
  line-height: 1;
  margin-bottom: 0.3rem;
}

.af-market-focus {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 1rem;
}

.af-market-card p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.58);
  line-height: 1.65;
  margin: 0;
}

/* Carbon — See Examples */
.af-examples-section { margin-bottom: 3rem; }

.af-examples-head { margin-bottom: 1.5rem; }

.af-examples-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 300;
  font-style: italic;
  color: #fff;
  margin: 0 0 0.35rem;
}

.af-examples-sub {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.42);
  margin: 0;
}

.af-examples-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}

.af-example-card {
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 14px;
  padding: 1.75rem;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: border-color 0.3s, box-shadow 0.3s;
}

.af-example-card:hover {
  border-color: rgba(255, 107, 53, 0.22);
  box-shadow: 0 0 22px rgba(255, 107, 53, 0.07);
}

.af-example-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(255, 107, 53, 0.09);
  border: 1px solid rgba(255, 107, 53, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.1rem;
}

.af-example-icon svg { width: 18px; height: 18px; }

.af-example-title {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: rgba(255,255,255,0.88);
  margin-bottom: 0.5rem;
}

.af-example-text {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.43);
  line-height: 1.6;
  margin: 0;
}

.af-nbs-cta {
  display: flex;
  align-items: center;
  margin-bottom: 3rem;
}

.af-nbs-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  background: #ff6b35;
  color: #1a0600;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 700;
  border-radius: 100px;
  text-decoration: none;
  letter-spacing: 0.02em;
  box-shadow: 0 0 22px rgba(255, 107, 53, 0.42), 0 0 55px rgba(255, 107, 53, 0.12);
  transition: box-shadow 0.3s, transform 0.2s;
}

.af-nbs-link:hover {
  box-shadow: 0 0 32px rgba(255, 107, 53, 0.62), 0 0 80px rgba(255, 107, 53, 0.2);
  transform: translateY(-2px);
}

/* Flagship card */
.af-flagship {
  background: rgba(255, 107, 53, 0.04);
  border: 1px solid rgba(255, 107, 53, 0.16);
  border-radius: 20px;
  padding: 2.75rem 3rem;
  margin-bottom: 2.5rem;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  position: relative;
  overflow: hidden;
}

.af-flagship::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.55), transparent);
}

.af-flagship-kicker {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #ff6b35;
  margin-bottom: 0.85rem;
}

.af-flagship h3 {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.2vw, 1.75rem);
  font-weight: 300;
  font-style: italic;
  color: #fff;
  line-height: 1.2;
  margin: 0 0 1rem;
}

.af-flagship > p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.52);
  line-height: 1.7;
  max-width: 64ch;
  margin: 0 0 2rem;
}

.af-flagship-stats {
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
}

.af-stat-val {
  display: block;
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 300;
  font-style: italic;
  color: #ff6b35;
  line-height: 1;
  margin-bottom: 0.3rem;
}

.af-stat-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.36);
}

/* Structuring grid */
.af-structuring-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.af-structuring-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 1.75rem;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: border-color 0.3s, transform 0.3s;
}

.af-structuring-card:hover {
  border-color: rgba(255, 107, 53, 0.2);
  transform: translateY(-3px);
}

.af-structuring-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 300;
  font-style: italic;
  color: rgba(255, 107, 53, 0.18);
  line-height: 1;
  margin-bottom: 0.85rem;
}

.af-structuring-title {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 700;
  color: rgba(255,255,255,0.86);
  margin: 0 0 0.7rem;
}

.af-structuring-card p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.43);
  line-height: 1.65;
  margin: 0;
}

/* Africa responsive */
@media (max-width: 1024px) {
  .af-panel-hero {
    grid-template-columns: 240px 1fr;
    gap: 2.5rem;
  }

  .af-vis-box {
    width: 240px;
    height: 270px;
  }

  .af-examples-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .af-structuring-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 700px) {
  .af-tab-bar {
    width: 100%;
    border-radius: 14px;
    flex-direction: column;
  }

  .af-tab {
    border-radius: 10px;
    justify-content: center;
  }

  .af-panel-hero {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .af-vis-box {
    width: 100%;
    height: 200px;
  }

  .af-markets-grid { grid-template-columns: 1fr; }
  .af-examples-grid { grid-template-columns: 1fr; }
  .af-structuring-grid { grid-template-columns: 1fr; }

  .af-flagship {
    padding: 2rem 1.75rem;
  }

  .af-flagship-stats { gap: 1.75rem; }
}

/* ═══════════════════════════════════════════════
   INVESTMENT — INDIA GOVERNMENT / PM-KUSUM PAGE
═══════════════════════════════════════════════ */

/* ── Breadcrumb ── */
.kusum-breadcrumb {
  background: rgba(8, 24, 18, 0.96);
  border-bottom: 1px solid rgba(74, 222, 128, 0.1);
  padding: 14px 0;
}

.breadcrumb-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  font-size: 0.78rem;
  color: rgba(232, 223, 206, 0.45);
}

.breadcrumb-list a {
  color: rgba(74, 222, 128, 0.75);
  text-decoration: none;
  transition: color 0.2s;
}

.breadcrumb-list a:hover { color: #4ade80; }

.breadcrumb-list [aria-current="page"] {
  color: rgba(232, 223, 206, 0.7);
}

/* ── PM-KUSUM 3-card grid ── */
.kusum-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: rgba(74, 222, 128, 0.1);
  border: 1px solid rgba(74, 222, 128, 0.15);
  border-radius: 12px;
  overflow: hidden;
}

.kusum-card {
  display: flex;
  flex-direction: column;
  padding: 28px 24px 24px;
  background:
    radial-gradient(ellipse at 90% 5%, rgba(74, 222, 128, 0.08), transparent 45%),
    rgba(10, 31, 26, 0.9);
  backdrop-filter: blur(20px);
  transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.kusum-card:hover {
  background:
    radial-gradient(ellipse at 90% 5%, rgba(74, 222, 128, 0.18), transparent 45%),
    rgba(12, 38, 30, 0.98);
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(74, 222, 128, 0.08);
}

.kusum-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.kusum-component-label {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #4ade80;
  border: 1px solid rgba(74, 222, 128, 0.3);
  border-radius: 999px;
  padding: 4px 10px;
}

.kusum-spec {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  color: rgba(199, 168, 120, 0.8);
  font-weight: 600;
  letter-spacing: 0.04em;
}

/* Card icon zones */
.kusum-card-icon {
  height: 100px;
  border-radius: 8px;
  margin-bottom: 22px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(74, 222, 128, 0.08);
  background: rgba(74, 222, 128, 0.04);
}

/* Icon A — Solar panel → grid */
.kusum-icon-grid {
  background:
    linear-gradient(rgba(74, 222, 128, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(74, 222, 128, 0.06) 1px, transparent 1px),
    rgba(8, 24, 18, 0.6);
  background-size: 20px 20px, 20px 20px, 100%;
}

.kusum-icon-grid::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 18px;
  width: 42px;
  height: 32px;
  background:
    repeating-linear-gradient(90deg, rgba(74, 222, 128, 0.5) 0 8px, transparent 8px 10px),
    repeating-linear-gradient(180deg, rgba(74, 222, 128, 0.3) 0 6px, transparent 6px 8px);
  border: 1px solid rgba(74, 222, 128, 0.4);
  border-radius: 3px;
}

.kusum-icon-grid::after {
  content: "";
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  border: 2px solid rgba(199, 168, 120, 0.6);
  border-radius: 4px;
  box-shadow:
    0 0 8px rgba(199, 168, 120, 0.3),
    inset 0 0 8px rgba(199, 168, 120, 0.1);
  animation: gridGlow 2s ease-in-out infinite;
}

@keyframes gridGlow {
  0%, 100% { box-shadow: 0 0 6px rgba(199, 168, 120, 0.3), inset 0 0 6px rgba(199, 168, 120, 0.1); }
  50% { box-shadow: 0 0 16px rgba(199, 168, 120, 0.7), inset 0 0 12px rgba(199, 168, 120, 0.25); }
}

/* Icon B — Water drop with sun */
.kusum-icon-pump::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 12px;
  transform: translateX(-50%);
  width: 36px;
  height: 50px;
  background: linear-gradient(180deg, rgba(74, 222, 128, 0.6), rgba(74, 222, 128, 0.2));
  clip-path: polygon(50% 0%, 100% 40%, 85% 75%, 50% 100%, 15% 75%, 0% 40%);
  animation: pumpDropPulse 2.4s ease-in-out infinite;
}

.kusum-icon-pump::after {
  content: "☀";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -36%);
  color: rgba(199, 168, 120, 0.9);
  font-size: 18px;
  animation: sunRotate 8s linear infinite;
}

@keyframes pumpDropPulse {
  0%, 100% { opacity: 0.6; transform: translateX(-50%) scale(1); }
  50% { opacity: 1; transform: translateX(-50%) scale(1.05); }
}

@keyframes sunRotate {
  from { transform: translate(-50%, -36%) rotate(0deg); }
  to { transform: translate(-50%, -36%) rotate(360deg); }
}

/* Icon C — Loop arrows */
.kusum-icon-loop::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: #4ade80;
  border-right-color: rgba(74, 222, 128, 0.4);
  animation: loopSpin 2s linear infinite;
}

.kusum-icon-loop::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid transparent;
  border-bottom-color: rgba(199, 168, 120, 0.7);
  border-left-color: rgba(199, 168, 120, 0.3);
  animation: loopSpin 1.4s linear infinite reverse;
}

@keyframes loopSpin {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

.kusum-card-title {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 1.8vw, 1.45rem);
  font-weight: 500;
  font-style: italic;
  color: #e8dfce;
  line-height: 1.15;
  margin: 0 0 12px;
}

.kusum-card-text {
  font-size: 0.86rem;
  color: rgba(232, 223, 206, 0.55);
  line-height: 1.6;
  flex: 1;
  margin: 0 0 18px;
}

.kusum-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: auto;
}

.kusum-card-tags span {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: rgba(74, 222, 128, 0.75);
  border: 1px solid rgba(74, 222, 128, 0.2);
  border-radius: 999px;
  padding: 3px 9px;
}

/* ── Investment lane link ── */
.lane-card-link {
  display: inline-block;
  margin-top: 20px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--leaf);
  letter-spacing: 0.04em;
  transition: color 0.2s, gap 0.2s;
  text-decoration: none;
}

.lane-card-link:hover { color: var(--clay); }

/* ── Expanding impact timeline ── */
.kusum-timeline {
  position: relative;
  padding-left: 48px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.kusum-timeline-spine {
  position: absolute;
  left: 14px;
  top: 18px;
  bottom: 18px;
  width: 2px;
  background: linear-gradient(180deg, #4ade80, rgba(74, 222, 128, 0.2));
}

.kusum-timeline-node {
  position: relative;
  display: flex;
  gap: 28px;
  padding-bottom: clamp(36px, 5vw, 60px);
}

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

.kusum-node-dot {
  position: absolute;
  left: -48px;
  top: 4px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(8, 24, 18, 0.95);
  border: 2px solid #4ade80;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 0 12px rgba(74, 222, 128, 0.4);
}

.kusum-node-dot i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4ade80;
  animation: kusumNodePulse 2.5s ease-in-out infinite;
}

.kusum-node-card {
  flex: 1;
  padding: 28px 28px 24px;
  background:
    radial-gradient(ellipse at 100% 0%, rgba(74, 222, 128, 0.07), transparent 50%),
    rgba(10, 31, 26, 0.8);
  border: 1px solid rgba(74, 222, 128, 0.12);
  border-radius: 10px;
  backdrop-filter: blur(16px);
}

.kusum-node-label {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(199, 168, 120, 0.8);
  margin-bottom: 8px;
}

.kusum-node-title {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-weight: 400;
  font-style: italic;
  color: #e8dfce;
  margin: 0 0 12px;
  line-height: 1.2;
}

.kusum-node-card p {
  font-size: 0.88rem;
  color: rgba(232, 223, 206, 0.58);
  line-height: 1.65;
  margin: 0 0 18px;
}

.kusum-node-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.kusum-node-tags span {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: rgba(74, 222, 128, 0.7);
  border: 1px solid rgba(74, 222, 128, 0.18);
  border-radius: 999px;
  padding: 3px 9px;
}

/* ── ESG CTA section ── */
.esg-cta-section {
  position: relative;
  padding: clamp(80px, 10vw, 140px) 0;
  background: linear-gradient(160deg, #040e0b, #071510 40%, #0a1c15 70%, #040e0b);
  color: #e8dfce;
  overflow: hidden;
  text-align: center;
}

.esg-cta-mesh {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 40%, rgba(74, 222, 128, 0.07), transparent 50%),
    radial-gradient(ellipse at 70% 60%, rgba(16, 47, 39, 0.5), transparent 50%),
    radial-gradient(ellipse at 50% 20%, rgba(199, 168, 120, 0.04), transparent 40%);
  pointer-events: none;
}

.esg-cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(74, 222, 128, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(74, 222, 128, 0.02) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse at 50% 50%, black 40%, transparent 75%);
  pointer-events: none;
}

.esg-cta-inner {
  position: relative;
  z-index: 2;
  max-width: 880px;
  margin: 0 auto;
}

.esg-cta-inner .eco-kicker { justify-content: center; display: block; text-align: center; }

.esg-headline {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  font-weight: 300;
  font-style: italic;
  color: #e8dfce;
  line-height: 1.12;
  letter-spacing: -0.015em;
  margin: 16px auto 24px;
  max-width: 780px;
}

.esg-body {
  font-size: clamp(0.92rem, 1.2vw, 1.05rem);
  color: rgba(232, 223, 206, 0.6);
  line-height: 1.72;
  max-width: 68ch;
  margin: 0 auto 48px;
}

/* ESG advantage 3-col grid */
.esg-advantage-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: rgba(74, 222, 128, 0.1);
  border: 1px solid rgba(74, 222, 128, 0.12);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 56px;
  text-align: left;
}

.esg-advantage-item {
  padding: 28px 24px;
  background:
    radial-gradient(ellipse at 80% 0%, rgba(74, 222, 128, 0.06), transparent 50%),
    rgba(8, 22, 16, 0.9);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.esg-adv-icon {
  font-size: 1.4rem;
  color: #4ade80;
  line-height: 1;
}

.esg-advantage-item strong {
  font-family: var(--font-display);
  font-size: 1rem;
  font-style: italic;
  color: #e8dfce;
  font-weight: 500;
}

.esg-advantage-item p {
  font-size: 0.84rem;
  color: rgba(232, 223, 206, 0.5);
  line-height: 1.6;
  margin: 0;
}

/* CTA button with pulse */
.esg-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 40px;
  background: #4ade80;
  color: #061410;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: background 0.25s ease, box-shadow 0.25s ease, transform 0.2s ease;
  box-shadow: 0 0 28px rgba(74, 222, 128, 0.35);
  animation: ctaPulse 3s ease-in-out infinite;
}

.esg-cta-btn:hover {
  background: #86efac;
  box-shadow: 0 0 48px rgba(74, 222, 128, 0.65);
  transform: translateY(-2px);
  animation: none;
}

@keyframes ctaPulse {
  0%, 100% { box-shadow: 0 0 24px rgba(74, 222, 128, 0.3); }
  50% { box-shadow: 0 0 48px rgba(74, 222, 128, 0.6), 0 0 80px rgba(74, 222, 128, 0.2); }
}

.esg-cta-back {
  margin-top: 24px;
  font-size: 0.82rem;
}

.esg-cta-back a {
  color: rgba(74, 222, 128, 0.55);
  text-decoration: none;
  transition: color 0.2s;
}

.esg-cta-back a:hover { color: #4ade80; }

/* ── Responsive ── */
@media (max-width: 900px) {
  .kusum-card-grid {
    grid-template-columns: 1fr;
  }

  .esg-advantage-grid {
    grid-template-columns: 1fr;
  }

  .kusum-node-dot {
    left: -40px;
  }

  .node-1, .node-2, .node-3, .node-4, .node-5 {
    display: none;
  }
}

@media (max-width: 600px) {
  .kusum-timeline {
    padding-left: 36px;
  }

  .kusum-hero-actions {
    flex-direction: column;
  }
}

/* ══════════════════════════════════════════════
   NBS — NATURE-BASED SOLUTIONS PAGE
   ══════════════════════════════════════════════ */

/* ── Hero ── */
.nbs-hero {
  position: relative;
  min-height: 110vh;
  display: flex;
  align-items: flex-end;
  background: #080f0c;
  overflow: hidden;
}

.nbs-hero-map {
  position: absolute;
  inset: 0;
}

.nbs-map-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

.nbs-map-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.nbs-hero-veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    170deg,
    rgba(8,15,12,0.15) 0%,
    rgba(10,20,16,0.35) 45%,
    rgba(8,14,11,0.82) 72%,
    #080f0c 100%
  );
  pointer-events: none;
}

.nbs-hero-content {
  position: relative;
  z-index: 1;
  padding-block: 8rem 6rem;
  max-width: 820px;
}

.nbs-hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.06;
  color: var(--paper);
  margin: 1.2rem 0 1.6rem;
}

.nbs-hero-lead {
  font-size: clamp(1rem, 1.6vw, 1.18rem);
  color: rgba(240, 233, 220, 0.72);
  max-width: 640px;
  line-height: 1.68;
  margin: 0 0 2.5rem;
}

.nbs-node-legend {
  display: flex;
  gap: 1.75rem;
  flex-wrap: wrap;
}

.nbs-legend-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(240, 233, 220, 0.55);
}

.nbs-legend-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--leaf);
  box-shadow: 0 0 8px rgba(199, 168, 120, 0.7);
  flex-shrink: 0;
}

/* Map node pulse */
@keyframes nbs-node-ring {
  0%   { transform: scale(1);   opacity: 0.7; }
  70%  { transform: scale(2.4); opacity: 0;   }
  100% { transform: scale(2.4); opacity: 0;   }
}

.nbs-node-ring {
  animation: nbs-node-ring 2.8s ease-out infinite;
  transform-box: fill-box;
  transform-origin: center;
}

/* ── Services Toggle ── */
.nbs-services-section {
  padding-block: 5rem 6rem;
}

.nbs-toggle-center {
  display: flex;
  justify-content: center;
  margin-bottom: 4rem;
}

.nbs-toggle-track {
  position: relative;
  display: inline-flex;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(199, 168, 120, 0.22);
  border-radius: 100px;
  padding: 5px;
  box-shadow: 0 0 30px rgba(199, 168, 120, 0.07);
}

.nbs-toggle-opt {
  position: relative;
  z-index: 1;
  flex: 1;
  border: none;
  background: none;
  padding: 0.8rem 2rem;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: rgba(240, 233, 220, 0.45);
  cursor: pointer;
  border-radius: 100px;
  transition: color 0.3s;
  white-space: nowrap;
}

.nbs-toggle-track[data-nbs-state="cycle"] .nbs-toggle-opt[data-nbs-toggle="cycle"],
.nbs-toggle-track[data-nbs-state="stage"] .nbs-toggle-opt[data-nbs-toggle="stage"] {
  color: var(--paper);
}

.nbs-toggle-thumb {
  position: absolute;
  top: 5px;
  bottom: 5px;
  left: 5px;
  width: calc(50% - 5px);
  background: rgba(199, 168, 120, 0.14);
  border: 1px solid rgba(199, 168, 120, 0.32);
  border-radius: 100px;
  transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}

.nbs-toggle-track[data-nbs-state="stage"] .nbs-toggle-thumb {
  transform: translateX(100%);
}

/* Panel content */
.nbs-panel {
  animation: fadeUp 0.3s ease both;
}

.nbs-panel-intro {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3.5rem;
}

.nbs-panel-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.6vw, 2.1rem);
  font-weight: 300;
  font-style: italic;
  color: var(--paper);
  line-height: 1.22;
  margin: 0 0 0.85rem;
}

.nbs-panel-intro p {
  color: rgba(240, 233, 220, 0.6);
  font-size: 1rem;
  line-height: 1.68;
  margin: 0;
}

/* Cycle steps */
.nbs-cycle-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.nbs-step {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(199, 168, 120, 0.12);
  border-radius: 12px;
  padding: 1.75rem 1.5rem;
  transition: border-color 0.25s, background 0.25s;
}

.nbs-step:hover {
  border-color: rgba(199, 168, 120, 0.28);
  background: rgba(255, 255, 255, 0.07);
}

.nbs-step-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 300;
  font-style: italic;
  color: rgba(199, 168, 120, 0.3);
  line-height: 1;
  margin-bottom: 0.75rem;
}

.nbs-step-title {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--paper);
  margin: 0 0 0.5rem;
  letter-spacing: 0.02em;
}

.nbs-step-text {
  font-size: 0.83rem;
  color: rgba(240, 233, 220, 0.55);
  line-height: 1.6;
  margin: 0;
}

/* Stage-wise grid */
.nbs-stage-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.nbs-stage-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(199, 168, 120, 0.12);
  border-radius: 14px;
  padding: 2rem 1.75rem;
  transition: border-color 0.25s;
}

.nbs-stage-card:hover {
  border-color: rgba(199, 168, 120, 0.28);
}

.nbs-stage-card--highlight {
  background: linear-gradient(135deg, rgba(16, 47, 39, 0.6) 0%, rgba(26, 55, 42, 0.5) 100%);
  border-color: rgba(199, 168, 120, 0.28);
  box-shadow: 0 0 40px rgba(199, 168, 120, 0.06) inset;
}

.nbs-stage-badge {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--leaf);
  background: rgba(199, 168, 120, 0.1);
  border: 1px solid rgba(199, 168, 120, 0.25);
  border-radius: 100px;
  padding: 0.2rem 0.65rem;
  margin-bottom: 0.85rem;
}

.nbs-stage-title {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 700;
  color: var(--paper);
  margin: 0 0 0.65rem;
}

.nbs-stage-text {
  font-size: 0.88rem;
  color: rgba(240, 233, 220, 0.6);
  line-height: 1.65;
  margin: 0;
}

/* ── Portfolio Grid ── */
.nbs-portfolio-section {
  padding-block: 5rem 6rem;
  border-top: 1px solid rgba(199, 168, 120, 0.08);
}

.nbs-portfolio-header {
  margin-bottom: 3rem;
}

.nbs-portfolio-sub {
  font-size: 0.9rem;
  color: rgba(240, 233, 220, 0.5);
  margin: 0.5rem 0 0;
}

.nbs-portfolio-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.nbs-card {
  position: relative;
  background: rgba(16, 47, 39, 0.4);
  border: 1px solid rgba(199, 168, 120, 0.13);
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  min-height: 240px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: border-color 0.28s, transform 0.28s, box-shadow 0.28s;
}

.nbs-card:hover {
  border-color: rgba(199, 168, 120, 0.32);
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.nbs-card:focus-visible {
  outline: 2px solid var(--leaf);
  outline-offset: 3px;
}

.nbs-card-accent {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  border-radius: 0 0 16px 16px;
}

.nbs-card-accent--redd { background: linear-gradient(90deg, var(--forest), var(--leaf)); }
.nbs-card-accent--blue { background: linear-gradient(90deg, #1a3a4a, #4a9aba); }
.nbs-card-accent--arr  { background: linear-gradient(90deg, var(--soil), var(--clay)); }

.nbs-card-inner {
  padding: 2rem 1.75rem 2.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.nbs-card-type {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--leaf);
  display: inline-block;
}

.nbs-card-type--blue { color: #4a9aba; }
.nbs-card-type--arr  { color: var(--clay); }

.nbs-card-name {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2vw, 1.65rem);
  font-weight: 300;
  font-style: italic;
  color: var(--paper);
  line-height: 1.15;
  margin: 0;
}

.nbs-card-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.2rem;
}

.nbs-card-chips span {
  font-size: 0.72rem;
  font-weight: 500;
  color: rgba(240, 233, 220, 0.5);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 100px;
  padding: 0.18rem 0.65rem;
}

.nbs-card-cta {
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(240, 233, 220, 0.38);
  letter-spacing: 0.04em;
  margin-top: 0.5rem;
  transition: color 0.2s;
}

.nbs-card:hover .nbs-card-cta {
  color: var(--leaf);
}

/* ── Modal ── */
.nbs-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.nbs-modal[hidden] {
  display: none;
}

.nbs-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 14, 11, 0.82);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  cursor: pointer;
}

.nbs-modal-box {
  position: relative;
  z-index: 1;
  background: linear-gradient(145deg, rgba(16, 47, 39, 0.92) 0%, rgba(10, 24, 18, 0.95) 100%);
  border: 1px solid rgba(199, 168, 120, 0.22);
  border-radius: 20px;
  padding: 3rem 3.5rem;
  max-width: 680px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.6);
  animation: fadeUp 0.28s ease both;
}

.nbs-modal-close {
  position: absolute;
  top: 1.25rem;
  right: 1.5rem;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  width: 36px;
  height: 36px;
  font-size: 1.1rem;
  color: rgba(240, 233, 220, 0.7);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s;
}

.nbs-modal-close:hover {
  background: rgba(255, 255, 255, 0.13);
  color: var(--paper);
}

.nbs-modal-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 100px;
  padding: 0.25rem 0.8rem;
  margin-bottom: 1rem;
}

.nbs-modal-badge--redd { color: var(--leaf); background: rgba(199,168,120,0.1); border: 1px solid rgba(199,168,120,0.25); }
.nbs-modal-badge--blue { color: #4a9aba; background: rgba(74,154,186,0.1); border: 1px solid rgba(74,154,186,0.25); }
.nbs-modal-badge--arr  { color: var(--clay); background: rgba(166,109,66,0.1); border: 1px solid rgba(166,109,66,0.25); }

.nbs-modal-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 300;
  font-style: italic;
  color: var(--paper);
  line-height: 1.15;
  margin: 0 0 1.25rem;
}

.nbs-modal-text {
  font-size: 0.97rem;
  color: rgba(240, 233, 220, 0.72);
  line-height: 1.75;
  margin: 0 0 2rem;
}

.nbs-modal-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  border-top: 1px solid rgba(199, 168, 120, 0.12);
  padding-top: 1.75rem;
}

.nbs-modal-stat {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.nbs-modal-stat-val {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 300;
  font-style: italic;
  color: var(--leaf);
  line-height: 1;
}

.nbs-modal-stat-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: rgba(240, 233, 220, 0.45);
}

body.nbs-modal-open {
  overflow: hidden;
}

/* ── NBS Responsive ── */
@media (max-width: 900px) {
  .nbs-cycle-steps {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 700px) {
  .nbs-toggle-opt {
    padding: 0.7rem 1rem;
    font-size: 0.8rem;
  }

  .nbs-cycle-steps {
    grid-template-columns: 1fr;
  }

  .nbs-stage-grid {
    grid-template-columns: 1fr;
  }

  .nbs-portfolio-grid {
    grid-template-columns: 1fr;
  }

  .nbs-modal-box {
    padding: 2rem 1.5rem;
  }

  .nbs-modal-stats {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

/* ══════════════════════════════════════════════════════
   RENEWABLE ATTRIBUTES — I-RECs, RECs & Carbon Credits
   ══════════════════════════════════════════════════════ */

/* ── Hero ── */
.irec-hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  background:
    radial-gradient(ellipse at 65% 35%, rgba(30, 80, 50, 0.55) 0%, transparent 55%),
    radial-gradient(ellipse at 15% 75%, rgba(8, 50, 30, 0.5) 0%, transparent 50%),
    #030d07;
  overflow: hidden;
}

.irec-cert-nodes {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.irec-node {
  position: absolute;
  border-radius: 5px;
  border: 1px solid rgba(74, 222, 128, 0.14);
  background: rgba(74, 222, 128, 0.025);
}

.irec-n1 { width: 126px; height: 82px; top: 10%; left: 7%;  animation: irecFloat 7.2s ease-in-out 0s    infinite; }
.irec-n2 { width:  80px; height: 52px; top: 28%; left: 19%; animation: irecFloat 9.5s ease-in-out 1.6s  infinite; opacity:.6; }
.irec-n3 { width: 148px; height: 94px; top:  7%; right:11%; animation: irecFloat 8.1s ease-in-out 0.9s  infinite; }
.irec-n4 { width: 104px; height: 68px; top: 42%; right: 7%; animation: irecFloat 6.4s ease-in-out 2.1s  infinite; opacity:.7; }
.irec-n5 { width:  68px; height: 44px; bottom:22%; left:11%; animation: irecFloat 10s  ease-in-out 3.2s  infinite; opacity:.45; }
.irec-n6 { width: 116px; height: 74px; bottom:14%; right:17%; animation: irecFloat 7.8s ease-in-out 1.1s infinite; }

@keyframes irecFloat {
  0%, 100% { transform: translateY(0px) rotate(0deg);   border-color: rgba(74, 222, 128, 0.14); }
  33%       { transform: translateY(-9px) rotate(.6deg); border-color: rgba(74, 222, 128, 0.32); }
  66%       { transform: translateY(5px) rotate(-.4deg); border-color: rgba(74, 222, 128, 0.08); }
}

.irec-hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
  padding: 128px 0 88px;
}

.irec-hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.6rem);
  font-weight: 500;
  font-style: italic;
  color: #e8dfce;
  line-height: 1.07;
  letter-spacing: -0.02em;
  margin: 20px 0 24px;
}

.irec-hero-lead {
  font-size: clamp(1rem, 2vw, 1.22rem);
  color: rgba(232, 223, 206, 0.68);
  line-height: 1.68;
  max-width: 580px;
  margin-bottom: 40px;
}

.irec-hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ── Financial Additionality ── */
.additionality-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.additionality-list {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.additionality-list li {
  font-size: 0.94rem;
  color: rgba(232, 223, 206, 0.72);
  padding-left: 22px;
  position: relative;
  line-height: 1.5;
}

.additionality-list li::before {
  content: "›";
  position: absolute;
  left: 0;
  color: #4ade80;
  font-weight: 700;
  font-size: 1.1rem;
}

.additionality-list li strong {
  color: #e8dfce;
  font-weight: 600;
}

/* Stacked bar chart */
.additionality-chart-wrap {
  display: flex;
  justify-content: center;
}

.additionality-chart {
  width: 100%;
  max-width: 340px;
}

.chart-bars-row {
  display: flex;
  align-items: flex-end;
  gap: 48px;
  height: 260px;
  padding-bottom: 0;
  border-bottom: 1px solid rgba(74, 222, 128, 0.18);
}

.chart-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  flex: 1;
}

.chart-bar {
  width: 64px;
  display: flex;
  flex-direction: column-reverse;
  align-items: stretch;
  border-radius: 4px 4px 0 0;
  overflow: hidden;
}

/* Segments — initial state (no-animation) */
.chart-seg {
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.62rem;
  font-family: var(--font-sans);
  letter-spacing: 0.04em;
  color: rgba(0, 0, 0, 0.55);
  font-weight: 600;
  text-transform: uppercase;
  transition: height 0.8s cubic-bezier(0.34, 1.1, 0.64, 1);
  height: 0;
}

/* Target heights */
.seg-gray-full  { background: rgba(160, 160, 160, 0.28); height: 260px; }
.seg-gray-base  { background: rgba(160, 160, 160, 0.28); height: 104px; }
.seg-irec       { background: rgba(74, 222, 128, 0.62);  height: 104px; color: rgba(0,0,0,0.7); transition-delay: 0.3s; }
.seg-carbon     { background: rgba(134, 239, 172, 0.45); height: 52px;  color: rgba(0,0,0,0.6); transition-delay: 0.6s; }

/* When chart not yet in-view, collapse to 0 */
.additionality-chart-wrap:not(.in-view) .chart-seg { height: 0 !important; }

.chart-seg span {
  writing-mode: vertical-rl;
  white-space: nowrap;
}

.chart-col-label {
  font-size: 0.78rem;
  color: rgba(232, 223, 206, 0.5);
  font-family: var(--font-sans);
  letter-spacing: 0.04em;
  text-align: center;
  line-height: 1.4;
}

.chart-legend {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.legend-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
  color: rgba(232, 223, 206, 0.6);
  font-family: var(--font-sans);
}

.legend-dot {
  width: 12px;
  height: 12px;
  border-radius: 2px;
  flex-shrink: 0;
}

.dot-gray   { background: rgba(160, 160, 160, 0.5); }
.dot-irec   { background: rgba(74, 222, 128, 0.75); }
.dot-carbon { background: rgba(134, 239, 172, 0.55); }

/* ── Pillar Grid ── */
.irec-pillar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 56px;
}

.irec-pillar-card {
  background: rgba(10, 31, 26, 0.78);
  border: 1px solid rgba(74, 222, 128, 0.12);
  border-radius: 16px;
  padding: 36px 32px 32px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.irec-pillar-card:hover {
  border-color: rgba(74, 222, 128, 0.32);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.pillar-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 8px;
}

.pillar-tag {
  font-size: 0.7rem;
  font-family: var(--font-sans);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #4ade80;
  background: rgba(74, 222, 128, 0.1);
  border: 1px solid rgba(74, 222, 128, 0.2);
  border-radius: 100px;
  padding: 4px 12px;
}

/* Pillar icons */
.pillar-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(74, 222, 128, 0.08);
  border: 1px solid rgba(74, 222, 128, 0.15);
  flex-shrink: 0;
}

.pillar-icon-globe { background: rgba(74, 222, 128, 0.08) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 44 44' fill='none'%3E%3Ccircle cx='22' cy='22' r='12' stroke='%234ade80' stroke-width='1.2'/%3E%3Cellipse cx='22' cy='22' rx='5' ry='12' stroke='%234ade80' stroke-width='1'/%3E%3Cline x1='10' y1='22' x2='34' y2='22' stroke='%234ade80' stroke-width='1'/%3E%3Cline x1='12' y1='16' x2='32' y2='16' stroke='%234ade80' stroke-width='0.8'/%3E%3Cline x1='12' y1='28' x2='32' y2='28' stroke='%234ade80' stroke-width='0.8'/%3E%3C/svg%3E") center/28px no-repeat; }

.pillar-icon-india { background: rgba(74, 222, 128, 0.08) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 44 44' fill='none'%3E%3Cpath d='M22 10c-2 3-4 5-5 9 0 4 2 7 5 9s5-2 5-6c0-3-1-6-2-8-1-2-2-3-3-4z' stroke='%234ade80' stroke-width='1.2' stroke-linejoin='round'/%3E%3Ccircle cx='22' cy='24' r='3' stroke='%234ade80' stroke-width='1'/%3E%3Cpath d='M14 34h16' stroke='%234ade80' stroke-width='1.2' stroke-linecap='round'/%3E%3C/svg%3E") center/28px no-repeat; }

.pillar-icon-leaf { background: rgba(74, 222, 128, 0.08) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 44 44' fill='none'%3E%3Cpath d='M22 34c0-8 3-14 8-18-6 0-14 3-16 12l8 6z' stroke='%234ade80' stroke-width='1.2' stroke-linejoin='round'/%3E%3Cpath d='M22 34c0-8-3-14-8-18 4 0 10 2 14 8' stroke='%234ade80' stroke-width='1' stroke-linejoin='round'/%3E%3Cline x1='22' y1='34' x2='22' y2='22' stroke='%234ade80' stroke-width='1' stroke-dasharray='2 2'/%3E%3C/svg%3E") center/28px no-repeat; }

.pillar-title {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 500;
  font-style: italic;
  color: #e8dfce;
  line-height: 1.1;
  margin: 0;
}

.pillar-subtitle {
  font-size: 0.78rem;
  font-family: var(--font-sans);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(74, 222, 128, 0.7);
  margin: 0;
}

.pillar-text {
  font-size: 0.9rem;
  color: rgba(232, 223, 206, 0.72);
  line-height: 1.65;
  margin: 4px 0 0;
}

.pillar-detail {
  font-size: 0.82rem;
  color: rgba(232, 223, 206, 0.45);
  line-height: 1.55;
  font-style: italic;
  border-top: 1px solid rgba(74, 222, 128, 0.1);
  padding-top: 12px;
  margin: 4px 0 0;
}

.pillar-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 8px;
}

.pillar-tags span {
  font-size: 0.68rem;
  font-family: var(--font-sans);
  letter-spacing: 0.05em;
  color: rgba(74, 222, 128, 0.75);
  background: rgba(74, 222, 128, 0.07);
  border: 1px solid rgba(74, 222, 128, 0.15);
  border-radius: 4px;
  padding: 3px 9px;
}

/* ── Qalcurate Section ── */
.qalcurate-section {
  background:
    radial-gradient(ellipse at 80% 50%, rgba(20, 70, 45, 0.3), transparent 55%),
    #06110c;
}

.qalcurate-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.qalcurate-features {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.qalcurate-features li {
  font-size: 0.9rem;
  color: rgba(232, 223, 206, 0.7);
  padding-left: 22px;
  position: relative;
  line-height: 1.5;
}

.qalcurate-features li::before {
  content: "◦";
  position: absolute;
  left: 0;
  color: #4ade80;
  font-size: 1.1rem;
  top: -1px;
}

/* Qalcurate dashboard mockup */
.qalcurate-visual {
  display: flex;
  justify-content: center;
}

.q-screen {
  background: rgba(8, 22, 16, 0.92);
  border: 1px solid rgba(74, 222, 128, 0.2);
  border-radius: 14px;
  width: 100%;
  max-width: 340px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(74, 222, 128, 0.05);
}

.q-screen-header {
  background: rgba(74, 222, 128, 0.07);
  border-bottom: 1px solid rgba(74, 222, 128, 0.1);
  padding: 12px 16px;
  display: flex;
  gap: 8px;
}

.q-screen-header span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(74, 222, 128, 0.25);
}

.q-screen-header span:first-child { background: rgba(239, 100, 97, 0.4); }
.q-screen-header span:nth-child(2) { background: rgba(255, 190, 62, 0.35); }

.q-screen-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.q-metric {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.q-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-style: italic;
  color: #4ade80;
  line-height: 1;
}

.q-label {
  font-size: 0.75rem;
  font-family: var(--font-sans);
  color: rgba(232, 223, 206, 0.45);
  letter-spacing: 0.05em;
}

.q-bar-row {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 64px;
}

.q-mini-bar {
  flex: 1;
  background: linear-gradient(to top, #4ade80, rgba(74, 222, 128, 0.4));
  border-radius: 3px 3px 0 0;
  height: var(--qh, 50%);
  opacity: 0.7;
  transition: opacity 0.2s ease;
}

.q-mini-bar:hover { opacity: 1; }

.q-status-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.76rem;
  font-family: var(--font-sans);
  color: rgba(232, 223, 206, 0.5);
}

.q-live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 8px #4ade80;
  animation: qPulse 2s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes qPulse {
  0%, 100% { box-shadow: 0 0 6px #4ade80; }
  50%       { box-shadow: 0 0 16px #4ade80, 0 0 30px rgba(74, 222, 128, 0.35); }
}

/* ── Bhagat Case Study ── */
.bhagat-case-section {
  background:
    radial-gradient(ellipse at 30% 60%, rgba(15, 60, 35, 0.35), transparent 55%),
    #040e09;
}

.bhagat-case-grid {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 60px;
  margin-top: 56px;
  align-items: start;
}

.bhagat-profile {
  background: rgba(10, 31, 26, 0.8);
  border: 1px solid rgba(74, 222, 128, 0.15);
  border-radius: 16px;
  padding: 32px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.bhagat-profile-head {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(74, 222, 128, 0.1);
}

.bhagat-icon {
  width: 48px;
  height: 48px;
  background: rgba(74, 222, 128, 0.08);
  border: 1px solid rgba(74, 222, 128, 0.18);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #4ade80;
}

.bhagat-icon svg {
  width: 28px;
  height: 28px;
}

.bhagat-profile-name {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.bhagat-profile-name strong {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-style: italic;
  color: #e8dfce;
  font-weight: 500;
}

.bhagat-profile-name span {
  font-size: 0.76rem;
  color: rgba(74, 222, 128, 0.65);
  font-family: var(--font-sans);
}

.bhagat-facts {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.bhagat-facts div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.bhagat-facts dt {
  font-size: 0.7rem;
  font-family: var(--font-sans);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(74, 222, 128, 0.55);
}

.bhagat-facts dd {
  font-size: 0.87rem;
  color: rgba(232, 223, 206, 0.7);
  line-height: 1.45;
}

.bhagat-narrative h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-style: italic;
  color: #e8dfce;
  font-weight: 500;
  margin: 28px 0 10px;
}

.bhagat-narrative h3:first-child { margin-top: 0; }

.bhagat-narrative p {
  font-size: 0.94rem;
  color: rgba(232, 223, 206, 0.68);
  line-height: 1.7;
  margin: 0;
}

.bhagat-outcome-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}

.bhagat-outcome-tags span {
  font-size: 0.74rem;
  font-family: var(--font-sans);
  font-weight: 600;
  letter-spacing: 0.05em;
  color: rgba(74, 222, 128, 0.8);
  background: rgba(74, 222, 128, 0.08);
  border: 1px solid rgba(74, 222, 128, 0.2);
  border-radius: 6px;
  padding: 5px 12px;
}

/* ── Renewable sub-page banner (on renewable.html) ── */
.service-subpage-banner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
  background: rgba(10, 31, 26, 0.55);
  border: 1px solid rgba(74, 222, 128, 0.18);
  border-radius: 20px;
  padding: 48px 52px;
}

.subpage-banner-copy .section-kicker { margin-bottom: 12px; }
.subpage-banner-copy .section-title  { font-size: clamp(1.6rem, 3.5vw, 2.2rem); margin-bottom: 16px; }

.subpage-banner-copy p {
  font-size: 0.94rem;
  color: rgba(232, 223, 206, 0.65);
  line-height: 1.68;
  max-width: 540px;
  margin-bottom: 28px;
}

.subpage-banner-tags {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex-shrink: 0;
}

.subpage-banner-tags span {
  font-size: 0.74rem;
  font-family: var(--font-sans);
  font-weight: 600;
  letter-spacing: 0.06em;
  color: rgba(74, 222, 128, 0.72);
  background: rgba(74, 222, 128, 0.07);
  border: 1px solid rgba(74, 222, 128, 0.14);
  border-radius: 6px;
  padding: 6px 14px;
  white-space: nowrap;
}

/* ── Responsive ── */
@media (max-width: 1100px) {
  .irec-pillar-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .additionality-grid  { grid-template-columns: 1fr; gap: 48px; }
  .qalcurate-grid      { grid-template-columns: 1fr; gap: 40px; }
  .bhagat-case-grid    { grid-template-columns: 1fr; }
  .irec-pillar-grid    { grid-template-columns: 1fr; }
  .service-subpage-banner { grid-template-columns: 1fr; }
  .subpage-banner-tags { flex-direction: row; flex-wrap: wrap; }

  .irec-n3, .irec-n4, .irec-n5, .irec-n6 { display: none; }
}

@media (max-width: 600px) {
  .irec-hero-content { padding: 100px 0 64px; }
  .chart-bars-row { height: 180px; gap: 32px; }
  .seg-gray-full { height: 180px; }
  .seg-gray-base { height: 72px; }
  .seg-irec      { height: 72px; }
  .seg-carbon    { height: 36px; }
  .service-subpage-banner { padding: 32px 28px; }
}

/* ══════════════════════════════════════════════
   PRIVATE PROJECTS — TAPI AGROFORESTRY PAGE
   ══════════════════════════════════════════════ */

/* Hero */
.tapi-hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.tapi-hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

.tapi-hero-veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(14,23,20,0.45) 0%, rgba(16,47,39,0.7) 55%, rgba(10,18,14,0.92) 100%);
}

.tapi-hero-content {
  position: relative;
  z-index: 1;
  padding-block: 7rem 5rem;
  max-width: 820px;
}

.tapi-hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5.5vw, 4.8rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.08;
  color: var(--paper);
  margin: 1.2rem 0 1.6rem;
}

.tapi-hero-lead {
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  color: rgba(240, 233, 220, 0.76);
  max-width: 620px;
  line-height: 1.68;
  margin: 0;
}

/* Overview section */
.tapi-overview-section {
  padding-block: 5.5rem 6rem;
}

.tapi-overview-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 5rem;
  align-items: start;
}

.tapi-overview-copy {
  color: var(--paper);
}

.tapi-overview-copy p {
  color: rgba(240, 233, 220, 0.72);
  font-size: 1rem;
  line-height: 1.78;
  margin: 0 0 1.1rem;
}

.tapi-discuss-link {
  display: inline-block;
  margin-top: 1.25rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--leaf);
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: opacity 0.2s;
}

.tapi-discuss-link:hover { opacity: 0.7; }

/* Stats panel */
.tapi-overview-stats {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(199, 168, 120, 0.15);
  border-radius: 16px;
  overflow: hidden;
}

.tapi-stat-card {
  padding: 1.65rem 1.75rem;
  border-bottom: 1px solid rgba(199, 168, 120, 0.1);
  display: flex;
  flex-direction: column;
  gap: 0.32rem;
}

.tapi-stat-val {
  font-family: var(--font-display);
  font-size: 2.1rem;
  font-weight: 300;
  font-style: italic;
  color: var(--leaf);
  line-height: 1;
}

.tapi-stat-label {
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(240, 233, 220, 0.42);
  line-height: 1.4;
}

.tapi-loc-block {
  padding: 1.1rem 1.75rem;
  border-bottom: 1px solid rgba(199, 168, 120, 0.08);
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.tapi-loc-block:last-child { border-bottom: none; }

.tapi-loc-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(240, 233, 220, 0.32);
}

.tapi-loc-val {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(240, 233, 220, 0.68);
  line-height: 1.45;
}

/* Benefits section */
.tapi-benefits-section {
  padding-block: 5rem 5.5rem;
}

.tapi-benefits-head {
  margin-bottom: 3rem;
}

.tapi-benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.tapi-benefit-card {
  background: rgba(16, 47, 39, 0.08);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 2.25rem 1.75rem;
  transition: border-color 0.25s, background 0.25s;
}

.tapi-benefit-card:hover {
  border-color: rgba(199, 168, 120, 0.3);
  background: rgba(199, 168, 120, 0.04);
}

.tapi-benefit-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 300;
  font-style: italic;
  color: var(--leaf);
  opacity: 0.45;
  line-height: 1;
  margin-bottom: 0.9rem;
}

.tapi-benefit-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 0.65rem;
}

.tapi-benefit-text {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.65;
  margin: 0;
}

/* SDG section */
.tapi-sdg-section {
  padding-block: 5rem 6rem;
}

.tapi-sdg-head {
  margin-bottom: 3rem;
}

.tapi-sdg-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.tapi-sdg-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(199, 168, 120, 0.12);
  border-radius: 14px;
  padding: 2rem 1.75rem;
  transition: border-color 0.25s;
}

.tapi-sdg-card:hover {
  border-color: rgba(199, 168, 120, 0.28);
}

.tapi-sdg-num {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--leaf);
  margin-bottom: 0.6rem;
}

.tapi-sdg-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 300;
  font-style: italic;
  color: var(--paper);
  margin: 0 0 0.75rem;
}

.tapi-sdg-text {
  font-size: 0.88rem;
  color: rgba(240, 233, 220, 0.62);
  line-height: 1.65;
  margin: 0;
}

/* Responsive */
@media (max-width: 900px) {
  .tapi-overview-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .tapi-benefits-grid {
    grid-template-columns: 1fr;
  }

  .tapi-sdg-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .tapi-sdg-grid {
    grid-template-columns: 1fr;
  }
}

/* ══════════════════════════════════════════════════════
   COMMUNITY PROJECTS — Obsidian / Cyan palette
   (intentionally different from the eco-green sections)
   ══════════════════════════════════════════════════════ */

/* ── Shared palette tokens ─────────────────────────── */
/* --cp-bg:    #06060f   deep obsidian blue-black        */
/* --cp-mid:   #08081a   section divider                 */
/* --cp-cyan:  #22d3ee   neon cyan accent                */
/* --cp-green: #4ade80   brand green (sparingly)         */
/* ──────────────────────────────────────────────────── */

/* ── Hero ── */
.cp-hero {
  position: relative;
  min-height: 96vh;
  background: #06060f;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.cp-hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.cp-radial {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0;
  animation: cpRadialFade 4s ease forwards;
}

.cp-radial-1 {
  width: 560px;
  height: 560px;
  background: radial-gradient(circle, rgba(34, 211, 238, 0.18), transparent 70%);
  top: -120px;
  right: -80px;
  animation-delay: 0.3s;
}

.cp-radial-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(74, 222, 128, 0.12), transparent 70%);
  bottom: -60px;
  left: 5%;
  animation-delay: 0.8s;
}

.cp-radial-3 {
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(34, 211, 238, 0.1), transparent 70%);
  top: 40%;
  left: 35%;
  animation-delay: 1.2s;
}

@keyframes cpRadialFade {
  to { opacity: 1; }
}

.cp-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 64px;
  align-items: center;
  padding: 120px 0 80px;
}

.cp-eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #22d3ee;
  margin-bottom: 20px;
}

.cp-hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6.5vw, 5rem);
  font-weight: 500;
  font-style: italic;
  color: #e8dfce;
  line-height: 1.06;
  letter-spacing: -0.02em;
  margin: 0 0 24px;
}

.cp-hero-lead {
  font-size: clamp(1rem, 2vw, 1.18rem);
  color: rgba(232, 223, 206, 0.65);
  line-height: 1.7;
  max-width: 540px;
  margin-bottom: 40px;
}

.cp-hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ── SVG Tree Network ── */
.cp-hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.cp-tree-svg {
  width: 100%;
  max-width: 360px;
  overflow: visible;
  filter: drop-shadow(0 0 32px rgba(34, 211, 238, 0.18));
}

/* Branches — draw-in via stroke-dashoffset */
.cp-branch {
  stroke: rgba(34, 211, 238, 0.45);
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  pathLength: 1;
  animation: cpBranchDraw 1.2s ease forwards;
}

.cp-b0 { animation-delay: 0.2s; }
.cp-b1 { animation-delay: 0.5s; }
.cp-b2 { animation-delay: 0.9s; }
.cp-b3 { animation-delay: 1.3s; }

@keyframes cpBranchDraw {
  to { stroke-dashoffset: 0; }
}

/* Nodes */
.cp-node {
  fill: #06060f;
  stroke: #22d3ee;
  stroke-width: 1.5;
  opacity: 0;
  animation: cpNodeFade 0.5s ease forwards;
}

.cp-node-root {
  fill: rgba(34, 211, 238, 0.15);
  stroke: #22d3ee;
  stroke-width: 2;
  animation-delay: 0.3s;
}

.cp-node-mid  { animation-delay: 0.7s; }
.cp-node-sub  { animation-delay: 1.1s; }

.cp-node-human {
  fill: rgba(34, 211, 238, 0.12);
  stroke: #22d3ee;
  stroke-width: 1.8;
  animation: cpNodeFade 0.5s ease 1.5s forwards, cpHumanPulse 3s ease-in-out 2s infinite;
}

@keyframes cpNodeFade   { to { opacity: 1; } }
@keyframes cpHumanPulse {
  0%, 100% { stroke: #22d3ee; fill: rgba(34, 211, 238, 0.12); }
  50%       { stroke: #4ade80; fill: rgba(74, 222, 128, 0.18); }
}

/* Halo rings */
.cp-node-halo {
  fill: none;
  stroke: rgba(34, 211, 238, 0.12);
  stroke-width: 1;
  opacity: 0;
  animation: cpHaloRing 3s ease-in-out 2s infinite;
}

.cp-halo-root {
  stroke: rgba(34, 211, 238, 0.2);
  animation-delay: 1.5s;
}

@keyframes cpHaloRing {
  0%   { opacity: 0;   transform-origin: center; transform: scale(0.8); }
  50%  { opacity: 0.7; transform: scale(1.05); }
  100% { opacity: 0;   transform: scale(1.2); }
}

/* Human detail marks on leaf nodes */
.cp-human-head {
  fill: rgba(34, 211, 238, 0.7);
  opacity: 0;
  animation: cpNodeFade 0.4s ease 1.7s forwards;
}

.cp-human-arms {
  stroke: rgba(34, 211, 238, 0.6);
  stroke-width: 1.2;
  stroke-linecap: round;
  fill: none;
  opacity: 0;
  animation: cpNodeFade 0.4s ease 1.8s forwards;
}

/* ── Proof Strip ── */
.cp-proof-strip {
  background: #08081a;
  border-top: 1px solid rgba(34, 211, 238, 0.08);
  border-bottom: 1px solid rgba(34, 211, 238, 0.08);
  padding: 36px 0;
}

.cp-proof-row {
  display: flex;
  align-items: center;
  gap: 0;
  justify-content: space-between;
}

.cp-proof-item {
  display: flex;
  flex-direction: column;
  gap: 5px;
  text-align: center;
  flex: 1;
}

.cp-proof-item strong {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-style: italic;
  color: #e8dfce;
  font-weight: 500;
  line-height: 1;
}

.cp-proof-item strong span {
  font-size: 1rem;
  color: #22d3ee;
  margin-left: 4px;
}

.cp-proof-item > span {
  font-size: 0.76rem;
  color: rgba(232, 223, 206, 0.45);
  font-family: var(--font-sans);
  letter-spacing: 0.04em;
}

.cp-proof-divider {
  width: 1px;
  height: 40px;
  background: rgba(34, 211, 238, 0.15);
  flex-shrink: 0;
}

/* ── Portfolio Section ── */
.cp-portfolio-section {
  background: #06060f;
}

.cp-portfolio-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 56px;
}

.cp-portfolio-head .eco-kicker { color: #22d3ee; }
.cp-portfolio-head .eco-kicker::before { background: #22d3ee; }

.cp-portfolio-head .eco-headline { color: #e8dfce; }
.cp-portfolio-head .eco-subhead { color: rgba(232, 223, 206, 0.55); }

/* ── Toggle Pill ── */
.cp-toggle-pill {
  position: relative;
  display: inline-flex;
  background: rgba(34, 211, 238, 0.04);
  border: 1px solid rgba(34, 211, 238, 0.2);
  border-radius: 999px;
  padding: 5px;
  margin: 0 auto 56px;
  gap: 0;
  /* center it */
  display: flex;
  max-width: fit-content;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 56px;
}

.cp-pill-btn {
  position: relative;
  z-index: 1;
  padding: 13px 30px;
  border: none;
  background: transparent;
  color: rgba(232, 223, 206, 0.55);
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  border-radius: 999px;
  cursor: pointer;
  transition: color 0.3s ease;
  white-space: nowrap;
}

.cp-pill-btn.active {
  color: #06060f;
}

.cp-pill-glider {
  position: absolute;
  top: 5px;
  left: 5px;
  bottom: 5px;
  background: #22d3ee;
  border-radius: 999px;
  transition: left 0.35s cubic-bezier(0.34, 1.2, 0.64, 1), width 0.35s cubic-bezier(0.34, 1.2, 0.64, 1);
  box-shadow: 0 0 24px rgba(34, 211, 238, 0.55), 0 0 48px rgba(34, 211, 238, 0.2);
  z-index: 0;
}

/* ── Tab Panels ── */
.cp-tab-panel[hidden]        { display: none; }
.cp-tab-panel.cp-panel-visible { animation: cpPanelIn 0.4s cubic-bezier(0.34, 1.1, 0.64, 1) forwards; }

@keyframes cpPanelIn {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Project Cards (2-col, View 1) ── */
.cp-project-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.cp-project-card {
  background: rgba(12, 12, 30, 0.65);
  border: 1px solid rgba(34, 211, 238, 0.1);
  border-radius: 20px;
  overflow: hidden;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.cp-project-card:hover {
  border-color: rgba(34, 211, 238, 0.35);
  transform: translateY(-5px);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(34, 211, 238, 0.1);
}

/* Project visual header */
.cp-project-visual {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.cp-visual-zambia {
  background: radial-gradient(ellipse at 60% 50%, rgba(34, 211, 238, 0.12), transparent 60%),
              #040410;
}

.cp-visual-tapi {
  background: radial-gradient(ellipse at 50% 60%, rgba(74, 222, 128, 0.12), transparent 60%),
              #040d08;
}

.cp-project-visual svg {
  width: 180px;
  height: 160px;
}

/* Globe SVG styles */
.cp-globe-base    { stroke: rgba(34, 211, 238, 0.08); stroke-width: 1; fill: rgba(34, 211, 238, 0.04); }
.cp-globe-line    { stroke: rgba(34, 211, 238, 0.3); stroke-width: 0.9; fill: none; }
.cp-globe-pin     { fill: #22d3ee; filter: drop-shadow(0 0 8px #22d3ee); }

.cp-ring {
  fill: none;
  stroke: #22d3ee;
  animation: cpRingExpand 2.5s ease-out infinite;
}
.cp-ring-a { animation-delay: 0s;    stroke-width: 1.2; }
.cp-ring-b { animation-delay: 0.6s;  stroke-width: 0.8; }
.cp-ring-c { animation-delay: 1.2s;  stroke-width: 0.5; }

@keyframes cpRingExpand {
  0%   { opacity: 0.8; }
  100% { opacity: 0; }
}

/* Contour / sapling SVG styles (Tapi) */
.cp-contour    { fill: none; stroke-width: 0.9; }
.cp-c1 { stroke: rgba(74, 222, 128, 0.12); }
.cp-c2 { stroke: rgba(74, 222, 128, 0.2); }
.cp-c3 { stroke: rgba(74, 222, 128, 0.32); }
.cp-c4 { stroke: rgba(74, 222, 128, 0.5); }

.cp-sapling-stem {
  stroke: #4ade80;
  stroke-width: 1.5;
  stroke-linecap: round;
  filter: drop-shadow(0 0 6px rgba(74, 222, 128, 0.7));
}

.cp-sapling-leaf {
  fill: rgba(74, 222, 128, 0.15);
  stroke: #4ade80;
  stroke-width: 1;
  animation: cpLeafSway 4s ease-in-out infinite alternate;
}

@keyframes cpLeafSway {
  0%   { transform-origin: bottom center; transform: rotate(-2deg) scale(1); }
  100% { transform-origin: bottom center; transform: rotate(2deg) scale(1.03); }
}

/* Card body */
.cp-project-body {
  padding: 28px 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
}

.cp-project-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.cp-geo-tag {
  font-size: 0.76rem;
  font-family: var(--font-sans);
  color: rgba(232, 223, 206, 0.55);
  display: flex;
  align-items: center;
  gap: 5px;
}

.cp-std-badge {
  font-size: 0.68rem;
  font-family: var(--font-sans);
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #22d3ee;
  background: rgba(34, 211, 238, 0.08);
  border: 1px solid rgba(34, 211, 238, 0.2);
  border-radius: 100px;
  padding: 3px 10px;
}

.cp-std-gold {
  color: #4ade80;
  background: rgba(74, 222, 128, 0.08);
  border-color: rgba(74, 222, 128, 0.2);
}

.cp-project-card h3 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-style: italic;
  font-weight: 500;
  color: #e8dfce;
  line-height: 1.2;
  margin: 0;
}

.cp-project-card p {
  font-size: 0.9rem;
  color: rgba(232, 223, 206, 0.65);
  line-height: 1.7;
  margin: 0;
}

.cp-impact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cp-impact-list li {
  font-size: 0.84rem;
  color: rgba(232, 223, 206, 0.6);
  padding-left: 18px;
  position: relative;
  line-height: 1.45;
}

.cp-impact-list li::before {
  content: "›";
  position: absolute;
  left: 0;
  color: #22d3ee;
  font-weight: 700;
}

.cp-methodology-note {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.82rem;
  color: rgba(232, 223, 206, 0.5);
  line-height: 1.55;
  border-top: 1px solid rgba(34, 211, 238, 0.08);
  padding-top: 16px;
  margin-top: 4px;
  font-style: italic;
}

.cp-methodology-note strong { color: rgba(232, 223, 206, 0.75); font-style: normal; }

.cp-method-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22d3ee;
  flex-shrink: 0;
  margin-top: 4px;
  box-shadow: 0 0 8px #22d3ee;
}

/* ── Initiative Cards (3-col, View 2) ── */
.cp-initiative-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.cp-initiative-card {
  background: rgba(10, 10, 28, 0.7);
  border: 1px solid rgba(34, 211, 238, 0.1);
  border-radius: 18px;
  padding: 32px 28px 28px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  cursor: default;
}

.cp-initiative-card:hover {
  border-color: rgba(34, 211, 238, 0.32);
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 32px rgba(34, 211, 238, 0.08);
}

/* ── Graphic containers ── */
.cp-init-graphic {
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

/* Flame */
.cp-flame-scene {
  position: relative;
  width: 48px;
  height: 80px;
}

.cp-flame {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  border-radius: 50% 50% 30% 30% / 60% 60% 40% 40%;
  animation: cpFlicker 2.2s ease-in-out infinite alternate;
}

.cp-flame-outer {
  width: 44px;
  height: 68px;
  background: linear-gradient(to top, rgba(34, 211, 238, 0.3), rgba(74, 222, 128, 0.5), transparent);
  animation-duration: 2.4s;
}

.cp-flame-inner {
  width: 30px;
  height: 52px;
  background: linear-gradient(to top, #22d3ee, #4ade80, rgba(255, 255, 255, 0.4));
  animation-duration: 1.8s;
  animation-delay: 0.15s;
}

.cp-flame-core {
  width: 14px;
  height: 32px;
  background: linear-gradient(to top, #fff, #22d3ee);
  animation-duration: 1.4s;
  animation-delay: 0.3s;
  opacity: 0.9;
}

.cp-flame-glow {
  position: absolute;
  left: 50%;
  bottom: -8px;
  transform: translateX(-50%);
  width: 60px;
  height: 30px;
  background: radial-gradient(ellipse, rgba(34, 211, 238, 0.4), transparent 70%);
  animation: cpFlameGlow 2s ease-in-out infinite alternate;
}

@keyframes cpFlicker {
  0%   { transform: translateX(-50%) scaleX(1)    skew(-1deg); }
  25%  { transform: translateX(-50%) scaleX(0.92) skew(2deg);  }
  50%  { transform: translateX(-50%) scaleX(1.06) skew(-2deg); }
  100% { transform: translateX(-50%) scaleX(0.96) skew(1.5deg);}
}

@keyframes cpFlameGlow {
  0%   { opacity: 0.4; transform: translateX(-50%) scaleX(1); }
  100% { opacity: 0.8; transform: translateX(-50%) scaleX(1.3); }
}

/* Fruit tree */
.cp-fruit-svg {
  width: 90px;
  height: 80px;
  overflow: visible;
}

.cp-fruit-branch {
  stroke: rgba(74, 222, 128, 0.55);
  stroke-width: 1.4;
  stroke-linecap: round;
}

.cp-fruit {
  filter: drop-shadow(0 0 6px currentColor);
  animation: cpFruitGlow 3s ease-in-out infinite alternate;
}

.cp-fa { fill: #4ade80; animation-delay: 0s; }
.cp-fb { fill: #22d3ee; animation-delay: 0.4s; }
.cp-fc { fill: #86efac; animation-delay: 0.8s; }
.cp-fd { fill: #22d3ee; animation-delay: 1.2s; }
.cp-fe { fill: #4ade80; animation-delay: 1.6s; }

@keyframes cpFruitGlow {
  0%   { opacity: 0.7; transform: scale(1); }
  100% { opacity: 1;   transform: scale(1.12); }
}

/* Water drop + ripples */
.cp-water-scene {
  position: relative;
  width: 90px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cp-drop-svg {
  width: 48px;
  height: 58px;
  position: relative;
  z-index: 1;
}

.cp-drop-path {
  fill: rgba(34, 211, 238, 0.18);
  stroke: #22d3ee;
  stroke-width: 1.5;
  filter: drop-shadow(0 0 10px rgba(34, 211, 238, 0.8));
  animation: cpDropPulse 2.5s ease-in-out infinite;
}

.cp-drop-shine {
  stroke: rgba(255, 255, 255, 0.4);
  stroke-width: 1;
  fill: none;
  stroke-linecap: round;
}

@keyframes cpDropPulse {
  0%, 100% { fill: rgba(34, 211, 238, 0.18); }
  50%       { fill: rgba(34, 211, 238, 0.32); }
}

.cp-ripple {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(34, 211, 238, 0.4);
  animation: cpRippleOut 3s ease-out infinite;
}

.cp-ra { width: 50px;  height: 18px; animation-delay: 0s; }
.cp-rb { width: 72px;  height: 24px; animation-delay: 0.7s; }
.cp-rc { width: 90px;  height: 30px; animation-delay: 1.4s; }

@keyframes cpRippleOut {
  0%   { opacity: 0.7; transform: scale(0.8); }
  100% { opacity: 0;   transform: scale(1.4); }
}

/* Initiative card text */
.cp-init-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-style: italic;
  font-weight: 500;
  color: #e8dfce;
  margin: 0;
  line-height: 1.2;
}

.cp-init-text {
  font-size: 0.88rem;
  color: rgba(232, 223, 206, 0.62);
  line-height: 1.68;
  margin: 0;
}

.cp-init-method {
  background: rgba(34, 211, 238, 0.04);
  border: 1px solid rgba(34, 211, 238, 0.1);
  border-radius: 10px;
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}

.cp-method-label {
  font-size: 0.68rem;
  font-family: var(--font-sans);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #22d3ee;
}

.cp-init-method p {
  font-size: 0.82rem;
  color: rgba(232, 223, 206, 0.55);
  line-height: 1.55;
  margin: 0;
  font-style: italic;
}

.cp-init-method strong { color: rgba(232, 223, 206, 0.8); font-style: normal; }

.cp-init-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.cp-init-tags span {
  font-size: 0.7rem;
  font-family: var(--font-sans);
  font-weight: 600;
  letter-spacing: 0.05em;
  color: rgba(34, 211, 238, 0.75);
  background: rgba(34, 211, 238, 0.07);
  border: 1px solid rgba(34, 211, 238, 0.14);
  border-radius: 4px;
  padding: 3px 9px;
}

/* ── CTA actions row ── */
.cp-cta-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 4px;
}

.cp-cta-secondary {
  border-color: rgba(74, 222, 128, 0.35) !important;
  color: rgba(232, 223, 206, 0.8) !important;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .cp-hero-inner { grid-template-columns: 1fr 340px; gap: 40px; }
  .cp-initiative-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .cp-hero-inner       { grid-template-columns: 1fr; }
  .cp-hero-visual      { display: none; }
  .cp-project-grid     { grid-template-columns: 1fr; }
  .cp-initiative-grid  { grid-template-columns: 1fr 1fr; }
  .cp-proof-row        { flex-wrap: wrap; gap: 24px; justify-content: center; }
  .cp-proof-divider    { display: none; }
  .cp-proof-item       { min-width: 120px; }
}

@media (max-width: 600px) {
  .cp-toggle-pill      { flex-direction: column; border-radius: 16px; }
  .cp-pill-btn         { padding: 12px 20px; text-align: center; }
  .cp-pill-glider      { border-radius: 12px; }
  .cp-initiative-grid  { grid-template-columns: 1fr; }
  .cp-hero-headline    { font-size: 2.4rem; }
}

/* ══════════════════════════════════════════════════════
   NBS — Impact in Progress Section
   ══════════════════════════════════════════════════════ */

.nbs-impact-section {
  background: #05100a;
  border-top: 1px solid rgba(199, 168, 120, 0.1);
  border-bottom: 1px solid rgba(199, 168, 120, 0.1);
  padding: 96px 0;
}

/* Header */
.nbs-impact-header {
  text-align: center;
  margin-bottom: 64px;
}

.nbs-impact-live {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #4ade80;
  margin-bottom: 20px;
}

.nbs-live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 10px #4ade80;
  animation: nbsLivePulse 2s ease-in-out infinite;
}

@keyframes nbsLivePulse {
  0%, 100% { box-shadow: 0 0 6px #4ade80; opacity: 1; }
  50%       { box-shadow: 0 0 18px #4ade80, 0 0 32px rgba(74, 222, 128, 0.3); opacity: 0.7; }
}

.nbs-impact-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 500;
  font-style: italic;
  color: #e8dfce;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0 0 14px;
}

.nbs-impact-sub {
  font-size: 0.95rem;
  color: rgba(199, 168, 120, 0.55);
  font-family: var(--font-sans);
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Grid */
.nbs-impact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* Card */
.nbs-impact-card {
  position: relative;
  background: rgba(10, 22, 14, 0.7);
  border: 1px solid rgba(199, 168, 120, 0.12);
  border-radius: 20px;
  padding: 40px 36px 36px;
  overflow: hidden;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.nbs-impact-card:hover {
  border-color: rgba(199, 168, 120, 0.3);
  transform: translateY(-4px);
}

/* Ambient glow blob behind number */
.nbs-impact-glow {
  position: absolute;
  top: -40px;
  right: -40px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(74, 222, 128, 0.08), transparent 70%);
  pointer-events: none;
}

/* Index label (01 / 02 / 03) */
.nbs-impact-index {
  position: absolute;
  top: 24px;
  right: 28px;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-style: italic;
  color: rgba(199, 168, 120, 0.2);
  font-weight: 500;
  pointer-events: none;
}

/* Number row */
.nbs-impact-num-wrap {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}

.nbs-counter-num {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 500;
  font-style: italic;
  color: #e8dfce;
  line-height: 1;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
  /* no transition — avoids repaint lag during counter animation */
}

.nbs-impact-unit {
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(74, 222, 128, 0.75);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  flex-shrink: 0;
}

.nbs-impact-label {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(199, 168, 120, 0.65);
  margin-bottom: 16px;
}

.nbs-impact-note {
  font-size: 0.85rem;
  color: rgba(199, 168, 120, 0.4);
  line-height: 1.65;
  margin: 0;
  border-top: 1px solid rgba(199, 168, 120, 0.08);
  padding-top: 16px;
}

/* Responsive */
@media (max-width: 900px) {
  .nbs-impact-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  .nbs-impact-grid { grid-template-columns: 1fr; }
  .nbs-impact-section { padding: 64px 0; }
}

/* ── NBS Impact — revised (no descriptions, bigger headline) ── */

/* Override headline size to be very large */
.nbs-impact-headline {
  font-size: clamp(3rem, 8vw, 6.4rem) !important;
  letter-spacing: -0.03em !important;
  line-height: 1.02 !important;
  margin-bottom: 0 !important;
}

/* Remove the subtitle gap when it's gone */
.nbs-impact-header {
  margin-bottom: 72px;
}

/* Cards taller without description — vertically center content */
.nbs-impact-card {
  padding: 48px 40px 44px !important;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 220px;
}

/* Number size set in base rule above */

/* The + sign — same colour as the unit, baseline-aligned */
.nbs-impact-plus {
  font-family: var(--font-sans);
  font-size: 1.8rem;
  font-weight: 700;
  color: #4ade80;
  line-height: 1;
  margin-left: 2px;
  align-self: flex-start;
  margin-top: 6px;
}

/* Tighten num-wrap alignment */
.nbs-impact-num-wrap {
  align-items: flex-start !important;
  margin-bottom: 14px !important;
}

/* Hide note paragraph entirely if it somehow persists */
.nbs-impact-note { display: none; }
