:root {
	--ink: #211822;
	--muted: #6f6067;
	--line: #ead5dc;
	--rose: #c0335a;
	--rose-dark: #9f1f45;
	--rose-soft: #fff1f5;
	--blush: #f9e5eb;
	--white: #fff;
	--shadow: 0 18px 50px rgba(112, 43, 66, .12);
	--sans: "Segoe UI", Arial, sans-serif;
	--container: 1440px;
	--page-pad: clamp(24px, 5vw, 96px);
}

* { box-sizing: border-box; }

[x-cloak] { display: none !important; }

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	color: var(--ink);
	font-family: var(--sans);
	font-size: 18px;
	background: #fff;
	line-height: 1.6;
}

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

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

.site-shell {
	min-height: 100vh;
	overflow-x: hidden;
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 50;
	display: flex;
	align-items: center;
	gap: 30px;
	min-height: 86px;
	padding: 0 max(var(--page-pad), calc((100vw - var(--container)) / 2 + var(--page-pad)));
	background: rgba(255, 255, 255, .94);
	border-bottom: 1px solid var(--line);
	backdrop-filter: blur(16px);
}

.brand {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	min-width: 240px;
}

.brand-mark-img {
	display: block;
	width: 44px;
	height: 48px;
	flex: 0 0 44px;
	object-fit: contain;
}

.brand-copy {
	display: block;
	line-height: 1;
}

.brand-copy strong {
	display: block;
	color: #ef4f83;
	font-size: 20px;
	font-weight: 800;
	line-height: 1.05;
	white-space: nowrap;
}

.brand-copy small {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-top: 5px;
	color: #5f5b60;
	font-size: 12px;
	font-weight: 500;
	white-space: nowrap;
}

.brand-copy small span {
	width: 2px;
	height: 16px;
	background: #ef4f83;
}

.desktop-nav {
	display: flex;
	align-items: center;
	gap: 27px;
	margin-left: auto;
	font-size: 15px;
}

.desktop-nav a {
	position: relative;
	padding: 30px 0;
	border: 0;
	background: none;
	color: var(--ink);
	font: inherit;
	cursor: pointer;
}

.desktop-nav .is-active {
	color: var(--rose);
}

.desktop-nav .is-active::after,
.desktop-nav a:hover::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 20px;
	height: 2px;
	background: var(--rose);
}

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	padding: 0 28px;
	border-radius: 6px;
	border: 1px solid var(--rose);
	font-weight: 700;
	font-size: 15px;
	transition: .2s ease;
}

.btn-primary {
	color: #fff;
	background: linear-gradient(135deg, var(--rose), var(--rose-dark));
	border-color: transparent;
	box-shadow: 0 12px 26px rgba(159, 31, 69, .18);
}

.btn-primary:hover {
	transform: translateY(-1px);
	box-shadow: 0 16px 34px rgba(159, 31, 69, .24);
}

.btn-outline {
	color: var(--rose);
	background: rgba(255, 255, 255, .82);
}

.btn-outline:hover {
	background: var(--rose-soft);
}

.btn-wide {
	width: 100%;
	margin-top: 12px;
}

.menu-button {
	display: none;
	width: 44px;
	height: 44px;
	border: 0;
	background: transparent;
	color: var(--rose);
}

.menu-button span {
	display: block;
	width: 26px;
	height: 2px;
	margin: 6px auto;
	background: currentColor;
}

.hero {
	position: relative;
	display: grid;
	grid-template-columns: minmax(390px, calc(var(--container) * .44)) minmax(0, calc(var(--container) * .56));
	justify-content: center;
	min-height: 590px;
	background:
		linear-gradient(90deg, #fff 0%, #fff8fa 46%, rgba(252, 232, 238, .92) 100%);
	overflow: hidden;
}

.hero-copy {
	z-index: 2;
	align-self: center;
	padding: 72px 0 110px var(--page-pad);
	max-width: 610px;
}

.eyebrow {
	margin: 0 0 16px;
	color: var(--rose);
	font-weight: 700;
	font-size: 14px;
	text-transform: uppercase;
}

.hero h1 {
	margin: 0;
	font-size: 40px;
	line-height: 1.04;
	font-weight: 600;
}

.hero-specialty {
	margin: 18px 0 24px;
	color: var(--rose);
	font-size: clamp(28px, 2.7vw, 38px);
	font-weight: 600;
	line-height: 1.05;
}

.hero-specialty::after {
	content: "";
	display: block;
	width: 64px;
	height: 2px;
	margin-top: 18px;
	background: var(--rose);
}

.hero-text {
	max-width: 430px;
	margin: 0 0 30px;
	font-size: 17px;
	line-height: 1.65;
}

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

.hero-media {
	position: relative;
	min-height: 590px;
}

.hero-media::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 2;
	pointer-events: none;
}

