:root {
  --ink: #101512;
  --ink-soft: #26352f;
  --muted: #627069;
  --line: #dce4df;
  --paper: #f7faf7;
  --white: #ffffff;
  --green: #0f6b56;
  --green-dark: #0a3f35;
  --teal: #3aa7a3;
  --gold: #bf8f36;
  --gold-soft: #f0dfbd;
  --charcoal: #101816;
  --shadow: 0 20px 60px rgba(16, 21, 18, 0.14);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

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

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

p,
h1,
h2,
h3 {
  margin-top: 0;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 54px);
  color: var(--white);
  transition: background 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

.site-header.is-scrolled,
.site-header.nav-open {
  color: var(--ink);
  background: rgba(247, 250, 247, 0.94);
  box-shadow: 0 12px 30px rgba(16, 21, 18, 0.08);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.brand strong,
.footer-brand {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.15rem;
  line-height: 1;
}

.brand small {
  display: block;
  margin-top: 4px;
  color: currentColor;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  opacity: 0.72;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.site-nav a {
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 700;
}

.site-nav a:hover,
.site-nav a.active {
  background: rgba(255, 255, 255, 0.14);
}

.site-header.is-scrolled .site-nav a:hover,
.site-header.is-scrolled .site-nav a.active,
.site-header.nav-open .site-nav a:hover,
.site-header.nav-open .site-nav a.active {
  background: rgba(15, 107, 86, 0.1);
  color: var(--green-dark);
}

.site-nav .nav-cta {
  margin-left: 8px;
  background: var(--gold);
  color: #17120a;
}

.site-nav .nav-cta:hover,
.site-nav .nav-cta.active {
  background: #d0a54e;
  color: #17120a;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid currentColor;
  border-radius: 50%;
  color: inherit;
  background: transparent;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.hero,
.page-hero {
  position: relative;
  display: grid;
  min-height: 78svh;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  background-position: center;
  background-size: cover;
}

.page-hero {
  min-height: 62svh;
}

.hero-home {
  background-image: url("images/hero-home.jpg");
}

.hero-capabilities {
  background-image: url("images/hero-capabilities.jpg");
}

.hero-funds {
  background-image: url("images/hero-funds.jpg");
}

.hero-execution {
  background-image: url("images/hero-execution.jpg");
}

.hero-governance {
  background-image: url("images/hero-governance.jpg");
}

.hero-contact {
  background-image: url("images/hero-contact.jpg");
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(9, 18, 15, 0.88), rgba(9, 18, 15, 0.62), rgba(9, 18, 15, 0.18)),
    linear-gradient(0deg, rgba(9, 18, 15, 0.82), rgba(9, 18, 15, 0.1) 48%);
}

.hero-content,
.page-hero-content {
  position: relative;
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  padding: 140px 0 74px;
}

.page-hero-content {
  max-width: 920px;
  margin-left: max(18px, calc((100% - var(--max)) / 2));
}

.eyebrow {
  margin-bottom: 14px;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  line-height: 0.98;
  letter-spacing: 0;
}

h1 {
  max-width: 900px;
  margin-bottom: 22px;
  font-size: clamp(4rem, 13vw, 10rem);
  font-weight: 500;
}

.page-hero h1 {
  max-width: 980px;
  font-size: clamp(2.5rem, 6vw, 5.6rem);
}

h2 {
  font-size: clamp(2rem, 5vw, 4.2rem);
  font-weight: 500;
}

h3 {
  font-size: 1.22rem;
  line-height: 1.22;
}

.hero-lede,
.page-hero p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1rem, 1.7vw, 1.3rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 900;
  line-height: 1.1;
}

.button.primary {
  background: var(--gold);
  color: #17120a;
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.55);
  color: var(--white);
}

.button:hover,
.route-card:hover,
.pillar:hover,
.fund-card:hover,
.question-card:hover {
  transform: translateY(-2px);
}

.button,
.route-card,
.pillar,
.fund-card,
.question-card {
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.signal-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
}

.signal-strip div {
  padding: 26px clamp(18px, 4vw, 54px);
  background: var(--white);
}

.signal-strip strong {
  display: block;
  margin-bottom: 4px;
  color: var(--green-dark);
}

.signal-strip span {
  color: var(--muted);
  font-size: 0.92rem;
}

.section {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(68px, 9vw, 118px) 0;
}

.muted-section {
  width: 100%;
  max-width: none;
  padding-inline: max(18px, calc((100% - var(--max)) / 2));
  background: #edf4ee;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 42px;
}

.section-heading p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.05rem;
}

