:root {
  --ink: #17221f;
  --muted: #5f6d68;
  --paper: #f6f7f5;
  --white: #ffffff;
  --forest: #173c31;
  --forest-dark: #0d2821;
  --red: #c8192e;
  --gold: #d6ad54;
  --gold-light: #f0d48f;
  --line: #d8dfdc;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Tahoma, Arial, sans-serif;
  line-height: 1.75;
  letter-spacing: 0;
}
a { color: inherit; }
img { display: block; max-width: 100%; }

.wide-inner {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  z-index: 20;
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}
.site-header-overlay {
  position: absolute;
  inset: 0 0 auto;
  color: var(--white);
}
.site-header-solid { color: var(--ink); }
.platform-brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
}
.platform-brand img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #f7f3ea;
}
.platform-brand strong,
.platform-brand small { display: block; }
.platform-brand strong { font-size: 15px; }
.platform-brand small {
  color: inherit;
  font-size: 10px;
  opacity: .68;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
.main-nav a {
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
}
.main-nav a:hover { color: var(--gold-light); }
.site-header-solid .main-nav a:hover { color: var(--red); }

.platform-hero {
  position: relative;
  display: flex;
  min-height: 76svh;
  max-height: 760px;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--forest-dark);
}
.platform-hero-media,
.platform-hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.platform-hero-media {
  object-fit: cover;
  object-position: center 42%;
}
.platform-hero-overlay { background: rgba(7, 25, 20, .72); }
.platform-hero-content {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 120px 0 78px;
}
.eyebrow,
.section-kicker {
  margin: 0 0 8px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 700;
}
.platform-hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: 54px;
  line-height: 1.18;
  letter-spacing: 0;
}
.platform-hero-content > p:not(.eyebrow) {
  max-width: 690px;
  margin: 18px 0 0;
  color: rgba(255,255,255,.84);
  font-size: 19px;
}
.hero-actions,
.community-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}
.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 11px 18px;
  border: 1px solid transparent;
  border-radius: 6px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease;
}
.button svg,
.value-grid svg,
.scope-items svg,
.text-link svg { width: 19px; height: 19px; flex: 0 0 auto; }
.button-primary { color: #152018; background: var(--gold); }
.button-primary:hover { background: var(--gold-light); }
.button-glass {
  border-color: rgba(255,255,255,.55);
  color: var(--white);
  background: rgba(255,255,255,.08);
}
.button-glass:hover { background: rgba(255,255,255,.16); }
.button-light { color: var(--forest-dark); background: var(--white); }
.button-outline-light { border-color: rgba(255,255,255,.42); color: var(--white); }

.value-strip { color: var(--white); background: var(--forest); }
.value-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); }
.value-grid > div {
  display: flex;
  min-height: 112px;
  align-items: center;
  gap: 14px;
  padding: 24px;
  border-inline-start: 1px solid rgba(255,255,255,.14);
}
.value-grid > div:last-child { border-inline-end: 1px solid rgba(255,255,255,.14); }
.value-grid svg { color: var(--gold-light); }
.value-grid span,
.value-grid strong,
.value-grid small { display: block; }
.value-grid small { color: rgba(255,255,255,.64); font-size: 11px; }

.featured-project { padding: 88px 0; }
.featured-grid {
  display: grid;
  align-items: center;
  gap: 70px;
  grid-template-columns: minmax(0, .9fr) minmax(380px, 1.1fr);
}
h2 {
  margin: 0;
  font-size: 36px;
  line-height: 1.35;
  letter-spacing: 0;
}
.featured-copy > p:not(.section-kicker) { color: var(--muted); }
.project-facts {
  display: grid;
  margin: 28px 0;
  border-block: 1px solid var(--line);
  grid-template-columns: repeat(2, minmax(0,1fr));
}
.project-facts div { padding: 15px 0; border-bottom: 1px solid var(--line); }
.project-facts div:nth-last-child(-n+2) { border-bottom: 0; }
.project-facts dt { color: var(--muted); font-size: 11px; }
.project-facts dd { margin: 2px 0 0; font-weight: 700; }
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--forest);
  font-weight: 700;
  text-decoration: none;
}
.featured-media {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 6px;
  text-decoration: none;
  background: var(--forest-dark);
}
.featured-media img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; }
.featured-media span {
  position: absolute;
  right: 14px;
  bottom: 14px;
  padding: 5px 10px;
  border-radius: 4px;
  color: var(--white);
  background: rgba(13,40,33,.86);
  font-size: 12px;
  font-weight: 700;
}