.hero-collage {
	display: grid;
	align-content: center;
	padding: 70px var(--page-pad) 88px 46px;
}

.hero-photo {
	position: relative;
	margin: 0;
	overflow: hidden;
	border: 8px solid rgba(255, 255, 255, .82);
	border-radius: 8px;
	box-shadow: 0 20px 50px rgba(96, 37, 56, .16);
	background: #fff;
}

.hero-photo::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(255, 241, 246, .18), rgba(149, 28, 62, .08));
	mix-blend-mode: screen;
	pointer-events: none;
}

.hero-photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	filter: saturate(.78) contrast(.96) brightness(1.04);
}

.hero-photo-main {
	justify-self: end;
	width: min(58vw, 560px);
	height: 430px;
}

.hero-photo-main img {
	object-position: center 42%;
}

.hero-photo-small {
	position: absolute;
	z-index: 3;
	width: 210px;
	height: 150px;
}

.hero-photo-top {
	top: 82px;
	right: clamp(22px, 5vw, 96px);
}

.hero-photo-bottom {
	right: clamp(80px, 11vw, 170px);
	bottom: 64px;
}

.hero-photo-bottom img {
	object-position: center;
}

.hero-wave {
	position: absolute;
	left: -5vw;
	right: -5vw;
	bottom: -58px;
	height: 138px;
	background: radial-gradient(70% 95% at 18% 0%, rgba(247, 218, 226, .88), transparent 68%),
		radial-gradient(80% 100% at 74% 10%, rgba(246, 229, 233, .94), transparent 72%);
	border-radius: 50% 50% 0 0;
}

.trust-strip {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 0;
	max-width: 1160px;
	margin: 20px auto 46px;
	padding: 28px 34px 24px;
	position: relative;
	z-index: 3;
	background: rgba(255, 255, 255, .9);
	border-radius: 22px;
	box-shadow: 0 18px 46px rgba(119, 55, 77, .12);
	backdrop-filter: blur(14px);
}

.trust-strip div {
	display: grid;
	grid-template-columns: 1fr;
	justify-items: center;
	align-items: start;
	min-height: 122px;
	padding: 0 22px;
	text-align: center;
	position: relative;
}

.trust-strip div + div::before {
	content: "";
	position: absolute;
	left: 0;
	top: 18px;
	bottom: 18px;
	width: 1px;
	background: linear-gradient(to bottom, transparent, rgba(232, 190, 203, .95), transparent);
}

.trust-strip strong {
	display: block;
	margin-top: 12px;
	font-size: 15px;
	line-height: 1.25;
	font-weight: 800;
}

.trust-strip small {
	display: block;
	margin-top: 3px;
	font-size: 13px;
	color: var(--muted);
	line-height: 1.25;
}

.trust-strip small::after {
	content: "";
	display: block;
	width: 28px;
	height: 2px;
	margin: 10px auto 0;
	background: #ef7d9f;
}

.line-icon,
.service-icon {
	position: relative;
	display: inline-grid;
	place-items: center;
	color: #e95480;
}

