@font-face {
	font-display: swap;
	font-family: "Recoleta";
	font-style: normal;
	font-weight: 900;
	src: url("../fonts/Recoleta-Black.ttf") format("truetype");
}

@font-face {
	font-display: swap;
	font-family: "Raleway";
	font-style: normal;
	font-weight: 600;
	src: url("../fonts/Raleway-SemiBold.ttf") format("truetype");
}

:root {
	--forest: #032e00;
	--rust: #bd611e;
	--ochre: #cc9900;
	--moss: #364c1e;
	--cream: #f6f0e4;
	--warm-white: #fdfbf6;
	--white: #fff;
	--ink: #183018;
	--muted: #526251;
	--line: rgba(3, 46, 0, .18);
	--light-line: rgba(255, 255, 255, .22);
	--error: #9b2c2c;
	--heading: "Recoleta", Georgia, serif;
	--body: "Raleway", "Avenir Next", Avenir, sans-serif;
	--content: 1240px;
	--gutter: clamp(20px, 4vw, 56px);
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	scroll-padding-top: 112px;
}

body {
	margin: 0;
	overflow-wrap: break-word;
	color: var(--ink);
	background: var(--warm-white);
	font-family: var(--body);
	font-size: 16px;
	font-weight: 600;
	line-height: 1.65;
}

body.menu-open {
	overflow: hidden;
}

img {
	display: block;
	max-width: 100%;
	height: auto;
}

a {
	color: var(--forest);
	text-underline-offset: 4px;
}

button,
input,
select,
textarea {
	font: inherit;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
	outline: 3px solid var(--ochre);
	outline-offset: 4px;
}

.skip-link {
	position: fixed;
	z-index: 1000;
	top: 10px;
	left: 10px;
	padding: 10px 16px;
	transform: translateY(-180%);
	color: var(--white);
	background: var(--forest);
}

.skip-link:focus {
	transform: none;
}

h1,
h2,
h3,
p {
	margin-top: 0;
}

h1,
h2,
h3 {
	font-family: var(--heading);
	font-weight: 900;
	letter-spacing: -.035em;
	line-height: 1.02;
}

h1,
h2 {
	text-wrap: balance;
}

.section-pad {
	padding: clamp(80px, 10vw, 150px) max(var(--gutter), calc((100vw - var(--content)) / 2));
}

.eyebrow {
	margin: 0 0 18px;
	color: var(--rust);
	font-size: .75rem;
	letter-spacing: .18em;
	line-height: 1.3;
	text-transform: uppercase;
}

.eyebrow--light {
	color: #f0bd55;
}

.button {
	display: inline-flex;
	min-height: 54px;
	align-items: center;
	justify-content: center;
	padding: 14px 24px;
	border: 2px solid var(--forest);
	border-radius: 0;
	color: var(--white);
	background: var(--forest);
	font-family: var(--body);
	font-size: .85rem;
	font-weight: 600;
	letter-spacing: .055em;
	line-height: 1;
	text-decoration: none;
	text-transform: uppercase;
	cursor: pointer;
	transition: background-color .2s ease, border-color .2s ease, color .2s ease, transform .2s ease;
}

.button:hover {
	border-color: var(--moss);
	background: var(--moss);
	transform: translateY(-2px);
}

.button--small {
	min-height: 46px;
	padding: 11px 19px;
	font-size: .74rem;
}

.button--cream {
	border-color: var(--cream);
	color: var(--forest);
	background: var(--cream);
}

.button--cream:hover {
	border-color: var(--white);
	color: var(--forest);
	background: var(--white);
}

.button--outline {
	border-color: var(--forest);
	color: var(--forest);
	background: transparent;
}

.button--outline:hover {
	color: var(--white);
	background: var(--forest);
}

.button--full {
	width: 100%;
	justify-content: space-between;
}

.text-link {
	font-size: .82rem;
	letter-spacing: .075em;
	text-decoration-thickness: 1px;
	text-transform: uppercase;
}

.text-link span {
	display: inline-block;
	margin-left: 8px;
	transition: transform .2s ease;
}

.text-link:hover span {
	transform: translateX(4px);
}

.text-link--light {
	color: var(--white);
}

.urgent-bar {
	position: relative;
	z-index: 20;
	color: rgba(255, 255, 255, .84);
	background: var(--forest);
	font-size: .7rem;
	letter-spacing: .035em;
}

.urgent-bar__inner {
	display: flex;
	max-width: var(--content);
	min-height: 35px;
	align-items: center;
	justify-content: flex-end;
	gap: 18px;
	margin: auto;
	padding: 6px var(--gutter);
}

