:root {
  --ink: #101513;
  --muted: #66726d;
  --muted-2: #89938f;
  --forest: #107C41;
  --forest-2: #0b5c30;
  --forest-soft: #e8f5ee;
  --gold: #c5a756;
  --gold-soft: #fbf6e6;
  --paper: #fbfaf6;
  --soft: #f2f0e8;
  --white: #fff;
  --dark: #0c100f;
  --line: rgba(15, 35, 27, .12);
  --line-dark: rgba(255, 255, 255, .14);
  --shadow: 0 22px 70px rgba(11, 17, 16, .11);
  --radius: 22px;
  --max: 1160px;
  --font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box
}

html {
  scroll-behavior: smooth
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility
}

a {
  color: inherit;
  text-decoration: none
}

svg {
  display: block
}

.page {
  overflow: hidden
}

.container {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto
}

.skip {
  position: absolute;
  left: -999px;
  top: 10px;
  z-index: 1000;
  padding: 10px 14px;
  background: #fff;
  border-radius: 12px
}

.skip:focus {
  left: 10px
}

.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 250, 246, .9);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line)
}

.nav-inner {
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-width: 210px
}

.mark {
  width: 32px;
  height: 32px;
  border-radius: 9px;
  background: var(--forest);
  display: grid;
  place-items: center;
  color: #fff;
  box-shadow: 0 10px 28px rgba(16, 124, 65, .25)
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05
}

.brand strong {
  font-size: .94rem;
  letter-spacing: -.02em
}

.brand span {
  font-size: .72rem;
  color: var(--muted)
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px;
  background: rgba(255, 255, 255, .72);
  border: 1px solid var(--line);
  border-radius: 999px
}

.nav-links a {
  font-size: .82rem;
  color: #34413c;
  padding: 8px 11px;
  border-radius: 999px
}

.nav-links a:hover,
.nav-links a.active {
  background: var(--forest-soft);
  color: var(--forest-2)
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 10px
}

.phone-link {
  font-size: .82rem;
  color: var(--muted)
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 44px;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  font-size: .9rem;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease
}

.btn:hover {
  transform: translateY(-1px)
}

.btn-primary {
  background: var(--forest);
  color: #fff;
  box-shadow: 0 16px 36px rgba(16, 124, 65, .24)
}

.btn-primary:hover {
  background: var(--forest-2)
}

.btn-secondary {
  background: rgba(255, 255, 255, .09);
  color: #fff;
  border-color: rgba(255, 255, 255, .24)
}

.btn-light {
  background: #fff;
  border-color: var(--line);
  color: var(--ink)
}

.mobile-menu {
  display: none;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 999px;
  padding: 9px 12px;
  font-weight: 800;
  color: var(--ink)
}

.hero {
  position: relative;
  color: #fff;
  
  background: radial-gradient(circle at 82% 18%, rgba(16, 124, 65, .34), transparent 28%), linear-gradient(135deg, #0b0f0e 0%, #111716 54%, #09100d 100%);padding: 78px 0 66px;
  border-bottom: 1px solid var(--line)
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--forest), var(--gold))
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(330px, .66fr);
  gap: 44px;
  align-items: center
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 18px;
  color: var(--forest);
  background: var(--forest-soft);
  border: 1px solid rgba(16, 124, 65, .2);
  border-radius: 999px;
  padding: 7px 11px;
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: uppercase
}

.dot {
  width: 7px;
  height: 7px;
  border-radius: 99px;
  background: currentColor
}

h1 {
  font-size: clamp(2.55rem, 5.6vw, 5.15rem);
  line-height: .98;
  letter-spacing: -.07em;
  margin: 0 0 24px;
  max-width: 860px
}

h2 {
  font-size: clamp(2rem, 4.2vw, 3.7rem);
  line-height: 1.02;
  letter-spacing: -.06em;
  margin: 0 0 16px
}

.hero-copy {
  font-size: clamp(1.04rem, 1.9vw, 1.22rem);
  color: #fff;
  max-width: 560px;
  margin: 0 0 28px
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px
}

