/*
Theme Name: Gilded - Child
Version: 1.0
Description: A child theme of DMM (mts_schema) for the PDA Dental home page layout.
Template: mts_schema
Text Domain: schema
*/

@import url("../mts_schema/style.css");

:root {
	--navy: #173049;
	--navy-deep: #0f2338;
	--ink: #1b2a36;
	--body: #46545e;
	--muted: #7d8a92;
	--teal: #4fb8c8;
	--teal-dark: #3a9fb2;
	--teal-light: #82cfdd;
	--cream: #fbf8f1;
	--white: #ffffff;
	--line: #e7e3d9;
	--line-soft: #eceae4;
	--serif: 'Cormorant Garamond', serif;
	--sans: Roboto;
	--italic: 'Instrument Serif';
	--wrap: 1180px;
	--header-h: 78px;
}

* { box-sizing: border-box; }

body.main {
	background: var(--white);
	color: var(--body);
	font: 400 16px/1.7 var(--sans);
	-webkit-font-smoothing: antialiased;
	text-wrap: pretty;
}

.homepage img { max-width: 100%; }

.homepage a { color: var(--teal-dark); text-decoration: none; }
.homepage a:hover { color: var(--ink); }

.homepage ul { list-style: none; margin: 0; padding: 0; }

.homepage h1,
.homepage h2,
.homepage h3 {margin: 0;color: var(--ink);font-family: var(--serif);font-weight: 400;}

.homepage p { margin: 0 0 1em; }

#page.homepage { padding: 0; }

.wrap {
	width: 100%;
	max-width: var(--wrap);
	margin: 0 auto;
	padding: 0 28px;
}

.section { padding: 96px 0; }
.results { background: var(--white); }
.services { background: var(--cream); }
.reviews { background: var(--white); }
.doctors { background: var(--cream); }
.faq { background: var(--white); }

.center { text-align: center; }

.skip { position: absolute; left: -9999px; }
.skip:focus {
	left: 16px; top: 16px; z-index: 200;
	background: var(--white); color: var(--ink);
	padding: 10px 16px;
}

/* media wells — striped placeholder until a Theme Options image is set */
.media {
	position: relative;
	overflow: hidden;
	background-color: #eeeae1;
	background-image: repeating-linear-gradient(135deg,
			rgba(23, 48, 73, .07) 0 8px, rgba(23, 48, 73, 0) 8px 16px);
	background-size: cover;
	background-position: center;
}
.media::after {
	content: attr(data-label);
	position: absolute;
	left: 50%; top: 50%;
	transform: translate(-50%, -50%);
	font: 400 11px/1.4 ui-monospace, "SFMono-Regular", Menlo, monospace;
	letter-spacing: .08em;
	text-transform: uppercase;
	color: rgba(23, 48, 73, .45);
	text-align: center;
	padding: 0 12px;
}
.media[style]::after { display: none; }

.homepage .btn,
.dm-header .btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 11px 26px;
	font: 700 12px/1 var(--sans);
	letter-spacing: .14em;
	text-transform: uppercase;
	border: 1px solid transparent;
	border-radius: 0;
	transition: background .2s, color .2s, border-color .2s;
	white-space: nowrap;
	color: #fff;
}
.btn-solid { background: var(--teal); color: var(--white); }
.btn-solid:hover { background: var(--navy); color: var(--white); }

.btn-outline { background: transparent; color: var(--teal-dark); border-color: var(--teal); }
.btn-outline:hover { background: var(--teal); color: var(--white); }

.btn-white { background: var(--white); color: var(--teal-dark); }
.btn-white:hover { background: var(--teal); color: var(--white); }

.btn-ghost { background: transparent; color: var(--white); border-color: rgba(255, 255, 255, .35); }
.btn-ghost:hover { background: rgba(255, 255, 255, .12); color: var(--white); }

.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }

.eyebrow {
	margin: 0 0 18px;
	font: 700 14px/1.4 var(--sans);
	letter-spacing: .22em;
	text-transform: uppercase;
	color: var(--teal-dark);
}
.eyebrow-light {color: rgba(255, 255, 255, .9);font-size: 18px;}
.eyebrow-teal { color: var(--teal-light); }
.eyebrow::after {
	content: "";
	display: inline-block;
	width: 38px;
	height: 1px;
	margin-left: 14px;
	vertical-align: middle;
	background: currentColor;
	opacity: .55;
}

.title { font-size: 44px; line-height: 1.14; letter-spacing: -.01em; }
.title em { font-style: normal; color: var(--teal); }