.pillar-grid,
.question-grid,
.fund-grid,
.trust-grid,
.governance-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.pillar,
.question-card,
.fund-card,
.governance-card,
.trust-item,
.document-item,
.execution-step {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 4px 22px rgba(16, 21, 18, 0.04);
}

.pillar,
.question-card,
.governance-card {
  padding: 26px;
}

.icon-chip,
.capability-number,
.execution-step span,
.timeline-item span {
  display: inline-grid;
  min-width: 44px;
  height: 34px;
  place-items: center;
  margin-bottom: 24px;
  border: 1px solid rgba(15, 107, 86, 0.22);
  border-radius: 999px;
  color: var(--green-dark);
  background: rgba(15, 107, 86, 0.08);
  font-size: 0.78rem;
  font-weight: 900;
}

.pillar p,
.question-card p,
.fund-card p,
.governance-card p,
.execution-step p,
.timeline-item p {
  color: var(--muted);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(30px, 6vw, 80px);
  align-items: center;
}

.split-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.06rem;
}

.image-panel {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.image-panel img {
  width: 100%;
  min-height: 430px;
  object-fit: cover;
}

.check-list,
.feature-list,
.fund-card ul {
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li,
.feature-list li,
.fund-card li {
  position: relative;
  margin-bottom: 12px;
  padding-left: 24px;
  color: var(--ink-soft);
}

.check-list li::before,
.feature-list li::before,
.fund-card li::before {
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
  content: "";
}

.route-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.route-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 8px 28px rgba(16, 21, 18, 0.07);
}

.route-card img {
  width: 100%;
  aspect-ratio: 1.65;
  object-fit: cover;
}

.route-card div {
  padding: 24px;
}

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

.timeline,
.execution-grid,
.document-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.timeline-item {
  position: relative;
  padding: 28px;
  border-top: 3px solid var(--green);
  background: var(--white);
}

.cta-band {
  display: flex;
  width: min(var(--max), calc(100% - 36px));
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin: clamp(60px, 8vw, 104px) auto;
  padding: clamp(30px, 5vw, 52px);
  border-radius: var(--radius);
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(15, 107, 86, 0.94), rgba(16, 24, 22, 0.98)),
    url("images/cta.jpg") center/cover;
}

.cta-band h2 {
  margin: 0;
  font-size: clamp(2rem, 4.5vw, 4rem);
}

.capability-stack {
  display: grid;
  gap: 24px;
}

.capability-block {
  display: grid;
  grid-template-columns: 90px minmax(0, 1.3fr) minmax(260px, 0.7fr);
  gap: 28px;
  align-items: start;
  padding: clamp(26px, 5vw, 46px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.capability-block h2 {
  margin-bottom: 18px;
  font-size: clamp(1.8rem, 4vw, 3.2rem);
}

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

.feature-list {
  margin-top: 10px;
}

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

.fund-card {
  padding: 28px;
}

.fund-tag {
  display: inline-flex;
  margin-bottom: 16px;
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--green-dark);
  background: rgba(15, 107, 86, 0.1);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.document-item,
.trust-item {
  padding: 22px;
}

.document-item strong,
.trust-item strong {
  display: block;
  margin-bottom: 6px;
}

.document-item span,
.trust-item span {
  color: var(--muted);
}

.execution-step {
  padding: 26px;
}

.scorecard {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.score-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 24px;
  border-bottom: 1px solid var(--line);
}

.score-row:last-child {
  border-bottom: 0;
}

.score-row strong {
  min-width: 104px;
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--green-dark);
  background: rgba(15, 107, 86, 0.09);
  text-align: center;
  font-size: 0.76rem;
}

.disclosure-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  padding: clamp(26px, 5vw, 46px);
  border-radius: var(--radius);
  color: var(--white);
  background: var(--charcoal);
}