.urgent-bar a {
	flex: 0 0 auto;
	color: var(--white);
	font-size: .68rem;
	letter-spacing: .1em;
	text-transform: uppercase;
}

.site-header {
	position: relative;
	z-index: 20;
	border-bottom: 1px solid var(--line);
	background: rgba(253, 251, 246, .98);
}

.site-header__inner {
	display: flex;
	max-width: var(--content);
	min-height: 90px;
	align-items: center;
	justify-content: space-between;
	gap: 40px;
	margin: auto;
	padding: 16px var(--gutter);
}

.brand {
	display: inline-flex;
	flex: 0 0 auto;
	align-items: center;
	text-decoration: none;
}

.brand__wordmark {
	width: clamp(150px, 17vw, 210px);
	height: auto;
}

.brand__logo {
	width: 68px;
	height: 68px;
	object-fit: contain;
}

.site-nav {
	display: flex;
	align-items: center;
	gap: clamp(22px, 3vw, 42px);
}

.site-nav__list,
.site-nav .menu {
	display: flex;
	align-items: center;
	gap: clamp(20px, 2.8vw, 38px);
	margin: 0;
	padding: 0;
	list-style: none;
}

.site-nav__list a,
.site-nav .menu a {
	position: relative;
	color: var(--forest);
	font-size: .75rem;
	letter-spacing: .07em;
	text-decoration: none;
	text-transform: uppercase;
}

.site-nav__list a::after,
.site-nav .menu a::after {
	position: absolute;
	right: 0;
	bottom: -8px;
	left: 0;
	height: 1px;
	transform: scaleX(0);
	transform-origin: right;
	background: var(--rust);
	content: "";
	transition: transform .2s ease;
}

.site-nav__list a:hover::after,
.site-nav .menu a:hover::after {
	transform: scaleX(1);
	transform-origin: left;
}

.menu-toggle {
	display: none;
	padding: 8px;
	border: 0;
	color: var(--forest);
	background: transparent;
	cursor: pointer;
}

.hero {
	position: relative;
	display: grid;
	min-height: min(800px, calc(100vh - 125px));
	align-items: end;
	overflow: hidden;
	color: var(--white);
	background: var(--forest);
	isolation: isolate;
}

