:root {
	--ahh-forest: #1f4d3a;
	--ahh-forest-deep: #163a2b;
	--ahh-leaf: #567d5b;
	--ahh-ink: #1c2823;
	--ahh-clay: #b85c38;
	--ahh-sand: #f7f1e6;
	--ahh-surface: #ffffff;
	--ahh-alt: #efe9de;
	--ahh-border: #c9c5bb;
	--ahh-focus: #005fcc;
	--ahh-shadow-1: 0 1px 2px rgb(28 40 35 / 10%);
	--ahh-shadow-2: 0 14px 38px rgb(28 40 35 / 12%);
	--ahh-gutter: clamp(1.25rem, 3vw, 3rem);
	--ahh-content-max: 1240px;
	--ahh-inner-max: 1152px;
	--ahh-reading-max: 720px;
	--ahh-motion-fast: 160ms;
	--ahh-motion-standard: 220ms;
	--ahh-motion-slow: 320ms;
	--ahh-motion-ease: cubic-bezier(.2, .7, .2, 1);
}

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

body {
	min-width: 320px;
	background: var(--ahh-sand);
	color: var(--ahh-ink);
}

.site-main {
	max-width: none !important;
	margin-block-start: 0 !important;
	padding: 0 !important;
}

.site-main > .wp-block-post-content {
	max-width: none;
	margin: 0;
}

.site-main > .ahh-hero,
.site-main > .ahh-section,
.site-main > .ahh-callout {
	width: 100% !important;
	max-width: none !important;
	margin-right: 0 !important;
	margin-left: 0 !important;
}

.site-header {
	position: relative;
	z-index: auto;
	margin: 0;
	padding: 0 !important;
	background: var(--ahh-surface);
	border-bottom: 1px solid var(--ahh-border);
}

header.wp-block-template-part {
	position: sticky;
	top: 0;
	z-index: 1000;
	margin-block-start: 0 !important;
}

footer.wp-block-template-part {
	margin-block-start: 0 !important;
}

body.admin-bar header.wp-block-template-part { top: 32px; }

@media screen and (max-width: 782px) {
	body.admin-bar header.wp-block-template-part { top: 46px; }
}

@media screen and (max-width: 600px) {
	body.admin-bar header.wp-block-template-part { top: 0; }
}

.site-header > .wp-block-group {
	box-sizing: border-box;
	width: 100%;
	max-width: var(--ahh-content-max) !important;
	margin-right: auto;
	margin-left: auto;
	min-height: 5.5rem;
	padding-right: var(--ahh-gutter) !important;
	padding-left: var(--ahh-gutter) !important;
}

.site-header .ahh-contact-strip {
	width: 100vw;
	max-width: none !important;
	min-height: 2.75rem;
	margin-right: calc(50% - 50vw);
	margin-left: calc(50% - 50vw);
	padding: 0.45rem max(var(--ahh-gutter), calc((100vw - var(--ahh-content-max)) / 2 + var(--ahh-gutter)));
	font-size: 1rem;
}

.ahh-contact-strip a,
.site-footer .wp-block-navigation a { color: inherit; }

.site-footer .ahh-footer-logo {
	width: min(13.75rem, 100%);
	margin-bottom: var(--wp--preset--spacing--20);
	line-height: 0;
}

.site-footer .ahh-footer-logo img {
	display: block;
	width: 100%;
	height: auto;
}

.site-header .wp-block-site-logo {
	width: clamp(10.75rem, 40vw, 13.75rem);
	max-width: 100%;
	flex: 0 1 clamp(10.75rem, 40vw, 13.75rem);
	line-height: 0;
}

.site-header .wp-block-site-logo img {
	display: block;
	width: 100%;
	height: auto;
}

.site-header .wp-block-navigation-item__content {
	display: flex;
	min-height: 44px;
	align-items: center;
	color: var(--ahh-ink);
	font-size: 1rem;
	font-weight: 700;
	text-decoration: none;
}

.site-header .wp-block-navigation-item.current-menu-item > .wp-block-navigation-item__content,
.site-header .wp-block-navigation-item__content[aria-current="page"] {
	color: var(--ahh-forest);
	text-decoration: underline;
	text-decoration-thickness: 2px;
	text-underline-offset: 0.42rem;
}

.wp-block-button__link,
.wp-block-search__button {
	display: inline-flex;
	min-height: 48px;
	align-items: center;
	justify-content: center;
	border-radius: 10px;
	font-weight: 700;
	text-align: center;
	transition:
		transform var(--ahh-motion-fast) var(--ahh-motion-ease),
		box-shadow var(--ahh-motion-fast) var(--ahh-motion-ease),
		background-color var(--ahh-motion-fast) var(--ahh-motion-ease),
		color var(--ahh-motion-fast) var(--ahh-motion-ease);
}

.wp-block-button__link:hover,
.wp-block-search__button:hover {
	box-shadow: var(--ahh-shadow-1);
	transform: translateY(-1px);
}

.wp-block-button__link:active,
.wp-block-search__button:active {
	transform: translateY(0) scale(.985);
}

.site-main a:not(.wp-block-button__link) {
	text-decoration-color: currentColor;
	text-decoration-thickness: 1px;
	text-underline-offset: 0.2em;
	transition:
		color var(--ahh-motion-fast) var(--ahh-motion-ease),
		text-decoration-color var(--ahh-motion-fast) var(--ahh-motion-ease),
		text-decoration-thickness var(--ahh-motion-fast) var(--ahh-motion-ease);
}

.site-main a:not(.wp-block-button__link):hover,
.site-main a:not(.wp-block-button__link):focus-visible {
	text-decoration-thickness: 2px;
}

.is-style-quiet .wp-block-button__link {
	background: transparent !important;
	border: 1px solid currentColor;
	color: var(--ahh-forest);
}

.ahh-page {
	width: 100vw;
	max-width: none;
	margin-left: calc(50% - 50vw);
	overflow: clip;
}

.ahh-section,
.ahh-hero,
.ahh-callout {
	margin-block-start: 0 !important;
	padding: clamp(3rem, 6vw, 5rem) var(--ahh-gutter);
}

.ahh-section--surface { background: var(--ahh-surface); }

.ahh-section--alt { background: var(--ahh-alt); }

.ahh-section > *,
.ahh-hero > *,
.ahh-callout > * {
	box-sizing: border-box;
	width: min(100%, var(--ahh-inner-max)) !important;
	max-width: var(--ahh-inner-max) !important;
	margin-right: auto;
	margin-left: auto;
}

.ahh-reading {
	max-width: var(--ahh-reading-max) !important;
}

.ahh-eyebrow {
	margin: 0 0 0.55rem;
	color: var(--ahh-forest);
	font-size: 1rem;
	font-weight: 700;
	letter-spacing: 0.085em;
	text-transform: uppercase;
}

.has-deep-leaf-background-color .ahh-eyebrow,
.has-forest-background-color .ahh-eyebrow,
.ahh-callout .ahh-eyebrow { color: var(--ahh-surface); }

