:root {
	--ink: #002A58;
	--text: #183f64;
	--muted: #5b7288;
	--teal: #006A5C;
	--teal-deep: #004f45;
	--blue: #002A58;
	--cream: #ffffff;
	--cream-strong: #f5eee4;
	--mint: #e5f3f1;
	--coral: #D46567;
	--gold: #f0c75e;
	--white: #ffffff;
	--line: rgba(0, 106, 92, 0.18);
	--shadow: 0 20px 55px rgba(0, 42, 88, 0.12);
	--soft-shadow: 0 12px 34px rgba(0, 42, 88, 0.09);
	--glow: 0 28px 80px rgba(0, 106, 92, 0.16);
	--container: min(1180px, calc(100% - 40px));
	--wide: min(1320px, calc(100% - 44px));
	--radius: 8px;
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	color: var(--text);
	background: var(--white);
	font-family: "Avenir Next", "Nunito Sans", Verdana, sans-serif;
	font-size: 16px;
	line-height: 1.7;
}

body.menu-open {
	overflow: hidden;
}

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

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

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

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

.container {
	width: var(--container);
	margin: 0 auto;
}

.skip-link {
	position: absolute;
	top: 12px;
	left: 12px;
	z-index: 1000;
	padding: 10px 14px;
	color: var(--white);
	background: var(--ink);
	transform: translateY(-140%);
}

.skip-link:focus {
	transform: translateY(0);
}

.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(1px, 1px, 1px, 1px);
	white-space: nowrap;
}

.info-bar {
	color: var(--ink);
	background: var(--white);
	font-size: 14px;
	box-shadow: 0 8px 24px rgba(0, 42, 88, 0.06);
}

.info-bar-inner {
	position: relative;
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	width: min(1560px, calc(100% - 72px));
	gap: clamp(42px, 6vw, 120px);
	min-height: 162px;
	padding-top: 14px;
}

.info-bar a {
	color: var(--ink);
	font-weight: 800;
}

.top-contact {
	display: flex;
	align-items: center;
	gap: clamp(46px, 5.5vw, 92px);
	padding-top: 9px;
}

.top-contact a {
	position: relative;
	display: grid;
	gap: 2px;
	padding-left: 42px;
	line-height: 1.15;
}

.top-contact a + a {
	padding-left: 68px;
	border-left: 1px solid rgba(0, 42, 88, 0.14);
}

.top-contact a::before {
	position: absolute;
	top: 50%;
	left: 0;
	width: 28px;
	height: 28px;
	content: "";
	background: #7d8a90;
	border-radius: 50%;
	box-shadow: inset 0 0 0 8px var(--white);
	transform: translateY(-50%);
}

.top-contact a + a::before {
	left: 26px;
}

.top-contact small {
	display: block;
	color: var(--muted);
	font-size: 13px;
	font-weight: 700;
}

.site-header {
	--nav-offset: clamp(360px, 26vw, 520px);
	position: sticky;
	top: 0;
	z-index: 80;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0;
	width: min(1290px, calc(100% - var(--nav-offset) - clamp(36px, 6vw, 104px)));
	margin: -78px auto 0 var(--nav-offset);
	padding: 0;
	background: #245f91;
	border-bottom: 0;
	border-radius: 999px;
	box-shadow: 0 16px 38px rgba(0, 42, 88, 0.17);
	backdrop-filter: blur(18px);
	transition: box-shadow 0.2s ease, background 0.2s ease;
}

.site-header.is-scrolled {
	background: #245f91;
	box-shadow: 0 18px 42px rgba(0, 42, 88, 0.2);
}

.brand {
	display: inline-flex;
	align-items: center;
	min-width: 0;
	max-width: 290px;
	padding: 0;
}

.brand-logo {
	display: block;
	width: auto;
	max-width: 286px;
	max-height: 136px;
	object-fit: contain;
}

.brand-mark {
	display: grid;
	width: 68px;
	height: 68px;
	place-items: center;
	color: var(--white);
	background: var(--teal);
	border-radius: 17px;
	box-shadow: 0 16px 32px rgba(0, 106, 92, 0.17);
	font-size: 21px;
	font-weight: 900;
}

.brand-text strong {
	display: block;
	color: var(--ink);
	font-size: clamp(20px, 1.45vw, 24px);
	line-height: 1.08;
}

.brand-text small {
	display: block;
	max-width: 210px;
	color: var(--muted);
	font-size: 12px;
	font-weight: 800;
	line-height: 1.22;
}

.site-nav ul {
	display: flex;
	align-items: center;
	gap: clamp(18px, 1.7vw, 30px);
	padding: 0;
	margin: 0;
	list-style: none;
	font-size: clamp(15px, 0.9vw, 17px);
	font-weight: 800;
}

.site-nav {
	padding-left: clamp(34px, 3.2vw, 58px);
}

.mobile-menu-panel-head,
.mobile-menu-details,
.mobile-header-brand {
	display: none;
}

.mobile-brand-logo,
.mobile-menu-logo {
	display: block;
	width: auto;
	height: auto;
	object-fit: contain;
}

.site-nav li {
	position: relative;
}

.site-nav a {
	display: inline-flex;
	align-items: center;
	min-height: 66px;
	color: var(--white);
}

.site-nav a:hover {
	color: var(--gold);
}

.site-nav .menu-item-has-children > a::after {
	margin-left: 7px;
	content: "+";
	color: var(--coral);
	font-weight: 900;
}

.site-nav .sub-menu {
	position: absolute;
	top: calc(100% + 12px);
	left: 50%;
	z-index: 90;
	display: grid;
	width: min(360px, 92vw);
	gap: 4px;
	padding: 12px;
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	box-shadow: var(--shadow);
	opacity: 0;
	pointer-events: none;
	transform: translate(-50%, 8px);
	transition: opacity 0.18s ease, transform 0.18s ease;
}

.site-nav .sub-menu::before {
	position: absolute;
	right: 0;
	bottom: 100%;
	left: 0;
	height: 14px;
	content: "";
}

.site-nav li:hover > .sub-menu,
.site-nav li:focus-within > .sub-menu {
	opacity: 1;
	pointer-events: auto;
	transform: translate(-50%, 0);
}

.site-nav .sub-menu a {
	display: flex;
	min-height: auto;
	padding: 10px 12px;
	color: var(--ink);
	border-radius: 7px;
	line-height: 1.3;
}

.site-nav .sub-menu a:hover {
	background: var(--mint);
}

.header-actions {
	display: flex;
	align-items: center;
	gap: 10px;
	align-self: stretch;
	margin-left: auto;
}

