/* =============================================================
   Biddulph Physiotherapy & Sports Injury Clinic

   Plain CSS — no build step. Edit this file directly; the pages
   load it as-is. Uses native CSS nesting, so nested rules are
   written with a leading "&".
   ============================================================= */

/* -------------------------------------------------------------
   1. Design tokens
   ------------------------------------------------------------- */

:root {
	/* Brand palette — sampled from the clinic logo */
	--brand-900: #041f3d;
	--brand-800: #072f5c;
	--brand-700: #0b3f73;
	--brand-600: #12558f;
	--brand-500: #2472b5;
	--brand-100: #dbe9f7;
	--brand-50: #f1f7fd;

	--accent-700: #0f5d52;
	--accent-600: #17786a;
	--accent-100: #d3ece5;
	--accent-50: #eaf7f3;

	/* Neutrals */
	--text: #12293b;
	--text-muted: #526577;
	--text-invert: #ffffff;
	--bg: #ffffff;
	--bg-soft: #f4f8fb;
	--bg-deep: #05203c;
	--line: #e1e9f0;
	--line-strong: #c9d7e3;

	/* Type */
	--font-head: "Plus Jakarta Sans", "Segoe UI", system-ui, -apple-system, sans-serif;
	--font-body: "Inter", "Segoe UI", system-ui, -apple-system, "Helvetica Neue", arial, sans-serif;

	/* Fluid type scale */
	--fs-xs: 0.8125rem;
	--fs-sm: 0.9375rem;
	--fs-base: 1.0625rem;
	--fs-lg: clamp(1.125rem, 0.35vw + 1.05rem, 1.25rem);
	--fs-h3: clamp(1.25rem, 0.5vw + 1.13rem, 1.5rem);
	--fs-h2: clamp(1.6rem, 1.3vw + 1.3rem, 2.25rem);
	--fs-h1: clamp(2rem, 2.4vw + 1.45rem, 3.1rem);
	--fs-hero: clamp(2.25rem, 3.6vw + 1.3rem, 3.9rem);

	/* Space */
	--gap: 1.5rem;
	--section-y: clamp(3rem, 6vw, 5.5rem);
	--container: 1160px;
	--measure: 68ch;

	/* Shape */
	--r-sm: 8px;
	--r: 14px;
	--r-lg: 22px;
	--r-full: 999px;

	/* Elevation */
	--sh-sm: 0 1px 2px rgba(6, 37, 55, .06), 0 1px 3px rgba(6, 37, 55, .08);
	--sh: 0 2px 4px rgba(6, 37, 55, .04), 0 8px 20px rgba(6, 37, 55, .08);
	--sh-lg: 0 4px 8px rgba(6, 37, 55, .05), 0 20px 44px rgba(6, 37, 55, .13);
}

/* -------------------------------------------------------------
   2. Reset & base
   ------------------------------------------------------------- */

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

* {
	margin: 0;
}

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

body {
	background: var(--bg);
	color: var(--text);
	font-family: var(--font-body);
	font-size: var(--fs-base);
	line-height: 1.7;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
	min-height: 100%;
}

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

img {
	height: auto;
}

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

:where(a) {
	color: var(--brand-600);
	text-decoration-thickness: 1px;
	text-underline-offset: 3px;

	&:hover {
		color: var(--brand-800);
	}
}

:focus-visible {
	outline: 2px solid var(--brand-500);
	outline-offset: 2px;
	border-radius: 4px;
}

/* -------------------------------------------------------------
   3. Typography
   ------------------------------------------------------------- */

h1,
h2,
h3,
h4 {
	font-family: var(--font-head);
	font-weight: 700;
	line-height: 1.18;
	letter-spacing: -0.02em;
	color: var(--brand-900);
	text-wrap: balance;
}

h1 {
	font-size: var(--fs-h1);
}

h2 {
	font-size: var(--fs-h2);
}

h3 {
	font-size: var(--fs-h3);
	letter-spacing: -0.01em;
}

