:root {
	--brand: #00a5e5;
	--brand-deep: #0077a8;
	--brand-ink: #06384d;
	--ink: #0c2d3a;
	--muted: #4a6670;
	--surface: #eef6f9;
	--surface-2: #f7fbfd;
	--line: #c9dde6;
	--white: #fff;
	--danger: #b42318;
	--ok: #067647;
	--font-display: "Nunito", sans-serif;
	--font-body: "Manrope", sans-serif;
	--shadow: 0 18px 50px rgba(6, 56, 77, 0.12);
	--radius: 14px;
	--header-h: 72px;
	--ease: 220ms ease;
}

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

html { scroll-behavior: smooth; }

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

body {
	margin: 0;
	min-height: 100vh;
	min-height: 100dvh;
	display: flex;
	flex-direction: column;
	font-family: var(--font-body);
	font-size: 1.0625rem;
	line-height: 1.55;
	color: var(--ink);
	background:
		radial-gradient(1200px 600px at 10% -10%, rgba(0, 165, 229, 0.18), transparent 55%),
		radial-gradient(900px 500px at 100% 0%, rgba(0, 119, 168, 0.12), transparent 50%),
		linear-gradient(180deg, #f3f9fc 0%, #e8f2f6 100%);
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--brand-deep); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--brand); }
:focus-visible { outline: 3px solid rgba(0, 165, 229, 0.55); outline-offset: 3px; }

.sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	border: 0;
}

.skip-link {
	position: absolute;
	left: 1rem;
	top: -100px;
	z-index: 1000;
	padding: 0.75rem 1rem;
	background: var(--white);
	color: var(--ink);
	border-radius: 8px;
}
.skip-link:focus { top: 1rem; }

.site-header {
	position: sticky;
	top: 0;
	z-index: 50;
	height: var(--header-h);
	background: transparent;
	isolation: isolate;
}
.site-header::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -1;
	background: rgba(255, 255, 255, 0.52);
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
	transition: background var(--ease), box-shadow var(--ease);
	pointer-events: none;
}
.site-header.is-scrolled::before {
	background: rgba(255, 255, 255, 0.78);
	box-shadow: 0 8px 24px rgba(12, 45, 58, 0.06);
}
.site-header__inner {
	position: relative;
	z-index: 1;
	max-width: 1120px;
	margin: 0 auto;
	padding: 0 1.25rem;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
}

.brand {
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
	text-decoration: none;
	color: var(--brand-ink);
}
/* logo is white-on-transparent (old blue header) — darken for light header */
.brand img {
	width: 132px;
	height: auto;
	filter: brightness(0) saturate(100%);
}
.brand__name {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	border: 0;
}

.nav-toggle {
	display: none;
	width: 44px;
	height: 44px;
	border: 0;
	border-radius: 10px;
	background: rgba(255, 255, 255, 0.9);
	box-shadow: 0 4px 16px rgba(12, 45, 58, 0.08);
	cursor: pointer;
	align-items: center;
	justify-content: center;
}
.nav-toggle__bar,
.nav-toggle__bar::before,
.nav-toggle__bar::after {
	display: block;
	width: 18px;
	height: 2px;
	background: var(--ink);
	position: relative;
	transition: transform var(--ease), top var(--ease), background var(--ease);
}
.nav-toggle__bar::before,
.nav-toggle__bar::after {
	content: "";
	position: absolute;
	left: 0;
}
.nav-toggle__bar::before { top: -6px; }
.nav-toggle__bar::after { top: 6px; }

.site-nav {
	display: flex;
	align-items: center;
	gap: 1.25rem;
}
.site-nav__list {
	display: flex;
	align-items: center;
	gap: 0.15rem;
	list-style: none;
	margin: 0;
	padding: 0;
}
.site-nav__list a {
	display: inline-flex;
	align-items: center;
	min-height: 44px;
	padding: 0 0.7rem;
	color: var(--ink);
	text-decoration: none;
	font-weight: 600;
	font-size: 0.95rem;
	transition: color var(--ease);
	cursor: pointer;
}
.site-nav__list a:hover,
.site-nav__list a[aria-current="page"] {
	color: var(--brand);
}

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.4rem;
	min-height: 44px;
	padding: 0.7rem 1.25rem;
	border-radius: 999px;
	border: 0;
	font: inherit;
	font-weight: 700;
	text-decoration: none;
	cursor: pointer;
	transition: transform var(--ease), background var(--ease), color var(--ease), box-shadow var(--ease);
}
.btn:hover { transform: translateY(-1px); }
.btn--primary {
	background: var(--brand);
	color: var(--white);
	box-shadow: 0 10px 24px rgba(0, 165, 229, 0.35);
}
.btn--primary:hover { background: var(--brand-deep); color: var(--white); }
.btn--ghost {
	background: rgba(255, 255, 255, 0.18);
	color: var(--white);
}
.btn--ghost:hover { background: rgba(255, 255, 255, 0.3); color: var(--white); }
.btn--sm { min-height: 40px; padding: 0.45rem 1rem; font-size: 0.92rem; }

.site-nav__cta { text-decoration: none; }

.site-a11y {
	appearance: none;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.4rem;
	min-height: 40px;
	margin: 0;
	padding: 0.4rem 0.9rem;
	border: 1.5px solid rgba(6, 56, 77, 0.22);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.88);
	box-shadow: 0 4px 14px rgba(6, 56, 77, 0.06);
	cursor: pointer;
	font: inherit;
	font-size: 0.84rem;
	font-weight: 700;
	line-height: 1.2;
	color: var(--brand-ink);
	text-decoration: none;
	white-space: nowrap;
	transition: background var(--ease), border-color var(--ease), color var(--ease), box-shadow var(--ease);
}
.site-a11y__icon {
	flex-shrink: 0;
	display: block;
}
.site-a11y:hover {
	color: var(--brand-deep);
	border-color: rgba(0, 165, 229, 0.55);
	background: rgba(0, 165, 229, 0.1);
	box-shadow: 0 6px 18px rgba(0, 165, 229, 0.12);
}
.site-a11y:focus-visible {
	outline: 3px solid rgba(0, 165, 229, 0.45);
	outline-offset: 2px;
}

main { flex: 1 0 auto; }

