:root {
  --ink: #10201c;
  --ink-soft: #40514c;
  --cream: #f5f3ee;
  --paper: #fffefa;
  --line: #d8ddd5;
  --green: #1d6b55;
  --lime: #dff267;
  --coral: #ff8b6d;
  --radius: 1.25rem;
  --shadow: 0 18px 50px rgba(16, 32, 28, .10);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--paper); color: var(--ink); font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; font-size: 16px; line-height: 1.55; }
body:has(.chat-panel:not([hidden])) { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }
img { max-width: 100%; }

.container { width: min(1180px, calc(100% - 48px)); margin: 0 auto; }
.narrow { width: min(820px, calc(100% - 48px)); }
.section { padding: clamp(4.5rem, 9vw, 8.5rem) 0; }
.section-muted { background: var(--cream); }
.eyebrow { margin: 0 0 1.25rem; color: var(--green); font-size: .72rem; font-weight: 800; letter-spacing: .14em; line-height: 1.2; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { font-weight: 680; letter-spacing: -.045em; line-height: 1.04; }
h1 { max-width: 850px; margin-bottom: 1.5rem; font-size: clamp(3rem, 7vw, 6.55rem); }
h2 { margin-bottom: 1.35rem; font-size: clamp(2.15rem, 4.5vw, 4.45rem); }
h3 { font-size: clamp(1.35rem, 2vw, 1.75rem); }
.lead { max-width: 620px; color: var(--ink-soft); font-size: clamp(1.1rem, 1.6vw, 1.3rem); line-height: 1.6; }
.body-large { color: var(--ink-soft); font-size: 1.17rem; line-height: 1.65; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; }
.skip-link { position: fixed; z-index: 100; top: -4rem; left: 1rem; padding: .75rem 1rem; border-radius: 0 0 .5rem .5rem; background: var(--lime); color: var(--ink); font-weight: 700; }
.skip-link:focus { top: 0; }

.site-header { position: sticky; z-index: 20; top: 0; border-bottom: 1px solid transparent; background: rgba(255, 254, 250, .86); backdrop-filter: blur(14px); transition: border-color .2s, box-shadow .2s; }
.site-header.is-scrolled { border-bottom-color: var(--line); box-shadow: 0 5px 24px rgba(16, 32, 28, .04); }
.navigation { display: flex; align-items: center; justify-content: space-between; min-height: 76px; gap: 2rem; }
.brand { display: inline-flex; align-items: center; gap: .7rem; color: var(--ink); font-size: 1.03rem; font-weight: 800; letter-spacing: -.035em; white-space: nowrap; }
.brand-mark { position: relative; display: inline-block; width: 24px; height: 24px; border-radius: 50%; background: var(--green); overflow: hidden; }
.brand-mark i { position: absolute; display: block; width: 17px; height: 17px; border-radius: 50%; background: var(--lime); }
.brand-mark i:first-child { top: -4px; left: -4px; }.brand-mark i:last-child { right: -4px; bottom: -4px; background: var(--coral); }
.primary-nav { display: flex; align-items: center; gap: 1.9rem; font-size: .92rem; font-weight: 650; }
.primary-nav > a:not(.button) { position: relative; color: var(--ink-soft); }.primary-nav > a:not(.button)::after { position: absolute; right: 0; bottom: -.42rem; left: 0; height: 2px; background: var(--green); content: ""; transform: scaleX(0); transform-origin: left; transition: transform .2s; }.primary-nav > a:hover::after, .primary-nav > a[aria-current="page"]::after { transform: scaleX(1); }.primary-nav > a[aria-current="page"] { color: var(--ink); }
.nav-toggle { display: none; width: 44px; height: 44px; border: 0; background: transparent; }.nav-toggle span:not(.sr-only) { display: block; width: 21px; height: 2px; margin: 5px auto; background: var(--ink); transition: transform .2s; }

.button { display: inline-flex; align-items: center; justify-content: center; gap: .8rem; min-height: 52px; padding: .8rem 1.22rem; border: 1px solid var(--ink); border-radius: 99px; background: var(--ink); color: var(--paper); font-size: .91rem; font-weight: 750; line-height: 1; transition: transform .2s, background .2s, color .2s; }
.button:hover { background: var(--green); border-color: var(--green); transform: translateY(-2px); }.button span { font-size: 1.15em; }.button-small { min-height: 40px; padding: .65rem .95rem; font-size: .84rem; }.button-light { background: var(--lime); border-color: var(--lime); color: var(--ink); }.button-light:hover { background: var(--paper); border-color: var(--paper); color: var(--ink); }
.text-link { display: inline-flex; align-items: center; gap: .55rem; padding-bottom: .15rem; border-bottom: 1px solid currentColor; font-weight: 730; }.text-link:hover { color: var(--green); }

.hero { position: relative; min-height: min(790px, calc(100svh - 76px)); overflow: hidden; background: var(--paper); }.hero::before { position: absolute; z-index: 0; top: 13%; left: 0; width: 29%; height: 1px; background: var(--line); content: ""; }.hero-grid { position: relative; display: grid; grid-template-columns: 1.03fr .97fr; align-items: center; min-height: inherit; gap: 3rem; padding-top: clamp(4rem, 9vw, 8rem); padding-bottom: clamp(4rem, 8vw, 7rem); }.hero-copy { position: relative; z-index: 2; }.hero-copy h1 { max-width: 780px; }.hero-actions { display: flex; align-items: center; gap: 1.45rem; margin-top: 2.25rem; }
.hero-art { position: relative; min-height: 490px; overflow: hidden; border-radius: 50% 50% 2rem 2rem; background: #d1dfd5; isolation: isolate; }.hero-shape { position: absolute; z-index: -1; border-radius: 50%; }.shape-a { top: -12%; right: -21%; width: 500px; height: 500px; background: var(--lime); }.shape-b { bottom: -17%; left: -20%; width: 420px; height: 420px; background: var(--coral); }.shape-c { top: 26%; left: 20%; width: 210px; height: 210px; background: var(--green); }.orbit { position: absolute; z-index: -1; border: 1px solid rgba(16, 32, 28, .2); border-radius: 50%; }.orbit-one { top: 10%; left: 7%; width: 330px; height: 330px; }.orbit-two { right: 0; bottom: 6%; width: 265px; height: 265px; }
.hero-card { position: absolute; width: min(72%, 295px); padding: 1.4rem; border: 1px solid rgba(255,255,255,.75); border-radius: 1rem; background: rgba(255,254,250,.82); box-shadow: var(--shadow); backdrop-filter: blur(12px); }.hero-card span { display: block; margin-bottom: .8rem; color: var(--green); font-size: .64rem; font-weight: 800; letter-spacing: .14em; }.hero-card strong { display: block; font-size: 1.18rem; letter-spacing: -.04em; line-height: 1.2; }.card-top { top: 20%; right: 9%; }.card-bottom { bottom: 13%; left: 7%; }

.statement-grid { display: grid; grid-template-columns: 1fr 2fr; gap: 4rem; }.statement-grid h2 { max-width: 760px; }.statement-grid em { color: var(--green); font-family: Georgia, serif; font-weight: 400; }.statement-grid .body-large { max-width: 620px; }
.section-intro { display: flex; align-items: end; justify-content: space-between; gap: 2rem; margin-bottom: 3.3rem; }.section-intro h2 { margin-bottom: 0; }.service-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.2rem; }.service-card { min-height: 430px; padding: 1.8rem; border: 1px solid var(--line); border-radius: var(--radius); background: var(--paper); transition: transform .25s, box-shadow .25s; }.service-card:hover { box-shadow: var(--shadow); transform: translateY(-5px); }.service-card-head { display: flex; justify-content: space-between; margin-bottom: 3.7rem; color: var(--green); font-size: .76rem; font-weight: 800; letter-spacing: .12em; }.service-arrow { width: 34px; height: 34px; border-radius: 50%; background: var(--lime); color: var(--ink); font-size: 1rem; line-height: 34px; text-align: center; }.service-card h3 { margin-bottom: .45rem; }.service-short { margin-bottom: 1.25rem; font-weight: 720; }.service-card > p:not(.service-short) { max-width: 480px; color: var(--ink-soft); }.service-card ul, .service-detail-listing ul { margin: 1.25rem 0 0; padding: 0; list-style: none; color: var(--ink-soft); font-size: .9rem; }.service-card li, .service-detail-listing li { padding: .35rem 0 .35rem 1.1rem; border-top: 1px solid var(--line); }.service-card li::before, .service-detail-listing li::before { margin-left: -1.1rem; margin-right: .6rem; color: var(--green); content: "↗"; }

.process-intro > p { max-width: 360px; margin: 0; color: var(--ink-soft); }.process-list { margin: 1rem 0 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }.process-list li { display: grid; grid-template-columns: 16% 31% 1fr; gap: 1.5rem; align-items: baseline; padding: 1.45rem 0; border-bottom: 1px solid var(--line); }.process-list li > span { color: var(--green); font-size: .75rem; font-weight: 800; letter-spacing: .1em; }.process-list h3 { margin: 0; font-size: 1.45rem; }.process-list p { max-width: 430px; margin: 0; color: var(--ink-soft); }.process-list li > div { display: contents; }
.cta-band { padding: clamp(3.2rem, 6vw, 5.5rem) 0; background: var(--green); color: var(--paper); }.cta-band .eyebrow { color: var(--lime); }.cta-band h2 { margin: 0; font-size: clamp(2rem, 4vw, 3.6rem); }.cta-band-inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; }

