:root {
  --green-950: #0f2d20;
  --green-900: #173c2a;
  --green-700: #2f6a49;
  --green-500: #5d9a70;
  --green-100: #eaf3ed;
  --green-050: #f5faf6;
  --cream: #fbfaf6;
  --white: #ffffff;
  --ink: #152019;
  --muted: #647069;
  --line: rgba(23, 60, 42, 0.12);
  --shadow: 0 24px 70px rgba(15, 45, 32, 0.14);
  --radius-lg: 32px;
  --radius-md: 20px;
  --container: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

a {
  color: inherit;
}

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

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  transform: translateY(-180%);
  background: var(--green-950);
  color: white;
  padding: 10px 16px;
  z-index: 999;
  border-radius: 8px;
}

.skip-link:focus {
  transform: translateY(0);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  background: rgba(251, 250, 246, 0.78);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(16px);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.site-header.scrolled {
  border-color: var(--line);
  box-shadow: 0 8px 30px rgba(15, 45, 32, 0.06);
}

.nav-wrap {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--green-900);
  color: white;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.brand-name {
  font-weight: 800;
  letter-spacing: 0.22em;
  font-size: 0.94rem;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 34px;
}

.primary-nav a {
  text-decoration: none;
  color: var(--muted);
  font-weight: 650;
  font-size: 0.94rem;
  transition: color 0.2s ease;
}

.primary-nav a:hover,
.primary-nav a:focus-visible {
  color: var(--green-900);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 12px;
  background: transparent;
  cursor: pointer;
  padding: 10px;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  height: 2px;
  background: var(--green-950);
  margin: 5px 0;
  border-radius: 999px;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 150px 0 90px;
  background:
    radial-gradient(circle at 10% 20%, rgba(93, 154, 112, 0.16), transparent 36%),
    linear-gradient(180deg, var(--green-050), var(--cream));
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.14fr 0.86fr;
  align-items: center;
  gap: 76px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--green-700);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.78rem;
  font-weight: 800;
}

.hero h1 {
  margin: 0;
  max-width: 800px;
  font-size: clamp(3.2rem, 7vw, 6.8rem);
  line-height: 0.96;
  letter-spacing: -0.065em;
  font-weight: 760;
}

.hero-text {
  max-width: 680px;
  margin: 30px 0 0;
  font-size: clamp(1.04rem, 1.8vw, 1.24rem);
  color: var(--muted);
}

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

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 760;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--green-900);
  color: white;
  box-shadow: 0 14px 34px rgba(23, 60, 42, 0.2);
}

.button-primary:hover {
  background: var(--green-950);
}

.button-secondary {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.62);
  color: var(--green-950);
}

.button-light {
  background: white;
  color: var(--green-950);
  flex: 0 0 auto;
}

.status {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
  color: var(--muted);
  font-size: 0.92rem;
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green-500);
  box-shadow: 0 0 0 7px rgba(93, 154, 112, 0.13);
}

.hero-card {
  max-width: 470px;
  justify-self: end;
  width: 100%;
  border-radius: var(--radius-lg);
  padding: 1px;
  background: linear-gradient(145deg, rgba(255,255,255,.9), rgba(93,154,112,.18));
  box-shadow: var(--shadow);
}

.hero-card-inner {
  position: relative;
  overflow: hidden;
  min-height: 540px;
  padding: 38px;
  border-radius: calc(var(--radius-lg) - 1px);
  background:
    linear-gradient(180deg, rgba(15,45,32,.02), rgba(15,45,32,.2)),
    var(--green-900);
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hero-card-inner::after {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  right: -150px;
  bottom: -130px;
  border: 70px solid rgba(255,255,255,.06);
}

.mini-label {
  align-self: flex-start;
  padding: 8px 13px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 999px;
  font-size: .78rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 750;
}

.visual-mark {
  width: 140px;
  height: 140px;
  display: grid;
  place-items: center;
  align-self: center;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.08);
  box-shadow: inset 0 0 0 18px rgba(255,255,255,.04);
  font-size: 4.6rem;
  font-weight: 850;
  letter-spacing: -.08em;
}