.hero {
	position: relative;
	min-height: calc(100svh - var(--header-h));
	display: grid;
	align-items: end;
	color: var(--white);
	overflow: hidden;
	isolation: isolate;
}
.hero__media {
	position: absolute;
	inset: 0;
	z-index: -2;
	background:
		url("/img/hero.jpg") center / cover no-repeat;
	transform: scale(1.02);
	animation: hero-zoom 18s ease-out forwards;
}
.hero__shade {
	position: absolute;
	inset: 0;
	z-index: -1;
	background:
		linear-gradient(180deg, rgba(6, 56, 77, 0.35) 0%, rgba(6, 56, 77, 0.72) 55%, rgba(6, 56, 77, 0.88) 100%),
		linear-gradient(90deg, rgba(0, 119, 168, 0.35), transparent 55%);
}
.hero__content {
	max-width: 1120px;
	width: 100%;
	margin: 0 auto;
	padding: 4rem 1.25rem 3.5rem;
	animation: rise 700ms ease both;
}
.hero__brand {
	font-family: var(--font-display);
	font-weight: 800;
	font-size: clamp(2.6rem, 7vw, 5rem);
	line-height: 0.95;
	letter-spacing: -0.04em;
	margin: 0 0 1rem;
	text-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
}
.hero__lead {
	max-width: 38rem;
	margin: 0 0 1.75rem;
	font-size: clamp(1.05rem, 2.2vw, 1.25rem);
	opacity: 0.95;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 0.75rem; }

@keyframes rise {
	from { opacity: 0; transform: translateY(18px); }
	to { opacity: 1; transform: none; }
}
@keyframes hero-zoom {
	from { transform: scale(1.08); }
	to { transform: scale(1.02); }
}

.section {
	max-width: 1120px;
	margin: 0 auto;
	padding: 4rem 1.25rem;
}
.section--tight { padding-top: 2.5rem; padding-bottom: 2.5rem; }
.section__title {
	margin: 0 0 0.75rem;
	font-family: var(--font-display);
	font-size: clamp(1.7rem, 3vw, 2.35rem);
	letter-spacing: -0.03em;
	line-height: 1.15;
	color: var(--brand-ink);
}
.section__text {
	margin: 0 0 1.75rem;
	max-width: 48rem;
	color: var(--muted);
}

.services {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1rem;
}
.service {
	position: relative;
	min-height: 320px;
	padding: 1.5rem;
	border-radius: var(--radius);
	overflow: hidden;
	color: var(--white);
	text-decoration: none;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	isolation: isolate;
	transition: transform var(--ease);
	cursor: pointer;
}
.service:hover { transform: translateY(-3px); color: var(--white); }
.service::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -2;
	background: center 28% / cover no-repeat;
}
.service--1::before { background-image: url("/img/0-elements/1.jpg"); }
.service--2::before { background-image: url("/img/0-elements/4.jpg"); }
.service--3::before { background-image: url("/img/0-elements/3.jpg"); }
.service--4::before { background-image: url("/img/0-elements/2.jpg"); }
.service::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -1;
	background: linear-gradient(180deg, rgba(6, 56, 77, 0.15), rgba(6, 56, 77, 0.82));
}
.service h3 {
	margin: 0 0 0.35rem;
	font-family: var(--font-display);
	font-size: 1.35rem;
	letter-spacing: -0.02em;
}
.service p { margin: 0; opacity: 0.9; font-size: 0.95rem; }

.about {
	position: relative;
}
.about__layout {
	display: grid;
	grid-template-columns: 0.92fr 1.08fr;
	gap: 2.5rem;
	align-items: start;
}
.about__media {
	margin: 0;
	border-radius: calc(var(--radius) + 6px);
	overflow: hidden;
	aspect-ratio: 620 / 584;
	background: #fff;
}
.about__media img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: center;
}
.about__content .section__title {
	margin-bottom: 1.15rem;
}
.about__text {
	margin: 0 0 1.75rem;
	color: var(--muted);
	font-size: 1.08rem;
	line-height: 1.65;
	max-width: 36rem;
}
.about__text p { margin: 0 0 0.75rem; }
.about__text p:last-child { margin-bottom: 0; }
.about__text ul, .about__text ol { margin: 0 0 0.75rem; padding-left: 1.2rem; }
.trust {
	list-style: none;
	margin: 0 0 1.75rem;
	padding: 0;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0.75rem;
}
.trust li {
	display: grid;
	grid-template-columns: 2.5rem 1fr;
	align-items: center;
	column-gap: 0.75rem;
	margin: 0;
	min-height: 3.4rem;
	padding: 0.75rem 0.9rem;
	border-radius: 12px;
	background: rgba(255, 255, 255, 0.78);
	box-shadow: 0 8px 24px rgba(6, 56, 77, 0.06);
	color: var(--brand-ink);
	font-size: 0.98rem;
	font-weight: 600;
	line-height: 1.3;
}
.trust li > span:last-child {
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
.trust__icon {
	display: grid;
	place-items: center;
	width: 2.5rem;
	height: 2.5rem;
	border-radius: 10px;
	background: rgba(0, 165, 229, 0.12);
	color: var(--brand-deep);
}
.trust__icon svg,
.contact-list__icon svg {
	display: block;
	width: 1.25rem;
	height: 1.25rem;
}
.insurers {
	display: grid;
	grid-template-columns: repeat(6, minmax(0, 1fr));
	gap: 0.75rem;
	align-items: stretch;
}
.insurers a {
	display: grid;
	place-items: center;
	min-height: 72px;
	padding: 0.65rem 0.75rem;
	background: rgba(255, 255, 255, 0.82);
	border-radius: 12px;
	box-shadow: 0 8px 24px rgba(6, 56, 77, 0.05);
	transition: background var(--ease), box-shadow var(--ease);
}
.insurers a:hover {
	background: var(--white);
	box-shadow: 0 10px 28px rgba(6, 56, 77, 0.1);
}
.insurers img {
	max-height: 42px;
	max-width: 100%;
	width: auto;
	height: auto;
	object-fit: contain;
}

.gallery {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 1rem;
	margin-top: 0.25rem;
}
.gallery__item {
	position: relative;
	margin: 0;
	aspect-ratio: 4 / 3;
	border-radius: calc(var(--radius) + 2px);
	overflow: hidden;
	background: #d7e6ee;
}
.gallery__item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	display: block;
}
.gallery__item figcaption {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	padding: 1.1rem 1rem 0.95rem;
	margin: 0;
	color: var(--white);
	font-size: 0.98rem;
	font-weight: 700;
	letter-spacing: -0.01em;
	background: linear-gradient(180deg, transparent, rgba(6, 56, 77, 0.78));
}

