/* ==========================================================================
   Church H2O — design system
   --------------------------------------------------------------------------
   One file, no build step, no external font or CDN request. Everything below
   is organised as: tokens, reset, primitives, layout, components, utilities.

   The palette is drawn from water — deep harbour blue through to shallow
   foam — with a single warm sand accent reserved for giving, so "Give" never
   competes with ordinary navigation.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Tokens
   -------------------------------------------------------------------------- */

:root {
	/* Palette */
	--h2o-abyss: #041c2c;
	--h2o-harbour: #072c44;
	--h2o-deep: #0a3d62;
	--h2o-blue: #1174b8;
	--h2o-surf: #2ea9d6;
	--h2o-foam: #7fd9e8;
	--h2o-mist: #e8f4fa;
	--h2o-shell: #f6fafc;

	--h2o-accent: #e0a458;
	--h2o-accent-deep: #c4863a;

	/* Semantic */
	--h2o-bg: #ffffff;
	--h2o-bg-alt: var(--h2o-shell);
	--h2o-surface: #ffffff;
	--h2o-text: #0e2432;
	--h2o-text-soft: #53707f;
	--h2o-text-invert: #ffffff;
	--h2o-line: #dbe8f0;
	--h2o-link: var(--h2o-blue);
	--h2o-link-hover: var(--h2o-deep);

	/* Type — system stacks so nothing is fetched from Google.
	   To use a self-hosted webfont, drop the .woff2 into assets/fonts/,
	   add an @font-face below, and put the family first in --h2o-font-display. */
	--h2o-font-display: "Avenir Next", "Segoe UI", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
	--h2o-font-body: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
	--h2o-font-mono: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, monospace;

	/* A fluid type scale. clamp() means no breakpoint juggling. */
	--h2o-step--1: clamp(0.83rem, 0.81rem + 0.1vw, 0.89rem);
	--h2o-step-0: clamp(1rem, 0.96rem + 0.18vw, 1.12rem);
	--h2o-step-1: clamp(1.2rem, 1.13rem + 0.35vw, 1.45rem);
	--h2o-step-2: clamp(1.44rem, 1.31rem + 0.63vw, 1.9rem);
	--h2o-step-3: clamp(1.73rem, 1.52rem + 1.05vw, 2.5rem);
	--h2o-step-4: clamp(2.07rem, 1.72rem + 1.75vw, 3.3rem);
	--h2o-step-5: clamp(2.49rem, 1.92rem + 2.85vw, 4.4rem);

	/* Space */
	--h2o-gap-xs: 0.5rem;
	--h2o-gap-sm: 0.875rem;
	--h2o-gap: 1.5rem;
	--h2o-gap-lg: 2.5rem;
	--h2o-gap-xl: 4rem;
	--h2o-section: clamp(3.5rem, 2.5rem + 4vw, 6.5rem);

	/* Shape */
	--h2o-radius-sm: 10px;
	--h2o-radius-md: 16px;
	--h2o-radius-lg: 24px;
	--h2o-radius-pill: 999px;

	--h2o-shadow-sm: 0 6px 18px -12px rgb(4 28 44 / 0.45);
	--h2o-shadow-md: 0 18px 44px -24px rgb(4 28 44 / 0.4);
	--h2o-shadow-lg: 0 34px 70px -32px rgb(4 28 44 / 0.45);

	--h2o-wrap: 76rem;
	--h2o-wrap-narrow: 46rem;

	--h2o-ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* Dark mode. Opt-in via the OS; nothing to configure. */
@media (prefers-color-scheme: dark) {
	:root:not([data-theme="light"]) {
		--h2o-bg: #061725;
		--h2o-bg-alt: #0a2132;
		--h2o-surface: #0d2a3d;
		--h2o-text: #e7f2f8;
		--h2o-text-soft: #9db8c7;
		--h2o-line: #16394f;
		--h2o-mist: #0a2132;
		--h2o-shell: #061725;
		--h2o-link: var(--h2o-foam);
		--h2o-link-hover: #ffffff;
		--h2o-shadow-sm: 0 6px 18px -12px rgb(0 0 0 / 0.7);
		--h2o-shadow-md: 0 18px 44px -24px rgb(0 0 0 / 0.75);
		--h2o-shadow-lg: 0 34px 70px -32px rgb(0 0 0 / 0.8);
	}
}

:root[data-theme="dark"] {
	--h2o-bg: #061725;
	--h2o-bg-alt: #0a2132;
	--h2o-surface: #0d2a3d;
	--h2o-text: #e7f2f8;
	--h2o-text-soft: #9db8c7;
	--h2o-line: #16394f;
	--h2o-mist: #0a2132;
	--h2o-shell: #061725;
	--h2o-link: var(--h2o-foam);
	--h2o-link-hover: #ffffff;
}

/* --------------------------------------------------------------------------
   2. Reset
   -------------------------------------------------------------------------- */

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

* {
	margin: 0;
}

html {
	-webkit-text-size-adjust: 100%;
	scroll-behavior: smooth;
	scroll-padding-top: 6rem;
}

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

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

/* `:root body` rather than plain `body`, deliberately.
 *
 * WordPress generates a stylesheet from theme.json and emits its rules as
 * `:root :where(...)`, which outranks a bare element selector no matter what
 * order the stylesheets load in. Anything the theme needs to control across
 * light and dark has to out-specify that, or the generated sheet silently
 * wins — which is exactly how every heading on the site ended up unreadable
 * in dark mode. theme.json now declares no colours that dark mode has to
 * override, and this keeps it that way by construction. */
:root body {
	margin: 0;
	background: var(--h2o-bg);
	color: var(--h2o-text);
	font-family: var(--h2o-font-body);
	font-size: var(--h2o-step-0);
	line-height: 1.65;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
	overflow-wrap: break-word;
}

img,
picture,
svg,
video,
canvas {
	display: block;
	max-width: 100%;
	height: auto;
}

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

h1, h2, h3, h4, h5, h6 {
	font-family: var(--h2o-font-display);
	font-weight: 700;
	line-height: 1.15;
	letter-spacing: -0.015em;
	text-wrap: balance;
}

p, li {
	text-wrap: pretty;
}

a {
	color: var(--h2o-link);
	text-decoration-thickness: 1px;
	text-underline-offset: 0.18em;
	transition: color 0.18s var(--h2o-ease);
}

a:hover {
	color: var(--h2o-link-hover);
}

:where(a, button, input, textarea, select, summary, [tabindex]):focus-visible {
	outline: 3px solid var(--h2o-surf);
	outline-offset: 3px;
	border-radius: 4px;
}

hr {
	border: 0;
	height: 1px;
	background: var(--h2o-line);
	margin: var(--h2o-gap-lg) 0;
}

/* --------------------------------------------------------------------------
   3. Layout primitives
   -------------------------------------------------------------------------- */

.wrap {
	width: min(100% - 2.5rem, var(--h2o-wrap));
	margin-inline: auto;
}

.wrap--narrow {
	width: min(100% - 2.5rem, var(--h2o-wrap-narrow));
}

@media (max-width: 30rem) {
	.wrap,
	.wrap--narrow {
		width: calc(100% - 2rem);
	}
}

.site {
	display: flex;
	flex-direction: column;
	min-height: 100dvh;
}

.site-main {
	flex: 1;
}

.screen-reader-text {
	position: absolute !important;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip-path: inset(50%);
	white-space: nowrap;
	border: 0;
}

.skip-link:focus {
	position: fixed !important;
	top: 1rem;
	left: 1rem;
	z-index: 999;
	width: auto;
	height: auto;
	clip-path: none;
	padding: 0.75rem 1.25rem;
	background: var(--h2o-deep);
	color: #fff;
	border-radius: var(--h2o-radius-sm);
}

/* --------------------------------------------------------------------------
   4. Buttons and links
   -------------------------------------------------------------------------- */

.h2o-btn {
	--btn-bg: var(--h2o-blue);
	--btn-fg: #fff;
	--btn-border: transparent;

	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	padding: 0.72rem 1.45rem;
	border: 1.5px solid var(--btn-border);
	border-radius: var(--h2o-radius-pill);
	background: var(--btn-bg);
	color: var(--btn-fg);
	font-family: var(--h2o-font-display);
	font-size: 0.95rem;
	font-weight: 600;
	line-height: 1.2;
	letter-spacing: 0.005em;
	text-decoration: none;
	cursor: pointer;
	white-space: nowrap;
	transition: transform 0.18s var(--h2o-ease), box-shadow 0.18s var(--h2o-ease),
		background-color 0.18s var(--h2o-ease), color 0.18s var(--h2o-ease);
}

.h2o-btn:hover {
	color: var(--btn-fg);
	transform: translateY(-1px);
	box-shadow: var(--h2o-shadow-sm);
}

.h2o-btn:active {
	transform: translateY(0);
}

.h2o-btn--primary {
	--btn-bg: var(--h2o-deep);
}

.h2o-btn--primary:hover {
	--btn-bg: var(--h2o-blue);
}

.h2o-btn--accent {
	--btn-bg: var(--h2o-accent);
	--btn-fg: #2b1b06;
}

.h2o-btn--accent:hover {
	--btn-bg: var(--h2o-accent-deep);
	--btn-fg: #fff;
}

.h2o-btn--ghost {
	--btn-bg: transparent;
	--btn-fg: var(--h2o-deep);
	--btn-border: var(--h2o-line);
}

.h2o-btn--ghost:hover {
	--btn-bg: var(--h2o-mist);
	--btn-border: var(--h2o-surf);
	--btn-fg: var(--h2o-deep);
}

@media (prefers-color-scheme: dark) {
	:root:not([data-theme="light"]) .h2o-btn--ghost {
		--btn-fg: var(--h2o-foam);
	}
}

.h2o-btn--ghost-light {
	--btn-bg: rgb(255 255 255 / 0.1);
	--btn-fg: #fff;
	--btn-border: rgb(255 255 255 / 0.55);
	backdrop-filter: blur(6px);
}

.h2o-btn--ghost-light:hover {
	--btn-bg: rgb(255 255 255 / 0.2);
	--btn-border: #fff;
}

.h2o-btn--sm {
	padding: 0.5rem 1.05rem;
	font-size: 0.875rem;
}

.h2o-btn--lg {
	padding: 0.95rem 2rem;
	font-size: 1.02rem;
}

.h2o-link {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	font-weight: 600;
	text-decoration: none;
	border-bottom: 1.5px solid currentColor;
	padding-bottom: 1px;
}

.h2o-link .h2o-icon {
	transition: transform 0.18s var(--h2o-ease);
}

.h2o-link:hover .h2o-icon {
	transform: translateX(3px);
}

.h2o-icon {
	flex: none;
}

/* --------------------------------------------------------------------------
   5. Header and navigation
   -------------------------------------------------------------------------- */

.site-header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: color-mix(in srgb, var(--h2o-bg) 88%, transparent);
	backdrop-filter: saturate(180%) blur(14px);
	border-bottom: 1px solid var(--h2o-line);
	transition: background-color 0.25s var(--h2o-ease), border-color 0.25s var(--h2o-ease);
}

