/* =========================================================
   BodyEase — shared stylesheet
   ========================================================= */

/* ---------------------------------------------------------
   0. SELF-HOSTED FONTS — General Sans (was Fontshare CDN)
      Eliminates third-party round-trip, 1-year cache via .htaccess
   --------------------------------------------------------- */
@font-face {
	font-family: "General Sans";
	src: url("/assets/fonts/general-sans-400.woff2") format("woff2");
	font-weight: 400;
	font-style: normal;
	font-display: optional;
}
@font-face {
	font-family: "General Sans";
	src: url("/assets/fonts/general-sans-500.woff2") format("woff2");
	font-weight: 500;
	font-style: normal;
	font-display: optional;
}
@font-face {
	font-family: "General Sans";
	src: url("/assets/fonts/general-sans-700.woff2") format("woff2");
	font-weight: 700;
	font-style: normal;
	font-display: optional;
}

/* ---------------------------------------------------------
   1. CSS CUSTOM PROPERTIES
   --------------------------------------------------------- */
:root {
	/* --- Palette (original names preserved) --- */
	--navy: #1c2b3a; /* warmer deep charcoal — was #0d2137 */
	--teal: #0e6e6e;
	--tealdk: #094f4f;
	--accent: #a85533; /* muted brick terracotta — WCAG AA 4.7:1 with white */
	--acdk: #8c4228;
	--bg: #edf6f5; /* subtle mint tint — ties into hero palette */
	--bdr: #dde4e8; /* lighter, cleaner border */
	--muted: #4a5568; /* darkened for WCAG AA on off-white backgrounds */
	--white: #ffffff;
	--teal-hi: #7ee8d4;

	/* --- Semantic colour aliases (no new hex values) --- */
	--color-primary: var(--teal);
	--color-primary-dark: var(--tealdk);
	--color-accent: var(--accent);
	--color-accent-dark: var(--acdk);
	--color-surface: var(--white);
	--color-surface-offset: var(--bg);
	--color-border: var(--bdr);
	--color-text: #1c2b3a;
	--color-text-muted: var(--muted);
	--color-navy: var(--navy);

	/* --- Spacing scale (4px base) --- */
	--space-1: 4px;
	--space-2: 8px;
	--space-3: 12px;
	--space-4: 16px;
	--space-5: 20px;
	--space-6: 24px;
	--space-8: 32px;
	--space-10: 40px;
	--space-12: 48px;
	--space-16: 64px;
	--space-20: 80px;
	/* Shared token contract aliases (see design-tokens.md): lets components
     written with the MSK app's --sp-* names also work here. Non-breaking. */
	--sp-1: var(--space-1);
	--sp-2: var(--space-2);
	--sp-3: var(--space-3);
	--sp-4: var(--space-4);
	--sp-5: var(--space-5);
	--sp-6: var(--space-6);
	--sp-8: var(--space-8);

	/* --- Typography scale --- */
	--text-xs: 0.75rem;
	--text-sm: 0.875rem;
	--text-base: 1rem;
	--text-lg: 1.125rem;
	--text-xl: 1.25rem;
	--text-2xl: 1.5rem;

	/* --- Border radius --- */
	--radius-sm: 4px;
	--radius-md: 8px;
	--radius-lg: 12px;
	--radius-full: 9999px;

	/* --- Shadows — lighter, more clinical --- */
	--shadow-sm: 0 1px 4px rgba(0, 0, 0, 0.05);
	--shadow-md: 0 4px 16px rgba(0, 0, 0, 0.09);
	--shadow-lg: 0 6px 20px rgba(0, 0, 0, 0.12); /* shared contract: sm/md/lg */

	/* --- Content widths --- */
	--content-default: 1080px;
	--content-narrow: 760px;

	/* --- Font families --- */
	--font-display: "Fraunces", Georgia, "Times New Roman", Times, serif;
	--font-body:
		"General Sans", system-ui, -apple-system, "Segoe UI", Roboto,
		"Helvetica Neue", Arial, sans-serif;
}

/* ---------------------------------------------------------
   2. RESET / BASE
   --------------------------------------------------------- */
*,
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html {
	scroll-behavior: smooth;
	overflow-x: hidden; /* must be on html, not body — body overflow-x:hidden breaks position:fixed in iOS Safari */
}

body {
	font-family: var(--font-body);
	font-size: 16px;
	line-height: 1.7;
	color: var(--color-text);
	background: transparent;
}

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

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

ul {
	list-style: none;
}

/* ---------------------------------------------------------
   3. FOCUS AND ACTIVE STATES
   --------------------------------------------------------- */
:focus-visible {
	outline: 2px solid var(--color-primary);
	outline-offset: 3px;
	border-radius: var(--radius-sm);
}

/* High-contrast focus outline on dark backgrounds */
.hero:not(.hero-inner) :focus-visible,
.s-dk :focus-visible,
.footer :focus-visible {
	outline-color: rgba(255, 255, 255, 0.85);
}

a:active,
button:active,
.btn:active {
	transform: scale(0.98);
	opacity: 0.88;
	transition:
		transform 80ms ease,
		opacity 80ms ease;
}

/* ---------------------------------------------------------
   4. TYPOGRAPHY
   --------------------------------------------------------- */
h1,
h2 {
	font-family: var(--font-display);
	line-height: 1.15;
}

h3 {
	font-family: var(--font-body);
	line-height: 1.3;
}

h1 {
	font-size: clamp(1.6rem, 4.5vw, 3rem);
	color: var(--navy); /* default — overridden to white inside .hero */
	margin-bottom: 1rem;
	max-width: 100%;
	overflow-wrap: break-word;
	letter-spacing: -0.022em;
}

h2 {
	font-size: clamp(1.45rem, 3.5vw, 2.2rem);
	color: var(--navy);
	margin-bottom: 0.9rem;
	letter-spacing: -0.018em;
}

h3 {
	font-size: 1.1rem;
	color: var(--navy); /* changed from teal — reduces teal overuse */
	margin-bottom: 0.4rem;
	font-weight: 600;
}

p {
	color: var(--muted);
	font-size: 1rem;
	line-height: 1.78;
	max-width: 65ch;
}

li {
	max-width: 65ch;
}

/* Remove 65ch constraint where layout requires full width */
.nav-links li,
.pills li,
.ctas li,
.fc ul li,
.fb li,
.intro-pills li,
.conds li,
.faq-q span,
.region-count,
.region-text h3 ~ *,
td,
th {
	max-width: none;
}

/* Section label */
.tag {
	display: inline-block;
	font-size: 0.78rem;
	font-weight: 600;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--color-primary);
	margin-bottom: 0.9rem;
}

.sec-hd {
	text-align: center;
	margin-bottom: 2rem;
}

.sec-hd p {
	max-width: 540px;
	margin: 0.5rem auto 0;
	color: var(--muted);
}

/* ---------------------------------------------------------
   5. NAVIGATION
   --------------------------------------------------------- */
