: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;
  transition: background-color .35s cubic-bezier(.22, 1, .36, 1), color .35s cubic-bezier(.22, 1, .36, 1)
}

a {
  color: inherit;
  text-decoration: none
}

svg {
  display: block
}

.page {
  overflow: hidden;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .9s cubic-bezier(.22, 1, .36, 1), transform .9s cubic-bezier(.22, 1, .36, 1)
}

.page.is-ready {
  opacity: 1;
  transform: translateY(0)
}

.page-transition {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  background: radial-gradient(circle at top, rgba(16, 124, 65, .2), transparent 40%), linear-gradient(135deg, #09100d 0%, #111716 55%, #0b0f0e 100%);
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s ease;
}

.page-transition.is-active {
  opacity: 1;
  pointer-events: auto;
}

.page-transition .loader {
  width: 54px;
  height: 54px;
  border-radius: 999px;
  border: 3px solid rgba(255, 255, 255, .16);
  border-top-color: #7fe2ad;
  animation: pageSpin 1s linear infinite;
}

body.is-transitioning {
  overflow: hidden;
}

.reveal-card {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .38s cubic-bezier(.2, .8, .2, 1), transform .38s cubic-bezier(.2, .8, .2, 1), box-shadow .22s cubic-bezier(.2, .8, .2, 1), border-color .22s cubic-bezier(.2, .8, .2, 1);
}

.reveal-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.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 .25s cubic-bezier(.22, 1, .36, 1), box-shadow .25s cubic-bezier(.22, 1, .36, 1), background .25s cubic-bezier(.22, 1, .36, 1), color .25s cubic-bezier(.22, 1, .36, 1)
}

.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)
}

/* Hamburger toggle (mobile only) */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 12px;
  cursor: pointer;
}

.nav-toggle-bar {
  display: block;
  width: 20px;
  height: 2px;
  margin: 0 auto;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .3s cubic-bezier(.22, 1, .36, 1), opacity .2s ease;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile dropdown menu panel */
.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 8px 20px 16px;
  border-top: 1px solid var(--line);
}

.mobile-nav a:not(.btn) {
  padding: 12px;
  border-radius: 12px;
  font-size: .98rem;
  font-weight: 600;
  color: #34413c;
}

.mobile-nav a:not(.btn):hover {
  background: var(--forest-soft);
  color: var(--forest-2);
}

.mobile-nav .btn {
  width: 100%;
  margin-top: 8px;
}

.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);
  overflow: hidden;
  isolation: isolate
}

.hero::before {
  content: "";
  position: absolute;
  inset: -12% auto auto -8%;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(127, 226, 173, .14), transparent 70%);
  border-radius: 50%;
  filter: blur(10px);
  animation: heroGlow 10s ease-in-out infinite alternate;
  pointer-events: none;
  z-index: 0
}

.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;
  z-index: 1
}

.hero .kicker,
.hero h1,
.hero .hero-copy,
.hero .hero-actions {
  position: relative;
  z-index: 1;
  animation: heroFadeUp .8s cubic-bezier(.2, .8, .2, 1) both
}

.hero .kicker {
  animation-delay: .06s
}

.hero h1 {
  animation-delay: .12s
}

.hero .hero-copy {
  animation-delay: .2s
}

.hero .hero-actions {
  animation-delay: .28s
}

.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;
  animation: heroPanelFloat 8s ease-in-out infinite;
  transition: transform .35s cubic-bezier(.2, .8, .2, 1), box-shadow .35s cubic-bezier(.2, .8, .2, 1)
}

.hero-panel:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 36px 100px rgba(0, 0, 0, .28)
}

.panel-card {
  position: relative;
  background: rgba(251, 250, 246, .96);
  color: var(--ink);
  border-radius: 22px;
  padding: 24px;
  transition: transform .3s cubic-bezier(.2, .8, .2, 1), box-shadow .3s cubic-bezier(.2, .8, .2, 1), border-color .3s cubic-bezier(.2, .8, .2, 1)
}