.hero-card h2 {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: clamp(2.4rem, 4vw, 3.8rem);
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.hero-card p {
  position: relative;
  z-index: 1;
  margin: 10px 0 0;
  color: rgba(255,255,255,.72);
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  opacity: 0.55;
  pointer-events: none;
}

.hero-orb-one {
  width: 210px;
  height: 210px;
  top: 110px;
  right: 5%;
  background: rgba(93,154,112,.2);
}

.hero-orb-two {
  width: 120px;
  height: 120px;
  left: 4%;
  bottom: 10%;
  border: 24px solid rgba(47,106,73,.08);
}

.section {
  padding: 120px 0;
}

.section-light {
  background: white;
}

.two-column {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 100px;
  align-items: start;
}

.section-heading h2,
.contact-card h2 {
  margin: 0;
  font-size: clamp(2.3rem, 4.5vw, 4.4rem);
  line-height: 1.04;
  letter-spacing: -0.055em;
}

.section-copy {
  max-width: 700px;
  color: var(--muted);
  font-size: 1.14rem;
}

.section-copy p {
  margin: 0 0 20px;
}

.centered {
  max-width: 850px;
  text-align: center;
  margin-inline: auto;
}

.vision-section {
  background: var(--green-050);
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 56px;
}

.value-card {
  padding: 34px;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  min-height: 250px;
  box-shadow: 0 12px 35px rgba(15, 45, 32, 0.04);
}

.value-number {
  display: block;
  margin-bottom: 48px;
  color: var(--green-500);
  font-weight: 800;
  letter-spacing: .12em;
}

.value-card h3 {
  margin: 0 0 10px;
  font-size: 1.38rem;
}

.value-card p {
  margin: 0;
  color: var(--muted);
}

.contact-section {
  padding-top: 90px;
  background: var(--cream);
}

.contact-card {
  padding: clamp(36px, 6vw, 72px);
  border-radius: var(--radius-lg);
  background: var(--green-900);
  color: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  box-shadow: var(--shadow);
}

.contact-card .eyebrow {
  color: #b8d6c1;
}

.contact-card p:not(.eyebrow) {
  max-width: 720px;
  color: rgba(255,255,255,.72);
  font-size: 1.07rem;
  margin-bottom: 0;
}

.site-footer {
  padding: 34px 0;
  background: var(--cream);
}

.footer-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: var(--muted);
  font-size: .9rem;
}

.footer-wrap > div {
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.footer-wrap strong {
  color: var(--green-950);
  letter-spacing: .18em;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .75s ease, transform .75s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .button { transition: none; }
}

@media (max-width: 900px) {
  .hero {
    min-height: auto;
  }

  .hero-grid,
  .two-column {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .hero-card {
    justify-self: stretch;
    max-width: none;
  }

  .hero-card-inner {
    min-height: 440px;
  }

  .value-grid {
    grid-template-columns: 1fr;
  }

  .contact-card {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .nav-toggle {
    display: block;
  }

  .primary-nav {
    position: absolute;
    top: calc(100% + 8px);
    left: 14px;
    right: 14px;
    display: none;
    padding: 18px;
    border-radius: 18px;
    background: rgba(255,255,255,.98);
    border: 1px solid var(--line);
    box-shadow: 0 18px 50px rgba(15,45,32,.13);
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
  }

  .primary-nav.open {
    display: flex;
  }

  .primary-nav a {
    padding: 10px 8px;
  }

  .hero {
    padding-top: 125px;
  }

  .hero h1 {
    font-size: clamp(3rem, 16vw, 4.6rem);
  }

  .hero-card-inner {
    padding: 28px;
  }

  .section {
    padding: 86px 0;
  }

  .footer-wrap {
    flex-direction: column;
    align-items: flex-start;
  }
}