h4 {
	font-size: 1.0625rem;
	letter-spacing: -0.005em;
}

p {
	text-wrap: pretty;
}

strong {
	font-weight: 600;
	color: var(--brand-900);
}

.eyebrow {
	display: inline-block;
	font-family: var(--font-head);
	font-size: var(--fs-xs);
	font-weight: 700;
	letter-spacing: .12em;
	text-transform: uppercase;
	color: var(--accent-600);
	margin-bottom: .6rem;
}

.lead {
	font-size: var(--fs-lg);
	color: var(--text-muted);
	line-height: 1.65;
}

/* -------------------------------------------------------------
   4. Layout
   ------------------------------------------------------------- */

.container {
	width: 100%;
	max-width: var(--container);
	margin-inline: auto;
	padding-inline: clamp(1.15rem, 4vw, 2.5rem);
}

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

.section--soft {
	background: var(--bg-soft);
}

.section--tight {
	padding-block: clamp(2.25rem, 4vw, 3.5rem);
}

.skip-link {
	position: absolute;
	left: 1rem;
	top: -100%;
	z-index: 100;
	background: var(--brand-700);
	color: var(--text-invert);
	padding: .7rem 1.15rem;
	border-radius: var(--r-sm);
	font-weight: 600;
	text-decoration: none;
	transition: top .15s ease;

	&:focus {
		top: 1rem;
		color: var(--text-invert);
	}
}

/* -------------------------------------------------------------
   5. Site header & navigation
   ------------------------------------------------------------- */

.site-header {
	position: sticky;
	top: 0;
	z-index: 50;
	background: rgba(255, 255, 255, .92);
	backdrop-filter: saturate(1.6) blur(10px);
	border-bottom: 1px solid var(--line);
}

.site-header__inner {
	display: flex;
	align-items: center;
	gap: 1.25rem;
	min-height: 78px;
}

.brand {
	display: flex;
	align-items: center;
	gap: .7rem;
	text-decoration: none;
	color: inherit;
	margin-inline-end: auto;

	&:hover {
		color: inherit;
	}
}

.brand__mark {
	flex: none;
	display: block;
	width: auto;
	height: 52px;
}

/* On the dark footer the navy figure needs a light ground to read against. */
.site-footer .brand__mark {
	height: 52px;
	padding: 5px;
	border-radius: 12px;
	background: #fff;
	box-sizing: content-box;
}

.brand__name {
	display: block;
	font-family: var(--font-head);
	font-weight: 800;
	font-size: 1.0625rem;
	line-height: 1.15;
	letter-spacing: -0.02em;
	color: var(--brand-900);
	white-space: nowrap;
}

.brand__tag {
	display: block;
	font-size: var(--fs-xs);
	color: var(--text-muted);
	line-height: 1.3;
	letter-spacing: .01em;
	white-space: nowrap;
}

/* Below this the logo carries the brand on its own. */
@media (max-width: 420px) {

	.site-header .brand__name,
	.site-header .brand__tag {
		white-space: normal;
	}

	.site-header .brand__name {
		font-size: 1rem;
	}
}

.nav__list {
	display: flex;
	align-items: center;
	gap: .15rem;
	list-style: none;
	padding: 0;
}

.nav__link {
	display: block;
	padding: .5rem .7rem;
	border-radius: var(--r-sm);
	font-size: var(--fs-sm);
	font-weight: 500;
	color: var(--text);
	text-decoration: none;
	white-space: nowrap;
	transition: background-color .15s ease, color .15s ease;

	&:hover {
		background: var(--brand-50);
		color: var(--brand-700);
	}

	&[aria-current="page"] {
		color: var(--brand-700);
		background: var(--brand-100);
		font-weight: 600;
	}
}

.nav__cta {
	margin-inline-start: .6rem;
}

.nav-toggle {
	display: none;
	align-items: center;
	gap: .5rem;
	background: var(--bg);
	border: 1px solid var(--line-strong);
	border-radius: var(--r-sm);
	padding: .5rem .8rem;
	font-family: var(--font-head);
	font-size: var(--fs-sm);
	font-weight: 600;
	color: var(--brand-900);
	cursor: pointer;
}