.section-head {
	display: grid;
	grid-template-columns: 1.15fr .85fr;
	gap: 56px;
	align-items: end;
	margin-bottom: 52px;
}
.section-intro { margin: 0 0 6px; color: var(--body); }

.link-arrow {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font: 700 11px/1 var(--sans);
	letter-spacing: .16em;
	text-transform: uppercase;
	color: var(--teal-dark);
}
.link-arrow::after { content: "\2192"; transition: transform .2s; }
.link-arrow:hover { color: var(--teal); }
.link-arrow:hover::after { transform: translateX(4px); }

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

/* ---------- 4. Header + hover navigation ---------- */
.dm-header {
	position: fixed;
	inset: 0 0 auto 0;
	z-index: 100;
	background: transparent;
	transition: background .25s, box-shadow .25s;
}
.dm-header.is-solid {
	background: var(--navy);
	box-shadow: 0 1px 0 rgba(255, 255, 255, .08);
}

.dm-header .header-inner {
	max-width: 1235px;
	margin: 0 auto;
	padding: 0 28px;
	height: var(--header-h);
	display: flex;
	align-items: center;
	gap: 34px;
}

.dm-header .logo-wrap { flex: none; }
.dm-header #logo { margin: 0; font-family: var(--serif); font-weight: 400; }
.dm-header #logo img {max-height: 52px;width: auto;display: block;}
.dm-header #logo a { color: var(--white); font-size: 26px; letter-spacing: .04em; }
.dm-header .hidden-text { position: absolute; left: -9999px; }

.dm-header .navigation { flex: 1; }

.dm-header .menu {
	display: flex;
	align-items: center;
	gap: 26px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.dm-header .menu > li { position: relative; }

.dm-header .menu > li > a {
	display: flex;
	align-items: center;
	gap: 7px;
	padding: 12px 0;
	font: 400 15px/1 var(--sans);
	color: var(--white);
	white-space: nowrap;
}
.dm-header .menu > li:hover > a,
.dm-header .menu > li.is-open > a,
.dm-header .menu > li.current-menu-item > a { color: var(--teal-light); }

/* caret on parent items */
.dm-header .menu > li.menu-item-has-children > a::after {
	content: "";
	width: 7px; height: 7px;
	border-right: 1.5px solid currentColor;
	border-bottom: 1.5px solid currentColor;
	transform: translateY(-2px) rotate(45deg);
	transition: transform .2s;
}
.dm-header .menu > li.menu-item-has-children:hover > a::after,
.dm-header .menu > li.menu-item-has-children.is-open > a::after {
	transform: translateY(1px) rotate(225deg);
}

/* the dropdown */
.dm-header .menu .sub-menu {
	position: absolute;
	top: 100%;
	left: -18px;
	min-width: 248px;
	margin: 0;
	padding: 10px 0;
	list-style: none;
	background: var(--white);
	border-top: 2px solid var(--teal);
	box-shadow: 0 18px 40px rgba(15, 35, 56, .18);
	opacity: 0;
	visibility: hidden;
	transform: translateY(8px);
	transition: opacity .18s ease, transform .18s ease, visibility .18s;
	z-index: 20;
}
.dm-header .menu > li:hover > .sub-menu,
.dm-header .menu > li:focus-within > .sub-menu,
.dm-header .menu > li.is-open > .sub-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}
/* keeps hover alive across the gap between link and panel */
.dm-header .menu > li > .sub-menu::before {
	content: "";
	position: absolute;
	left: 0; right: 0; top: -12px;
	height: 12px;
}
/* wide two-column panel — add the "submenu-wide" CSS class to a menu item in Appearance > Menus */
.dm-header .menu > li.submenu-wide > .sub-menu { columns: 2; column-gap: 0; min-width: 420px; }

.dm-header .menu .sub-menu a {
	display: block;
	padding: 9px 24px;
	font-size: 14px;
	color: var(--ink);
	border-left: 2px solid transparent;
}
.dm-header .menu .sub-menu a:hover {
	background: var(--cream);
	border-left-color: var(--teal);
	color: var(--teal-dark);
}

/* third level opens to the side */
.dm-header .menu .sub-menu .sub-menu { top: 0; left: 100%; }

.dm-header .header-side { display: flex; align-items: center; gap: 16px; }