.hero__image,
.hero__shade {
	position: absolute;
	z-index: -2;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hero__shade {
	z-index: -1;
	background:
		linear-gradient(90deg, rgba(3, 28, 0, .91) 0%, rgba(3, 34, 0, .7) 42%, rgba(3, 30, 0, .16) 76%),
		linear-gradient(0deg, rgba(3, 30, 0, .58), transparent 48%);
}

.hero__content {
	width: min(790px, 70vw);
	padding: clamp(76px, 10vw, 140px) 0 clamp(92px, 10vw, 138px) max(var(--gutter), calc((100vw - var(--content)) / 2));
}

.hero h1 {
	margin: 0;
	font-size: clamp(3.5rem, 7.4vw, 7.3rem);
	letter-spacing: -.055em;
	line-height: .91;
}

.hero__lead {
	max-width: 650px;
	margin: 30px 0 0;
	color: rgba(255, 255, 255, .9);
	font-size: clamp(1rem, 1.45vw, 1.22rem);
	line-height: 1.65;
}

.hero__actions {
	display: flex;
	align-items: center;
	gap: 30px;
	margin-top: 38px;
}

.hero__note {
	position: absolute;
	right: max(var(--gutter), calc((100vw - var(--content)) / 2));
	bottom: 38px;
	display: grid;
	width: min(310px, 28vw);
	grid-template-columns: auto 1fr;
	gap: 4px 14px;
	padding-top: 18px;
	border-top: 1px solid rgba(255, 255, 255, .5);
	color: rgba(255, 255, 255, .8);
	font-size: .76rem;
	line-height: 1.4;
}

.hero__note span {
	color: #f0bd55;
	letter-spacing: .13em;
	text-transform: uppercase;
}

.hero__note strong {
	color: var(--white);
	font-weight: 600;
}

.manifesto {
	display: grid;
	grid-template-columns: minmax(170px, .35fr) minmax(0, 1fr);
	gap: clamp(50px, 8vw, 130px);
	background: var(--cream);
}

.manifesto__aside {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.manifesto__aside img {
	width: 130px;
	opacity: .92;
}

.manifesto__copy h2 {
	max-width: 930px;
	margin-bottom: 38px;
	color: var(--forest);
	font-size: clamp(2.8rem, 5.6vw, 5.6rem);
}

.manifesto__copy > p {
	max-width: 780px;
	margin-left: auto;
	color: var(--muted);
	font-size: clamp(1rem, 1.4vw, 1.18rem);
}

.promise-row {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	margin-top: 66px;
	border-top: 1px solid var(--line);
}

.promise-row div {
	display: flex;
	flex-direction: column;
	gap: 7px;
	padding: 22px 22px 0 0;
}

.promise-row div + div {
	padding-left: 22px;
	border-left: 1px solid var(--line);
}

.promise-row strong {
	color: var(--rust);
	font-family: var(--heading);
	font-size: 1.65rem;
	letter-spacing: -.02em;
}

.promise-row span {
	color: var(--muted);
	font-size: .8rem;
}

.care {
	background: var(--warm-white);
}

.section-heading--split {
	display: grid;
	grid-template-columns: 1.45fr .55fr;
	align-items: end;
	gap: clamp(40px, 8vw, 120px);
	margin-bottom: clamp(50px, 7vw, 90px);
}

.section-heading h2,
.experience__heading h2,
.service-area h2,
.faq__heading h2 {
	margin: 0;
	color: var(--forest);
	font-size: clamp(2.8rem, 5.6vw, 5.6rem);
}

.section-heading > p {
	margin: 0 0 9px;
	color: var(--muted);
}

.care-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	border-top: 1px solid var(--line);
	border-left: 1px solid var(--line);
}

.care-card {
	min-height: 430px;
	padding: clamp(26px, 3.4vw, 46px);
	border-right: 1px solid var(--line);
	border-bottom: 1px solid var(--line);
	background: var(--warm-white);
	transition: background-color .25s ease, transform .25s ease;
}

.care-card:hover {
	position: relative;
	z-index: 1;
	background: var(--cream);
}

.care-card--featured {
	color: var(--white);
	background: var(--forest);
}

.care-card--featured:hover {
	background: var(--moss);
}

.care-card__number {
	display: inline-grid;
	width: 42px;
	height: 42px;
	place-items: center;
	border: 1px solid currentColor;
	border-radius: 50%;
	color: var(--rust);
	font-size: .7rem;
}

.care-card--featured .care-card__number {
	color: #f0bd55;
}

.care-card h3 {
	margin: 72px 0 18px;
	color: var(--forest);
	font-size: clamp(1.65rem, 2.2vw, 2.3rem);
}

.care-card--featured h3 {
	color: var(--white);
}

.care-card p {
	margin-bottom: 24px;
	color: var(--muted);
	font-size: .9rem;
}

.care-card--featured p,
.care-card--featured li {
	color: rgba(255, 255, 255, .78);
}

.care-card ul {
	margin: 0;
	padding: 0;
	color: var(--muted);
	font-size: .78rem;
	list-style: none;
}

.care-card li {
	position: relative;
	padding: 7px 0 7px 18px;
	border-top: 1px solid var(--line);
}

.care-card--featured li {
	border-color: var(--light-line);
}

.care-card li::before {
	position: absolute;
top: 14px;
	left: 2px;
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background: var(--rust);
	content: "";
}

.care-card--featured li::before {
	background: var(--ochre);
}

.scope-note {
	margin: 24px 0 0;
	color: var(--muted);
	font-size: .76rem;
}

.animals {
	display: grid;
	grid-template-columns: .72fr 1.28fr;
	gap: clamp(60px, 10vw, 150px);
	color: var(--white);
	background: var(--forest);
}

.animals__intro {
	position: sticky;
	top: 42px;
	align-self: start;
}

.animals__intro h2 {
	margin-bottom: 30px;
	font-size: clamp(2.8rem, 5.5vw, 5.5rem);
}

.animals__intro > p:last-child {
	max-width: 500px;
	color: rgba(255, 255, 255, .68);
}

.species-list article {
	position: relative;
	padding: 30px 0 34px 68px;
	border-top: 1px solid var(--light-line);
}

.species-list article:last-child {
	border-bottom: 1px solid var(--light-line);
}

.species-list span {
	position: absolute;
	top: 40px;
	left: 0;
	color: #f0bd55;
	font-size: .7rem;
}

.species-list h3 {
	margin-bottom: 10px;
	color: var(--white);
	font-size: clamp(2rem, 3.7vw, 3.8rem);
}

.species-list p {
	max-width: 610px;
	margin: 0;
	color: rgba(255, 255, 255, .67);
	font-size: .9rem;
}

.experience {
	display: grid;
	grid-template-columns: .76fr 1.24fr;
	gap: clamp(60px, 11vw, 170px);
	background: var(--cream);
}

.experience__heading {
	align-self: start;
}

.steps {
	margin: 0;
	padding: 0;
	list-style: none;
	counter-reset: visit-steps;
}

.steps li {
	display: grid;
	grid-template-columns: 55px 1fr;
	gap: 24px;
	padding: 31px 0;
	border-top: 1px solid var(--line);
}

.steps li:last-child {
	border-bottom: 1px solid var(--line);
}

.steps > li > span {
	color: var(--rust);
	font-size: .72rem;
	letter-spacing: .08em;
}

.steps h3 {
	margin: 0 0 10px;
	color: var(--forest);
	font-size: clamp(1.5rem, 2.2vw, 2.15rem);
}

.steps p {
	max-width: 560px;
	margin: 0;
	color: var(--muted);
	font-size: .88rem;
}

.about {
	position: relative;
	display: grid;
	grid-template-columns: .62fr 1.38fr;
	gap: clamp(60px, 11vw, 170px);
	overflow: hidden;
	color: var(--white);
	background: var(--rust);
}

.about::before {
	position: absolute;
	top: -50%;
	left: 25%;
	width: 540px;
	height: 860px;
	transform: rotate(20deg);
	border: 1px solid rgba(255, 255, 255, .11);
	border-radius: 50%;
	content: "";
}

.about__mark,
.about__copy {
	position: relative;
}

.about__mark {
	display: grid;
	align-items: center;
	justify-items: center;
}

.about__mark img {
	width: min(390px, 100%);
}

.about__copy h2 {
	margin: 0 0 36px;
	color: var(--white);
	font-size: clamp(3rem, 6.2vw, 6.4rem);
}

.about__copy p:not(.eyebrow) {
	max-width: 720px;
	color: rgba(255, 255, 255, .82);
}

.about__copy .text-link {
	display: inline-block;
	margin-top: 25px;
}

.service-area {
	display: grid;
	grid-template-columns: 1.2fr .8fr;
	align-items: end;
	gap: clamp(60px, 10vw, 140px);
	background: var(--warm-white);
}

.service-area > div:last-child {
	padding-bottom: 8px;
}

.service-area > div:last-child p {
	color: var(--muted);
}

.service-area .button {
	margin-top: 16px;
}

.faq {
	display: grid;
	grid-template-columns: .68fr 1.32fr;
	gap: clamp(60px, 11vw, 160px);
	background: var(--cream);
}

.faq__heading {
	align-self: start;
}

.faq__heading > p:last-child {
	max-width: 370px;
	margin-top: 25px;
	color: var(--muted);
}

.faq__list details {
	border-top: 1px solid var(--line);
}

.faq__list details:last-child {
	border-bottom: 1px solid var(--line);
}

.faq__list summary {
	position: relative;
	padding: 27px 54px 27px 0;
	color: var(--forest);
	font-family: var(--heading);
	font-size: clamp(1.25rem, 2vw, 1.75rem);
	letter-spacing: -.02em;
	line-height: 1.25;
	list-style: none;
	cursor: pointer;
}

.faq__list summary::-webkit-details-marker {
	display: none;
}

.faq__list summary span,
.faq__list summary span::after {
	position: absolute;
	top: 50%;
	right: 4px;
	width: 18px;
	height: 2px;
	background: var(--rust);
	content: "";
	transition: transform .2s ease;
}

.faq__list summary span::after {
	top: 0;
	right: 0;
	transform: rotate(90deg);
}

.faq__list details[open] summary span::after {
	transform: rotate(0);
}

.faq__list details p {
	max-width: 680px;
	padding: 0 50px 28px 0;
	color: var(--muted);
	font-size: .9rem;
}

.contact {
	display: grid;
	grid-template-columns: .72fr 1.28fr;
	gap: clamp(60px, 10vw, 150px);
	color: var(--white);
	background: var(--forest);
}

.contact__intro {
	align-self: start;
}

.contact__intro h2 {
	margin: 0 0 30px;
	color: var(--white);
	font-size: clamp(3.2rem, 6.2vw, 6.2rem);
}

.contact__intro > p:not(.eyebrow, .urgent-note) {
	color: rgba(255, 255, 255, .72);
}

.contact-card {
	margin-top: 45px;
	padding: 25px 0;
	border-top: 1px solid var(--light-line);
	border-bottom: 1px solid var(--light-line);
}

.contact-card p {
	display: grid;
	grid-template-columns: 82px 1fr;
	gap: 15px;
	margin: 8px 0;
	color: rgba(255, 255, 255, .82);
	font-size: .82rem;
}

.contact-card span {
	color: #f0bd55;
	letter-spacing: .09em;
	text-transform: uppercase;
}

.contact-card a {
	color: var(--white);
}

.urgent-note {
	margin-top: 28px;
	padding-left: 18px;
	border-left: 2px solid var(--ochre);
	color: rgba(255, 255, 255, .7);
	font-size: .76rem;
}

.urgent-note strong {
	color: var(--white);
}

.contact-form {
	min-width: 0;
	padding: clamp(28px, 4vw, 56px);
	color: var(--ink);
	background: var(--warm-white);
	box-shadow: 0 30px 90px rgba(0, 0, 0, .18);
}

.form-section + .form-section {
	margin-top: 36px;
	padding-top: 36px;
	border-top: 1px solid var(--line);
}

.form-section__title {
	display: flex;
	align-items: center;
	gap: 11px;
	margin-bottom: 23px;
	color: var(--forest);
	font-family: var(--heading);
	font-size: 1.35rem;
}

.form-section__title span {
	display: inline-grid;
	width: 30px;
	height: 30px;
	place-items: center;
	border: 1px solid var(--rust);
	border-radius: 50%;
	color: var(--rust);
	font-family: var(--body);
	font-size: .67rem;
}

.field-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 18px;
}