.nav-toggle__bars {
	position: relative;
	width: 17px;
	height: 2px;
	background: currentColor;
	border-radius: 2px;

	&::before,
	&::after {
		content: "";
		position: absolute;
		left: 0;
		width: 17px;
		height: 2px;
		background: currentColor;
		border-radius: 2px;
	}

	&::before {
		top: -5px;
	}

	&::after {
		top: 5px;
	}
}

@media (max-width: 1080px) {
	.nav-toggle {
		display: inline-flex;
	}

	.site-nav {
		display: none;
		position: absolute;
		inset-inline: 0;
		top: 100%;
		background: var(--bg);
		border-bottom: 1px solid var(--line);
		box-shadow: var(--sh);
		padding: .75rem clamp(1.15rem, 4vw, 2.5rem) 1.25rem;
	}

	.site-nav[data-open="true"] {
		display: block;
	}

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

	.nav__link {
		padding: .7rem .8rem;
		font-size: var(--fs-base);
	}

	.nav__cta {
		margin: .6rem 0 0;

		& .btn {
			width: 100%;
			justify-content: center;
		}
	}
}

/* -------------------------------------------------------------
   6. Buttons
   ------------------------------------------------------------- */

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: .5rem;
	padding: .8rem 1.4rem;
	border: 1px solid transparent;
	border-radius: var(--r-full);
	font-family: var(--font-head);
	font-size: var(--fs-sm);
	font-weight: 700;
	letter-spacing: -0.005em;
	line-height: 1.2;
	text-decoration: none;
	white-space: nowrap;
	cursor: pointer;
	transition: transform .15s ease, background-color .15s ease, box-shadow .15s ease, border-color .15s ease;

	&:hover {
		transform: translateY(-1px);
	}

	&:active {
		transform: translateY(0);
	}

	& svg {
		flex: none;
	}
}

.btn--primary {
	background: var(--brand-700);
	color: var(--text-invert);
	box-shadow: var(--sh-sm);

	&:hover {
		background: var(--brand-800);
		color: var(--text-invert);
	}
}

.btn--accent {
	background: var(--accent-600);
	color: var(--text-invert);
	box-shadow: var(--sh-sm);

	&:hover {
		background: var(--accent-700);
		color: var(--text-invert);
	}
}

.btn--ghost {
	background: transparent;
	border-color: var(--line-strong);
	color: var(--brand-900);

	&:hover {
		border-color: var(--brand-500);
		background: var(--brand-50);
		color: var(--brand-800);
	}
}

.btn--on-dark {
	background: rgba(255, 255, 255, .12);
	border-color: rgba(255, 255, 255, .38);
	color: #fff;

	&:hover {
		background: rgba(255, 255, 255, .2);
		color: #fff;
	}
}

.btn--sm {
	padding: .55rem 1rem;
	font-size: var(--fs-xs);
}

.btn-row {
	display: flex;
	flex-wrap: wrap;
	gap: .75rem;
	margin-top: 1.75rem;
}

/* -------------------------------------------------------------
   7. Hero (home) & page header (interior)
   ------------------------------------------------------------- */

.hero {
	position: relative;
	isolation: isolate;
	background: var(--bg-deep);
	color: #fff;
	overflow: hidden;
}

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

	/* picture must fill too, or the img's percentage height has nothing to resolve against */
	& picture {
		display: block;
		height: 100%;
	}

	& img {
		width: 100%;
		height: 100%;
		object-fit: cover;
		object-position: center 62%;
	}
}

.hero::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -1;
	background: linear-gradient(105deg, rgba(5, 32, 60, .94) 0%, rgba(5, 32, 60, .84) 46%, rgba(5, 32, 60, .55) 100%);
}

.hero__inner {
	padding-block: clamp(3.5rem, 9vw, 7rem);
	max-width: 42rem;
}

.hero .eyebrow {
	color: #7fd6cb;
}