.hero-panel {
  position: relative;
  background: rgba(255, 255, 255, .075);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 28px;
  padding: 22px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, .22);
  overflow: hidden
}

.panel-card {
  position: relative;
  background: rgba(251, 250, 246, .96);
  color: var(--ink);
  border-radius: 22px;
  padding: 24px
}

.panel-label {
  color: var(--forest);
  font-size: .74rem;
  font-weight: 900;
  letter-spacing: .11em;
  text-transform: uppercase
}

.panel-card h2 {
  font-size: 1.55rem;
  line-height: 1.12;
  letter-spacing: -.04em;
  margin: 6px 0 14px
}

.model-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none
}

.model-list li {
  display: flex;
  gap: 11px;
  align-items: flex-start;
  color: #43504b;
  font-size: .95rem
}

.tick {
  flex: 0 0 21px;
  height: 21px;
  display: grid;
  place-items: center;
  border-radius: 99px;
  background: var(--forest-soft);
  color: var(--forest);
  font-size: .82rem;
  font-weight: 900
}

.quick-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 18px
}

.metric-box {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 16px;
  padding: 13px
}

.metric-box strong {
  display: block;
  color: var(--forest);
  font-size: 1.35rem;
  letter-spacing: -.04em
}

.metric-box span {
  color: var(--muted);
  font-size: .78rem
}

.section {
  padding: 74px 0;
  position: relative
}

.section.tight {
  padding: 54px 0
}

.section-soft {
  background: var(--soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line)
}

.section-dark {
  background: var(--dark);
  color: #fff
}

.section-title {
  max-width: 760px;
  margin-bottom: 34px
}

.section-title.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 10px;
  color: var(--forest);
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase
}

.eyebrow::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 99px;
  background: currentColor;
  box-shadow: 0 0 0 5px rgba(16, 124, 65, .1)
}

.section-dark .eyebrow {
  color: #7fe2ad
}

.lede {
  color: var(--muted);
  font-size: 1.08rem;
  max-width: 720px;
  margin: 0
}

.section-dark .lede {
  color: rgba(255, 255, 255, .62)
}

.story-grid {
  display: grid;
  grid-template-columns: .86fr 1.14fr;
  gap: 30px;
  align-items: start
}

.story-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 28px;
  box-shadow: 0 20px 60px rgba(11, 17, 16, .06)
}

.story-card h3 {
  font-size: 1.28rem;
  letter-spacing: -.04em;
  margin: 0 0 10px
}

.story-card p {
  color: var(--muted);
  margin: 0
}

.story-card p+p {
  margin-top: 14px
}

.metric-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 18px
}

.metric {
  border: 1px solid var(--line);
  background: var(--paper);
  border-radius: 18px;
  padding: 18px
}

.metric strong {
  display: block;
  color: var(--forest);
  font-size: 1.48rem;
  letter-spacing: -.04em;
  line-height: 1
}

.metric span {
  color: var(--muted);
  font-size: .8rem
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px
}

.value-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: 0 18px 46px rgba(11, 17, 16, .045)
}

.icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: var(--forest-soft);
  color: var(--forest);
  margin-bottom: 16px
}

.value-card h3 {
  margin: 0 0 8px;
  letter-spacing: -.03em
}

.value-card p {
  color: var(--muted);
  margin: 0
}

.leadership-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px
}

.leader-card {
  position: relative;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 26px;
  box-shadow: 0 22px 62px rgba(11, 17, 16, .06)
}

.leader-card::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--forest), var(--gold))
}

.leader-top {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 18px
}

.avatar {
  flex: 0 0 64px;
  width: 64px;
  height: 64px;
  border-radius: 20px;
  display: grid;
  place-items: center;
  background: radial-gradient(circle at 28% 20%, rgba(197, 167, 86, .34), transparent 34%), linear-gradient(135deg, var(--forest), var(--forest-2));
  color: #fff;
  font-weight: 900;
  letter-spacing: -.02em;
  box-shadow: 0 18px 42px rgba(16, 124, 65, .24)
}