.dm-header .rating {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 7px 12px;
	background: var(--white);
	border-radius: 2px;
}
.dm-header .stars { color: #f5a623; font-size: 12px; letter-spacing: 1px; }
.dm-header .rating-count { font-weight: 700; font-size: 13px; color: var(--ink); }
.dm-header .rating-source { font: 700 8px/1.2 var(--sans); letter-spacing: .04em; color: var(--muted); }

.burger {
	display: none;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	width: 42px; height: 42px;
	padding: 0;
	background: none;
	border: 1px solid rgba(255, 255, 255, .35);
	cursor: pointer;
}
.burger span { display: block; height: 1.5px; width: 20px; margin: 0 auto; background: var(--white); }

/* ---------- 5. Hero + results ---------- */
.hero {
	position: relative;
	min-height: 875px;
	padding: calc(var(--header-h) + 70px) 28px 34px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	overflow: hidden;
	background: #000;
}
.hero-media {
	position: absolute;
	inset: 0;
	background-color: #8ba0aa;
	background-size: cover;
	background-position: center;
}
.hero-media::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(23, 48, 73, .55) 0%, rgba(23, 48, 73, .28) 45%, rgba(23, 48, 73, .62) 100%);
}

.hero-body {
	position: relative;
	width: 100%;
	max-width: var(--wrap);
	margin: 0 auto;
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.hero-body .btn { align-self: flex-start; }

.hero-title {
	margin: 0 0 22px;
	font-size: 114px;
	line-height: 1;
	letter-spacing: .01em;
	color: var(--white) !important;
	text-transform: uppercase;
	font-family: 'Instrument Serif' !important;
}
.hero-title em { font-style: normal; color: var(--teal-light); }

.hero-text {
	max-width: 620px;
	margin: 0 0 34px;
	font-size: 17px;
	color: rgba(255, 255, 255, .92);
}
.hero-text p { margin: 0 0 .4em; }

.stats {
	position: relative;
	width: 100%;
	max-width: var(--wrap);
	margin: 46px auto 100px !important;
	padding-top: 40px !important;
	border-top: 1px solid rgba(255, 255, 255, .25);
	display: grid;
	grid-template-columns: repeat(3, 1fr);
}
.stats li {
	display: flex;
	align-items: center;
	gap: 12px;
	padding-left: 26px;
	border-left: 1px solid rgba(255, 255, 255, .22);
}
.stats li:first-child { border-left: 0; padding-left: 0; }
.stat-num {font: normal 400 34px/1 var(--serif);color: var(--teal-light);font-size: 56px;vertical-align: middle;line-height: 1;}
.stat-label {
	font: 700 11px/1.3 var(--sans);
	letter-spacing: .16em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, .85);
}

.quicklinks {
	display: flex;
	justify-content: center;
	gap: 54px;
	padding: 20px 28px;
	background: var(--white);
	border-bottom: 1px solid var(--line-soft);
}
.quicklinks a {
	font: 700 11px/1 var(--sans);
	letter-spacing: .22em;
	text-transform: uppercase;
	color: var(--muted);
}
.quicklinks a:hover { color: var(--teal-dark); }

/* before / after cases */
.compare {
	position: relative;
	aspect-ratio: 4 / 3.05;
	margin-bottom: 20px;
	--pos: 50%;
	user-select: none;
	touch-action: pan-y;
}
.compare .media { position: absolute; inset: 0; }
.compare-before { background-color: #e5e1d9; }
.compare-before::after { left: 25%; }
.compare-after {
	background-color: #d8dee2;
	clip-path: inset(0 0 0 var(--pos));
}
.compare-after::after { left: 76%; }

.tag {
	position: absolute;
	top: 14px;
	padding: 6px 12px;
	background: var(--white);
	border-radius: 20px;
	font: 700 9px/1 var(--sans);
	letter-spacing: .16em;
	text-transform: uppercase;
	color: var(--ink);
	z-index: 2;
}
.tag-before { left: 14px; }
.tag-after { right: 14px; color: var(--teal-dark); }

.handle {
	position: absolute;
	top: 0; bottom: 0;
	left: var(--pos);
	width: 2px;
	padding: 0;
	background: var(--white);
	border: 0;
	cursor: ew-resize;
	transform: translateX(-1px);
	z-index: 3;
}
.handle::after {
	content: "\25C0\FE0E \25B6\FE0E";
	position: absolute;
	top: 50%; left: 50%;
	transform: translate(-50%, -50%);
	width: 34px; height: 34px;
	border-radius: 50%;
	background: var(--white);
	color: var(--teal-dark);
	font-size: 9px;
	line-height: 34px;
	letter-spacing: 1px;
	text-align: center;
	box-shadow: 0 2px 8px rgba(15, 35, 56, .25);
}

.case-meta {
	margin: 0 0 10px;
	font: 700 10px/1 var(--sans);
	letter-spacing: .18em;
	text-transform: uppercase;
	color: var(--teal-dark);
}
.case-title {font-size: 25px;margin-bottom: 12px;font-family: 'Cormorant Garamond', serif !important;}
.case-text { margin: 0; font-size: 15px; }

/* ---------- 6. Bands ---------- */
.band {background: var(--navy);padding: 15px 0;}
.band-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.band-col { padding: 4px 40px; border-left: 1px solid rgba(255, 255, 255, .16); }
.band-col:first-child { border-left: 0; padding-left: 0; }
.band-col .eyebrow { margin-bottom: 10px; }
.band-title {color: var(--white) !important;font-size: 19px;margin-bottom: 8px;}
.band-text {margin: 0 !important;font-size: 14px;color: rgba(255, 255, 255, .72);}
.band .link-arrow { color: var(--teal-light); }
.band .link-arrow:hover { color: var(--white); }

/* ---------- 7. Services + callout ---------- */
.services-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	background: var(--white);
	border: 1px solid var(--line);
}
.service {
	padding: 34px 34px 28px;
	border-right: 1px solid var(--line);
	border-bottom: 1px solid var(--line);
	display: flex;
	flex-direction: column;
}
.service:nth-child(3n) { border-right: 0; }
.service:nth-last-child(-n+3) { border-bottom: 0; }