.platform-scope { padding: 78px 0; background: var(--white); }
.scope-grid { display: grid; gap: 72px; grid-template-columns: minmax(280px,.75fr) minmax(0,1.25fr); }
.scope-items { display: grid; gap: 0; grid-template-columns: repeat(3,minmax(0,1fr)); }
.scope-items article { padding: 0 24px; border-inline-start: 1px solid var(--line); }
.scope-items article:last-child { border-inline-end: 1px solid var(--line); }
.scope-items svg { color: var(--red); }
.scope-items h3 { margin: 16px 0 6px; font-size: 18px; }
.scope-items p { margin: 0; color: var(--muted); font-size: 13px; }

.community-band { padding: 72px 0; color: var(--white); background: #263230; }
.community-band .section-kicker { color: var(--gold-light); }
.community-grid { display: grid; align-items: center; gap: 54px; grid-template-columns: minmax(0,1fr) auto; }
.community-grid h2 { max-width: 720px; font-size: 30px; }
.community-actions { margin-top: 0; justify-content: flex-end; }

.site-footer { padding: 34px 0; color: #dfe8e4; background: var(--forest-dark); }
.footer-grid { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.footer-brand img { width: 46px; height: 46px; }
.site-footer nav { display: flex; flex-wrap: wrap; gap: 22px; }
.site-footer nav a { color: rgba(255,255,255,.66); font-size: 12px; text-decoration: none; }
.site-footer nav a:hover { color: var(--white); }

.content-main {
  min-height: calc(100vh - 170px);
  padding: 68px 0 90px;
  border-top: 1px solid var(--line);
  background: var(--white);
}
.content-shell { width: min(820px, calc(100% - 40px)); margin: 0 auto; }
.content-shell .section-kicker { margin-bottom: 10px; }
.content-shell h1 { margin: 0; font-size: 40px; line-height: 1.3; }
.content-lead { color: var(--muted); font-size: 17px; }
.content-block { padding-top: 26px; margin-top: 26px; border-top: 1px solid var(--line); }
.content-block h2 { font-size: 23px; }
.content-block p,
.content-block li { color: var(--muted); }
.content-block ul { padding-right: 20px; }
.contact-list { display: grid; gap: 12px; margin-top: 30px; }
.contact-row {
  display: grid;
  align-items: center;
  gap: 16px;
  min-height: 74px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 6px;
  grid-template-columns: 42px 1fr auto;
  text-decoration: none;
}
.contact-row > svg { width: 22px; color: var(--forest); }
.contact-row span,
.contact-row strong,
.contact-row small { display: block; }
.contact-row small { color: var(--muted); }
.contact-row .arrow { width: 18px; color: var(--muted); }

@media (max-width: 900px) {
  .platform-hero h1 { font-size: 44px; }
  .featured-grid,
  .scope-grid,
  .community-grid { gap: 40px; grid-template-columns: 1fr; }
  .featured-media { order: -1; }
  .community-actions { justify-content: flex-start; }
}

@media (max-width: 680px) {
  .site-header { min-height: 70px; }
  .platform-brand img { width: 42px; height: 42px; }
  .platform-brand strong { font-size: 13px; }
  .main-nav a:not(:last-child) { display: none; }
  .platform-hero { min-height: 72svh; max-height: none; }
  .platform-hero-content { padding: 104px 0 62px; }
  .platform-hero h1 { font-size: 36px; }
  .platform-hero-content > p:not(.eyebrow) { font-size: 16px; }
  .hero-actions,
  .community-actions { align-items: stretch; flex-direction: column; }
  .button { width: 100%; }
  .value-grid { grid-template-columns: 1fr; }
  .value-grid > div {
    min-height: 86px;
    border-inline-end: 1px solid rgba(255,255,255,.14);
    border-bottom: 1px solid rgba(255,255,255,.14);
  }
  .featured-project,
  .platform-scope { padding: 62px 0; }
  .featured-grid { grid-template-columns: minmax(0,1fr); }
  h2 { font-size: 29px; }
  .project-facts { grid-template-columns: 1fr; }
  .project-facts div:nth-last-child(2) { border-bottom: 1px solid var(--line); }
  .scope-items { grid-template-columns: 1fr; }
  .scope-items article {
    padding: 24px 0;
    border-inline: 0;
    border-bottom: 1px solid var(--line);
  }
  .scope-items article:last-child { border-bottom: 0; }
  .community-grid h2 { font-size: 27px; }
  .footer-grid { align-items: flex-start; flex-direction: column; }
  .content-main { padding: 50px 0 70px; }
  .content-shell h1 { font-size: 32px; }
  .contact-row { grid-template-columns: 38px 1fr; }
  .contact-row .arrow { display: none; }
}