.leader-card h3 {
  margin: 0;
  font-size: 1.16rem;
  letter-spacing: -.035em
}

.role-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin: 0 0 5px;
  color: var(--forest);
  background: var(--forest-soft);
  border-radius: 999px;
  padding: 5px 9px;
  font-size: .74rem;
  font-weight: 900
}

.leader-focus {
  color: var(--muted);
  margin: 0 0 16px;
  font-size: .94rem
}

.leader-note {
  margin: 0;
  padding: 16px 17px;
  border-radius: 18px;
  background: var(--paper);
  border: 1px solid var(--line);
  color: #384640;
  font-size: .96rem
}

.leader-note strong {
  color: var(--forest-2)
}

.quote-band {
  border: 1px solid rgba(197, 167, 86, .28);
  border-radius: 30px;
  background: linear-gradient(135deg, rgba(197, 167, 86, .12), rgba(255, 255, 255, .03));
  padding: 30px;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 26px;
  align-items: center
}

.quote-band h2 {
  color: #fff
}

.quote-band p {
  color: rgba(255, 255, 255, .62);
  margin: 0
}

.quote-list {
  display: grid;
  gap: 10px
}

.quote-list div {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: rgba(255, 255, 255, .72)
}

.governance {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  counter-reset: govern
}

.governance-card {
  background: rgba(255, 255, 255, .055);
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: var(--radius);
  padding: 22px
}

.governance-card::before {
  counter-increment: govern;
  content: "0" counter(govern);
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 99px;
  color: #7fe2ad;
  background: rgba(16, 124, 65, .18);
  font-weight: 900;
  margin-bottom: 16px
}

.governance-card h3 {
  margin: 0 0 8px;
  color: #fff;
  letter-spacing: -.025em
}

.governance-card p {
  margin: 0;
  color: rgba(255, 255, 255, .58)
}

.contact {
  background: linear-gradient(135deg, var(--dark), #0d1712);
  color: #fff;
  border-top: 1px solid rgba(197, 167, 86, .5)
}

.contact-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 34px;
  align-items: start
}

.contact-card {
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 28px;
  background: rgba(255, 255, 255, .055);
  padding: 26px
}

.contact-card h2 {
  color: #fff
}

.contact-card p {
  color: rgba(255, 255, 255, .62)
}

.contact-methods {
  display: grid;
  gap: 10px;
  margin-top: 22px
}

.contact-method {
  display: flex;
  gap: 12px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, .11);
  border-radius: 17px;
  padding: 14px;
  background: rgba(255, 255, 255, .04)
}

.contact-method strong {
  display: block;
  font-size: .9rem
}

.contact-method span {
  color: rgba(255, 255, 255, .55);
  font-size: .86rem
}

.form {
  background: var(--paper);
  color: var(--ink);
  border-radius: 28px;
  padding: 24px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, .2)
}

.name-note {
  margin-top: 18px;
  color: var(--muted);
  font-size: .9rem
}

.footer {
  background: #080c0b;
  color: rgba(255, 255, 255, .58);
  padding: 34px 0
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center
}

.footer a {
  color: rgba(255, 255, 255, .58)
}

.footer small {
  color: rgba(255, 255, 255, .38)
}

.mobile-sticky {
  display: none;
  position: fixed;
  left: 10px;
  right: 10px;
  bottom: 10px;
  z-index: 200;
  background: rgba(251, 250, 246, .95);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 10px;
  box-shadow: 0 22px 70px rgba(0, 0, 0, .22);
  gap: 8px
}

.mobile-sticky .btn {
  flex: 1;
  min-height: 42px;
  padding: 10px 12px;
  font-size: .82rem
}