.page-hero { padding: clamp(5rem, 11vw, 9rem) 0 clamp(4rem, 8vw, 6rem); }.page-hero-dark { background: var(--ink); color: var(--paper); }.page-hero-dark .eyebrow { color: var(--lime); }.page-hero-dark .lead { color: #c7d0ca; }.service-detail-list { display: grid; gap: 0; }.service-detail { display: grid; grid-template-columns: 12% 1.4fr 1fr; gap: 2.5rem; padding: clamp(3rem, 6vw, 5rem) 0; border-top: 1px solid var(--line); }.service-detail:last-child { border-bottom: 1px solid var(--line); }.service-detail-number { color: var(--green); font-size: .77rem; font-weight: 800; letter-spacing: .12em; }.service-detail h2 { font-size: clamp(2rem, 3.6vw, 3.5rem); }.service-detail-listing { align-self: end; padding-bottom: .5rem; }.service-detail-listing > p { margin-bottom: .75rem; font-size: .75rem; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }.split-content { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(3rem, 10vw, 9rem); }.split-content > div:last-child { max-width: 520px; color: var(--ink-soft); }.split-content .text-link { margin-top: 1rem; color: var(--ink); }

.story-grid { display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; gap: clamp(3rem, 9vw, 9rem); }.story-visual { position: relative; display: grid; min-height: 460px; place-items: center; overflow: hidden; border-radius: 1.4rem; background: var(--ink); color: var(--paper); font-weight: 800; letter-spacing: -.04em; }.story-visual span { position: relative; z-index: 2; font-size: clamp(1.3rem, 3vw, 2rem); }.story-visual i { position: absolute; border-radius: 50%; }.story-visual i:nth-of-type(1) { top: -16%; right: -10%; width: 280px; height: 280px; background: var(--lime); }.story-visual i:nth-of-type(2) { bottom: -19%; left: -14%; width: 260px; height: 260px; background: var(--coral); }.story-visual i:nth-of-type(3) { top: 25%; left: 9%; width: 130px; height: 130px; border: 1px solid var(--paper); }.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }.values-grid article { padding: 1.5rem; border-radius: 1rem; background: var(--paper); }.values-grid span { color: var(--green); font-size: .75rem; font-weight: 800; letter-spacing: .12em; }.values-grid h3 { margin: 3.5rem 0 .8rem; }.values-grid p { margin: 0; color: var(--ink-soft); }