.ahh-hero {
	padding-top: clamp(3.5rem, 7vw, 6rem);
	padding-bottom: clamp(3.5rem, 7vw, 6rem);
	background: linear-gradient(115deg, #f7f1e6 0%, #f7f1e6 58%, #efe9de 100%);
}

.ahh-hero .wp-block-columns,
.ahh-media-split.wp-block-columns {
	gap: clamp(2rem, 4vw, 4rem);
	align-items: center;
}

.ahh-hero > .wp-block-columns {
	display: flex !important;
	width: 100% !important;
	max-width: var(--ahh-inner-max) !important;
}

.ahh-hero .wp-block-column { min-width: 0; }

.ahh-hero h1,
.ahh-page h1,
.ahh-page h2,
.ahh-page h3 {
	font-family: Georgia, "Times New Roman", serif;
	color: inherit;
}

.ahh-hero h1 {
	max-width: 15ch;
	margin-top: 0;
	margin-bottom: 1.2rem;
	font-size: clamp(2.8rem, 4.75vw, 4.3rem) !important;
	line-height: 1.08;
	overflow-wrap: normal;
	word-break: normal;
	hyphens: none;
	text-wrap: balance;
}

.ahh-page h2 {
	margin-top: 0;
	font-size: clamp(2.35rem, 4vw, 3.65rem) !important;
	line-height: 1.13;
	text-wrap: balance;
}

.ahh-page h3 {
	margin-top: 0;
	font-size: clamp(1.55rem, 2vw, 2.2rem) !important;
	line-height: 1.18;
	text-wrap: balance;
}

.ahh-card h2,
.ahh-action-card h2,
.ahh-contact-card h2 {
	margin-top: 0;
	font-size: clamp(1.55rem, 2vw, 2.2rem) !important;
	line-height: 1.18;
}

.ahh-breadcrumbs {
	width: min(100%, var(--ahh-content-max));
	margin: 0 auto;
	padding: 1rem var(--ahh-gutter) 0;
	font-size: 1rem;
}

.ahh-breadcrumbs ol {
	display: flex;
	flex-wrap: wrap;
	gap: 0.4rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.ahh-breadcrumbs li:not(:last-child)::after {
	margin-left: 0.4rem;
	color: var(--ahh-leaf);
	content: "/";
}

.ahh-breadcrumbs a {
	color: var(--ahh-forest);
	font-weight: 700;
}

.ahh-breadcrumbs [aria-current="page"] {
	color: var(--ahh-ink);
}

.ahh-hero p:not(.ahh-eyebrow),
.ahh-section > .wp-block-group > p,
.ahh-section > p {
	max-width: 62ch;
}

.ahh-page p:not(.ahh-eyebrow) { max-width: 68ch; }

.ahh-hero-media,
.ahh-media-frame {
	margin: 0;
	overflow: hidden;
	border: 1px solid rgb(31 77 58 / 16%);
	border-radius: 24px;
	box-shadow: var(--ahh-shadow-2);
}

.ahh-hero-media img {
	display: block;
	width: 100%;
	aspect-ratio: 16 / 9;
	object-fit: cover;
}

.ahh-media-frame img {
	display: block;
	width: 100%;
	aspect-ratio: 3 / 2;
	object-fit: cover;
}

.ahh-action-grid,
.ahh-card-grid,
.ahh-steps,
.ahh-gallery-grid,
.ahh-contact-grid {
	display: grid !important;
	grid-template-columns: 1fr;
	gap: 1rem;
}


.ahh-action-card,
.ahh-card,
.ahh-step,
.ahh-contact-card {
	display: flex;
	min-height: 100%;
	flex-direction: column;
	align-items: flex-start;
	padding: clamp(1.35rem, 2vw, 1.75rem);
	background: var(--ahh-surface);
	border: 1px solid var(--ahh-border);
	border-radius: 16px;
	box-shadow: var(--ahh-shadow-1);
}

.ahh-action-card .wp-block-button,
.ahh-card .wp-block-button,
.ahh-contact-card .wp-block-button { margin-top: auto; }

.ahh-card-grid .ahh-card,
.ahh-action-grid .ahh-action-card { gap: 0.25rem; }

.ahh-article-shell,
.ahh-search-shell {
	width: min(100%, 760px) !important;
	max-width: 760px !important;
	margin-right: auto;
	margin-left: auto;
}

.ahh-article-hero {
	padding-top: clamp(3.25rem, 7vw, 6rem);
	padding-bottom: clamp(3.25rem, 7vw, 6rem);
}

.ahh-article-hero h1 {
	max-width: 18ch;
}

.ahh-article-image {
	margin-bottom: clamp(1.5rem, 4vw, 2.5rem);
	overflow: hidden;
	border-radius: 18px;
}

.ahh-article-image img {
	width: 100%;
	aspect-ratio: 16 / 9;
	object-fit: cover;
}

.ahh-listing-template .wp-block-post-template,
.ahh-search-template .wp-block-post-template {
	margin: 0;
	padding: 0;
}

.ahh-listing-template .ahh-card,
.ahh-search-template .ahh-card {
	list-style: none;
}

.ahh-listing-template .wp-block-query-pagination,
.ahh-search-template .wp-block-query-pagination {
	margin-top: 2.5rem;
}

.ahh-search-shell {
	margin-bottom: 2rem;
}

.ahh-search-shell .wp-block-search {
	margin-bottom: 1.5rem;
}

@media (hover: hover) and (pointer: fine) {
	.ahh-action-card,
	.ahh-card,
	.ahh-contact-card,
	.ahh-gallery-grid figure {
		transition:
			transform var(--ahh-motion-standard) var(--ahh-motion-ease),
			box-shadow var(--ahh-motion-standard) var(--ahh-motion-ease),
			border-color var(--ahh-motion-standard) var(--ahh-motion-ease);
	}

	.ahh-action-card:hover,
	.ahh-card:hover,
	.ahh-contact-card:hover,
	.ahh-gallery-grid figure:hover {
		border-color: rgb(31 77 58 / 32%);
		box-shadow: var(--ahh-shadow-2);
		transform: translateY(-2px);
	}

	.ahh-gallery-grid img {
		transition: transform var(--ahh-motion-slow) var(--ahh-motion-ease);
	}

	.ahh-gallery-grid figure:hover img { transform: scale(1.018); }
}

.ahh-number {
	display: grid;
	width: 2.75rem;
	height: 2.75rem;
	place-items: center;
	margin-bottom: 1rem;
	background: var(--ahh-clay);
	border-radius: 50%;
	color: var(--ahh-surface);
	font-weight: 700;
}

.ahh-value-card {
	padding: 1.5rem;
	background: var(--ahh-forest);
	border-radius: 16px;
	color: var(--ahh-surface);
}

.ahh-value-card h3 { color: var(--ahh-surface); }

.ahh-callout {
	background: var(--ahh-forest);
	color: var(--ahh-surface);
}

.ahh-callout h2,
.ahh-callout h3,
.ahh-callout a:not(.wp-block-button__link) { color: var(--ahh-surface); }

.ahh-callout .is-style-quiet .wp-block-button__link {
	border-color: var(--ahh-surface);
	color: var(--ahh-surface);
}

.ahh-callout .wp-block-button__link:not(.has-background) {
	background: var(--ahh-surface);
	color: var(--ahh-forest);
}

.ahh-gallery-grid figure {
	margin: 0;
	overflow: hidden;
	border-radius: 16px;
	background: var(--ahh-surface);
	box-shadow: var(--ahh-shadow-1);
}

.ahh-gallery-grid img {
	display: block;
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
}

.ahh-news-template .wp-block-post-featured-image,
.ahh-news-template .wp-block-post-featured-image img {
	width: 100%;
	margin: 0;
	border-radius: 10px;
	object-fit: cover;
}

.ahh-news-template .wp-block-post-title { margin-bottom: 0.3rem; }

.ahh-faq {
	border-top: 1px solid var(--ahh-border);
}

.ahh-faq details {
	padding: 0.3rem 0;
	border-bottom: 1px solid var(--ahh-border);
}

.ahh-faq summary {
	display: flex;
	min-height: 48px;
	align-items: center;
	gap: 1rem;
	font-weight: 700;
	cursor: pointer;
}

.ahh-faq summary::marker,
.ahh-faq summary::-webkit-details-marker { display: none; }

.ahh-faq summary::after {
	content: '+';
	display: grid;
	width: 1.5rem;
	height: 1.5rem;
	flex: 0 0 auto;
	place-items: center;
	margin-left: auto;
	border: 1px solid currentColor;
	border-radius: 50%;
	font-size: 1.25rem;
	font-weight: 400;
	line-height: 1;
	transition: transform var(--ahh-motion-standard) var(--ahh-motion-ease);
}

.ahh-faq details[open] summary::after { transform: rotate(45deg); }

.ahh-faq p { max-width: 68ch; }

.ahh-empty-state {
	padding: 1.5rem;
	background: var(--ahh-alt);
	border-left: 4px solid var(--ahh-leaf);
	border-radius: 0 10px 10px 0;
}

.ahh-empty-state > p { max-width: 68ch; }

.ahh-form-shell {
	width: min(100%, 720px) !important;
	max-width: 720px !important;
	margin-top: 2rem;
	padding: clamp(1.25rem, 3vw, 2rem);
	background: var(--ahh-surface);
	border: 1px solid var(--ahh-border);
	border-radius: 16px;
	box-shadow: var(--ahh-shadow-1);
}

.ahh-enquiry-form {
	display: grid;
	gap: 1.25rem;
}

.ahh-enquiry-form p { margin: 0; }

.ahh-enquiry-form label:not(.ahh-consent-label) {
	display: block;
	margin-bottom: 0.4rem;
	font-weight: 700;
}

.ahh-enquiry-form input:not([type="hidden"]):not([type="checkbox"]),
.ahh-enquiry-form textarea {
	box-sizing: border-box;
	width: 100%;
	min-height: 48px;
	padding: 0.7rem 0.8rem;
	background: var(--ahh-surface);
	border: 1px solid #626b65;
	border-radius: 10px;
	color: var(--ahh-ink);
	font: inherit;
}

.ahh-enquiry-form textarea {
	min-height: 9rem;
	resize: vertical;
}

.ahh-consent-label {
	display: flex;
	min-height: 48px;
	align-items: flex-start;
	gap: 0.75rem;
	cursor: pointer;
}

.ahh-consent-label input {
	width: 24px;
	height: 24px;
	flex: 0 0 24px;
	margin: 0.05rem 0 0;
	accent-color: var(--ahh-forest);
}

.ahh-enquiry-form button {
	display: inline-flex;
	min-height: 48px;
	align-items: center;
	justify-content: center;
	padding: 0.7rem 1.15rem;
	background: var(--ahh-forest);
	border: 2px solid var(--ahh-forest);
	border-radius: 10px;
	color: var(--ahh-surface);
	font: inherit;
	font-weight: 700;
	cursor: pointer;
}

.ahh-enquiry-form [aria-invalid="true"] {
	border-color: #a61b1b !important;
	box-shadow: 0 0 0 1px #a61b1b;
}

.ahh-field-error {
	display: block;
	margin-top: 0.4rem;
	color: #8a1515;
	font-weight: 700;
}

.ahh-form-notice {
	padding: 1rem;
	border: 2px solid var(--ahh-forest);
	border-radius: 10px;
	background: #eef6f1;
}

.ahh-form-notice--error {
	border-color: #a61b1b;
	background: #fff2f2;
}

.ahh-form-notice a { color: var(--ahh-forest-deep); }

.ahh-honeypot {
	position: absolute !important;
	left: -10000px !important;
	width: 1px !important;
	height: 1px !important;
	overflow: hidden !important;
	opacity: 0 !important;
	pointer-events: none !important;
}

.wp-block-search__inside-wrapper { gap: 0.5rem; }

.wp-block-search__input {
	min-height: 48px;
	padding: 0.65rem 0.75rem;
	background: var(--ahh-surface);
	border: 1px solid #727a74;
	border-radius: 10px;
	color: var(--ahh-ink);
}

.site-footer {
	margin-top: 0 !important;
	background: var(--ahh-ink);
}

.site-footer a {
	display: inline-flex;
	min-height: 24px;
	align-items: center;
	color: var(--ahh-surface) !important;
}

.site-footer .has-small-font-size { font-size: 1rem !important; }

.site-footer .wp-block-column { min-width: 0; }

.site-footer > .wp-block-columns {
	width: min(100%, var(--ahh-inner-max)) !important;
	max-width: var(--ahh-inner-max) !important;
	margin-right: auto;
	margin-left: auto;
}

/*
 * Progressive reveals are deliberately limited to hero/support media and the
 * first small card group on a page. Their resting state is always visible;
 * the one-time keyframes only run after IntersectionObserver confirms entry.
 */
.ahh-motion-ready .ahh-reveal-target.is-revealed {
	animation: ahh-reveal-in var(--ahh-motion-slow) var(--ahh-motion-ease) var(--ahh-reveal-delay, 0ms);
}

.ahh-motion-ready .ahh-reveal-target.ahh-reveal-image.is-revealed img {
	animation: ahh-image-settle var(--ahh-motion-slow) var(--ahh-motion-ease) var(--ahh-reveal-delay, 0ms);
}

@keyframes ahh-reveal-in {
	from {
		opacity: .92;
		transform: translate3d(0, 8px, 0);
	}

	to {
		opacity: 1;
		transform: translate3d(0, 0, 0);
	}
}

@keyframes ahh-image-settle {
	from { transform: scale(1.015); }
	to { transform: scale(1); }
}

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

@media (min-width: 640px) {
	.ahh-action-grid,
	.ahh-card-grid,
	.ahh-contact-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }

	.ahh-gallery-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }

	.ahh-steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (min-width: 782px) {
	.ahh-hero > .wp-block-columns > .wp-block-column:first-child {
		flex-basis: 56% !important;
	}

	.ahh-hero > .wp-block-columns > .wp-block-column:last-child {
		flex-basis: 44% !important;
	}
}

@media (min-width: 960px) {
	.ahh-action-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }

	.ahh-card-grid--four { grid-template-columns: repeat(2, minmax(0, 1fr)); }

	.ahh-steps { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

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

	.ahh-page,
	.ahh-hero,
	.ahh-section,
	.ahh-callout { max-width: 100%; overflow-x: clip; }

	.ahh-hero,
	.ahh-section,
	.ahh-callout {
		padding-right: 1.25rem;
		padding-left: 1.25rem;
	}

	.ahh-hero > .wp-block-columns,
	.ahh-media-split.wp-block-columns {
		width: 100% !important;
		max-width: none !important;
		margin-right: 0 !important;
		margin-left: 0 !important;
	}

	.ahh-hero .wp-block-column,
	.ahh-media-split .wp-block-column {
		width: calc(100vw - 2.5rem) !important;
		max-width: calc(100vw - 2.5rem) !important;
		min-width: 0 !important;
		flex-basis: 100% !important;
	}

	.ahh-hero h1,
	.ahh-hero p {
		width: calc(100vw - 2.5rem) !important;
		max-width: calc(100vw - 2.5rem) !important;
		overflow-wrap: anywhere;
	}

	.ahh-hero .ahh-hero-media,
	.ahh-hero .ahh-hero-media img {
		width: calc(100vw - 2.5rem) !important;
		max-width: calc(100vw - 2.5rem) !important;
	}

	.site-header > .wp-block-group { min-height: 4.75rem; }

	.site-header .ahh-header-main {
		min-height: 4.75rem;
		flex-wrap: nowrap !important;
	}

	.site-header .wp-block-buttons { display: none; }

	.site-header .wp-block-navigation { margin-left: auto; }

	.site-header .wp-block-navigation__responsive-container:not(.is-menu-open) {
		display: none !important;
	}

	.site-header .ahh-contact-strip {
		justify-content: center !important;
		font-size: 0.95rem;
	}

	.site-header .wp-block-navigation__responsive-container-open {
		display: flex !important;
		align-items: center;
		justify-content: center;
		color: var(--ahh-ink);
		border: 1px solid var(--ahh-border);
		border-radius: 10px;
		min-width: 48px;
		min-height: 48px;
	}

	.site-header .ahh-header-main > .wp-block-group {
		min-width: 0;
	}

	.site-header .wp-block-navigation__responsive-container-close {
		display: grid;
		min-width: 48px;
		min-height: 48px;
		place-items: center;
		color: var(--ahh-surface) !important;
		border: 1px solid rgb(255 255 255 / 45%);
		border-radius: 10px;
	}

	body .site-header .wp-block-navigation__responsive-container.is-menu-open {
		padding: 1.25rem;
		background: var(--ahh-forest-deep) !important;
		color: var(--ahh-surface) !important;
		transform-origin: top right;
	}

	.site-header .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-dialog,
	.site-header .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content {
		width: 100%;
		min-height: 100%;
	}

	.site-header .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content {
		padding-top: 5rem !important;
		animation: ahh-menu-content-in var(--ahh-motion-standard) var(--ahh-motion-ease) both;
	}

	.site-header .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__container {
		width: 100%;
		align-items: stretch !important;
		justify-content: flex-start !important;
		gap: 0;
	}

	.site-header .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation-item {
		width: 100%;
		align-items: stretch !important;
		border-bottom: 1px solid rgb(255 255 255 / 22%);
	}

	.site-header .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation-item__content {
		display: flex;
		width: 100%;
		min-height: 56px;
		align-items: center;
		justify-content: flex-start !important;
		color: var(--ahh-surface);
		font-size: 1.2rem;
	}

	.ahh-hero h1 {
		max-width: 100%;
		font-size: clamp(2.35rem, 9.5vw, 2.9rem) !important;
		overflow-wrap: anywhere !important;
		word-break: break-word !important;
	}

	.ahh-hero-media { margin-top: 0.5rem; }

	.wp-block-query ul { padding-left: 0; }
	.wp-block-query .wp-block-post { list-style: none; }
}

/* The core Navigation overlay is display-driven; a short keyframe avoids an abrupt menu-content pop-in. */
@keyframes ahh-menu-content-in {
	from {
		opacity: 0;
		transform: translate3d(0, -8px, 0);
	}

	to {
		opacity: 1;
		transform: translate3d(0, 0, 0);
	}
}

@media (max-width: 520px) {
	.ahh-hero > .wp-block-columns,
	.ahh-media-split.wp-block-columns,
	.ahh-hero .wp-block-column,
	.ahh-media-split .wp-block-column,
	.ahh-hero h1,
	.ahh-hero p,
	.ahh-hero .ahh-hero-media,
	.ahh-hero .ahh-hero-media img {
		width: min(350px, calc(100vw - 2.5rem)) !important;
		max-width: min(350px, calc(100vw - 2.5rem)) !important;
	}
}

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

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


	.ahh-motion-ready .ahh-reveal-target,
	.ahh-motion-ready .ahh-reveal-target.ahh-reveal-image img { animation: none !important; }
}