.header-call {
	display: none;
	color: var(--teal);
	font-weight: 900;
}

.btn,
.header-cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 66px;
	padding: 16px clamp(36px, 4.2vw, 76px);
	border: 0;
	border-radius: var(--radius);
	font: inherit;
	font-weight: 900;
	line-height: 1.2;
	cursor: pointer;
	transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover,
.header-cta:hover {
	transform: translateY(-1px);
}

.btn-primary,
.header-cta {
	color: var(--white);
	background: #f3914d;
	border-radius: 0 999px 999px 0;
	box-shadow: none;
}

.btn-primary:hover,
.header-cta:hover {
	background: #df7d37;
}

.btn-secondary {
	color: var(--ink);
	background: var(--white);
	border: 1px solid var(--line);
}

.menu-toggle {
	display: none;
	width: 46px;
	height: 46px;
	padding: 11px;
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: var(--radius);
}

.menu-toggle span:not(.screen-reader-text) {
	display: block;
	height: 2px;
	margin: 5px 0;
	background: var(--ink);
}

h1,
h2,
h3 {
	margin: 0;
	color: var(--ink);
	font-family: "Avenir Next", "Trebuchet MS", Verdana, sans-serif;
	line-height: 1.08;
	letter-spacing: 0;
}

h1 {
	font-size: clamp(42px, 7vw, 86px);
}

h2 {
	font-size: clamp(32px, 4.5vw, 56px);
}

h3 {
	font-size: 24px;
}

p {
	margin: 0;
}

.eyebrow {
	color: var(--teal);
	font-size: 13px;
	font-weight: 900;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.hero-section {
	position: relative;
	min-height: clamp(650px, 78vh, 800px);
	padding: clamp(54px, 7vw, 84px) 0 46px;
	overflow: hidden;
	background: var(--ink);
}

.hero-section::before {
	position: absolute;
	inset: 0;
	z-index: 1;
	content: "";
	background:
		linear-gradient(90deg, rgba(0, 42, 88, 0.88) 0%, rgba(0, 42, 88, 0.76) 38%, rgba(0, 106, 92, 0.36) 63%, rgba(0, 42, 88, 0.18) 100%),
		radial-gradient(circle at 22% 24%, rgba(212, 101, 103, 0.22), transparent 30%);
	pointer-events: none;
}

.hero-grid,
.split-layout,
.appointment-grid,
.location-grid,
.page-hero-grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(340px, 0.82fr);
	gap: clamp(32px, 6vw, 76px);
	align-items: center;
}

.hero-grid {
	display: block;
	min-height: clamp(520px, 64vh, 660px);
}

.hero-section .container {
	position: static;
}

.hero-copy {
	position: relative;
	z-index: 2;
	display: grid;
	width: min(610px, 48vw);
	gap: 16px;
	align-content: center;
	padding-top: clamp(14px, 3vw, 34px);
}

.hero-copy h1 {
	max-width: 650px;
	color: var(--white);
	font-size: clamp(34px, 3.4vw, 52px);
	line-height: 1.08;
	letter-spacing: -0.03em;
}

.hero-copy .eyebrow {
	color: #f7c6c7;
	font-size: clamp(17px, 1.8vw, 24px);
	letter-spacing: 0;
	text-transform: none;
}

.hero-lede,
.page-description,
.section-head p,
.page-content > p,
.page-content li {
	font-size: 18px;
}

.hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.hero-lede {
	max-width: 620px;
	color: rgba(255, 255, 255, 0.9);
	font-size: clamp(17px, 1.35vw, 21px);
	font-weight: 700;
	line-height: 1.65;
}

.hero-mini-services {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 11px;
	max-width: 570px;
	margin-top: 2px;
}

.hero-mini-services a {
	display: grid;
	gap: 7px;
	justify-items: center;
	min-height: 108px;
	padding: 12px 12px 10px;
	color: #121212;
	text-align: center;
	background: rgba(255, 255, 255, 0.92);
	border: 0;
	border-radius: 13px;
	box-shadow: 0 18px 34px rgba(0, 42, 88, 0.18);
	backdrop-filter: blur(10px);
	transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.hero-mini-services a:hover {
	box-shadow: 0 20px 40px rgba(0, 42, 88, 0.12);
	transform: translateY(-2px);
}

.hero-mini-services .concern-icon {
	width: 42px;
	height: 42px;
	color: #111111;
	background: transparent;
	border: 0;
	border-radius: 0;
	box-shadow: none;
}

.hero-mini-services .concern-icon svg {
	width: 41px;
	height: 41px;
	stroke-width: 3;
}

.hero-mini-services strong {
	max-width: 136px;
	font-size: clamp(13px, 1.05vw, 16px);
	font-weight: 900;
	line-height: 1.08;
}

.trust-row {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	padding-top: 6px;
}

.trust-row span,
.credential-grid span,
.tag-list span {
	display: inline-flex;
	align-items: center;
	min-height: 38px;
	padding: 8px 12px;
	color: var(--ink);
	background: rgba(255, 255, 255, 0.76);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	font-size: 14px;
	font-weight: 800;
}

.hero-visual {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 0;
	width: 100%;
	overflow: hidden;
	background:
		linear-gradient(90deg, rgba(247, 247, 246, 0.18), rgba(255, 255, 255, 0)),
		var(--mint);
	border-radius: 0;
}

.hero-visual img,
.portrait-panel img,
.wide-image,
.page-hero img {
	width: 100%;
	border: 1px solid rgba(0, 106, 92, 0.15);
	border-radius: 8px;
	box-shadow: var(--shadow);
}

.hero-visual img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: 82% center;
	border: 0;
	border-radius: 0;
	box-shadow: none;
}

.clinic-location-image {
	aspect-ratio: 4 / 3;
	object-fit: contain;
	object-position: center;
	background: #fff;
	padding: 10px;
}

.floating-note {
	position: absolute;
	right: 18px;
	bottom: 18px;
	max-width: 260px;
	padding: 10px 12px;
	color: var(--ink);
	background: rgba(255, 255, 255, 0.9);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	font-size: 12px;
	font-weight: 800;
}

.hero-stat-strip {
	position: absolute;
	right: 0;
	bottom: 26px;
	left: auto;
	z-index: 2;
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	width: min(760px, 45vw);
	overflow: hidden;
	color: var(--white);
	background: rgba(61, 61, 61, 0.92);
	border-radius: 17px 0 0 17px;
	box-shadow: 0 24px 48px rgba(0, 42, 88, 0.18);
	backdrop-filter: blur(12px);
}