.contact-hero { padding: clamp(4.5rem, 9vw, 8rem) 0; background: var(--cream); }.contact-grid { display: grid; grid-template-columns: .86fr 1.14fr; gap: clamp(3rem, 8vw, 8rem); }.contact-grid h1 { font-size: clamp(3rem, 6vw, 5.5rem); }.contact-direct { display: grid; gap: .35rem; margin-top: 3rem; }.contact-direct a { color: var(--green); font-weight: 740; }.contact-direct p { margin: .7rem 0 0; color: var(--ink-soft); white-space: normal; }.contact-form { padding: clamp(1.25rem, 3vw, 2rem); border: 1px solid var(--line); border-radius: var(--radius); background: var(--paper); box-shadow: 0 18px 50px rgba(16,32,28,.06); }.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }.field { margin-bottom: 1.1rem; }.field label, .checkbox { display: block; margin-bottom: .45rem; font-size: .83rem; font-weight: 740; }.field label span, .checkbox b { color: var(--green); }.field input, .field textarea, .field select { width: 100%; border: 1px solid #bfc7bf; border-radius: .55rem; background: var(--paper); color: var(--ink); outline: none; padding: .78rem .85rem; transition: border-color .2s, box-shadow .2s; }.field textarea { resize: vertical; }.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--green); box-shadow: 0 0 0 3px rgba(29, 107, 85, .13); }.checkbox { display: flex; align-items: start; gap: .65rem; margin: .35rem 0 1.3rem; color: var(--ink-soft); font-weight: 500; }.checkbox input { width: 17px; height: 17px; margin-top: .1rem; accent-color: var(--green); }.checkbox a { color: var(--green); text-decoration: underline; }.honeypot { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }.form-status { min-height: 1.4rem; margin: .8rem 0 0; color: var(--green); font-size: .9rem; font-weight: 650; }.form-status.is-error { color: #b13722; }.contact-form .button[disabled] { cursor: wait; opacity: .65; }

.legal-page { padding-top: clamp(4.5rem, 9vw, 8rem); }.legal-content { max-width: 780px; }.legal-content h1 { margin-bottom: 2.5rem; }.legal-content h2 { margin-top: 2.5rem; font-size: 1.45rem; letter-spacing: -.035em; }.legal-content p { color: var(--ink-soft); }.legal-callout { margin-bottom: 2.5rem; padding: 1.2rem 1.35rem; border-left: 3px solid var(--coral); border-radius: 0 .65rem .65rem 0; background: #fff0eb; }.legal-callout p { margin: .5rem 0 0; }.not-found { display: grid; min-height: calc(100svh - 76px); place-items: center; padding: 5rem 0; text-align: center; }.not-found .narrow { display: grid; place-items: center; }.not-found-code { margin: 0; color: var(--lime); font-size: clamp(6rem, 17vw, 13rem); font-weight: 800; letter-spacing: -.1em; line-height: .8; text-shadow: 2px 2px var(--ink); }.not-found h1 { margin-top: .8rem; font-size: clamp(2.7rem, 7vw, 5rem); }.not-found .lead { margin-bottom: 2rem; }

.site-footer { padding: 4.5rem 0 1.3rem; background: var(--ink); color: #e4e9e5; }.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 2rem; padding-bottom: 3rem; }.brand-light { color: var(--paper); }.footer-brand p { max-width: 340px; margin: 1.25rem 0 0; color: #a9b7ae; }.footer-top > div:not(.footer-brand) { display: grid; align-content: start; gap: .45rem; }.footer-top a { width: fit-content; color: #e4e9e5; }.footer-top a:hover { color: var(--lime); }.footer-label { margin-bottom: .65rem; color: var(--lime); font-size: .68rem; font-weight: 800; letter-spacing: .13em; }.footer-bottom { display: flex; justify-content: space-between; gap: 1rem; padding-top: 1.35rem; border-top: 1px solid #31433c; color: #a9b7ae; font-size: .8rem; }.footer-bottom span:last-child { display: flex; gap: 1.2rem; }.footer-bottom a:hover { color: var(--paper); }

.chat-widget { position: fixed; z-index: 40; right: max(18px, calc((100vw - 1180px) / 2)); bottom: 18px; }.chat-launcher { display: inline-flex; align-items: center; gap: .6rem; min-height: 46px; border: 0; border-radius: 99px; padding: .65rem 1rem; background: var(--ink); box-shadow: 0 8px 30px rgba(16,32,28,.22); color: var(--paper); font-size: .82rem; font-weight: 750; }.chat-launcher:hover { background: var(--green); }.chat-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 0 4px rgba(223, 242, 103, .15); }.chat-panel { position: absolute; right: 0; bottom: 58px; display: flex; width: min(370px, calc(100vw - 36px)); height: min(540px, calc(100svh - 110px)); flex-direction: column; overflow: hidden; border: 1px solid var(--line); border-radius: 1rem; background: var(--paper); box-shadow: 0 25px 60px rgba(16,32,28,.22); }.chat-panel-head { display: flex; align-items: start; justify-content: space-between; padding: 1rem 1rem .9rem; border-bottom: 1px solid var(--line); background: var(--cream); }.chat-panel-head .eyebrow { margin-bottom: .27rem; font-size: .61rem; }.chat-panel-head strong { display: block; letter-spacing: -.02em; }.icon-button { width: 30px; height: 30px; border: 0; border-radius: 50%; background: transparent; color: var(--ink); font-size: 1.5rem; line-height: 1; }.icon-button:hover { background: #e5e9e4; }.chat-messages { display: flex; flex: 1; flex-direction: column; gap: .65rem; overflow-y: auto; padding: 1rem; }.chat-message { max-width: 88%; margin: 0; padding: .72rem .85rem; border-radius: .7rem; font-size: .86rem; line-height: 1.45; white-space: pre-wrap; }.chat-message.assistant { align-self: flex-start; border-bottom-left-radius: .12rem; background: var(--cream); }.chat-message.user { align-self: flex-end; border-bottom-right-radius: .12rem; background: var(--green); color: white; }.chat-message.loading { color: var(--ink-soft); font-style: italic; }.chat-form { display: flex; gap: .5rem; padding: .75rem; border-top: 1px solid var(--line); }.chat-form input { min-width: 0; flex: 1; border: 1px solid var(--line); border-radius: .55rem; padding: .65rem .7rem; outline: none; }.chat-form input:focus { border-color: var(--green); }.chat-form button { width: 38px; border: 0; border-radius: .55rem; background: var(--lime); color: var(--ink); font-size: 1.2rem; font-weight: 800; }.chat-form button:disabled { opacity: .55; }

.admin-body { background: var(--cream); }.admin-wrap { width: min(1100px, calc(100% - 48px)); margin: 0 auto; padding: 3rem 0 5rem; }.admin-top { display: flex; align-items: end; justify-content: space-between; gap: 2rem; margin-bottom: 2rem; }.admin-top h1 { margin: 0; font-size: clamp(2.2rem, 5vw, 4.2rem); }.request-card { display: grid; grid-template-columns: 1fr auto; gap: 2rem; margin: 1rem 0; padding: 1.35rem; border: 1px solid var(--line); border-radius: .9rem; background: var(--paper); }.request-card h2 { margin-bottom: .25rem; font-size: 1.35rem; }.request-meta { margin-bottom: .55rem; color: var(--green); font-size: .73rem; font-weight: 800; letter-spacing: .08em; }.request-card p:not(.request-meta) { margin-bottom: .6rem; color: var(--ink-soft); }.request-card a { color: var(--green); text-decoration: underline; }.request-message { max-width: 680px; margin-top: 1rem !important; }.request-card form { display: grid; align-content: start; gap: .6rem; min-width: 145px; }.request-card label { font-size: .78rem; font-weight: 750; }.request-card select { display: block; width: 100%; margin-top: .35rem; padding: .45rem; border: 1px solid var(--line); border-radius: .4rem; }.empty-state { padding: 2rem; border: 1px dashed #aeb9b1; border-radius: .8rem; color: var(--ink-soft); text-align: center; }

@media (max-width: 820px) {
  .navigation { min-height: 66px; }.nav-toggle { display: block; }.nav-toggle[aria-expanded="true"] span:nth-of-type(2) { transform: translateY(3.5px) rotate(45deg); }.nav-toggle[aria-expanded="true"] span:nth-of-type(3) { transform: translateY(-3.5px) rotate(-45deg); }.primary-nav { position: absolute; top: 66px; right: 0; left: 0; display: none; align-items: stretch; flex-direction: column; gap: 0; padding: .7rem 24px 1.3rem; border-bottom: 1px solid var(--line); background: var(--paper); box-shadow: 0 12px 20px rgba(16,32,28,.07); }.primary-nav.is-open { display: flex; }.primary-nav > a:not(.button) { padding: .85rem 0; }.primary-nav > a:not(.button)::after { display: none; }.primary-nav .button { margin-top: .7rem; }.hero { min-height: auto; }.hero-grid, .contact-grid, .story-grid, .split-content { grid-template-columns: 1fr; }.hero-grid { gap: 2.5rem; }.hero-art { min-height: 370px; }.hero-copy h1 { font-size: clamp(3rem, 12vw, 5.5rem); }.statement-grid { grid-template-columns: 1fr; gap: 1rem; }.section-intro { align-items: start; flex-direction: column; }.process-list li { grid-template-columns: 18% 1fr; gap: .7rem; }.process-list li > div { display: block; }.process-list p { margin-top: .6rem; }.service-detail { grid-template-columns: 12% 1fr; gap: 1.4rem; }.service-detail-listing { grid-column: 2; }.values-grid { grid-template-columns: 1fr; }.values-grid h3 { margin-top: 2.2rem; }.footer-top { grid-template-columns: 1.5fr 1fr; }.footer-brand { grid-column: span 2; }.request-card { grid-template-columns: 1fr; }.request-card form { grid-template-columns: 1fr 1fr; align-items: end; }.request-card form label { grid-row: span 1; }
}
@media (max-width: 560px) {
  .container, .narrow { width: min(100% - 32px, 1180px); }.hero-grid { padding-top: 3.8rem; }.hero-art { min-height: 340px; border-radius: 2.3rem 2.3rem 1.1rem 1.1rem; }.hero-card { padding: 1rem; }.card-top { top: 12%; right: 5%; }.card-bottom { bottom: 9%; left: 5%; }.service-grid, .form-row { grid-template-columns: 1fr; }.service-card { min-height: 0; }.service-card-head { margin-bottom: 2.5rem; }.cta-band-inner { align-items: start; flex-direction: column; }.page-hero { padding-top: 4.6rem; }.service-detail { grid-template-columns: 1fr; gap: 1.1rem; }.service-detail-listing { grid-column: auto; }.story-visual { min-height: 330px; }.footer-top { grid-template-columns: 1fr 1fr; }.footer-brand { grid-column: span 2; }.footer-bottom { align-items: start; flex-direction: column; }.contact-form { padding: 1.1rem; }.chat-widget { right: 12px; bottom: 12px; }.chat-launcher { min-height: 42px; }.chat-panel { bottom: 53px; }.admin-wrap { width: calc(100% - 32px); }.admin-top { align-items: start; flex-direction: column; gap: .5rem; }.request-card form { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) { *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; } }