/* Over the homepage hero the header floats until the page is scrolled. */
.has-transparent-header .site-header {
	position: fixed;
	inset-inline: 0;
	background: transparent;
	backdrop-filter: none;
	border-bottom-color: transparent;
	color: #fff;
}

.has-transparent-header .site-header.is-stuck {
	position: fixed;
	background: color-mix(in srgb, var(--h2o-bg) 92%, transparent);
	backdrop-filter: saturate(180%) blur(14px);
	border-bottom-color: var(--h2o-line);
	color: var(--h2o-text);
}

.site-header__inner {
	display: flex;
	align-items: center;
	gap: var(--h2o-gap);
	min-height: 5rem;
}

.site-header__brand {
	flex: none;
	margin-inline-end: auto;
}

.brand,
.custom-logo-link {
	display: inline-flex;
	align-items: center;
	gap: 0.7rem;
	text-decoration: none;
	color: inherit;
}

.custom-logo {
	max-height: 3.1rem;
	width: auto;
}

.brand__mark {
	display: grid;
	place-items: center;
}

.brand__text {
	display: grid;
	gap: 0.1rem;
}

.brand__name {
	display: block;
	font-family: var(--h2o-font-display);
	font-size: 1.2rem;
	font-weight: 700;
	letter-spacing: -0.02em;
	line-height: 1.1;
}