.site-nav {
	background: var(--navy);
	position: sticky;
	top: 0;
	z-index: 100;
	border-top: 2px solid var(--teal);
	border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.site-nav .c {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	min-height: 56px;
	height: auto;
	padding-top: 8px;
	padding-bottom: 8px;
}

.nav-logo {
	font-family: var(--font-display);
	font-size: 1.4rem;
	font-weight: 700;
	color: var(--white);
	flex-shrink: 0;
	letter-spacing: -0.01em;
	display: inline-flex;
	align-items: center;
	gap: 9px;
}

.nav-logo::before {
	content: "";
	display: block;
	width: 7px;
	height: 7px;
	background: var(--teal-hi);
	border-radius: 50%;
	flex-shrink: 0;
}

.nav-logo span {
	color: var(--teal-hi);
	font-weight: 400;
	letter-spacing: 0.07em;
}

.nav-links {
	display: flex;
	gap: 26px;
	list-style: none;
}

.nav-links li {
	max-width: none;
}

.nav-links a {
	font-size: 0.9rem;
	font-weight: 500;
	color: rgba(255, 255, 255, 0.72);
	transition: color 0.2s;
	padding: 8px 10px;
	min-height: 44px;
	display: inline-flex;
	align-items: center;
}

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

.nav-links a[aria-current="page"] {
	color: var(--white);
	padding-bottom: 11px;
	box-shadow: inset 0 -2px 0 rgba(126, 232, 212, 0.6);
}

.nav-cta {
	background: transparent;
	color: rgba(255, 255, 255, 0.85) !important;
	padding: 6px 16px !important;
	border: 1px solid rgba(255, 255, 255, 0.35);
	border-radius: var(--radius-md);
	font-weight: 600 !important;
	transition: background 0.2s, border-color 0.2s, color 0.2s !important;
	min-height: 40px;
}

.nav-cta:hover {
	background: rgba(255, 255, 255, 0.1);
	border-color: rgba(255, 255, 255, 0.6);
	color: var(--white) !important;
}

/* Compact single-row nav on mobile: logo left, links + CTA right */
@media (max-width: 767px) {
	.site-nav .c {
		flex-wrap: nowrap;
		align-items: center;
		justify-content: space-between;
		min-height: 52px;
		padding: 6px 16px;
		gap: 5px;
	}
	.nav-logo {
		flex: 0 0 auto;
		justify-content: flex-start;
		font-size: 1rem;
		gap: 5px;
		padding: 0;
	}
	.nav-logo::before {
		width: 6px;
		height: 6px;
	}
	.nav-links {
		flex: 1 1 auto;
		gap: 8px;
		flex-wrap: nowrap;
		align-items: center;
		justify-content: flex-end;
		border-top: none;
		padding: 0;
	}
	.nav-links a {
		font-size: 0.75rem;
		min-height: 40px;
		display: flex;
		align-items: center;
		padding: 4px 3px;
		white-space: nowrap;
	}
	.nav-cta {
		padding: 6px 10px !important;
		font-size: 0.74rem !important;
		min-height: unset;
		white-space: nowrap;
		margin: 0;
	}
}

/* Narrow phones (≤479px): text at readable size cannot fit five nav
   items in one row without shrinking below legible/tappable minimums.
   Collapse the primary nav behind a menu trigger instead of compressing
   text. Hidden by default; JS (main.js) toggles .nav-open on .site-nav. */
.nav-toggle {
	display: none;
}
@media (max-width: 479px) {
	.nav-toggle {
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		gap: 4px;
		width: 44px;
		height: 44px;
		flex-shrink: 0;
		background: transparent;
		border: none;
		cursor: pointer;
	}
	.nav-toggle span {
		display: block;
		width: 20px;
		height: 2px;
		background: var(--white);
		border-radius: 2px;
		transition: transform 0.2s, opacity 0.2s;
	}
	.site-nav.nav-open .nav-toggle span:nth-child(1) {
		transform: translateY(6px) rotate(45deg);
	}
	.site-nav.nav-open .nav-toggle span:nth-child(2) {
		opacity: 0;
	}
	.site-nav.nav-open .nav-toggle span:nth-child(3) {
		transform: translateY(-6px) rotate(-45deg);
	}

	.nav-links {
		display: none;
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		flex-direction: column;
		align-items: stretch;
		gap: 0;
		background: var(--navy);
		border-top: 1px solid rgba(255, 255, 255, 0.12);
		box-shadow: 0 12px 24px rgba(0, 0, 0, 0.25);
		padding: 8px 16px 16px;
	}
	.site-nav.nav-open .nav-links {
		display: flex;
	}
	.nav-links a {
		font-size: 1rem;
		min-height: 48px;
		width: 100%;
		padding: 12px 4px;
		border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	}
	.nav-links li:last-child a {
		border-bottom: none;
	}

	.nav-cta {
		display: none !important;
	}
	.site-nav .c {
		position: relative;
	}
}

/* ---------------------------------------------------------
   6. LAYOUT — CONTAINER AND SECTIONS
   --------------------------------------------------------- */
.c {
	max-width: var(--content-default);
	margin-inline: auto;
	padding-inline: var(--space-4);
}

@media (min-width: 768px) {
	.c {
		padding-inline: var(--space-8);
	}
}

.s {
	padding: 64px 0;
}

.s-alt {
	padding: 48px 0;
	background: var(--white);
}

.s-dk {
	padding: 64px 0;
	background: var(--navy);
}

.s-dk h2 {
	color: var(--white);
}
.s-dk p {
	color: rgba(255, 255, 255, 0.78);
	margin-inline: auto;
}

.section-alt {
	background: var(--color-surface-offset);
}

/* ---------------------------------------------------------
   7. HERO
   --------------------------------------------------------- */
/* ---- HERO SYSTEM ----------------------------------------
   Two variants share base structure:
   .hero          = homepage primary (dark card inside hero-wrap)
   .hero-inner    = inner-page secondary (flat white page header)
   --------------------------------------------------------- */

/* Homepage: floating card wrapper */
.hero-wrap {
	padding: 20px 16px 40px;
	background: linear-gradient(160deg, #daeeed 0%, #eaf6f5 100%);
}

/* ---- Primary hero (homepage) ---- */
.hero {
	background: linear-gradient(135deg, #c4e5e3 0%, #8ec8c4 100%);
	padding: 68px 0 60px;
	text-align: center;
	position: relative;
	overflow: hidden;
	max-width: 1200px;
	margin: 0 auto;
	border-radius: 14px;
	box-shadow: 0 6px 28px rgba(0, 0, 0, 0.1);
}
.hero .c {
	position: relative;
	z-index: 1;
}

/* All text colour overrides scoped to primary hero only */
.hero:not(.hero-inner) h1 {
	color: var(--navy);
}
.hero:not(.hero-inner) .tag {
	color: var(--tealdk);
	letter-spacing: 0.1em;
}
.hero:not(.hero-inner) p {
	color: rgba(28, 43, 58, 0.82);
	font-size: 1.05rem;
	max-width: 600px;
	margin: 0 auto 1.6rem;
}

/* Trust pills — primary hero only */
.pills {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 8px;
	margin-bottom: 0.5rem;
}

.pills li {
	background: rgba(255, 255, 255, 0.3);
	border: 1px solid rgba(255, 255, 255, 0.5);
	color: var(--navy);
	padding: 6px 16px;
	border-radius: var(--radius-full);
	font-size: 0.84rem;
	font-weight: 500;
	max-width: none;
}

/* Secondary ghost CTA — primary hero only */
.hero-ask {
	display: inline-flex;
	align-items: center;
	color: rgba(28, 43, 58, 0.7);
	font-size: 0.93rem;
	font-weight: 500;
	text-decoration: none;
	min-height: 48px;
	padding: 4px 0 3px;
	border-bottom: 1px solid rgba(28, 43, 58, 0.25);
	transition:
		color 0.2s,
		border-color 0.2s;
}
.hero-ask:hover {
	color: var(--navy);
	border-bottom-color: rgba(28, 43, 58, 0.55);
}

/* Trust pills on any light/mint hero (home and inner pages) */
.hero .conds-trust-item {
	color: var(--navy);
}
.hero .conds-trust-item i[data-lucide] {
	color: var(--tealdk);
}

/* qnav on light surface — primary hero only */
.hero:not(.hero-inner) .qnav a {
	background: rgba(255, 255, 255, 0.3);
	border-color: rgba(255, 255, 255, 0.5);
	color: var(--navy);
}
.hero:not(.hero-inner) .qnav a:hover {
	background: rgba(255, 255, 255, 0.55);
	border-color: rgba(255, 255, 255, 0.7);
	color: var(--navy);
}

/* ---- Secondary hero (inner pages) ---- */
.hero-inner {
	background: linear-gradient(135deg, #c4e5e3 0%, #8ec8c4 100%);
	border-bottom: 1px solid rgba(14, 110, 110, 0.15);
	padding: 52px 0 44px;
	border-radius: 0;
	max-width: none;
}

.hero-inner h1 {
	color: var(--navy);
	font-size: clamp(1.6rem, 3.5vw, 2.2rem);
	letter-spacing: -0.018em;
}

.hero-inner .tag {
	color: var(--teal);
	letter-spacing: 0.06em;
}
.hero-inner p {
	color: var(--muted);
	font-size: 0.98rem;
	max-width: 600px;
	margin: 0 auto 0;
}

/* Badges on light surface */
.hero-inner .badge-registration {
	border-color: var(--bdr);
	color: var(--muted);
	background: var(--bg);
}

/* qnav on light surface — use default styling (no override needed) */
.hero-inner .qnav {
	margin-top: 1.4rem;
}

/* CTA row — shared layout, spacing adapts per variant */
.hero-ctas {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 12px;
	margin-top: 1.8rem;
}

@media (min-width: 768px) {
	.hero-ctas {
		flex-direction: row;
		justify-content: center;
		gap: 14px;
	}
}

/* ---- Two-column homepage hero (.hero-split) ----
   Shared grammar with .hero-inner: flat full-bleed band, same H1 cap,
   same spacing rhythm. Home differs only in keeping a contained photo
   column (35-40% desktop width) — it stays the entry point without
   being a different component. */
.hero.hero-split {
	background: linear-gradient(135deg, #c4e5e3 0%, #8ec8c4 100%);
	border-radius: 0;
	box-shadow: none;
	max-width: none;
	margin: 0;
	border-bottom: 1px solid rgba(14, 110, 110, 0.15);
	padding: 52px 0 44px;
}
.hero-split h1 {
	font-size: clamp(1.6rem, 3.5vw, 2.2rem);
}
.hero-media {
	margin: 26px auto 0;
	max-width: 480px;
	border-radius: 14px;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.16);
	aspect-ratio: 16 / 9;
}
.hero-media img {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
	object-position: center top;
}
@media (min-width: 880px) {
	.hero-split .c {
		display: grid;
		grid-template-columns: 1.65fr 1fr;
		gap: 48px;
		align-items: center;
		text-align: left;
	}
	.hero-split .hero-copy {
		text-align: left;
	}
	.hero-split.hero:not(.hero-inner) p {
		margin-left: 0;
		margin-right: 0;
		max-width: 480px;
	}
	.hero-split .hero-ctas {
		justify-content: flex-start;
	}
	.hero-split .c {
		align-items: stretch;
	}
	.hero-media {
		margin: 0;
		max-width: none;
		aspect-ratio: auto;
		height: 100%;
		align-self: stretch;
		border-radius: 14px;
		box-shadow: none;
	}
}

/* About page: in-content treatment photo */
.session-figure {
	margin: 22px 0 4px;
	max-width: 520px;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: var(--shadow-md);
}
.session-figure img {
	width: 100%;
	height: auto;
	display: block;
}

/* Homepage "How a session works": centred section heading */
.how-head {
	margin-bottom: 2rem;
}

/* Hero badge row */
.hero-badges {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 8px;
	margin-top: 1rem;
}

/* Paired CTAs on dark sections */
.ctas {
	display: flex;
	flex-direction: column;
	gap: 12px;
	align-items: stretch;
	max-width: 380px;
	margin-inline: auto;
}

/* ---------------------------------------------------------
   8. INTRO STRIP
   --------------------------------------------------------- */
.intro {
	text-align: center;
	padding: 64px 0;
	background: var(--white);
}

.intro p {
	max-width: 680px;
	margin: 0 auto;
	font-size: 1.05rem;
	color: var(--navy);
}

/* ---------------------------------------------------------
   9. BUTTONS
   --------------------------------------------------------- */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 11px 20px;
	min-height: 44px;
	border-radius: var(--radius-md);
	font-size: 0.93rem;
	font-weight: 600;
	font-family: var(--font-body);
	cursor: pointer;
	text-align: center;
	transition:
		background 0.2s,
		border-color 0.2s,
		color 0.2s;
	border: 1.5px solid transparent;
	width: 100%;
}

/* Primary — filled accent */
.btn-p {
	background: var(--accent);
	color: var(--white);
	border-color: var(--accent);
}
.btn-p:hover {
	background: var(--acdk);
	border-color: var(--acdk);
}

/* Outline on dark bg */
.btn-o {
	border-color: rgba(255, 255, 255, 0.7);
	color: var(--white);
	background: transparent;
}
.btn-o:hover {
	background: rgba(255, 255, 255, 0.1);
	border-color: var(--white);
}

/* White — for CTAs on teal/dark-coloured card backgrounds */
.btn-wh {
	background: var(--white);
	color: var(--teal);
	border-color: var(--white);
}
.btn-wh:hover {
	background: rgba(255, 255, 255, 0.88);
	border-color: rgba(255, 255, 255, 0.88);
	color: var(--tealdk);
}

/* Secondary — outlined teal */
.btn-t {
	background: transparent;
	color: var(--teal);
	border-color: var(--teal);
}
.btn-t:hover {
	background: var(--teal);
	color: var(--white);
}

/* Desktop: auto-width, side by side */
@media (min-width: 768px) {
	.btn {
		width: auto;
	}

	.ctas {
		flex-direction: row;
		align-items: center;
		justify-content: center;
		max-width: none;
	}
}

/* ---------------------------------------------------------
   10. SERVICE CARDS
   --------------------------------------------------------- */
.cards {
	display: grid;
	grid-template-columns: 1fr;
	gap: 16px;
	margin-top: 2rem;
}

@media (min-width: 768px) {
	.cards {
		grid-template-columns: repeat(2, 1fr);
		gap: 20px;
	}
}

.card {
	background: var(--white);
	border: 1px solid var(--bdr);
	border-radius: 10px;
	padding: 28px var(--space-6);
	transition: border-color 200ms ease;
}

@media (hover: hover) {
	.card:hover {
		border-color: var(--teal);
	}
}

.card p {
	font-size: 0.94rem;
	margin-top: 0.5rem;
}

.cards-note {
	text-align: center;
	margin-top: 1.6rem;
	font-size: 0.9rem;
	color: var(--muted);
	max-width: none;
}

/* ---------------------------------------------------------
   11. HOW-IT-WORKS TIMELINE
   --------------------------------------------------------- */
.timeline {
	display: grid;
	grid-template-columns: 1fr;
	gap: 24px;
	margin-top: 2rem;
	counter-reset: step;
}

@media (min-width: 768px) {
	.timeline {
		grid-template-columns: repeat(4, 1fr);
		gap: 20px;
	}
}

.step {
	position: relative;
	background: var(--white);
	border: 1px solid var(--bdr);
	border-radius: 10px;
	padding: 24px var(--space-6) 22px;
}

.step::before {
	counter-increment: step;
	content: counter(step);
	position: absolute;
	top: -16px;
	left: 20px;
	width: 32px;
	height: 32px;
	background: var(--navy);
	color: var(--white);
	font-family: var(--font-display);
	font-size: 1.1rem;
	font-weight: 700;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
}

.step h3 {
	margin-top: 0.4rem;
}
.step p {
	font-size: 0.92rem;
}

.timeline-cta {
	text-align: center;
	margin-top: 2.2rem;
}

/* ---------------------------------------------------------
   12. PRICING CARDS
   --------------------------------------------------------- */
.prices {
	display: grid;
	grid-template-columns: 1fr;
	gap: 16px;
	margin-top: 2rem;
}

@media (min-width: 768px) {
	.prices {
		grid-template-columns: repeat(3, 1fr);
		gap: 20px;
	}
}

.pc {
	border-radius: 10px;
	padding: 30px var(--space-6);
	border: 1px solid var(--bdr);
	text-align: center;
	background: var(--bg);
	transition: border-color 0.2s;
}

@media (hover: hover) {
	.pc:hover {
		border-color: var(--teal);
	}
}

.pc.feat {
	background: linear-gradient(135deg, #c4e5e3 0%, #8ec8c4 100%);
	border-color: #7bbbb7;
}

.pc.feat h3 {
	color: var(--navy);
}
.pc.feat p {
	color: rgba(28, 43, 58, 0.82);
}

/* Price display */
.fee-amount {
	display: block;
	font-family: var(--font-display);
	font-size: var(--text-xl);
	font-weight: 700;
	color: var(--navy); /* changed from teal — reduces teal overuse */
	margin: 0.7rem 0 0;
}

.pc.feat .fee-amount {
	color: var(--navy);
}

.fee-was {
	font-size: 0.9rem;
	color: rgba(28, 43, 58, 0.45);
	text-decoration: line-through;
	margin-right: 4px;
	font-family: var(--font-display);
}

.fee-duration {
	display: block;
	font-size: var(--text-sm);
	color: var(--color-text-muted);
	margin-top: var(--space-1);
	text-transform: uppercase;
	letter-spacing: 0.05em;
	font-weight: 600;
}

.pc.feat .fee-duration {
	color: rgba(28, 43, 58, 0.6);
}

/* Legacy .amt / .dur kept for any remaining references */
.amt {
	font-family: var(--font-display);
	font-size: 2.8rem;
	font-weight: 700;
	color: var(--navy);
	line-height: 1;
	margin: 0.7rem 0 0.25rem;
	display: block;
}

.pc.feat .amt {
	color: var(--navy);
}

.dur {
	display: block;
	font-size: 0.78rem;
	font-weight: 700;
	color: var(--muted);
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.pc.feat .dur {
	color: rgba(28, 43, 58, 0.6);
}

.pc p {
	font-size: 0.92rem;
	margin-top: 0.9rem;
}

.was {
	font-size: 1.1rem;
	color: rgba(255, 255, 255, 0.5);
	text-decoration: line-through;
	margin-right: 6px;
	font-family: var(--font-display);
}

.pc-save {
	display: inline-block;
	margin-top: 0.6rem;
	background: rgba(0, 0, 0, 0.06);
	color: var(--navy);
	font-size: 0.76rem;
	font-weight: 600;
	padding: 3px 10px;
	border-radius: var(--radius-full);
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.pc.feat .pc-save {
	background: rgba(255, 255, 255, 0.45);
	color: var(--tealdk);
}

/* Inline CTA inside featured pricing card */
.pc-cta {
	margin-top: 1.4rem;
}
.pc-cta .btn {
	width: 100%;
	justify-content: center;
	display: block;
	text-align: center;
}

/* Risk-reversal note below pricing cards */
.prices-note {
	text-align: center;
	margin: 2rem auto 0;
	font-size: 0.92rem;
	max-width: 560px;
	color: rgba(255, 255, 255, 0.68);
	font-style: italic;
}

/* Dark-section pricing overrides */
.s-dk .tag {
	color: var(--teal-hi);
}

.s-dk .pc {
	background: rgba(255, 255, 255, 0.1);
	border-color: rgba(255, 255, 255, 0.18);
}
.s-dk .pc h3 {
	color: var(--white);
}
.s-dk .pc > p:not(.fee-amount) {
	color: rgba(255, 255, 255, 0.75);
}
.s-dk .pc .fee-amount {
	color: var(--white);
}
.s-dk .pc .fee-was {
	color: rgba(255, 255, 255, 0.42);
}
.s-dk .pc .fee-duration {
	color: rgba(255, 255, 255, 0.6);
}
.s-dk .pc .pc-save {
	background: rgba(255, 255, 255, 0.15);
	color: rgba(255, 255, 255, 0.88);
}

@media (hover: hover) {
	.s-dk .pc:hover {
		border-color: rgba(255, 255, 255, 0.32);
	}
}

/* Featured card: bright white on dark — spotlight effect */
.s-dk .pc.feat {
	background: var(--white);
	border: 2px solid var(--teal);
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.28);
}
.s-dk .pc.feat h3 {
	color: var(--navy);
}
.s-dk .pc.feat > p:not(.fee-amount) {
	color: rgba(28, 43, 58, 0.78);
}
.s-dk .pc.feat .fee-amount {
	color: var(--navy);
}
.s-dk .pc.feat .fee-was {
	color: rgba(28, 43, 58, 0.42);
}
.s-dk .pc.feat .fee-duration {
	color: rgba(28, 43, 58, 0.55);
}
.s-dk .pc.feat .pc-save {
	background: var(--teal);
	color: var(--white);
}

/* Best-value card: dominant teal — highest visual priority */
.s-dk .pc.best {
	background: linear-gradient(145deg, var(--teal) 0%, var(--tealdk) 100%);
	border: 2px solid var(--teal-hi);
	box-shadow: 0 16px 52px rgba(14, 110, 110, 0.5);
}
.s-dk .pc.best h3 {
	color: var(--white);
}
.s-dk .pc.best > p:not(.fee-amount) {
	color: rgba(255, 255, 255, 0.85);
}
.s-dk .pc.best .fee-amount {
	color: var(--teal-hi);
}
.s-dk .pc.best .fee-duration {
	color: rgba(255, 255, 255, 0.72);
}
.s-dk .pc.best .pc-save {
	background: var(--teal-hi);
	color: var(--navy);
	font-weight: 700;
}

/* Desktop: extra shadow depth for best card without vertical offset */
@media (min-width: 768px) {
	.s-dk .pc.best {
		box-shadow: 0 24px 64px rgba(14, 110, 110, 0.55);
	}
}

/* Mobile: best card rises to top of stack */
@media (max-width: 767px) {
	.pc.best {
		order: -1;
	}
}

.prices-cta {
	text-align: center;
	margin-top: 2rem;
}

.prices-cta p {
	margin-bottom: 1rem;
	font-size: 0.93rem;
	max-width: none;
}

/* Paired CTAs under fees — stack on mobile */
.prices-cta .btn,
.timeline-cta .btn,
.conds-cta .btn {
	width: 100%;
}

@media (min-width: 768px) {
	.prices-cta .btn,
	.timeline-cta .btn,
	.conds-cta .btn {
		width: auto;
	}
}

/* ---------------------------------------------------------
   13. CONDITIONS LIST (home page summary)
   --------------------------------------------------------- */
.conds {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 12px;
	margin-top: 2rem;
}

.cond-item {
	display: flex;
	align-items: center;
	gap: 12px;
	background: var(--bg);
	border: 1px solid var(--bdr);
	border-left: 3px solid var(--teal);
	border-radius: 8px;
	padding: 16px 18px;
	font-size: 0.95rem;
	font-weight: 500;
	color: var(--navy);
	transition:
		box-shadow 0.2s,
		transform 0.2s,
		border-color 0.2s;
	max-width: none;
	min-height: 52px;
}

.cond-item::before {
	display: none;
}

.cond-item i[data-lucide] {
	width: 18px;
	height: 18px;
	color: var(--teal);
	flex-shrink: 0;
}

@media (hover: hover) {
	.cond-item:hover {
		box-shadow: 0 4px 16px rgba(14, 110, 110, 0.1);
		transform: translateY(-2px);
		border-color: var(--teal);
	}
}

.conds-cta {
	text-align: center;
	margin-top: 2.4rem;
}

.conds-cta .btn-t {
	padding: 13px 36px;
	font-size: 0.97rem;
}

/* ---------------------------------------------------------
   14. FAQ ACCORDION
   --------------------------------------------------------- */
.faq {
	max-width: var(--content-narrow);
	margin: 2rem auto 0;
}

.faq-item {
	background: var(--white);
	border: 1px solid var(--bdr);
	border-radius: 8px;
	margin-bottom: 10px;
	overflow: hidden;
}

.faq-q {
	width: 100%;
	text-align: left;
	padding: 18px 20px;
	min-height: 54px;
	background: var(--white);
	border: none;
	cursor: pointer;
	font-family: var(--font-body);
	font-size: 0.98rem;
	font-weight: 600;
	color: var(--navy);
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 12px;
}

.faq-q span {
	max-width: none;
}

.faq-q:hover {
	background: var(--bg);
	outline: none;
}
.faq-q:focus-visible {
	background: var(--bg);
}
.faq-q[aria-expanded="true"] {
	background: var(--bg);
}

.faq-q .arr {
	flex-shrink: 0;
	width: 11px;
	height: 11px;
	border-right: 2px solid var(--muted);
	border-bottom: 2px solid var(--muted);
	transform: rotate(45deg);
	transition: transform 0.25s;
}

.faq-q[aria-expanded="true"] .arr {
	transform: rotate(-135deg);
}

.faq-a {
	display: grid;
	grid-template-rows: 0fr;
	overflow: hidden;
	transition:
		grid-template-rows 0.3s ease,
		padding 0.3s ease;
	padding: 0 20px;
}

.faq-a.open {
	grid-template-rows: 1fr;
	padding: 4px 20px 20px;
}

.accordion-inner,
.region-body-inner {
	min-height: 0;
}

.faq-a p {
	font-size: 0.94rem;
}

/* ---------------------------------------------------------
   15. CONTACT GRID AND FORM
   --------------------------------------------------------- */
.contact-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 36px;
	align-items: start;
}

@media (min-width: 768px) {
	.contact-grid {
		grid-template-columns: 1fr 1fr;
		gap: 52px;
	}
}

.ci h2 {
	margin-bottom: 1rem;
}
.ci > p {
	margin-bottom: 1.6rem;
}

.cd {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	margin-bottom: 1rem;
	font-size: 0.94rem;
	color: var(--navy);
}

.cd .ico {
	width: 34px;
	height: 34px;
	background: var(--bg);
	border-radius: var(--radius-md);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	min-width: 34px;
	border: 1px solid var(--bdr);
}

.cd a {
	color: var(--navy);
}
.cd a:hover {
	color: var(--teal);
}

.map {
	margin-top: 1.4rem;
	border-radius: 10px;
	overflow: hidden;
	border: 1px solid var(--bdr);
	height: 220px;
}

@media (min-width: 768px) {
	.map {
		height: 300px;
	}
}

.map iframe {
	width: 100%;
	height: 100%;
	border: 0;
}

#leaflet-map {
	width: 100%;
	height: 100%;
}

form {
	display: flex;
	flex-direction: column;
	gap: 14px;
}

/* Paired form fields: two columns on desktop, stack on mobile */
.form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 14px;
}
@media (max-width: 560px) {
	.form-row {
		grid-template-columns: 1fr;
	}
}

label {
	display: block;
	width: 100%;
	font-size: var(--text-sm);
	font-weight: 500;
	color: var(--color-text);
	margin-bottom: var(--space-2);
}

label .req {
	color: var(--accent);
}

input,
textarea,
select {
	display: block;
	width: 100%;
	box-sizing: border-box;
	padding: 11px 14px;
	min-height: 46px;
	border: 1.5px solid var(--bdr);
	border-radius: var(--radius-md);
	font-size: 1rem;
	font-family: var(--font-body);
	color: var(--navy);
	background: var(--white);
	transition:
		border-color 0.2s,
		box-shadow 0.2s;
}

input:focus,
textarea:focus,
select:focus {
	outline: none;
	border-color: var(--teal);
	box-shadow: 0 0 0 3px rgba(14, 110, 110, 0.15);
}

textarea {
	resize: vertical;
	min-height: 110px;
}

.form-hint {
	font-size: 0.9rem;
	color: var(--muted);
	margin-top: -6px;
	max-width: none;
}

.form-submit {
	background: var(--accent);
	color: var(--white);
	border: none;
}

.form-submit:hover {
	background: var(--acdk);
}

.wa-block {
	margin-top: 1.4rem;
	padding: 18px;
	background: var(--bg);
	border-radius: 8px;
	text-align: center;
	border: 1px solid var(--bdr);
}

.wa-block p {
	font-size: 0.9rem;
	color: var(--navy);
	margin-bottom: 0.9rem;
	max-width: none;
}

/* ---------------------------------------------------------
   16. ABOUT PAGE — INTRO GRID WITH PHOTO
   --------------------------------------------------------- */
.intro-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 24px;
	align-items: center;
	max-width: 880px;
	margin: 0 auto;
	text-align: center;
}

@media (min-width: 768px) {
	.intro-grid {
		grid-template-columns: 380px 1fr;
		gap: 48px;
		text-align: left;
		align-items: stretch;
	}
}

.intro-photo {
	border-radius: 10px;
	overflow: hidden;
	border: 1px solid var(--bdr);
	aspect-ratio: 1 / 1;
	max-width: 220px;
	margin: 0 auto;
}

@media (max-width: 767px) {
	.intro-photo {
		aspect-ratio: 4 / 5;
		max-width: none;
		width: auto;
		margin-left: -16px;
		margin-right: -16px;
	}
}

@media (min-width: 768px) {
	.intro-photo {
		max-width: none;
		aspect-ratio: auto;
		height: 100%;
		min-height: 420px;
	}
}

.intro-photo img {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
	object-position: center top;
}

.intro-text p {
	font-size: 1.02rem;
	color: var(--navy);
	line-height: 1.68;
	margin: 0;
}
.intro-text p + p {
	margin-top: 14px;
}

.intro-pills {
	margin-top: 16px;
	display: flex;
	flex-direction: column;
	gap: 9px;
	list-style: none;
	padding: 0;
	align-items: flex-start;
}

@media (max-width: 767px) {
	.intro-pills {
		align-items: flex-start;
		text-align: left;
	}
}

.intro-pills li {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	font-size: 0.96rem;
	color: var(--navy);
	line-height: 1.5;
	font-weight: 500;
	max-width: none;
}

.ip-ico {
	flex-shrink: 0;
	width: 22px;
	height: 22px;
	background: var(--teal);
	color: var(--white);
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 0.72rem;
	font-weight: 700;
	margin-top: 2px;
}

.intro-cta {
	margin-top: 20px;
}

@media (max-width: 767px) {
	.intro-cta {
		text-align: center;
	}
	.intro-cta .btn {
		width: 100%;
		max-width: 340px;
	}
}

/* ---------------------------------------------------------
   17. ABOUT PAGE — CONTENT BLOCKS
   --------------------------------------------------------- */
.block {
	/* No horizontal padding: content aligns flush with the .c container edge,
     matching .sec-hd and every other section for consistent left alignment. */
	padding: 0;
}

.block h2 {
	margin-bottom: 0.8rem;
}
.block p {
	margin-bottom: 0.8rem;
}

.creds {
	background: var(--bg);
	border-left: 3px solid var(--teal);
	padding: 16px 18px;
	margin: 12px 0;
	border-radius: var(--radius-md);
}

.creds h3 {
	color: var(--navy);
	margin-bottom: 0.5rem;
	font-family: var(--font-body);
	font-size: 0.98rem;
}

.creds ul {
	padding-left: 18px;
	list-style: disc;
}
.creds li {
	margin: 5px 0;
	color: var(--navy);
	font-size: 0.93rem;
	max-width: none;
}

.experience {
	background: var(--white);
	border-left: 3px solid var(--accent);
	border-top: 1px solid var(--bdr);
	border-right: 1px solid var(--bdr);
	border-bottom: 1px solid var(--bdr);
	padding: 16px 18px;
	margin: 12px 0;
	border-radius: var(--radius-md);
}

.experience h3 {
	color: var(--navy);
	margin-bottom: 0.5rem;
	font-family: var(--font-body);
	font-size: 0.98rem;
}

.experience ul {
	padding-left: 18px;
	list-style: disc;
}
.experience li {
	margin: 5px 0;
	color: var(--navy);
	font-size: 0.93rem;
	max-width: none;
}

.disclosure {
	background: #fdf8f5;
	border: 1px solid rgba(191, 74, 27, 0.25);
	padding: 14px 16px;
	border-radius: var(--radius-md);
	margin: 12px 0;
	font-size: 0.93rem;
	color: var(--navy);
	line-height: 1.6;
}

.session {
	background: var(--bg);
	border-radius: 8px;
	padding: 16px 18px;
	margin: 12px 0;
	border: 1px solid var(--bdr);
}

.session h3 {
	color: var(--navy);
	margin-bottom: 0.5rem;
	font-family: var(--font-body);
	font-size: 0.98rem;
}

.session p {
	color: var(--navy);
	font-size: 0.93rem;
	margin-bottom: 0.5rem;
}

.cta-row {
	text-align: center;
	padding: 16px 0;
	display: flex;
	flex-direction: column;
	gap: 12px;
	align-items: stretch;
}

@media (min-width: 768px) {
	.cta-row {
		flex-direction: row;
		align-items: center;
		justify-content: center;
	}
	.cta-row .btn {
		width: auto;
	}
}

/* ---------------------------------------------------------
   18. CONDITIONS PAGE — QUICK NAV
   --------------------------------------------------------- */
.qnav {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 7px;
	margin: 0 auto 1.4rem;
}

@media (max-width: 1023px) {
	.qnav {
		flex-wrap: nowrap;
		overflow-x: auto;
		justify-content: flex-start;
		padding-bottom: 4px;
		-webkit-overflow-scrolling: touch;
		scrollbar-width: none;
		mask-image: linear-gradient(
			to right,
			transparent 0,
			black 4%,
			black 92%,
			transparent 100%
		);
		-webkit-mask-image: linear-gradient(
			to right,
			transparent 0,
			black 4%,
			black 92%,
			transparent 100%
		);
	}
	.qnav::-webkit-scrollbar {
		display: none;
	}
	.qnav a {
		flex-shrink: 0;
	}
}

.qnav a {
	background: var(--white);
	border: 1px solid var(--bdr);
	color: var(--navy);
	padding: 7px 14px;
	border-radius: var(--radius-full);
	font-size: 0.86rem;
	font-weight: 500;
	transition:
		border-color 0.2s,
		color 0.2s,
		background 0.2s;
	min-height: 36px;
	display: inline-flex;
	align-items: center;
	max-width: none;
}

.qnav a:hover {
	border-color: var(--teal);
	color: var(--teal);
	outline: none;
}

.qnav a:focus-visible {
	border-color: var(--teal);
	color: var(--teal);
}

.qnav a.is-active {
	background: var(--teal);
	border-color: var(--teal);
	color: var(--white);
}

/* ---------------------------------------------------------
   19. CONDITIONS PAGE — REGION ACCORDION
   --------------------------------------------------------- */
.region {
	background: var(--white);
	border: 1px solid var(--bdr);
	border-radius: 10px;
	margin-bottom: 12px;
	overflow: hidden;
	scroll-margin-top: 80px;
}

.region-hd {
	width: 100%;
	text-align: left;
	background: var(--white);
	border: none;
	cursor: pointer;
	padding: 20px 24px;
	min-height: 68px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 16px;
	font-family: var(--font-body);
}

.region-hd:hover {
	background: var(--bg);
	outline: none;
}
.region-hd:focus-visible {
	background: var(--bg);
}

.region-hd[aria-expanded="true"] {
	background: var(--bg);
	border-bottom: 1px solid var(--bdr);
}

.region-title {
	display: flex;
	align-items: center;
	gap: 14px;
	flex: 1;
	min-width: 0;
}

.region-ico {
	width: 40px;
	height: 40px;
	background: var(--bg);
	border: 1px solid var(--bdr);
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	transition:
		background 0.2s,
		border-color 0.2s;
	color: var(--muted);
}

.region-hd[aria-expanded="true"] .region-ico {
	background: var(--teal);
	border-color: var(--teal);
	color: var(--white);
}

.region-text h2 {
	font-family: var(--font-display);
	font-size: 1.15rem;
	font-weight: 600;
	color: var(--navy);
	margin-bottom: 2px;
}

.region-count {
	font-size: 0.82rem;
	color: var(--muted);
	font-weight: 500;
	max-width: none;
}

.region-arr {
	flex-shrink: 0;
	width: 12px;
	height: 12px;
	border-right: 2px solid var(--muted);
	border-bottom: 2px solid var(--muted);
	transform: rotate(45deg);
	transition:
		transform 0.25s,
		border-color 0.25s;
}

.region-hd[aria-expanded="true"] .region-arr {
	transform: rotate(-135deg);
	border-color: var(--teal);
}

.region-body {
	display: grid;
	grid-template-rows: 0fr;
	overflow: hidden;
	transition: grid-template-rows 0.3s ease;
}

.region-body.open {
	grid-template-rows: 1fr;
}

/* IMPORTANT: no vertical padding here — padding causes the grid track minimum
   to be non-zero, making text bleed through when the accordion is closed.
   Padding is applied only on the open state (same pattern as .cond-body). */
.region-body-inner {
	padding: 0 18px;
	transition: padding 0.3s ease;
}

.region-body.open > .region-body-inner {
	padding: 16px 18px 20px;
}

/* ---------------------------------------------------------
   20. CONDITIONS PAGE — CONDITION ACCORDION
   --------------------------------------------------------- */
.cond {
	border: 1px solid var(--bdr);
	border-radius: 8px;
	margin: 7px 0;
	overflow: hidden;
	background: var(--white);
}

.cond-hd {
	width: 100%;
	text-align: left;
	background: var(--white);
	border: none;
	cursor: pointer;
	padding: 15px 20px;
	min-height: 56px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 12px;
	font-family: var(--font-body);
	font-weight: 600;
	color: var(--navy);
	font-size: 0.95rem;
}

.cond-hd:hover {
	background: var(--bg);
	outline: none;
}
.cond-hd:focus-visible {
	background: var(--bg);
}
.cond-hd[aria-expanded="true"] {
	background: var(--bg);
}

.cond-arr {
	flex-shrink: 0;
	width: 10px;
	height: 10px;
	border-right: 2px solid var(--muted);
	border-bottom: 2px solid var(--muted);
	transform: rotate(45deg);
	transition: transform 0.25s;
}

.cond-hd[aria-expanded="true"] .cond-arr {
	transform: rotate(-135deg);
	border-color: var(--teal);
}

.cond-body {
	display: grid;
	grid-template-rows: 0fr;
	overflow: hidden;
	transition:
		grid-template-rows 0.3s ease,
		padding 0.3s ease;
	padding: 0 18px;
}

.cond-body.open {
	grid-template-rows: 1fr;
	padding: 4px 18px 18px;
}

.cond-body p {
	margin-bottom: 1rem;
	font-size: 0.95rem;
	line-height: 1.72;
	color: var(--navy);
}

.cond-body p:last-child {
	margin-bottom: 0;
}

/* Transform inline bold labels into scannable section headers */
.cond-body p strong {
	display: block;
	font-size: 0.69rem;
	text-transform: uppercase;
	letter-spacing: 0.09em;
	font-weight: 700;
	color: var(--teal);
	margin-bottom: 3px;
	font-family: var(--font-body);
}

.cond-cta {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	margin-top: 14px;
	color: var(--teal);
	font-size: 0.87rem;
	font-weight: 600;
	text-decoration: none;
	border-bottom: 1.5px solid rgba(14, 110, 110, 0.3);
	padding-bottom: 1px;
	transition:
		color 0.2s,
		border-color 0.2s;
}
.cond-cta::after {
	content: "→";
	font-size: 0.85rem;
}
.cond-cta:hover {
	color: var(--tealdk);
	border-bottom-color: var(--teal);
}

/* ---------------------------------------------------------
   21. CONDITIONS PAGE — CLOSING CTA BOX
   --------------------------------------------------------- */
.closing {
	background: var(--bg);
	border: 1px solid var(--bdr);
	border-radius: 10px;
	padding: 32px 28px;
	text-align: center;
	margin-top: 36px;
}

.closing h2 {
	font-size: 1.35rem;
	margin-bottom: 0.6rem;
}
.closing p {
	max-width: 540px;
	margin: 0 auto 1.2rem;
}

/* Sticky booking bar — conditions page, mobile only */
.conditions-sticky-cta {
	display: none;
}

/* ---------------------------------------------------------
   22. AREAS SERVED LIST (contact.html)
   --------------------------------------------------------- */
.areas-list {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
	gap: 10px;
	list-style: none;
	padding: 0;
	margin: 1.4rem 0 0;
}
.areas-list li {
	background: var(--bg-alt);
	border: 1px solid var(--bdr);
	border-radius: var(--radius-sm);
	padding: 10px 16px;
	font-size: 0.9rem;
	font-weight: 500;
	color: var(--navy);
	text-align: center;
}

/* ---------------------------------------------------------
   22b. TREATMENT MODALITIES
--------------------------------------------------------- */
.modalities-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	gap: 20px;
	margin-bottom: 48px;
}
.modality-card {
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: 12px;
	padding: 24px;
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.modality-icon {
	color: var(--teal);
	width: 36px;
	height: 36px;
	display: flex;
	align-items: center;
}
.modality-card h3 {
	font-size: 1rem;
	font-weight: 600;
	color: var(--navy);
	margin: 0;
}
.modality-card p {
	font-size: 0.9rem;
	color: var(--text-mid);
	line-height: 1.55;
	margin: 0;
	max-width: none;
}
.modality-used {
	font-size: 0.82rem !important;
	color: var(--teal) !important;
	font-weight: 500;
	border-top: 1px solid var(--border);
	padding-top: 10px;
	margin-top: 4px !important;
}
.modality-table-wrap {
	margin-top: 8px;
}
.modality-table-title {
	font-size: 1rem;
	font-weight: 600;
	color: var(--navy);
	margin-bottom: 16px;
}
.modality-table-scroll {
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
	border: 1px solid var(--border);
	border-radius: 10px;
}
.modality-table {
	width: 100%;
	border-collapse: collapse;
	font-size: 0.875rem;
	min-width: 640px;
}
.modality-table th {
	background: var(--navy);
	color: var(--white);
	text-align: center;
	padding: 10px 12px;
	font-weight: 500;
	white-space: nowrap;
}
.modality-table th:first-child {
	text-align: left;
	min-width: 180px;
}
.modality-table td {
	padding: 9px 12px;
	text-align: center;
	border-bottom: 1px solid var(--border);
	color: var(--teal);
	font-weight: 600;
}
.modality-table td:first-child {
	text-align: left;
	color: var(--navy);
	font-weight: 400;
}
.modality-table tbody tr:last-child td {
	border-bottom: none;
}
.modality-table tbody tr:nth-child(even) {
	background: var(--bg-alt, #f7f9fa);
}
.modality-note {
	font-size: 0.82rem;
	color: var(--text-mid);
	margin-top: 12px;
	font-style: italic;
	max-width: none;
}

/* ---------------------------------------------------------
   23. FOOTER
   --------------------------------------------------------- */
.footer {
	background: var(--navy);
	padding: var(--space-16) 0 var(--space-10);
	color: rgba(255, 255, 255, 0.68);
	border-top: 2px solid var(--teal);
}

.footer p {
	color: rgba(255, 255, 255, 0.68);
	font-size: 0.88rem;
}

.fg {
	display: grid;
	grid-template-columns: 1fr;
	gap: 28px;
	margin-bottom: 32px;
}

@media (min-width: 768px) {
	.fg {
		grid-template-columns: 1.2fr 1fr 1fr 1fr;
		gap: 32px;
		align-items: start;
		text-align: left;
	}
}

.f-logo {
	font-family: var(--font-display);
	font-size: 1.6rem;
	font-weight: 700;
	letter-spacing: -0.01em;
	display: flex;
	align-items: center;
	gap: 9px;
	color: var(--white);
	margin-bottom: 0.65rem;
}

.f-logo::before {
	content: "";
	display: block;
	width: 7px;
	height: 7px;
	background: var(--teal-hi);
	border-radius: 50%;
	flex-shrink: 0;
}

.f-logo span {
	color: var(--teal-hi);
	font-weight: 400;
	letter-spacing: 0.07em;
}

.fc p {
	font-family: var(--font-body);
	font-size: 0.76rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: rgba(255, 255, 255, 0.5);
	margin-bottom: 0.8rem;
	max-width: none;
}

.fc ul {
	display: flex;
	flex-direction: column;
	gap: 4px;
}
.fc ul li {
	max-width: none;
	font-size: 0.88rem;
	color: rgba(255, 255, 255, 0.65);
	padding: 3px 0;
	text-align: left;
}

.fc ul a {
	font-size: 0.88rem;
	color: rgba(255, 255, 255, 0.65);
	transition: color 0.2s;
	display: inline-flex;
	align-items: center;
	padding: 3px 0;
}

.fc ul a:hover {
	color: var(--white);
}

.fb {
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	padding-top: 16px;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 6px;
	font-size: 0.78rem;
	color: rgba(255, 255, 255, 0.6);
}

.fb a {
	color: rgba(255, 255, 255, 0.55);
}
.fb a:hover {
	color: var(--white);
}

/* ---------------------------------------------------------
   23. TRUST / UTILITY COMPONENTS
   --------------------------------------------------------- */

/* Badge row */
.badge-row {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 1.2rem;
}

/* Registration / credential badges */
.badge-registration {
	display: inline-flex;
	align-items: center;
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: var(--radius-full);
	padding: 5px 12px;
	font-size: var(--text-xs);
	font-weight: 500;
	color: rgba(255, 255, 255, 0.7);
	gap: var(--space-2);
	background: rgba(255, 255, 255, 0.06);
}

/* Badge row outside hero (about page qualification section) */
.badge-row .badge-registration {
	border-color: var(--bdr);
	color: var(--muted);
	background: var(--bg);
}

/* Profile photo placeholder */
.profile-photo {
	width: 160px;
	height: 160px;
	border-radius: 50%;
	background: var(--color-surface-offset);
	border: 2px solid var(--color-border);
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: var(--font-display);
	font-size: var(--text-xl);
	color: var(--color-text-muted);
	margin: 0 auto var(--space-4);
	overflow: hidden;
	flex-shrink: 0;
}

.profile-photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}


/* ---------------------------------------------------------
   25. SKIP LINK
   --------------------------------------------------------- */
.skip-link {
	position: absolute;
	left: -9999px;
	top: 0;
	background: var(--accent);
	color: var(--white);
	padding: 12px 20px;
	font-weight: 700;
	font-size: var(--text-sm);
	z-index: 9999;
	border-radius: 0 0 var(--radius-md) 0;
	text-decoration: none;
	white-space: nowrap;
}

.skip-link:focus {
	left: 0;
	outline: 2px solid var(--white);
	outline-offset: 2px;
}

/* ---------------------------------------------------------
   26. LUCIDE ICON SIZING
   --------------------------------------------------------- */
i[data-lucide] {
	display: inline-block;
	width: 18px;
	height: 18px;
	stroke-width: 1.75;
	vertical-align: middle;
}

.card i[data-lucide] {
	width: 24px;
	height: 24px;
	color: var(--muted); /* changed from teal — reduces teal overuse */
	display: block;
	margin-bottom: var(--space-3);
}

/* ---------------------------------------------------------
   27. MOBILE BREAKPOINTS
   --------------------------------------------------------- */
@media (max-width: 768px) {
	/* ---- Section padding: 48px → 28px (saves ~280px across all sections) ---- */
	.s,
	.s-alt,
	.s-dk {
		padding: 28px 0;
	}
	.hero-wrap {
		padding: 10px 0 16px;
	}
	.hero:not(.hero-inner) {
		padding: 32px 0 24px;
		border-radius: 12px;
	}
	.hero-inner {
		padding: 18px 0 12px;
	}
	.intro {
		padding: 20px 0;
	}
	.footer {
		padding: 28px 0 20px;
	}

	/* ---- Internal element margins: 2rem → 1.2rem ---- */
	.sec-hd {
		margin-bottom: 1.2rem;
	}
	.cards {
		margin-top: 1.2rem;
	}
	.timeline {
		margin-top: 1.2rem;
	}
	.prices {
		margin-top: 1.2rem;
	}
	.prices-cta {
		margin-top: 1.2rem;
	}
	.prices-note {
		margin-top: 1.2rem;
	}
	.timeline-cta {
		margin-top: 1.2rem;
	}
	.faq {
		margin-top: 1.2rem;
	}

	/* ---- Component overrides ---- */
	.block {
		padding: 0;
	}
	.creds,
	.experience,
	.session {
		padding: 14px;
	}

	.sec-hd h2 {
		font-size: 1.4rem;
	}
	.sec-hd p {
		margin-top: 0.3rem;
	}
	.conds {
		margin-top: 1.2rem;
	}
	.conds-cta {
		margin-top: 1rem;
	}
	.hero-ctas {
		margin-top: 0.9rem;
	}

	.region-hd {
		padding: 16px 18px;
	}
	.region-text h2 {
		font-size: 1.05rem;
	}
	.cond-hd {
		font-size: 0.9rem;
	}
	.qnav a {
		font-size: 0.8rem;
		padding: 6px 12px;
		min-height: 44px;
	}

	main {
		padding-bottom: 0;
	}

	/* ---- About page hero — strip redundant elements on mobile ---- */
	.hero-inner .conds-trust-list {
		display: none;
	}
	.hero-inner .hero-ctas {
		display: none;
	}
	.hero-inner .tag {
		margin-bottom: 0.3rem;
	}
	.hero-inner h1 {
		margin-bottom: 0.5rem;
	}
	/* Home hero: primary CTA is the only booking action here, keep it visible */
	.hero-home .hero-ctas {
		display: flex;
	}
}

@media (max-width: 767px) {
	.conds {
		grid-template-columns: 1fr 1fr;
	}

	/* Homepage hero — tighten vertical rhythm to reduce wasted space */
	.hero-split {
		padding-top: 16px;
		padding-bottom: 14px;
	}
	.hero-split #h1-home {
		margin-bottom: 10px;
	}
	.hero-split .hero-copy p {
		margin-bottom: 14px;
		line-height: 1.5;
	}
	.hero-split .conds-trust-list {
		margin-bottom: 0;
	}
	.hero-split .hero-ctas {
		margin-top: 12px;
	}
	.hero-split .hero-media {
		margin-top: 14px;
	}
}