.hero-stat-strip span {
	display: grid;
	gap: 3px;
	padding: 18px 24px;
	border-right: 1px solid rgba(255, 255, 255, 0.28);
	font-size: clamp(16px, 1.25vw, 20px);
	font-weight: 900;
	line-height: 1.2;
}

.hero-stat-strip span:last-child {
	border-right: 0;
}

.hero-stat-strip strong {
	display: block;
	color: var(--white);
	font-size: clamp(24px, 2.2vw, 34px);
	line-height: 1;
}

.section {
	padding: clamp(62px, 8vw, 104px) 0;
}

.section-head {
	display: grid;
	max-width: 830px;
	gap: 14px;
	margin-bottom: 34px;
}

.concern-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 16px;
}

.concern-section {
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.62), rgba(255, 250, 243, 0.96)),
		radial-gradient(circle at 84% 18%, rgba(212, 101, 103, 0.1), transparent 28%);
}

.concern-card,
.service-card,
.process-grid article,
.content-block,
.enquiry-form,
	.resource-card {
	display: grid;
	gap: 12px;
	padding: 26px;
	background:
		linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(229, 243, 241, 0.3)),
		var(--white);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	box-shadow: var(--soft-shadow);
}

.concern-card {
	position: relative;
	min-height: 290px;
	overflow: hidden;
}

.concern-card::after {
	position: absolute;
	right: 22px;
	bottom: 20px;
	width: 34px;
	height: 34px;
	display: grid;
	place-items: center;
	content: ">";
	color: var(--white);
	background: var(--coral);
	border-radius: 50%;
	box-shadow: 0 10px 22px rgba(212, 101, 103, 0.25);
	opacity: 0;
	transform: translateX(-8px);
	transition: opacity 0.2s ease, transform 0.2s ease;
}

.concern-card:hover::after {
	opacity: 1;
	transform: translateX(0);
}

.concern-icon {
	width: 64px;
	height: 64px;
	display: grid;
	place-items: center;
	color: var(--teal);
	background:
		radial-gradient(circle at 28% 24%, rgba(255, 255, 255, 0.92), transparent 32%),
		linear-gradient(135deg, rgba(229, 243, 241, 0.98), rgba(240, 199, 94, 0.28));
	border: 1px solid rgba(0, 106, 92, 0.22);
	border-radius: 18px;
	box-shadow: inset 0 -12px 24px rgba(0, 106, 92, 0.08), 0 14px 30px rgba(0, 42, 88, 0.08);
}

.concern-icon svg {
	width: 38px;
	height: 38px;
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 3.6;
}

.concern-card:nth-child(3n + 2) .concern-icon {
	color: var(--blue);
	background:
		radial-gradient(circle at 28% 24%, rgba(255, 255, 255, 0.92), transparent 32%),
		linear-gradient(135deg, rgba(229, 243, 241, 0.9), rgba(0, 42, 88, 0.1));
}

.concern-card:nth-child(3n) .concern-icon {
	color: var(--coral);
	background:
		radial-gradient(circle at 28% 24%, rgba(255, 255, 255, 0.92), transparent 32%),
		linear-gradient(135deg, rgba(255, 250, 243, 0.96), rgba(212, 101, 103, 0.16));
}

.concern-card:hover,
.service-card:hover,
.resource-card:hover {
	transform: translateY(-3px);
	box-shadow: var(--shadow);
}

.concern-card,
.service-card,
.resource-card {
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.about-band,
.process-section,
.location-section {
	background: rgba(255, 255, 255, 0.5);
	border-top: 1px solid rgba(0, 106, 92, 0.1);
	border-bottom: 1px solid rgba(0, 106, 92, 0.1);
}

.faq-preview {
	position: relative;
	overflow: hidden;
	background:
		radial-gradient(circle at 12% 28%, rgba(212, 101, 103, 0.16), transparent 26%),
		radial-gradient(circle at 88% 18%, rgba(240, 199, 94, 0.22), transparent 24%),
		linear-gradient(135deg, rgba(229, 243, 241, 0.86), rgba(255, 255, 255, 0.94) 44%, rgba(0, 42, 88, 0.08));
	border-top: 1px solid rgba(0, 106, 92, 0.12);
	border-bottom: 1px solid rgba(0, 106, 92, 0.12);
}

.faq-preview::before {
	position: absolute;
	top: 54px;
	right: 7%;
	width: 220px;
	height: 220px;
	content: "";
	background:
		linear-gradient(135deg, rgba(0, 106, 92, 0.12), rgba(212, 101, 103, 0.1));
	border-radius: 42px;
	transform: rotate(9deg);
}

.faq-preview::after {
	position: absolute;
	bottom: 44px;
	left: 8%;
	width: 150px;
	height: 150px;
	content: "";
	border: 18px solid rgba(0, 106, 92, 0.1);
	border-radius: 50%;
}

.faq-preview .split-layout {
	position: relative;
	z-index: 1;
}

.faq-preview .split-layout > div:first-child {
	padding: clamp(28px, 4vw, 44px);
	background: rgba(255, 255, 255, 0.88);
	border: 1px solid rgba(0, 106, 92, 0.14);
	border-radius: 18px;
	box-shadow: var(--soft-shadow);
	backdrop-filter: blur(14px);
}

.service-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
}

.service-card span,
.text-link {
	color: var(--teal);
	font-weight: 900;
	text-decoration: underline;
	text-underline-offset: 5px;
}

.clinic-hours {
	margin: 0 0 16px;
}

.clinic-hours p {
	margin-bottom: 8px;
}

.clinic-hours dl {
	display: grid;
	gap: 4px;
	margin: 0;
}

.clinic-hours dl div {
	display: grid;
	grid-template-columns: 104px 1fr;
	gap: 16px;
	align-items: baseline;
}

.clinic-hours dt {
	color: var(--navy);
	font-weight: 900;
}

.clinic-hours dd {
	margin: 0;
	color: var(--muted);
	font-weight: 800;
}

.process-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 16px;
}

.process-grid span {
	color: var(--coral);
	font-size: 15px;
	font-weight: 900;
}

.trust-section {
	background: var(--ink);
}

.trust-section h2,
.trust-section p:not(.eyebrow) {
	color: var(--white);
}

.trust-section .eyebrow {
	color: var(--gold);
}

