:root {
  --ink: #101713;
  --ink-soft: #475049;
  --forest: #006f43;
  --forest-deep: #064a31;
  --forest-dark: #073c2a;
  --mint: #b6e2ca;
  --paper: #f3f0e8;
  --paper-light: #fbfaf6;
  --line: rgba(16, 23, 19, 0.16);
  --white-line: rgba(255, 255, 255, 0.2);
  --shell: min(1180px, calc(100vw - 48px));
  --serif: Georgia, 'Times New Roman', serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper-light);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
body.menu-is-open { overflow: hidden; }
img { max-width: 100%; height: auto; }
a { color: inherit; }
.shell { width: var(--shell); margin-inline: auto; }
.skip-link {
  position: fixed;
  z-index: 9999;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: #fff;
  background: var(--ink);
  transform: translateY(-160%);
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  background: rgba(251, 250, 246, 0.96);
  border-bottom: 1px solid transparent;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}
.site-header.is-scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 8px 30px rgba(16, 23, 19, 0.04);
}
.site-header__inner {
  min-height: 102px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.brand { display: flex; align-items: center; min-width: 0; }
.brand__link, .custom-logo-link { display: block; line-height: 0; }
.brand__image, .custom-logo {
  display: block;
  width: 340px;
  max-width: 100%;
  height: auto;
}
.site-nav__list {
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.4vw, 38px);
  margin: 0;
  padding: 0;
  list-style: none;
}
.site-nav a {
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
}
.site-nav a:not(.nav-cta) { position: relative; }
.site-nav a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: -6px;
  left: 0;
  height: 1px;
  content: '';
  background: var(--forest);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}
.site-nav a:hover::after, .site-nav a:focus-visible::after { transform: scaleX(1); transform-origin: left; }
.site-nav .nav-cta, .site-nav__list > li:last-child > a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  padding: 0 18px;
  color: #fff;
  background: var(--ink);
  border: 1px solid var(--ink);
  transition: color 180ms ease, background 180ms ease;
}
.site-nav .nav-cta:hover, .site-nav__list > li:last-child > a:hover { color: var(--ink); background: transparent; }
.menu-toggle { display: none; }

