@font-face { font-family: "Archivo"; font-weight: 400; font-style: normal; font-display: swap;
src: url(/assets/fonts/archivo-400-latin.woff2) format("woff2"); }
@font-face { font-family: "Archivo"; font-weight: 600; font-style: normal; font-display: swap;
src: url(/assets/fonts/archivo-600-latin.woff2) format("woff2"); }
@font-face { font-family: "Archivo"; font-weight: 800; font-style: normal; font-display: swap;
src: url(/assets/fonts/archivo-800-latin.woff2) format("woff2"); }
:root {
--teal: #183D3D;
--teal-deep: #102a2a;
--sage: #5C8374;
--sage-pale: #93B1A6;
--sage-panel: #9db8ad;
--ink: #040D12;
--paper: #ffffff;
--line: #dde6e2;
--a11y-accent: var(--sage);
--a11y-accent-strong: var(--teal);
--a11y-accent-ink: #ffffff;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
margin: 0; font-family: "Archivo", "Helvetica Neue", Arial, sans-serif;
color: var(--ink); background: var(--paper);
font-size: 1.0625rem; line-height: 1.65;
-webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--sage); }
a:hover, a:focus-visible { color: var(--teal); }
.wrap { max-width: 1200px; margin: 0 auto; padding: 0 1.25rem; }
h1, h2, h3, h4 { font-weight: 800; line-height: 1.15; margin: 0 0 .6em; letter-spacing: -.01em; }
h1 { font-size: clamp(2rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: 1.25rem; }
.btn {
display: inline-block; background: var(--teal); color: #fff; text-decoration: none;
font-weight: 600; letter-spacing: .08em; text-transform: uppercase; font-size: .85rem;
padding: .9rem 1.6rem; border: 0; cursor: pointer; transition: background .18s ease;
}
.btn:hover, .btn:focus-visible { background: var(--sage); color: #fff; }
.btn--sage { background: var(--sage-pale); color: var(--teal-deep); }
.btn--sage:hover, .btn--sage:focus-visible { background: #fff; color: var(--teal); }
.site-header { background: #fff; border-bottom: 1px solid var(--line); position: relative; z-index: 20; }
.site-header .wrap { display: flex; align-items: center; gap: 1.5rem; padding-top: .8rem; padding-bottom: .8rem; }
.site-header .logo img { width: 120px; height: 85px; object-fit: contain; }
.site-nav { margin-left: auto; display: flex; align-items: center; gap: 1.25rem; flex-wrap: nowrap; }
.site-nav a {
color: var(--ink); text-decoration: none; font-weight: 600; font-size: .85rem;
letter-spacing: .06em; text-transform: uppercase; padding: .3rem 0;
border-bottom: 2px solid transparent; transition: color .15s ease, border-color .15s ease;
}
.site-nav a:hover, .site-nav a:focus-visible, .site-nav a[aria-current="page"] { color: var(--sage); border-color: var(--sage); }
.nav-toggle { display: none; margin-left: auto; background: none; border: 1px solid var(--line); padding: .55rem .7rem; cursor: pointer; min-width: 44px; min-height: 44px; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--teal); margin: 4px 0; }
@media (max-width: 880px) {
.nav-toggle { display: block; }
.site-nav {
display: none; position: absolute; top: 100%; left: 0; right: 0;
background: #fff; border-bottom: 1px solid var(--line);
flex-direction: column; align-items: flex-start; gap: 0; padding: .5rem 1.25rem 1rem;
}
.site-nav.open { display: flex; }
.site-nav a { padding: .7rem 0; width: 100%; }
}
.hero { position: relative; color: #fff; background: var(--teal); }
.hero__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(100deg, rgba(4,13,18,.72) 25%, rgba(4,13,18,.35)); }
.hero .wrap { position: relative; z-index: 2; padding-top: clamp(4rem, 10vw, 8rem); padding-bottom: clamp(4rem, 10vw, 8rem); }
.hero h1 { color: #fff; max-width: 22ch; }
.hero .sub { font-size: clamp(1.1rem, 2.2vw, 1.5rem); font-weight: 600; margin: 0 0 .5rem; }
.hero p { max-width: 60ch; }
.section { padding: clamp(2.5rem, 6vw, 4.5rem) 0; }
.section--teal { background: var(--teal); color: #fff; }
.section--teal h2, .section--teal h3 { color: #fff; }
.section--teal a { color: var(--sage-pale); }
.kicker { text-transform: uppercase; letter-spacing: .25em; font-size: .8rem; font-weight: 600; color: var(--sage-pale); text-align: center; margin: 0 0 .4rem; }
.section--teal .kicker { color: var(--sage-pale); }
.section h2.centered { text-align: center; }
.svc-grid { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 2rem; }
.svc-grid .cell { min-height: 300px; }
.svc-grid .cell--img img { width: 100%; height: 100%; object-fit: cover; }
.svc-grid .cell--txt { background: var(--sage-pale); color: var(--teal-deep); padding: 1.6rem; display: flex; flex-direction: column; gap: .8rem; justify-content: center; }
.svc-grid .cell--txt h3 { color: var(--teal); font-size: 1.35rem; }
.svc-grid .cell--txt .btn { align-self: flex-start; }
@media (max-width: 980px) { .svc-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .svc-grid { grid-template-columns: 1fr; } .svc-grid .cell--img { min-height: 220px; } }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; align-items: center; }
@media (max-width: 880px) { .split { grid-template-columns: 1fr; } }
.split img { width: 100%; object-fit: cover; }
.prose { max-width: 780px; margin: 0 auto; }
.prose img { margin: 1.5rem auto; }
.prose h2, .prose h3 { color: var(--teal); margin-top: 1.6em; }
.prose ul, .prose ol { padding-left: 1.4rem; }
.prose blockquote { border-left: 4px solid var(--sage-pale); margin: 1.5rem 0; padding: .5rem 0 .5rem 1.2rem; color: #33443f; }
.prose table { border-collapse: collapse; width: 100%; display: block; overflow-x: auto; }
.prose td, .prose th { border: 1px solid var(--line); padding: .55rem .8rem; text-align: left; }
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 2rem; }
@media (max-width: 980px) { .card-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .card-grid { grid-template-columns: 1fr; } }
.post-card { background: #fff; border: 1px solid var(--line); display: flex; flex-direction: column; transition: box-shadow .18s ease, transform .18s ease; }
.post-card:hover { box-shadow: 0 10px 28px rgba(4,13,18,.12); transform: translateY(-2px); }
.post-card__img { aspect-ratio: 3/2; object-fit: cover; width: 100%; background: var(--sage-pale); }
.post-card__body { padding: 1.1rem 1.2rem 1.3rem; display: flex; flex-direction: column; gap: .5rem; flex: 1; }
.post-card__cat { font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: var(--sage); font-weight: 600; }
.post-card__body h3 { font-size: 1.08rem; margin: 0; }
.post-card__body h3 a { color: var(--teal); text-decoration: none; }
.post-card__body h3 a:hover, .post-card__body h3 a:focus-visible { text-decoration: underline; }
.post-card__body p { margin: 0; font-size: .92rem; color: #33443f; flex: 1; }
.post-card__more { font-size: .85rem; font-weight: 600; color: var(--sage); text-decoration: none; }
.post-card__more:hover, .post-card__more:focus-visible { color: var(--teal); text-decoration: underline; }
.pagination { display: flex; justify-content: center; gap: 1rem; margin-top: 2.5rem; align-items: center; }
.pagination span { color: #55655f; }
.faq details { border: 1px solid var(--line); margin-bottom: .8rem; background: #fff; }
.faq summary { cursor: pointer; font-weight: 600; padding: 1rem 1.2rem; color: var(--teal); list-style: none; position: relative; padding-right: 3rem; min-height: 44px; }
.faq summary::after { content: "+"; position: absolute; right: 1.2rem; top: 50%; transform: translateY(-50%); font-size: 1.4rem; color: var(--sage); }
.faq details[open] summary::after { content: "\2013"; }
.faq details > div { padding: 0 1.2rem 1.2rem; }
.site-footer { background: var(--teal); color: #fff; }
.site-footer .cols { display: grid; grid-template-columns: 1.1fr .9fr 1.2fr; gap: 2.5rem; padding: clamp(2.5rem, 6vw, 4rem) 0; }
@media (max-width: 980px) { .site-footer .cols { grid-template-columns: 1fr; } }
.site-footer .logo img { width: 150px; }
.site-footer h3 { color: #fff; }
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer ul a { color: #dbe7e1; text-decoration: none; display: inline-block; padding: .3rem 0; }
.site-footer ul a:hover, .site-footer ul a:focus-visible { color: #fff; text-decoration: underline; }
.footer-form { background: var(--sage-panel); color: var(--teal-deep); padding: 1.8rem; }
.footer-form h3 { color: var(--teal); font-size: 1.5rem; }
.footer-form form { display: grid; gap: .8rem; }
.footer-form .row2 { display: grid; grid-template-columns: 1fr 1fr; gap: .8rem; }
@media (max-width: 560px) { .footer-form .row2 { grid-template-columns: 1fr; } }
.footer-form input, .footer-form textarea {
width: 100%; border: 0; padding: .85rem 1rem; font: inherit; font-size: .95rem; background: #fff; color: var(--ink);
}
.footer-form ::placeholder { color: rgba(4, 13, 18, 0.35); }
.footer-form textarea { min-height: 110px; resize: vertical; }
.footer-form .btn { width: 100%; }
.footer-form .form-note { font-size: .85rem; margin: 0; }
.copyright { border-top: 1px solid rgba(255,255,255,.15); padding: 1.2rem 0; font-size: .9rem; color: #cfdcd6; }
.copyright .wrap { display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.page-hero { background: var(--teal); color: #fff; padding: clamp(2rem, 5vw, 3.5rem) 0; }
.page-hero h1 { color: #fff; margin: 0; }
.page-hero p { color: #dbe7e1; max-width: 65ch; margin: .6rem 0 0; }
.center { text-align: center; }
.mt-2 { margin-top: 2rem; }
.skip-link { position: absolute; left: -9999px; top: 0; background: #fff; color: var(--teal); padding: .6rem 1rem; z-index: 100; }
.skip-link:focus { left: 0; }
@media (prefers-reduced-motion: reduce) {
*, *::before, *::after { transition: none !important; animation: none !important; }
html { scroll-behavior: 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; }
.site-nav .btn { padding: .75rem 1.15rem; border-bottom: 2px solid transparent; }
@media (max-width: 1080px) and (min-width: 881px) { .site-nav { gap: .9rem; } .site-nav a { font-size: .78rem; } }