:root {
	--wd-teal: #003e51;
	--wd-teal-dark: #002a38;
	--wd-teal-light: #0a5e72;
	--wd-gold: #d4a039;
	--wd-gold-dark: #b8871f;
	--wd-surface: #eef3f5;
	--wd-white: #ffffff;
	--wd-ink: #2b2d42;
	--wd-muted: #5a6a72;
	--wd-line: #cfdadd;
	--wd-shell: 1280px;
	--wd-radius: 10px;
	--wd-ease: cubic-bezier(0.16, 1, 0.3, 1);
	--global-header-height: 88px;
	--header-height: var(--global-header-height);
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	scroll-padding-top: calc(var(--global-header-height) + 16px);
}

body {
	margin: 0;
}

img,
video,
iframe {
	display: block;
	max-width: 100%;
}

a {
	color: inherit;
	text-underline-offset: 0.22em;
}

button,
a {
	-webkit-tap-highlight-color: transparent;
}

:focus-visible {
	outline: 3px solid var(--wd-gold);
	outline-offset: 4px;
}

.walden-homepage-v004 {
	--teal: var(--wd-teal);
	--teal-dark: var(--wd-teal-dark);
	--teal-light: var(--wd-teal-light);
	--gold: var(--wd-gold);
	--gold-dark: var(--wd-gold-dark);
	--surface: var(--wd-surface);
	--white: var(--wd-white);
	--ink: var(--wd-ink);
	--muted: var(--wd-muted);
	--border: rgba(0, 62, 81, 0.16);
	--font-display: "Playfair Display", Georgia, serif;
	--font-body: "Inter", system-ui, sans-serif;
	--shell: min(1280px, calc(100% - 48px));
	--section: clamp(72px, 8vw, 128px);
	--shadow: 0 20px 60px rgba(0, 42, 56, 0.13);
	overflow-x: clip;
}

.global-shell {
	width: min(var(--wd-shell), calc(100% - 48px));
	margin-inline: auto;
}

body.menu-open {
	overflow: hidden;
}

.global-skip-link {
	position: fixed;
	z-index: 1000;
	top: 12px;
	left: 12px;
	padding: 12px 18px;
	transform: translateY(-180%);
	background: var(--wd-gold);
	color: var(--wd-teal-dark);
	font: 700 0.875rem/1.2 "Inter", system-ui, sans-serif;
	text-decoration: none;
}

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

.global-header {
	position: sticky;
	z-index: 200;
	top: 0;
	height: var(--global-header-height);
	border: 0;
	border-bottom: 1px solid rgba(0, 62, 81, 0.14);
	background: rgba(255, 255, 255, 0.97);
	box-shadow: none;
	backdrop-filter: blur(16px);
	transition: box-shadow 180ms var(--wd-ease), background-color 180ms var(--wd-ease);
}

.admin-bar .global-header {
	top: 32px;
}

.global-header.is-scrolled {
	background: rgba(255, 255, 255, 0.985);
	box-shadow: 0 14px 34px rgba(0, 42, 56, 0.08);
}

.global-header__inner {
	height: 100%;
	display: flex;
	flex-flow: row nowrap;
	align-items: center;
	justify-content: space-between;
	gap: clamp(18px, 2vw, 30px);
	padding: 0;
}

.global-header__brand,
.global-header__brand .custom-logo-link,
.global-header__brand > a {
	display: block;
	flex: 0 0 auto;
	width: clamp(178px, 17vw, 228px);
	text-decoration: none;
}

.global-header__brand img,
.global-header__brand .custom-logo {
	display: block;
	width: 100%;
	height: auto;
	max-height: 62px;
	object-fit: contain;
}

.global-nav {
	display: block;
	margin-left: auto;
}

.global-nav__menu,
.global-footer__menu,
.global-footer__legal {
	margin: 0;
	padding: 0;
	list-style: none;
}

.global-nav__menu {
	display: flex;
	flex-flow: row nowrap;
	align-items: center;
	gap: clamp(13px, 1.35vw, 22px);
}

.global-nav__menu li {
	margin: 0;
	padding: 0;
}

.global-nav__menu a {
	display: inline-flex;
	min-height: 44px;
	align-items: center;
	color: var(--wd-teal-dark);
	font: 600 clamp(0.76rem, 1vw, 0.86rem)/1.2 "Inter", system-ui, sans-serif;
	text-decoration: none;
	white-space: nowrap;
	transition: color 180ms var(--wd-ease);
}

.global-nav__menu a:hover,
.global-nav__menu .current-menu-item > a,
.global-nav__menu .current_page_item > a {
	color: var(--wd-teal-light);
	opacity: 1;
}

.global-header__actions {
	display: flex;
	flex: 0 0 auto;
	align-items: center;
	gap: 14px;
}

.global-header__phone {
	display: inline-flex;
	min-height: 44px;
	align-items: center;
	color: var(--wd-teal);
	font: 700 0.84rem/1.2 "Inter", system-ui, sans-serif;
	text-decoration: underline;
	text-underline-offset: 0.22em;
}