.line-icon {
	width: 62px;
	height: 62px;
	border: 1px solid rgba(239, 125, 159, .45);
	border-radius: 50%;
	background: radial-gradient(circle, #fff 39%, #fff3f7 40%, #fff 68%);
	box-shadow:
		0 0 0 8px rgba(255, 237, 243, .9),
		0 10px 24px rgba(188, 45, 85, .12);
}

.line-icon::before {
	font-weight: 700;
	line-height: 1;
}

.line-icon.shield::before {
	content: "✓";
	font-size: 26px;
}

.line-icon.ribbon {
	border-radius: 50%;
}

.line-icon.ribbon::before {
	content: "♢";
	font-size: 30px;
}

.line-icon.heart::before {
	content: "♡";
	font-size: 42px;
	line-height: 1;
}

.line-icon.heart {
	border: 0;
}

.line-icon.woman::before {
	content: "+";
	font-size: 31px;
}

.section {
	max-width: var(--container);
	margin-inline: auto;
	padding: 20px var(--page-pad) 34px;
}

.section-heading {
	display: grid;
	place-items: center;
	margin-bottom: 32px;
	text-align: center;
}

.section-heading h2 {
	margin: 0;
	font-size: 36px;
	font-weight: 600;
	line-height: 1;
}

.section-heading span {
	width: 190px;
	height: 15px;
	margin-top: 10px;
	background: linear-gradient(var(--line), var(--line)) left 50%/72px 1px no-repeat,
		linear-gradient(var(--line), var(--line)) right 50%/72px 1px no-repeat;
}

.section-heading span::after {
	content: "⌘";
	color: var(--rose);
	font-size: 15px;
}

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

.service-card {
	min-height: 226px;
	padding: 24px 15px 20px;
	text-align: center;
	background: #fff;
	border: 1px solid var(--line);
	border-radius: 8px;
	box-shadow: 0 10px 28px rgba(104, 45, 64, .04);
}

.service-icon {
	width: 100px;
	height: 100px;
	margin: 0 auto 12px;
	background-image: url("/assets/img/sprite-icons.png");
	background-repeat: no-repeat;
	background-size: 100px 560px;
}

.service-icon-uterus { background-position: 0 10px; }
.service-icon-scope { background-position: 0 -81px; }
.service-icon-needle { background-position: 0 -169px; }
.service-icon-laparo { background-position: 0 -258px; }
.service-icon-ribbon { background-position: 0 -350px; }
.service-icon-woman { background-position: 0 -456px; }

.service-card h3 {
	margin: 0 0 10px;
	font-size: 16px;
	line-height: 1.08;
	font-weight: 700;
	overflow-wrap: anywhere;
}

.service-card p {
	margin: 0;
	color: var(--muted);
	font-size: 13px;
	line-height: 1.5;
}

.bio-band {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0;
	max-width: 1180px;
	margin-left: auto;
	margin-right: auto;
	margin-top: 20px;
	margin-bottom: 58px;
	background: linear-gradient(90deg, #fff 0%, #fff7f9 100%);
}

.care-card {
	display: grid;
	grid-template-columns: 48% 1fr;
	min-height: 310px;
	background: linear-gradient(90deg, #fff 0%, #fff1f5 100%);
}

.care-card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center 42%;
}

.care-card img.care-portrait {
	object-position: center 20%;
	filter: saturate(.92) contrast(.98) brightness(1.03);
}

.care-card div {
	display: grid;
	align-content: center;
	justify-items: center;
	padding: 10px;
	text-align: center;
}

.care-card h2 {
	margin: 0 0 14px;
	font-size: 23px;
	font-weight: 500;
	line-height: 1.18;
}

.care-card p {
	max-width: 330px;
	margin: 0 0 18px;
	font-size: 15px;
	line-height: 1.45;
}

.care-card strong {
	font-size: 20px;
	font-weight: 500;
	font-style: italic;
}

.bio-list {
	display: grid;
	gap: 20px;
	padding: 42px 36px 42px 52px;
	background: #fff;
}

.bio-list div {
	display: grid;
	grid-template-columns: 58px 1fr;
	gap: 18px;
	align-items: start;
}

.round-icon {
	display: grid;
	place-items: center;
	width: 52px;
	height: 52px;
	border: 1px solid #e987a3;
	border-radius: 50%;
	color: var(--rose);
	background: #fff7fa;
	box-shadow: inset 0 0 0 8px #fff, 0 10px 26px rgba(207, 48, 95, .08);
	font-size: 13px;
	font-weight: 800;
	letter-spacing: .04em;
}

.bio-list p {
	margin: 0;
	color: var(--muted);
	font-size: 16px;
	line-height: 1.55;
}

.bio-list strong {
	display: block;
	margin-bottom: 3px;
	color: var(--ink);
	font-size: 17px;
}

.gallery-faq-section {
	display: grid;
	grid-template-columns: minmax(320px, 430px) minmax(0, 1fr);
	gap: 54px;
	align-items: start;
	padding-top: 46px;
	padding-bottom: 54px;
}

.gallery-column,
.faq-column {
	min-width: 0;
}

.gallery-layout {
	display: grid;
	gap: 14px;
}

.gallery-stage {
	position: relative;
	aspect-ratio: 3 / 4;
	min-height: 0;
	overflow: hidden;
	border: 1px solid var(--line);
	border-radius: 8px;
	background: linear-gradient(135deg, #fff7fa, #fff);
	box-shadow: 0 14px 34px rgba(104, 45, 64, .08);
}

.gallery-stage figure {
	position: absolute;
	inset: 0;
	margin: 0;
}

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

.gallery-stage figcaption {
	position: absolute;
	left: 18px;
	bottom: 18px;
	padding: 8px 14px;
	color: #fff;
	background: rgba(139, 24, 59, .88);
	border-radius: 4px;
	font-weight: 700;
	font-size: 15px;
}

.gallery-arrow {
	position: absolute;
	top: 50%;
	z-index: 2;
	display: grid;
	place-items: center;
	width: 44px;
	height: 44px;
	border: 1px solid rgba(255, 255, 255, .72);
	border-radius: 50%;
	color: #fff;
	background: rgba(33, 24, 34, .45);
	font-size: 34px;
	line-height: 1;
	cursor: pointer;
	transform: translateY(-50%);
}

.gallery-arrow:hover {
	background: rgba(159, 31, 69, .86);
}

.gallery-prev {
	left: 18px;
}

.gallery-next {
	right: 18px;
}

.gallery-thumbs {
	display: grid;
	grid-template-columns: repeat(7, 1fr);
	gap: 10px;
}

.gallery-thumbs button {
	display: block;
	aspect-ratio: 1;
	height: auto;
	padding: 0;
	overflow: hidden;
	border: 2px solid transparent;
	border-radius: 6px;
	background: #fff;
	cursor: pointer;
	opacity: .72;
}

.gallery-thumbs button.is-active,
.gallery-thumbs button:hover {
	border-color: var(--rose);
	opacity: 1;
}

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

.faq-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 14px;
}

.faq-item {
	border: 1px solid var(--line);
	border-radius: 6px;
	overflow: hidden;
	background: #fff;
}

.faq-item button {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	min-height: 40px;
	padding: 0 16px;
	border: 0;
	background: #fff;
	font: inherit;
	text-align: left;
	cursor: pointer;
}

.faq-item button span {
	color: var(--rose);
	font-size: 18px;
}

.faq-item p {
	margin: 0;
	padding: 0 16px 14px;
	color: var(--muted);
	font-size: 15px;
}

.footer {
	background: linear-gradient(90deg, #fff9fb 0%, #fff2f5 100%);
}

.footer-grid {
	display: grid;
	grid-template-columns: 1fr .9fr 1.55fr;
	gap: 48px;
	max-width: var(--container);
	margin-inline: auto;
	padding: 38px var(--page-pad);
}

.footer h2 {
	margin: 0 0 18px;
	font-size: 25px;
	font-weight: 500;
}

.footer p {
	margin: 0 0 14px;
	color: var(--muted);
}

.footer p strong {
	display: block;
	color: var(--ink);
}

.map-card {
	position: relative;
	min-height: 180px;
	overflow: hidden;
	border: 1px solid var(--line);
	border-radius: 8px;
	background: #fbfcfd;
}

.map-card iframe {
	display: block;
	width: 100%;
	min-height: 180px;
	border: 0;
	filter: saturate(.88) contrast(.98);
}

.map-card a {
	position: absolute;
	top: 22px;
	left: 26px;
	padding: 12px 16px;
	background: #fff;
	border-radius: 4px;
	box-shadow: 0 8px 24px rgba(31, 24, 34, .12);
	color: var(--ink);
	font-weight: 700;
	font-size: 13px;
}

.biography-page {
	max-width: var(--container);
	margin: 0 auto;
	padding: 56px var(--page-pad) 76px;
}

.biography-hero {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 320px;
	gap: 34px;
	align-items: center;
	margin-bottom: 34px;
	padding: 34px;
	border: 1px solid var(--line);
	border-radius: 8px;
	background: linear-gradient(135deg, #fff 0%, #fff7fa 100%);
	box-shadow: var(--shadow-soft);
}

.biography-hero h1 {
	margin: 0 0 14px;
	font-size: clamp(36px, 4vw, 58px);
	line-height: 1.08;
}

.biography-hero p:not(.eyebrow) {
	max-width: 660px;
	margin: 0;
	color: var(--muted);
	font-size: 18px;
	line-height: 1.65;
}

.biography-hero img {
	width: 100%;
	height: auto;
	border: 1px solid var(--line);
	border-radius: 8px;
	object-fit: cover;
}

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

.biography-content article {
	padding: 24px;
	border: 1px solid var(--line);
	border-radius: 8px;
	background: #fff;
	box-shadow: var(--shadow-soft);
}

.biography-content h2 {
	margin: 0 0 14px;
	font-size: 24px;
	line-height: 1.2;
}

.biography-content ul {
	margin: 0;
	padding-left: 20px;
	color: var(--muted);
	line-height: 1.6;
}

.biography-content li + li {
	margin-top: 8px;
}

.biography-content p {
	margin: 0 0 12px;
	color: var(--muted);
	line-height: 1.65;
}

.contact-page {
	max-width: var(--container);
	margin: 0 auto;
	padding: 56px var(--page-pad) 70px;
}

.contact-hero {
	max-width: 760px;
	margin-bottom: 34px;
}

.contact-hero h1 {
	margin: 0 0 14px;
	font-size: clamp(36px, 4vw, 58px);
	line-height: 1.08;
}

.contact-hero p:not(.eyebrow) {
	margin: 0;
	color: var(--muted);
	font-size: 18px;
}

.contact-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 22px;
	margin-bottom: 30px;
}

.contact-card {
	padding: 28px;
	background: #fff;
	border: 1px solid var(--line);
	border-radius: 8px;
	box-shadow: 0 14px 34px rgba(104, 45, 64, .06);
}

.contact-card h2,
.map-heading h2 {
	margin: 0 0 18px;
	font-size: 28px;
	line-height: 1.15;
}

.contact-list,
.hours-list {
	display: grid;
	gap: 14px;
}

.contact-list p,
.hours-list p {
	margin: 0;
	color: var(--muted);
}

.contact-list strong {
	display: block;
	margin-bottom: 3px;
	color: var(--ink);
}

.contact-list a {
	color: var(--rose);
	font-weight: 800;
}

.contact-note {
	padding: 14px;
	background: var(--rose-soft);
	border-left: 3px solid var(--rose);
	border-radius: 6px;
}

.hours-list p {
	display: flex;
	justify-content: space-between;
	gap: 18px;
	padding-bottom: 10px;
	border-bottom: 1px solid var(--line);
}

.hours-list span {
	color: var(--ink);
	font-weight: 700;
}

.hours-list strong {
	color: var(--rose);
	text-align: right;
}

.map-section {
	padding: 28px;
	background: linear-gradient(135deg, #fff, #fff7fa);
	border: 1px solid var(--line);
	border-radius: 8px;
}

.map-heading {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	margin-bottom: 18px;
}

.map-heading h2 {
	margin-bottom: 0;
}

.map-section iframe {
	display: block;
	width: 100%;
	min-height: 480px;
	border: 0;
	border-radius: 8px;
}

.legal-page {
	max-width: var(--container);
	margin: 0 auto;
	padding: 56px var(--page-pad) 76px;
}

.legal-content {
	max-width: 920px;
	padding: 34px;
	background: #fff;
	border: 1px solid var(--line);
	border-radius: 8px;
	box-shadow: 0 14px 34px rgba(104, 45, 64, .06);
}

.legal-content h1 {
	margin: 0 0 24px;
	font-size: clamp(34px, 4vw, 56px);
	line-height: 1.08;
}

.legal-content h2 {
	margin: 30px 0 10px;
	font-size: 24px;
	line-height: 1.2;
}

.legal-content p {
	margin: 0 0 14px;
	color: var(--muted);
}

.legal-updated {
	margin-top: 30px !important;
	padding-top: 18px;
	border-top: 1px solid var(--line);
	font-weight: 700;
}

.footer-bottom {
	display: flex;
	gap: 34px;
	align-items: center;
	padding: 24px max(var(--page-pad), calc((100vw - var(--container)) / 2 + var(--page-pad)));
	color: #fff;
	background: linear-gradient(135deg, #8d183b, #6e1732);
	font-size: 14px;
}

.footer-bottom p {
	margin: 0 auto 0 0;
	color: #fff;
}

.mobile-menu {
	display: none;
}

@media (max-width: 1180px) {
	.site-header {
		padding: 0 28px;
	}

	.desktop-nav {
		gap: 18px;
	}

	.services-grid {
		grid-template-columns: repeat(3, 1fr);
	}

	.hero-copy {
		padding-left: 28px;
	}
}

@media (max-width: 900px) {
	.site-header {
		min-height: 76px;
		padding: 0 22px;
	}

	.desktop-nav,
	.header-cta {
		display: none;
	}

	.menu-button {
		display: block;
		margin-left: auto;
	}

	.brand {
		min-width: 0;
	}

	.brand-mark-img {
		width: 34px;
		height: 38px;
		flex-basis: 34px;
	}

	.brand-copy strong {
		font-size: 16px;
	}

	.brand-copy small {
		font-size: 10px;
		gap: 5px;
	}

	.brand-copy small span {
		height: 12px;
	}

	.hero {
		grid-template-columns: 1fr;
		min-height: 0;
	}

	.hero-copy {
		padding: 38px 24px 22px;
		max-width: none;
	}

	.eyebrow {
		display: none;
	}

	.hero h1 {
		font-size: 30px;
	}

	.hero-specialty {
		font-size: 25px;
	}

	.hero-text {
		font-size: 15px;
		max-width: 310px;
	}

	.hero-actions {
		display: grid;
		grid-template-columns: 1fr;
		max-width: 190px;
	}

	.hero-media {
		min-height: 290px;
		order: -1;
	}

	.hero-collage {
		padding: 24px 18px 34px;
	}

	.hero-photo-main {
		justify-self: center;
		width: min(100%, 420px);
		height: 250px;
	}

	.hero-photo-small {
		display: none;
	}

	.trust-strip {
		grid-template-columns: repeat(2, 1fr);
		gap: 18px 12px;
		margin: 20px 18px 34px;
		padding: 24px 18px;
		border-radius: 18px;
	}

	.trust-strip div {
		display: grid;
		grid-template-columns: 1fr;
		grid-template-rows: auto auto auto;
		justify-items: center;
		text-align: center;
		gap: 6px;
		min-height: 128px;
		padding: 0 12px 18px;
	}

	.trust-strip .line-icon,
	.trust-strip strong,
	.trust-strip small {
		grid-column: 1;
		grid-row: auto;
	}

	.trust-strip div::before,
	.trust-strip div::after,
	.trust-strip div + div::before,
	.trust-strip div + div::after {
		display: none;
	}

	.trust-strip div:nth-child(odd)::after {
		display: block;
		content: "";
		position: absolute;
		right: 0;
		top: 18px;
		bottom: 24px;
		width: 1px;
		background: linear-gradient(to bottom, transparent, rgba(232, 190, 203, .9), transparent);
	}

	.trust-strip div:nth-child(-n + 2)::before {
		display: block;
		content: "";
		position: absolute;
		left: 20px;
		right: 20px;
		bottom: 0;
		height: 1px;
		background: linear-gradient(to right, transparent, rgba(232, 190, 203, .9), transparent);
	}

	.trust-strip strong,
	.trust-strip small {
		font-size: 13px;
	}

	.line-icon {
		width: 54px;
		height: 54px;
	}

	.section {
		padding: 18px 18px 28px;
	}

	.section-heading h2 {
		font-size: 31px;
	}

	.services-grid {
		grid-template-columns: 1fr 1fr;
		gap: 12px;
	}

	.service-card {
		min-height: 190px;
		padding: 18px 11px;
	}

	.service-card h3 {
		font-size: 16px;
		line-height: 1.08;
	}

	.service-card p {
		font-size: 13px;
		line-height: 1.45;
	}

	.bio-band,
	.care-card,
	.footer-grid,
	.faq-grid {
		grid-template-columns: 1fr;
	}

	.bio-band {
		margin: 18px 0 42px;
	}

	.gallery-faq-section {
		grid-template-columns: 1fr;
		gap: 34px;
	}

	.care-card {
		margin: 0 16px;
		border-radius: 8px;
		overflow: hidden;
		border: 1px solid var(--line);
	}

	.care-card img {
		height: 320px;
	}

	.gallery-stage {
		aspect-ratio: 3 / 4;
	}

	.gallery-thumbs {
		grid-template-columns: repeat(4, 1fr);
	}

	.gallery-thumbs button {
		height: auto;
	}

	.care-card div {
		padding: 28px 18px;
	}

	.care-card h2 {
		font-size: 25px;
	}

	.bio-list {
		padding: 30px 24px;
	}

	.footer-grid {
		gap: 26px;
		padding: 30px 24px;
	}

	.contact-page {
		padding: 36px 20px 50px;
	}

	.contact-grid {
		grid-template-columns: 1fr;
	}

	.contact-card,
	.map-section {
		padding: 20px;
	}

	.map-heading {
		display: grid;
	}

	.map-heading .btn {
		width: 100%;
	}

	.map-section iframe {
		min-height: 380px;
	}

	.legal-page {
		padding: 34px 20px 52px;
	}

	.legal-content {
		padding: 22px;
	}

	.biography-page {
		padding: 36px 20px 52px;
	}

	.biography-hero {
		grid-template-columns: 1fr;
		gap: 22px;
		padding: 22px;
	}

	.biography-hero h1 {
		font-size: 30px;
	}

	.biography-hero p:not(.eyebrow) {
		font-size: 15px;
		line-height: 1.6;
	}

	.biography-hero img {
		max-width: 280px;
		margin: 0 auto;
	}

	.biography-content {
		grid-template-columns: 1fr;
	}

	.biography-content article {
		padding: 18px;
	}

	.biography-content h2 {
		font-size: 21px;
	}

	.footer-bottom {
		display: grid;
		padding: 24px 24px 92px;
	}

	.mobile-menu {
		position: fixed;
		inset: 0;
		z-index: 100;
		display: block;
		max-height: 100dvh;
		overflow-y: auto;
		overscroll-behavior: contain;
		background: rgba(255, 255, 255, .92);
		backdrop-filter: blur(12px);
	}

	.mobile-panel {
		min-height: 100dvh;
		box-sizing: border-box;
		padding: 26px 24px;
		background: linear-gradient(145deg, #fff 0%, #fff7fa 100%);
	}

	.mobile-panel-head {
		display: flex;
		align-items: center;
		justify-content: space-between;
		margin-bottom: 26px;
	}

	.mobile-panel-head button {
		width: 46px;
		height: 46px;
		border: 0;
		background: transparent;
		color: var(--rose);
		font-size: 42px;
		line-height: 1;
	}

	.mobile-nav {
		display: grid;
		margin-bottom: 28px;
	}

	.mobile-nav a {
		display: flex;
		justify-content: space-between;
		padding: 17px 2px;
		border-bottom: 1px solid var(--line);
		font-weight: 600;
	}

	.mobile-nav a:first-child {
		color: var(--rose);
	}

	.mobile-nav span {
		font-size: 24px;
	}

	.mobile-contacts {
		margin-top: 24px;
		color: var(--muted);
	}

}

@media (max-width: 440px) {
	.site-header {
		padding: 0 18px;
	}

	.hero-media {
		min-height: 250px;
	}

	.care-card img {
		height: 300px;
	}

	.hero-photo-main {
		height: 220px;
	}

	.gallery-stage {
		aspect-ratio: 3 / 4;
	}

	.gallery-thumbs {
		grid-template-columns: repeat(3, 1fr);
	}

	.hero h1 {
		font-size: 30px;
	}

	.hero-specialty {
		font-size: 23px;
	}

	.services-grid {
		gap: 10px;
	}

	.service-card {
		min-height: 224px;
	}
}