.contact-band {
	display: grid;
	grid-template-columns: 1.15fr 0.85fr;
	gap: 1.25rem;
	align-items: stretch;
}
.contact-band__map {
	position: relative;
	min-height: 420px;
	height: 100%;
	border-radius: var(--radius);
	overflow: hidden;
	background: #d7e6ee;
}
.contact-band__map.is-lazy {
	display: grid;
	place-items: center;
	background:
		linear-gradient(135deg, rgba(0, 165, 229, 0.12), transparent 50%),
		#d7e6ee;
}
.map-lazy__btn {
	appearance: none;
	border: 0;
	cursor: pointer;
	padding: 0.85rem 1.35rem;
	border-radius: 999px;
	font: inherit;
	font-weight: 700;
	color: var(--white);
	background: var(--brand);
	box-shadow: 0 10px 28px rgba(6, 56, 77, 0.18);
}
.map-lazy__btn:hover { background: var(--brand-deep); }
.contact-band__map:not(.is-lazy) .map-lazy__btn { display: none; }
.contact-band__map > ymaps,
.contact-band__map > div,
.contact-band__map iframe {
	position: absolute !important;
	inset: 0 !important;
	width: 100% !important;
	height: 100% !important;
	border: 0;
}
.contact-band__info {
	display: flex;
	flex-direction: column;
	padding: 1.75rem;
	border-radius: var(--radius);
	background:
		radial-gradient(500px 220px at 100% 0%, rgba(0, 165, 229, 0.28), transparent 60%),
		linear-gradient(165deg, #0a4a63 0%, var(--brand-ink) 55%, #042837 100%);
	color: var(--white);
}
.contact-band__info h2 {
	margin: 0 0 1.25rem;
	font-family: var(--font-display);
	font-size: 1.7rem;
	letter-spacing: -0.03em;
}
.contact-list {
	list-style: none;
	margin: 0 0 1.5rem;
	padding: 0;
	display: grid;
	gap: 0.75rem;
}
.contact-list li {
	display: grid;
	grid-template-columns: 2.25rem 1fr;
	align-items: center;
	column-gap: 0.75rem;
	margin: 0;
	min-height: 2.25rem;
	font-size: 1.02rem;
	line-height: 1.35;
}
.contact-list__icon {
	display: grid;
	place-items: center;
	width: 2.25rem;
	height: 2.25rem;
	border-radius: 10px;
	background: rgba(255, 255, 255, 0.1);
	color: #7dd3f0;
}
.contact-list a {
	color: #dff4fc;
	text-decoration: none;
	border-bottom: 0;
	transition: color var(--ease);
}
.contact-list a:hover {
	color: var(--white);
}
.social-links {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem 1rem;
	margin: 0 0 1.5rem;
}
.social-links a {
	color: #dff4fc;
	text-decoration: none;
	font-weight: 600;
	font-size: 0.98rem;
	border-bottom: 1px solid rgba(223, 244, 252, 0.35);
	transition: color var(--ease), border-color var(--ease);
}
.social-links a:hover {
	color: var(--white);
	border-bottom-color: var(--white);
}
.social-links--footer {
	margin: 0.35rem 0 0;
	gap: 0.4rem 0.85rem;
}
.social-links--footer a {
	font-size: 0.9rem;
	font-weight: 600;
	color: #bfe9f8;
	border-bottom-color: rgba(191, 233, 248, 0.35);
}
.social-links--footer a:hover {
	color: var(--white);
	border-bottom-color: var(--white);
}
.hours {
	margin: 0 0 1.5rem;
	padding: 1rem;
	border-radius: 12px;
	background: rgba(255, 255, 255, 0.1);
}
.hours__grid {
	display: grid;
	gap: 0.55rem;
}
.hours__item {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	gap: 1rem;
	font-size: 0.98rem;
}
.hours__item span { opacity: 0.8; }
.hours__item strong { font-weight: 700; }
.hours__item--off strong { color: #7dd3f0; font-weight: 600; }
.contact-band__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	align-items: center;
	margin-top: auto;
}
.contact-band__cta {
	align-self: auto;
	margin-top: 0;
	text-decoration: none;
}
.contact-band--page {
	grid-template-columns: 0.85fr 1.15fr;
}

.schedule {
	width: 100%;
	border-collapse: collapse;
	font-size: 0.92rem;
}
.schedule th,
.schedule td {
	padding: 0.45rem 0.35rem;
	border-bottom: 0;
	text-align: center;
}
.schedule th { font-weight: 600; opacity: 0.8; }
.schedule .weekend { opacity: 0.65; }

.page-hero {
	padding: 3rem 1.25rem 1rem;
	max-width: 1120px;
	margin: 0 auto;
}
.page-hero h1 {
	margin: 0 0 0.5rem;
	font-family: var(--font-display);
	font-size: clamp(1.8rem, 3.5vw, 2.6rem);
	letter-spacing: -0.03em;
	color: var(--brand-ink);
}
.page-hero p {
	margin: 0;
	color: var(--muted);
	max-width: 40rem;
}
.page-hero__lead {
	margin: 0;
	color: var(--muted);
	max-width: none;
}
.page-hero__lead p {
	margin: 0 0 0.85em;
	max-width: none;
}
.page-hero__lead p:last-child { margin-bottom: 0; }

.price-block {
	margin: 0 0 2rem;
	padding: 1.25rem 0 0;
}
.price-block h2,
.price-block__title {
	margin: 0 0 1rem;
	font-family: var(--font-display);
	font-size: 1.4rem;
	color: var(--brand-ink);
}

.price-tabs {
	position: relative;
}

.price-tabs__radio {
	position: absolute;
	opacity: 0;
	pointer-events: none;
	width: 1px;
	height: 1px;
}

.price-tabs__nav {
	display: flex;
	flex-wrap: wrap;
	gap: 0.45rem;
	margin: 0 0 1.35rem;
}

.price-tabs__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 1px solid transparent;
	border-radius: 999px;
	padding: 0.55rem 1rem;
	min-height: 2.4rem;
	font: inherit;
	font-weight: 700;
	font-size: 0.95rem;
	line-height: 1;
	color: var(--muted);
	background: rgba(255, 255, 255, 0.72);
	cursor: pointer;
	transition: background var(--ease), color var(--ease), border-color var(--ease), box-shadow var(--ease);
}