.hero {
  position: relative;
  min-height: 660px;
  overflow: hidden;
  background: var(--paper-light);
  border-bottom: 1px solid var(--line);
}
.hero::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: calc(50% + 90px);
  width: 1px;
  content: '';
  background: var(--line);
}
.hero__grid {
  position: relative;
  z-index: 2;
  min-height: 660px;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(330px, 0.6fr);
  gap: clamp(50px, 8vw, 110px);
  align-items: center;
  padding-block: 86px 94px;
}
.hero__content { max-width: 760px; }
.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 30px;
  color: var(--forest);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  line-height: 1.3;
  text-transform: uppercase;
}
.eyebrow > span { width: 34px; height: 1px; background: currentColor; }
h1, h2, h3, p { margin-top: 0; }
h1, h2 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1.02;
}
.hero h1 {
  max-width: 760px;
  margin-bottom: 30px;
  font-size: clamp(3.3rem, 6vw, 6.25rem);
}
.hero__lead {
  max-width: 650px;
  margin-bottom: 36px;
  color: var(--ink-soft);
  font-size: clamp(1.08rem, 1.5vw, 1.3rem);
  line-height: 1.65;
}
.button-row { display: flex; flex-wrap: wrap; gap: 26px; align-items: center; }
.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 24px;
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
}
.button--primary {
  padding: 0 22px;
  color: #fff;
  background: var(--forest);
  border: 1px solid var(--forest);
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}
.button--primary:hover, .button--primary:focus-visible { color: var(--forest); background: transparent; transform: translateY(-2px); }
.button--text { min-height: auto; padding-block: 10px; border-bottom: 1px solid var(--ink); }
.button--text:hover { color: var(--forest); border-color: var(--forest); }
.hero-card {
  position: relative;
  padding: clamp(32px, 4vw, 48px);
  color: #fff;
  background: var(--forest-dark);
  box-shadow: 22px 22px 0 var(--mint);
}
.hero-card__label {
  margin-bottom: 26px;
  color: var(--mint);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.hero-card ul { margin: 0 0 32px; padding: 0; list-style: none; }
.hero-card li {
  position: relative;
  padding: 17px 0 17px 22px;
  border-top: 1px solid var(--white-line);
  font-family: var(--serif);
  font-size: 1.13rem;
  line-height: 1.35;
}
.hero-card li::before { position: absolute; top: 24px; left: 0; width: 7px; height: 7px; content: ''; background: var(--mint); }
.hero-card__footer { display: flex; align-items: center; gap: 12px; color: rgba(255,255,255,.68); font-size: 0.72rem; letter-spacing: .08em; text-transform: uppercase; }
.hero-card__footer span { width: 20px; height: 1px; background: var(--mint); }
.hero__accent {
  position: absolute;
  z-index: 0;
  right: -0.08em;
  bottom: -0.35em;
  color: rgba(0, 111, 67, 0.035);
  font-family: var(--serif);
  font-size: clamp(16rem, 32vw, 34rem);
  line-height: 1;
  white-space: nowrap;
}
.value-strip { color: #fff; background: var(--ink); }
.value-strip__inner { min-height: 66px; display: flex; align-items: center; justify-content: center; gap: clamp(18px, 4vw, 62px); }
.value-strip span { font-size: 0.69rem; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }
.value-strip i { width: 4px; height: 4px; background: var(--mint); transform: rotate(45deg); }

.section { padding-block: clamp(90px, 11vw, 150px); }
.section--intro { background: var(--paper); }
.split-heading { display: grid; grid-template-columns: 0.65fr 1.35fr; gap: clamp(50px, 9vw, 130px); }
.section-number { color: var(--forest); font-size: .7rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.section-number--light { color: var(--mint); }
.split-heading h2, .section-heading h2, .fit-section h2, .cta-section h2, .contact-hero h1 {
  margin-bottom: 30px;
  font-size: clamp(2.55rem, 4.4vw, 4.7rem);
}
.split-heading > div > p:last-child { max-width: 700px; margin: 0; color: var(--ink-soft); font-size: 1.12rem; }

.section--services { color: #fff; background: var(--forest-deep); }
.section-heading { display: grid; grid-template-columns: .65fr 1.35fr; gap: clamp(50px, 9vw, 130px); margin-bottom: 72px; }
.section-heading h2 { max-width: 720px; margin-bottom: 0; }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--white-line); border-left: 1px solid var(--white-line); }
.service-card {
  position: relative;
  min-height: 340px;
  padding: 34px;
  border-right: 1px solid var(--white-line);
  border-bottom: 1px solid var(--white-line);
  transition: color 200ms ease, background 200ms ease;
}
.service-card:hover { color: var(--ink); background: var(--mint); }
.service-card__number { display: block; margin-bottom: 70px; color: var(--mint); font-size: .68rem; font-weight: 800; letter-spacing: .12em; }
.service-card:hover .service-card__number { color: var(--forest); }
.service-card h3 { max-width: 260px; margin-bottom: 18px; font-family: var(--serif); font-size: 1.65rem; font-weight: 400; line-height: 1.12; }
.service-card p { max-width: 320px; margin-bottom: 0; color: rgba(255,255,255,.7); font-size: .92rem; line-height: 1.65; }
.service-card:hover p { color: rgba(16,23,19,.72); }
.service-card__mark { position: absolute; top: 30px; right: 30px; color: var(--mint); font-size: 1.25rem; }
.service-card:hover .service-card__mark { color: var(--forest); }

.section--approach { background: var(--paper-light); }
.split-heading--compact { align-items: start; margin-bottom: 80px; }
.split-heading--compact h2 { max-width: 760px; margin-bottom: 0; }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); }
.step { position: relative; padding: 36px 50px 0 0; }
.step::before { position: absolute; top: -4px; left: 0; width: 8px; height: 8px; content: ''; background: var(--forest); transform: rotate(45deg); }
.step > span { display: block; margin-bottom: 40px; color: var(--forest); font-size: .7rem; font-weight: 800; }
.step h3 { margin-bottom: 14px; font-family: var(--serif); font-size: 2rem; font-weight: 400; }
.step p { margin: 0; color: var(--ink-soft); }