.credential-grid {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.faq-list {
	display: grid;
	gap: 12px;
}

details {
	position: relative;
	padding: 18px 20px;
	overflow: hidden;
	background: rgba(255, 255, 255, 0.94);
	border: 1px solid var(--line);
	border-radius: 14px;
	box-shadow: 0 14px 32px rgba(0, 42, 88, 0.08);
	transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

details::before {
	position: absolute;
	inset: 0 auto 0 0;
	width: 5px;
	content: "";
	background: linear-gradient(180deg, var(--teal), var(--coral));
	opacity: 0;
	transition: opacity 0.2s ease;
}

details[open],
details:hover {
	border-color: rgba(0, 106, 92, 0.28);
	box-shadow: 0 20px 42px rgba(0, 42, 88, 0.12);
	transform: translateY(-2px);
}

details[open]::before,
details:hover::before {
	opacity: 1;
}

summary {
	color: var(--ink);
	font-weight: 900;
	cursor: pointer;
}

summary + p {
	position: relative;
	margin-top: 10px;
	color: var(--text);
}

.appointment-section {
	background:
		linear-gradient(135deg, rgba(0, 106, 92, 0.92), rgba(0, 79, 69, 0.94)),
		var(--teal);
}

.appointment-section h2,
.appointment-section p,
.appointment-section .eyebrow {
	color: var(--white);
}

.appointment-section .btn-secondary {
	color: var(--ink);
}

.enquiry-form label {
	display: grid;
	gap: 6px;
	color: var(--ink);
	font-weight: 900;
}

input,
textarea {
	width: 100%;
	padding: 13px 14px;
	color: var(--ink);
	background: var(--cream);
	border: 1px solid var(--line);
	border-radius: 7px;
	font: inherit;
}

textarea {
	resize: vertical;
}

.enquiry-form p {
	color: var(--muted);
	font-size: 13px;
}

.page-hero {
	position: relative;
	overflow: hidden;
	padding: clamp(58px, 7vw, 92px) 0;
	background:
		linear-gradient(120deg, rgba(229, 243, 241, 0.94), rgba(255, 248, 238, 0.74) 52%, rgba(212, 101, 103, 0.28)),
		var(--cream);
	border-bottom: 1px solid var(--line);
}

.page-hero.has-hero-bg {
	min-height: clamp(500px, 62vh, 720px);
	display: grid;
	align-items: center;
	background-image: var(--page-hero-image);
	background-position: center;
	background-size: cover;
}

.page-id-146 .page-hero.has-hero-bg,
.about-dr-charlotte .page-hero.has-hero-bg {
	background-position: center 18%;
}

.page-hero::before {
	position: absolute;
	top: -120px;
	right: -90px;
	width: 430px;
	height: 430px;
	content: "";
	background: radial-gradient(circle, rgba(0, 106, 92, 0.16), transparent 64%);
}

.page-hero.has-hero-bg::before {
	inset: 0;
	width: auto;
	height: auto;
	background:
		linear-gradient(90deg, rgba(0, 42, 88, 0.86) 0%, rgba(0, 42, 88, 0.68) 39%, rgba(0, 106, 92, 0.34) 66%, rgba(0, 42, 88, 0.2) 100%),
		radial-gradient(circle at 22% 18%, rgba(212, 101, 103, 0.22), transparent 28%);
}

.page-hero::after {
	position: absolute;
	bottom: -90px;
	left: 8%;
	width: 270px;
	height: 270px;
	content: "";
	background: radial-gradient(circle, rgba(240, 199, 94, 0.28), transparent 68%);
}

.page-hero.has-hero-bg::after {
	display: none;
}

.page-hero-grid {
	position: relative;
	z-index: 2;
	grid-template-columns: minmax(0, 0.86fr);
}

.compact-hero {
	min-height: 56vh;
	display: grid;
	align-items: center;
}

.page-hero h1 {
	margin-top: 12px;
	max-width: 850px;
	font-size: clamp(38px, 5vw, 64px);
	line-height: 1.03;
}

.page-hero.has-hero-bg .breadcrumbs,
.page-hero.has-hero-bg .breadcrumbs a,
.page-hero.has-hero-bg .breadcrumbs span,
.page-hero.has-hero-bg .eyebrow,
.page-hero.has-hero-bg h1,
.page-hero.has-hero-bg .page-description {
	color: var(--white);
}

.page-hero.has-hero-bg .breadcrumbs a {
	text-decoration-color: rgba(255, 255, 255, 0.72);
}

.page-hero.has-hero-bg .eyebrow {
	color: #f7c6c7;
}

.page-description {
	max-width: 800px;
	margin-top: 18px;
	color: var(--text);
	font-size: clamp(18px, 2vw, 22px);
	line-height: 1.55;
}

.page-hero img {
	aspect-ratio: 4 / 3;
	object-fit: cover;
	background: var(--white);
	transform: rotate(1deg);
}

.content-page {
	position: relative;
}

.content-page::before {
	position: absolute;
	top: 420px;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: -1;
	content: "";
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.62), rgba(255, 248, 238, 0)),
		linear-gradient(90deg, rgba(229, 243, 241, 0.28), transparent 32%, rgba(212, 101, 103, 0.16));
}

.breadcrumbs {
	display: flex;
	flex-wrap: wrap;
	gap: 9px;
	margin-bottom: 20px;
	color: rgba(0, 42, 88, 0.72);
	font-size: 13px;
	font-weight: 800;
}

.breadcrumbs a {
	color: var(--teal-deep);
	text-decoration: underline;
	text-underline-offset: 4px;
}

.page-content {
	display: grid;
	gap: 24px;
	max-width: 1060px;
	padding: clamp(42px, 6vw, 70px) 0 clamp(72px, 8vw, 108px);
}

.page-content h2,
.page-content h3 {
	margin-top: 14px;
}

.page-content h2 {
	max-width: 820px;
	font-size: clamp(25px, 2.3vw, 34px);
	line-height: 1.16;
}

.page-content h3 {
	font-size: clamp(20px, 2vw, 25px);
	line-height: 1.25;
}

.page-content > h2:not(:first-child) {
	position: relative;
	margin-top: 26px;
	padding-top: 34px;
	border-top: 1px solid rgba(0, 106, 92, 0.12);
}

.page-content > h2::before {
	display: block;
	width: 58px;
	height: 4px;
	margin-bottom: 14px;
	content: "";
	background: linear-gradient(90deg, var(--teal), var(--coral));
	border-radius: 99px;
}

.page-content .content-block h2,
.page-content .content-block h3 {
	margin-top: 0;
}

.page-content .content-block h2 {
	font-size: clamp(24px, 2.4vw, 32px);
}

.page-content ul {
	margin: 0;
	padding-left: 22px;
}

.content-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px;
}