@media(max-width:1040px) {

  .nav-links,
  .phone-link {
    display: none
  }

  .mobile-menu {
    display: inline-flex
  }

  .hero-grid,
  .story-grid,
  .quote-band,
  .contact-grid {
    grid-template-columns: 1fr
  }

  .governance {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media(max-width:760px) {
  .container {
    width: min(100% - 28px, var(--max))
  }

  .nav-inner {
    height: 64px
  }

  .brand {
    min-width: auto
  }

  .brand span {
    display: none
  }

  .hero {
    padding: 48px 0 36px
  }

  h1 {
    font-size: clamp(2.35rem, 13vw, 4rem);
    letter-spacing: -.06em
  }

  h2 {
    font-size: clamp(1.9rem, 10vw, 3rem)
  }

  .hero-actions {
    flex-direction: column
  }

  .hero-actions .btn,
  .btn {
    width: 100%
  }

  .section {
    padding: 58px 0
  }

  .metric-strip,
  .value-grid,
  .leadership-grid,
  .governance,
  .quick-metrics {
    grid-template-columns: 1fr
  }

  .leader-card,
  .story-card,
  .quote-band,
  .contact-card,
  .form {
    border-radius: 22px;
    padding: 20px
  }

  .leader-top {
    align-items: flex-start
  }

  .avatar {
    width: 58px;
    height: 58px;
    flex-basis: 58px;
    border-radius: 18px
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column
  }

  .mobile-sticky {
    display: flex
  }

  .nav-cta .btn {
    width: auto
  }

  body {
    padding-bottom: 72px
  }
}

.brand-logo {
  display: block;
  height: 36px;
  width: auto;
}

/* About hero — corporate: centered statement + leadership board */
.hero-head {
  max-width: 840px;
  margin: 0 auto;
  text-align: center
}

.hero-head .kicker {
  margin-bottom: 20px
}

.hero-head h1 {
  max-width: none;
  margin: 0 auto 22px
}

.hero-head .hero-copy {
  max-width: 660px;
  margin: 0 auto 30px
}

.hero-head .hero-actions {
  justify-content: center
}

.hero-board {
  position: relative;
  overflow: hidden;
  margin-top: 52px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: 0 26px 70px rgba(11, 17, 16, .10)
}

.hero-board::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--forest), var(--gold))
}

.hero-board-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  padding: 24px 28px;
  border-bottom: 1px solid var(--line)
}

.hero-board-top h2 {
  font-size: 1.4rem;
  line-height: 1.14;
  letter-spacing: -.035em;
  margin: 6px 0 0;
  color: var(--ink)
}

.hero-stats {
  display: flex;
  gap: 30px;
  flex-wrap: wrap
}

.hero-stats div {
  display: flex;
  flex-direction: column
}

.hero-stats strong {
  color: var(--forest);
  font-size: 1.6rem;
  line-height: 1;
  letter-spacing: -.04em
}

.hero-stats span {
  color: var(--muted);
  font-size: .8rem;
  margin-top: 5px
}

.hero-roles {
  display: grid;
  grid-template-columns: repeat(4, 1fr)
}

.hero-role {
  display: flex;
  flex-direction: column;
  gap: 9px;
  padding: 24px;
  border-right: 1px solid var(--line)
}

.hero-role:last-child {
  border-right: 0
}

.hero-role .avatar {
  color: #fff;
  flex: 0 0 46px;
  width: 46px;
  height: 46px;
  border-radius: 13px;
  font-size: .82rem
}

.hero-role strong {
  color: var(--ink);
  font-size: .98rem;
  letter-spacing: -.02em
}

.hero-role span {
  color: var(--muted);
  font-size: .84rem
}

@media(max-width:1040px) {
  .hero-roles {
    grid-template-columns: repeat(2, 1fr)
  }

  .hero-role {
    border-bottom: 1px solid var(--line)
  }

  .hero-role:nth-child(2n) {
    border-right: 0
  }

  .hero-role:nth-child(3),
  .hero-role:nth-child(4) {
    border-bottom: 0
  }
}

@media(max-width:760px) {
  .hero-board-top {
    padding: 22px
  }

  .hero-stats {
    gap: 22px
  }

  .hero-roles {
    grid-template-columns: 1fr
  }

  .hero-role {
    border-right: 0;
    border-bottom: 1px solid var(--line)
  }

  .hero-role:last-child {
    border-bottom: 0
  }
}