.service .icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 44px; height: 44px;
	margin-bottom: 26px;
	border-radius: 50%;
	background: var(--cream);
	border: 1px solid var(--line);
	position: relative;
	overflow: hidden;
}
.service .icon img { width: 22px; height: 22px; object-fit: contain; }
.service .icon:empty::after {
	content: "";
	position: absolute;
	left: 50%; top: 50%;
	width: 12px; height: 14px;
	transform: translate(-50%, -50%);
	border: 1.5px solid var(--teal);
	border-radius: 6px 6px 4px 4px / 8px 8px 6px 6px;
}

.service-title { font-size: 22px; margin-bottom: 12px; }
.service-text { font-size: 15px; margin-bottom: 26px; }
.service .link-arrow {
	margin-top: auto;
	padding-top: 18px;
	border-top: 1px solid var(--line-soft);
	justify-content: space-between;
}

.callout {
	margin-top: 34px;
	padding: 30px 34px;
	background: var(--white);
	border: 1px solid var(--line);
	display: grid;
	grid-template-columns: 1.6fr auto;
	gap: 34px;
	align-items: center;
}
.callout .eyebrow { margin-bottom: 12px; }
.callout-text { margin: 0; max-width: 56ch; }

/* ---------- 8. Reviews ---------- */
.reviews-track {
	display: grid;
	grid-auto-flow: column;
	grid-auto-columns: calc((100% - 68px) / 3);
	gap: 34px;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	padding-bottom: 8px;
	scrollbar-width: none;
}
.reviews-track::-webkit-scrollbar { display: none; }