.content-block.highlight {
	position: relative;
	overflow: hidden;
	background:
		linear-gradient(135deg, rgba(229, 243, 241, 0.96), rgba(255, 255, 255, 0.76)),
		var(--mint);
	border-color: rgba(0, 106, 92, 0.22);
	box-shadow: var(--glow);
}

.content-block.highlight::after {
	position: absolute;
	right: -54px;
	bottom: -54px;
	width: 150px;
	height: 150px;
	content: "";
	background: radial-gradient(circle, rgba(212, 101, 103, 0.24), transparent 70%);
}

.content-block.coral {
	background:
		linear-gradient(135deg, rgba(255, 240, 234, 0.98), rgba(255, 255, 255, 0.78)),
		#fff0ea;
	border-color: rgba(212, 101, 103, 0.22);
}

.tag-list,
.link-grid {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.link-grid a {
	position: relative;
	display: inline-flex;
	align-items: center;
	min-height: 58px;
	padding: 14px 48px 14px 18px;
	color: var(--ink);
	background:
		linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(229, 243, 241, 0.38)),
		var(--white);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	box-shadow: 0 12px 26px rgba(0, 42, 88, 0.08);
	font-size: 16px;
	font-weight: 850;
	line-height: 1.25;
	transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.link-grid a::after {
	position: absolute;
	right: 14px;
	content: ">";
	color: var(--teal);
	font-weight: 900;
}

.link-grid a:hover {
	border-color: rgba(0, 106, 92, 0.36);
	box-shadow: 0 18px 38px rgba(0, 42, 88, 0.12);
	transform: translateY(-2px);
}

.page-content > .link-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	max-width: 920px;
}

.page-content > .link-grid a {
	width: 100%;
}

.resource-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px;
}

.gallery-intro {
	display: grid;
	grid-template-columns: minmax(0, 0.92fr) minmax(260px, 0.5fr);
	gap: clamp(18px, 3vw, 32px);
	align-items: stretch;
}

.gallery-stat-card {
	display: grid;
	align-content: center;
	gap: 8px;
	padding: clamp(22px, 3vw, 34px);
	color: #fff;
	background:
		radial-gradient(circle at 92% 12%, rgba(255, 255, 255, 0.18), transparent 34%),
		linear-gradient(135deg, var(--teal-deep), var(--teal));
	border-radius: 28px;
	box-shadow: 0 24px 54px rgba(0, 42, 88, 0.16);
}

.gallery-stat-card strong {
	font-size: clamp(34px, 5vw, 58px);
	line-height: 1;
}

.gallery-stat-card span {
	color: rgba(255, 255, 255, 0.86);
	font-weight: 850;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.clinic-gallery-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: clamp(16px, 2vw, 24px);
	margin-top: 8px;
}

.clinic-gallery-card {
	position: relative;
	overflow: hidden;
	min-height: 320px;
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: 30px;
	box-shadow: 0 18px 42px rgba(0, 42, 88, 0.1);
}

.clinic-gallery-card.large {
	grid-column: span 2;
	min-height: 400px;
}

.clinic-gallery-card img {
	width: 100%;
	height: 100%;
	min-height: inherit;
	object-fit: cover;
	transition: transform 0.42s ease;
}

.clinic-gallery-card:hover img {
	transform: scale(1.045);
}

.clinic-gallery-caption {
	position: absolute;
	right: 16px;
	bottom: 16px;
	left: 16px;
	padding: 16px 18px;
	color: #fff;
	background: linear-gradient(135deg, rgba(0, 42, 88, 0.88), rgba(0, 106, 92, 0.84));
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: 22px;
	box-shadow: 0 18px 38px rgba(0, 42, 88, 0.22);
	backdrop-filter: blur(12px);
}

.clinic-gallery-caption strong {
	display: block;
	margin-bottom: 4px;
	font-size: 18px;
}

.clinic-gallery-caption span {
	color: rgba(255, 255, 255, 0.78);
	font-size: 14px;
	font-weight: 650;
}

.gallery-note-band {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 14px;
}

.gallery-note-band > div {
	padding: 20px;
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(229, 243, 241, 0.48));
	border: 1px solid var(--line);
	border-radius: 24px;
}

.gallery-note-band strong {
	display: block;
	margin-bottom: 6px;
	color: var(--ink);
	font-size: 18px;
}

.gallery-video-section {
	display: grid;
	grid-template-columns: minmax(0, 0.56fr) minmax(0, 1fr);
	gap: clamp(22px, 4vw, 42px);
	align-items: center;
	padding: clamp(22px, 4vw, 40px);
	background:
		radial-gradient(circle at 14% 18%, rgba(212, 101, 103, 0.14), transparent 32%),
		linear-gradient(135deg, var(--ink), var(--teal));
	border-radius: 32px;
	box-shadow: 0 24px 60px rgba(0, 42, 88, 0.16);
}

.gallery-video-copy h2,
.gallery-video-copy p {
	color: #fff;
}

.gallery-video-copy .eyebrow {
	color: var(--mint);
}

.gallery-video-copy p:not(.eyebrow) {
	color: rgba(255, 255, 255, 0.78);
}

.gallery-video-frame {
	position: relative;
	overflow: hidden;
	aspect-ratio: 16 / 9;
	background: rgba(255, 255, 255, 0.12);
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 26px;
	box-shadow: 0 18px 44px rgba(0, 42, 88, 0.28);
}

.gallery-video-frame iframe {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border: 0;
}

.resources-library {
	position: relative;
	display: grid;
	width: min(1180px, calc(100vw - 40px));
	margin: clamp(10px, 2vw, 24px) auto 0;
	gap: clamp(24px, 3vw, 38px);
	padding: clamp(30px, 4vw, 52px);
	overflow: hidden;
	background:
		radial-gradient(circle at 94% 4%, rgba(212, 101, 103, 0.16), transparent 30%),
		radial-gradient(circle at 8% 94%, rgba(0, 106, 92, 0.14), transparent 26%),
		linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(229, 243, 241, 0.58));
	border: 1px solid rgba(0, 106, 92, 0.15);
	border-radius: 28px;
	box-shadow: var(--glow);
}

.resources-library::before {
	position: absolute;
	inset: 0;
	content: "";
	background-image:
		linear-gradient(rgba(0, 106, 92, 0.045) 1px, transparent 1px),
		linear-gradient(90deg, rgba(0, 106, 92, 0.045) 1px, transparent 1px);
	background-size: 42px 42px;
	mask-image: linear-gradient(135deg, rgba(0, 0, 0, 0.55), transparent 70%);
	pointer-events: none;
}

.resources-intro,
.resource-grid-curated {
	position: relative;
}

.resources-intro {
	display: grid;
	max-width: 980px;
	gap: 12px;
}