.global-button {
	display: inline-flex;
	min-height: 48px;
	align-items: center;
	justify-content: center;
	padding: 11px 20px;
	border: 1px solid transparent;
	border-radius: var(--wd-radius);
	font: 700 0.84rem/1.2 "Inter", system-ui, sans-serif;
	text-align: center;
	text-decoration: none;
	transition: transform 180ms var(--wd-ease), background-color 180ms var(--wd-ease), border-color 180ms var(--wd-ease), color 180ms var(--wd-ease);
}

.global-button:hover {
	transform: translateY(-2px);
	opacity: 1;
}

.global-button:active {
	transform: translateY(0) scale(0.98);
}

.global-button--gold {
	background: var(--wd-gold);
	color: var(--wd-teal-dark);
}

.global-button--gold:hover {
	background: #e0b050;
	color: var(--wd-teal-dark);
}

.global-button--outline {
	border-color: var(--wd-teal);
	background: transparent;
	color: var(--wd-teal);
}

.global-header__toggle,
.global-nav__mobile-actions {
	display: none;
}

.global-header__toggle {
	width: 48px;
	height: 54px;
	flex: 0 0 48px;
	align-items: center;
	justify-content: center;
	gap: 4px;
	padding: 4px;
	border: 0;
	background: transparent;
	color: var(--wd-teal-dark);
	font: 700 0.69rem/1 "Inter", system-ui, sans-serif;
}

.global-header__toggle-lines {
	display: grid;
	gap: 5px;
	width: 25px;
}

.global-header__toggle-lines span {
	display: block;
	width: 100%;
	height: 2px;
	background: currentColor;
	transition: transform 180ms var(--wd-ease), opacity 180ms var(--wd-ease);
}

.global-header__toggle-label {
	display: block;
}

.global-header.is-nav-open .global-header__toggle-lines span:nth-child(1) {
	transform: translateY(7px) rotate(45deg);
}

.global-header.is-nav-open .global-header__toggle-lines span:nth-child(2) {
	opacity: 0;
}

.global-header.is-nav-open .global-header__toggle-lines span:nth-child(3) {
	transform: translateY(-7px) rotate(-45deg);
}

.global-header :focus-visible,
.global-footer :focus-visible {
	outline: 3px solid var(--wd-gold);
	outline-offset: 3px;
}

.global-footer {
	position: relative;
	isolation: isolate;
	margin: 0;
	background: var(--wd-teal-dark) url("../media/brand/footer-background.webp") center / cover no-repeat;
	color: var(--wd-white);
	font-family: "Inter", system-ui, sans-serif;
}

.global-footer__shade {
	position: absolute;
	z-index: -1;
	inset: 0;
	background: rgba(0, 30, 40, 0.94);
}

.global-footer__content {
	padding-block: clamp(56px, 6vw, 82px) 28px;
}

.global-footer__grid {
	display: grid;
	grid-template-columns: 1.15fr 1fr 0.8fr 1.25fr;
	gap: clamp(32px, 4vw, 60px);
}

.global-footer__grid > * {
	min-width: 0;
}

.global-footer__brand {
	display: block;
	width: 150px;
	margin-bottom: 20px;
}

.global-footer__brand img {
	display: block;
	width: 100%;
	height: auto;
}

.global-footer__brand-column p,
.global-footer address,
.global-footer__grid p {
	margin: 0 0 18px;
	color: rgba(255, 255, 255, 0.72);
	font-style: normal;
	line-height: 1.65;
}

.global-footer__brand-column .global-button {
	margin-top: 8px;
}

.global-footer h2 {
	margin: 0 0 18px;
	color: #f5cf7f;
	font: 700 0.76rem/1.2 "Inter", system-ui, sans-serif;
	letter-spacing: 0.15em;
	text-transform: uppercase;
}

.global-footer__grid a:not(.global-button):not(.global-footer__brand) {
	display: block;
	width: fit-content;
	min-height: 32px;
	color: rgba(255, 255, 255, 0.88);
	font-size: 0.93rem;
	line-height: 1.5;
	text-underline-offset: 0.24em;
}

.global-footer__grid a:hover {
	color: var(--wd-white);
	opacity: 1;
}

.global-footer__menu li + li {
	margin-top: 4px;
}

.global-footer__hours {
	margin: 0;
}

.global-footer__hours div {
	display: grid;
	grid-template-columns: minmax(72px, 0.75fr) minmax(0, 1.25fr);
	gap: 12px;
	padding: 7px 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.12);
	font-size: 0.79rem;
}

.global-footer__hours dt {
	font-weight: 600;
}

.global-footer__hours dd {
	margin: 0;
	color: rgba(255, 255, 255, 0.68);
	text-align: right;
}

.global-footer__socials {
	display: flex;
	flex-wrap: wrap;
	gap: 9px;
	margin-top: 22px;
}

