/* ===================================================================
   Design tokens (mirrors the Figma export: DARK / GREEN / fonts)
   =================================================================== */
:root {
  --dark: #0b1f0f;
  --stats-bg: #0f2a15;
  --green: #3a8b32;
  --green-light: #edf5ec;
  --footer-cta-bg: #112b17;
  --foreground: #0b0b0c;
  --muted: #6b6f76;
  --border: rgba(0, 0, 0, 0.1);
  --font-heading: 'Archivo', sans-serif;
  --font-body: 'Inter', sans-serif;
  --radius: 0.5rem;
  --container-w: 1280px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--foreground);
  background: #ffffff;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3 { font-family: var(--font-heading); margin: 0; }

.container {
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 24px;
}
.container--narrow { max-width: 820px; }
.container--xs { max-width: 640px; text-align: center; }

/* ===================================================================
   Buttons / links
   =================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  padding: 12px 20px;
  border-radius: 6px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: opacity .2s, border-color .2s;
}
.btn--primary { background: var(--green); color: #fff; }
.btn--primary:hover { opacity: .9; }
.btn--outline-light { color: rgba(255,255,255,.75); border-color: rgba(255,255,255,.15); }
.btn--outline-light:hover { border-color: rgba(255,255,255,.35); }
.btn--sm { padding: 8px 16px; }
.btn--block { display: flex; justify-content: center; margin-top: 4px; }

.link-inline {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-left: 16px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,.55);
  transition: color .2s;
}
.link-inline:hover { color: rgba(255,255,255,.8); }
.link-inline--accent { margin-left: 0; color: var(--green); font-weight: 600; }
.link-inline--accent:hover { opacity: .8; }

.eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--green);
  margin: 0 0 12px;
}
.eyebrow::before {
  content: '';
  display: block;
  width: 40px;
  height: 4px;
  border-radius: 2px;
  background: var(--green);
  margin-bottom: 14px;
}
.eyebrow--light { color: rgba(255,255,255,.35); letter-spacing: .2em; }
.eyebrow--light::before { display: none; }
.eyebrow--green { color: #4ade80; }
.eyebrow--green::before { background: #4ade80; }
.section__head--center .eyebrow::before { margin-left: auto; margin-right: auto; }

/* ===================================================================
   Navbar
   =================================================================== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #fff;
  border-bottom: 1px solid var(--border);
}
.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 88px;
}
.navbar__logo img { height: 60px; width: auto; }
.navbar__nav { display: none; align-items: center; gap: 24px; flex: 1; }
.navbar__nav a {
  font-size: 13px;
  font-weight: 500;
  color: rgba(0,0,0,.65);
  white-space: nowrap;
  transition: color .2s;
}
.navbar__nav a:hover { color: var(--foreground); }

.navbar__nav .nav-item {
  position: relative;
  padding: 12px 0;
  margin: -12px 0;
}
.navbar__nav .dropdown {
  display: none;
  flex-direction: column;
  gap: 2px;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 240px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(0,0,0,.1);
  padding: 8px;
  z-index: 60;
}
.navbar__nav .nav-item:hover .dropdown,
.navbar__nav .nav-item:focus-within .dropdown { display: flex; }
.navbar__nav .dropdown a {
  padding: 8px 12px;
  border-radius: 6px;
  white-space: normal;
}
.navbar__nav .dropdown a:hover { background: var(--green-light); color: var(--green); }

.mobile-submenu-link { padding-left: 18px; font-size: 13px !important; color: rgba(0,0,0,.55) !important; }

.navbar__actions { display: none; align-items: center; gap: 16px; }
.lang-switch, .icon-btn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: none;
  border: none;
  font-size: 13px;
  color: rgba(0,0,0,.55);
  cursor: pointer;
}
.lang-switch:hover, .icon-btn:hover { color: var(--foreground); }

.navbar__burger {
  margin-left: auto;
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.navbar__burger span { width: 20px; height: 2px; background: var(--foreground); transition: transform .2s, opacity .2s; }

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 16px;
  padding: 20px 24px;
  border-top: 1px solid rgba(0,0,0,.08);
  background: #fff;
}
.mobile-menu a { font-size: 14px; font-weight: 500; color: rgba(0,0,0,.7); }
.mobile-menu.is-open { display: flex; }

@media (min-width: 900px) {
  .navbar__nav, .navbar__actions { display: flex; }
  .navbar__burger { display: none; }
  .mobile-menu { display: none !important; }
}

/* ===================================================================
   Hero
   =================================================================== */