.price-tabs__btn:hover {
	color: var(--brand-ink);
	background: rgba(0, 165, 229, 0.12);
}

#price-tab-therapy:checked ~ .price-tabs__nav label[for="price-tab-therapy"],
#price-tab-ortho:checked ~ .price-tabs__nav label[for="price-tab-ortho"],
#price-tab-surgery:checked ~ .price-tabs__nav label[for="price-tab-surgery"],
#price-tab-orthodontics:checked ~ .price-tabs__nav label[for="price-tab-orthodontics"] {
	color: var(--white);
	background: var(--brand);
	box-shadow: 0 10px 24px rgba(0, 165, 229, 0.28);
}

.price-tabs__panel { display: none; }

#price-tab-therapy:checked ~ #therapy,
#price-tab-ortho:checked ~ #ortho,
#price-tab-surgery:checked ~ #surgery,
#price-tab-orthodontics:checked ~ #orthodontics {
	display: block;
}

.price-empty {
	margin: 0;
	padding: 1.25rem 1rem;
	border-radius: var(--radius);
	background: rgba(255, 255, 255, 0.82);
	color: var(--muted);
	text-align: center;
	box-shadow: 0 10px 30px rgba(6, 56, 77, 0.06);
}

.price-cta {
	margin: 1.75rem 0 0;
	text-align: center;
}

.price-table {
	width: 100%;
	table-layout: fixed;
	border-collapse: collapse;
	background: rgba(255, 255, 255, 0.82);
	border-radius: var(--radius);
	overflow: hidden;
}
.price-table th,
.price-table td {
	padding: 0.85rem 1rem;
	border-bottom: 0;
	text-align: left;
	vertical-align: top;
}
.price-table tbody tr:nth-child(even) td {
	background: rgba(0, 165, 229, 0.04);
}
.price-table th {
	background: rgba(0, 165, 229, 0.12);
	font-size: 0.85rem;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	color: var(--brand-ink);
}
.price-table .code {
	width: 6.5rem;
	color: var(--muted);
}
.price-table .num {
	width: 8.5rem;
	white-space: nowrap;
	font-variant-numeric: tabular-nums;
	text-align: right;
}
.price-table th.num { text-align: right; }

.doctors {
	display: grid;
	gap: 0.85rem;
}

.doctors-empty {
	margin: 0;
	padding: 1.5rem;
	border-radius: var(--radius);
	background: rgba(255, 255, 255, 0.82);
	color: var(--muted);
	text-align: center;
	box-shadow: 0 10px 30px rgba(6, 56, 77, 0.06);
}

.doctors__head {
	display: grid;
	grid-template-columns: 1.2fr 1.4fr 1.4fr;
	gap: 1rem;
	padding: 0 1.35rem 0.35rem;
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: var(--brand-ink);
}

.doctor {
	display: grid;
	grid-template-columns: 1.2fr 1.4fr 1.4fr;
	gap: 1rem;
	align-items: start;
	padding: 1.35rem 1.35rem 1.4rem;
	background:
		linear-gradient(135deg, rgba(0, 165, 229, 0.08), transparent 42%),
		rgba(255, 255, 255, 0.94);
	border: none;
	border-radius: calc(var(--radius) + 2px);
	transition: transform var(--ease);
}

.doctor:hover {
	transform: translateY(-2px);
}

.doctor__label {
	display: none;
	margin-bottom: 0.35rem;
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	color: var(--brand-deep);
}

.doctor__cell--name {
	display: flex;
	align-items: center;
	gap: 0.85rem;
}
.doctor__who {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 0.4rem;
	min-width: 0;
}
.doctor__photo {
	flex-shrink: 0;
	width: 72px;
	height: 72px;
	border-radius: 50%;
	object-fit: cover;
	background: #d7e6ee;
}
.doctor__name {
	margin: 0;
	font-family: var(--font-display);
	font-size: 1.2rem;
	line-height: 1.25;
	color: var(--brand-ink);
}

.doctor__specialty {
	margin: 0;
	color: var(--muted);
	font-weight: 600;
	font-size: 0.92rem;
	line-height: 1.35;
}

.doctor__cell p {
	margin: 0;
	color: var(--muted);
	font-size: 0.95rem;
	line-height: 1.5;
}

.doctors-cta {
	margin: 1.75rem 0 0;
	text-align: center;
}

.info-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1rem;
}
.info-grid article {
	display: flex;
	flex-direction: column;
	padding: 1.4rem 1.35rem 1.5rem;
	border-radius: calc(var(--radius) + 2px);
	background: rgba(255, 255, 255, 0.9);
	box-shadow: var(--shadow);
}
.info-grid h2 {
	margin: 0 0 0.9rem;
	font-family: var(--font-display);
	font-size: 1.2rem;
	line-height: 1.25;
	color: var(--brand-ink);
}
.info-grid ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 0.65rem;
	color: var(--muted);
	font-size: 0.98rem;
	line-height: 1.45;
}
.info-grid li {
	position: relative;
	padding-left: 1rem;
}
.info-grid li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.55em;
	width: 0.35rem;
	height: 0.35rem;
	border-radius: 50%;
	background: var(--brand);
}

.prose {
	max-width: 46rem;
	color: var(--ink);
}
.prose h1, .prose h2, .prose h3 { font-family: var(--font-display); color: var(--brand-ink); }

