:root {
  --green-950: #0a251c;
  --green-900: #12372a;
  --green-800: #1d4b39;
  --green-700: #2f654c;
  --lime: #c9f31d;
  --lime-soft: #e9ff8e;
  --orange: #f26b3a;
  --cream: #f4f1e8;
  --paper: #fbfaf6;
  --white: #ffffff;
  --ink: #171916;
  --muted: #5f665f;
  --line: #d9ddd5;
  --container: 1240px;
  --shadow: 0 24px 70px rgba(10, 37, 28, 0.14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, Aptos, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, textarea { font: inherit; }
button { color: inherit; }

.container { width: min(calc(100% - 48px), var(--container)); margin-inline: auto; }
.section-pad { padding: 118px 0; }
.section-soft { background: var(--cream); }

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  background: var(--lime);
  color: var(--green-950);
  font-weight: 800;
  transform: translateY(-180%);
}
.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;
}

.utility-bar { background: var(--green-950); color: var(--white); }
.utility-inner {
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font-size: 0.78rem;
}
.utility-inner p { margin: 0; color: #dbe9e0; }
.utility-inner a { color: var(--lime); text-decoration: none; font-weight: 800; }
.utility-inner a:hover { text-decoration: underline; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(251, 250, 246, 0.96);
  border-bottom: 1px solid rgba(23, 25, 22, 0.08);
  backdrop-filter: blur(12px);
}
.nav-wrap { min-height: 86px; display: flex; align-items: center; justify-content: space-between; gap: 36px; }
.brand { display: inline-flex; align-items: center; }
.brand img { width: 228px; height: auto; }
.primary-nav { display: flex; align-items: center; gap: 31px; }
.primary-nav a { position: relative; text-decoration: none; font-size: 0.92rem; font-weight: 700; }
.primary-nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 2px;
  background: var(--green-800);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}
.primary-nav a:hover::after,
.primary-nav a:focus-visible::after { transform: scaleX(1); transform-origin: left; }
.nav-cta { padding: 12px 18px; color: var(--white); background: var(--green-900); border-radius: 3px; }
.nav-cta:hover { background: var(--green-700); }
.menu-toggle { display: none; }

.hero { min-height: 700px; display: grid; grid-template-columns: 0.95fr 1.05fr; background: var(--green-900); }
.hero-copy-wrap { position: relative; display: flex; flex-direction: column; justify-content: center; padding: 96px max(48px, calc((100vw - var(--container)) / 2)); padding-right: 70px; color: var(--white); overflow: hidden; }
.hero-copy-wrap::before {
  content: "";
  position: absolute;
  width: 330px;
  height: 330px;
  right: -190px;
  top: -120px;
  border: 65px solid rgba(201, 243, 29, 0.11);
  border-radius: 50%;
}
.hero-copy { position: relative; z-index: 2; max-width: 610px; }
.kicker, .section-label {
  margin: 0 0 20px;
  font-size: 0.77rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.kicker { color: var(--lime); }
h1, h2, h3 { margin-top: 0; line-height: 1.06; }
h1 { margin-bottom: 27px; font-size: clamp(3.65rem, 5.3vw, 6.45rem); letter-spacing: -0.065em; font-weight: 780; }
h2 { margin-bottom: 24px; font-size: clamp(2.7rem, 4.2vw, 4.8rem); letter-spacing: -0.055em; font-weight: 760; }
h3 { margin-bottom: 14px; font-size: 1.37rem; letter-spacing: -0.026em; }
.hero-lead { max-width: 610px; margin: 0; color: #d8e5dc; font-size: clamp(1.07rem, 1.4vw, 1.28rem); }
.hero-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 25px; margin-top: 38px; }
.button { display: inline-flex; min-height: 52px; align-items: center; justify-content: center; padding: 13px 22px; border: 1px solid transparent; border-radius: 3px; font-weight: 800; text-decoration: none; cursor: pointer; transition: transform 160ms ease, background 160ms ease, color 160ms ease; }
.button:hover { transform: translateY(-2px); }
.button-light { background: var(--lime); color: var(--green-950); }
.button-light:hover { background: var(--lime-soft); }
.button-dark { background: var(--green-950); color: var(--white); }
.button-dark:hover { background: var(--green-700); }
.text-link { display: inline-flex; align-items: center; gap: 8px; color: var(--green-900); text-decoration: none; font-weight: 800; }
.text-link span { transition: transform 160ms ease; }
.text-link:hover span { transform: translateX(5px); }
.text-link-light { color: var(--white); }
.hero-signal { position: absolute; z-index: 2; left: max(48px, calc((100vw - var(--container)) / 2)); bottom: 32px; display: flex; gap: 13px; align-items: center; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.25); font-size: 0.78rem; }
.hero-signal span { color: #bcd0c2; }
.hero-signal strong { color: var(--white); }
.hero-image-wrap { position: relative; min-height: 700px; overflow: hidden; }
.hero-image-wrap::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(18,55,42,.16), transparent 35%), linear-gradient(0deg, rgba(10,37,28,.28), transparent 40%); pointer-events: none; }
.hero-image-wrap img { width: 100%; height: 100%; object-fit: cover; object-position: center 55%; }
.hero-image-credit, .image-credit { position: absolute; z-index: 2; right: 16px; bottom: 12px; padding: 5px 8px; background: rgba(10, 37, 28, 0.72); color: rgba(255,255,255,.78); font-size: 0.63rem; }