.review {
	scroll-snap-align: start;
	padding: 26px 28px 22px;
	background: var(--white);
	border: 1px solid var(--line-soft);
	box-shadow: 0 10px 26px rgba(23, 48, 73, .05);
	display: flex;
	flex-direction: column;
}
.review-head { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 18px; }
.avatar {
	width: 40px; height: 40px;
	flex: none;
	border-radius: 50%;
	background: #8d7a72;
	color: var(--white);
	font: 700 16px/40px var(--sans);
	text-align: center;
	text-transform: uppercase;
}
.avatar-img { object-fit: cover; }
.review-name { margin: 2px 0 4px; font-weight: 700; font-size: 14px; color: var(--ink); }
.review-stars { margin: 0; color: #f5a623; font-size: 12px; letter-spacing: 1px; }
.quote-mark { margin-left: auto; font: 400 46px/.6 var(--serif); color: rgba(79, 184, 200, .35); }
.review-date { margin: 0 0 14px; font-size: 13px; color: var(--muted); }
.review-text {
	margin: 0 0 14px;
	font: italic 400 17px/1.55 var(--italic);
	color: var(--ink);
	border: 0;
	padding: 0;
	background: none;
}
.link-more {
	font: 700 11px/1 var(--sans);
	letter-spacing: .16em;
	text-transform: uppercase;
	color: var(--teal-dark);
}
.review-source {
	margin: 20px 0 0;
	padding-top: 16px;
	border-top: 1px solid var(--line-soft);
	font: 700 10px/1 var(--sans);
	letter-spacing: .14em;
	text-transform: uppercase;
	color: var(--muted);
}

.dots { display: flex; justify-content: center; gap: 9px; margin: 26px 0 34px; }
.dot {
	width: 8px; height: 8px;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: #d4d0c8;
	cursor: pointer;
}
.dot.is-active { background: var(--navy); }

/* ---------- 9. Doctors + FAQ ---------- */
.doctor { display: none; grid-template-columns: 360px 1fr; gap: 60px; }
.doctor.is-active { display: grid; }
.doctor-photo { aspect-ratio: 3 / 4; }
.doctor-body { padding-top: 6px; }
.doctor-name { font-size: 36px; margin-bottom: 14px; }
.doctor-degrees { font-size: 26px; }
.doctor-creds {
	margin-bottom: 26px;
	font: 700 11px/1.6 var(--sans);
	letter-spacing: .16em;
	text-transform: uppercase;
	color: var(--muted);
}
.doctor-text { font-size: 15px; max-width: 62ch; }
.doctor-text p { margin-bottom: 20px; }
.doctor-body .btn-row { margin-top: 30px; }

.doctor-nav {
	display: flex;
	align-items: center;
	gap: 28px;
	margin-top: 54px;
	padding-top: 22px;
	border-top: 1px solid var(--line);
}
.counter { margin: 0; font: 700 11px/1 var(--sans); letter-spacing: .2em; text-transform: uppercase; color: var(--muted); }
.rule { flex: 1; height: 1px; background: var(--line); }
.arrows { display: flex; gap: 10px; }
.arrow-btn {
	width: 38px; height: 34px;
	background: var(--white);
	border: 1px solid var(--line);
	color: var(--ink);
	font-size: 16px;
	line-height: 1;
	cursor: pointer;
}
.arrow-btn:hover { border-color: var(--teal); color: var(--teal-dark); }

.center-title {margin: 0 auto 60px !important;text-align: center;font-size: 40px;width: 100%;text-align: center;}
.center-eyebrow { text-align: center; margin: 0 0 20px; }
.center-eyebrow::after { display: none; }

.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.qa {
	display: grid;
	grid-template-columns: 42px 1fr;
	gap: 20px;
	padding: 26px 28px;
	border: 1px solid var(--line);
}
.qa-mark {
	width: 34px; height: 34px;
	border: 1px solid var(--teal);
	color: var(--teal-dark);
	font: 400 15px/34px var(--serif);
	text-align: center;
}
.qa-title { font-size: 19px; line-height: 1.35; margin-bottom: 10px; }
.qa-text { margin: 0; font-size: 15px; }

/* ---------- 10. Visit + footer ---------- */
.visit { background: var(--white); }
.visit .wrap {display: flex;justify-content: flex-end;padding-right: 0;max-width: 100%;padding: 0px;}
.visit-panel {
	width: 100%;
	max-width: 760px;
	padding: 66px 70px;
	background: var(--navy);
}
.visit-title {font-size: 46px;color: var(--white) !important;margin-bottom: 18px;}
.visit-title em { font-family: var(--italic); color: var(--teal-light); }
.visit-text { max-width: 46ch; color: rgba(255, 255, 255, .78); font-size: 15px; margin-bottom: 34px; }

.visit-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 30px 40px;
	padding-top: 32px;
	margin-bottom: 40px;
	border-top: 1px solid rgba(255, 255, 255, .18);
}
.visit-col .eyebrow { margin-bottom: 10px; }
.visit-col .eyebrow::after { display: none; }
.visit-value { margin: 0; color: var(--white); font-size: 15px; line-height: 1.6; }
.visit-value a { color: var(--white); }
.visit-value a:hover { color: var(--teal-light); }
.phone { font: italic 400 24px/1.2 var(--italic); color: var(--teal-light) !important; }
.phone:hover { color: var(--white) !important; }