.brand__tagline {
	display: block;
	font-size: 0.72rem;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	opacity: 0.68;
}

.nav__list,
.nav__submenu {
	list-style: none;
	margin: 0;
	padding: 0;
}

.nav__list {
	display: flex;
	align-items: center;
	gap: 0.25rem;
}

.nav__item {
	position: relative;
}

.nav__link {
	display: inline-block;
	padding: 0.55rem 0.85rem;
	border-radius: var(--h2o-radius-pill);
	font-family: var(--h2o-font-display);
	font-size: 0.94rem;
	font-weight: 600;
	color: inherit;
	text-decoration: none;
	transition: background-color 0.18s var(--h2o-ease);
}

.nav__link:hover,
.nav__item.current-menu-item > .nav__link,
.nav__item.current-menu-ancestor > .nav__link {
	background: color-mix(in srgb, currentColor 12%, transparent);
	color: inherit;
}

.nav__item--parent {
	display: flex;
	align-items: center;
}

.nav__toggle {
	display: inline-grid;
	place-items: center;
	padding: 0.3rem;
	margin-inline-start: -0.5rem;
	border: 0;
	background: none;
	color: inherit;
	cursor: pointer;
	border-radius: 50%;
}

.nav__toggle .h2o-icon {
	transition: transform 0.2s var(--h2o-ease);
}

.nav__toggle[aria-expanded="true"] .h2o-icon {
	transform: rotate(180deg);
}

.nav__submenu {
	position: absolute;
	top: calc(100% + 0.4rem);
	inset-inline-start: 0;
	min-width: 14rem;
	padding: 0.5rem;
	background: var(--h2o-surface);
	color: var(--h2o-text);
	border: 1px solid var(--h2o-line);
	border-radius: var(--h2o-radius-md);
	box-shadow: var(--h2o-shadow-md);
	opacity: 0;
	visibility: hidden;
	transform: translateY(-6px);
	transition: opacity 0.18s var(--h2o-ease), transform 0.18s var(--h2o-ease), visibility 0.18s;
}

.nav__item--parent:hover > .nav__submenu,
.nav__item--parent:focus-within > .nav__submenu,
.nav__toggle[aria-expanded="true"] + .nav__submenu,
.nav__item--parent.is-open > .nav__submenu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.nav__submenu .nav__link {
	display: block;
	width: 100%;
	border-radius: var(--h2o-radius-sm);
	padding: 0.55rem 0.75rem;
}

.site-header__actions {
	display: flex;
	align-items: center;
	gap: 0.6rem;
	flex: none;
}

.nav-toggle {
	display: none;
	padding: 0.45rem;
	border: 1.5px solid color-mix(in srgb, currentColor 30%, transparent);
	border-radius: var(--h2o-radius-sm);
	background: none;
	color: inherit;
	cursor: pointer;
}

.nav-toggle__close {
	display: none;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__open {
	display: none;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__close {
	display: block;
}

/* Mobile navigation */
@media (max-width: 62rem) {
	.nav-toggle {
		display: block;
	}

	.nav {
		position: fixed;
		inset: 5rem 0 auto;
		max-height: calc(100dvh - 5rem);
		overflow-y: auto;
		padding: 1rem 1.25rem 2rem;
		background: var(--h2o-surface);
		color: var(--h2o-text);
		border-bottom: 1px solid var(--h2o-line);
		box-shadow: var(--h2o-shadow-lg);
		transform: translateY(-120%);
		transition: transform 0.28s var(--h2o-ease);
	}

	.nav.is-open {
		transform: translateY(0);
	}

	.nav__list {
		flex-direction: column;
		align-items: stretch;
		gap: 0.1rem;
	}

	.nav__item--parent {
		flex-wrap: wrap;
		justify-content: space-between;
	}

	.nav__link {
		flex: 1;
		padding: 0.85rem 0.75rem;
		font-size: 1.05rem;
	}

	.nav__submenu {
		position: static;
		width: 100%;
		order: 3;
		opacity: 1;
		visibility: visible;
		transform: none;
		box-shadow: none;
		border: 0;
		border-inline-start: 2px solid var(--h2o-line);
		border-radius: 0;
		margin-inline-start: 0.75rem;
		padding-block: 0;
		display: none;
	}

	.nav__item--parent.is-open > .nav__submenu {
		display: block;
	}

	.has-transparent-header .nav {
		color: var(--h2o-text);
	}
}

/* --------------------------------------------------------------------------
   6. Hero
   -------------------------------------------------------------------------- */

.hero {
	position: relative;
	display: grid;
	align-items: center;
	min-height: min(82vh, 46rem);
	padding: 9rem 0 7rem;
	color: #fff;
	background: linear-gradient(155deg, var(--h2o-abyss), var(--h2o-deep) 45%, var(--h2o-blue));
	overflow: hidden;
	isolation: isolate;
}

.hero__media {
	position: absolute;
	inset: 0;
	z-index: -2;
}

.hero__image {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hero__scrim {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(180deg, rgb(4 28 44 / 0.62) 0%, rgb(4 28 44 / 0.35) 45%, rgb(4 28 44 / 0.78) 100%),
		linear-gradient(100deg, rgb(7 44 68 / 0.7), rgb(17 116 184 / 0.25));
}

/* A slow, very low-contrast caustic shimmer. Pure CSS, no image, and it stops
   entirely for anyone who has asked for reduced motion. */
.hero__caustics {
	position: absolute;
	inset: -20%;
	background:
		radial-gradient(40rem 22rem at 20% 25%, rgb(127 217 232 / 0.16), transparent 70%),
		radial-gradient(34rem 20rem at 78% 68%, rgb(46 169 214 / 0.18), transparent 72%);
	filter: blur(6px);
	animation: h2o-drift 26s ease-in-out infinite alternate;
}

@keyframes h2o-drift {
	from {
		transform: translate3d(-2%, -1%, 0) scale(1);
	}
	to {
		transform: translate3d(3%, 2%, 0) scale(1.08);
	}
}

@media (prefers-reduced-motion: reduce) {
	.hero__caustics {
		animation: none;
	}
}

.hero__inner {
	position: relative;
	max-width: 44rem;
}

.hero__eyebrow {
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--h2o-foam);
	margin-bottom: 1rem;
}

.hero__heading {
	font-size: var(--h2o-step-5);
	line-height: 1.02;
	letter-spacing: -0.03em;
	margin-bottom: 1.1rem;
	text-shadow: 0 2px 30px rgb(4 28 44 / 0.35);
}

.hero__text {
	font-size: var(--h2o-step-1);
	line-height: 1.55;
	color: rgb(255 255 255 / 0.9);
	max-width: 36rem;
}

.hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.85rem;
	margin-top: 2rem;
}

.hero__verse {
	margin-top: 2.5rem;
	font-size: 0.95rem;
	font-style: italic;
	color: rgb(255 255 255 / 0.72);
	padding-inline-start: 1rem;
	border-inline-start: 2px solid rgb(127 217 232 / 0.6);
}

.hero__wave {
	position: absolute;
	inset-inline: 0;
	bottom: -1px;
	line-height: 0;
	pointer-events: none;
}

.hero__wave svg {
	width: 100%;
	height: clamp(48px, 7vw, 110px);
	fill: var(--h2o-bg);
}

/* --------------------------------------------------------------------------
   7. Page header (interior pages)
   -------------------------------------------------------------------------- */

.page-header {
	position: relative;
	padding: clamp(6rem, 5rem + 5vw, 9rem) 0 clamp(2.5rem, 2rem + 2vw, 4rem);
	background: linear-gradient(160deg, var(--h2o-harbour), var(--h2o-deep) 60%, var(--h2o-blue));
	color: #fff;
	overflow: hidden;
	text-align: center;
}

.page-header__wave {
	position: absolute;
	inset: 0;
	background:
		radial-gradient(30rem 18rem at 12% 10%, rgb(127 217 232 / 0.18), transparent 70%),
		radial-gradient(26rem 16rem at 88% 90%, rgb(46 169 214 / 0.2), transparent 72%);
	pointer-events: none;
}

.page-header__verse {
	position: relative;
	font-size: 0.8rem;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--h2o-foam);
	margin-bottom: 0.9rem;
}