.intro-grid { display: grid; grid-template-columns: 0.32fr 1.68fr; gap: 64px; align-items: start; }
.section-label { color: var(--orange); }
.intro-copy { max-width: 980px; }
.intro-copy h2 { max-width: 900px; }
.intro-copy p { max-width: 900px; margin: 0 0 30px; color: var(--muted); font-size: 1.15rem; }

.section-head { display: grid; grid-template-columns: 1.25fr .75fr; gap: 70px; align-items: end; margin-bottom: 62px; }
.section-head h2 { margin-bottom: 0; max-width: 800px; }
.section-head > p { margin: 0 0 8px; color: var(--muted); font-size: 1.03rem; }
.expertise-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); background: var(--white); }
.expertise-card { position: relative; min-height: 390px; padding: 36px 34px 34px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); overflow: hidden; }
.expertise-card::after { content: ""; position: absolute; inset: auto 0 0; height: 5px; background: var(--lime); transform: scaleX(0); transform-origin: left; transition: transform 220ms ease; }
.expertise-card:hover::after { transform: scaleX(1); }
.expertise-card > span { position: absolute; top: 36px; right: 30px; color: #969d95; font-size: .77rem; font-weight: 800; }
.icon-wrap { width: 52px; height: 52px; margin-bottom: 68px; display: grid; place-items: center; background: var(--lime); border-radius: 50%; }
.icon-wrap svg { width: 29px; height: 29px; fill: none; stroke: var(--green-950); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.expertise-card p { margin: 0; color: var(--muted); }

.focus { color: var(--white); background: var(--green-950); }
.section-head-light .section-label { color: var(--lime); }
.section-head-light > p { color: #bed0c3; }
.focus-list { border-top: 1px solid rgba(255,255,255,.21); }
.focus-item { display: grid; grid-template-columns: 80px minmax(280px, .9fr) 1.1fr; gap: 36px; align-items: start; padding: 34px 0; border-bottom: 1px solid rgba(255,255,255,.21); }
.focus-item span { color: var(--lime); font-weight: 850; }
.focus-item h3 { margin: 0; font-size: clamp(1.55rem, 2.5vw, 2.45rem); }
.focus-item p { max-width: 670px; margin: 0; color: #c3d2c8; }

.approach-grid { display: grid; grid-template-columns: .88fr 1.12fr; gap: 90px; align-items: start; }
.approach-image { position: sticky; top: 125px; min-height: 690px; overflow: hidden; background: var(--green-900); }
.approach-image img { width: 100%; height: 690px; object-fit: cover; object-position: center; }
.image-tag { position: absolute; left: 0; bottom: 0; padding: 18px 22px; background: var(--lime); color: var(--green-950); font-size: .86rem; font-weight: 850; }
.approach-copy { padding-top: 24px; }
.approach-intro { margin: -5px 0 38px; color: var(--muted); font-size: 1.18rem; }
.approach-steps { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.approach-steps li { display: grid; grid-template-columns: 58px 1fr; gap: 24px; padding: 27px 0; border-bottom: 1px solid var(--line); }
.approach-steps span { color: var(--orange); font-weight: 850; }
.approach-steps h3 { margin: 0 0 8px; }
.approach-steps p { margin: 0; color: var(--muted); }

.methods-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 95px; align-items: start; }
.methods-copy p:not(.section-label) { color: var(--muted); font-size: 1.08rem; }
.methods-lists { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.methods-lists h3 { padding-bottom: 14px; border-bottom: 3px solid var(--green-900); }
.methods-lists ul { margin: 0; padding: 0; list-style: none; }
.methods-lists li { position: relative; padding: 12px 0 12px 22px; border-bottom: 1px solid var(--line); }
.methods-lists li::before { content: ""; position: absolute; left: 0; top: 1.35em; width: 7px; height: 7px; background: var(--orange); border-radius: 50%; }

.about-grid { display: grid; grid-template-columns: 1fr .9fr; gap: 95px; align-items: center; }
.about-copy p:not(.section-label) { color: var(--muted); font-size: 1.08rem; }
.about-copy .text-link { margin-top: 12px; }
.about-visual { position: relative; min-height: 590px; overflow: hidden; background: var(--green-900); }
.about-visual img { width: 100%; height: 590px; object-fit: cover; object-position: center 38%; }
.about-stat { position: absolute; left: 24px; bottom: 24px; display: grid; gap: 4px; width: min(310px, calc(100% - 48px)); padding: 22px; background: var(--lime); color: var(--green-950); }
.about-stat span { font-size: .72rem; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.about-stat strong { font-size: 1.55rem; }

.contact { padding: 110px 0; background: var(--orange); color: var(--green-950); }
.contact-inner { display: grid; grid-template-columns: .9fr 1.1fr; gap: 90px; align-items: start; }
.contact .section-label { color: var(--green-950); }
.contact-copy h2 { max-width: 630px; }
.contact-copy > p:not(.section-label) { max-width: 620px; font-size: 1.08rem; }
.contact-meta { display: flex; flex-wrap: wrap; gap: 12px 25px; margin-top: 32px; font-size: .86rem; font-weight: 800; }
.contact-form { display: grid; gap: 20px; padding: 38px; background: var(--paper); color: var(--ink); box-shadow: var(--shadow); }
.contact-form label { display: grid; gap: 7px; }
.contact-form label span { font-size: .82rem; font-weight: 800; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.contact-form input, .contact-form textarea { width: 100%; border: 1px solid #bfc5bd; border-radius: 0; padding: 13px 14px; background: var(--white); color: var(--ink); outline: none; }
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--green-900); box-shadow: 0 0 0 3px rgba(18,55,42,.13); }
.form-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 18px; }
.form-status { margin: 0; color: var(--muted); font-size: .82rem; }

.site-footer { padding: 74px 0 28px; background: var(--green-950); color: var(--white); }
.footer-main { display: grid; grid-template-columns: 1fr .8fr; gap: 70px; padding-bottom: 52px; }
.footer-brand img { width: 255px; }
.footer-brand p { color: #b9cbbf; }
.footer-nav { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.footer-nav h3 { margin-bottom: 18px; color: var(--lime); font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; }
.footer-nav a { display: block; margin: 8px 0; color: #dbe7df; text-decoration: none; }
.footer-nav a:hover { color: var(--lime); }
.footer-bottom { display: flex; justify-content: space-between; gap: 30px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.18); color: #9fb5a7; font-size: .78rem; }
.footer-bottom p { margin: 0; }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity 650ms ease, transform 650ms ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

@media (max-width: 1080px) {
  .hero { grid-template-columns: 1fr; }
  .hero-copy-wrap { min-height: 660px; padding-right: max(48px, calc((100vw - var(--container)) / 2)); }
  .hero-image-wrap { min-height: 580px; }
  .expertise-grid { grid-template-columns: repeat(2, 1fr); }
  .approach-grid, .about-grid { gap: 55px; }
  .contact-inner { gap: 55px; }
}

@media (max-width: 860px) {
  .section-pad { padding: 86px 0; }
  .utility-inner p { display: none; }
  .utility-inner { justify-content: flex-end; }
  .menu-toggle { display: grid; width: 46px; height: 46px; border: 0; background: transparent; place-content: center; gap: 5px; cursor: pointer; }
  .menu-toggle span:not(.sr-only) { display: block; width: 23px; height: 2px; background: var(--green-950); }
  .primary-nav { position: absolute; inset: 86px 24px auto; display: none; flex-direction: column; align-items: stretch; gap: 0; padding: 16px; background: var(--paper); border: 1px solid var(--line); box-shadow: var(--shadow); }
  .primary-nav.is-open { display: flex; }
  .primary-nav a { padding: 12px; }
  .nav-cta { margin-top: 7px; text-align: center; }
  .intro-grid, .section-head, .methods-grid, .contact-inner, .approach-grid, .about-grid { grid-template-columns: 1fr; }
  .section-head { gap: 25px; }
  .section-head > p { max-width: 700px; }
  .focus-item { grid-template-columns: 50px 1fr; gap: 20px; }
  .focus-item p { grid-column: 2; }
  .approach-image { position: relative; top: auto; min-height: 520px; }
  .approach-image img { height: 520px; }
  .about-visual { min-height: 520px; }
  .about-visual img { height: 520px; }
  .footer-main { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .section-pad { padding: 70px 0; }
  .nav-wrap { min-height: 74px; }
  .brand img { width: 195px; }
  .primary-nav { inset: 74px 14px auto; }
  .hero-copy-wrap { min-height: 650px; padding: 70px 20px 105px; }
  .hero-signal { left: 20px; right: 20px; bottom: 25px; align-items: flex-start; flex-direction: column; gap: 2px; }
  h1 { font-size: clamp(3rem, 14vw, 4.25rem); }
  h2 { font-size: clamp(2.35rem, 11vw, 3.45rem); }
  .hero-image-wrap { min-height: 460px; }
  .hero-image-wrap img { height: 460px; }
  .intro-grid { gap: 20px; }
  .expertise-grid { grid-template-columns: 1fr; }
  .expertise-card { min-height: 350px; padding: 30px 26px; }
  .icon-wrap { margin-bottom: 54px; }
  .focus-item { grid-template-columns: 38px 1fr; padding: 28px 0; }
  .approach-image, .about-visual { min-height: 440px; }
  .approach-image img, .about-visual img { height: 440px; }
  .methods-lists { grid-template-columns: 1fr; gap: 38px; }
  .form-grid { grid-template-columns: 1fr; }
  .contact { padding: 75px 0; }
  .contact-form { padding: 27px 22px; }
  .footer-nav { grid-template-columns: 1fr 1fr; gap: 30px; }
  .footer-bottom { flex-direction: column; gap: 8px; }
}

.contact-placeholder {
  align-self: center;
}

.contact-placeholder h3 {
  margin: 0 0 1rem;
  font-size: clamp(1.5rem, 2.6vw, 2.25rem);
  line-height: 1.12;
}

.contact-placeholder p:not(.section-label) {
  margin: 0 0 1.5rem;
  max-width: 42rem;
}