.disclosure-panel p,
.disclosure-panel li {
  color: rgba(255, 255, 255, 0.74);
}

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

.contact-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(320px, 1.18fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: start;
}

.contact-aside h2 {
  font-size: clamp(2rem, 4vw, 3.6rem);
}

.contact-card {
  margin-top: 30px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.contact-card strong {
  display: block;
  margin-bottom: 8px;
}

.contact-card a {
  color: var(--green);
  font-weight: 900;
  overflow-wrap: anywhere;
}

.contact-form {
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.form-row {
  margin-bottom: 18px;
}

.form-row.two-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

label {
  display: block;
  margin-bottom: 8px;
  color: var(--ink-soft);
  font-size: 0.86rem;
  font-weight: 900;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #cdd8d2;
  border-radius: var(--radius);
  padding: 13px 14px;
  color: var(--ink);
  background: var(--paper);
  font: inherit;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(58, 167, 163, 0.24);
  border-color: var(--teal);
}

.form-note {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.status-panel {
  display: grid;
  gap: 6px;
  margin-bottom: 22px;
  padding: 16px 18px;
  border: 1px solid rgba(15, 107, 86, 0.24);
  border-radius: var(--radius);
  color: var(--green-dark);
  background: rgba(15, 107, 86, 0.08);
}

.status-panel span {
  color: var(--ink-soft);
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  padding: clamp(42px, 6vw, 70px) clamp(18px, 4vw, 54px);
  color: rgba(255, 255, 255, 0.74);
  background: var(--charcoal);
}

.footer-brand {
  color: var(--white);
  font-size: 1.5rem;
}

.site-footer p {
  max-width: 580px;
  margin: 12px 0 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  align-content: start;
  justify-content: flex-end;
  gap: 10px;
}

.footer-links a {
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  color: var(--white);
  font-size: 0.88rem;
}

.legal {
  grid-column: 1 / -1;
  max-width: 920px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.82rem;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 520ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 8px);
    left: 18px;
    right: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    color: var(--ink);
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav .nav-cta {
    margin-left: 0;
    text-align: center;
  }

  .pillar-grid,
  .route-grid,
  .timeline,
  .document-grid,
  .execution-grid,
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .split-section,
  .contact-section,
  .capability-block,
  .disclosure-panel {
    grid-template-columns: 1fr;
  }

  .capability-number {
    margin-bottom: 0;
  }
}

@media (max-width: 720px) {
  .site-header {
    padding: 12px 18px;
  }

  .brand small {
    display: none;
  }

  .hero,
  .page-hero {
    min-height: 68svh;
  }

  .hero-content,
  .page-hero-content {
    width: calc(100% - 36px);
    margin: 0 auto;
    padding-bottom: 48px;
  }

  h1 {
    font-size: clamp(3.4rem, 18vw, 5rem);
  }

  .page-hero h1 {
    font-size: clamp(2.2rem, 10vw, 3.4rem);
  }

  .signal-strip,
  .pillar-grid,
  .route-grid,
  .timeline,
  .document-grid,
  .execution-grid,
  .trust-grid,
  .fund-grid,
  .governance-grid,
  .form-row.two-columns {
    grid-template-columns: 1fr;
  }

  .cta-band,
  .score-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .image-panel img {
    min-height: 280px;
  }
}