/*
 * Approved 2026 visual direction.
 * Home uses purpose-built block classes from the approved composition. Shared
 * rules below carry the same spacing, typography, card and surface language to
 * the remaining Gutenberg pages without hardcoding their content in templates.
 */
:root {
	--ahh-leaf-soft: #e8f0df;
	--ahh-lime-soft: #f2f8de;
	--ahh-sand-deep: #eee4d2;
	--ahh-blue-soft: #d7eaf4;
	--ahh-muted: #57635d;
	--ahh-radius-pill: 999px;
	--ahh-home-shadow: 0 18px 48px rgb(22 55 43 / 11%);
}

body {
	background: var(--ahh-surface);
	font-size: 17px;
	line-height: 1.58;
}

.site-header {
	background: var(--ahh-surface);
	border-bottom-color: #e8e8e2;
}

.site-header > .wp-block-group {
	min-height: 88px;
	max-width: calc(var(--ahh-content-max) + var(--ahh-gutter) + var(--ahh-gutter)) !important;
	padding-top: 0 !important;
	padding-bottom: 0 !important;
}

.site-header .ahh-header-main {
	width: 100%;
	min-height: 88px;
	gap: clamp(1.25rem, 3vw, 4.25rem);
}

.site-header .wp-block-site-logo {
	width: 164px;
	flex-basis: 164px;
}

.site-header .wp-block-navigation {
	margin-left: auto;
}

.site-header .wp-block-navigation__container {
	gap: clamp(1rem, 2vw, 1.95rem);
}

.site-header .wp-block-navigation-item__content {
	font-size: .9375rem;
}

.site-header .ahh-header-cta {
	flex: 0 0 auto;
}

.site-header .ahh-header-cta .wp-block-button__link,
.ahh-home-page .wp-block-button__link {
	border: 2px solid var(--ahh-forest);
	border-radius: var(--ahh-radius-pill);
	padding: .65rem 1.45rem;
	font-size: .9375rem;
	font-weight: 800;
}

.ahh-home-page {
	width: 100%;
	max-width: none;
	margin: 0;
	overflow: clip;
}

.ahh-home-page h1,
.ahh-home-page h2,
.ahh-home-page h3 {
	margin-top: 0;
	font-family: Georgia, "Times New Roman", serif;
	letter-spacing: -.025em;
	line-height: 1.05;
}

.ahh-home-page h2 {
	font-size: clamp(2.5rem, 3.35vw, 3rem) !important;
}

.ahh-home-page h3 {
	font-size: clamp(1.4rem, 2vw, 1.625rem) !important;
}

.ahh-home-page p {
	margin-top: 0;
}

.ahh-home-page .ahh-eyebrow {
	margin-bottom: 1.125rem;
	font-size: .8125rem;
	font-weight: 800;
	letter-spacing: .16em;
	line-height: 1.3;
}

.ahh-home-hero,
.ahh-home-intro,
.ahh-home-services,
.ahh-home-why,
.ahh-home-pathway,
.ahh-home-connection,
.ahh-home-final-cta {
	box-sizing: border-box;
	width: 100%;
	max-width: none !important;
	margin: 0 !important;
	padding-right: var(--ahh-gutter);
	padding-left: var(--ahh-gutter);
}

.ahh-home-hero > *,
.ahh-home-intro > *,
.ahh-home-services > *,
.ahh-home-why > *,
.ahh-home-pathway > *,
.ahh-home-connection > *,
.ahh-home-final-cta > * {
	box-sizing: border-box;
	width: min(100%, var(--ahh-content-max)) !important;
	max-width: var(--ahh-content-max) !important;
	margin-right: auto;
	margin-left: auto;
}

.ahh-home-hero {
	position: relative;
	display: flex;
	min-height: clamp(640px, calc(100svh - 88px), 760px);
	align-items: center;
	overflow: hidden;
	isolation: isolate;
	background: var(--ahh-palm-sand, #f7f1e6);
}

.ahh-home-hero::before,
.ahh-home-hero::after {
	position: absolute;
	inset: 0;
	z-index: 1;
	pointer-events: none;
	content: "";
}

.ahh-home-hero::before {
	background: linear-gradient(
		90deg,
		rgba(247, 241, 230, 1) 0%,
		rgba(247, 241, 230, .99) 26%,
		rgba(247, 241, 230, .96) 42%,
		rgba(247, 241, 230, .82) 54%,
		rgba(247, 241, 230, .36) 66%,
		rgba(247, 241, 230, .06) 80%,
		rgba(247, 241, 230, 0) 100%
	);
}

.ahh-home-hero::after {
	background: linear-gradient(180deg, rgba(28, 40, 35, 0) 68%, rgba(28, 40, 35, .12) 100%);
}

.ahh-home-hero .ahh-home-hero-grid {
	position: static;
	z-index: auto;
	display: flex !important;
	min-height: inherit;
	align-items: center;
}

.ahh-home-hero-copy {
	position: relative;
	z-index: 2;
	box-sizing: border-box;
	width: min(60%, 750px) !important;
	max-width: 750px;
	flex: 0 0 min(60%, 750px) !important;
	padding: clamp(4.5rem, 8vw, 7rem) 0;
}

.ahh-home-hero-copy h1 {
	max-width: 700px;
	margin-bottom: 1.25rem;
	font-size: clamp(3.45rem, 4.75vw, 4.75rem) !important;
	line-height: .96;
	text-wrap: balance;
}

.ahh-home-hero-copy > p:not(.ahh-eyebrow) {
	max-width: 62ch;
	margin-bottom: 1.5rem;
	font-size: clamp(1.0625rem, 1.3vw, 1.1875rem);
	line-height: 1.58;
}

.site-header .ahh-header-cta .wp-block-button__link::after,
.ahh-home-hero-actions .wp-block-button:first-child .wp-block-button__link::after,
.ahh-home-section-head .wp-block-button__link::after,
.ahh-home-pathway-action .wp-block-button__link::after,
.ahh-home-cta-actions .wp-block-button:first-child .wp-block-button__link::after {
	margin-left: .65rem;
	content: "→";
	font-size: 1.15em;
	line-height: 1;
}

.ahh-home-hero-actions {
	gap: 14px;
	margin-top: 1.5rem;
}

.ahh-home-hero-actions .wp-block-button__link {
	min-height: 50px;
}

.ahh-home-hero-actions .is-style-quiet .wp-block-button__link {
	background: rgba(255, 255, 255, .76);
	box-shadow: 0 8px 24px rgba(28, 40, 35, .08);
	backdrop-filter: blur(6px);
}

.ahh-home-hero-visual {
	position: absolute;
	inset: 0;
	z-index: 0;
	width: 100%;
	height: 100%;
	margin: 0;
}

.ahh-home-hero-image {
	position: absolute;
	inset: 0;
	width: 100%;
	max-width: none !important;
	height: 100%;
	margin: 0;
	overflow: hidden;
	border: 0;
	border-radius: 0;
	box-shadow: none;
}

.ahh-home-hero-image img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: 70% center;
	transform: scale(1.055);
	transform-origin: 72% center;
}

.ahh-home-intro {
	padding-top: 110px;
	padding-bottom: 110px;
	background: var(--ahh-surface);
}

.ahh-home-intro-grid {
	display: grid !important;
	grid-template-columns: .88fr 1.12fr;
	gap: clamp(4rem, 7vw, 6.25rem);
	align-items: center;
}

.ahh-home-story-visual {
	position: relative;
	min-height: 500px;
}

.ahh-home-story-visual::before {
	position: absolute;
	top: 19px;
	left: -52px;
	width: 435px;
	height: 435px;
	background: var(--ahh-leaf-soft);
	border-radius: 50%;
	content: "";
}

.ahh-home-story-image {
	position: absolute;
	top: 44px;
	right: 0;
	width: 510px;
	height: 430px;
	margin: 0;
	overflow: hidden;
	border-radius: 34px 120px 34px 34px;
	box-shadow: var(--ahh-home-shadow);
}

.ahh-home-story-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.ahh-home-story-badge {
	position: absolute;
	bottom: 0;
	left: 0;
	display: flex;
	width: 155px;
	height: 155px;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 1.25rem;
	background: var(--ahh-forest);
	border-radius: 50%;
	color: var(--ahh-surface);
	text-align: center;
}

.ahh-home-story-badge p {
	margin: 0;
}

.ahh-home-story-badge p:first-child {
	font-family: Georgia, "Times New Roman", serif;
	font-size: 1.75rem;
	font-weight: 700;
	line-height: 1;
}

.ahh-home-story-badge p:last-child {
	max-width: 100px;
	margin-top: 8px;
	font-size: .75rem;
	font-weight: 700;
	line-height: 1.35;
}

.ahh-home-intro-copy > p:not(.ahh-eyebrow) {
	max-width: 590px;
	font-size: 1.125rem;
}

.ahh-home-micro-list {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px;
	margin: 30px 0 33px;
	padding: 0;
	list-style: none;
}

.ahh-home-micro-list li {
	position: relative;
	display: flex;
	min-height: 34px;
	align-items: center;
	padding-left: 45px;
	font-size: .9375rem;
	font-weight: 700;
}

.ahh-home-micro-list li::before {
	position: absolute;
	left: 0;
	display: grid;
	width: 34px;
	height: 34px;
	place-items: center;
	background: var(--ahh-leaf-soft);
	border-radius: 50%;
	color: var(--ahh-forest);
	content: "✓";
	font-weight: 900;
}

.ahh-home-services {
	padding-top: 104px;
	padding-bottom: 112px;
	background: var(--ahh-lime-soft);
}

.ahh-home-section-head {
	display: grid !important;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 2rem;
	align-items: end;
	margin-bottom: 48px;
}

.ahh-home-section-head > .wp-block-group:first-child {
	max-width: 780px;
}

