:root {
  --forest: #0b3d2e;
  --forest-deep: #062a20;
  --forest-soft: #185643;
  --leaf: #527b60;
  --leaf-pale: #e3ebe1;
  --moss: #b9d17a;
  --ivory: #f6f3eb;
  --stone: #e8e2d6;
  --ink: #3b2a22;
  --muted: #705f55;
  --white: #fff;
  --shell: 1180px;
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--ivory);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, textarea { font: inherit; }
.shell { width: min(calc(100% - 48px), var(--shell)); margin-inline: auto; }
.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; }
.skip-link { position: fixed; z-index: 1000; top: 10px; left: 10px; padding: 10px 16px; background: var(--white); color: var(--forest); transform: translateY(-150%); }
.skip-link:focus { transform: translateY(0); }

.site-header { position: absolute; inset: 0 0 auto; z-index: 20; color: var(--white); border-bottom: 1px solid rgb(255 255 255 / 14%); }
.site-header-solid { position: relative; background: var(--forest); }
.nav-wrap { height: 88px; display: flex; align-items: center; justify-content: space-between; }
.brand { display: inline-flex; align-items: center; gap: 12px; color: inherit; text-decoration: none; font-size: 0.95rem; font-weight: 700; letter-spacing: 0.03em; }
.brand img { width: 62px; height: 30px; object-fit: contain; filter: brightness(0) invert(1); }
.site-nav { display: flex; align-items: center; gap: 34px; }
.site-nav > a:not(.button) { color: rgb(255 255 255 / 82%); text-decoration: none; font-size: 0.9rem; font-weight: 600; }
.site-nav > a:not(.button):hover { color: var(--white); }
.nav-toggle { display: none; border: 0; background: transparent; padding: 10px; }
.nav-toggle span:not(.sr-only) { display: block; width: 25px; height: 1px; margin: 6px 0; background: var(--white); }