.global-footer__socials a {
	display: inline-flex !important;
	width: 44px !important;
	height: 44px;
	min-height: 44px !important;
	align-items: center;
	justify-content: center;
	padding: 0;
	border: 1px solid rgba(255, 255, 255, 0.25);
	border-radius: 999px;
	text-decoration: none;
}

.global-footer__socials svg {
	display: block;
	width: 18px;
	height: 18px;
	flex: 0 0 18px;
}

.global-footer__badges {
	display: grid;
	grid-template-columns: repeat(5, minmax(90px, 1fr));
	align-items: center;
	gap: clamp(16px, 2vw, 28px);
	margin-top: clamp(42px, 5vw, 68px);
	padding: 20px clamp(18px, 3vw, 34px);
	border: 1px solid rgba(212, 160, 57, 0.3);
	border-radius: var(--wd-radius);
	background: rgba(0, 28, 38, 0.82);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.global-footer__badges img {
	display: block;
	width: 100%;
	height: 64px;
	object-fit: contain;
	opacity: 0.94;
}

.global-footer__bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	margin-top: 28px;
	padding-top: 24px;
	border-top: 1px solid rgba(255, 255, 255, 0.14);
	color: rgba(255, 255, 255, 0.62);
	font-size: 0.78rem;
}

.global-footer__bottom p {
	margin: 0;
}

.global-footer__bottom nav,
.global-footer__legal {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 16px;
}

.global-footer__bottom a {
	color: inherit;
}

.global-footer__bottom p a {
	text-decoration: underline;
	text-decoration-color: rgba(255, 255, 255, 0.32);
	text-underline-offset: 0.18em;
}

.global-footer__bottom p a:hover,
.global-footer__bottom p a:focus-visible {
	color: var(--wd-white);
	text-decoration-color: currentColor;
}

@media (min-width: 961px) and (max-width: 1199px) {
	.global-header__brand,
	.global-header__brand .custom-logo-link,
	.global-header__brand > a {
		width: 180px;
	}

	.global-header__phone {
		display: none;
	}

}

@media (max-width: 960px) {
	:root {
		--global-header-height: 78px;
	}

	.global-header__inner {
		flex-wrap: nowrap;
	}

	.global-header__actions {
		display: none;
	}

	.global-header__toggle {
		display: flex;
		flex-direction: column;
		margin-left: auto;
		order: 2;
	}

	.global-nav {
		position: fixed;
		z-index: 190;
		inset: var(--global-header-height) 0 auto;
		display: none;
		max-height: calc(100dvh - var(--global-header-height));
		margin: 0;
		padding: 22px 24px 28px;
		overflow-y: auto;
		border-top: 1px solid rgba(0, 62, 81, 0.12);
		background: var(--wd-white);
		box-shadow: 0 24px 48px rgba(0, 42, 56, 0.16);
	}

	.admin-bar .global-nav {
		inset-block-start: calc(var(--global-header-height) + 32px);
	}

	.global-header.is-nav-open .global-nav {
		display: block;
	}

	.global-nav__menu {
		display: grid;
		gap: 0;
	}

	.global-nav__menu a {
		width: 100%;
		min-height: 50px;
		border-bottom: 1px solid rgba(0, 62, 81, 0.14);
		font-size: 1rem;
	}

	.global-nav__mobile-actions {
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 12px;
		margin-top: 20px;
	}

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

@media (max-width: 782px) {
	.admin-bar .global-header {
		top: 46px;
	}

	.admin-bar .global-nav {
		inset-block-start: calc(var(--global-header-height) + 46px);
	}
}

@media (max-width: 768px) {
	.admin-bar .global-header {
		top: 0;
	}

	.admin-bar .global-nav {
		inset-block-start: var(--global-header-height);
	}

	.global-shell {
		width: min(var(--wd-shell), calc(100% - 32px));
	}

	.global-header__brand,
	.global-header__brand .custom-logo-link,
	.global-header__brand > a {
		width: 185px;
	}

	.global-footer__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 36px;
	}

	.global-footer__brand-column {
		grid-column: 1 / -1;
		max-width: 34rem;
	}

	.global-footer__connect-column {
		grid-column: 1 / -1;
	}

	.global-footer__brand-column p {
		max-width: 34ch;
	}

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

	.global-footer__badges img:last-child {
		grid-column: 1 / -1;
		justify-self: center;
		width: 50%;
	}

	.global-footer__bottom,
	.global-footer__bottom nav {
		align-items: flex-start;
		flex-direction: column;
	}
}

@media (max-width: 480px) {
	.global-header__brand,
	.global-header__brand .custom-logo-link,
	.global-header__brand > a {
		width: 168px;
	}

	.global-nav__mobile-actions {
		grid-template-columns: minmax(0, 1fr);
	}

	.global-footer__grid {
		grid-template-columns: minmax(0, 1fr);
	}

	.global-footer__brand-column,
	.global-footer__connect-column {
		grid-column: auto;
	}
}

@media (prefers-reduced-motion: reduce) {
	.global-header,
	.global-header *,
	.global-footer * {
		transition-duration: 0.01ms !important;
	}
}