.ahh-home-section-head p:last-child {
	max-width: 670px;
	margin-top: 1rem !important;
	margin-bottom: 0;
	margin-left: 0 !important;
	line-height: 1.55;
}

.ahh-home-service-grid {
	display: grid !important;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 24px;
	align-items: stretch;
}

.ahh-home-service-card {
	position: relative;
	display: grid;
	grid-template-columns: 64px minmax(0, 1fr);
	gap: 24px;
	min-height: 0;
	align-self: stretch;
	padding: clamp(1.75rem, 2.5vw, 2.25rem);
	overflow: hidden;
	background: var(--ahh-surface);
	border: 1px solid #d7dece;
	border-radius: 24px;
	box-shadow: 0 8px 24px rgb(31 77 58 / 6%);
	transition: border-color var(--ahh-motion-standard) var(--ahh-motion-ease), box-shadow var(--ahh-motion-standard) var(--ahh-motion-ease);
}

.ahh-home-service-grid > .ahh-home-service-card {
	margin-block-start: 0 !important;
}

.ahh-home-service-card > .wp-block-group {
	display: flex;
	min-width: 0;
	height: 100%;
	flex-direction: column;
	align-items: flex-start;
	text-align: left;
}

.ahh-home-service-card > .wp-block-group > * {
	width: 100%;
	margin-right: 0 !important;
	margin-left: 0 !important;
	text-align: left;
}

.ahh-home-service-icon {
	box-sizing: border-box;
	display: grid;
	width: 64px !important;
	min-width: 64px;
	height: 64px;
	place-items: center;
	place-content: center;
	margin: 0 !important;
	background: var(--ahh-leaf-soft);
	border-radius: 20px;
	box-shadow: inset 0 0 0 1px rgb(31 77 58 / 8%);
	color: var(--ahh-forest);
	font-family: Georgia, "Times New Roman", serif;
	font-size: 0;
	font-weight: 700;
	line-height: 0;
}