.field {
	min-width: 0;
	margin-bottom: 20px;
}

.field label,
.sms-consent legend {
	display: block;
	margin-bottom: 7px;
	color: var(--forest);
	font-size: .74rem;
	letter-spacing: .04em;
}

.field label span {
	color: var(--rust);
}

.field input,
.field select,
.field textarea {
	width: 100%;
	padding: 12px 2px;
	border: 0;
	border-bottom: 1px solid #8b998a;
	border-radius: 0;
	color: var(--ink);
	background: transparent;
	font-size: .9rem;
	transition: border-color .2s ease;
}

.field select {
	min-height: 50px;
}

.field textarea {
	min-height: 125px;
	resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
	border-color: var(--rust);
	outline-offset: 2px;
}

.field input[aria-invalid="true"],
.field select[aria-invalid="true"],
.field textarea[aria-invalid="true"] {
	border-color: var(--error);
}

.field-error {
	display: block;
	min-height: 1.2em;
	margin-top: 5px;
	color: var(--error);
	font-size: .68rem;
}

.hp {
	position: absolute !important;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(1px, 1px, 1px, 1px);
}

.sms-consent {
	margin: 34px 0 26px;
	padding: 20px;
	border: 1px solid var(--line);
	background: var(--cream);
}

.sms-consent legend {
	padding: 0 6px;
}