.fit-section { padding-block: clamp(90px, 11vw, 150px); color: #fff; background: var(--ink); }
.fit-section__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(60px, 10vw, 140px); }
.fit-section h2 { max-width: 560px; margin-bottom: 0; }
.fit-list { border-top: 1px solid var(--white-line); }
.fit-list > div { display: grid; grid-template-columns: 45px 1fr; gap: 16px; padding: 26px 0; border-bottom: 1px solid var(--white-line); }
.fit-list span { color: var(--mint); font-size: .7rem; font-weight: 800; }
.fit-list p { margin: 0; font-family: var(--serif); font-size: 1.25rem; line-height: 1.45; }

.cta-section { position: relative; overflow: hidden; padding-block: clamp(100px, 12vw, 170px); text-align: center; background: var(--mint); }
.cta-section::before, .cta-section::after { position: absolute; width: 180px; height: 180px; content: ''; border: 1px solid rgba(0,111,67,.25); transform: rotate(45deg); }
.cta-section::before { top: -110px; left: 8%; }
.cta-section::after { right: 8%; bottom: -110px; }
.cta-section__inner { position: relative; z-index: 1; max-width: 880px; }
.eyebrow--center { justify-content: center; }
.cta-section h2 { margin-bottom: 24px; }
.cta-section p:not(.eyebrow) { margin-bottom: 34px; color: var(--ink-soft); font-size: 1.08rem; }