.page-header__title {
	position: relative;
	font-size: var(--h2o-step-4);
	letter-spacing: -0.025em;
}

.page-header__subtitle {
	position: relative;
	margin-top: 0.85rem;
	font-size: var(--h2o-step-1);
	color: rgb(255 255 255 / 0.82);
	max-width: 42rem;
	margin-inline: auto;
}

.breadcrumbs {
	padding-block: 1.1rem;
	font-size: 0.85rem;
	color: var(--h2o-text-soft);
}

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

.breadcrumbs li + li::before {
	content: "/";
	margin-inline-end: 0.45rem;
	opacity: 0.5;
}

.breadcrumbs a {
	color: inherit;
	text-decoration: none;
}

.breadcrumbs a:hover {
	color: var(--h2o-link);
	text-decoration: underline;
}

/* --------------------------------------------------------------------------
   8. Sections
   -------------------------------------------------------------------------- */

.h2o-eyebrow {
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--h2o-blue);
	margin-bottom: 0.7rem;
}

.h2o-eyebrow--light {
	color: var(--h2o-foam);
}

.section__heading {
	font-size: var(--h2o-step-3);
	max-width: 22ch;
}

.section__head {
	display: flex;
	flex-wrap: wrap;
	align-items: end;
	justify-content: space-between;
	gap: var(--h2o-gap);
	margin-bottom: var(--h2o-gap-lg);
}

.h2o-lede {
	font-size: var(--h2o-step-1);
	color: var(--h2o-text-soft);
	max-width: 44ch;
}

.h2o-section {
	padding-block: var(--h2o-section);
}

/* Service times band */

.times {
	padding-block: clamp(2.5rem, 2rem + 2vw, 4rem);
	background: var(--h2o-bg-alt);
	border-block: 1px solid var(--h2o-line);
}

.times__heading {
	font-size: 0.8rem;
	font-weight: 700;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--h2o-text-soft);
	text-align: center;
	margin-bottom: 1.6rem;
}

.times__list {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.75rem var(--h2o-gap-lg);
	list-style: none;
	margin: 0;
	padding: 0;
}

.times__item {
	display: flex;
	align-items: center;
	gap: 0.6rem;
}

.times__item .h2o-icon {
	color: var(--h2o-surf);
}

.times__label {
	color: var(--h2o-text-soft);
}

.times__value {
	font-family: var(--h2o-font-display);
	font-weight: 700;
	font-size: 1.1rem;
	font-variant-numeric: tabular-nums;
}

.times__place {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	margin-top: 1.5rem;
	font-size: 0.95rem;
	color: var(--h2o-text-soft);
}

.times__place .h2o-icon {
	color: var(--h2o-surf);
}

/* Next steps */

.next-steps,
.sermon-strip,
.child-pages,
.home-content {
	padding-block: var(--h2o-section);
}

.child-pages,
.home-content {
	padding-block: clamp(2rem, 1.5rem + 2vw, 3.5rem);
}

.next-steps__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
	gap: var(--h2o-gap);
	margin-top: var(--h2o-gap-lg);
}

.step-card {
	display: flex;
	flex-direction: column;
	background: var(--h2o-surface);
	border: 1px solid var(--h2o-line);
	border-radius: var(--h2o-radius-lg);
	overflow: hidden;
	text-decoration: none;
	color: inherit;
	transition: transform 0.22s var(--h2o-ease), box-shadow 0.22s var(--h2o-ease), border-color 0.22s var(--h2o-ease);
}

.step-card:hover {
	transform: translateY(-4px);
	border-color: color-mix(in srgb, var(--h2o-surf) 55%, transparent);
	box-shadow: var(--h2o-shadow-md);
	color: inherit;
}