.hero h1 {
	font-size: var(--fs-hero);
	color: #fff;
}

.hero__lead {
	margin-top: 1.15rem;
	font-size: var(--fs-lg);
	color: rgba(255, 255, 255, .84);
	max-width: 34rem;
}

.hero__meta {
	display: flex;
	flex-wrap: wrap;
	gap: .5rem 1.5rem;
	margin-top: 2rem;
	padding-top: 1.5rem;
	border-top: 1px solid rgba(255, 255, 255, .18);
	font-size: var(--fs-sm);
	color: rgba(255, 255, 255, .78);
}

.hero__meta span {
	display: inline-flex;
	align-items: center;
	gap: .45rem;
}

.page-header {
	background:
		radial-gradient(90rem 26rem at 12% -30%, var(--brand-100), transparent 62%),
		var(--bg-soft);
	border-bottom: 1px solid var(--line);
	padding-block: clamp(2.5rem, 5vw, 4rem);
}

.page-header__lead {
	margin-top: .9rem;
	max-width: var(--measure);
	font-size: var(--fs-lg);
	color: var(--text-muted);
}

/* Breadcrumb */
.crumbs {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: .45rem;
	list-style: none;
	padding: 0;
	margin-bottom: .85rem;
	font-size: var(--fs-xs);
	color: var(--text-muted);

	& a {
		color: var(--text-muted);
		text-decoration: none;
	}

	& a:hover {
		color: var(--brand-700);
		text-decoration: underline;
	}

	& li + li::before {
		content: "/";
		margin-inline-end: .45rem;
		color: var(--line-strong);
	}
}

/* -------------------------------------------------------------
   8. Prose (long-form page content)
   ------------------------------------------------------------- */

.prose {
	max-width: var(--measure);

	& > * + * {
		margin-top: 1.15rem;
	}

	& h2 {
		margin-top: 2.75rem;
	}

	& h3 {
		margin-top: 2rem;
	}

	& h4 {
		margin-top: 1.5rem;
		color: var(--brand-700);
	}

	& > :first-child {
		margin-top: 0;
	}

	& ul,
	& ol {
		padding-inline-start: 1.35rem;
		display: grid;
		gap: .5rem;
	}

	& li::marker {
		color: var(--brand-500);
	}

	& a {
		font-weight: 500;
	}
}

.prose--wide {
	max-width: 82ch;
}

/* Two-column page body: content + sidebar */
.layout {
	display: grid;
	gap: clamp(2rem, 5vw, 3.5rem);
	align-items: start;
	grid-template-columns: minmax(0, 1fr);
}