.checkbox {
	display: grid;
	grid-template-columns: 22px minmax(0, 1fr);
	gap: 11px;
	align-items: start;
	color: var(--muted);
	font-size: .72rem;
}

.checkbox input {
	width: 19px;
	height: 19px;
	margin: 2px 0 0;
	accent-color: var(--forest);
}

.fine-print {
	margin: 10px 0 0 33px;
	color: var(--muted);
	font-size: .67rem;
}

.form-disclaimer {
	margin: 14px 0 0;
	color: var(--muted);
	font-size: .66rem;
	text-align: center;
}

.notice {
	margin-bottom: 28px;
	padding: 13px 15px;
	border-left: 4px solid;
	font-size: .82rem;
}

.notice--success {
	border-color: var(--moss);
	background: #edf5e9;
}

.notice--error {
	border-color: var(--error);
	background: #fff0ef;
}

.site-footer {
	padding: clamp(62px, 8vw, 105px) max(var(--gutter), calc((100vw - var(--content)) / 2)) 30px;
	color: rgba(255, 255, 255, .7);
	background: #021f00;
	font-size: .76rem;
}

.site-footer__top {
	display: grid;
	grid-template-columns: 1.6fr .7fr .9fr;
	gap: clamp(45px, 8vw, 115px);
	padding-bottom: 75px;
}

.footer-brand img {
	width: 190px;
	margin-bottom: 25px;
}

.footer-brand p {
	max-width: 410px;
}

.footer-label {
	margin-bottom: 20px;
	color: #f0bd55;
	font-size: .68rem;
	letter-spacing: .14em;
	text-transform: uppercase;
}

.footer-links {
	margin: 0;
	padding: 0;
	list-style: none;
}

.footer-links li {
	margin: 0 0 10px;
}

.footer-links a {
	color: var(--white);
}

.site-footer__bottom {
	display: flex;
	justify-content: space-between;
	gap: 30px;
	padding-top: 23px;
	border-top: 1px solid var(--light-line);
	font-size: .68rem;
}

.site-footer__bottom p {
	margin: 0;
}

.site-footer__bottom div {
	display: flex;
	gap: 22px;
}