.step-card__media {
	display: block;
	aspect-ratio: 4 / 3;
	overflow: hidden;
	background: linear-gradient(140deg, var(--h2o-deep), var(--h2o-surf));
}

.step-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s var(--h2o-ease);
}

.step-card:hover .step-card__media img {
	transform: scale(1.05);
}

.step-card__body {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	padding: 1.4rem 1.5rem 1.6rem;
	flex: 1;
}

.step-card__title {
	font-family: var(--h2o-font-display);
	font-size: 1.22rem;
	font-weight: 700;
	line-height: 1.25;
}

.step-card__text {
	font-size: 0.95rem;
	color: var(--h2o-text-soft);
	flex: 1;
}

.step-card__more {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	margin-top: 0.35rem;
	font-size: 0.9rem;
	font-weight: 700;
	color: var(--h2o-link);
}

.step-card:hover .step-card__more .h2o-icon {
	transform: translateX(3px);
}

.step-card__more .h2o-icon {
	transition: transform 0.2s var(--h2o-ease);
}

/* --------------------------------------------------------------------------
   9. Sermons
   -------------------------------------------------------------------------- */

.sermon-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(17rem, 1fr));
	gap: var(--h2o-gap);
}

.sermon-card__link {
	display: flex;
	flex-direction: column;
	height: 100%;
	text-decoration: none;
	color: inherit;
	background: var(--h2o-surface);
	border: 1px solid var(--h2o-line);
	border-radius: var(--h2o-radius-lg);
	overflow: hidden;
	transition: transform 0.22s var(--h2o-ease), box-shadow 0.22s var(--h2o-ease), border-color 0.22s var(--h2o-ease);
}

.sermon-card__link:hover {
	transform: translateY(-4px);
	border-color: color-mix(in srgb, var(--h2o-surf) 55%, transparent);
	box-shadow: var(--h2o-shadow-md);
	color: inherit;
}

.sermon-card__media {
	position: relative;
	display: block;
	aspect-ratio: 16 / 10;
	overflow: hidden;
}

.sermon-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.sermon-card__placeholder {
	display: block;
	width: 100%;
	height: 100%;
	background:
		radial-gradient(18rem 12rem at 30% 20%, rgb(127 217 232 / 0.35), transparent 70%),
		linear-gradient(150deg, var(--h2o-harbour), var(--h2o-blue));
}

.sermon-card__play {
	position: absolute;
	inset-block-end: 0.9rem;
	inset-inline-start: 0.9rem;
	display: grid;
	place-items: center;
	width: 2.75rem;
	height: 2.75rem;
	border-radius: 50%;
	background: rgb(255 255 255 / 0.92);
	color: var(--h2o-deep);
	box-shadow: var(--h2o-shadow-sm);
	transition: transform 0.22s var(--h2o-ease);
}

.sermon-card__link:hover .sermon-card__play {
	transform: scale(1.08);
}

.sermon-card__body {
	display: flex;
	flex-direction: column;
	gap: 0.35rem;
	padding: 1.25rem 1.4rem 1.5rem;
	flex: 1;
}

.sermon-card__series {
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--h2o-blue);
}

.sermon-card__title {
	font-family: var(--h2o-font-display);
	font-size: 1.15rem;
	font-weight: 700;
	line-height: 1.3;
}

.sermon-card__meta {
	font-size: 0.87rem;
	color: var(--h2o-text-soft);
	margin-top: auto;
	padding-top: 0.4rem;
}

.filter-bar {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	margin-bottom: var(--h2o-gap-lg);
}

.filter-bar__chip {
	padding: 0.42rem 1rem;
	border: 1px solid var(--h2o-line);
	border-radius: var(--h2o-radius-pill);
	font-size: 0.875rem;
	font-weight: 600;
	text-decoration: none;
	color: var(--h2o-text-soft);
	transition: all 0.18s var(--h2o-ease);
}

.filter-bar__chip:hover,
.filter-bar__chip.is-current {
	background: var(--h2o-deep);
	border-color: var(--h2o-deep);
	color: #fff;
}

.sermon__player {
	margin-block: var(--h2o-gap-lg);
}

.sermon__embed iframe,
.sermon__video {
	width: 100%;
	aspect-ratio: 16 / 9;
	border: 0;
	border-radius: var(--h2o-radius-lg);
	background: #000;
	box-shadow: var(--h2o-shadow-md);
}

.sermon__audio {
	margin-block: var(--h2o-gap);
}

.sermon__audio-label {
	display: flex;
	align-items: center;
	gap: 0.4rem;
	font-size: 0.8rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--h2o-text-soft);
	margin-bottom: 0.5rem;
}

.sermon__audio audio {
	width: 100%;
}

.sermon__downloads {
	margin-block: var(--h2o-gap-lg);
}

.sermon__pagination {
	display: flex;
	justify-content: space-between;
	gap: var(--h2o-gap);
	padding-block: var(--h2o-gap-lg) var(--h2o-section);
	border-top: 1px solid var(--h2o-line);
	margin-top: var(--h2o-gap-lg);
	font-weight: 600;
}

.sermon__pagination a {
	text-decoration: none;
}

.sermon__prev,
.sermon__next {
	max-width: 22rem;
}

.sermon__next {
	margin-inline-start: auto;
	text-align: end;
}

/* The sermon page header carries the series name where other pages carry a
   verse, so it wants a touch less vertical weight. */
.page-header--sermon {
	padding-bottom: clamp(2rem, 1.6rem + 1.5vw, 3rem);
}

/* --------------------------------------------------------------------------
   10. Leadership
   -------------------------------------------------------------------------- */

.team {
	display: grid;
	gap: var(--h2o-gap-lg);
	padding-bottom: var(--h2o-section);
}

.team__member {
	display: grid;
	grid-template-columns: 13rem 1fr;
	gap: var(--h2o-gap-lg);
	align-items: start;
	padding: var(--h2o-gap-lg);
	background: var(--h2o-surface);
	border: 1px solid var(--h2o-line);
	border-radius: var(--h2o-radius-lg);
}

.team__portrait {
	position: relative;
	aspect-ratio: 1;
	border-radius: var(--h2o-radius-md);
	overflow: hidden;
	background: linear-gradient(145deg, var(--h2o-deep), var(--h2o-surf));
}