.panel-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(11, 17, 16, .08);
  border-color: rgba(16, 124, 65, .2)
}

.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);
  transition: transform .3s cubic-bezier(.2, .8, .2, 1), box-shadow .3s cubic-bezier(.2, .8, .2, 1)
}

.story-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 70px rgba(11, 17, 16, .09)
}

.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);
  transition: transform .3s cubic-bezier(.2, .8, .2, 1), box-shadow .3s cubic-bezier(.2, .8, .2, 1), border-color .3s cubic-bezier(.2, .8, .2, 1)
}

.value-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 56px rgba(11, 17, 16, .08);
  border-color: rgba(16, 124, 65, .2)
}

.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 60px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  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)
}

.avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.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 {
  position: relative;
  margin: 0;
  padding: 18px 18px 18px;
  border-radius: 18px;
  background: var(--paper);
  border: 1px solid var(--line);
  color: #384640;
  font-size: .96rem;
  font-style: italic
}

.leader-note::before {
  content: "";
  display: block;
  width: 34px;
  height: 34px;
  margin-bottom: 12px;
  border-radius: 10px;
  background-color: var(--forest-soft);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23107C41'%3E%3Cpath d='M6 17h3l2-4V7H5v6h3zm8 0h3l2-4V7h-6v6h3z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 19px 19px
}

.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: 52px 0 44px;
  border-top: 1px solid rgba(255, 255, 255, .07)
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr);
  gap: 28px 56px;
  align-items: start
}

.footer a {
  color: rgba(255, 255, 255, .58)
}

.footer small {
  color: rgba(255, 255, 255, .38)
}

.footer-logo-link {
  display: inline-block;
  margin-bottom: 16px
}

.footer-logo {
  display: block;
  height: 44px;
  width: auto
}

.footer-tagline,
.footer-promise {
  margin: 0 0 8px;
  font-size: .93rem;
  color: rgba(255, 255, 255, .62);
  max-width: 48ch
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px 10px;
  margin: 16px 0 12px
}

.footer-links a {
  color: var(--gold);
  font-weight: 700;
  font-size: .93rem;
  transition: color .2s ease
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: #e2cd8d
}

.footer-sep {
  color: rgba(255, 255, 255, .26)
}

.footer-legal {
  margin: 0;
  font-size: .84rem;
  color: rgba(255, 255, 255, .4)
}

.footer-meta {
  display: grid;
  gap: 11px;
  margin: 0
}

.footer-meta div {
  font-size: .92rem;
  color: rgba(255, 255, 255, .62)
}

.footer-meta b {
  color: var(--gold);
  font-weight: 700;
  margin-right: 5px
}

.footer-meta a {
  transition: color .2s ease
}

.footer-meta a:hover,
.footer-meta a:focus-visible {
  color: var(--white)
}

.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,
  .nav-cta {
    display: none
  }

  .mobile-menu {
    display: inline-flex
  }

  .nav-toggle {
    display: flex
  }

  .mobile-nav.is-open {
    display: 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: 56px;
    height: 56px;
    flex-basis: 56px;
    border-radius: 50%
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 26px
  }

  .footer {
    /* 36px base + 72px reserved for the fixed action bar (62px tall, 10px from the viewport bottom) */
    padding: 42px 0 116px
  }

  .mobile-sticky {
    display: flex
  }

  .nav-cta .btn {
    width: auto
  }
}

.brand-logo {
  display: block;
  height: 36px;
  width: auto;
}

/* Back-to-top floating button */
.back-to-top {
  position: fixed;
  right: 22px;
  bottom: 24px;
  z-index: 300;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 999px;
  background: var(--forest);
  color: var(--white);
  box-shadow: 0 16px 36px rgba(16, 124, 65, .32);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px) scale(.92);
  transition: opacity .3s cubic-bezier(.22, 1, .36, 1), transform .3s cubic-bezier(.22, 1, .36, 1), background .25s ease;
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.back-to-top:hover {
  background: var(--forest-2);
  transform: translateY(-2px) scale(1.04);
}