.site-footer { padding: 70px 0 24px; color: rgba(255,255,255,.7); background: var(--forest-dark); }
.site-footer__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; padding-bottom: 60px; }
.site-footer__name { margin-bottom: 16px; color: #fff; font-family: var(--serif); font-size: 2rem; }
.site-footer p { max-width: 440px; margin: 0; }
.site-footer__contact { display: flex; flex-direction: column; align-items: flex-end; justify-content: center; }
.site-footer__contact span { margin-bottom: 8px; color: var(--mint); font-size: .68rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.site-footer__contact a { color: #fff; font-family: var(--serif); font-size: clamp(1.5rem, 3vw, 2.5rem); text-decoration-thickness: 1px; text-underline-offset: 7px; }
.site-footer__bottom { display: flex; justify-content: space-between; gap: 24px; padding-top: 24px; border-top: 1px solid var(--white-line); font-size: .72rem; letter-spacing: .05em; }
.site-footer__bottom a { color: inherit; }

.contact-hero { position: relative; overflow: hidden; padding-block: clamp(90px, 11vw, 160px); background: var(--paper); }
.contact-hero__grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(60px, 10vw, 140px); align-items: end; }
.contact-hero h1 { max-width: 720px; margin-bottom: 0; }
.contact-hero__copy > p { margin-bottom: 38px; color: var(--ink-soft); font-size: 1.08rem; }
.email-link { display: block; padding: 22px 0; border-top: 1px solid var(--ink); border-bottom: 1px solid var(--ink); color: var(--forest); font-family: var(--serif); font-size: clamp(1.35rem, 2.5vw, 2.2rem); text-decoration: none; }
.email-link span { display: block; margin-bottom: 8px; color: var(--ink-soft); font-family: var(--sans); font-size: .65rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.email-link i { float: right; font-family: var(--sans); font-style: normal; }
.contact-hero__mark { position: absolute; right: -.05em; bottom: -.4em; color: rgba(0,111,67,.04); font-family: var(--serif); font-size: clamp(18rem, 40vw, 42rem); line-height: 1; }
.contact-topics { padding-block: clamp(80px, 10vw, 130px); }
.contact-topics__grid { display: grid; grid-template-columns: .65fr 1.35fr; gap: clamp(50px, 9vw, 130px); }
.contact-topics ul { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.contact-topics li { display: grid; grid-template-columns: 50px 1fr; gap: 20px; padding: 28px 0; border-bottom: 1px solid var(--line); font-family: var(--serif); font-size: 1.35rem; line-height: 1.35; }
.contact-topics li span { color: var(--forest); font-family: var(--sans); font-size: .68rem; font-weight: 800; }
.contact-closing { padding-block: 34px; color: #fff; background: var(--forest); text-align: center; }
.contact-closing p { margin: 0; font-size: .8rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }

.content-page { min-height: 65vh; padding-block: clamp(80px, 10vw, 140px); background: var(--paper); }
.content-page__inner { max-width: 860px; }
.content-page h1 { margin-bottom: 45px; font-size: clamp(3rem, 6vw, 5.6rem); }
.entry-content { font-size: 1.05rem; }
.entry-content > * { max-width: 720px; }
.entry-content h2, .entry-content h3 { margin-top: 2em; font-family: var(--serif); font-weight: 400; }
.entry-content h2 { font-size: 2.2rem; }
.post-summary { margin-bottom: 48px; padding-bottom: 48px; border-bottom: 1px solid var(--line); }
.post-summary h2 { font-size: 2.5rem; }
.not-found p { max-width: 620px; margin-bottom: 32px; color: var(--ink-soft); font-size: 1.1rem; }

@media (max-width: 980px) {
  :root { --shell: min(100% - 40px, 760px); }
  .hero::before { display: none; }
  .hero__grid { grid-template-columns: 1fr; gap: 64px; }
  .hero-card { max-width: 570px; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .fit-section__grid, .contact-hero__grid { grid-template-columns: 1fr; }
  .contact-hero__copy { max-width: 650px; }
}

@media (max-width: 860px) {
  .site-header__inner { min-height: 82px; }
  .brand__image, .custom-logo { width: 250px; }
  .menu-toggle {
    position: relative;
    z-index: 102;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    color: var(--ink);
    background: transparent;
    border: 0;
    font: inherit;
    font-size: .68rem;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
    cursor: pointer;
  }
  .menu-toggle__icon { position: relative; width: 24px; height: 16px; }
  .menu-toggle__icon span { position: absolute; right: 0; width: 24px; height: 1px; background: currentColor; transition: transform 180ms ease, top 180ms ease; }
  .menu-toggle__icon span:first-child { top: 3px; }
  .menu-toggle__icon span:last-child { top: 12px; }
  .menu-toggle[aria-expanded='true'] .menu-toggle__icon span:first-child { top: 8px; transform: rotate(45deg); }
  .menu-toggle[aria-expanded='true'] .menu-toggle__icon span:last-child { top: 8px; transform: rotate(-45deg); }
  .site-nav {
    position: fixed;
    inset: 0;
    z-index: 101;
    display: grid;
    place-items: center;
    visibility: hidden;
    background: var(--paper-light);
    opacity: 0;
    transition: opacity 180ms ease, visibility 180ms ease;
  }
  .site-nav.is-open { visibility: visible; opacity: 1; }
  .site-nav__list { flex-direction: column; gap: 24px; }
  .site-nav a { font-size: 1rem; }
  .site-nav .nav-cta, .site-nav__list > li:last-child > a { min-height: 50px; padding: 0 24px; }
  .split-heading, .section-heading, .contact-topics__grid { grid-template-columns: 1fr; gap: 36px; }
  .steps { grid-template-columns: 1fr; gap: 50px; }
  .step { padding-right: 0; }
  .section-heading { margin-bottom: 52px; }
}

@media (max-width: 620px) {
  :root { --shell: calc(100% - 32px); }
  .site-header__inner { min-height: 76px; }
  .brand__image, .custom-logo { width: 210px; }
  .hero, .hero__grid { min-height: auto; }
  .hero__grid { padding-block: 64px 78px; }
  .hero h1 { font-size: clamp(3rem, 15vw, 4.2rem); }
  .button-row { align-items: flex-start; flex-direction: column; }
  .hero-card { margin-right: 12px; padding: 30px 26px; box-shadow: 12px 12px 0 var(--mint); }
  .value-strip__inner { flex-wrap: wrap; gap: 10px 18px; padding-block: 16px; }
  .value-strip i { display: none; }
  .value-strip span { width: calc(50% - 10px); text-align: center; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: auto; padding: 28px 26px 34px; }
  .service-card__number { margin-bottom: 42px; }
  .fit-list > div { grid-template-columns: 36px 1fr; }
  .site-footer__grid { grid-template-columns: 1fr; gap: 42px; }
  .site-footer__contact { align-items: flex-start; }
  .site-footer__bottom { flex-direction: column; }
  .email-link { overflow-wrap: anywhere; }
}

@media (prefers-reduced-motion: no-preference) {
  .reveal { animation: reveal-up 650ms ease both; }
  .reveal--delay { animation-delay: 160ms; }
  @keyframes reveal-up { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }
}

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

@media print {
  .site-header, .site-footer, .button-row { display: none; }
  body, .section--services, .fit-section { color: #000; background: #fff; }
}