.team__portrait img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.team__portrait-fallback {
	display: grid;
	place-items: center;
	width: 100%;
	height: 100%;
	font-family: var(--h2o-font-display);
	font-size: 3.5rem;
	font-weight: 700;
	color: rgb(255 255 255 / 0.85);
}

.team__body {
	min-width: 0;
}

.team__bio > * + * {
	margin-top: 1em;
}

.team__name {
	font-size: var(--h2o-step-2);
}

.team__role {
	margin-top: 0.2rem;
	margin-bottom: 1rem;
	font-size: 0.8rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--h2o-blue);
}

.team__contact {
	margin-top: 1rem;
}

@media (max-width: 46rem) {
	.team__member {
		grid-template-columns: 1fr;
		gap: var(--h2o-gap);
		padding: var(--h2o-gap);
	}

	.team__portrait {
		max-width: 11rem;
	}
}

/* --------------------------------------------------------------------------
   11. Give page
   -------------------------------------------------------------------------- */

.give-layout {
	display: grid;
	grid-template-columns: minmax(0, 1.55fr) minmax(0, 1fr);
	gap: var(--h2o-gap-lg);
	padding-block: var(--h2o-gap-lg) var(--h2o-section);
	align-items: start;
}

@media (max-width: 58rem) {
	.give-layout {
		grid-template-columns: 1fr;
	}
}

/* min-width:0 stops a wide Planning Center iframe from blowing out the grid
   column on narrow screens — grid children default to min-content width. */
.give-layout__main {
	min-width: 0;
}

.give-layout__copy {
	margin-top: var(--h2o-gap-lg);
}

.give-layout__aside {
	display: grid;
	gap: var(--h2o-gap);
	position: sticky;
	top: 7rem;
}

@media (max-width: 58rem) {
	.give-layout__aside {
		position: static;
	}
}

.give-card {
	padding: 1.75rem;
	background: var(--h2o-surface);
	border: 1px solid var(--h2o-line);
	border-radius: var(--h2o-radius-lg);
	box-shadow: var(--h2o-shadow-sm);
}

.give-card--quiet {
	background: var(--h2o-bg-alt);
	box-shadow: none;
}

.give-card__title {
	font-size: 1.2rem;
	margin-bottom: 1rem;
}

.give-card__list {
	margin: 0;
}

.give-card__list dt {
	font-family: var(--h2o-font-display);
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--h2o-blue);
	margin-top: 1.1rem;
}

.give-card__list dt:first-child {
	margin-top: 0;
}

.give-card__list dd {
	margin: 0.3rem 0 0;
	font-size: 0.95rem;
	color: var(--h2o-text-soft);
}

.give-card__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.6rem;
	margin-top: 1.5rem;
}

.give-band {
	padding-block: var(--h2o-section);
	text-align: center;
	color: #fff;
	background:
		radial-gradient(32rem 20rem at 20% 20%, rgb(127 217 232 / 0.18), transparent 70%),
		linear-gradient(150deg, var(--h2o-abyss), var(--h2o-deep) 55%, var(--h2o-blue));
}

.give-band__heading {
	font-size: var(--h2o-step-3);
	margin-bottom: 0.9rem;
}

.give-band__text {
	color: rgb(255 255 255 / 0.85);
	font-style: italic;
	margin-bottom: 2rem;
}

/* --------------------------------------------------------------------------
   12. Ministries
   -------------------------------------------------------------------------- */

.ministry__layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 19rem;
	gap: var(--h2o-gap-lg);
	align-items: start;
	padding-block: var(--h2o-gap-lg) var(--h2o-section);
}

@media (max-width: 58rem) {
	.ministry__layout {
		grid-template-columns: 1fr;
	}
}

.ministry__aside {
	display: grid;
	gap: var(--h2o-gap);
}

.info-card {
	padding: 1.5rem;
	background: var(--h2o-bg-alt);
	border: 1px solid var(--h2o-line);
	border-radius: var(--h2o-radius-lg);
}

.info-card__title {
	display: flex;
	align-items: center;
	gap: 0.45rem;
	font-size: 0.82rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--h2o-text-soft);
	margin-bottom: 0.9rem;
}

.info-card__title .h2o-icon {
	color: var(--h2o-surf);
}

.info-card__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 0.6rem;
}

.info-card__list li {
	padding-inline-start: 0.85rem;
	border-inline-start: 2px solid var(--h2o-surf);
	font-size: 0.95rem;
}

.info-card--action {
	display: grid;
	background: none;
	border: 0;
	padding: 0;
}

/* --------------------------------------------------------------------------
   13. Editorial content
   -------------------------------------------------------------------------- */

.page-body {
	padding-bottom: var(--h2o-section);
}

.page-body__feature {
	margin-block: var(--h2o-gap-lg);
}

.page-body__feature img {
	width: 100%;
	border-radius: var(--h2o-radius-lg);
	box-shadow: var(--h2o-shadow-md);
}

.entry-content > * + * {
	margin-top: 1.15em;
}

.entry-content h2 {
	font-size: var(--h2o-step-2);
	margin-top: 2.4em;
	scroll-margin-top: 6rem;
}

.entry-content h3 {
	font-size: var(--h2o-step-1);
	margin-top: 2em;
}

.entry-content h2 + p,
.entry-content h3 + p {
	margin-top: 0.7em;
}

.entry-content ul,
.entry-content ol {
	padding-inline-start: 1.3em;
}

.entry-content li + li {
	margin-top: 0.4em;
}

.entry-content img {
	border-radius: var(--h2o-radius-md);
}

.entry-content figure {
	margin-inline: 0;
}

.entry-content figcaption {
	margin-top: 0.6rem;
	font-size: 0.875rem;
	color: var(--h2o-text-soft);
	text-align: center;
}

.entry-content code {
	font-family: var(--h2o-font-mono);
	font-size: 0.9em;
	padding: 0.15em 0.4em;
	background: var(--h2o-mist);
	border-radius: 5px;
}