.book {
	max-width: 560px;
	margin-inline: auto;
}
.book__intro {
	margin: 0 0 1.5rem;
}
.book__intro h1 {
	margin: 0 0 0.55rem;
	font-family: var(--font-display);
	font-size: clamp(1.85rem, 4vw, 2.35rem);
	font-weight: 800;
	line-height: 1.15;
	color: var(--brand-ink);
}
.book__lead {
	margin: 0 0 0.45rem;
	color: var(--muted);
	font-size: 1.02rem;
	line-height: 1.5;
	max-width: 36em;
}
.book__phone {
	margin: 0;
	color: var(--muted);
	font-size: 1.02rem;
}
.book__phone a {
	font-weight: 700;
	color: var(--brand-deep);
	text-decoration: none;
}
.book__phone a:hover { color: var(--brand); text-decoration: underline; }

.form-panel {
	padding: 1.75rem 1.5rem 1.5rem;
	background: rgba(255, 255, 255, 0.92);
	border-radius: calc(var(--radius) + 6px);
	box-shadow: var(--shadow);
}
.form-panel .alert { margin: 0 0 1.15rem; }

.field-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1rem;
}
.field { margin: 0 0 1rem; }
.field label {
	display: block;
	margin-bottom: 0.4rem;
	font-weight: 600;
	font-size: 0.9rem;
	color: var(--brand-ink);
}
.field input,
.field textarea {
	width: 100%;
	padding: 0.85rem 1rem;
	border: 0;
	border-radius: 12px;
	font: inherit;
	background: var(--surface);
	color: var(--ink);
	transition: background var(--ease), box-shadow var(--ease);
}
.field input::placeholder,
.field textarea::placeholder { color: #8aa3ad; }
.field input:hover,
.field textarea:hover { background: #e5f1f6; }
.field input:focus,
.field textarea:focus {
	outline: none;
	background: var(--white);
	box-shadow: 0 0 0 3px rgba(0, 165, 229, 0.35);
}
.field--check { margin-top: 0.25rem; }
.field--check label {
	display: grid;
	grid-template-columns: 1.15rem 1fr;
	align-items: start;
	column-gap: 0.65rem;
	font-weight: 500;
	font-size: 0.92rem;
	line-height: 1.4;
	color: var(--muted);
	cursor: pointer;
}
.field--check input[type="checkbox"] {
	width: 1.15rem;
	height: 1.15rem;
	margin: 0.15rem 0 0;
	flex-shrink: 0;
	accent-color: var(--brand);
	cursor: pointer;
}
.field--check a { font-weight: 600; }
.book-form__submit {
	width: 100%;
	margin-top: 0.35rem;
	min-height: 52px;
	font-size: 1.05rem;
}

.cookie-banner {
	position: fixed;
	left: 1rem;
	right: 1rem;
	bottom: 1rem;
	z-index: 80;
	max-width: 640px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	gap: 1rem;
	padding: 1rem 1.1rem;
	background: rgba(255, 255, 255, 0.94);
	border-radius: var(--radius);
	box-shadow: var(--shadow);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
}
.cookie-banner[hidden] { display: none; }
.cookie-banner p {
	margin: 0;
	flex: 1;
	font-size: 0.95rem;
	color: var(--ink);
}
.cookie-banner .btn { flex-shrink: 0; }

@media (max-width: 600px) {
	.cookie-banner {
		flex-direction: column;
		align-items: stretch;
		text-align: left;
	}
	.cookie-banner .btn { width: 100%; }
}

.alert {
	margin: 1rem 0 0;
	padding: 0.9rem 1rem;
	border-radius: 10px;
	font-weight: 600;
}
.alert--ok { background: #e8f8ef; color: var(--ok); }
.alert--err { background: #fdecec; color: var(--danger); }

.site-footer {
	margin-top: auto;
	flex-shrink: 0;
	padding: 0;
	background:
		radial-gradient(700px 240px at 0% 0%, rgba(0, 165, 229, 0.22), transparent 55%),
		var(--brand-ink);
	color: rgba(255, 255, 255, 0.86);
}
.site-footer a { color: #bfe9f8; text-decoration: none; }
.site-footer a:hover { color: var(--white); }
.site-footer__inner {
	max-width: 1120px;
	margin: 0 auto;
	padding: 2rem 1.25rem 1.25rem;
}
.site-footer__grid {
	display: grid;
	grid-template-columns: 1.1fr 1.4fr 1fr;
	gap: 1.5rem 2rem;
	align-items: start;
	margin-bottom: 1.35rem;
}
.site-footer__brand {
	margin: 0 0 0.35rem;
	font-family: var(--font-display);
	font-size: 1.25rem;
	font-weight: 800;
	color: var(--white);
}
.site-footer__tag {
	margin: 0;
	font-size: 0.92rem;
	line-height: 1.4;
	color: rgba(255, 255, 255, 0.7);
	max-width: 16rem;
}
.site-footer__nav {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0.45rem 1.25rem;
}
.site-footer__nav a {
	font-size: 0.95rem;
	font-weight: 600;
	padding: 0.15rem 0;
}
.site-footer__contacts {
	display: grid;
	gap: 0.45rem;
	justify-items: start;
}
.site-footer__phone {
	font-size: 1.05rem;
	font-weight: 800;
	color: var(--white) !important;
	letter-spacing: -0.01em;
}
.site-footer__mail {
	font-size: 0.95rem;
	font-weight: 600;
}
.site-footer__bottom {
	position: relative;
	padding-top: 1rem;
	border-top: 1px solid rgba(255, 255, 255, 0.12);
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	gap: 0.5rem 1rem;
	font-size: 0.85rem;
	color: rgba(255, 255, 255, 0.72);
}
.site-footer__bottom p { margin: 0; }
.site-footer__bottom a { color: rgba(191, 233, 248, 0.9); }
.site-footer__dev {
	margin: 0;
	color: rgba(191, 233, 248, 0.7);
	font-size: 0.9rem;
}
.site-footer__dev a { color: rgba(191, 233, 248, 0.9); }
.site-footer__dev a:hover { color: var(--white); }
.site-footer__admin {
	position: absolute;
	right: 0;
	bottom: 0;
	width: 12px;
	height: 12px;
	opacity: 0;
}

.to-top {
	position: fixed;
	right: 1rem;
	bottom: 1rem;
	width: 44px;
	height: 44px;
	border: 0;
	border-radius: 999px;
	background: var(--brand);
	color: var(--white);
	font-size: 1.2rem;
	cursor: pointer;
	opacity: 0;
	pointer-events: none;
	transition: opacity var(--ease), transform var(--ease);
	box-shadow: var(--shadow);
}
.to-top.is-visible { opacity: 1; pointer-events: auto; }
.to-top:hover { transform: translateY(-2px); background: var(--brand-deep); }

@media (max-width: 960px) {
	.services,
	.contact-band,
	.insurers,
	.info-grid,
	.about__layout,
	.trust {
		grid-template-columns: 1fr 1fr;
	}
	.about__media {
		grid-column: 1 / -1;
		max-width: 420px;
	}
	.about__content { grid-column: 1 / -1; }
	.doctors__head { display: none; }
	.doctor {
		grid-template-columns: 1fr 1fr;
		gap: 1.1rem 1rem;
	}
	.doctor__label { display: block; }
	.doctor__cell--name { grid-column: 1 / -1; }
	.doctor__photo { width: 64px; height: 64px; }
	.gallery {
		grid-template-columns: 1fr 1fr;
	}
	.site-footer__grid {
		grid-template-columns: 1fr 1fr;
	}
	.site-footer__brand-block {
		grid-column: 1 / -1;
	}
}

@media (max-width: 760px) {
	:root { --header-h: 64px; }

	.nav-toggle { display: inline-flex; }
	.nav-toggle[aria-expanded="true"] .nav-toggle__bar { background: transparent; }
	.nav-toggle[aria-expanded="true"] .nav-toggle__bar::before {
		top: 0;
		transform: rotate(45deg);
	}
	.nav-toggle[aria-expanded="true"] .nav-toggle__bar::after {
		top: 0;
		transform: rotate(-45deg);
	}

	.site-nav {
		position: fixed;
		inset: var(--header-h) 0 auto 0;
		display: none;
		flex-direction: column;
		align-items: stretch;
		gap: 0.85rem;
		max-height: calc(100dvh - var(--header-h));
		overflow-y: auto;
		padding: 1rem 1.25rem calc(1.25rem + env(safe-area-inset-bottom));
		background: rgba(255, 255, 255, 0.98);
		box-shadow: var(--shadow);
		-webkit-overflow-scrolling: touch;
	}
	.site-nav.is-open { display: flex; }
	.site-nav__list {
		flex-direction: column;
		align-items: stretch;
		gap: 0.15rem;
	}
	.site-nav__list a {
		width: 100%;
		min-height: 48px;
		padding: 0.75rem 0.85rem;
		border-radius: 12px;
		background: var(--surface-2);
	}
	.site-nav__list a[aria-current="page"] {
		background: rgba(0, 165, 229, 0.14);
		color: var(--brand-deep);
	}
	.site-nav__cta {
		width: 100%;
		min-height: 48px;
		margin-top: 0.25rem;
	}
	.site-a11y {
		width: 100%;
		justify-content: flex-start;
		min-height: 48px;
		padding: 0.75rem 1rem;
		border-radius: 12px;
		border-color: rgba(6, 56, 77, 0.16);
		background: var(--surface-2);
		box-shadow: none;
		font-size: 0.95rem;
	}

	body.nav-open {
		overflow: hidden;
		touch-action: none;
	}

	.brand img { width: 118px; }

	.hero {
		min-height: min(78svh, 640px);
	}
	.hero__content {
		padding: 2.5rem 1.15rem calc(2rem + env(safe-area-inset-bottom));
	}
	.hero__brand {
		font-size: clamp(2.2rem, 11vw, 3rem);
		margin-bottom: 0.85rem;
	}
	.hero__lead {
		font-size: 1.02rem;
		margin-bottom: 1.35rem;
	}
	.hero__actions {
		flex-direction: column;
		align-items: stretch;
	}
	.hero__actions .btn { width: 100%; }

	.section {
		padding: 2.75rem 1.15rem;
	}
	.section--tight {
		padding-top: 1.75rem;
		padding-bottom: 1.75rem;
	}
	.page-hero {
		padding: 2rem 1.15rem 0.75rem;
	}

	.services,
	.contact-band,
	.contact-band--page,
	.gallery,
	.insurers,
	.info-grid,
	.about__layout,
	.trust {
		grid-template-columns: 1fr;
	}
	.doctor {
		grid-template-columns: 1fr;
		padding: 1.15rem;
	}
	.doctor__cell--name { grid-column: auto; }
	.doctor__specialty { font-size: 0.88rem; }

	.service {
		min-height: 240px;
		padding: 1.25rem;
	}

	.field-row { grid-template-columns: 1fr; }
	.form-panel { padding: 1.35rem 1.15rem 1.25rem; }

	.gallery {
		grid-template-columns: 1fr 1fr;
		gap: 0.75rem;
	}
	.gallery__item { aspect-ratio: 4 / 3; }
	.gallery__item figcaption {
		font-size: 0.88rem;
		padding: 0.85rem 0.75rem 0.7rem;
	}

	.insurers { grid-template-columns: 1fr 1fr; gap: 0.65rem; }
	.insurers a { min-height: 72px; padding: 0.75rem; }
	.insurers img { max-height: 36px; }

	.about__media {
		max-width: none;
		aspect-ratio: 4 / 3;
	}
	.about__media img {
		object-fit: cover;
		object-position: center top;
	}

	.contact-band__map { min-height: 280px; }
	.contact-band__info { padding: 1.35rem 1.2rem; }
	.contact-band__actions {
		width: 100%;
		flex-direction: column;
		align-items: stretch;
	}
	.contact-band__actions .btn { width: 100%; }

	.price-tabs__nav {
		flex-wrap: nowrap;
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
		scrollbar-width: none;
		margin-bottom: 1.1rem;
		padding-bottom: 0.15rem;
	}
	.price-tabs__nav::-webkit-scrollbar { display: none; }
	.price-tabs__btn {
		flex: 0 0 auto;
		font-size: 0.9rem;
		padding: 0.5rem 0.9rem;
	}
	.price-tabs__panel { overflow-x: auto; }
	.price-table {
		min-width: 0;
	}
	.price-table th:first-child,
	.price-table td:first-child { display: none; }
	.price-table .num { width: 6.5rem; }
	.price-block__title { font-size: 1.2rem; }

	.site-footer__inner {
		padding: 1.75rem 1.15rem calc(1.35rem + env(safe-area-inset-bottom));
	}
	.site-footer__grid {
		grid-template-columns: 1fr;
		gap: 1.35rem;
		margin-bottom: 1.15rem;
	}
	.site-footer__nav {
		grid-template-columns: 1fr 1fr;
		gap: 0.55rem 1rem;
		padding-top: 0.15rem;
	}
	.site-footer__contacts {
		padding-top: 0.15rem;
		gap: 0.55rem;
	}
	.site-footer__phone { font-size: 1.15rem; }
	.site-footer__bottom {
		flex-direction: column;
		align-items: flex-start;
		gap: 0.45rem;
	}

	.cookie-banner {
		left: 0.75rem;
		right: 0.75rem;
		bottom: calc(0.75rem + env(safe-area-inset-bottom));
	}

	.to-top {
		right: 0.85rem;
		bottom: calc(5.5rem + env(safe-area-inset-bottom));
	}
}

/* —— Версия для слабовидящих (BVI) —— */
body.bvi-active {
	background: #fff !important;
}

/* Всегда прячем лишний UI */
body.bvi-active .hero__shade,
body.bvi-active .contact-band__map,
body.bvi-active .trust__icon,
body.bvi-active .contact-list__icon,
body.bvi-active .cookie-banner,
body.bvi-active .to-top,
body.bvi-active .site-footer__admin,
body.bvi-active .site-a11y,
body.bvi-active .site-header::before,
body.bvi-active .map-lazy__btn {
	display: none !important;
}

/* Картинки — только когда в панели выключены */
body.bvi-active .bvi-body[data-bvi-images="false"] .hero__media,
body.bvi-active .bvi-body[data-bvi-images="false"] .gallery,
body.bvi-active .bvi-body[data-bvi-images="false"] section:has(> .gallery),
body.bvi-active .bvi-body[data-bvi-images="false"] .insurers,
body.bvi-active .bvi-body[data-bvi-images="false"] .about__media,
body.bvi-active .bvi-body[data-bvi-images="false"] .doctor__photo,
body.bvi-active .bvi-body[data-bvi-images="false"] .brand img,
body.bvi-active .bvi-body[data-bvi-images="false"] .service::before,
body.bvi-active .bvi-body[data-bvi-images="false"] .service::after {
	display: none !important;
}

/* При включённых изображениях — вернуть блоки */
body.bvi-active .bvi-body:not([data-bvi-images="false"]) .brand img {
	display: block !important;
	/* лого белое — на светлом фоне делаем чёрным */
	filter: brightness(0) !important;
	-webkit-filter: brightness(0) !important;
	width: 132px;
	height: auto;
}
body.bvi-active .bvi-body:not([data-bvi-images="false"]) .brand__name {
	position: absolute;
	width: 1px;
	height: 1px;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
}
body.bvi-active .bvi-body:not([data-bvi-images="false"]) .about__media {
	display: block !important;
}
body.bvi-active .bvi-body:not([data-bvi-images="false"]) .doctor__photo {
	display: block !important;
}
body.bvi-active .bvi-body:not([data-bvi-images="false"]) .gallery,
body.bvi-active .bvi-body:not([data-bvi-images="false"]) section:has(> .gallery),
body.bvi-active .bvi-body:not([data-bvi-images="false"]) .hero__media {
	display: revert !important;
}
body.bvi-active .bvi-body:not([data-bvi-images="false"]) .insurers {
	display: grid !important;
	grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
	gap: 0.75rem;
	width: 100%;
	max-width: 40rem;
	justify-items: stretch;
}
body.bvi-active .bvi-body:not([data-bvi-images="false"]) .insurers a {
	display: flex !important;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: 4.5rem;
	margin: 0;
	padding: 0.75rem;
	border: 1px solid currentColor;
	border-radius: 0;
	background: transparent !important;
	box-shadow: none !important;
}
body.bvi-active .bvi-body:not([data-bvi-images="false"]) .insurers img {
	display: block !important;
	max-height: 2.75rem;
	max-width: 100%;
	width: auto;
	height: auto;
	object-fit: contain;
}
body.bvi-active .bvi-body:not([data-bvi-images="false"]) .service::before,
body.bvi-active .bvi-body:not([data-bvi-images="false"]) .service::after {
	display: block !important;
}
body.bvi-active .bvi-body:not([data-bvi-images="false"]) .service {
	color: #fff !important;
	min-height: 220px;
	justify-content: flex-end;
}
body.bvi-active .bvi-body:not([data-bvi-images="false"]) .about__layout {
	grid-template-columns: 0.92fr 1.08fr;
}

/* Цветные */
body.bvi-active .bvi-body[data-bvi-images="true"] img,
body.bvi-active .bvi-body[data-bvi-images="true"] .hero__media,
body.bvi-active .bvi-body[data-bvi-images="true"] .service::before,
body.bvi-active .bvi-body[data-bvi-images="true"] .bvi-background-image {
	filter: none !important;
	-webkit-filter: none !important;
}

/* Чёрно-белые */
body.bvi-active .bvi-body[data-bvi-images="grayscale"] img,
body.bvi-active .bvi-body[data-bvi-images="grayscale"] .hero__media,
body.bvi-active .bvi-body[data-bvi-images="grayscale"] .service::before,
body.bvi-active .bvi-body[data-bvi-images="grayscale"] .bvi-img,
body.bvi-active .bvi-body[data-bvi-images="grayscale"] .bvi-background-image {
	filter: grayscale(1) !important;
	-webkit-filter: grayscale(1) !important;
}

/* Логотип белый — всегда в чёрный на светлом фоне BVI */
body.bvi-active .bvi-body:not([data-bvi-images="false"]) .brand img,
body.bvi-active .bvi-body[data-bvi-images="true"] .brand img,
body.bvi-active .bvi-body[data-bvi-images="grayscale"] .brand img {
	filter: brightness(0) !important;
	-webkit-filter: brightness(0) !important;
}

body.bvi-active .brand__name {
	position: static;
	width: auto;
	height: auto;
	margin: 0;
	overflow: visible;
	clip: auto;
	font-family: Arial, sans-serif;
	font-size: 1.35rem;
	font-weight: 800;
	line-height: 1.2;
	color: inherit;
}

body.bvi-active .site-header {
	position: static;
	height: auto;
	background: transparent !important;
	border-bottom: 2px solid currentColor;
}
body.bvi-active .site-header__inner {
	height: auto;
	padding-top: 0.75rem;
	padding-bottom: 0.75rem;
}
body.bvi-active .nav-toggle {
	background: transparent !important;
	box-shadow: none !important;
	border: 2px solid currentColor;
	border-radius: 0;
}
body.bvi-active .nav-toggle__bar,
body.bvi-active .nav-toggle__bar::before,
body.bvi-active .nav-toggle__bar::after {
	background: currentColor !important;
}
body.bvi-active .site-nav.is-open {
	background: #fff !important;
	box-shadow: none !important;
	border: 2px solid currentColor;
}
body.bvi-active .site-nav__list a {
	background: transparent !important;
	border: 1px solid currentColor;
	border-radius: 0;
	color: inherit !important;
}

body.bvi-active .hero {
	min-height: 0;
	color: inherit;
	overflow: visible;
	isolation: auto;
}
body.bvi-active .hero__content {
	padding: 1.5rem 1.25rem 1.25rem;
	animation: none;
}
body.bvi-active .hero__brand {
	text-shadow: none;
	font-size: clamp(1.75rem, 4vw, 2.4rem);
	color: inherit;
}
body.bvi-active .hero__lead {
	opacity: 1;
	color: inherit;
}

body.bvi-active .section {
	padding-top: 1.75rem;
	padding-bottom: 1.75rem;
}
body.bvi-active .section__title,
body.bvi-active .section__text,
body.bvi-active .about__text,
body.bvi-active .page-hero h1,
body.bvi-active .page-hero p,
body.bvi-active .page-hero__lead {
	color: inherit;
}

body.bvi-active .service {
	min-height: 0;
	color: inherit !important;
	background: transparent !important;
	border: 2px solid currentColor;
	border-radius: 0;
	justify-content: flex-start;
	padding: 1rem 1.1rem;
	box-shadow: none !important;
}
body.bvi-active .service:hover {
	transform: none;
	color: inherit !important;
}
body.bvi-active .service p { opacity: 1; }

body.bvi-active .about__layout {
	grid-template-columns: 1fr;
	gap: 1rem;
}
body.bvi-active .trust li {
	display: block;
	grid-template-columns: none;
	background: transparent !important;
	box-shadow: none !important;
	border: 1px solid currentColor;
	border-radius: 0;
	padding: 0.65rem 0.85rem;
	min-height: 0;
	color: inherit;
}
body.bvi-active .trust li > span:last-child {
	display: block;
	-webkit-line-clamp: unset;
	-webkit-box-orient: unset;
	overflow: visible;
	white-space: normal;
	word-break: normal;
}

body.bvi-active .contact-band {
	grid-template-columns: 1fr;
	max-width: 100%;
}
body.bvi-active .contact-band__info {
	background: transparent !important;
	color: inherit !important;
	border: 2px solid currentColor;
	border-radius: 0;
	width: 100%;
	max-width: 100%;
	box-sizing: border-box;
}
body.bvi-active .contact-band__info a,
body.bvi-active .contact-list,
body.bvi-active .hours,
body.bvi-active .hours__item strong {
	color: inherit !important;
}
body.bvi-active .contact-list li {
	display: block;
	grid-template-columns: none;
	min-height: 0;
	margin: 0 0 0.85rem;
	line-height: 1.45;
}
body.bvi-active .contact-list li > span,
body.bvi-active .contact-list li > a {
	display: inline;
	white-space: normal;
	word-break: normal;
	overflow-wrap: break-word;
}
body.bvi-active .contact-list a[href^="tel"],
body.bvi-active .contact-list a[href^="mailto"] {
	white-space: nowrap;
}
body.bvi-active .hours__item {
	background: transparent !important;
	border: 1px solid currentColor;
	border-radius: 0;
}

body.bvi-active .btn {
	border-radius: 0;
	box-shadow: none !important;
	border: 2px solid currentColor;
	transform: none !important;
}
body.bvi-active .btn--primary,
body.bvi-active .btn--ghost {
	background: transparent !important;
	color: inherit !important;
}

body.bvi-active .doctor,
body.bvi-active .doctors-empty,
body.bvi-active .form-panel,
body.bvi-active .info-grid article,
body.bvi-active .page-hero,
body.bvi-active .price-table,
body.bvi-active .price-table th,
body.bvi-active .price-table tbody tr:nth-child(even) td {
	background: transparent !important;
	box-shadow: none !important;
	border-radius: 0;
}
body.bvi-active .doctor,
body.bvi-active .doctors-empty,
body.bvi-active .form-panel,
body.bvi-active .info-grid article {
	border: 1px solid currentColor;
}
body.bvi-active .price-table {
	border: 1px solid currentColor;
}
body.bvi-active .price-table th,
body.bvi-active .price-table td {
	border-bottom: 1px solid currentColor;
	color: inherit;
}
body.bvi-active .price-tabs__btn {
	border-radius: 0;
	border: 1px solid currentColor;
	background: transparent !important;
	color: inherit !important;
	box-shadow: none !important;
}
body.bvi-active .field input,
body.bvi-active .field textarea {
	border: 2px solid currentColor !important;
	border-radius: 0 !important;
	background: transparent !important;
	color: inherit !important;
	box-shadow: none !important;
}

body.bvi-active .site-footer {
	background: transparent !important;
	color: inherit !important;
	border-top: 2px solid currentColor;
	margin-top: 1rem;
}
body.bvi-active .site-footer a,
body.bvi-active .site-footer__brand,
body.bvi-active .site-footer__tag,
body.bvi-active .site-footer__phone,
body.bvi-active .site-footer__mail,
body.bvi-active .site-footer__bottom,
body.bvi-active .site-footer__dev {
	color: inherit !important;
}
body.bvi-active .site-footer__bottom {
	border-top-color: currentColor;
}

body.bvi-active *,
body.bvi-active *::before,
body.bvi-active *::after {
	animation: none !important;
	transition: none !important;
	text-shadow: none !important;
	backdrop-filter: none !important;
	-webkit-backdrop-filter: none !important;
}