@media (min-width: 900px) {
	.layout--sidebar {
		grid-template-columns: minmax(0, 1fr) 20rem;
	}

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

.sticky-aside {
	position: sticky;
	top: 6.5rem;
}

/* -------------------------------------------------------------
   9. Cards, grids & feature blocks
   ------------------------------------------------------------- */

.grid {
	display: grid;
	gap: clamp(1rem, 2.2vw, 1.75rem);
	grid-template-columns: repeat(auto-fit, minmax(min(100%, 17rem), 1fr));
}

.grid--2 {
	grid-template-columns: repeat(auto-fit, minmax(min(100%, 22rem), 1fr));
}

.card {
	background: var(--bg);
	border: 1px solid var(--line);
	border-radius: var(--r-lg);
	padding: clamp(1.4rem, 2.5vw, 1.9rem);
	box-shadow: var(--sh-sm);
	transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;

	& h3,
	& .card__title {
		margin-bottom: .5rem;
	}

	& p {
		color: var(--text-muted);
		font-size: var(--fs-sm);
		line-height: 1.65;
	}
}

/* Lets a card heading sit at any level the document outline needs
   while keeping the card's visual scale. */
.card__title {
	font-size: var(--fs-h3);
	letter-spacing: -0.01em;
}

.card--link:hover,
.card--link:focus-within {
	transform: translateY(-3px);
	box-shadow: var(--sh);
	border-color: var(--brand-100);
}

.card__icon {
	display: grid;
	place-items: center;
	width: 46px;
	height: 46px;
	margin-bottom: 1.1rem;
	border-radius: 13px;
	background: var(--accent-50);
	color: var(--accent-700);
	border: 1px solid var(--accent-100);
}

.card--stat {
	text-align: left;

	& .card__stat {
		display: block;
		font-family: var(--font-head);
		font-size: clamp(1.75rem, 2.4vw, 2.25rem);
		font-weight: 800;
		letter-spacing: -0.03em;
		color: var(--brand-700);
		line-height: 1.1;
	}
}

/* Simple tag/pill list — used for conditions */
.pills {
	display: flex;
	flex-wrap: wrap;
	gap: .55rem;
	list-style: none;
	padding: 0;
}

.pills li {
	background: var(--brand-50);
	border: 1px solid var(--brand-100);
	color: var(--brand-800);
	border-radius: var(--r-full);
	padding: .42rem .95rem;
	font-size: var(--fs-sm);
	line-height: 1.45;
}

/* Checked list */
.check-list {
	list-style: none;
	padding: 0;
	display: grid;
	gap: .8rem;

	& li {
		position: relative;
		padding-inline-start: 1.9rem;
		color: var(--text-muted);
	}

	& li::before {
		content: "";
		position: absolute;
		left: 0;
		top: .52em;
		width: 1.1rem;
		height: 1.1rem;
		border-radius: 50%;
		background: var(--accent-100) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%230a6a61' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3.5 8.5l3 3 6-6'/%3E%3C/svg%3E") center / 12px no-repeat;
	}
}

/* Media block: image beside text */
.media {
	display: grid;
	gap: clamp(1.5rem, 4vw, 3rem);
	align-items: center;
	grid-template-columns: minmax(0, 1fr);
}

@media (min-width: 860px) {
	.media {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.media--reverse > :first-child {
		order: 2;
	}
}

.media__img {
	border-radius: var(--r-lg);
	overflow: hidden;
	box-shadow: var(--sh);
	background: var(--bg-soft);

	& img {
		width: 100%;
		aspect-ratio: 4 / 3;
		object-fit: cover;
	}
}

.media__img--tall img {
	aspect-ratio: 3 / 4;
}

.media__img--auto img {
	aspect-ratio: auto;
}

/* Section heading block */
.section-head {
	max-width: var(--measure);
	margin-bottom: clamp(1.75rem, 3vw, 2.75rem);

	& p {
		margin-top: .8rem;
		color: var(--text-muted);
		font-size: var(--fs-lg);
	}
}

.section-head--center {
	margin-inline: auto;
	text-align: center;
}

/* -------------------------------------------------------------
   10. Fees
   ------------------------------------------------------------- */

.fee-list {
	list-style: none;
	padding: 0;
	border: 1px solid var(--line);
	border-radius: var(--r-lg);
	overflow: hidden;
	background: var(--bg);
	box-shadow: var(--sh-sm);
}

.fee-list li {
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	justify-content: space-between;
	gap: .35rem 1.5rem;
	padding: 1.1rem clamp(1.15rem, 2.5vw, 1.6rem);

	& + li {
		border-top: 1px solid var(--line);
	}
}

.fee-list__name {
	font-family: var(--font-head);
	font-weight: 700;
	color: var(--brand-900);
}

.fee-list__note {
	display: block;
	font-family: var(--font-body);
	font-weight: 400;
	font-size: var(--fs-sm);
	color: var(--text-muted);
}

.fee-list__price {
	font-family: var(--font-head);
	font-size: 1.4rem;
	font-weight: 800;
	letter-spacing: -0.02em;
	color: var(--brand-700);
	white-space: nowrap;
}

/* -------------------------------------------------------------
   11. FAQ accordion
   ------------------------------------------------------------- */

.faq {
	display: grid;
	gap: .75rem;
	max-width: 52rem;
}

.faq details {
	border: 1px solid var(--line);
	border-radius: var(--r);
	background: var(--bg);
	box-shadow: var(--sh-sm);
	overflow: hidden;
	transition: border-color .15s ease;

	&[open] {
		border-color: var(--brand-100);
	}
}

.faq summary {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 1rem;
	padding: 1.05rem clamp(1.1rem, 2.4vw, 1.5rem);
	cursor: pointer;
	list-style: none;
	font-family: var(--font-head);
	font-weight: 600;
	font-size: var(--fs-lg);
	color: var(--brand-900);

	&::-webkit-details-marker {
		display: none;
	}

	&:hover {
		background: var(--brand-50);
	}

	&::after {
		content: "";
		flex: none;
		width: 1.15rem;
		height: 1.15rem;
		margin-top: .28em;
		background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%2314639a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 6l4 4 4-4'/%3E%3C/svg%3E") center / contain no-repeat;
		transition: transform .2s ease;
	}
}

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

.faq__body {
	padding: 0 clamp(1.1rem, 2.4vw, 1.5rem) 1.25rem;
	color: var(--text-muted);

	& > * + * {
		margin-top: .9rem;
	}
}

/* -------------------------------------------------------------
   12. Accreditation logos
   ------------------------------------------------------------- */

.accreditations {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: clamp(1.75rem, 5vw, 3.5rem);
	list-style: none;
	padding: 0;
}

.accreditations img {
	width: auto;
	max-height: 56px;
	opacity: .9;
	mix-blend-mode: multiply;
	transition: opacity .2s ease, transform .2s ease;

	&:hover {
		opacity: 1;
		transform: scale(1.04);
	}
}

/* -------------------------------------------------------------
   13. Contact / info blocks
   ------------------------------------------------------------- */

.info-card {
	background: var(--bg);
	border: 1px solid var(--line);
	border-radius: var(--r-lg);
	padding: clamp(1.5rem, 3vw, 2rem);
	box-shadow: var(--sh);
}

.info-card--dark {
	background: linear-gradient(160deg, var(--brand-800), var(--brand-900));
	border-color: transparent;
	color: rgba(255, 255, 255, .85);

	& h2,
	& h3 {
		color: #fff;
	}

	& a {
		color: #a8dcf2;
	}

	& a:hover {
		color: #fff;
	}
}

.contact-list {
	list-style: none;
	padding: 0;
	display: grid;
	gap: 1.35rem;
}

.contact-list__label {
	display: block;
	font-family: var(--font-head);
	font-size: var(--fs-xs);
	font-weight: 700;
	letter-spacing: .1em;
	text-transform: uppercase;
	color: var(--text-muted);
	margin-bottom: .2rem;
}

.info-card--dark .contact-list__label {
	color: rgba(255, 255, 255, .6);
}

.contact-list__value {
	font-size: var(--fs-lg);
	font-weight: 500;

	& a {
		text-decoration: none;
	}

	& a:hover {
		text-decoration: underline;
	}
}

.tel-large {
	display: inline-block;
	font-family: var(--font-head);
	font-size: clamp(1.6rem, 2.6vw, 2.15rem);
	font-weight: 800;
	letter-spacing: -0.03em;
	color: var(--brand-700);
	text-decoration: none;
	white-space: nowrap;

	&:hover {
		color: var(--brand-900);
		text-decoration: underline;
	}
}

.map-frame {
	border: 1px solid var(--line);
	border-radius: var(--r-lg);
	overflow: hidden;
	box-shadow: var(--sh);
	background: var(--bg-soft);

	& iframe {
		width: 100%;
		aspect-ratio: 4 / 3;
		height: auto;
		border: 0;
	}
}

/* Directions steps */
.steps {
	counter-reset: step;
	list-style: none;
	padding: 0;
	display: grid;
	gap: .85rem;

	& li {
		counter-increment: step;
		position: relative;
		padding-inline-start: 2.6rem;
		color: var(--text-muted);
	}

	& li::before {
		content: counter(step);
		position: absolute;
		left: 0;
		top: .2em;
		width: 1.75rem;
		height: 1.75rem;
		display: grid;
		place-items: center;
		border-radius: 50%;
		background: var(--brand-50);
		border: 1px solid var(--brand-100);
		font-family: var(--font-head);
		font-size: var(--fs-xs);
		font-weight: 700;
		color: var(--brand-700);
	}
}

/* Callout */
.callout {
	border-inline-start: 3px solid var(--accent-600);
	background: var(--accent-50);
	border-radius: 0 var(--r) var(--r) 0;
	padding: 1.15rem 1.4rem;
	color: var(--text-muted);

	& > * + * {
		margin-top: .6rem;
	}

	& strong {
		color: var(--accent-700);
	}
}

/* -------------------------------------------------------------
   14. Call-to-action band
   ------------------------------------------------------------- */

.cta-band {
	background: linear-gradient(140deg, var(--brand-800) 0%, var(--brand-900) 62%);
	color: #fff;

	& h2 {
		color: #fff;
	}

	& p {
		margin-top: .9rem;
		color: rgba(255, 255, 255, .8);
		font-size: var(--fs-lg);
		max-width: 44ch;
	}
}

.cta-band__inner {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 2rem;
	padding-block: clamp(2.75rem, 5vw, 4rem);
}

/* -------------------------------------------------------------
   15. Footer
   ------------------------------------------------------------- */

.site-footer {
	background: var(--bg-deep);
	color: rgba(255, 255, 255, .68);
	font-size: var(--fs-sm);
	padding-block: clamp(2.75rem, 5vw, 4rem) 1.75rem;

	& h2 {
		font-size: var(--fs-xs);
		font-weight: 700;
		letter-spacing: .1em;
		text-transform: uppercase;
		color: rgba(255, 255, 255, .5);
		margin-bottom: 1rem;
	}

	& a {
		color: rgba(255, 255, 255, .82);
		text-decoration: none;

		&:hover {
			color: #fff;
			text-decoration: underline;
		}
	}

	& .brand__name {
		color: #fff;
	}

	& .brand__tag {
		color: rgba(255, 255, 255, .55);
	}
}

.site-footer__grid {
	display: grid;
	gap: 2.25rem;
	grid-template-columns: repeat(auto-fit, minmax(min(100%, 15rem), 1fr));
}

.site-footer__brand {
	max-width: 22rem;
}

.site-footer__brand p {
	margin-top: 1rem;
}

.footer-links {
	list-style: none;
	padding: 0;
	display: grid;
	gap: .55rem;
}

.site-footer address {
	font-style: normal;
	line-height: 1.75;
}

.site-footer__bottom {
	display: flex;
	flex-wrap: wrap;
	gap: .5rem 1.5rem;
	justify-content: space-between;
	margin-top: 2.75rem;
	padding-top: 1.5rem;
	border-top: 1px solid rgba(255, 255, 255, .12);
	font-size: var(--fs-xs);
	color: rgba(255, 255, 255, .5);
}

/* -------------------------------------------------------------
   16. Utilities
   ------------------------------------------------------------- */

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

.text-center {
	text-align: center;
}

.mt-0 {
	margin-top: 0;
}

.mt-2 {
	margin-top: 1.5rem;
}

.mt-3 {
	margin-top: 2.25rem;
}

/* -------------------------------------------------------------
   17. Motion & print
   ------------------------------------------------------------- */

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

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

@media print {

	.site-header,
	.site-footer,
	.cta-band,
	.nav-toggle,
	.skip-link,
	.map-frame {
		display: none !important;
	}

	body {
		font-size: 11pt;
		color: #000;
	}

	.hero {
		background: none;
		color: #000;
	}

	.hero::after,
	.hero__media {
		display: none;
	}

	.hero h1 {
		color: #000;
	}

	a[href^="http"]::after {
		content: " (" attr(href) ")";
		font-size: 9pt;
	}

	.faq details {
		break-inside: avoid;
	}

	.faq .faq__body {
		display: block !important;
	}
}