.entry-content blockquote,
.h2o-verse {
	margin: 2em 0;
	padding: 1.4rem 1.75rem;
	background: var(--h2o-mist);
	border-inline-start: 4px solid var(--h2o-surf);
	border-radius: 0 var(--h2o-radius-md) var(--h2o-radius-md) 0;
	font-size: var(--h2o-step-1);
	font-style: italic;
	color: var(--h2o-text);
}

.entry-content blockquote p,
.h2o-verse p {
	margin: 0;
}

.entry-content blockquote cite,
.h2o-verse cite {
	display: block;
	margin-top: 0.8rem;
	font-size: 0.85rem;
	font-style: normal;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--h2o-blue);
}

.entry-content table {
	width: 100%;
	border-collapse: collapse;
	font-size: 0.95rem;
}

.entry-content th,
.entry-content td {
	padding: 0.7rem 0.9rem;
	border-bottom: 1px solid var(--h2o-line);
	text-align: start;
}

.entry-content th {
	font-family: var(--h2o-font-display);
	font-size: 0.8rem;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--h2o-text-soft);
}

/* Block editor helpers */

.h2o-cards {
	gap: var(--h2o-gap) !important;
	margin-block: var(--h2o-gap-lg);
}

.h2o-card {
	padding: 1.6rem;
	background: var(--h2o-surface);
	border: 1px solid var(--h2o-line);
	border-radius: var(--h2o-radius-lg);
}

.h2o-card h3 {
	font-size: 1.15rem;
	margin-bottom: 0.5rem;
}

.h2o-cta {
	padding: clamp(1.75rem, 1.5rem + 1.5vw, 2.75rem);
	background: var(--h2o-bg-alt);
	border: 1px solid var(--h2o-line);
	border-radius: var(--h2o-radius-lg);
	margin-block: var(--h2o-gap-lg);
	text-align: center;
}

.h2o-cta h2 {
	font-size: var(--h2o-step-2);
	margin-bottom: 0.6rem;
}

.h2o-cta p {
	color: var(--h2o-text-soft);
	max-width: 46ch;
	margin-inline: auto;
	margin-bottom: 1.5rem;
}

.h2o-cta--tide {
	background:
		radial-gradient(24rem 14rem at 15% 20%, rgb(127 217 232 / 0.2), transparent 70%),
		linear-gradient(150deg, var(--h2o-harbour), var(--h2o-blue));
	border-color: transparent;
	color: #fff;
}

.h2o-cta--tide h2 {
	color: #fff;
}

.h2o-cta--tide p {
	color: rgb(255 255 255 / 0.85);
}

.h2o-split {
	gap: var(--h2o-gap-lg) !important;
	margin-block: var(--h2o-gap-lg);
}

.h2o-split__media img {
	width: 100%;
	border-radius: var(--h2o-radius-lg);
	box-shadow: var(--h2o-shadow-md);
}

.h2o-schedule__list {
	list-style: none;
	padding: 0;
	display: grid;
	gap: 0.7rem;
}

.h2o-schedule__list li {
	padding: 0.85rem 1.1rem;
	background: var(--h2o-bg-alt);
	border-inline-start: 3px solid var(--h2o-surf);
	border-radius: 0 var(--h2o-radius-sm) var(--h2o-radius-sm) 0;
}

.h2o-todo {
	padding: 0.9rem 1.15rem;
	background: color-mix(in srgb, var(--h2o-accent) 18%, transparent);
	border: 1px dashed var(--h2o-accent-deep);
	border-radius: var(--h2o-radius-sm);
	font-size: 0.95rem;
}

.h2o-notice {
	padding: clamp(1.5rem, 1.2rem + 1.5vw, 2.5rem);
	background: var(--h2o-bg-alt);
	border: 1px solid var(--h2o-line);
	border-radius: var(--h2o-radius-lg);
	margin-block: var(--h2o-gap-lg);
}

.h2o-notice h2 {
	font-size: var(--h2o-step-1);
	margin-bottom: 0.5rem;
}

.h2o-notice__links {
	list-style: none;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	margin-block: 1rem 1.5rem;
}

/* --------------------------------------------------------------------------
   14. Blog cards
   -------------------------------------------------------------------------- */

.post-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(18rem, 1fr));
	gap: var(--h2o-gap);
	padding-bottom: var(--h2o-section);
}

.post-card {
	background: var(--h2o-surface);
	border: 1px solid var(--h2o-line);
	border-radius: var(--h2o-radius-lg);
	overflow: hidden;
}

.post-card__media {
	display: block;
	aspect-ratio: 16 / 10;
}

.post-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.post-card__body {
	padding: 1.3rem 1.4rem 1.6rem;
}

.post-card__date {
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--h2o-text-soft);
	margin-bottom: 0.4rem;
}

.post-card__title {
	font-size: 1.2rem;
	margin-bottom: 0.5rem;
}

.post-card__title a {
	text-decoration: none;
	color: inherit;
}

.post-card__title a:hover {
	color: var(--h2o-link);
}

.post-card__excerpt {
	font-size: 0.95rem;
	color: var(--h2o-text-soft);
}

.wp-block-query-pagination,
.navigation.pagination {
	display: flex;
	justify-content: center;
	gap: 0.4rem;
	padding-bottom: var(--h2o-section);
}

.navigation.pagination .page-numbers {
	display: grid;
	place-items: center;
	min-width: 2.5rem;
	height: 2.5rem;
	padding-inline: 0.65rem;
	border: 1px solid var(--h2o-line);
	border-radius: var(--h2o-radius-sm);
	text-decoration: none;
	font-weight: 600;
}

.navigation.pagination .page-numbers.current,
.navigation.pagination .page-numbers:hover {
	background: var(--h2o-deep);
	border-color: var(--h2o-deep);
	color: #fff;
}

/* --------------------------------------------------------------------------
   15. Forms
   -------------------------------------------------------------------------- */

.contact-form {
	margin-block: var(--h2o-gap-lg);
}

.contact-form__title {
	font-size: var(--h2o-step-2);
	margin-bottom: 1rem;
}

.contact-form__form {
	display: grid;
	gap: 1.1rem;
	padding: clamp(1.5rem, 1.2rem + 1.5vw, 2.25rem);
	background: var(--h2o-surface);
	border: 1px solid var(--h2o-line);
	border-radius: var(--h2o-radius-lg);
	box-shadow: var(--h2o-shadow-sm);
}