.site-footer__bottom a {
	color: rgba(255, 255, 255, .72);
}

.legal-wrap {
	min-height: 65vh;
	padding: clamp(70px, 9vw, 130px) var(--gutter);
	background: var(--cream);
}

.legal-card {
	max-width: 880px;
	margin: auto;
	padding: clamp(28px, 6vw, 72px);
	border-top: 5px solid var(--rust);
	background: var(--white);
	box-shadow: 0 24px 70px rgba(3, 46, 0, .1);
}

.legal-card h1,
.journal__header h1 {
	margin: 0;
	color: var(--forest);
	font-size: clamp(3rem, 6vw, 6rem);
}

.legal-content {
	margin-top: 45px;
}

.legal-content h2 {
	margin: 38px 0 12px;
	color: var(--forest);
	font-size: clamp(1.5rem, 2.4vw, 2.2rem);
}

.legal-content p,
.legal-content li {
	color: var(--muted);
}

.article-image {
	margin: 42px 0;
}

.journal {
	min-height: 70vh;
}

.journal__header {
	margin-bottom: 70px;
}

.journal__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 45px 25px;
}

.post-card img {
	aspect-ratio: 4 / 3;
	object-fit: cover;
}

.post-card__date {
	margin: 19px 0 7px;
	color: var(--rust);
	font-size: .68rem;
	letter-spacing: .09em;
	text-transform: uppercase;
}

.post-card h2 {
	font-size: 2rem;
}

.post-card h2 a {
	text-decoration: none;
}

.post-card p {
	color: var(--muted);
	font-size: .86rem;
}

.page-hero {
	padding: clamp(95px, 12vw, 175px) max(var(--gutter), calc((100vw - var(--content)) / 2));
}

.page-hero h1 {
	max-width: 1100px;
	margin: 0;
	font-size: clamp(3.7rem, 8vw, 8rem);
	letter-spacing: -.055em;
	line-height: .92;
}

.page-hero > p:last-child {
	max-width: 690px;
	margin: 35px 0 0 auto;
	font-size: clamp(1rem, 1.4vw, 1.18rem);
}

.page-hero--forest {
	color: var(--white);
	background: var(--forest);
}

.page-hero--rust {
	color: var(--white);
	background: var(--rust);
}

.page-hero--cream {
	color: var(--forest);
	background: var(--cream);
}

.page-hero--forest > p:last-child,
.page-hero--rust > p:last-child {
	color: rgba(255, 255, 255, .74);
}

.care--page {
	padding-top: clamp(85px, 10vw, 145px);
}

.animals--page .animals__intro {
	top: 120px;
}

.about--page {
	background: var(--rust);
}

.faq--page {
	background: var(--warm-white);
}

.contact--page {
	padding-top: clamp(85px, 10vw, 140px);
}

.pathways {
	background: var(--warm-white);
}

.pathway-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
}

.pathway-card {
	display: flex;
	min-height: 470px;
	flex-direction: column;
	justify-content: space-between;
	padding: clamp(28px, 3.5vw, 46px);
	color: var(--white);
	text-decoration: none;
	transition: transform .25s ease, filter .25s ease;
}

.pathway-card:hover {
	position: relative;
	z-index: 1;
	transform: translateY(-8px);
	filter: brightness(1.05);
}

.pathway-card > span {
	font-size: .7rem;
	letter-spacing: .12em;
}

.pathway-card p {
	margin-bottom: 13px;
	font-size: .7rem;
	letter-spacing: .12em;
	text-transform: uppercase;
}

.pathway-card h3 {
	margin: 0;
	color: inherit;
	font-size: clamp(2rem, 3vw, 3.25rem);
}

.pathway-card i {
	font-family: var(--body);
	font-size: 1.45rem;
	font-style: normal;
	transition: transform .2s ease;
}

.pathway-card:hover i {
	transform: translateX(8px);
}

.pathway-card--forest {
	background: var(--forest);
}

.pathway-card--rust {
	background: var(--rust);
}

.pathway-card--cream {
	color: var(--forest);
	background: var(--cream);
}

.home-visit,
.fit-callout {
	display: grid;
	grid-template-columns: 1.2fr .8fr;
	align-items: end;
	gap: clamp(60px, 10vw, 140px);
	background: var(--cream);
}

.home-visit h2,
.fit-callout h2 {
	margin: 0;
	color: var(--forest);
	font-size: clamp(3rem, 5.8vw, 5.8rem);
}

.home-visit__copy p,
.fit-callout > div:last-child p {
	color: var(--muted);
}