.hero { background: var(--dark); overflow: hidden; }
.hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  min-height: auto;
  align-items: center;
}
.hero__text { position: relative; z-index: 1; padding: 64px 0 56px; }
.hero__title {
  font-size: 2.6rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.08;
  margin-bottom: 20px;
}
.hero__kicker {
  font-size: 14px;
  font-weight: 600;
  color: #7fd070;
  margin: 0 0 14px;
  letter-spacing: .02em;
}
.hero__desc {
  font-size: 15px;
  color: rgba(255,255,255,.6);
  line-height: 1.7;
  max-width: 460px;
  margin: 0 0 36px;
}
.hero__ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 48px; }

/* Hero variant: full-bleed photo background with a text-legibility scrim, instead
   of a solid dark panel next to a separate image column. */
.hero--photo { position: relative; }
.hero--photo .hero__grid { min-height: 480px; }
@media (min-width: 1024px) { .hero--photo .hero__grid { min-height: 620px; } }
.hero--photo .hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero--photo .hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.hero--photo .hero__bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(11,31,15,.94) 0%, rgba(11,31,15,.82) 35%, rgba(11,31,15,.4) 65%, rgba(11,31,15,.15) 100%);
}
.hero--photo .hero__grid { position: relative; z-index: 1; }

.badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,.1);
  background: rgba(255,255,255,.05);
}
.badge__icon {
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(58,139,50,.25);
  flex-shrink: 0;
}
.badge__label { display: block; font-size: 10px; color: rgba(255,255,255,.35); margin-bottom: 2px; }
.badge__value { display: block; font-size: 12px; font-weight: 600; color: #fff; }

.hero__media { position: relative; display: none; min-height: 480px; }
.hero__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero__media-fade {
  position: absolute; inset: 0;
  background: linear-gradient(to right, var(--dark) 0%, rgba(11,31,15,.53) 15%, transparent 45%);
}
.hero__tag {
  position: absolute; bottom: 32px; right: 32px;
  background: rgba(0,0,0,.4);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 6px;
  padding: 10px 12px;
}
.hero__tag-label { display: block; font-size: 10px; color: rgba(255,255,255,.4); margin-bottom: 2px; }
.hero__tag-value { display: block; font-size: 13px; font-weight: 600; color: #fff; }

@media (min-width: 1024px) {
  .hero__grid { grid-template-columns: 1fr 1fr; gap: 0; }
  .hero__text { padding: 112px 32px 112px 0; }
  .hero__title { font-size: 3.4rem; }
  .hero__media { display: block; min-height: 88vh; }
}

/* ===================================================================
   Parallax species bands — full-bleed image breaks between sections
   =================================================================== */
.parallax-band {
  height: 400px;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
@media (max-width: 900px) {
  .parallax-band { background-attachment: scroll; height: 220px; }
}

/* ===================================================================
   Generic content sections
   =================================================================== */
.section { padding: 80px 0; }
.section--light { background: #fff; }
.section--tint { background: var(--green-light); }
.section--dark { background: var(--dark); }
.section--border { border-top: 1px solid rgba(0,0,0,.05); }

.section__title { font-size: 2rem; font-weight: 800; color: var(--foreground); line-height: 1.2; margin-bottom: 16px; }
.section__title--light { color: #fff; }
.section__lead { font-size: 14px; color: var(--muted); line-height: 1.6; max-width: 480px; }
.section__lead--right { text-align: right; margin-left: auto; }
.section__lead--dark { color: rgba(255,255,255,.55); max-width: none; }

.section__head--center { text-align: center; max-width: 640px; margin: 0 auto 56px; }
.section__head--split {
  display: flex; flex-direction: column; gap: 32px;
  justify-content: space-between; margin-bottom: 48px;
}
.section__head-side { display: flex; flex-direction: column; gap: 12px; align-items: flex-start; }
.section__head--split-simple { display: flex; align-items: center; justify-content: space-between; margin-bottom: 40px; }

@media (min-width: 1024px) {
  .section__head--split { flex-direction: row; align-items: flex-end; }
  .section__head-side { align-items: flex-end; }
}

.prose p { font-size: 15px; line-height: 1.75; color: #33363b; max-width: 760px; margin: 0 0 18px; }
.prose p:last-child { margin-bottom: 0; }
.section--dark .prose p { color: rgba(255,255,255,.6); }

.subhead {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--foreground);
  margin: 40px 0 12px;
}
.subhead:first-child { margin-top: 0; }
.section--dark .subhead { color: #fff; }

.assessment-list { margin: 0 0 18px; padding-left: 20px; }
.assessment-list li { font-size: 15px; line-height: 1.75; color: #33363b; }
.section--dark .assessment-list li { color: rgba(255,255,255,.6); }

/* ===================================================================
   Stats
   =================================================================== */
.stats { background: var(--stats-bg); }
.stats__grid { display: grid; grid-template-columns: repeat(2, 1fr); }
.stats__item {
  padding: 32px 16px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,.05);
}
.stats__item:nth-child(2n) { border-right: none; }
.stats__num { font-family: var(--font-heading); font-size: 2rem; font-weight: 800; color: #fff; margin: 0 0 4px; line-height: 1; }
.stats__label { font-size: 11px; color: rgba(255,255,255,.4); line-height: 1.4; margin: 0; }

@media (min-width: 640px) {
  .stats__grid { grid-template-columns: repeat(3, 1fr); }
  .stats__item:nth-child(2n) { border-right: 1px solid rgba(255,255,255,.05); }
  .stats__item:nth-child(3n) { border-right: none; }
}
@media (min-width: 1024px) {
  .stats__grid { grid-template-columns: repeat(6, 1fr); }
  .stats__item:nth-child(3n) { border-right: 1px solid rgba(255,255,255,.05); }
  .stats__item:last-child { border-right: none; }
}

/* ===================================================================
   Cards grid / pillars (What We Do)
   =================================================================== */
.cards-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
@media (min-width: 720px) { .cards-grid--4 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .cards-grid--4 { grid-template-columns: repeat(4, 1fr); } }

/* "What We Do" pillars: 2x2 on tablet/desktop, stacked on mobile — same width as the text block above
   (the element also carries container + container--narrow, so it shares the exact same box model) */
#what-we-do .cards-grid--4 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 719px) {
  #what-we-do .cards-grid--4 { grid-template-columns: 1fr; }
}

.pillar__icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px;
  border-radius: 10px;
  background: var(--green-light);
  margin-bottom: 16px;
}
.pillar h3 { font-size: 15px; font-weight: 700; color: var(--foreground); margin-bottom: 8px; }
.pillar p { font-size: 13px; color: var(--muted); line-height: 1.6; margin: 0; }

/* ===================================================================
   Project cards / news cards
   =================================================================== */
.project-card__media, .news-card__media {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  margin-bottom: 12px;
  background: #e5e7eb;
}
.project-card__media { height: 200px; }
.news-card__media { height: 170px; }
.project-card__media img, .news-card__media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s;
}
.project-card:hover img, .news-card:hover img { transform: scale(1.05); }

.tag {
  position: absolute; top: 12px; left: 12px;
  background: var(--green);
  color: #fff;
  font-size: 10px;
  font-weight: 600;
  padding: 4px 8px;
  border-radius: 4px;
}
.tag--light { position: static; background: var(--green-light); color: var(--green); }

.project-card h3 { font-size: 13px; font-weight: 700; color: var(--foreground); margin-bottom: 4px; }
.project-card:hover h3 { text-decoration: underline; }
.project-card .meta { display: flex; align-items: center; gap: 4px; font-size: 11px; color: var(--muted); margin: 0; }

.news-card__meta { display: flex; align-items: center; gap: 8px; margin-bottom: 8px; }
.news-card__meta .date { font-size: 11px; color: var(--muted); }
.news-card h3 { font-size: 13px; font-weight: 700; line-height: 1.45; color: var(--foreground); margin: 0; }
.news-card:hover h3 { text-decoration: underline; }
.news-grid { margin-bottom: 64px; }

.partners { border-top: 1px solid rgba(0,0,0,.05); padding-top: 56px; padding-bottom: 16px; }
.partners__label { text-align: center; font-size: 11px; text-transform: uppercase; letter-spacing: .15em; color: var(--muted); font-weight: 500; margin-bottom: 24px; }
.partners__row { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 32px 48px; }
.partners__row img {
  height: 44px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
}

/* ===================================================================
   Data section
   =================================================================== */
.data-section { background: var(--dark); }
.data-section__grid {
  display: grid; grid-template-columns: 1fr; gap: 56px; align-items: center;
}
.data-section__map { display: flex; justify-content: center; }
.data-row {
  display: flex; align-items: center; gap: 16px;
  padding: 12px; border-radius: 8px;
  border: 1px solid rgba(255,255,255,.08);
  margin-bottom: 12px;
  transition: border-color .2s;
}
.data-row:hover { border-color: rgba(74,222,128,.3); }
.data-row__icon {
  width: 36px; height: 36px; border-radius: 6px; flex-shrink: 0;
  background: rgba(58,139,50,.18);
  display: flex; align-items: center; justify-content: center;
}
.data-row__label { font-size: 13px; font-weight: 600; color: #fff; margin: 0; }
.data-row__val { font-size: 11px; color: rgba(255,255,255,.4); margin: 0; }

@media (min-width: 1024px) {
  .data-section__grid { grid-template-columns: repeat(3, 1fr); gap: 56px; }
}

/* ===================================================================
   Footer CTA (newsletter)
   =================================================================== */
.footer-cta { background: var(--footer-cta-bg); padding: 80px 0; }
.newsletter { display: flex; gap: 8px; max-width: 380px; margin: 36px auto 32px; }
.newsletter input {
  flex: 1;
  font-size: 13px;
  padding: 12px 16px;
  border-radius: 6px;
  background: rgba(255,255,255,.08);
  color: #fff;
  border: 1px solid rgba(255,255,255,.15);
}
.newsletter input::placeholder { color: rgba(255,255,255,.3); }
.newsletter input:focus { outline: none; border-color: #4ade80; }
.newsletter__success { color: #7fd070; font-size: 13px; margin: -20px 0 24px; }

.social-row { display: flex; align-items: center; justify-content: center; gap: 24px; }
.social-row a { width: 16px; height: 16px; display: inline-block; }
.social-row a::before { background-color: rgba(255,255,255,.3); transition: background-color .2s; }
.social-row a:hover::before { background-color: rgba(255,255,255,.7); }
.social-row--sm a { width: 14px; height: 14px; }
.social-row--sm a::before { width: 14px; height: 14px; background-color: rgba(255,255,255,.25); }

/* ===================================================================
   Footer
   =================================================================== */
.site-footer { background: var(--dark); border-top: 1px solid rgba(255,255,255,.05); }
.site-footer__grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px;
  padding: 64px 24px;
}
.site-footer__brand { grid-column: span 2; }
.site-footer__logo { height: 52px; width: auto; margin-bottom: 20px; filter: brightness(0) invert(1); }
.site-footer__brand p { font-size: 12px; color: rgba(255,255,255,.35); line-height: 1.6; max-width: 200px; margin: 0 0 20px; }
.site-footer__heading { font-size: 10px; font-weight: 600; text-transform: uppercase; letter-spacing: .15em; color: #fff; margin-bottom: 16px; }
.site-footer__col ul { display: flex; flex-direction: column; gap: 10px; }
.site-footer__col a { font-size: 12px; color: rgba(255,255,255,.35); transition: color .2s; }
.site-footer__col a:hover { color: rgba(255,255,255,.65); }

.site-footer__bottom {
  display: flex; flex-direction: column; gap: 8px;
  align-items: center; justify-content: space-between;
  padding: 16px 24px;
  border-top: 1px solid rgba(255,255,255,.05);
}
.site-footer__bottom p { font-size: 11px; color: rgba(255,255,255,.25); margin: 0; }

@media (min-width: 640px) {
  .site-footer__grid { grid-template-columns: repeat(3, 1fr); }
  .site-footer__brand { grid-column: span 3; }
  .site-footer__bottom { flex-direction: row; }
}
@media (min-width: 1024px) {
  .site-footer__grid { grid-template-columns: repeat(5, 1fr); }
  .site-footer__brand { grid-column: span 1; }
}

/* ===================================================================
   Icons — simple CSS-mask icons (no icon-library dependency)
   =================================================================== */
/* Base rule uses [class*="icon-"] (substring match) instead of [class^="icon-"] (prefix match) so
   icons still work when combined with another class first, e.g. class="pillar__icon icon-database". */
[class*="icon-"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
[class*="icon-"]::before {
  content: "";
  display: block;
  width: 16px; height: 16px;
  background-color: currentColor;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
}
.icon-arrow { color: currentColor; }
.icon-arrow::before { width: 14px; height: 14px;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='5' y1='12' x2='19' y2='12'/%3E%3Cpolyline points='12 5 19 12 12 19'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='5' y1='12' x2='19' y2='12'/%3E%3Cpolyline points='12 5 19 12 12 19'/%3E%3C/svg%3E");
}
.icon-globe::before { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cline x1='2' y1='12' x2='22' y2='12'/%3E%3Cpath d='M12 2a15.3 15.3 0 0 1 4 10 15.3 15.3 0 0 1-4 10 15.3 15.3 0 0 1-4-10 15.3 15.3 0 0 1 4-10z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cline x1='2' y1='12' x2='22' y2='12'/%3E%3Cpath d='M12 2a15.3 15.3 0 0 1 4 10 15.3 15.3 0 0 1-4 10 15.3 15.3 0 0 1-4-10 15.3 15.3 0 0 1 4-10z'/%3E%3C/svg%3E");
  width: 14px; height: 14px;
}
.icon-search::before { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Ccircle cx='11' cy='11' r='8'/%3E%3Cline x1='21' y1='21' x2='16.65' y2='16.65'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Ccircle cx='11' cy='11' r='8'/%3E%3Cline x1='21' y1='21' x2='16.65' y2='16.65'/%3E%3C/svg%3E");
}
.icon-leaf { color: #4ade80; }
.icon-leaf::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Cpath d='M11 20A7 7 0 0 1 9.8 6.1C15.5 5 17 4.48 19 2c1 2 2 4.18 2 8 0 5.5-4.78 10-10 10Z'/%3E%3Cpath d='M2 21c0-3 1.85-5.36 5.08-6C9.5 14.52 12 13 13 12'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Cpath d='M11 20A7 7 0 0 1 9.8 6.1C15.5 5 17 4.48 19 2c1 2 2 4.18 2 8 0 5.5-4.78 10-10 10Z'/%3E%3Cpath d='M2 21c0-3 1.85-5.36 5.08-6C9.5 14.52 12 13 13 12'/%3E%3C/svg%3E");
}
.icon-pin, .icon-pin-sm { color: currentColor; }
.icon-pin::before, .icon-pin-sm::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Cpath d='M21 10c0 7-9 13-9 13s-9-6-9-13a9 9 0 0 1 18 0Z'/%3E%3Ccircle cx='12' cy='10' r='3'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Cpath d='M21 10c0 7-9 13-9 13s-9-6-9-13a9 9 0 0 1 18 0Z'/%3E%3Ccircle cx='12' cy='10' r='3'/%3E%3C/svg%3E");
  width: 12px; height: 12px;
}
.icon-pin-sm { color: #4ade80; }
.icon-pin-sm::before { width: 16px; height: 16px; }
.icon-database { color: var(--green); }
.icon-database::before { width: 20px; height: 20px;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Cellipse cx='12' cy='5' rx='9' ry='3'/%3E%3Cpath d='M21 12c0 1.66-4 3-9 3s-9-1.34-9-3'/%3E%3Cpath d='M3 5v14c0 1.66 4 3 9 3s9-1.34 9-3V5'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Cellipse cx='12' cy='5' rx='9' ry='3'/%3E%3Cpath d='M21 12c0 1.66-4 3-9 3s-9-1.34-9-3'/%3E%3Cpath d='M3 5v14c0 1.66 4 3 9 3s9-1.34 9-3V5'/%3E%3C/svg%3E");
}
.icon-users { color: var(--green); }
.icon-users::before { width: 20px; height: 20px;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Cpath d='M17 21v-2a4 4 0 0 0-4-4H5a4 4 0 0 0-4 4v2'/%3E%3Ccircle cx='9' cy='7' r='4'/%3E%3Cpath d='M23 21v-2a4 4 0 0 0-3-3.87'/%3E%3Cpath d='M16 3.13a4 4 0 0 1 0 7.75'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Cpath d='M17 21v-2a4 4 0 0 0-4-4H5a4 4 0 0 0-4 4v2'/%3E%3Ccircle cx='9' cy='7' r='4'/%3E%3Cpath d='M23 21v-2a4 4 0 0 0-3-3.87'/%3E%3Cpath d='M16 3.13a4 4 0 0 1 0 7.75'/%3E%3C/svg%3E");
}
.icon-microscope { color: var(--green); }
.icon-microscope::before { width: 20px; height: 20px;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Cpath d='M6 18h8'/%3E%3Cpath d='M3 22h18'/%3E%3Cpath d='M14 22a7 7 0 1 0 0-14h-1'/%3E%3Cpath d='M9 14h2'/%3E%3Cpath d='M9 12a2 2 0 0 1-2-2V6h6v4a2 2 0 0 1-2 2Z'/%3E%3Cpath d='M12 6V3a1 1 0 0 0-1-1H9a1 1 0 0 0-1 1v3'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Cpath d='M6 18h8'/%3E%3Cpath d='M3 22h18'/%3E%3Cpath d='M14 22a7 7 0 1 0 0-14h-1'/%3E%3Cpath d='M9 14h2'/%3E%3Cpath d='M9 12a2 2 0 0 1-2-2V6h6v4a2 2 0 0 1-2 2Z'/%3E%3Cpath d='M12 6V3a1 1 0 0 0-1-1H9a1 1 0 0 0-1 1v3'/%3E%3C/svg%3E");
}
.icon-book { color: var(--green); }
.icon-book::before { width: 20px; height: 20px;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Cpath d='M4 19.5A2.5 2.5 0 0 1 6.5 17H20'/%3E%3Cpath d='M6.5 2H20v20H6.5A2.5 2.5 0 0 1 4 19.5v-15A2.5 2.5 0 0 1 6.5 2z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Cpath d='M4 19.5A2.5 2.5 0 0 1 6.5 17H20'/%3E%3Cpath d='M6.5 2H20v20H6.5A2.5 2.5 0 0 1 4 19.5v-15A2.5 2.5 0 0 1 6.5 2z'/%3E%3C/svg%3E");
}
.icon-bar, .icon-activity, .icon-eye, .icon-dna, .icon-download { color: #4ade80; }
.icon-bar::before { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Cline x1='12' y1='20' x2='12' y2='10'/%3E%3Cline x1='18' y1='20' x2='18' y2='4'/%3E%3Cline x1='6' y1='20' x2='6' y2='16'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Cline x1='12' y1='20' x2='12' y2='10'/%3E%3Cline x1='18' y1='20' x2='18' y2='4'/%3E%3Cline x1='6' y1='20' x2='6' y2='16'/%3E%3C/svg%3E");
}
.icon-activity::before { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Cpolyline points='22 12 18 12 15 21 9 3 6 12 2 12'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Cpolyline points='22 12 18 12 15 21 9 3 6 12 2 12'/%3E%3C/svg%3E");
}
.icon-eye::before { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Cpath d='M1 12s4-8 11-8 11 8 11 8-4 8-11 8-11-8-11-8Z'/%3E%3Ccircle cx='12' cy='12' r='3'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Cpath d='M1 12s4-8 11-8 11 8 11 8-4 8-11 8-11-8-11-8Z'/%3E%3Ccircle cx='12' cy='12' r='3'/%3E%3C/svg%3E");
}
.icon-dna::before { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Cpath d='M2 15c6.667-6 13.333 0 20-6'/%3E%3Cpath d='M2 9c6.667 6 13.333 0 20 6'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Cpath d='M2 15c6.667-6 13.333 0 20-6'/%3E%3Cpath d='M2 9c6.667 6 13.333 0 20 6'/%3E%3C/svg%3E");
}
.icon-download::before { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Cpath d='M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4'/%3E%3Cpolyline points='7 10 12 15 17 10'/%3E%3Cline x1='12' y1='15' x2='12' y2='3'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Cpath d='M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4'/%3E%3Cpolyline points='7 10 12 15 17 10'/%3E%3Cline x1='12' y1='15' x2='12' y2='3'/%3E%3C/svg%3E");
}
.icon-twitter::before { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M23 3a10.9 10.9 0 0 1-3.14 1.53 4.48 4.48 0 0 0-7.86 3v1A10.66 10.66 0 0 1 3 4s-4 9 5 13a11.64 11.64 0 0 1-7 2c9 5 20 0 20-11.5a4.5 4.5 0 0 0-.08-.83A7.72 7.72 0 0 0 23 3z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M23 3a10.9 10.9 0 0 1-3.14 1.53 4.48 4.48 0 0 0-7.86 3v1A10.66 10.66 0 0 1 3 4s-4 9 5 13a11.64 11.64 0 0 1-7 2c9 5 20 0 20-11.5a4.5 4.5 0 0 0-.08-.83A7.72 7.72 0 0 0 23 3z'/%3E%3C/svg%3E");
}
.icon-facebook::before { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M18 2h-3a5 5 0 0 0-5 5v3H7v4h3v8h4v-8h3l1-4h-4V7a1 1 0 0 1 1-1h3z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M18 2h-3a5 5 0 0 0-5 5v3H7v4h3v8h4v-8h3l1-4h-4V7a1 1 0 0 1 1-1h3z'/%3E%3C/svg%3E");
}
.icon-instagram::before { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Crect x='2' y='2' width='20' height='20' rx='5'/%3E%3Cpath d='M16 11.37A4 4 0 1 1 12.63 8 4 4 0 0 1 16 11.37z'/%3E%3Cline x1='17.5' y1='6.5' x2='17.51' y2='6.5'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Crect x='2' y='2' width='20' height='20' rx='5'/%3E%3Cpath d='M16 11.37A4 4 0 1 1 12.63 8 4 4 0 0 1 16 11.37z'/%3E%3Cline x1='17.5' y1='6.5' x2='17.51' y2='6.5'/%3E%3C/svg%3E");
}
.icon-linkedin::before { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M4.98 3.5a2.5 2.5 0 1 1 0 5 2.5 2.5 0 0 1 0-5zM3 9h4v12H3zM9 9h3.6v1.7h.05c.5-.95 1.75-1.95 3.6-1.95 3.85 0 4.55 2.5 4.55 5.8V21h-4v-5.3c0-1.25 0-2.85-1.75-2.85s-2 1.35-2 2.75V21H9z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M4.98 3.5a2.5 2.5 0 1 1 0 5 2.5 2.5 0 0 1 0-5zM3 9h4v12H3zM9 9h3.6v1.7h.05c.5-.95 1.75-1.95 3.6-1.95 3.85 0 4.55 2.5 4.55 5.8V21h-4v-5.3c0-1.25 0-2.85-1.75-2.85s-2 1.35-2 2.75V21H9z'/%3E%3C/svg%3E");
}
.icon-youtube::before { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M22.5 6.2a2.8 2.8 0 0 0-2-2C18.9 3.7 12 3.7 12 3.7s-6.9 0-8.5.5a2.8 2.8 0 0 0-2 2A29 29 0 0 0 1 12a29 29 0 0 0 .5 5.8 2.8 2.8 0 0 0 2 2c1.6.5 8.5.5 8.5.5s6.9 0 8.5-.5a2.8 2.8 0 0 0 2-2A29 29 0 0 0 23 12a29 29 0 0 0-.5-5.8zM10 15.5v-7l6 3.5z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M22.5 6.2a2.8 2.8 0 0 0-2-2C18.9 3.7 12 3.7 12 3.7s-6.9 0-8.5.5a2.8 2.8 0 0 0-2 2A29 29 0 0 0 1 12a29 29 0 0 0 .5 5.8 2.8 2.8 0 0 0 2 2c1.6.5 8.5.5 8.5.5s6.9 0 8.5-.5a2.8 2.8 0 0 0 2-2A29 29 0 0 0 23 12a29 29 0 0 0-.5-5.8zM10 15.5v-7l6 3.5z'/%3E%3C/svg%3E");
}

/* ===================================================================
   Data Portal — spatial layers map + layer metadata table
   =================================================================== */
.map-container {
  width: 100%;
  height: 520px;
  margin: 32px 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--green-light);
}
@media (max-width: 640px) {
  .map-container { height: 380px; }
}

.table-wrap { overflow-x: auto; margin-top: 24px; }
.layers-table { width: 100%; border-collapse: collapse; font-size: 13px; }
.layers-table th {
  text-align: left;
  padding: 12px 16px;
  background: var(--dark);
  color: #fff;
  font-weight: 600;
  white-space: nowrap;
}
.layers-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  color: #33363b;
}
.layers-table tbody tr:hover { background: var(--green-light); }
.layers-table__empty td { text-align: center; color: var(--muted); font-style: italic; }
.layers-table__empty:hover { background: transparent; }