.back-to-top:focus-visible {
  outline: 2px solid var(--white);
  outline-offset: 2px;
}

.back-to-top svg {
  width: 20px;
  height: 20px;
}

@media (max-width: 760px) {
  .back-to-top {
    right: 14px;
    bottom: 84px;
    width: 44px;
    height: 44px;
  }
}

/* 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
  }
}

/* Partners (moved from the homepage) */
.partners-wrap {
  display: grid;
  grid-template-columns: .72fr 1fr;
  gap: 30px;
  align-items: start;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.partner-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 26px 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  transition: transform .3s cubic-bezier(.22, 1, .36, 1), box-shadow .3s cubic-bezier(.22, 1, .36, 1), border-color .3s cubic-bezier(.22, 1, .36, 1);
}

.partner-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(16, 124, 65, .14);
  border-color: rgba(16, 124, 65, .2);
}

.partner-logo {
  height: 54px;
  display: grid;
  place-items: center;
}

.partner-logo img {
  max-height: 54px;
  max-width: 190px;
  width: auto;
  object-fit: contain;
}

.partner-mark {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: var(--forest-soft);
  color: var(--forest);
}

.partner-role {
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--forest);
  background: var(--forest-soft);
  padding: 5px 10px;
  border-radius: 999px;
}

.partner-role.is-gold {
  color: #8a6f27;
  background: var(--gold-soft);
}

.partner-card h3 {
  font-size: 1.06rem;
  letter-spacing: -.025em;
  margin: 0;
  color: var(--ink);
}

.partner-card p {
  color: var(--muted);
  margin: 0;
  font-size: .9rem;
  flex: 1;
}

.partner-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--forest);
  font-weight: 900;
  font-size: .88rem;
  text-decoration: none;
  margin-top: 4px;
  transition: gap .25s cubic-bezier(.22, 1, .36, 1);
}

.partner-cta:hover {
  gap: 12px;
}