.home-visit__copy .button,
.fit-callout .button {
	margin-top: 18px;
}

.fit-callout {
	background: var(--warm-white);
}

.cta-banner {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	align-items: center;
	gap: clamp(35px, 7vw, 100px);
	padding-top: clamp(52px, 7vw, 86px);
	padding-bottom: clamp(52px, 7vw, 86px);
	color: var(--white);
	background: var(--rust);
}

.cta-banner h2 {
	margin-bottom: 16px;
	color: var(--white);
	font-size: clamp(2.6rem, 4.5vw, 4.5rem);
}

.cta-banner p:last-child {
	max-width: 620px;
	margin: 0;
	color: rgba(255, 255, 255, .75);
}

.page-cta {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	align-items: center;
	column-gap: clamp(35px, 7vw, 100px);
	padding: clamp(44px, 6vw, 68px) max(var(--gutter), calc((100vw - var(--content)) / 2));
	color: var(--white);
	background: var(--rust);
	text-align: left;
}

.page-cta .eyebrow {
	grid-column: 1;
}

.page-cta h2 {
	grid-column: 1;
	max-width: 760px;
	margin: 0;
	font-size: clamp(2.25rem, 4vw, 4rem);
}

.page-cta .button {
	grid-column: 2;
	grid-row: 1 / span 2;
}

.values {
	background: var(--warm-white);
}

.value-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	border-top: 1px solid var(--line);
	border-left: 1px solid var(--line);
}

.value-grid article {
	min-height: 300px;
	padding: clamp(28px, 4vw, 52px);
	border-right: 1px solid var(--line);
	border-bottom: 1px solid var(--line);
}

.value-grid span {
	color: var(--rust);
	font-size: .7rem;
}

.value-grid h3 {
	margin: 70px 0 14px;
	color: var(--forest);
	font-size: clamp(1.7rem, 2.6vw, 2.7rem);
}

.value-grid p {
	max-width: 520px;
	margin: 0;
	color: var(--muted);
	font-size: .88rem;
}

@media (max-width: 1000px) {
	.site-nav {
		gap: 22px;
	}

	.site-nav__list,
	.site-nav .menu {
		gap: 18px;
	}

	.hero__content {
		width: 78vw;
	}

	.care-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.animals,
	.experience,
	.about,
	.faq,
	.contact {
		gap: 65px;
	}

	.pathway-card {
		min-height: 410px;
	}

	.cta-banner .button {
		grid-column: 2;
	}
}