.ahh-home-service-icon.ahh-icon-care { background: var(--ahh-leaf-soft); color: var(--ahh-forest); }
.ahh-home-service-icon.ahh-icon-conversation { background: #f4dfd4; color: var(--ahh-clay); }
.ahh-home-service-icon.ahh-icon-search { background: #ece5c9; color: #765f15; }
.ahh-home-service-icon.ahh-icon-bottle { background: #dce8ed; color: #285b6b; }

.ahh-home-service-card h3 {
	margin-top: 0;
	margin-bottom: 10px;
	font-size: clamp(1.65rem, 2vw, 1.9rem) !important;
	line-height: 1.1;
}

.ahh-home-service-card p:not(.ahh-home-service-icon):not(.ahh-home-text-link) {
	max-width: 48ch;
	margin-top: 0;
	margin-bottom: 20px;
	color: var(--ahh-muted);
	font-size: 1rem;
	line-height: 1.6;
}

.ahh-home-text-link {
	margin-top: auto;
	margin-bottom: 0;
	font-size: .875rem;
	font-weight: 800;
}

.ahh-home-text-link a {
	color: var(--ahh-forest);
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 5px;
}

.ahh-home-service-card .ahh-home-text-link {
	width: 100%;
	padding-top: 4px;
	font-size: .9375rem;
}

.ahh-home-service-card .ahh-home-text-link a {
	box-sizing: border-box;
	display: inline-flex;
	min-height: 48px;
	align-items: center;
	justify-content: center;
	padding: .55rem 1rem;
	color: var(--ahh-forest);
	border: 1px solid rgb(31 77 58 / 48%);
	border-radius: 999px;
	text-decoration: none;
	transition: background-color var(--ahh-motion-fast) var(--ahh-motion-ease), border-color var(--ahh-motion-fast) var(--ahh-motion-ease), color var(--ahh-motion-fast) var(--ahh-motion-ease);
}

.ahh-home-service-card .ahh-home-text-link a:focus-visible {
	outline: 3px solid var(--ahh-clay);
	outline-offset: 3px;
}

.ahh-home-service-card:focus-within {
	border-color: var(--ahh-forest);
	box-shadow: 0 0 0 3px var(--ahh-leaf-soft), 0 12px 28px rgb(31 77 58 / 10%);
}

.ahh-home-why {
	padding-top: 105px;
	padding-bottom: 105px;
	background: var(--ahh-blue-soft);
}

.ahh-home-why-grid {
	display: grid !important;
	grid-template-columns: .86fr 1.14fr;
	gap: clamp(4rem, 7vw, 5.95rem);
	align-items: center;
}

.ahh-home-why-copy > p:not(.ahh-eyebrow) {
	max-width: 510px;
	font-size: 1.125rem;
}

.ahh-home-why-panels {
	display: grid;
	gap: 18px;
}

.ahh-home-why-panel {
	display: grid;
	grid-template-columns: 52px minmax(0, 1fr);
	gap: 22px;
	padding: 30px;
	background: rgb(255 255 255 / 78%);
	border-radius: 20px;
}

.ahh-home-panel-number {
	display: grid;
	width: 50px;
	height: 50px;
	place-items: center;
	margin: 0;
	background: var(--ahh-forest);
	border-radius: 50%;
	color: var(--ahh-surface);
	font-family: Georgia, "Times New Roman", serif;
	font-size: 1.375rem;
	font-weight: 700;
}

.ahh-home-why-panel h3 { margin-bottom: 8px; font-size: 1.5rem !important; }
.ahh-home-why-panel p:last-child { margin: 0; font-size: .9375rem; }

.ahh-home-image-break {
	width: 100%;
	height: clamp(420px, 42.36vw, 610px);
	margin: 0 !important;
	overflow: hidden;
	background: var(--ahh-forest-deep);
}

.ahh-home-image-break figure,
.ahh-home-image-break img {
	width: 100%;
	height: 100%;
	margin: 0;
	border-radius: 0;
	object-fit: cover;
	object-position: center 52%;
}

.ahh-home-pathway {
	padding-top: 110px;
	padding-bottom: 110px;
	background: var(--ahh-surface);
}

.ahh-home-pathway-head {
	max-width: 780px !important;
	margin: 0 auto 52px;
	text-align: center;
}

.ahh-home-pathway-head p:last-child {
	font-size: 1.125rem;
}

.ahh-home-steps {
	position: relative;
	display: grid !important;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 16px;
}

.ahh-home-steps::before {
	position: absolute;
	top: 32px;
	left: 11%;
	right: 11%;
	height: 2px;
	background: var(--ahh-border);
	content: "";
}

.ahh-home-step {
	position: relative;
	z-index: 1;
	min-height: 250px;
	padding: 20px 23px 26px;
	background: var(--ahh-surface);
	border: 1px solid var(--ahh-border);
	border-radius: 18px;
	text-align: center;
}

.ahh-home-step-number {
	display: grid;
	width: 64px;
	height: 64px;
	place-items: center;
	margin: -1px auto 28px;
	background: var(--ahh-clay);
	border: 7px solid var(--ahh-surface);
	border-radius: 50%;
	color: var(--ahh-surface);
	font-size: .9375rem;
	font-weight: 800;
}

.ahh-home-step h3 { font-size: 1.4375rem !important; }
.ahh-home-step p:last-child { margin: 0; color: var(--ahh-muted); font-size: .875rem; }
.ahh-home-pathway-action { margin-top: 34px; }

.ahh-home-connection {
	position: relative;
	overflow: hidden;
	padding-top: 100px;
	padding-bottom: 100px;
	background: var(--ahh-forest);
	color: var(--ahh-surface);
}

.ahh-home-connection::before {
	position: absolute;
	top: -250px;
	right: -260px;
	width: 540px;
	height: 540px;
	border: 140px solid rgb(220 233 169 / 12%);
	border-radius: 50%;
	content: "";
}

.ahh-home-connection .ahh-eyebrow { color: #dce9a9; }

.ahh-home-connection-head {
	position: relative;
	display: grid !important;
	grid-template-columns: .8fr 1.2fr;
	gap: 70px;
	align-items: end;
	margin-bottom: 48px;
}

.ahh-home-connection-head > .wp-block-column {
	margin-block-start: 0 !important;
}

.ahh-home-connection-head > .wp-block-column:last-child {
	display: flex;
	align-items: flex-end;
}

.ahh-home-connection-head p {
	max-width: 650px;
	margin-top: 0;
	margin-bottom: 0;
	font-size: 1.125rem;
	line-height: 1.55;
}

.ahh-home-connection-grid {
	position: relative;
	display: grid !important;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 20px;
	align-items: stretch;
}

.ahh-home-connection-grid > .ahh-home-connection-card {
	height: 100%;
	margin-block-start: 0 !important;
}

.ahh-home-connection-card {
	display: flex;
	min-height: 245px;
	flex-direction: column;
	align-items: flex-start;
	padding: 34px;
	background: var(--ahh-surface);
	border-radius: 18px;
	color: var(--ahh-ink);
	text-align: left;
}

.ahh-home-connection-card > * {
	width: 100%;
	margin-right: 0 !important;
	margin-left: 0 !important;
	text-align: left;
}

.ahh-home-connection-card h3 {
	margin-top: 0;
	margin-bottom: .75rem;
	font-size: clamp(1.5rem, 2vw, 1.75rem) !important;
	line-height: 1.08;
}

.ahh-home-connection-card p:not(.ahh-home-text-link) {
	margin-bottom: 1.25rem;
	color: var(--ahh-muted);
	font-size: 1rem;
	line-height: 1.55;
}

.ahh-home-connection-card .ahh-home-text-link {
	margin-top: auto;
	margin-bottom: 0;
}

.ahh-home-connection-card .ahh-home-text-link a {
	display: inline-flex;
	min-height: 44px;
	align-items: center;
	padding-block: .5rem;
}

.ahh-home-final-cta {
	padding-top: 100px;
	padding-bottom: 100px;
	background: var(--ahh-sand);
}

.ahh-home-final-panel {
	position: relative;
	display: grid !important;
	grid-template-columns: 1.2fr .8fr;
	gap: 80px;
	align-items: center;
	overflow: hidden;
	padding: 64px 70px;
	background: var(--ahh-sand-deep);
	border-radius: 30px;
}

.ahh-home-final-panel::after {
	position: absolute;
	top: -90px;
	right: -80px;
	width: 260px;
	height: 260px;
	background: #dce9a9;
	border-radius: 50%;
	content: "";
}

.ahh-home-final-panel h2,
.ahh-home-final-panel p { max-width: 690px; }

.ahh-home-cta-actions {
	position: relative;
	z-index: 1;
}

.ahh-home-cta-actions .wp-block-buttons {
	display: flex;
	flex-direction: column;
	gap: 13px;
}

.ahh-home-cta-actions .wp-block-button,
.ahh-home-cta-actions .wp-block-button__link { width: 100%; }

/* Shared page language: larger editorial heroes, breathable alternating bands and softer cards. */
.ahh-page:not(.ahh-home-page) .ahh-hero {
	min-height: 540px;
	display: flex;
	align-items: center;
	padding-top: clamp(4.75rem, 7vw, 6.5rem);
	padding-bottom: clamp(4.75rem, 7vw, 6.5rem);
	background: linear-gradient(102deg, #f7f1e6 0%, #f7f1e6 60%, #eff3e2 100%);
}

.ahh-page:not(.ahh-home-page) .ahh-hero > .wp-block-columns {
	width: min(100%, var(--ahh-content-max)) !important;
	max-width: var(--ahh-content-max) !important;
	gap: clamp(3rem, 7vw, 6rem);
}

.ahh-page:not(.ahh-home-page) .ahh-hero h1 {
	max-width: 12ch;
	font-size: clamp(3.5rem, 5vw, 4.75rem) !important;
	line-height: 1.02;
}

.ahh-page:not(.ahh-home-page) .ahh-hero p:not(.ahh-eyebrow) {
	max-width: 58ch;
	font-size: 1.125rem;
}

.ahh-page:not(.ahh-home-page) .ahh-hero-media {
	border: 0;
	border-radius: 100px 24px 24px 24px;
	box-shadow: var(--ahh-home-shadow);
}

.ahh-page:not(.ahh-home-page) .ahh-section,
.ahh-page:not(.ahh-home-page) .ahh-callout {
	padding-top: clamp(4.5rem, 7vw, 7rem);
	padding-bottom: clamp(4.5rem, 7vw, 7rem);
}

.ahh-page:not(.ahh-home-page) .ahh-section--alt {
	background: var(--ahh-sand);
}

.ahh-page:not(.ahh-home-page) .ahh-card,
.ahh-page:not(.ahh-home-page) .ahh-action-card,
.ahh-page:not(.ahh-home-page) .ahh-step,
.ahh-page:not(.ahh-home-page) .ahh-contact-card {
	padding: clamp(1.6rem, 3vw, 2.25rem);
	border-color: #dfe3d5;
	border-radius: 18px;
	box-shadow: none;
}

.ahh-page:not(.ahh-home-page) .ahh-media-frame {
	border: 0;
	border-radius: 28px 90px 28px 28px;
	box-shadow: var(--ahh-home-shadow);
}

/*
 * Secondary-page composition
 *
 * These rules carry the approved Home language into the deeper site without
 * making every page identical: strong image-led heroes, the same 1240px shell,
 * pill actions, warm alternating surfaces and page-specific content rhythms.
 */
.ahh-page:not(.ahh-home-page) .wp-block-button__link,
.ahh-news-template .wp-block-button__link {
	border: 2px solid var(--ahh-forest);
	border-radius: var(--ahh-radius-pill);
	padding: .65rem 1.45rem;
	font-size: .9375rem;
	font-weight: 800;
}

.ahh-page:not(.ahh-home-page) .ahh-hero,
.ahh-news-template .ahh-news-hero {
	position: relative;
	min-height: 610px;
	overflow: hidden;
	background: linear-gradient(102deg, #f6f9e8 0%, #f6f9e8 60%, #edf2de 60%, #edf2de 100%);
}

.ahh-page:not(.ahh-home-page) .ahh-hero::after,
.ahh-news-template .ahh-news-hero::after {
	position: absolute;
	top: 54px;
	right: -120px;
	width: 610px;
	height: 470px;
	background: #dce9a9;
	border-radius: 48% 52% 42% 58% / 56% 42% 58% 44%;
	content: "";
	transform: rotate(-4deg);
}

.ahh-page:not(.ahh-home-page) .ahh-hero > .wp-block-columns,
.ahh-news-template .ahh-news-hero-grid {
	position: relative;
	z-index: 1;
	display: grid !important;
	width: min(100%, var(--ahh-content-max)) !important;
	max-width: var(--ahh-content-max) !important;
	grid-template-columns: minmax(0, 1.04fr) minmax(380px, .96fr);
	gap: clamp(3rem, 6vw, 5.5rem);
	align-items: center;
}

.ahh-page:not(.ahh-home-page) .ahh-hero h1,
.ahh-news-template .ahh-news-hero h1 {
	max-width: 11.5ch;
	margin-bottom: 1.1rem;
	font-size: clamp(3.5rem, 5vw, 4.6rem) !important;
	letter-spacing: -.025em;
	line-height: 1;
}

.ahh-page:not(.ahh-home-page) .ahh-hero .wp-block-buttons,
.ahh-news-template .ahh-news-hero .wp-block-buttons {
	gap: .75rem;
	margin-top: 1.6rem;
}

.ahh-page:not(.ahh-home-page) .ahh-hero .wp-block-button:first-child .wp-block-button__link::after,
.ahh-news-template .ahh-news-hero .wp-block-button:first-child .wp-block-button__link::after,
.ahh-news-template .ahh-news-empty .wp-block-button:first-child .wp-block-button__link::after {
	margin-left: .65rem;
	content: "→";
	font-size: 1.15em;
	line-height: 1;
}

.ahh-page:not(.ahh-home-page) .ahh-hero-media {
	width: 100%;
	margin: 0;
	border-radius: 130px 28px 28px 28px;
}

.ahh-page:not(.ahh-home-page) .ahh-hero-media img {
	width: 100%;
	height: 390px;
	aspect-ratio: auto;
	object-fit: cover;
}

.ahh-programs-page .ahh-programs-hero-media img { object-position: center 34%; }
.ahh-faq-page .ahh-faq-hero-media img { object-position: center 49%; }

.ahh-page:not(.ahh-home-page) .ahh-section > *,
.ahh-page:not(.ahh-home-page) .ahh-callout > *,
.ahh-news-template .ahh-section > *,
.ahh-news-template .ahh-callout > * {
	width: min(100%, var(--ahh-content-max)) !important;
	max-width: var(--ahh-content-max) !important;
}

.ahh-page:not(.ahh-home-page) .ahh-reading { max-width: var(--ahh-reading-max) !important; }

.ahh-page:not(.ahh-home-page) .ahh-section--surface:nth-of-type(even),
.ahh-news-template .ahh-news-listing {
	background: var(--ahh-lime-soft);
}

.ahh-page:not(.ahh-home-page) .ahh-card-grid {
	gap: 1.4rem;
}

.ahh-page:not(.ahh-home-page) .ahh-card,
.ahh-page:not(.ahh-home-page) .ahh-contact-card,
.ahh-news-template .ahh-card {
	position: relative;
	justify-content: flex-start;
	overflow: hidden;
	background: rgb(255 255 255 / 94%);
	border: 1px solid #dfe3d5;
	border-radius: 18px;
	text-align: left;
}

.ahh-page:not(.ahh-home-page) .ahh-card::before,
.ahh-page:not(.ahh-home-page) .ahh-contact-card::before {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 5px;
	background: var(--ahh-leaf-soft);
	content: "";
}

.ahh-page:not(.ahh-home-page) .ahh-card:nth-child(2)::before,
.ahh-page:not(.ahh-home-page) .ahh-contact-card:nth-child(2)::before { background: #f4dfd4; }
.ahh-page:not(.ahh-home-page) .ahh-card:nth-child(3)::before,
.ahh-page:not(.ahh-home-page) .ahh-contact-card:nth-child(3)::before { background: #ece5c9; }
.ahh-page:not(.ahh-home-page) .ahh-card:nth-child(4)::before { background: #dce8ed; }

.ahh-services-page .ahh-card,
.ahh-programs-page .ahh-card,
.ahh-donations-page .ahh-card {
	min-height: 245px;
	padding: 2.25rem;
}

.ahh-services-page .ahh-card h2,
.ahh-programs-page .ahh-card h2,
.ahh-donations-page .ahh-card h2 {
	margin-bottom: .9rem;
	font-size: clamp(1.5rem, 2.2vw, 1.9rem) !important;
}

.ahh-services-page .ahh-card p,
.ahh-programs-page .ahh-card p,
.ahh-donations-page .ahh-card p { color: var(--ahh-muted); }

.ahh-about-page .ahh-media-split {
	grid-template-columns: .9fr 1.1fr;
	gap: clamp(4rem, 8vw, 7rem);
}

.ahh-about-page .ahh-media-frame,
.ahh-services-page .ahh-media-frame {
	position: relative;
	width: 100%;
}

.ahh-about-page .ahh-media-frame img,
.ahh-services-page .ahh-media-frame img {
	height: 420px;
	aspect-ratio: auto;
}

.ahh-about-page .ahh-card-grid .ahh-card { min-height: 205px; }

.ahh-page.ahh-about-page .ahh-section--surface.ahh-about-story {
	background: var(--ahh-surface) !important;
}

.ahh-about-page .ahh-media-split > .wp-block-column:first-child {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

.ahh-about-page .ahh-media-split > .wp-block-column:first-child .wp-block-buttons {
	align-self: flex-start;
	margin-top: 2rem;
	margin-bottom: 0;
}

/* Keep the About page's purpose, values and family invitation calm and centred. */
.ahh-about-page .ahh-section--alt > .ahh-reading,
.ahh-about-page .ahh-section--surface > .ahh-reading,
.ahh-about-page .ahh-callout > .ahh-reading {
	margin-right: auto;
	margin-left: auto;
	text-align: center;
}

.ahh-about-page .ahh-section--alt > .ahh-reading > p:not(.ahh-eyebrow),
.ahh-about-page .ahh-callout > .ahh-reading > p:not(.ahh-eyebrow) {
	margin-right: auto;
	margin-left: auto;
}

.ahh-about-page .ahh-callout > .ahh-reading .wp-block-buttons {
	width: 100%;
	flex-direction: row;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
}

.ahh-about-page .ahh-callout > .ahh-reading .is-style-quiet .wp-block-button__link {
	border-color: rgb(255 255 255 / 78%);
	color: var(--ahh-surface);
}

/* Keep the Services enquiry invitation as one calm, visible choice set. */
.ahh-services-page .ahh-callout > .ahh-reading {
	margin-right: auto;
	margin-left: auto;
	text-align: center;
}

.ahh-services-page .ahh-callout > .ahh-reading > p:not(.ahh-eyebrow) {
	margin-right: auto;
	margin-left: auto;
}

.ahh-services-page .ahh-callout > .ahh-reading .wp-block-buttons {
	width: 100%;
	flex-direction: row;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
}

.ahh-services-page .ahh-callout > .ahh-reading .is-style-quiet .wp-block-button__link {
	border-color: rgb(255 255 255 / 78%);
	color: var(--ahh-surface);
}

.ahh-programs-page .ahh-callout > .ahh-reading {
	margin-right: auto;
	margin-left: auto;
	text-align: center;
}

.ahh-programs-page .ahh-callout > .ahh-reading > * {
	margin-right: auto !important;
	margin-left: auto !important;
}

.ahh-programs-page .ahh-callout > .ahh-reading > p:not(.ahh-eyebrow) {
	max-width: 48rem;
}

.ahh-programs-page .ahh-callout > .ahh-reading .wp-block-buttons {
	width: 100%;
	align-items: center;
	justify-content: center;
}

/* Keep the Donations invitation on one calm, centred reading axis. */
.ahh-donations-page .ahh-callout > .ahh-reading {
	margin-right: auto;
	margin-left: auto;
	text-align: center;
}

.ahh-donations-page .ahh-callout > .ahh-reading > * {
	margin-right: auto !important;
	margin-left: auto !important;
}

.ahh-donations-page .ahh-callout > .ahh-reading > p:not(.ahh-eyebrow) {
	max-width: 48rem;
}

.ahh-donations-page .ahh-callout > .ahh-reading .wp-block-buttons {
	width: 100%;
	align-items: center;
	justify-content: center;
}

/* Centre the FAQ follow-up prompt and its two next-step actions. */
.ahh-faq-page .ahh-callout > .ahh-reading {
	margin-right: auto;
	margin-left: auto;
	text-align: center;
}

.ahh-faq-page .ahh-callout > .ahh-reading > * {
	margin-right: auto !important;
	margin-left: auto !important;
}

.ahh-faq-page .ahh-callout > .ahh-reading > p {
	max-width: 48rem;
}

.ahh-faq-page .ahh-callout > .ahh-reading .wp-block-buttons {
	width: 100%;
	align-items: center;
	justify-content: center;
}

.ahh-faq-page .ahh-callout .is-style-quiet .wp-block-button__link {
	border-color: rgb(255 255 255 / 82%);
	color: var(--ahh-surface);
}

.ahh-faq-page .ahh-callout .is-style-quiet .wp-block-button__link:hover,
.ahh-faq-page .ahh-callout .is-style-quiet .wp-block-button__link:focus-visible {
	background: var(--ahh-surface);
	color: var(--ahh-forest);
}

@media (max-width: 600px) {
	.ahh-about-page .ahh-callout > .ahh-reading .wp-block-buttons,
	.ahh-services-page .ahh-callout > .ahh-reading .wp-block-buttons {
		flex-direction: column;
	}
}

body.page-id-10 { min-width: 0; }

.ahh-page.ahh-programs-page {
	width: 100%;
	margin-left: 0;
}

.ahh-programs-page .ahh-gallery-grid {
	display: grid !important;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	grid-auto-flow: dense;
	gap: clamp(.85rem, 1.4vw, 1.25rem);
	margin-top: clamp(2rem, 4vw, 3rem);
}

.ahh-programs-page .ahh-gallery-intro {
	margin-right: auto;
	margin-left: auto;
	text-align: center;
}

.ahh-programs-page .ahh-gallery-intro > * {
	margin-right: auto !important;
	margin-left: auto !important;
}

.ahh-programs-page .ahh-gallery-intro > p:not(.ahh-eyebrow) { max-width: 48rem; }

.ahh-programs-page .ahh-gallery-grid figure,
.ahh-programs-page .ahh-gallery-grid figure img {
	width: 100%;
	min-height: 0;
}

.ahh-programs-page .ahh-gallery-grid figure {
	aspect-ratio: 4 / 3;
}

.ahh-programs-page .ahh-gallery-grid figure img {
	height: 100%;
	aspect-ratio: auto;
}

.ahh-admission-page .ahh-steps {
	position: relative;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1.25rem;
}

body.page-id-12 { min-width: 0; }
body.page-id-14 { min-width: 0; }
body.page-id-15 { min-width: 0; }
body.page-id-16 { min-width: 0; }

.ahh-page.ahh-admission-page,
.ahh-page.ahh-contact-page,
.ahh-page.ahh-donations-page,
.ahh-page.ahh-faq-page {
	width: 100%;
	margin-left: 0;
}

.ahh-admission-page .ahh-section--surface:has(> .ahh-steps) > .ahh-reading {
	margin-right: auto;
	margin-left: auto;
	text-align: center;
}

.ahh-admission-page .ahh-section--surface:has(> .ahh-steps) > .ahh-reading > * {
	margin-right: auto !important;
	margin-left: auto !important;
}

.ahh-admission-page .ahh-step {
	min-height: 285px;
	padding: 2rem;
	background: var(--ahh-surface);
}

.ahh-admission-page .ahh-step .ahh-number {
	width: 52px;
	height: 52px;
	margin-bottom: 1.5rem;
	border: 6px solid var(--ahh-surface);
	box-shadow: 0 0 0 1px rgb(184 92 56 / 20%);
}

.ahh-admission-page .ahh-form-shell,
.ahh-contact-page .ahh-form-shell {
	width: min(100%, 860px) !important;
	max-width: 860px !important;
	padding: clamp(2rem, 5vw, 4rem);
	border: 0;
	border-radius: 28px;
	box-shadow: var(--ahh-home-shadow);
}

.ahh-admission-page .ahh-form-shell.ahh-admission-form-panel {
	width: min(100%, 1120px) !important;
	max-width: 1120px !important;
	padding: 0;
	overflow: hidden;
	border: 1px solid var(--ahh-border);
	background: var(--ahh-surface);
}

.ahh-admission-form-layout {
	display: grid !important;
	grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr);
	gap: 0;
	align-items: stretch;
	margin: 0;
}

.ahh-admission-form-layout > .wp-block-column {
	min-width: 0;
	margin: 0;
}

.ahh-admission-form-visual {
	min-height: 100%;
	background: var(--ahh-forest);
}

.ahh-admission-form-image {
	width: 100%;
	height: 100%;
	margin: 0;
}

.ahh-admission-form-image img {
	display: block;
	width: 100%;
	height: 100%;
	min-height: 680px;
	object-fit: cover;
	object-position: 52% center;
}

.ahh-admission-form-content {
	display: flex;
	align-items: center;
	padding: clamp(2rem, 4.5vw, 4rem);
	background: var(--ahh-surface);
}

.ahh-admission-form-content > #admission-form {
	width: 100%;
}

.ahh-admission-form-content h2 {
	max-width: 12ch;
	margin-top: 0;
	margin-bottom: 1rem;
}

.ahh-admission-form-content > #admission-form > p {
	margin-bottom: 1.75rem;
}

.ahh-contact-page .ahh-form-shell.ahh-contact-form-panel {
	width: min(100%, 1120px) !important;
	max-width: 1120px !important;
	padding: 0;
	overflow: hidden;
	border: 1px solid var(--ahh-border);
	background: var(--ahh-surface);
}

.ahh-contact-form-layout {
	display: grid !important;
	grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr);
	gap: 0;
	align-items: stretch;
	margin: 0;
}

.ahh-contact-form-layout > .wp-block-column {
	min-width: 0;
	margin: 0;
}

.ahh-contact-form-visual {
	min-height: 100%;
	background: var(--ahh-forest);
}

.ahh-contact-form-image {
	width: 100%;
	height: 100%;
	margin: 0;
}

.ahh-contact-form-image img {
	display: block;
	width: 100%;
	height: 100%;
	min-height: 720px;
	object-fit: cover;
	object-position: 56% center;
}

.ahh-contact-form-content {
	display: flex;
	align-items: center;
	padding: clamp(2rem, 4.5vw, 4rem);
	background: var(--ahh-surface);
}

.ahh-contact-form-content > #contact-form {
	width: 100%;
}

.ahh-contact-form-content h2 {
	max-width: 12ch;
	margin-top: 0;
	margin-bottom: 1rem;
}

.ahh-contact-form-content > #contact-form > p:not(.ahh-eyebrow) {
	margin-bottom: 1.75rem;
}

.ahh-contact-page .ahh-contact-grid {
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1.4rem;
}

.ahh-contact-page .ahh-contact-card {
	min-height: 250px;
	padding: 2.25rem;
}

.ahh-contact-page .ahh-contact-card .wp-block-buttons { margin-top: auto; }

.ahh-contact-details {
	width: min(100%, 1120px) !important;
	margin: clamp(2rem, 4vw, 3.5rem) auto 0;
	padding: 0;
	display: grid;
	grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
	gap: 0;
	align-items: stretch;
	overflow: hidden;
	background: var(--ahh-surface);
	border: 1px solid var(--ahh-border);
	border-radius: 28px;
	box-shadow: var(--ahh-shadow-1);
}

.ahh-contact-details .wp-block-heading { margin: 0; }
.ahh-contact-details p { margin: .45rem 0 0; }
.ahh-contact-details > .wp-block-group:first-child {
	display: flex;
	min-width: 0;
	flex-direction: column;
	justify-content: center;
	padding: clamp(2rem, 4.5vw, 4rem);
	background: var(--ahh-leaf-soft);
}

.ahh-contact-details > .wp-block-group:first-child > * {
	width: 100%;
	margin-right: 0 !important;
	margin-left: 0 !important;
}

.ahh-contact-details > .wp-block-group:first-child .wp-block-heading { max-width: 12ch; }

.ahh-contact-details > .wp-block-group:first-child > p:not(.ahh-eyebrow) {
	max-width: 36rem;
	margin-top: 1.25rem;
}

.ahh-contact-details > .wp-block-group:last-child {
	display: grid;
	min-width: 0;
	align-content: center;
	gap: .65rem;
	padding: clamp(1.5rem, 3.5vw, 3rem);
	background: var(--ahh-surface);
}

.ahh-contact-details > .wp-block-group:last-child > p { margin: 0; }

.ahh-contact-details > .wp-block-group:last-child > p:has(> strong) {
	padding-left: .25rem;
	color: var(--ahh-forest);
	font-size: .875rem;
	font-weight: 750;
	letter-spacing: .08em;
	text-transform: uppercase;
}

.ahh-contact-details > .wp-block-group:last-child > p:has(> strong):not(:first-child) { margin-top: .75rem; }

.ahh-contact-detail { margin: 0; font-style: normal; }
.ahh-contact-details .ahh-contact-detail {
	position: relative;
	display: flex;
	min-width: 0;
	min-height: 96px;
	align-items: center;
	padding: 1.1rem 1.25rem 1.1rem 5.75rem;
	background: var(--ahh-sand);
	border: 1px solid var(--ahh-border);
	border-radius: 18px;
	color: var(--ahh-ink);
	line-height: 1.55;
}

.ahh-contact-details .ahh-contact-detail::before {
	position: absolute;
	top: 50%;
	left: 1.1rem;
	display: block;
	width: 3.5rem;
	height: 3.5rem;
	background: var(--ahh-leaf-soft);
	border-radius: 1.125rem;
	box-shadow: inset 0 0 0 1px rgb(31 77 58 / 8%);
	content: "";
	transform: translateY(-50%);
	pointer-events: none;
}

.ahh-contact-details .ahh-contact-detail::after {
	position: absolute;
	top: 50%;
	left: 2rem;
	display: block;
	width: 1.7rem;
	height: 1.7rem;
	background: var(--ahh-forest);
	content: "";
	transform: translateY(-50%);
	pointer-events: none;
}

.ahh-contact-details .ahh-contact-detail--address::after {
	-webkit-mask: url("../icons/pin.svg") center / contain no-repeat;
	mask: url("../icons/pin.svg") center / contain no-repeat;
}

.ahh-contact-details .ahh-contact-detail--email::after {
	-webkit-mask: url("../icons/mail.svg") center / contain no-repeat;
	mask: url("../icons/mail.svg") center / contain no-repeat;
}

.ahh-contact-details .ahh-contact-detail--email a {
	display: inline-flex;
	min-width: 0;
	min-height: 44px;
	align-items: center;
	overflow-wrap: anywhere;
}

.ahh-contact-details span,
.ahh-contact-details a { color: var(--wp--preset--color--forest, #1f4d3a); font-weight: 650; }
.ahh-contact-details a { text-decoration-thickness: 1px; text-underline-offset: 3px; }

.ahh-faq-page .ahh-section--surface {
	display: grid;
	grid-template-columns: .65fr 1.35fr;
	gap: clamp(3rem, 7vw, 6rem);
	align-items: start;
}

.ahh-faq-page .ahh-section--surface > .ahh-reading {
	width: 100% !important;
	max-width: none !important;
	margin: 0;
}

.ahh-faq-page details.ahh-faq {
	margin-bottom: .8rem;
	padding: .15rem 1.35rem;
	background: var(--ahh-surface);
	border: 1px solid #dfe3d5;
	border-radius: 14px;
}

.ahh-faq-page details.ahh-faq summary { min-height: 62px; }
.ahh-faq-page details.ahh-faq p { padding: 0 0 1.25rem; }

.ahh-callout {
	position: relative;
	overflow: hidden;
}

.ahh-callout::after {
	position: absolute;
	top: -260px;
	right: -270px;
	width: 560px;
	height: 560px;
	border: 140px solid rgb(220 233 169 / 10%);
	border-radius: 50%;
	content: "";
	pointer-events: none;
}

.ahh-callout > * { position: relative; z-index: 1; }

.ahh-news-template .ahh-news-hero {
	display: flex;
	align-items: center;
	padding: clamp(4.75rem, 7vw, 6.5rem) var(--ahh-gutter);
}

.ahh-news-template .ahh-news-hero h1 {
	font-family: Georgia, "Times New Roman", serif;
}

.ahh-news-template .ahh-news-hero-panel {
	position: relative;
	min-height: 370px;
	padding: clamp(2rem, 4vw, 3.25rem);
	background: var(--ahh-surface);
	border-radius: 110px 26px 26px 26px;
	box-shadow: var(--ahh-home-shadow);
}

.ahh-news-template .ahh-news-hero-panel h2 {
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(1.75rem, 3vw, 2.6rem) !important;
	line-height: 1.08;
}

.ahh-secondary-check-list {
	display: grid;
	gap: .8rem;
	margin: 1.75rem 0 0;
	padding: 0;
	list-style: none;
}

.ahh-secondary-check-list li {
	position: relative;
	padding-left: 2.25rem;
	font-weight: 700;
}

.ahh-secondary-check-list li::before {
	position: absolute;
	top: -.1rem;
	left: 0;
	display: grid;
	width: 1.6rem;
	height: 1.6rem;
	place-items: center;
	background: var(--ahh-leaf-soft);
	border-radius: 50%;
	color: var(--ahh-forest);
	content: "✓";
	font-size: .75rem;
	font-weight: 900;
}

.ahh-news-template .ahh-news-listing { padding: 7rem var(--ahh-gutter); }
.ahh-news-template .ahh-news-listing > .wp-block-query { margin-top: 2.5rem; }

.ahh-news-template .ahh-news-empty {
	position: relative;
	overflow: hidden;
	max-width: 920px !important;
	padding: clamp(2.25rem, 5vw, 4rem);
	background: var(--ahh-sand-deep);
	border-radius: 28px;
}

.ahh-news-template .ahh-news-empty h2 {
	max-width: 18ch;
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(2rem, 4vw, 3.25rem) !important;
	line-height: 1.05;
}

.ahh-news-template .ahh-news-empty p { max-width: 62ch; }

.ahh-secondary-cta-panel {
	display: grid !important;
	grid-template-columns: 1.2fr .8fr;
	gap: clamp(2rem, 7vw, 5rem);
	align-items: center;
}

.ahh-secondary-cta-actions .wp-block-buttons {
	display: flex;
	flex-direction: column;
	gap: .8rem;
}

.ahh-secondary-cta-actions .wp-block-button,
.ahh-secondary-cta-actions .wp-block-button__link { width: 100%; }

.ahh-news-template .ahh-news-callout .is-style-quiet .wp-block-button__link {
	background: transparent !important;
	border-color: rgb(255 255 255 / 82%) !important;
	color: var(--ahh-surface) !important;
}

.ahh-news-template .ahh-news-callout .is-style-quiet .wp-block-button__link:hover,
.ahh-news-template .ahh-news-callout .is-style-quiet .wp-block-button__link:focus-visible {
	background: var(--ahh-surface) !important;
	border-color: var(--ahh-surface) !important;
	color: var(--ahh-forest) !important;
}

@media (hover: hover) and (pointer: fine) {
	.ahh-page:not(.ahh-home-page) .ahh-card,
	.ahh-page:not(.ahh-home-page) .ahh-contact-card,
	.ahh-news-template .ahh-card,
	.ahh-faq-page details.ahh-faq {
		transition: transform var(--ahh-motion-standard) var(--ahh-motion-ease), box-shadow var(--ahh-motion-standard) var(--ahh-motion-ease), border-color var(--ahh-motion-standard) var(--ahh-motion-ease);
	}

	.ahh-page:not(.ahh-home-page) .ahh-card:hover,
	.ahh-page:not(.ahh-home-page) .ahh-contact-card:hover,
	.ahh-news-template .ahh-card:hover,
	.ahh-faq-page details.ahh-faq:hover {
		border-color: rgb(31 77 58 / 30%);
		box-shadow: var(--ahh-home-shadow);
		transform: translateY(-2px);
	}
}

@media (max-width: 980px) {
	.ahh-page:not(.ahh-home-page) .ahh-hero,
	.ahh-news-template .ahh-news-hero {
		min-height: 0;
	}

	.ahh-page:not(.ahh-home-page) .ahh-hero > .wp-block-columns,
	.ahh-news-template .ahh-news-hero-grid,
	.ahh-about-page .ahh-media-split,
	.ahh-faq-page .ahh-section--surface,
	.ahh-secondary-cta-panel {
		grid-template-columns: 1fr;
	}

	.ahh-page:not(.ahh-home-page) .ahh-hero-media img { height: 430px; }
	.ahh-contact-page .ahh-contact-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.ahh-admission-page .ahh-steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.ahh-contact-details { grid-template-columns: 1fr; align-items: start; }
	.ahh-contact-details > .wp-block-group:first-child,
	.ahh-contact-details > .wp-block-group:last-child { padding: clamp(1.5rem, 6vw, 2.5rem); }
	.ahh-admission-form-layout { grid-template-columns: 1fr; }
	.ahh-admission-form-image,
	.ahh-admission-form-image img { height: auto; min-height: 0; aspect-ratio: 16 / 9; }
	.ahh-admission-form-image img { object-position: center 56%; }
	.ahh-contact-form-layout { grid-template-columns: 1fr; }
	.ahh-contact-form-image,
	.ahh-contact-form-image img { height: auto; min-height: 0; aspect-ratio: 16 / 9; }
	.ahh-contact-form-image img { object-position: center 42%; }
	.ahh-programs-page .ahh-gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 640px) {
	.ahh-page:not(.ahh-home-page) .ahh-hero,
	.ahh-news-template .ahh-news-hero {
		padding-top: 3.25rem;
		padding-bottom: 4rem;
	}

	.ahh-page:not(.ahh-home-page) .ahh-hero::after,
	.ahh-news-template .ahh-news-hero::after {
		top: auto;
		right: -240px;
		bottom: -80px;
	}

	.ahh-page:not(.ahh-home-page) .ahh-hero h1,
	.ahh-news-template .ahh-news-hero h1 {
		font-size: clamp(2.6rem, 12vw, 3.2rem) !important;
		text-wrap: pretty;
	}

	.ahh-page:not(.ahh-home-page) .ahh-hero-media img { height: 320px; }
	.ahh-page:not(.ahh-home-page) .ahh-section,
	.ahh-page:not(.ahh-home-page) .ahh-callout,
	.ahh-news-template .ahh-section,
	.ahh-news-template .ahh-callout { padding-top: 4.5rem; padding-bottom: 4.5rem; }

	.ahh-contact-page .ahh-contact-grid,
	.ahh-admission-page .ahh-steps,
	.ahh-programs-page .ahh-gallery-grid { grid-template-columns: 1fr; }
	.ahh-admission-form-content { padding: 1.5rem; }
	.ahh-contact-form-content { padding: 1.5rem; }
	.ahh-admission-form-image,
	.ahh-admission-form-image img { aspect-ratio: 4 / 3; }
	.ahh-contact-form-image,
	.ahh-contact-form-image img { aspect-ratio: 4 / 3; }

	.ahh-programs-page .ahh-gallery-grid figure,
	.ahh-programs-page .ahh-gallery-grid figure img { min-height: 0 !important; }
	.ahh-services-page .ahh-card,
	.ahh-programs-page .ahh-card,
	.ahh-donations-page .ahh-card,
	.ahh-contact-page .ahh-contact-card,
	.ahh-admission-page .ahh-step { min-height: 0; padding: 1.6rem; }
	.ahh-news-template .ahh-news-hero-panel { min-height: 0; border-radius: 70px 22px 22px 22px; }
}

.site-footer {
	padding: 66px var(--ahh-gutter) 30px !important;
	background: var(--ahh-forest-deep) !important;
}

.site-footer .ahh-footer-grid {
	display: grid !important;
	width: min(100%, var(--ahh-content-max)) !important;
	max-width: var(--ahh-content-max) !important;
	margin-right: auto;
	margin-left: auto;
	grid-template-columns: 1.3fr .8fr .9fr 1fr;
	gap: 50px;
}

.site-footer .ahh-footer-logo {
	width: 181px;
}

.site-footer h2 {
	margin-bottom: 20px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: .875rem !important;
	font-weight: 800;
	letter-spacing: .08em;
	text-transform: uppercase;
}

.site-footer p,
.site-footer a {
	font-size: .875rem !important;
}

/* Use one consistent client-approved size for footer body copy, links and address. */
.site-footer .ahh-footer-grid p,
.site-footer .ahh-footer-grid a,
.site-footer .ahh-footer-grid .ahh-contact-detail {
	font-size: .875rem !important;
}

.site-footer .ahh-copyright {
	display: flex;
	width: min(100%, var(--ahh-content-max));
	max-width: var(--ahh-content-max);
	margin: 45px auto 0;
	padding-top: 22px;
	align-items: center;
	justify-content: space-between;
	gap: .75rem 2rem;
	flex-wrap: wrap;
	border-top: 1px solid rgb(255 255 255 / 18%);
	color: #b7c4bd;
	font-size: .8125rem !important;
}

.site-footer .ahh-credit {
	display: inline-flex;
	margin-left: auto;
	align-items: center;
	white-space: nowrap;
}

.site-footer .ahh-copyright a {
	display: inline;
	font-weight: 700;
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 3px;
}

.ahh-heart {
	display: inline-block;
	margin: 0 4px;
	color: #e23b3b;
	font-size: 1rem;
	line-height: 1;
	transform: translateY(1px);
}

@media (hover: hover) and (pointer: fine) {
	.ahh-home-why-panel,
	.ahh-home-connection-card,
	.ahh-home-step {
		transition: transform var(--ahh-motion-standard) var(--ahh-motion-ease), box-shadow var(--ahh-motion-standard) var(--ahh-motion-ease);
	}

	.ahh-home-why-panel:hover,
	.ahh-home-connection-card:hover,
	.ahh-home-step:hover {
		box-shadow: var(--ahh-home-shadow);
		transform: translateY(-2px);
	}

	.ahh-home-service-card:hover {
		border-color: #afbea8;
		box-shadow: 0 14px 34px rgb(31 77 58 / 11%);
	}

	.ahh-home-service-card .ahh-home-text-link a:hover {
		background: var(--ahh-forest);
		border-color: var(--ahh-forest);
		color: var(--ahh-surface);
	}
}

@media (max-width: 1180px) {
	.site-header .wp-block-navigation__container { gap: 1rem; }
	.site-header .wp-block-navigation-item__content { font-size: .875rem; }
	.site-header .ahh-header-main { gap: 1.5rem; }

	.ahh-home-story-image { width: min(510px, calc(100% - 20px)); }
}

@media (max-width: 980px) {
	.site-header > .wp-block-group,
	.site-header .ahh-header-main { min-height: 78px; }
	.site-header .wp-block-site-logo { width: 150px; flex-basis: 150px; }
	.site-header .ahh-header-cta { display: none; }

	.ahh-home-hero {
		min-height: 660px;
	}

	.ahh-home-hero::before {
		background: linear-gradient(90deg, rgba(247, 241, 230, 1) 0%, rgba(247, 241, 230, .98) 40%, rgba(247, 241, 230, .86) 58%, rgba(247, 241, 230, .28) 78%, rgba(247, 241, 230, .04) 100%);
	}

	.ahh-home-hero .ahh-home-hero-grid {
		min-height: inherit;
	}

	.ahh-home-hero-copy { width: min(68%, 660px) !important; flex-basis: min(68%, 660px) !important; padding: 4.75rem 0; }
	.ahh-home-hero-copy h1 { max-width: 660px; font-size: clamp(3.15rem, 6.4vw, 4.15rem) !important; }
	.ahh-home-hero-copy > p:not(.ahh-eyebrow) { font-size: 1.0625rem; }
	.ahh-home-hero-image img { object-position: 66% center; }

	.ahh-home-intro-grid,
	.ahh-home-why-grid,
	.ahh-home-final-panel {
		grid-template-columns: 1fr;
	}

	.ahh-home-intro-grid { gap: 3.5rem; }
	.ahh-home-story-visual { width: min(100%, 660px); margin: 0 auto; }
	.ahh-home-story-image { width: calc(100% - 40px); }

	.ahh-home-final-panel { gap: 2rem; padding: 3.5rem; }
	.ahh-home-connection-head { grid-template-columns: 1fr; gap: 1rem; align-items: start; }
	.ahh-home-connection-head > .wp-block-column:last-child { display: block; }

	.ahh-page:not(.ahh-home-page) .ahh-hero { min-height: 480px; }
}

@media (max-width: 781px) {
	.site-header > .wp-block-group,
	.site-header .ahh-header-main { min-height: 74px; }

	.site-header .ahh-header-main {
		width: 100% !important;
		max-width: none !important;
	}

	.ahh-home-hero,
	.ahh-home-intro,
	.ahh-home-services,
	.ahh-home-why,
	.ahh-home-pathway,
	.ahh-home-connection,
	.ahh-home-final-cta {
		padding-right: 1.25rem;
		padding-left: 1.25rem;
	}

	.ahh-home-service-grid,
	.ahh-home-connection-grid {
		grid-template-columns: 1fr;
	}

	.ahh-home-service-card { min-height: 0; }

	.ahh-home-steps {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.ahh-home-steps::before { display: none; }

	.ahh-page:not(.ahh-home-page) .ahh-hero {
		min-height: 0;
		padding-top: 4rem;
		padding-bottom: 4rem;
	}

	.ahh-page:not(.ahh-home-page) .ahh-hero h1 {
		font-size: clamp(2.6rem, 10vw, 3.5rem) !important;
	}

	.site-footer .ahh-footer-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 2.5rem;
	}
}

@media (max-width: 560px) {
	.ahh-home-page h2 { font-size: clamp(2.25rem, 11vw, 2.75rem) !important; }

	.ahh-home-hero {
		min-height: 730px;
		align-items: flex-start;
	}

	.ahh-home-hero::before {
		background:
			linear-gradient(180deg, rgba(247, 241, 230, 1) 0%, rgba(247, 241, 230, .98) 49%, rgba(247, 241, 230, .85) 65%, rgba(247, 241, 230, .3) 84%, rgba(247, 241, 230, .12) 100%),
			linear-gradient(90deg, rgba(247, 241, 230, .62) 0%, rgba(247, 241, 230, .08) 100%);
	}

	.ahh-home-hero .ahh-home-hero-grid {
		align-items: flex-start;
	}

	.ahh-home-hero-copy {
		width: 100% !important;
		max-width: none;
		flex-basis: 100% !important;
		padding: 4rem 0 12rem;
	}

	.ahh-home-hero-copy h1 {
		font-size: clamp(2.6rem, 10vw, 3rem) !important;
		text-wrap: pretty;
	}

	.ahh-home-micro-list,
	.ahh-home-steps {
		grid-template-columns: 1fr;
	}

	.ahh-home-hero-actions {
		align-items: stretch;
	}

	.ahh-home-hero-actions .wp-block-button,
	.ahh-home-hero-actions .wp-block-button__link { width: 100%; }

	.ahh-home-hero-image img {
		object-position: 64% center;
		transform: scale(1.02);
	}

	.ahh-home-intro,
	.ahh-home-services,
	.ahh-home-why,
	.ahh-home-pathway,
	.ahh-home-connection,
	.ahh-home-final-cta {
		padding-top: 72px;
		padding-bottom: 72px;
	}

	.ahh-home-story-visual { min-height: 390px; }
	.ahh-home-story-visual::before { width: 320px; height: 320px; left: -80px; }
	.ahh-home-story-image { top: 24px; width: calc(100% - 20px); height: 340px; border-radius: 28px 78px 28px 28px; }
	.ahh-home-story-badge { width: 125px; height: 125px; }

	.ahh-home-section-head { grid-template-columns: 1fr; margin-bottom: 2rem; }
	.ahh-home-service-card { grid-template-columns: 1fr; gap: 18px; padding: 24px; }
	.ahh-home-service-icon { width: 56px !important; min-width: 56px; height: 56px; border-radius: 17px; font-size: 1.35rem; }
	.ahh-home-service-card .ahh-home-text-link a { width: 100%; }
	.ahh-home-why-panel { grid-template-columns: 44px minmax(0, 1fr); gap: 16px; padding: 24px; }
	.ahh-home-panel-number { width: 42px; height: 42px; }
	.ahh-home-image-break { height: 390px; }
	.ahh-home-image-break img { object-position: center 50%; }
	.ahh-home-step { min-height: 0; }
	.ahh-home-connection-card { min-height: 0; }
	.ahh-home-final-panel { padding: 2rem 1.5rem; border-radius: 22px; }

	.site-footer { padding-top: 52px !important; }
	.site-footer .ahh-footer-grid { grid-template-columns: 1fr; gap: 2rem; }
	.site-footer .ahh-copyright { align-items: flex-start; line-height: 1.7; }
}

@media (prefers-reduced-motion: reduce) {
	.ahh-home-service-card,
	.ahh-home-service-card .ahh-home-text-link a,
	.ahh-home-why-panel,
	.ahh-home-connection-card,
	.ahh-home-step {
		transition: none !important;
	}
}

/* AHH outline icons: decorative visual anchors that never replace clear labels. */
.ahh-page .ahh-icon-care { --ahh-card-icon: url("../icons/care.svg") !important; }
.ahh-page .ahh-icon-conversation { --ahh-card-icon: url("../icons/conversation.svg") !important; }
.ahh-page .ahh-icon-search { --ahh-card-icon: url("../icons/search.svg") !important; }
.ahh-page .ahh-icon-bottle { --ahh-card-icon: url("../icons/bottle.svg") !important; }
.ahh-page .ahh-icon-compass { --ahh-card-icon: url("../icons/compass.svg") !important; }
.ahh-page .ahh-icon-target { --ahh-card-icon: url("../icons/target.svg") !important; }
.ahh-page .ahh-icon-sprout { --ahh-card-icon: url("../icons/sprout.svg") !important; }
.ahh-page .ahh-icon-respect { --ahh-card-icon: url("../icons/respect.svg") !important; }
.ahh-page .ahh-icon-community { --ahh-card-icon: url("../icons/community.svg") !important; }
.ahh-page .ahh-icon-calendar { --ahh-card-icon: url("../icons/calendar.svg") !important; }
.ahh-page .ahh-icon-leaf { --ahh-card-icon: url("../icons/leaf.svg") !important; }
.ahh-page .ahh-icon-family { --ahh-card-icon: url("../icons/family.svg") !important; }
.ahh-page .ahh-icon-coin { --ahh-card-icon: url("../icons/coin.svg") !important; }
.ahh-page .ahh-icon-package { --ahh-card-icon: url("../icons/package.svg") !important; }
.ahh-page .ahh-icon-link { --ahh-card-icon: url("../icons/link.svg") !important; }
.ahh-page .ahh-icon-star { --ahh-card-icon: url("../icons/star.svg") !important; }
.ahh-page .ahh-icon-form { --ahh-card-icon: url("../icons/form.svg") !important; }
.ahh-page .ahh-icon-pin { --ahh-card-icon: url("../icons/pin.svg") !important; }

.ahh-home-service-icon {
	font-size: 0;
}

.ahh-home-service-icon::after {
	display: block;
	width: 1.75rem;
	height: 1.75rem;
	margin: auto;
	background: currentcolor;
	content: "";
	-webkit-mask: var(--ahh-card-icon) center / contain no-repeat;
	mask: var(--ahh-card-icon) center / contain no-repeat;
}

.ahh-about-page .ahh-card,
.ahh-services-page .ahh-card,
.ahh-programs-page .ahh-card,
.ahh-donations-page .ahh-card,
.ahh-contact-page .ahh-contact-card {
	--ahh-card-icon: none;
	--ahh-icon-badge-surface: var(--ahh-leaf-soft);
	--ahh-icon-badge-ink: var(--ahh-forest);
	--ahh-icon-badge-top: clamp(1.3rem, 2.2vw, 1.65rem);
	--ahh-icon-badge-left: clamp(1.35rem, 2.2vw, 1.75rem);
}

.ahh-page.ahh-about-page .ahh-card:nth-child(2),
.ahh-page.ahh-services-page .ahh-card:nth-child(2),
.ahh-page.ahh-programs-page .ahh-card:nth-child(2),
.ahh-page.ahh-donations-page .ahh-card:nth-child(2),
.ahh-page.ahh-contact-page .ahh-contact-card:nth-child(2) {
	--ahh-icon-badge-surface: #f4dfd4;
	--ahh-icon-badge-ink: var(--ahh-clay);
}

.ahh-page.ahh-about-page .ahh-card:nth-child(3),
.ahh-page.ahh-services-page .ahh-card:nth-child(3),
.ahh-page.ahh-programs-page .ahh-card:nth-child(3),
.ahh-page.ahh-donations-page .ahh-card:nth-child(3),
.ahh-page.ahh-contact-page .ahh-contact-card:nth-child(3) {
	--ahh-icon-badge-surface: #ece5c9;
	--ahh-icon-badge-ink: #765f15;
}

.ahh-page.ahh-about-page .ahh-card:nth-child(4),
.ahh-page.ahh-services-page .ahh-card:nth-child(4),
.ahh-page.ahh-programs-page .ahh-card:nth-child(4),
.ahh-page.ahh-donations-page .ahh-card:nth-child(4) {
	--ahh-icon-badge-surface: #dce8ed;
	--ahh-icon-badge-ink: #285b6b;
}

.ahh-page.ahh-about-page .ahh-card::before,
.ahh-page.ahh-services-page .ahh-card::before,
.ahh-page.ahh-programs-page .ahh-card::before,
.ahh-page.ahh-donations-page .ahh-card::before,
.ahh-page.ahh-contact-page .ahh-contact-card::before {
	top: var(--ahh-icon-badge-top);
	left: var(--ahh-icon-badge-left);
	width: 4rem;
	height: 4rem;
	background: var(--ahh-icon-badge-surface);
	border-radius: 1.25rem;
	box-shadow: inset 0 0 0 1px rgb(31 77 58 / 8%);
}

.ahh-about-page .ahh-card::after,
.ahh-services-page .ahh-card::after,
.ahh-programs-page .ahh-card::after,
.ahh-donations-page .ahh-card::after,
.ahh-contact-page .ahh-contact-card::after {
	position: absolute;
	top: calc(var(--ahh-icon-badge-top) + 1.125rem);
	left: calc(var(--ahh-icon-badge-left) + 1.125rem);
	display: block;
	width: 1.75rem;
	height: 1.75rem;
	background: var(--ahh-icon-badge-ink);
	content: "";
	pointer-events: none;
	-webkit-mask: var(--ahh-card-icon) center / contain no-repeat;
	mask: var(--ahh-card-icon) center / contain no-repeat;
}

.ahh-about-page .ahh-card h2,
.ahh-about-page .ahh-card h3,
.ahh-services-page .ahh-card h2,
.ahh-programs-page .ahh-card h2,
.ahh-donations-page .ahh-card h2,
.ahh-contact-page .ahh-contact-card h2 {
	padding-top: 5.25rem;
}

/* Keep the complete About-page badge set centred above its card content. */
.ahh-page.ahh-about-page .ahh-card::before,
.ahh-about-page .ahh-card::after {
	left: 50%;
	transform: translateX(-50%);
}

/* Centre the complete Services card hierarchy without changing its content. */
.ahh-page.ahh-services-page .ahh-card {
	display: flex;
	height: 100%;
	flex-direction: column;
	align-items: center;
	text-align: center;
}

.ahh-page.ahh-services-page .ahh-card-grid > .ahh-card {
	margin-block-start: 0 !important;
}

.ahh-page.ahh-services-page .ahh-card::before,
.ahh-page.ahh-services-page .ahh-card::after {
	left: 50%;
	transform: translateX(-50%);
}

.ahh-page.ahh-services-page .ahh-card > h2,
.ahh-page.ahh-services-page .ahh-card > p {
	margin-right: auto !important;
	margin-left: auto !important;
	text-align: center;
}

.ahh-page.ahh-services-page .ahh-card > p {
	max-width: 48ch;
}

.ahh-page.ahh-services-page .ahh-card > .wp-block-buttons {
	width: 100%;
	justify-content: center;
	margin-top: auto !important;
	margin-right: auto !important;
	margin-left: auto !important;
	padding-top: 1.5rem;
}

.ahh-admission-page .ahh-contact-details > .wp-block-group:first-child {
	position: static;
}

.ahh-admission-page .ahh-contact-details > .wp-block-group:first-child::before,
.ahh-admission-page .ahh-contact-details > .wp-block-group:first-child::after { content: none; }