.contact-form__row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1.1rem;
}

@media (max-width: 34rem) {
	.contact-form__row {
		grid-template-columns: 1fr;
	}
}

.contact-form__field {
	display: grid;
	gap: 0.4rem;
	margin: 0;
}

.contact-form__field label {
	font-family: var(--h2o-font-display);
	font-size: 0.85rem;
	font-weight: 700;
	letter-spacing: 0.04em;
}

.contact-form__field span[aria-hidden] {
	color: var(--h2o-accent-deep);
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form textarea,
.search-form input[type="search"] {
	width: 100%;
	padding: 0.72rem 0.95rem;
	background: var(--h2o-bg);
	border: 1.5px solid var(--h2o-line);
	border-radius: var(--h2o-radius-sm);
	transition: border-color 0.18s var(--h2o-ease), box-shadow 0.18s var(--h2o-ease);
}

.contact-form input:focus,
.contact-form textarea:focus,
.search-form input:focus {
	outline: none;
	border-color: var(--h2o-surf);
	box-shadow: 0 0 0 3px color-mix(in srgb, var(--h2o-surf) 25%, transparent);
}

.contact-form textarea {
	resize: vertical;
	min-height: 8rem;
}

.contact-form__hp {
	position: absolute;
	left: -9999px;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

.contact-form__actions {
	margin: 0.3rem 0 0;
}

.contact-form__alert {
	padding: 0.9rem 1.2rem;
	border-radius: var(--h2o-radius-sm);
	margin-bottom: 1.2rem;
	font-weight: 600;
}

.contact-form__alert--ok {
	background: color-mix(in srgb, #1a8f5f 16%, transparent);
	border: 1px solid color-mix(in srgb, #1a8f5f 45%, transparent);
}

.contact-form__alert--bad {
	background: color-mix(in srgb, #c0392b 14%, transparent);
	border: 1px solid color-mix(in srgb, #c0392b 45%, transparent);
}

.search-form {
	display: flex;
	gap: 0.6rem;
	max-width: 30rem;
}

/* --------------------------------------------------------------------------
   16. Footer
   -------------------------------------------------------------------------- */

.site-footer {
	position: relative;
	margin-top: auto;
	padding-top: 1px;
	background: linear-gradient(170deg, var(--h2o-harbour), var(--h2o-abyss));
	color: rgb(255 255 255 / 0.82);
}

.site-footer__wave {
	line-height: 0;
	margin-top: -1px;
}

.site-footer__wave svg {
	width: 100%;
	height: clamp(38px, 5vw, 70px);
	fill: var(--h2o-harbour);
	transform: translateY(1px);
}

.site-footer__inner {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(14rem, 1fr));
	gap: var(--h2o-gap-lg);
	padding-block: var(--h2o-gap-lg) var(--h2o-gap-lg);
}

.footer__col--about {
	grid-column: span 1;
	max-width: 26rem;
}

.footer__heading {
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--h2o-foam);
	margin-bottom: 1rem;
}

.footer__about-text {
	font-size: 0.95rem;
	line-height: 1.7;
}

.footer__social {
	display: flex;
	gap: 0.6rem;
	list-style: none;
	margin: 1.4rem 0 0;
	padding: 0;
}

.footer__social a {
	display: grid;
	place-items: center;
	width: 2.4rem;
	height: 2.4rem;
	border: 1px solid rgb(255 255 255 / 0.22);
	border-radius: 50%;
	color: #fff;
	transition: background-color 0.18s var(--h2o-ease), border-color 0.18s var(--h2o-ease), transform 0.18s var(--h2o-ease);
}

.footer__social a:hover {
	background: var(--h2o-blue);
	border-color: var(--h2o-blue);
	transform: translateY(-2px);
}

.footer__times {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 0.7rem;
}

.footer__times li {
	display: grid;
	gap: 0.1rem;
}

.footer__times-label {
	font-size: 0.85rem;
	opacity: 0.75;
}

.footer__times-value {
	font-family: var(--h2o-font-display);
	font-weight: 700;
	font-size: 1.02rem;
	color: #fff;
	font-variant-numeric: tabular-nums;
}

.footer__contact {
	display: flex;
	align-items: start;
	gap: 0.55rem;
	font-size: 0.93rem;
	margin-bottom: 0.85rem;
	line-height: 1.55;
}

.footer__contact .h2o-icon {
	margin-top: 0.2rem;
	color: var(--h2o-foam);
}

.footer__contact a {
	color: #fff;
	text-decoration: none;
	border-bottom: 1px solid rgb(255 255 255 / 0.3);
}

.footer__contact a:hover {
	color: var(--h2o-foam);
	border-color: var(--h2o-foam);
}

.footer__nav {
	padding-bottom: var(--h2o-gap);
}

.footer__nav-list {
	display: flex;
	flex-wrap: wrap;
	gap: 0.4rem 1.4rem;
	list-style: none;
	margin: 0;
	padding: 0;
	font-size: 0.9rem;
}

.footer__nav-list a {
	color: rgb(255 255 255 / 0.8);
	text-decoration: none;
}

.footer__nav-list a:hover {
	color: #fff;
	text-decoration: underline;
}

.site-footer__legal {
	border-top: 1px solid rgb(255 255 255 / 0.12);
	padding-block: 1.2rem;
	font-size: 0.85rem;
	color: rgb(255 255 255 / 0.6);
}

.footer-widget + .footer-widget {
	margin-top: var(--h2o-gap);
}

/* --------------------------------------------------------------------------
   17. Print
   -------------------------------------------------------------------------- */

@media print {
	.site-header,
	.site-footer,
	.hero__actions,
	.nav-toggle,
	.breadcrumbs,
	.h2o-btn {
		display: none !important;
	}

	body {
		color: #000;
		background: #fff;
	}

	.hero,
	.page-header {
		background: none;
		color: #000;
		padding: 1rem 0;
	}

	a[href^="http"]::after {
		content: " (" attr(href) ")";
		font-size: 0.8em;
		word-break: break-all;
	}
}
