/* ============================================
   TOKENS — institutional, restrained
   ============================================ */
:root {
  --bg: #FFFFFF;
  --bg-alt: #F4F5F7;
  --ink: #1A2233;
  --ink-soft: #4D5666;
  --navy: #1F3A5F;
  --navy-deep: #142A47;
  --accent: #8C6A3F;
  --line: #DFE3E8;
  --line-strong: #C7CDD6;

  --font-display: "Source Serif 4", serif;
  --font-body: "Inter", sans-serif;

  --maxw: 980px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

a { color: inherit; }

:focus-visible {
  outline: 2px solid var(--navy);
  outline-offset: 3px;
}

/* ============================================
   HEADER
   ============================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 22px 32px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

@media (max-width: 760px) {
  .header-inner { padding: 18px 20px; }
}

.header-nav {
  display: flex;
  gap: 30px;
  align-items: center;
}

.header-nav a {
  font-size: 14.5px;
  text-decoration: none;
  color: var(--ink-soft);
  transition: color 0.15s ease;
}

.header-nav a:hover { color: var(--ink); }

.nav-cta {
  color: #fff !important;
  background: var(--navy);
  padding: 9px 18px;
  border-radius: 3px;
  font-weight: 500;
}

.nav-cta:hover { background: var(--navy-deep) !important; color: #fff !important; }

@media (max-width: 680px) {
  .header-nav a:not(.nav-cta) { display: none; }
}

/* ============================================
   LAYOUT
   ============================================ */
.section {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 80px 32px;
  border-bottom: 1px solid var(--line);
}

.section-alt {
  background: var(--bg-alt);
  max-width: none;
  border-bottom: 1px solid var(--line);
}

.section-alt > * {
  max-width: var(--maxw);
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 760px) {
  .section { padding: 56px 20px; }
}

.section-label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 14px;
}

.section h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(26px, 3vw, 33px);
  line-height: 1.28;
  margin: 0 0 20px;
  max-width: 700px;
  color: var(--navy-deep);
}

.section-intro {
  font-size: 16.5px;
  color: var(--ink-soft);
  max-width: 620px;
  margin: 0 0 36px;
}

/* ============================================
   HERO
   ============================================ */
.hero {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 100px 32px 88px;
  border-bottom: 1px solid var(--line);
}

@media (max-width: 760px) {
  .hero { padding: 56px 20px 48px; }
}

.hero-inner { max-width: 680px; }

.hero-grid {
  display: grid;
  grid-template-columns: 1.5fr 0.9fr;
  gap: 48px;
  align-items: center;
}

@media (max-width: 760px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .hero-photo { order: -1; max-width: 180px; }
}

.hero-photo img {
  width: 100%;
  max-width: 280px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 4px;
  display: block;
  border: 1px solid var(--line-strong);
}

.hero h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(46px, 6.4vw, 64px);
  line-height: 1.03;
  margin: 0 0 14px;
  color: var(--navy-deep);
  letter-spacing: -0.015em;
}

.hero-role {
  font-size: 16.5px;
  font-weight: 600;
  color: var(--navy);
  margin: 0 0 14px;
}

.hero-letterhead {
  font-size: 14.5px;
  color: var(--ink-soft);
  margin: 0 0 28px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.hero-letterhead a {
  color: var(--ink-soft);
  text-decoration: none;
}

.hero-letterhead a:hover {
  color: var(--navy);
  text-decoration: underline;
}

.hero-lede {
  font-size: 17px;
  color: var(--ink-soft);
  margin: 0 0 36px;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 26px;
  border-radius: 3px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14.5px;
  transition: all 0.15s ease;
  border: 1px solid transparent;
}

.btn-primary {
  background: var(--navy);
  color: #fff;
}

.btn-primary:hover { background: var(--navy-deep); }

.btn-ghost {
  border-color: var(--line-strong);
  color: var(--ink);
}

.btn-ghost:hover {
  border-color: var(--navy);
  background: var(--bg-alt);
}

/* ============================================
   DATA TABLE — replaces ledger motif
   ============================================ */
.data-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 8px;
}

.data-table thead th {
  text-align: left;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink-soft);
  padding: 0 0 12px;
  border-bottom: 1px solid var(--line-strong);
}