.button { min-height: 52px; display: inline-flex; align-items: center; justify-content: center; padding: 0 24px; border: 1px solid transparent; border-radius: 2px; text-decoration: none; font-weight: 700; font-size: 0.9rem; letter-spacing: 0.01em; cursor: pointer; transition: transform 180ms ease, background 180ms ease, border-color 180ms ease; }
.button:hover { transform: translateY(-2px); }
.button-small { min-height: 42px; padding-inline: 18px; }
.button-light { border-color: rgb(255 255 255 / 35%); color: var(--white); }
.button-light:hover { background: var(--white); color: var(--forest); }
.button-accent { background: var(--moss); color: var(--forest-deep); }
.button-accent:hover { background: #c9de94; }
.button-dark { width: 100%; background: var(--forest); color: var(--white); }
.button-dark:hover { background: var(--forest-deep); }
.text-link { display: inline-flex; align-items: center; gap: 10px; color: rgb(255 255 255 / 84%); font-weight: 650; text-decoration: none; }
.text-link span { color: var(--moss); }

.eyebrow { margin: 0 0 22px; color: var(--moss); font-size: 0.74rem; line-height: 1.2; font-weight: 800; letter-spacing: 0.16em; text-transform: uppercase; }
.eyebrow-dark { color: var(--forest-soft); }
.hero { min-height: 780px; display: grid; align-items: center; padding: 76px 0 110px; color: var(--forest); background: var(--ivory); overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1fr; gap: 42px; align-items: center; max-width: 840px; }
.hero-logo { width: min(560px, 78vw); margin-inline: auto; }
.hero-copy { width: 100%; text-align: center; }
.hero h1, .contact-intro h1 { margin: 0; font-family: var(--serif); font-size: clamp(3.4rem, 6.4vw, 6rem); font-weight: 400; line-height: 0.98; letter-spacing: -0.045em; }
.hero h1 { color: var(--forest); }
.hero h1 span { color: var(--leaf); font-style: italic; }
.hero .eyebrow { color: var(--forest); }
.hero-lede { max-width: 680px; margin: 32px auto; color: var(--forest); font-size: 1.13rem; line-height: 1.75; }
.hero-actions { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 28px; }
.hero .button-accent { background: var(--forest); color: var(--white); }
.hero .button-accent:hover { background: var(--forest-deep); }
.hero .text-link { color: var(--leaf); }
.hero .text-link span { color: var(--leaf); }

.problem-section {
  padding: 118px 0 112px;
  color: var(--white);
  background: var(--leaf);
}
.problem-section .eyebrow { color: var(--moss); }
.problem-section .section-heading h2 { color: var(--white); }
.problem-section .section-heading > p:last-child { color: rgb(255 255 255 / 82%); }
.problem-section .problem-list { border-top-color: rgb(255 255 255 / 28%); }
.problem-section .problem-item { border-bottom-color: rgb(255 255 255 / 28%); }
.problem-section .problem-number { color: var(--moss); }
.problem-section .problem-item h3 { color: var(--white); }
.problem-section .problem-item p:last-child { color: rgb(255 255 255 / 78%); }
.section-heading { display: grid; grid-template-columns: 1.1fr 0.9fr; column-gap: 80px; align-items: end; margin-bottom: 64px; }
.section-heading .eyebrow { grid-column: 1 / -1; }
.section-heading h2, .approach-intro h2, .cta-inner h2 { margin: 0; font-family: var(--serif); font-size: clamp(2.5rem, 4.7vw, 4.5rem); font-weight: 400; line-height: 1.06; letter-spacing: -0.035em; }
.section-heading > p:last-child { margin: 0 0 6px; color: var(--muted); font-size: 1.05rem; line-height: 1.75; }
.problem-list { border-top: 1px solid #cbc5b9; }
.problem-item { display: grid; grid-template-columns: 100px 1fr; gap: 34px; padding: 34px 0; border-bottom: 1px solid #cbc5b9; }
.problem-number { margin: 3px 0 0; color: var(--forest-soft); font-size: 0.72rem; font-weight: 800; letter-spacing: 0.1em; }
.problem-item h3 { margin: 0 0 7px; font-family: var(--serif); font-size: clamp(1.55rem, 3vw, 2.15rem); font-weight: 400; }
.problem-item p:last-child { max-width: 680px; margin: 0; color: var(--muted); }

.approach-section { padding: 112px 0; background: var(--white); }
.approach-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 100px; }
.approach-intro { position: sticky; top: 32px; align-self: start; }
.approach-lede { margin: 42px 0 52px; color: var(--muted); font-size: 1.12rem; line-height: 1.8; }
.steps { border-top: 1px solid var(--stone); }
.steps > div { display: grid; grid-template-columns: 145px 1fr; gap: 26px; padding: 26px 0; border-bottom: 1px solid var(--stone); }
.steps span { color: var(--forest); font-weight: 750; }
.steps p { margin: 0; color: var(--muted); }

.cta-section { padding: 120px 0; color: var(--white); background: var(--forest-deep); }
.cta-inner { max-width: 900px; margin-left: max(24px, calc((100vw - var(--shell)) / 2)); margin-right: 24px; }
.cta-inner h2 { margin-bottom: 38px; }
.site-footer { padding: 34px 0; color: rgb(255 255 255 / 62%); background: var(--forest-deep); border-top: 1px solid rgb(255 255 255 / 12%); font-size: 0.82rem; }
.footer-grid { display: grid; grid-template-columns: 1fr 1fr auto; gap: 28px; align-items: center; }
.footer-grid p { margin: 0; }
.brand-footer { color: var(--white); }

.contact-main { min-height: calc(100vh - 172px); background: var(--leaf); }
.contact-hero { padding: 100px 0 120px; background: var(--leaf); }
.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 100px; align-items: start; }
.contact-intro .eyebrow { color: var(--moss); }
.contact-intro h1 { color: var(--white); font-size: clamp(3rem, 5.5vw, 5.3rem); }
.contact-intro > p:not(.eyebrow) { max-width: 580px; margin: 30px 0; color: rgb(255 255 255 / 82%); font-size: 1.08rem; line-height: 1.75; }
.contact-email { display: inline-block; color: var(--white); font-weight: 750; text-underline-offset: 5px; }
.contact-note { display: grid; grid-template-columns: 36px 1fr; gap: 14px; max-width: 500px; margin-top: 42px; padding: 24px; color: var(--white); background: var(--forest); }
.contact-note span { color: var(--moss); font-size: 1.4rem; }
.contact-note p { margin: 0; color: rgb(255 255 255 / 78%); font-size: 0.92rem; }
.contact-note strong { color: var(--white); }
.contact-form { padding: 42px; background: var(--ivory); border: 1px solid #b7c8b5; border-top: 7px solid var(--forest); box-shadow: 0 24px 70px rgb(35 43 39 / 10%); }
.contact-form label { display: grid; gap: 8px; margin-bottom: 22px; color: var(--forest-deep); font-size: 0.82rem; font-weight: 750; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.contact-form input, .contact-form textarea { width: 100%; border: 1px solid #b7c8b5; border-radius: 0; background: var(--white); color: var(--ink); padding: 13px 14px; font-size: 1rem; outline: none; transition: border-color 150ms ease, box-shadow 150ms ease; }
.contact-form textarea { min-height: 150px; resize: vertical; }
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--forest); box-shadow: 0 0 0 3px rgb(11 61 46 / 10%); }
.contact-form [aria-invalid="true"] { border-color: #a13a2f; }
.form-status { min-height: 24px; margin: 14px 0 0; color: var(--forest); font-size: 0.88rem; }
.form-trap { position: absolute !important; left: -9999px !important; width: 1px !important; height: 1px !important; opacity: 0 !important; }
.site-footer-light { color: var(--muted); background: var(--white); border-top-color: var(--stone); }
.site-footer-light .brand-footer { color: var(--forest); }
.site-footer-light .brand-footer img { filter: none; }

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

@media (max-width: 900px) {
  .hero { min-height: auto; }
  .hero-grid, .section-heading, .approach-grid, .contact-grid { grid-template-columns: 1fr; }
  .hero-grid { gap: 38px; }
  .section-heading, .approach-grid, .contact-grid { gap: 36px; }
  .approach-intro { position: static; }
  .footer-grid { grid-template-columns: 1fr; }
  .contact-hero { padding-top: 74px; }
  .contact-hero { background: var(--leaf); }
}

@media (max-width: 720px) {
  .shell { width: min(calc(100% - 32px), var(--shell)); }
  .nav-wrap { height: 74px; }
  .brand { gap: 9px; font-size: 0.82rem; }
  .brand img { width: 50px; }
  .nav-toggle { display: block; }
  .site-nav { display: none; position: absolute; top: 74px; inset-inline: 0; flex-direction: column; align-items: stretch; gap: 0; padding: 16px; color: var(--white); background: var(--forest-deep); border-top: 1px solid rgb(255 255 255 / 12%); }
  .site-nav.is-open { display: flex; }
  .site-nav > a:not(.button) { padding: 15px 8px; }
  .site-nav .button { margin-top: 8px; }
  .hero { padding: 58px 0 76px; }
  .hero h1, .contact-intro h1 { font-size: clamp(3rem, 15vw, 4.5rem); }
  .hero-lede { margin: 25px 0 30px; font-size: 1rem; }
  .hero-actions { align-items: center; flex-direction: column; gap: 21px; }
  .hero-logo { width: min(480px, 92vw); }
  .problem-section, .approach-section, .cta-section { padding: 80px 0; }
  .section-heading { margin-bottom: 42px; }
  .problem-item { grid-template-columns: 44px 1fr; gap: 16px; }
  .steps > div { grid-template-columns: 1fr; gap: 6px; }
  .cta-inner { margin-inline: 16px; }
  .footer-grid { gap: 14px; }
  .contact-form { padding: 26px 20px; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
}

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