@media (max-width: 820px) {
	html {
		scroll-padding-top: 70px;
	}

	.urgent-bar__inner {
		justify-content: center;
	}

	.urgent-bar__inner span {
		display: none;
	}

	.site-header__inner {
		min-height: 74px;
	}

	.brand__wordmark {
		width: 165px;
	}

	.menu-toggle {
		display: flex;
		align-items: center;
		gap: 12px;
	}

	.menu-toggle__label {
		font-size: .7rem;
		letter-spacing: .11em;
		text-transform: uppercase;
	}

	.menu-toggle__icon {
		position: relative;
		width: 25px;
		height: 17px;
	}

	.menu-toggle__icon i {
		position: absolute;
		right: 0;
		width: 25px;
		height: 2px;
		background: currentColor;
		transition: transform .2s ease, top .2s ease;
	}

	.menu-toggle__icon i:first-child {
		top: 3px;
	}

	.menu-toggle__icon i:last-child {
		top: 12px;
	}

	.menu-toggle[aria-expanded="true"] .menu-toggle__icon i:first-child {
		top: 8px;
		transform: rotate(45deg);
	}

	.menu-toggle[aria-expanded="true"] .menu-toggle__icon i:last-child {
		top: 8px;
		transform: rotate(-45deg);
	}

	.site-nav {
		position: fixed;
		top: 109px;
		right: 0;
		bottom: 0;
		left: 0;
		display: none;
		align-items: stretch;
		flex-direction: column;
		gap: 28px;
		padding: 44px var(--gutter);
		background: var(--warm-white);
	}

	.site-nav.is-open {
		display: flex;
	}

	.site-nav__list,
	.site-nav .menu {
		align-items: stretch;
		flex-direction: column;
		gap: 0;
	}

	.site-nav__list li,
	.site-nav .menu li {
		border-bottom: 1px solid var(--line);
	}

	.site-nav__list a,
	.site-nav .menu a {
		display: block;
		padding: 15px 0;
		font-family: var(--heading);
		font-size: 1.8rem;
		letter-spacing: -.02em;
		text-transform: none;
	}

	.site-nav .button {
		align-self: stretch;
	}

	.hero {
		min-height: 700px;
	}

	.hero__shade {
		background:
			linear-gradient(90deg, rgba(3, 28, 0, .9), rgba(3, 32, 0, .38)),
			linear-gradient(0deg, rgba(3, 30, 0, .78), transparent 70%);
	}

	.hero__content {
		width: 100%;
		padding-right: var(--gutter);
	}

	.hero__note {
		display: none;
	}

	.manifesto,
	.section-heading--split,
	.animals,
	.experience,
	.about,
	.service-area,
	.faq,
	.contact,
	.home-visit,
	.fit-callout {
		grid-template-columns: 1fr;
	}

	.page-hero > p:last-child {
		margin-left: 0;
	}

	.pathway-grid {
		grid-template-columns: 1fr;
	}

	.pathway-card {
		min-height: 330px;
	}

	.manifesto__aside {
		display: block;
	}

	.manifesto__aside img {
		display: none;
	}

	.manifesto__copy > p {
		margin-left: 0;
	}

	.animals__intro {
		position: static;
	}

	.about__mark {
		display: none;
	}

	.contact__intro {
		max-width: 650px;
	}

	.site-footer__top {
		grid-template-columns: 1.3fr 1fr 1fr;
		gap: 40px;
	}

	.journal__grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 600px) {
	:root {
		--gutter: 20px;
	}

	body {
		font-size: 15px;
	}

	.section-pad {
		padding-top: 78px;
		padding-bottom: 78px;
	}

	.hero {
		min-height: calc(100svh - 109px);
	}

	.hero__image {
		object-position: 61% center;
	}

	.hero__shade {
		background:
			linear-gradient(90deg, rgba(3, 28, 0, .84), rgba(3, 30, 0, .35)),
			linear-gradient(0deg, rgba(3, 30, 0, .86), rgba(3, 30, 0, .08) 80%);
	}

	.hero__content {
		padding-top: 80px;
		padding-bottom: 64px;
	}

	.hero h1 {
		font-size: clamp(3.15rem, 15.7vw, 5.2rem);
	}

	.page-hero {
		padding-top: 78px;
		padding-bottom: 86px;
	}

	.page-hero h1 {
		font-size: clamp(3.2rem, 14.5vw, 5.3rem);
	}

	.hero__lead {
		margin-top: 22px;
		font-size: .95rem;
	}

	.hero__actions {
		align-items: stretch;
		flex-direction: column;
		gap: 19px;
		margin-top: 30px;
	}

	.hero__actions .text-link {
		align-self: flex-start;
	}

	.manifesto,
	.animals,
	.experience,
	.about,
	.faq,
	.contact {
		gap: 42px;
	}

	.pathway-card {
		min-height: 300px;
	}

	.cta-banner {
		grid-template-columns: 1fr;
		justify-items: start;
	}

	.cta-banner .button {
		grid-column: auto;
	}

	.value-grid {
		grid-template-columns: 1fr;
	}

	.page-cta {
		grid-template-columns: 1fr;
		justify-items: start;
		row-gap: 24px;
	}

	.page-cta .button {
		grid-column: 1;
		grid-row: auto;
	}

	.promise-row {
		grid-template-columns: 1fr;
		margin-top: 42px;
	}

	.promise-row div,
	.promise-row div + div {
		padding: 18px 0;
		border-right: 0;
		border-bottom: 1px solid var(--line);
		border-left: 0;
	}

	.care-grid {
		grid-template-columns: 1fr;
	}

	.care-card {
		min-height: 0;
	}

	.care-card h3 {
		margin-top: 45px;
	}

	.species-list article {
		padding-left: 42px;
	}

	.steps li {
		grid-template-columns: 40px 1fr;
		gap: 12px;
	}

	.field-row {
		grid-template-columns: 1fr;
		gap: 0;
	}

	.contact-form {
		margin-right: calc(var(--gutter) * -1);
		margin-left: calc(var(--gutter) * -1);
		padding: 28px 20px;
	}

	.checkbox {
		font-size: .7rem;
	}

	.fine-print {
		margin-left: 0;
	}

	.site-footer__top {
		grid-template-columns: 1fr;
		padding-bottom: 50px;
	}

	.site-footer__bottom {
		align-items: flex-start;
		flex-direction: column;
	}

	.site-footer__bottom div {
		flex-wrap: wrap;
	}

	.journal__grid {
		grid-template-columns: 1fr;
	}
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	*,
	*::before,
	*::after {
		scroll-behavior: auto !important;
		transition-duration: .01ms !important;
		animation-duration: .01ms !important;
		animation-iteration-count: 1 !important;
	}
}