.resources-intro h2 {
	max-width: 820px;
	margin: 0;
	color: var(--ink);
	font-size: clamp(34px, 4vw, 58px);
	letter-spacing: -0.045em;
}

.resources-intro h2::before {
	display: block;
	width: 62px;
	height: 4px;
	margin-bottom: 16px;
	content: "";
	background: linear-gradient(90deg, var(--teal), var(--coral));
	border-radius: 99px;
}

.resource-grid-curated {
	display: flex;
	flex-direction: column;
	gap: clamp(18px, 2.4vw, 28px);
	align-items: center;
	max-width: 1040px;
	margin: 0 auto;
	width: 100%;
}

.resource-card {
	position: relative;
	width: 100%;
	display: flex;
	flex-direction: column;
	min-height: 0;
	overflow: hidden;
	color: var(--blue);
	text-decoration: none;
}

.resource-card:empty {
	display: none;
}

.resource-card::after {
	position: absolute;
	right: 22px;
	bottom: 22px;
	width: 40px;
	height: 40px;
	display: grid;
	place-items: center;
	content: ">";
	color: var(--white);
	background: var(--coral);
	border-radius: 50%;
	box-shadow: 0 14px 28px rgba(212, 101, 103, 0.25);
	opacity: 0;
	transform: translateX(-6px);
	transition: opacity 0.2s ease, transform 0.2s ease;
}

.resource-card:hover::after,
.resource-card:focus-visible::after {
	opacity: 1;
	transform: translateX(0);
}

.resource-card-featured {
	min-height: 280px;
	padding: clamp(30px, 4vw, 48px);
	background:
		radial-gradient(circle at 88% 18%, rgba(240, 199, 94, 0.22), transparent 24%),
		linear-gradient(135deg, rgba(0, 42, 88, 0.96), rgba(0, 106, 92, 0.84)),
		var(--ink);
	border-color: rgba(0, 42, 88, 0.2);
}

.resource-card-featured h2,
.resource-card-featured p,
.resource-card-featured .resource-kicker,
.resource-card-featured .resource-link {
	color: var(--white);
}

.resource-kicker {
	color: var(--teal);
	font-size: 12px;
	font-weight: 900;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.resource-card h2 {
	max-width: none;
	margin: 0;
	font-size: clamp(24px, 2vw, 30px);
	letter-spacing: -0.035em;
}

.resource-card-featured h2 {
	max-width: 760px;
	font-size: clamp(34px, 4vw, 56px);
	line-height: 0.96;
}

.resource-card p {
	margin: 0;
	color: var(--muted);
	font-size: 16px;
	line-height: 1.65;
}

.resource-link {
	margin-top: auto;
	color: var(--coral);
	font-size: 14px;
	font-weight: 900;
}

.resources-support-grid {
	margin-top: 6px;
}

.medical-note {
	padding: 18px 20px;
	color: var(--ink);
	background:
		linear-gradient(135deg, rgba(255, 243, 215, 0.98), rgba(255, 255, 255, 0.72)),
		#fff3d7;
	border-left: 5px solid var(--coral);
	border-radius: var(--radius);
}

.google-reviews-section {
	position: relative;
	padding: clamp(54px, 7vw, 86px) 0;
	overflow: hidden;
	background:
		radial-gradient(circle at 12% 18%, rgba(240, 199, 94, 0.28), transparent 26%),
		linear-gradient(135deg, rgba(229, 243, 241, 0.72), rgba(255, 248, 238, 0.96));
}

.google-reviews-section::before {
	position: absolute;
	inset: 0;
	content: "";
	background: repeating-linear-gradient(90deg, rgba(0, 106, 92, 0.045) 0 1px, transparent 1px 74px);
	pointer-events: none;
}

.google-reviews-panel {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(260px, 0.36fr);
	gap: clamp(20px, 4vw, 42px);
	align-items: center;
	padding: clamp(24px, 4vw, 42px);
	background: rgba(255, 255, 255, 0.78);
	border: 1px solid rgba(0, 106, 92, 0.18);
	border-radius: 12px;
	box-shadow: var(--glow);
	backdrop-filter: blur(14px);
}

.google-reviews-copy {
	display: grid;
	gap: 14px;
}

.google-reviews-copy h2 {
	max-width: 660px;
	font-size: clamp(34px, 4vw, 54px);
	line-height: 1.03;
}

.google-reviews-copy p:not(.eyebrow) {
	max-width: 730px;
	margin: 0;
	font-size: 18px;
	line-height: 1.65;
}

.google-reviews-copy .btn {
	width: fit-content;
	margin-top: 6px;
}

.google-reviews-summary {
	display: grid;
	gap: 8px;
	justify-items: center;
	padding: clamp(20px, 3vw, 30px);
	text-align: center;
	background:
		linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(255, 243, 215, 0.76)),
		var(--white);
	border: 1px solid rgba(240, 199, 94, 0.58);
	border-radius: 12px;
	box-shadow: var(--soft-shadow);
}

.google-reviews-summary strong {
	color: var(--ink);
	font-family: "Avenir Next", "Trebuchet MS", Verdana, sans-serif;
	font-size: clamp(38px, 4.5vw, 58px);
	line-height: 1;
}

.review-stars {
	color: #b87800;
	font-size: 20px;
	letter-spacing: 0.08em;
}

.google-reviews-summary p,
.review-time {
	margin: 0;
	color: var(--muted);
	font-size: 14px;
	font-weight: 750;
}

.google-review-cards {
	grid-column: 1 / -1;
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 12px;
}

.google-review-card {
	display: grid;
	gap: 8px;
	align-content: start;
	padding: 16px;
	background: rgba(255, 255, 255, 0.88);
	border: 1px solid rgba(0, 106, 92, 0.14);
	border-radius: 10px;
	box-shadow: 0 12px 28px rgba(0, 42, 88, 0.08);
}

.review-card-head {
	display: flex;
	justify-content: space-between;
	gap: 14px;
	color: var(--ink);
	font-weight: 850;
}

.review-card-head span {
	flex: 0 0 auto;
	color: #b87800;
	letter-spacing: 0.03em;
}

.google-review-card p:last-child {
	margin: 0;
	font-size: 15px;
	line-height: 1.6;
}

.site-footer {
	padding: 58px 0 28px;
	color: rgba(255, 255, 255, 0.82);
	background: var(--ink);
}

.footer-grid {
	display: grid;
	grid-template-columns: 1.4fr repeat(3, 1fr);
	gap: 30px;
}