#site-footer.footer { background: #000; padding: 26px 0 30px; }
#site-footer.footer .footer-links {
	display: flex;
	flex-wrap: wrap;
	gap: 6px 0;
	margin: 0 0 12px;
	padding: 0;
	list-style: none;
}
#site-footer.footer .footer-links li { position: relative; padding: 0 10px; }
#site-footer.footer .footer-links li:first-child { padding-left: 0; }
#site-footer.footer .footer-links li + li::before {
	content: "|";
	position: absolute;
	left: -2px;
	color: rgba(255, 255, 255, .45);
}
#site-footer.footer .footer-links a { color: rgba(255, 255, 255, .9); font-size: 14px; }
#site-footer.footer .footer-links a:hover { color: var(--teal-light); }
#site-footer.footer .footer-legal,
#site-footer.footer .footer-disclaimer {
	margin: 0 0 8px;
	max-width: 92ch;
	font-size: 13px;
	line-height: 1.6;
	color: rgba(255, 255, 255, .7);
}
#site-footer.footer a { color: rgba(255, 255, 255, .9); }

/* ---------- Responsive ---------- */
@media (max-width: 1120px) {
	.dm-header .menu { gap: 18px; }
	.dm-header .menu > li > a { font-size: 14px; }
	.dm-header .rating { display: none; }
	.hero-title { font-size: 72px; }
}

@media (max-width: 900px) {
	.section { padding: 64px 0; }
	.title { font-size: 34px; }
	.section-head { grid-template-columns: 1fr; gap: 22px; align-items: start; }

	.burger { display: flex; }
	.dm-header .header-btn { display: none; }
	.dm-header .navigation {
		position: fixed;
		top: var(--header-h);
		left: 0; right: 0;
		max-height: calc(100vh - var(--header-h));
		overflow-y: auto;
		background: var(--navy);
		padding: 10px 0 24px;
		display: none;
	}
	.dm-header.nav-open .navigation { display: block; }
	.dm-header.nav-open { background: var(--navy); }
	.dm-header .menu { flex-direction: column; align-items: stretch; gap: 0; }
	.dm-header .menu > li { border-bottom: 1px solid rgba(255, 255, 255, .12); }
	.dm-header .menu > li > a { padding: 16px 28px; justify-content: space-between; font-size: 16px; }

	.dm-header .menu .sub-menu {
		position: static;
		min-width: 0;
		columns: 1;
		padding: 0 0 10px;
		background: transparent;
		border-top: 0;
		box-shadow: none;
		display: none;
		opacity: 1;
		visibility: visible;
		transform: none;
	}
	.dm-header .menu > li.is-open > .sub-menu { display: block; }
	.dm-header .menu > li:hover > .sub-menu { display: none; }
	.dm-header .menu > li.is-open:hover > .sub-menu { display: block; }
	.dm-header .menu .sub-menu a { padding: 11px 40px; color: rgba(255, 255, 255, .82); }
	.dm-header .menu .sub-menu a:hover { background: rgba(255, 255, 255, .06); color: var(--white); }

	.hero { min-height: 0; padding-top: calc(var(--header-h) + 54px); }
	.hero-title { font-size: 54px; }
	.stats { grid-template-columns: 1fr; gap: 16px; }
	.stats li { border-left: 0; padding-left: 0; }

	.quicklinks { gap: 22px; flex-wrap: wrap; }

	.grid-3, .services-grid, .faq-grid, .visit-grid { grid-template-columns: 1fr; }
	.service { border-right: 0; }
	.service:nth-last-child(-n+3) { border-bottom: 1px solid var(--line); }
	.service:last-child { border-bottom: 0; }

	.band-grid { grid-template-columns: 1fr; gap: 26px; }
	.band-col { padding: 0; border-left: 0; }

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

	.reviews-track { grid-auto-columns: 88%; }

	.doctor.is-active { grid-template-columns: 1fr; gap: 30px; }
	.doctor-photo { max-width: 320px; }
	.doctor-name { font-size: 30px; }

	.center-title { font-size: 30px; max-width: none; margin-bottom: 40px; }

	.visit .wrap { padding: 0; }
	.visit-panel { padding: 48px 28px; max-width: none; }
	.visit-title { font-size: 34px; }
}

.iframe-map {
    width: 100%;
}

.iframe-map iframe {
    display: block;
    height: 100%;
}

header#site-header {}

section.hero > video {
    position: absolute;
    top: 0px;
    left: 0px;
    height: 100% !important;
    width: 100%;
    z-index: 10;
    display: block;
    object-fit: cover;
    opacity: 0.6;
}


ul#menu-main-menu li a {
    padding: 12px 0px;
}

.bottom-footer p {
    margin-bottom: 10px;
    font-size: 13px;
    margin-right: 10px;
}

.bottom-footer {
    display: flex;
}

html blockquote:after {
    opacity: 0;
}

.iframe-map {
    width: 100%;
}

.iframe-map iframe {
    display: block;
    height: 100%;
}

section.hero > * {
    z-index: 11;
}