@media (max-width: 480px) {
	.conds {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 420px) {
	h1 {
		font-size: 1.55rem;
	}
	.pills li {
		font-size: 0.78rem;
		padding: 5px 12px;
	}
}

@media (max-width: 360px) {
	h1 {
		font-size: 1.38rem;
	}
	h2 {
		font-size: 1.3rem;
	}
	.btn {
		padding: 11px 18px;
		font-size: 0.88rem;
	}
}

/* ---------------------------------------------------------
   28. CONDITIONS PAGE — MOBILE UX
   --------------------------------------------------------- */

/* Trust strip */
.conds-trust {
	background: var(--white);
	border-bottom: 1px solid var(--bdr);
	padding: 10px 0;
	/* overflow: hidden removed — it clips nowrap content at medium widths */
}

.conds-trust-list {
	display: flex;
	flex-wrap: wrap; /* wrap on large desktop — all 5 fit in one row at 1280px */
	gap: 6px 20px;
	justify-content: center;
	align-items: center;
	list-style: none;
	padding: 0;
}

/* Tablet and below: wrap to centred rows */
@media (max-width: 1023px) {
	.conds-trust-list {
		flex-wrap: wrap;
		overflow-x: visible;
		justify-content: center;
		padding: 0 4px;
	}
}

/* Mobile: 2x2 grid instead of 4 stacked rows, to cut vertical space */
@media (max-width: 540px) {
	.conds-trust-list {
		display: grid;
		grid-template-columns: 1fr 1fr;
		justify-content: center;
		justify-items: start;
		column-gap: 14px;
		row-gap: 6px;
		padding: 0;
		max-width: 300px;
		margin-inline: auto;
	}
}

.conds-trust-item {
	display: flex;
	align-items: center;
	gap: 5px;
	font-size: 0.79rem;
	font-weight: 500;
	color: var(--muted);
	white-space: nowrap;
	max-width: none;
}

/* Mobile item overrides — must come after base rule to win cascade */
@media (max-width: 540px) {
	.conds-trust-item {
		font-size: 0.67rem;
		white-space: normal;
		text-align: left;
		align-items: flex-start;
		gap: 4px;
		line-height: 1.25;
	}
	.conds-trust-item i[data-lucide] {
		margin-top: 1px;
	}
}

/* Compact hero rhythm on phones: keep the portrait above the fold */
@media (max-width: 540px) {
	.hero-wrap {
		padding: 12px 12px 24px;
	}
	.hero {
		padding: 38px 0 30px;
	}
	.hero:not(.hero-inner) h1 {
		margin-bottom: 0.7rem;
	}
	.hero:not(.hero-inner) p {
		font-size: 0.97rem;
		margin-bottom: 1rem;
	}
	.hero-ctas {
		margin-top: 1rem;
		gap: 9px;
	}
	.hero-media {
		margin-top: 16px;
	}
}

.conds-trust-item i[data-lucide] {
	width: 13px;
	height: 13px;
	color: var(--teal);
	flex-shrink: 0;
	display: inline-block;
}

/* Region section intro */
.region-intro {
	font-size: 0.93rem;
	color: var(--muted);
	line-height: 1.65;
	margin-bottom: 1.2rem;
	padding: 10px 14px;
	background: var(--bg);
	border-left: 3px solid rgba(14, 110, 110, 0.28);
	border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
	max-width: none;
}

/* Sticky dual CTA bar — conditions page, mobile only */
@media (max-width: 767px) {
	.conditions-sticky-cta {
		display: flex;
		position: fixed;
		bottom: 0;
		left: 0;
		right: 0;
		z-index: 50;
		background: var(--white);
		border-top: 1px solid var(--bdr);
		box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
		padding: 10px 16px;
		padding-bottom: max(10px, env(safe-area-inset-bottom));
		gap: 10px;
		align-items: center;
	}

	.cta-bar-btn {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		gap: 7px;
		min-height: 48px;
		border-radius: var(--radius-md);
		font-size: 0.9rem;
		font-weight: 600;
		font-family: var(--font-body);
		text-decoration: none;
		cursor: pointer;
		transition:
			background 0.2s,
			border-color 0.2s;
		border: 1.5px solid transparent;
		max-width: none;
	}

	.cta-bar-btn i[data-lucide] {
		width: 16px;
		height: 16px;
		display: inline-block;
	}

	.cta-bar-call {
		flex: 0 0 auto;
		padding: 0 20px;
		background: var(--bg);
		color: var(--navy);
		border-color: var(--bdr);
	}
	.cta-bar-call:hover {
		border-color: var(--teal);
		color: var(--teal);
	}

	.cta-bar-book {
		flex: 1;
		background: var(--accent);
		color: var(--white);
		border-color: var(--accent);
	}
	.cta-bar-book:hover {
		background: var(--acdk);
		border-color: var(--acdk);
	}

	/* Quick nav scroll — already handled by ≤1023px rule above */

	/* Trust strip wraps on mobile (see ≤1023px rule); no scroll fade needed */
	.conds-trust-list {
		gap: 6px 14px;
		mask-image: none;
		-webkit-mask-image: none;
	}
}

/* ---------------------------------------------------------
   29. REDUCED MOTION
   --------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		transition: none !important;
		animation: none !important;
	}
	html {
		scroll-behavior: auto;
	}
}

/* Red-flag self-check */
.redflag {
	max-width: 720px;
	margin: 0 auto;
	background: var(--white);
	border: 1px solid var(--bdr);
	border-radius: var(--radius-lg);
	padding: 28px;
}
.rf-head {
	display: flex;
	gap: 16px;
	align-items: flex-start;
	margin-bottom: 18px;
}
.rf-head svg {
	flex-shrink: 0;
	width: 30px;
	height: 30px;
	color: var(--accent);
}
.rf-head h2 {
	margin: 0 0 4px;
}
.rf-head p {
	margin: 0;
	color: var(--muted);
}
.rf-quiz {
	margin-top: 18px;
}
.rf-q {
	font-weight: 600;
	color: var(--navy);
	margin-bottom: 12px;
}
.rf-list {
	list-style: none;
	padding: 0;
	margin: 0 0 18px;
	display: flex;
	flex-direction: column;
	gap: 12px;
}
.rf-list label {
	display: flex;
	gap: 12px;
	align-items: flex-start;
	font-size: 0.98rem;
	line-height: 1.5;
	cursor: pointer;
	width: 100%;
}
.rf-list input {
	width: 20px;
	height: 20px;
	margin: 2px 0 0;
	flex-shrink: 0;
	accent-color: var(--teal);
}
.rf-result {
	margin-top: 18px;
	padding: 16px 18px;
	border-radius: var(--radius-md);
	line-height: 1.6;
}
.rf-result.is-clear {
	background: color-mix(in srgb, var(--teal) 12%, var(--white));
	border: 1px solid var(--teal);
}
.rf-result.is-urgent {
	background: #fdeee8;
	border: 1px solid var(--accent);
}
.rf-result strong {
	display: block;
	margin-bottom: 6px;
}
.rf-result .btn {
	margin-top: 12px;
}
.rf-disclaimer {
	font-size: 0.85rem;
	color: var(--muted);
	margin-top: 14px;
}

/* ---------------------------------------------------------
   STICKY MOBILE BOOK BAR (injected by main.js)
--------------------------------------------------------- */
.sticky-book {
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 60;
	display: none;
	gap: 10px;
	padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
	background: rgba(255, 255, 255, 0.96);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	border-top: 1px solid var(--bdr);
	transform: translateY(120%);
	transition: transform 0.28s ease;
}
.sticky-book.is-visible {
	transform: translateY(0);
}
.sb-book {
	flex: 1;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	min-height: 48px;
	padding: 13px;
	background: var(--teal);
	color: var(--white);
	font-weight: 700;
	border-radius: var(--radius-md);
	text-decoration: none;
}
.sb-book:hover {
	background: var(--tealdk);
}
.sb-book i[data-lucide] {
	width: 20px;
	height: 20px;
	flex-shrink: 0;
}

@media (max-width: 767px) {
	.sticky-book {
		display: flex;
	}
	/* Reserve space matching the bar's own height, including its safe-area
     padding: a fixed value here under-reserves on devices with a taller
     home-indicator inset, letting the bar cover the last bit of content. */
	body {
		padding-bottom: calc(76px + env(safe-area-inset-bottom));
	}
}

/* ---------------------------------------------------------
   SELF-HELP TOOLS (self-help.html)
--------------------------------------------------------- */
.tool-card {
	background: var(--white);
	border: 1px solid var(--bdr);
	border-radius: var(--radius-lg);
	padding: var(--space-5);
	box-shadow: var(--shadow-sm);
	max-width: 760px;
	margin-inline: auto;
}
.ex-toolbar {
	max-width: none;
}
.ex-list {
	max-width: none;
}
.ex-list + .rf-disclaimer {
	max-width: 760px;
	margin-inline: auto;
}
.tool-result {
	margin-top: var(--space-4);
	padding: var(--space-4);
	background: color-mix(
		in srgb,
		var(--col-pain-psych-bg, #e6f4f1) 22%,
		var(--white)
	);
	border-left: 3px solid var(--teal);
	border-radius: var(--radius-md);
}
.tool-result .est-lead {
	font-size: 1.05rem;
}
.tool-result .est-pkg {
	color: var(--teal);
	font-weight: 600;
}
.tool-result .est-note {
	font-size: 0.88rem;
	color: var(--muted);
}
.tool-result .btn {
	margin-top: var(--space-2);
}

.ex-toolbar {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: var(--space-4);
}
.ex-list {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
	gap: 24px;
}
.ex-card {
	border: 1px solid var(--bdr);
	border-radius: var(--radius-md);
	background: var(--white);
	overflow: hidden;
	display: flex;
	flex-direction: column;
}
.ex-video {
	position: relative;
	width: 100%;
	padding-bottom: 56.25%;
	background: #000;
	flex-shrink: 0;
}
.ex-video iframe {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border: none;
}
.ex-body {
	padding: 20px 22px 22px;
	display: flex;
	flex-direction: column;
	gap: 8px;
	flex: 1;
}
.ex-card h3 {
	margin: 0;
	font-size: 1.05rem;
	color: var(--navy);
}
.ex-source {
	font-size: 0.78rem;
	color: var(--teal);
	font-weight: 500;
	margin: 0;
	max-width: none;
}
.ex-steps {
	margin: 4px 0 0;
	padding-left: 1.3em;
	display: flex;
	flex-direction: column;
	gap: 6px;
}
.ex-steps li {
	font-size: 0.88rem;
	color: var(--text-mid);
	line-height: 1.5;
	max-width: none;
}

.pt-val {
	display: inline-block;
	margin-top: 6px;
	font-weight: 700;
	color: var(--teal);
}
.pt-log {
	margin-top: var(--space-4);
	display: flex;
	flex-direction: column;
	gap: 6px;
}
.pt-empty {
	color: var(--muted);
}
.pt-row {
	display: grid;
	grid-template-columns: 64px 64px 1fr;
	align-items: center;
	gap: 10px;
	padding: 8px 12px;
	border: 1px solid var(--bdr);
	border-radius: var(--radius-md);
	font-size: 0.92rem;
}
.pt-date {
	color: var(--muted);
}
.pt-score {
	font-weight: 700;
}
.pt-score--lo {
	color: #166534;
}
.pt-score--mid {
	color: #b45309;
}
.pt-score--hi {
	color: #b91c1c;
}
.pt-note-txt {
	color: var(--navy);
}
.pt-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: var(--space-4);
}

/* ---------------------------------------------------------
   PRINT (exercise sheet / clean pages)
--------------------------------------------------------- */
@media print {
	.site-nav,
	.footer,
	.sticky-book,
	.ex-toolbar,
	.hero,
	.skip-link,
	.tool-card,
	#estimator,
	#tracker,
	.s-dk {
		display: none !important;
	}
	body {
		padding: 0 !important;
		color: #000;
	}
	a[href]::after {
		content: "";
	}
}

/* ---------------------------------------------------------
   HOME HERO — full-bleed photo, navy scrim (same signature
   language as the Lensbury hero: confident scale, real photo,
   no boxed "template" card)
--------------------------------------------------------- */
.hero.hero-home-clean {
	background: var(--navy);
	max-width: none;
	margin: 0;
	border-radius: 0;
	box-shadow: none;
	padding: 0;
	text-align: left;
}
.hero.hero-home-clean .c {
	padding-block: 56px;
}
.hero.hero-home-clean .hero-copy {
	position: relative;
	z-index: 1;
	max-width: 560px;
}
.hero.hero-home-clean .tag {
	color: var(--teal-hi);
	margin-bottom: 0.9rem;
}
.hero.hero-home-clean h1 {
	color: var(--white);
	margin-bottom: 1rem;
	max-width: 11ch;
}
.hero.hero-home-clean p {
	color: rgba(255, 255, 255, 0.86);
	text-align: left;
	margin: 0 0 1.75rem;
	max-width: 480px;
}
.hero.hero-home-clean .hero-ctas {
	justify-content: flex-start;
	margin-top: 0;
}
.hero.hero-home-clean .hero-media {
	position: relative;
	margin-top: 2rem;
	border-radius: 14px;
	overflow: hidden;
	box-shadow: 0 10px 34px rgba(0, 0, 0, 0.35);
	aspect-ratio: 4 / 3;
}
.hero.hero-home-clean .hero-media .editorial-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center 15%;
	border-radius: 0;
	box-shadow: none;
}

@media (min-width: 880px) {
	.hero.hero-home-clean {
		position: relative;
		min-height: 640px;
		display: flex;
		align-items: center;
		overflow: hidden;
	}
	.hero.hero-home-clean .c {
		display: flex;
		align-items: stretch;
		max-width: none;
		margin: 0;
		padding: 0;
		width: 100%;
	}
	.hero.hero-home-clean .hero-copy {
		flex: 0 0 56%;
		display: flex;
		flex-direction: column;
		justify-content: center;
		max-width: 540px;
		padding: 0 clamp(32px, 5vw, 72px);
	}
	.hero.hero-home-clean h1 {
		font-size: clamp(2.1rem, 3vw, 2.7rem);
		max-width: 11ch;
	}
	.hero.hero-home-clean .hero-media {
		position: static;
		flex: 1 1 44%;
		margin: 0;
		border-radius: 0;
		box-shadow: none;
		aspect-ratio: auto;
	}
	.hero.hero-home-clean .hero-media .editorial-img {
		object-position: center 12%;
	}
}