.data-table thead th:last-child,
.data-table td.num {
  text-align: right;
}

.data-table tbody td {
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  font-size: 15.5px;
  vertical-align: top;
}

.data-table tbody tr:last-child td {
  border-bottom: 1px solid var(--line-strong);
}

.row-note {
  color: var(--ink-soft);
}

.num {
  font-weight: 600;
  color: var(--navy);
  white-space: nowrap;
  text-align: right;
}

.num-left {
  font-weight: 600;
  color: var(--navy);
  width: 150px;
  white-space: nowrap;
}

@media (max-width: 600px) {
  .data-table thead { display: none; }
  .data-table tbody td { display: block; padding: 4px 0; border-bottom: none; }
  .data-table tbody tr { display: block; padding: 16px 0; border-bottom: 1px solid var(--line); }
  .num, .num-left { text-align: left; width: auto; }
}

.caption {
  margin-top: 24px;
  font-size: 15px;
  color: var(--ink-soft);
  max-width: 600px;
}

/* ============================================
   STATS GRID
   ============================================ */
.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.stat-card {
  display: flex;
  flex-direction: column;
  padding: 24px 0 0;
  border-top: 2px solid var(--navy);
}

.stat-figure {
  font-family: var(--font-display);
  font-size: clamp(26px, 2.6vw, 32px);
  font-weight: 600;
  color: var(--navy-deep);
  line-height: 1.1;
}

.stat-caption {
  font-size: 14px;
  color: var(--ink-soft);
  margin-top: 10px;
}

@media (max-width: 720px) {
  .stat-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================
   FOUNDATION
   ============================================ */
.foundation-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 56px;
}

@media (max-width: 760px) {
  .foundation-grid { grid-template-columns: 1fr; gap: 32px; }
}

.foundation-text p {
  font-size: 16px;
  color: var(--ink-soft);
  margin: 0 0 16px;
}

.foundation-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  align-self: start;
}

.foundation-item {
  font-size: 15px;
  font-weight: 600;
  color: var(--navy-deep);
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.foundation-item:first-child {
  border-top: 1px solid var(--line);
}

/* ============================================
   STAKEHOLDER / SEEKING LISTS
   ============================================ */
.stakeholder-list,
.seeking-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px 32px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.stakeholder-list li,
.seeking-list li {
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  padding: 14px 0 14px 18px;
  border-left: 2px solid var(--line-strong);
}

@media (max-width: 700px) {
  .stakeholder-list,
  .seeking-list { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .stakeholder-list,
  .seeking-list { grid-template-columns: 1fr; }
}

/* ============================================
   FAQ
   ============================================ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item {
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.faq-item:first-child {
  border-top: 1px solid var(--line);
}

.faq-item h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 17px;
  color: var(--navy-deep);
  margin: 0 0 8px;
}

.faq-item p {
  font-size: 15px;
  color: var(--ink-soft);
  margin: 0;
  max-width: 680px;
}

/* ============================================
   CONTACT
   ============================================ */
.contact-section {
  border-bottom: none;
  background: var(--navy-deep);
  color: #fff;
  max-width: none;
}

.contact-section > * {
  max-width: var(--maxw);
  margin-left: auto;
  margin-right: auto;
}

.contact-section .section-label {
  color: #C9AD7E;
}

.contact-section h2 {
  color: #fff;
}

.contact-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.contact-link {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 20px 26px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 3px;
  text-decoration: none;
  min-width: 220px;
  transition: border-color 0.15s ease, background 0.15s ease;
}

.contact-link:hover {
  border-color: rgba(255,255,255,0.5);
  background: rgba(255,255,255,0.04);
}

.contact-kind {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}

.contact-value {
  font-size: 16.5px;
  font-weight: 600;
  color: #fff;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  max-width: none;
  padding: 28px 32px;
  background: var(--navy-deep);
  color: rgba(255,255,255,0.5);
  font-size: 13px;
  display: flex;
  gap: 10px;
  justify-content: center;
}

@media (max-width: 760px) {
  .site-footer { padding: 20px 20px; }
}

.footer-dot { opacity: 0.4; }