@media (max-width: 1040px) {
  .partners-wrap {
    grid-template-columns: 1fr;
  }

  .partners-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@media (max-width: 760px) {
  .partners-grid {
    grid-template-columns: 1fr;
  }
}

/* ============ V2 content additions ============ */

/* WhatsApp availability indicator in front of phone numbers */
.phone-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.wa-ico {
  width: 16px;
  height: 16px;
  color: #25D366;
  flex: 0 0 auto;
}

.mobile-sticky .wa-ico {
  width: 17px;
  height: 17px;
}

/* "The future we see" — two-card layout (matches reference) */
.future-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; align-items: stretch; }
.future-card, .built-card { border-radius: 28px; padding: 34px; }
.future-card { background: #fff; border: 1px solid var(--line); box-shadow: 0 20px 60px rgba(11, 17, 16, .06); transition: transform .3s cubic-bezier(.2, .8, .2, 1), box-shadow .3s cubic-bezier(.2, .8, .2, 1); }
.future-card:hover { transform: translateY(-3px); box-shadow: 0 24px 70px rgba(11, 17, 16, .09); }
.future-card .eyebrow, .built-card .eyebrow { display: inline-block; border-bottom: 2px solid #a4d33a; padding-bottom: 6px; margin-bottom: 16px; }
.future-card .eyebrow::before, .built-card .eyebrow::before { display: none; }
.future-card h2 { margin: 0 0 16px; font-size: clamp(1.6rem, 3vw, 2.1rem); letter-spacing: -.035em; }
.future-lede { color: var(--muted); margin: 0; font-size: 1.02rem; }
.future-quote { margin: 24px 0 0; padding: 6px 0 6px 20px; border-left: 4px solid #a4d33a; color: var(--forest-2); font-weight: 800; font-size: 1.1rem; line-height: 1.42; }

.built-card { background: linear-gradient(158deg, #178a47 0%, #0d5f33 100%); box-shadow: 0 26px 60px rgba(9, 60, 32, .28); }
.built-card .eyebrow { color: #bfe84f; border-bottom-color: #a4d33a; }
.built-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 18px; }
.built-card .built-list li { display: flex; gap: 14px; align-items: flex-start; }
.built-check { flex: 0 0 22px; width: 22px; height: 22px; border-radius: 50%; background: #a4d33a; color: #0d3d1f; display: grid; place-items: center; font-size: .74rem; font-weight: 900; margin-top: 2px; }
.built-text strong { display: block; color: #fff; font-size: 1rem; letter-spacing: -.01em; margin-bottom: 2px; }
.built-text span { color: rgba(255, 255, 255, .72); font-size: .9rem; line-height: 1.45; }

.why-not-band { margin-top: 20px; background: #edf4ee; border: 1px solid rgba(16, 124, 65, .18); border-radius: 22px; padding: 26px 30px; }
.why-not-band h3 { margin: 0 0 6px; color: var(--ink); font-size: 1.15rem; letter-spacing: -.02em; }
.why-not-band p { margin: 0; color: var(--muted); }

@media (max-width: 1040px) {
  .future-grid { grid-template-columns: 1fr; }
}

/* What drives us — dark theme (Mission / Vision / Values) */
#drives .section-title h2 {
  color: #fff;
}

#drives .hl {
  color: #63c87a;
  background: linear-gradient(#a4d33a, #a4d33a) left bottom / 100% 3px no-repeat;
  padding-bottom: 8px;
}

.mv-grid {
  display: grid;
  grid-template-columns: 1.12fr .88fr;
  gap: 18px;
  margin-bottom: 42px;
}

.mv-card {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  padding: 30px;
  transition: transform .3s cubic-bezier(.2, .8, .2, 1), box-shadow .3s cubic-bezier(.2, .8, .2, 1);
}

.mv-card:hover {
  transform: translateY(-3px);
}

.mv-card .mv-label {
  font-size: .74rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin: 0 0 14px;
}

.mv-card p:not(.mv-label) {
  margin: 0;
}

.mv-card.is-mission {
  background: linear-gradient(150deg, #17904a 0%, #0e6835 100%);
  box-shadow: 0 26px 60px rgba(9, 60, 32, .5);
}

.mv-card.is-mission .mv-label {
  color: #a9e8bf;
}

.mv-card.is-mission p:not(.mv-label) {
  color: #fff;
  font-size: 1.34rem;
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: -.02em;
  max-width: 30ch;
}

.mv-card.is-vision {
  background: rgba(255, 255, 255, .035);
  border: 1px solid rgba(255, 255, 255, .12);
}

.mv-card.is-vision .mv-label {
  color: #7fe2ad;
}

.mv-card.is-vision p:not(.mv-label) {
  color: rgba(255, 255, 255, .72);
  font-size: 1.1rem;
  line-height: 1.5;
}

.mv-quote {
  position: absolute;
  top: 22px;
  right: 30px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 3.6rem;
  line-height: 1;
  color: rgba(255, 255, 255, .3);
}

.mv-arrow {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 50%;
  color: #7fe2ad;
}

.mv-arrow svg {
  width: 18px;
  height: 18px;
}

.values-eyebrow {
  display: inline-block;
  margin: 0 0 18px;
  color: #7fe2ad;
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
  border-bottom: 2px solid #a4d33a;
  padding-bottom: 6px;
}

#drives .value-grid {
  gap: 16px;
}

#drives .value-card {
  background: rgba(255, 255, 255, .03);
  border: 1px solid rgba(255, 255, 255, .1);
  box-shadow: none;
}

#drives .value-card:hover {
  transform: translateY(-3px);
  border-color: rgba(164, 211, 58, .4);
  box-shadow: 0 18px 40px rgba(0, 0, 0, .35);
}

#drives .value-card h3 {
  color: #fff;
  margin: 0;
  font-size: 1.02rem;
  letter-spacing: -.02em;
}

#drives .value-card>p {
  color: rgba(255, 255, 255, .6);
  margin: 0;
  font-size: .92rem;
}

.vc-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.value-num {
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: #a4d33a;
  color: #0d3d1f;
  font-weight: 900;
  font-size: .92rem;
  letter-spacing: -.02em;
}

/* Careers — Build a career that travels with you */
.career-locations { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; margin: 22px 0 0; }
.career-locations span { font-size: .76rem; font-weight: 800; letter-spacing: .02em; color: var(--forest-2); background: var(--forest-soft); border: 1px solid rgba(16, 124, 65, .16); border-radius: 999px; padding: 6px 13px; }

.career-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 34px; }
.career-adv { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; box-shadow: 0 18px 46px rgba(11, 17, 16, .045); transition: transform .3s cubic-bezier(.2, .8, .2, 1), box-shadow .3s cubic-bezier(.2, .8, .2, 1), border-color .3s cubic-bezier(.2, .8, .2, 1); }
.career-adv:hover { transform: translateY(-3px); box-shadow: 0 24px 60px rgba(11, 17, 16, .09); border-color: rgba(16, 124, 65, .2); }
.career-adv .icon { margin-bottom: 16px; }
.career-adv h3 { margin: 0 0 10px; font-size: 1.16rem; letter-spacing: -.03em; }
.career-adv p { color: var(--muted); margin: 0; font-size: .95rem; }

.career-feature { position: relative; overflow: hidden; margin-top: 16px; background: #fff; border: 1px solid var(--line); border-radius: 28px; padding: 34px; box-shadow: 0 20px 60px rgba(11, 17, 16, .06); }
.career-feature::before { content: ""; position: absolute; left: 0; right: 0; top: 0; height: 4px; background: linear-gradient(90deg, var(--forest), var(--gold)); }
.career-feature-intro { max-width: 840px; margin-bottom: 24px; }
.career-feature-intro .eyebrow { margin-bottom: 12px; }
.career-feature-intro h3 { margin: 0 0 10px; font-size: 1.4rem; letter-spacing: -.035em; }
.career-feature-intro > p { color: var(--muted); margin: 0; }
.career-feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.career-benefit { background: var(--soft); border: 1px solid var(--line); border-radius: 18px; padding: 22px; }
.benefit-tick { display: inline-grid; place-items: center; width: 36px; height: 36px; border-radius: 11px; background: var(--forest-soft); color: var(--forest); margin-bottom: 14px; }
.benefit-tick svg { width: 19px; height: 19px; }
.career-benefit strong { display: block; color: var(--ink); margin-bottom: 6px; font-size: 1rem; letter-spacing: -.01em; }
.career-benefit p { color: var(--muted); font-size: .9rem; line-height: 1.5; margin: 0; }

.join-band { margin-top: 16px; display: grid; grid-template-columns: 1.3fr .7fr; gap: 26px; align-items: center; background: radial-gradient(circle at 88% 12%, rgba(197, 167, 86, .3), transparent 42%), linear-gradient(135deg, var(--forest), var(--forest-2)); border-radius: 28px; padding: 38px; color: #fff; }
.join-eyebrow { display: inline-flex; align-items: center; gap: 8px; margin: 0 0 10px; color: #bff0cf; font-size: .74rem; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.join-band h3 { color: #fff; margin: 0 0 8px; font-size: 1.6rem; letter-spacing: -.03em; }
.join-band p { color: rgba(255, 255, 255, .82); margin: 0; max-width: 52ch; }
.join-cta { text-align: right; }
.join-resume { display: inline-flex; align-items: center; gap: 8px; background: #fff; color: var(--forest-2); font-weight: 900; padding: 14px 22px; border-radius: 999px; box-shadow: 0 14px 30px rgba(0, 0, 0, .18); transition: transform .25s cubic-bezier(.22, 1, .36, 1); }
.join-resume:hover { transform: translateY(-2px); }
.join-note { margin: 12px 0 0; font-size: .84rem; color: rgba(255, 255, 255, .75); }

@media (max-width: 1040px) {
  .mv-grid,
  .career-grid,
  .career-feature-grid,
  .join-band {
    grid-template-columns: 1fr;
  }

  .join-cta {
    text-align: left;
  }
}