.footer-brand,
.site-footer h2 {
	display: block;
	margin-bottom: 14px;
	color: var(--white);
	font-family: "Avenir Next", "Trebuchet MS", Verdana, sans-serif;
	font-size: 23px;
	line-height: 1.15;
}

.site-footer h2 {
	font-size: 18px;
}

.site-footer a {
	display: block;
	margin-top: 9px;
	color: var(--white);
	font-weight: 800;
}

.footer-social {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin: 18px 0 14px;
}

.site-footer .footer-social a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	margin-top: 0;
	color: var(--white);
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: 999px;
	transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.site-footer .footer-social a:hover {
	background: var(--coral);
	border-color: var(--coral);
	transform: translateY(-2px);
}

.footer-social svg {
	width: 20px;
	height: 20px;
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.8;
}

.footer-social svg path {
	fill: currentColor;
	stroke: none;
}

.footer-note {
	margin-top: 16px;
	color: var(--gold);
}

.footer-bottom {
	display: flex;
	justify-content: space-between;
	gap: 20px;
	padding-top: 28px;
	margin-top: 36px;
	border-top: 1px solid rgba(255, 255, 255, 0.16);
	font-size: 13px;
}

.whatsapp-floating {
	position: fixed;
	right: clamp(18px, 2.2vw, 34px);
	bottom: clamp(18px, 2.2vw, 34px);
	z-index: 110;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	min-height: 58px;
	padding: 12px 18px 12px 14px;
	color: var(--white);
	background: #25d366;
	border: 2px solid rgba(255, 255, 255, 0.72);
	border-radius: 999px;
	box-shadow: 0 18px 38px rgba(0, 42, 88, 0.22), 0 8px 18px rgba(37, 211, 102, 0.26);
	font-size: 15px;
	font-weight: 900;
	line-height: 1;
	transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.whatsapp-floating:hover {
	color: var(--white);
	background: #1fbd5a;
	box-shadow: 0 22px 44px rgba(0, 42, 88, 0.26), 0 10px 22px rgba(37, 211, 102, 0.3);
	transform: translateY(-3px);
}

.whatsapp-floating svg {
	width: 30px;
	height: 30px;
	fill: currentColor;
	flex: 0 0 auto;
}

.reveal {
	opacity: 0;
	transform: translateY(16px);
	transition: opacity 0.5s ease, transform 0.5s ease;
}

.reveal.is-visible {
	opacity: 1;
	transform: translateY(0);
}

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

	* {
		transition: none !important;
	}

	.reveal {
		opacity: 1;
		transform: none;
	}
}

@media (max-width: 1080px) {
	.resource-grid-curated {
		max-width: 100%;
	}

	.resource-card-featured {
		width: 100%;
	}

	.info-bar-inner {
		align-items: flex-start;
		flex-direction: column;
		padding: 18px 0;
		min-height: auto;
	}

	.brand {
		min-width: 0;
	}

	.top-contact {
		width: 100%;
		justify-content: space-between;
	}

	.site-header {
		width: calc(100% - 40px);
		margin: 0 auto;
		padding: 0 14px;
		backdrop-filter: none;
	}

	.menu-toggle {
		display: block;
		background: rgba(255, 255, 255, 0.1);
		border-color: rgba(255, 255, 255, 0.18);
	}

	.menu-toggle span:not(.screen-reader-text) {
		background: var(--white);
	}

	.site-nav {
		position: fixed;
		top: 0;
		bottom: 0;
		left: 0;
		display: none;
		width: min(360px, calc(100vw - 34px));
		padding: 20px;
		overflow-y: auto;
		background: var(--white);
		border: 1px solid var(--line);
		border-radius: 0 28px 28px 0;
		box-shadow: 24px 0 60px rgba(0, 42, 88, 0.24);
		transform: translateX(-105%);
		transition: transform 0.24s ease;
	}

	.site-nav.is-open {
		display: block;
		transform: translateX(0);
	}

	.site-nav ul {
		display: grid;
		gap: 6px;
	}

	.site-nav a {
		color: var(--ink);
	}

	.site-nav > ul > li > a {
		min-height: 46px;
		padding: 0 12px;
		background: rgba(229, 243, 241, 0.72);
		border-radius: 14px;
	}

	.site-nav .sub-menu {
		position: static;
		width: 100%;
		padding: 8px 0 4px 10px;
		border: 0;
		box-shadow: none;
		opacity: 1;
		pointer-events: auto;
		transform: none;
	}

	.site-nav .sub-menu a {
		padding: 9px 10px;
		background: transparent;
		border-radius: 10px;
		font-size: 14px;
	}

	.mobile-menu-panel-head {
		display: flex;
		align-items: center;
		gap: 12px;
		padding-bottom: 18px;
		margin-bottom: 14px;
		border-bottom: 1px solid var(--line);
	}

	.mobile-menu-logo {
		max-width: 190px;
		max-height: 128px;
	}

	.mobile-menu-panel-head .brand-mark {
		width: 48px;
		height: 48px;
		border-radius: 14px;
		font-size: 16px;
	}

	.mobile-menu-panel-head strong,
	.mobile-menu-panel-head small {
		display: block;
	}

	.mobile-menu-panel-head strong {
		color: var(--ink);
		font-size: 17px;
		line-height: 1.15;
	}

	.mobile-menu-panel-head small {
		margin-top: 3px;
		color: var(--muted);
		font-size: 12px;
		line-height: 1.3;
	}

	.mobile-menu-details {
		display: grid;
		gap: 10px;
		padding-top: 16px;
		margin-top: 16px;
		border-top: 1px solid var(--line);
	}

	.mobile-menu-kicker {
		margin: 0;
		color: var(--coral);
		font-size: 12px;
		font-weight: 900;
		letter-spacing: 0.08em;
		text-transform: uppercase;
	}

	.mobile-menu-card {
		display: grid;
		gap: 3px;
		padding: 13px 14px;
		background: var(--cream);
		border: 1px solid var(--line);
		border-radius: 16px;
	}

	.mobile-menu-card span,
	.mobile-menu-services span {
		color: var(--muted);
		font-size: 12px;
		font-weight: 800;
	}

	.mobile-menu-card strong {
		color: var(--ink);
		font-size: 14px;
		line-height: 1.35;
	}

	.mobile-menu-services {
		display: flex;
		flex-wrap: wrap;
		gap: 8px;
		padding: 13px 14px;
		background: var(--mint);
		border-radius: 16px;
	}

	.mobile-menu-services span {
		width: 100%;
	}

	.mobile-menu-services a {
		min-height: auto;
		padding: 7px 10px;
		color: var(--ink);
		background: var(--white);
		border-radius: 999px;
		font-size: 12px;
		font-weight: 900;
	}

	.mobile-menu-cta {
		justify-content: center;
		min-height: 48px;
		color: var(--white) !important;
		background: var(--coral);
		border-radius: 16px;
		box-shadow: 0 12px 24px rgba(212, 101, 103, 0.22);
	}

	.header-call {
		display: inline-flex;
		color: var(--white);
	}

	.header-cta {
		display: none;
		border-radius: 999px;
	}

	.hero-grid,
	.split-layout,
	.appointment-grid,
	.location-grid,
	.google-reviews-panel,
	.page-hero-grid {
		grid-template-columns: 1fr;
	}

	.hero-mini-services {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		max-width: none;
	}

	.hero-copy {
		width: 100%;
	}

	.hero-visual {
		position: absolute;
		inset: 0;
		width: 100%;
		min-height: 0;
		margin-top: 0;
		border-radius: 0;
	}

	.hero-visual img {
		object-position: 76% center;
		border-radius: 0;
	}

	.concern-grid,
	.service-grid,
	.process-grid,
	.gallery-intro,
	.gallery-note-band,
	.gallery-video-section,
	.footer-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

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

@media (max-width: 700px) {
	.resources-library {
		padding: 22px;
		border-radius: 18px;
	}

	.resources-intro h2 {
		font-size: clamp(31px, 10vw, 42px);
	}

	.resource-grid-curated,
	.resource-card-featured {
		grid-template-columns: 1fr;
		grid-column: 1 / -1;
	}

	.resource-card {
		grid-column: 1 / -1;
	}

	.gallery-video-section {
		grid-template-columns: 1fr;
		padding: 22px;
		border-radius: 24px;
	}

	.resource-card {
		min-height: 0;
		padding: 22px;
	}

	.resource-card::after {
		display: none;
	}

	.gallery-intro,
	.clinic-gallery-grid,
	.gallery-note-band {
		grid-template-columns: 1fr;
	}

	.clinic-gallery-card,
	.clinic-gallery-card.large {
		grid-column: auto;
		min-height: 280px;
	}

	.info-bar {
		display: none;
	}

	.footer-bottom {
		align-items: flex-start;
		flex-direction: column;
	}

	.whatsapp-floating {
		right: 16px;
		bottom: 16px;
		min-width: 58px;
		width: 58px;
		height: 58px;
		justify-content: center;
		padding: 0;
	}

	.whatsapp-floating span {
		position: absolute;
		width: 1px;
		height: 1px;
		overflow: hidden;
		clip: rect(1px, 1px, 1px, 1px);
		white-space: nowrap;
	}

	.site-header {
		position: sticky;
		top: 0;
		gap: 16px;
		width: 100%;
		min-height: 104px;
		margin: 0;
		padding: 14px 22px;
		background: #006091;
		border-radius: 0;
		box-shadow: 0 12px 26px rgba(0, 42, 88, 0.16);
	}

	.mobile-header-brand {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		min-width: 138px;
		max-width: 162px;
		min-height: 76px;
		padding: 8px 10px;
		color: var(--ink);
		background: var(--white);
		border-radius: 8px;
		box-shadow: 0 14px 24px rgba(0, 42, 88, 0.12);
	}

	.mobile-brand-logo {
		max-width: 132px;
		max-height: 66px;
	}

	.mobile-header-brand .brand-mark {
		width: 38px;
		height: 38px;
		border-radius: 10px;
		font-size: 14px;
	}

	.mobile-header-brand strong,
	.mobile-header-brand small {
		display: block;
	}

	.mobile-header-brand strong {
		color: var(--ink);
		font-size: 14px;
		line-height: 1.05;
	}

	.mobile-header-brand small {
		margin-top: 2px;
		color: var(--coral);
		font-size: 9px;
		font-weight: 900;
		line-height: 1.15;
	}

	.menu-toggle {
		width: 54px;
		height: 54px;
		margin-left: auto;
		background: transparent;
		border: 0;
		border-radius: 0;
	}

	.menu-toggle span:not(.screen-reader-text) {
		height: 4px;
		margin: 6px 0;
		background: var(--white);
		border-radius: 999px;
	}

	.header-actions {
		display: none;
	}

	.site-nav {
		top: 0;
		right: auto;
		bottom: 0;
		left: 0;
		z-index: 120;
		width: min(342px, calc(100vw - 36px));
		padding: 14px;
		border-radius: 0 24px 24px 0;
	}

	.mobile-menu-close {
		display: grid;
		width: 38px;
		height: 38px;
		margin-left: auto;
		place-items: center;
		color: var(--ink);
		background: var(--mint);
		border: 0;
		border-radius: 12px;
		font-size: 28px;
		font-weight: 800;
		line-height: 1;
	}

	h1 {
		font-size: 42px;
	}

	.hero-section {
		padding-top: 52px;
	}

	.hero-section::before {
		background:
			linear-gradient(180deg, rgba(0, 42, 88, 0.86) 0%, rgba(0, 42, 88, 0.76) 62%, rgba(0, 42, 88, 0.56) 100%),
			radial-gradient(circle at 22% 18%, rgba(212, 101, 103, 0.2), transparent 34%);
	}

	.hero-mini-services {
		grid-template-columns: 1fr;
	}

	.hero-visual {
		min-height: 420px;
	}

	.hero-stat-strip {
		right: 12px;
		bottom: 12px;
		left: 12px;
		grid-template-columns: 1fr;
		border-radius: 14px;
	}

	.hero-stat-strip span {
		padding: 12px 14px;
		border-right: 0;
		border-bottom: 1px solid rgba(255, 255, 255, 0.22);
	}

	.hero-stat-strip span:last-child {
		border-bottom: 0;
	}

	.concern-grid,
	.service-grid,
	.process-grid,
	.content-grid,
	.page-content > .link-grid,
	.google-review-cards,
	.resource-grid,
	.footer-grid {
		grid-template-columns: 1fr;
	}

	.google-reviews-copy .btn {
		width: 100%;
	}

	.hero-actions .btn {
		width: 100%;
	}

	.floating-note {
		position: static;
		margin-top: 10px;
	}
}

@media (max-width: 480px) {
	.mobile-header-brand {
		min-width: 132px;
		min-height: 72px;
		padding: 9px 10px;
	}

	.mobile-brand-logo {
		max-width: 122px;
		max-height: 60px;
	}

	.mobile-header-brand .brand-mark {
		width: 36px;
		height: 36px;
	}

	.site-nav {
		width: min(326px, calc(100vw - 28px));
	}
}
