/* =============================================
   DESIGN SYSTEM — Clean Clinical Bright
   ============================================= */

:root {
	/* Colors */
	--teal: #0F5257;
	--teal-light: #17737A;
	--teal-pale: #E8F4F5;
	--coral: #E85D3A;
	--coral-light: #F0755A;
	--coral-pale: #FFF0EC;
	--white: #FFFFFF;
	--snow: #FAFBFC;
	--cloud: #F3F5F7;
	--graphite: #1F2937;
	--slate: #4B5563;
	--mist: #9CA3AF;
	--border: #E5E7EB;
	--border-light: #F0F1F3;
	--emergency-red: #DC2626;

	/* Shadows */
	--shadow-xs: 0 1px 2px rgba(0,0,0,0.04);
	--shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
	--shadow-md: 0 4px 6px rgba(0,0,0,0.04), 0 10px 20px rgba(0,0,0,0.03);
	--shadow-lg: 0 10px 25px rgba(0,0,0,0.06), 0 20px 48px rgba(0,0,0,0.04);

	/* Radii */
	--radius-sm: 8px;
	--radius-md: 14px;
	--radius-lg: 20px;
	--radius-xl: 28px;

	/* Transitions */
	--transition-fast: 0.15s ease;
	--transition-base: 0.25s ease;
	--transition-slow: 0.4s ease;
}

/* =============================================
   RESET
   ============================================= */

html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
	display: block;
}

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

html {
	color-scheme: light;
	scroll-behavior: smooth;
}

/* =============================================
   BASE STYLES
   ============================================= */

body {
	-webkit-text-size-adjust: none;
	color: var(--slate);
	font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
	font-size: clamp(0.9375rem, 0.85rem + 0.3vw, 1.0625rem);
	font-weight: 400;
	line-height: 1.7;
	background: var(--snow);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

@media screen and (max-width: 480px) {
	html, body {
		min-width: 320px;
	}
}

/* Skip to content */
.skip-to-content {
	position: absolute;
	left: -9999px;
	top: auto;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

.skip-to-content:focus,
.skip-to-content:focus-visible {
	position: fixed;
	top: 12px;
	left: 12px;
	width: auto;
	height: auto;
	padding: 1em 1.5em;
	background: var(--white);
	color: var(--teal);
	z-index: 99999;
	border-radius: var(--radius-sm);
	font-size: 1em;
	font-weight: 600;
	box-shadow: var(--shadow-lg);
}

/* Focus styles */
:focus-visible {
	outline: 2px solid var(--teal-light);
	outline-offset: 3px;
	border-radius: 4px;
}

:focus:not(:focus-visible) {
	outline: none;
}

/* =============================================
   TYPOGRAPHY
   ============================================= */

h1, h2, h3, h4 {
	font-family: 'Lora', Georgia, 'Times New Roman', serif;
	font-weight: 600;
	line-height: 1.25;
	margin: 0 0 0.6em 0;
	letter-spacing: -0.02em;
	text-wrap: balance;
	color: var(--graphite);
}

h1 {
	font-size: clamp(2em, 1.4em + 1.8vw, 2.75em);
	line-height: 1.15;
	font-weight: 700;
}

h2 {
	font-size: clamp(1.4em, 1.1em + 0.8vw, 1.75em);
}

h3 {
	font-size: 1.25em;
}

h4 {
	font-size: 1.1em;
}

p {
	margin: 0 0 1.25em 0;
}

strong, b {
	font-weight: 700;
	color: var(--graphite);
}

em, i {
	font-style: italic;
}

/* =============================================
   LINKS
   ============================================= */

a {
	color: var(--teal);
	text-decoration: none;
	background-image: linear-gradient(var(--teal-light), var(--teal-light));
	background-size: 0% 1px;
	background-position: 0% 100%;
	background-repeat: no-repeat;
	transition: background-size var(--transition-base), color var(--transition-fast);
}

a:hover {
	color: var(--teal-light);
	background-size: 100% 1px;
}

/* =============================================
   BUTTONS
   ============================================= */

.button {
	-webkit-appearance: none;
	appearance: none;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5em;
	padding: 0.75em 1.75em;
	font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
	font-weight: 600;
	font-size: 0.9375rem;
	line-height: 1.4;
	text-align: center;
	text-decoration: none;
	white-space: nowrap;
	cursor: pointer;
	border: 2px solid transparent;
	border-radius: var(--radius-sm);
	transition: all var(--transition-base);
	background-image: none;
}

.button--primary,
#main .button {
	background: var(--teal);
	color: var(--white) !important;
	border-color: var(--teal);
	box-shadow: var(--shadow-sm);
}

.button--primary:hover,
#main .button:hover {
	background: var(--teal-light);
	border-color: var(--teal-light);
	color: var(--white) !important;
	transform: translateY(-1px);
	box-shadow: var(--shadow-md);
	background-image: none;
}

.button--primary:active,
#main .button:active {
	transform: translateY(0);
	box-shadow: var(--shadow-xs);
}

/* Ghost button (header/footer context) */
.button {
	background: transparent;
	color: var(--white) !important;
	border: 2px solid rgba(255,255,255,0.4);
}

.button:hover {
	background: rgba(255,255,255,0.1);
	border-color: rgba(255,255,255,0.7);
	background-image: none;
}

.button:active {
	background: rgba(255,255,255,0.15);
}

/* =============================================
   IMAGES
   ============================================= */

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

.image {
	border-radius: var(--radius-md);
	border: 0;
	display: inline-block;
	position: relative;
}

.image img {
	border-radius: var(--radius-md);
	display: block;
}

/* =============================================
   LISTS
   ============================================= */

ul {
	list-style: none;
	margin: 0 0 1.5em 0;
	padding: 0;
}

#main ul:not(.actions):not(.features):not(.clinic-cards):not(.price-list) {
	padding-left: 0;
}

#main ul:not(.actions):not(.features):not(.clinic-cards):not(.price-list) li {
	position: relative;
	padding-left: 1.5em;
	margin-bottom: 0.6em;
}

#main ul:not(.actions):not(.features):not(.clinic-cards):not(.price-list) li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0.65em;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--teal);
	opacity: 0.5;
}

ul.actions {
	list-style: none;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 0.75em;
}

ul.actions li {
	padding: 0;
}

ul.actions li::before {
	display: none !important;
}

@media screen and (max-width: 480px) {
	ul.actions {
		flex-direction: column;
	}

	ul.actions li > * {
		width: 100%;
	}
}

dl {
	margin: 0 0 1.5em 0;
}

dl dt {
	display: block;
	margin: 0 0 0.5em 0;
	color: var(--graphite);
	font-weight: 700;
	font-size: 0.85em;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

dl dd {
	margin-left: 0;
	margin-bottom: 1.25em;
}

dl.alt dt {
	display: block;
	width: 5em;
	float: left;
	clear: left;
}

dl.alt dd {
	margin: 0 0 0.85em 5.5em;
}

dl.alt::after {
	content: '';
	display: block;
	clear: both;
}

/* =============================================
   TABLES
   ============================================= */

table {
	border-collapse: collapse;
	margin: 0 auto;
	vertical-align: middle;
	width: 100%;
	font-size: 0.875rem;
	border-radius: var(--radius-md);
	overflow: hidden;
}

table th {
	padding: 1em 1.25em;
	background: var(--teal);
	color: var(--white);
	font-weight: 700;
	text-align: left;
	font-size: 0.8125rem;
	text-transform: uppercase;
	letter-spacing: 0.04em;
}

table td {
	padding: 1em 1.25em;
	border-bottom: 1px solid var(--border);
}

table tr:nth-child(even) td {
	background: var(--cloud);
}

table tr:hover td {
	background: var(--teal-pale);
}

/* =============================================
   SECTIONS
   ============================================= */

section.special, article.special {
	text-align: center;
}

section.special ul.actions,
article.special ul.actions {
	justify-content: center;
}

section.special header.major p,
article.special header.major p {
	margin-left: auto;
	margin-right: auto;
}

header.major {
	margin-bottom: 2.5em;
}

header.major h2 {
	font-size: clamp(1.5em, 1.1em + 1.2vw, 2em);
	margin-bottom: 0.4em;
	position: relative;
}

header.major h2::after {
	display: block;
	content: '';
	width: 48px;
	height: 3px;
	margin: 0.6em 0 0 0;
	border-radius: 2px;
	background: var(--coral);
}

section.special header.major h2::after,
article.special header.major h2::after {
	margin-left: auto;
	margin-right: auto;
}

header.major p {
	font-size: 1.125em;
	color: var(--slate);
	max-width: 40em;
}

header p {
	margin: 0;
}

footer.major {
	margin-top: 2.5em;
}

@media screen and (max-width: 736px) {
	header.major {
		margin-bottom: 1.5em;
	}

	footer.major {
		margin-top: 1.5em;
	}
}

hr {
	margin: 2em 0;
	border: none;
	border-top: 1px solid var(--border);
}

/* =============================================
   WRAPPER
   ============================================= */

#wrapper {
	width: 68em;
	max-width: calc(100% - 3em);
	margin: 0 auto;
}

@media screen and (max-width: 480px) {
	#wrapper {
		max-width: calc(100% - 1.5em);
	}
}

@media screen and (max-width: 360px) {
	#wrapper {
		max-width: 100%;
	}
}

/* =============================================
   HEADER
   ============================================= */

#header {
	padding: 4em 4em 1.5em 4em;
	text-align: center;
	background: var(--white);
	border-bottom: 1px solid var(--border);
	border-radius: var(--radius-lg) var(--radius-lg) 0 0;
	position: relative;
	overflow: hidden;
}

/* Decorative background shapes */
#header::before {
	content: '';
	position: absolute;
	top: -60%;
	right: -20%;
	width: 500px;
	height: 500px;
	border-radius: 50%;
	background: radial-gradient(circle, var(--teal-pale) 0%, transparent 70%);
	opacity: 0.6;
	pointer-events: none;
}

#header::after {
	content: '';
	position: absolute;
	bottom: -40%;
	left: -15%;
	width: 400px;
	height: 400px;
	border-radius: 50%;
	background: radial-gradient(circle, var(--coral-pale) 0%, transparent 70%);
	opacity: 0.4;
	pointer-events: none;
}

#header h1 {
	margin: 0 0 0.2em 0;
	color: var(--teal);
	position: relative;
	z-index: 1;
}

#header p {
	font-size: 1.15em;
	color: var(--slate);
	position: relative;
	z-index: 1;
}

#header.alt {
	padding: 5em 4em 3em 4em;
}

#header.alt h1 {
	font-size: clamp(2.5em, 1.5em + 2.5vw, 3.5em);
}

#header.alt p {
	font-size: 1.25em;
	max-width: 32em;
	margin: 0 auto;
}

@media screen and (max-width: 980px) {
	#header {
		padding: 3em 3em 1.25em 3em;
	}

	#header.alt {
		padding: 4em 3em 2em 3em;
	}
}

@media screen and (max-width: 736px) {
	#header {
		padding: 2.5em 1.5em 1em 1.5em;
	}

	#header p {
		font-size: 1em;
	}

	#header.alt {
		padding: 3em 1.5em 1.5em 1.5em;
	}
}

@media screen and (max-width: 480px) {
	#header {
		padding: 2em 1em 0.75em 1em;
		border-radius: var(--radius-md) var(--radius-md) 0 0;
	}

	#header.alt {
		padding: 2.5em 1em 1em 1em;
	}
}

@media screen and (max-width: 360px) {
	#header {
		border-radius: 0;
	}
}

/* =============================================
   NAVIGATION
   ============================================= */

#nav {
	position: sticky;
	top: 0;
	z-index: 1000;
	background: rgba(255,255,255,0.92);
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
	padding: 0.75em 1.5em;
	display: flex;
	align-items: center;
	justify-content: center;
	border-bottom: 1px solid var(--border-light);
	transition: box-shadow var(--transition-base), background var(--transition-base);
}

#nav.is-scrolled {
	box-shadow: var(--shadow-md);
	background: rgba(255,255,255,0.97);
}

#nav .nav-brand {
	font-family: 'Lora', Georgia, serif;
	font-weight: 700;
	font-size: 1.1em;
	color: var(--teal);
	text-decoration: none;
	margin-right: auto;
	white-space: nowrap;
	background-image: none;
}

#nav .nav-brand:hover {
	color: var(--teal-light);
	background-image: none;
}

#nav ul {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	align-items: center;
	gap: 0.25em;
}

#nav ul li {
	padding: 0;
}

#nav ul li::before {
	display: none !important;
}

#nav ul li a {
	display: inline-flex;
	align-items: center;
	padding: 0.5em 1em;
	font-size: 0.9em;
	font-weight: 500;
	color: var(--slate);
	border-radius: var(--radius-sm);
	transition: all var(--transition-fast);
	background-image: none;
}

#nav ul li a:hover {
	color: var(--teal);
	background: var(--teal-pale);
	background-image: none;
}

#nav ul li a.active {
	color: var(--white);
	background: var(--teal);
	font-weight: 600;
}

/* Nav Toggle (hamburger) */
.nav-toggle {
	display: none;
	background: none;
	border: none;
	cursor: pointer;
	padding: 0.5em;
	position: relative;
	z-index: 10;
	width: 44px;
	height: 44px;
	align-items: center;
	justify-content: center;
	border-radius: var(--radius-sm);
	transition: background var(--transition-fast);
}

.nav-toggle:hover {
	background: var(--cloud);
}

.nav-toggle-icon,
.nav-toggle-icon::before,
.nav-toggle-icon::after {
	display: block;
	width: 22px;
	height: 2px;
	background: var(--graphite);
	border-radius: 2px;
	transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-toggle-icon {
	position: relative;
}

.nav-toggle-icon::before,
.nav-toggle-icon::after {
	content: '';
	position: absolute;
	left: 0;
}

.nav-toggle-icon::before {
	top: -7px;
}

.nav-toggle-icon::after {
	top: 7px;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-icon {
	background: transparent;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-icon::before {
	top: 0;
	transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-icon::after {
	top: 0;
	transform: rotate(-45deg);
}

@media screen and (max-width: 768px) {
	#nav {
		justify-content: space-between;
		padding: 0.6em 1.25em;
	}

	.nav-toggle {
		display: flex;
	}

	#nav ul {
		display: none;
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		background: var(--white);
		flex-direction: column;
		padding: 0.5em 1em 1em;
		border-bottom: 1px solid var(--border);
		box-shadow: var(--shadow-md);
		gap: 0.125em;
	}

	#nav ul.is-open {
		display: flex;
	}

	#nav ul li a {
		display: block;
		padding: 0.75em 1em;
		text-align: left;
		font-size: 0.95em;
	}

	#nav ul li a.active {
		border-radius: var(--radius-sm);
	}
}

/* =============================================
   MAIN
   ============================================= */

#main {
	background: var(--white);
	color: var(--slate);
	box-shadow: var(--shadow-sm);
}

#main a {
	color: var(--teal);
}

#main a:hover {
	color: var(--teal-light);
}

#main h1, #main h2, #main h3, #main h4 {
	color: var(--graphite);
}

#main > .main {
	padding: 3em 4em;
	border-top: 1px solid var(--border-light);
}

#main > .main:first-child {
	border-top: 0;
}

@media screen and (max-width: 1280px) {
	#main > .main {
		padding: 3em;
	}
}

@media screen and (max-width: 980px) {
	#main > .main {
		padding: 2.5em 2em;
	}
}

@media screen and (max-width: 736px) {
	#main > .main {
		padding: 2em 1.5em;
	}
}

@media screen and (max-width: 480px) {
	#main > .main {
		padding: 1.75em 1.25em;
	}
}

@media screen and (max-width: 360px) {
	#main {
		border-radius: 0;
	}
}

/* =============================================
   FEATURES / CITY GRID
   ============================================= */

.features {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5em;
	margin: 0 0 2.5em 0;
	padding: 0;
	list-style: none;
}

.features li {
	padding: 2em;
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: var(--radius-md);
	text-align: center;
	transition: all var(--transition-base);
}

.features li:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow-md);
	border-color: var(--teal-pale);
}

.features li::before {
	display: none !important;
}

.features li img {
	margin: 0 auto 1.25em;
}

.city-link {
	background-image: none !important;
}

.city-link h3 {
	color: var(--teal);
	transition: color var(--transition-fast);
	margin-bottom: 0.3em;
}

.city-link:hover h3 {
	color: var(--teal-light);
}

.features li p {
	color: var(--mist);
	font-size: 0.9em;
	margin: 0;
}

@media screen and (max-width: 980px) {
	.features {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media screen and (max-width: 640px) {
	.features {
		grid-template-columns: 1fr;
		gap: 1em;
	}

	.features li {
		padding: 1.5em;
	}
}

/* =============================================
   SPOTLIGHT
   ============================================= */

.spotlight {
	display: flex;
	align-items: center;
	gap: 3em;
	margin: 0 0 2em 0;
}

.spotlight .content {
	flex: 1;
}

.spotlight .content header.major {
	margin: 0 0 1.5em 0;
}

.spotlight .image {
	flex-shrink: 0;
	padding: 4px;
	border-radius: 50%;
	border: 2px solid var(--border);
	background-image: none;
}

.spotlight .image img {
	display: block;
	border-radius: 50%;
	width: 14em;
}

@media screen and (max-width: 980px) {
	.spotlight {
		flex-direction: column-reverse;
		text-align: center;
		gap: 2em;
	}

	.spotlight .content {
		flex: 0 1 auto;
		width: 100%;
	}

	.spotlight .content header.major h2::after {
		margin-left: auto;
		margin-right: auto;
	}

	.spotlight .image {
		margin-bottom: 0;
	}
}

@media screen and (max-width: 736px) {
	.spotlight .image {
		padding: 3px;
	}

	.spotlight .image img {
		width: 11em;
	}
}

/* =============================================
   QUICK INFO BAR
   ============================================= */

.quick-info {
	display: grid;
	grid-template-columns: 1fr auto 1fr auto 1fr;
	align-items: center;
	padding: 1.25em 2.5em;
	background: var(--cloud);
	border-bottom: 1px solid var(--border);
}

.quick-info__item {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	padding: 0.5em 1em;
	gap: 0.2em;
}

.quick-info__divider {
	width: 1px;
	height: 2.5em;
	background: var(--border);
}

.quick-info__label {
	font-size: 0.7em;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--mist);
}

.quick-info__value {
	font-family: 'Lora', Georgia, serif;
	font-size: 1.15em;
	font-weight: 600;
	color: var(--teal);
}

a.quick-info__value {
	color: var(--coral);
	background-image: none;
}

a.quick-info__value:hover {
	color: var(--coral-light);
}

.quick-info__detail {
	font-size: 0.8em;
	color: var(--mist);
}

@media screen and (max-width: 736px) {
	.quick-info {
		grid-template-columns: 1fr;
		gap: 0;
		padding: 1em 1.5em;
	}

	.quick-info__divider {
		width: 100%;
		height: 1px;
	}

	.quick-info__item {
		padding: 0.75em 0;
	}
}

/* =============================================
   INFO CARD
   ============================================= */

.info-card {
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: var(--radius-md);
	padding: 2em;
	margin: 0 0 1.25em 0;
	display: flex;
	gap: 1.5em;
	align-items: flex-start;
	transition: box-shadow var(--transition-base);
}

.info-card:hover {
	box-shadow: var(--shadow-sm);
}

.info-card--primary {
	border-left: 4px solid var(--teal);
	background: linear-gradient(135deg, var(--white) 0%, var(--teal-pale) 100%);
}

.info-card__icon {
	flex-shrink: 0;
	width: 48px;
	height: 48px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--teal-pale);
	border-radius: var(--radius-sm);
	color: var(--teal);
}

.info-card__title {
	font-size: 1.3em;
	margin: 0 0 0.3em 0;
}

.info-card__subtitle {
	font-weight: 600;
	font-size: 0.9em;
	color: var(--teal);
	margin: 0 0 0.25em 0;
	text-transform: uppercase;
	letter-spacing: 0.03em;
}

.info-card__hours {
	font-family: 'Lora', Georgia, serif;
	font-size: 2em;
	font-weight: 700;
	color: var(--teal);
	margin: 0.2em 0 0.4em 0;
	letter-spacing: 0.02em;
}

.info-card__text {
	margin: 0.5em 0;
	color: var(--slate);
	line-height: 1.7;
}

.info-card__text strong {
	color: var(--graphite);
}

.info-card__content ul {
	margin-bottom: 0.5em;
}

@media screen and (max-width: 736px) {
	.info-card {
		flex-direction: column;
		gap: 1em;
		padding: 1.5em;
	}
}

/* =============================================
   PHONE CTA
   ============================================= */

.phone-cta {
	display: flex;
	align-items: center;
	gap: 1em;
	padding: 1.25em 2em;
	margin: 0 0 1.25em 0;
	background: linear-gradient(135deg, var(--coral) 0%, var(--coral-light) 100%);
	color: var(--white) !important;
	border-radius: var(--radius-md);
	text-decoration: none;
	transition: all var(--transition-base);
	box-shadow: 0 4px 14px rgba(232,93,58,0.25);
	background-size: 100% 100% !important;
}

.phone-cta:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 24px rgba(232,93,58,0.3);
	color: var(--white) !important;
}

.phone-cta:active {
	transform: translateY(0);
}

.phone-cta__icon {
	flex-shrink: 0;
	animation: phonePulse 2s ease-in-out infinite;
}

@keyframes phonePulse {
	0%, 100% { transform: scale(1); }
	50% { transform: scale(1.1); }
}

.phone-cta__text {
	display: flex;
	flex-direction: column;
}

.phone-cta__label {
	font-size: 0.8em;
	font-weight: 500;
	opacity: 0.9;
}

.phone-cta__number {
	font-family: 'Lora', Georgia, serif;
	font-size: 1.5em;
	font-weight: 700;
	letter-spacing: 0.02em;
}

@media screen and (max-width: 480px) {
	.phone-cta {
		padding: 1em 1.25em;
	}

	.phone-cta__number {
		font-size: 1.25em;
	}
}

/* =============================================
   EMERGENCY CALLOUT
   ============================================= */

.emergency-callout {
	display: flex;
	gap: 1.25em;
	align-items: flex-start;
	padding: 1.5em 2em;
	margin: 0 0 1.25em 0;
	background: var(--coral-pale);
	border: 1px solid rgba(232,93,58,0.2);
	border-left: 4px solid var(--coral);
	border-radius: var(--radius-md);
}

.emergency-callout__icon {
	flex-shrink: 0;
	color: var(--coral);
	margin-top: 0.15em;
}

.emergency-callout__title {
	font-size: 1.2em;
	margin: 0 0 0.4em 0;
}

.emergency-callout__content p {
	margin: 0.4em 0;
	color: var(--slate);
}

.emergency-callout__phone {
	font-family: 'Lora', Georgia, serif;
	font-size: 1.3em;
	color: var(--emergency-red) !important;
	font-weight: 700;
	background-image: none !important;
}

.emergency-callout__phone:hover {
	background-image: none !important;
}

@media screen and (max-width: 480px) {
	.emergency-callout {
		flex-direction: column;
		gap: 0.75em;
		padding: 1.25em;
	}
}

/* =============================================
   MAP CARD
   ============================================= */

.map-card {
	display: grid;
	grid-template-columns: 1fr 1.5fr;
	gap: 0;
	margin: 0 0 1.25em 0;
	border: 1px solid var(--border);
	border-radius: var(--radius-md);
	overflow: hidden;
	background: var(--white);
	box-shadow: var(--shadow-sm);
}

.map-card__info {
	padding: 2em;
	display: flex;
	flex-direction: column;
	gap: 0.75em;
}

.map-card__title {
	font-size: 1.3em;
	margin: 0 0 0.3em 0;
}

.map-card__address {
	font-style: normal;
	line-height: 1.7;
	color: var(--slate);
}

.map-card__address strong {
	display: block;
	margin-bottom: 0.25em;
	color: var(--graphite);
}

.map-card__phone {
	font-family: 'Lora', Georgia, serif;
	font-size: 1.2em;
	font-weight: 600;
	color: var(--coral) !important;
	background-image: none !important;
}

.map-card__phone:hover {
	color: var(--coral-light) !important;
}

.map-card__embed {
	min-height: 300px;
}

.map-card__embed .embed-container {
	height: 100%;
}

.map-card__embed .embed-container iframe {
	height: 100%;
	aspect-ratio: auto;
}

@media screen and (max-width: 736px) {
	.map-card {
		grid-template-columns: 1fr;
	}

	.map-card__info {
		padding: 1.5em;
	}

	.map-card__embed {
		min-height: 250px;
	}
}

/* =============================================
   SOCIAL CTA
   ============================================= */

.social-cta {
	text-align: center;
	padding: 2.5em 2em;
	margin: 0 0 1.25em 0;
	background: var(--cloud);
	border-radius: var(--radius-md);
}

.social-cta p {
	margin: 0 0 1.25em 0;
	color: var(--slate);
}

/* =============================================
   FAQ ITEM
   ============================================= */

.faq-item {
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: var(--radius-md);
	padding: 2em;
	margin: 0 0 1em 0;
	transition: box-shadow var(--transition-base);
}

.faq-item:hover {
	box-shadow: var(--shadow-sm);
}

.faq-item__question {
	font-size: 1.2em;
	margin: 0 0 0.5em 0;
	color: var(--teal);
}

.faq-item__answer p {
	margin: 0.4em 0;
	color: var(--slate);
	line-height: 1.7;
}

.faq-item__answer p:last-child {
	margin-bottom: 0;
}

/* FAQ Accordion (details/summary) */
details.faq-item {
	cursor: pointer;
}

details.faq-item summary {
	list-style: none;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1em;
	font-family: 'Lora', Georgia, serif;
	font-size: 1.15em;
	font-weight: 600;
	color: var(--teal);
	cursor: pointer;
	padding: 0;
}

details.faq-item summary::-webkit-details-marker {
	display: none;
}

details.faq-item summary::after {
	content: '';
	flex-shrink: 0;
	width: 20px;
	height: 20px;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%230F5257' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	transition: transform var(--transition-base);
}

details.faq-item[open] summary::after {
	transform: rotate(180deg);
}

details.faq-item .faq-item__answer {
	padding-top: 1em;
	animation: faqReveal 0.3s ease-out;
}

@keyframes faqReveal {
	from {
		opacity: 0;
		transform: translateY(-8px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* =============================================
   CLINIC CARDS
   ============================================= */

.clinic-cards {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1.25em;
	margin: 0 0 2em 0;
	list-style: none;
	padding: 0;
}

.clinic-card {
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: var(--radius-md);
	padding: 2em;
	display: flex;
	flex-direction: column;
	gap: 0.75em;
	transition: all var(--transition-base);
}

.clinic-card:hover {
	transform: translateY(-3px);
	box-shadow: var(--shadow-md);
	border-color: var(--teal-pale);
}

.clinic-card__icon {
	width: 56px;
	height: auto;
}

.clinic-card__title {
	font-size: 1.1em;
	margin: 0;
	color: var(--teal);
}

.clinic-card__address {
	color: var(--mist);
	font-size: 0.9em;
	margin: 0;
}

.clinic-card__phone {
	font-family: 'Lora', Georgia, serif;
	font-weight: 600;
	color: var(--coral) !important;
	background-image: none !important;
}

@media screen and (max-width: 736px) {
	.clinic-cards {
		grid-template-columns: 1fr;
	}

	.clinic-card {
		padding: 1.5em;
	}
}

/* =============================================
   PRICE LIST
   ============================================= */

.price-list {
	list-style: none;
	padding: 0;
	margin: 0 0 2em 0;
	border: 1px solid var(--border);
	border-radius: var(--radius-md);
	overflow: hidden;
	box-shadow: var(--shadow-sm);
}

.price-list__item {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0.9em 1.5em;
	border-bottom: 1px solid var(--border-light);
	gap: 1em;
	transition: background var(--transition-fast);
}

.price-list__item:last-child {
	border-bottom: none;
}

.price-list__item:nth-child(even) {
	background: var(--cloud);
}

.price-list__item:hover {
	background: var(--teal-pale);
}

.price-list__service {
	color: var(--slate);
	flex: 1;
}

.price-list__price {
	font-family: 'Lora', Georgia, serif;
	font-weight: 600;
	color: var(--teal);
	white-space: nowrap;
}

.price-list__header {
	background: var(--teal);
	color: var(--white);
	font-weight: 700;
	padding: 0.85em 1.5em;
	border-bottom: 1px solid var(--border);
	font-size: 0.8em;
	text-transform: uppercase;
	letter-spacing: 0.06em;
}

@media screen and (max-width: 480px) {
	.price-list__item {
		flex-direction: column;
		align-items: flex-start;
		gap: 0.25em;
		padding: 0.75em 1em;
	}
}

/* =============================================
   AD BANNER
   ============================================= */

.ad-banner {
	position: relative;
	margin: 0 0 1.5em 0;
	padding: 2em 2.5em;
	background: var(--white);
	border: 1px solid var(--border-light);
	border-radius: var(--radius-md);
	box-shadow: var(--shadow-sm);
}

.ad-banner__label {
	position: absolute;
	top: 0.75em;
	right: 1.25em;
	font-size: 0.6em;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--mist);
	background: var(--white);
	padding: 0.2em 0.7em;
	border-radius: 4px;
	border: 1px solid var(--border-light);
	line-height: 1.6;
}

.ad-banner__content {
	display: grid;
	grid-template-columns: 1fr 1.3fr;
	gap: 2em;
	align-items: center;
}

.ad-banner__title {
	font-family: 'Lora', Georgia, serif;
	font-size: 1.5em;
	color: var(--graphite);
	margin: 0 0 0.75em 0;
	line-height: 1.25;
}

.ad-banner__cta {
	display: inline-block;
	padding: 0.75em 2em;
	background: var(--coral);
	color: var(--white) !important;
	font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
	font-weight: 600;
	font-size: 1em;
	border-radius: var(--radius-sm);
	text-decoration: none;
	transition: all var(--transition-base);
	box-shadow: 0 4px 14px rgba(232,93,58,0.3);
}

.ad-banner__cta:hover {
	background: var(--coral-light);
	color: var(--white) !important;
	transform: translateY(-1px);
	box-shadow: 0 6px 20px rgba(232,93,58,0.35);
}

.ad-banner__video {
	border-radius: var(--radius-sm);
	overflow: hidden;
	box-shadow: var(--shadow-sm);
}

@media screen and (max-width: 736px) {
	.ad-banner {
		padding: 2em 1.5em 1.5em;
	}

	.ad-banner__content {
		grid-template-columns: 1fr;
		gap: 1.25em;
	}

	.ad-banner__text {
		order: 2;
		text-align: center;
	}

	.ad-banner__video {
		order: 1;
	}

	.ad-banner__title {
		font-size: 1.3em;
	}
}

@media screen and (max-width: 480px) {
	.ad-banner {
		padding: 1.75em 1em 1.25em;
	}

	.ad-banner__label {
		right: 0.75em;
		top: 0.5em;
	}
}

/* =============================================
   CONTENT PAGE (legal, long-form)
   ============================================= */

.content-page {
	max-width: 48em;
}

.content-page h2 {
	margin-top: 2em;
}

.content-page h3 {
	margin-top: 1.5em;
	color: var(--teal);
}

.content-page p {
	color: var(--slate);
	line-height: 1.8;
}

.content-page ul {
	color: var(--slate);
}

/* =============================================
   IMAGE CARD
   ============================================= */

.image-card {
	border-radius: var(--radius-md);
	overflow: hidden;
	border: 1px solid var(--border);
	margin: 1.5em 0;
	box-shadow: var(--shadow-xs);
}

.image-card img {
	display: block;
	width: 100%;
	height: auto;
}

/* =============================================
   EMBED CONTAINER
   ============================================= */

.embed-container {
	max-width: 100%;
}

.embed-container iframe,
.embed-container object,
.embed-container embed {
	aspect-ratio: 16 / 9;
	width: 100%;
	height: auto;
	display: block;
}

/* =============================================
   FOOTER
   ============================================= */

#footer {
	display: grid;
	grid-template-columns: 1.2fr 1fr;
	gap: 2em;
	padding: 4em 4em 2em;
	background: var(--teal);
	color: var(--white);
	border-radius: 0 0 var(--radius-lg) var(--radius-lg);
	position: relative;
}

/* Subtle top gradient line */
#footer::before {
	content: '';
	position: absolute;
	top: 0;
	left: 2em;
	right: 2em;
	height: 3px;
	background: linear-gradient(90deg, var(--coral), var(--teal-light), var(--coral));
	border-radius: 2px;
	opacity: 0.7;
}

#footer h2 {
	color: var(--white);
	font-size: 1.25em;
	margin-bottom: 0.75em;
}

#footer p {
	color: rgba(255,255,255,0.75);
	font-size: 0.95em;
}

#footer a {
	color: rgba(255,255,255,0.8);
	background-image: linear-gradient(rgba(255,255,255,0.4), rgba(255,255,255,0.4));
	background-size: 0% 1px;
	background-position: 0% 100%;
	background-repeat: no-repeat;
	transition: all var(--transition-base);
}

#footer a:hover {
	color: var(--white);
	background-size: 100% 1px;
}

#footer dt {
	color: rgba(255,255,255,0.5);
	font-size: 0.75em;
}

#footer .disclaimer {
	grid-column: 1 / -1;
	margin: 1em 0 0;
	padding: 1.25em 1.5em;
	font-size: 0.8em;
	text-align: center;
	border: 1px solid rgba(255,255,255,0.15);
	border-radius: var(--radius-sm);
	background: rgba(255,255,255,0.05);
	color: rgba(255,255,255,0.65);
}

#footer .copyright {
	grid-column: 1 / -1;
	margin: 1.5em 0 1em;
	font-size: 0.8em;
	text-align: center;
	color: rgba(255,255,255,0.5);
}

@media screen and (max-width: 980px) {
	#footer {
		grid-template-columns: 1fr;
		padding: 3em 2em 1.5em;
	}
}

@media screen and (max-width: 736px) {
	#footer {
		padding: 2.5em 1.5em 1em;
	}
}

@media screen and (max-width: 480px) {
	#footer {
		padding: 2em 1.25em 0.75em;
		border-radius: 0 0 var(--radius-md) var(--radius-md);
	}
}

@media screen and (max-width: 360px) {
	#footer {
		border-radius: 0;
	}
}

/* =============================================
   COOKIE BANNER OVERRIDES
   ============================================= */

#piskotki {
	width: 400px !important;
}

#piskotki a {
	background-image: none !important;
}

/* =============================================
   AD SLOT (legacy)
   ============================================= */

.ad {
	width: 50%;
	text-align: center;
	margin: 0 auto;
	padding: 20px 0;
	display: block;
}

@media screen and (max-width: 1000px) {
	.ad {
		width: 75%;
	}
}

@media screen and (max-width: 800px) {
	.ad {
		width: 95%;
	}
}

.ad a {
	display: block;
	border: none;
	background-image: none;
}

/* =============================================
   SCROLL REVEAL ANIMATIONS
   ============================================= */

@keyframes fadeUp {
	from {
		opacity: 0;
		transform: translateY(24px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

[data-reveal] {
	opacity: 0;
	transform: translateY(24px);
	transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

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

/* Stagger children */
[data-reveal-stagger] > * {
	opacity: 0;
	transform: translateY(16px);
	transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

[data-reveal-stagger].is-visible > *:nth-child(1) { transition-delay: 0.05s; opacity: 1; transform: translateY(0); }
[data-reveal-stagger].is-visible > *:nth-child(2) { transition-delay: 0.1s; opacity: 1; transform: translateY(0); }
[data-reveal-stagger].is-visible > *:nth-child(3) { transition-delay: 0.15s; opacity: 1; transform: translateY(0); }
[data-reveal-stagger].is-visible > *:nth-child(4) { transition-delay: 0.2s; opacity: 1; transform: translateY(0); }
[data-reveal-stagger].is-visible > *:nth-child(5) { transition-delay: 0.25s; opacity: 1; transform: translateY(0); }
[data-reveal-stagger].is-visible > *:nth-child(6) { transition-delay: 0.3s; opacity: 1; transform: translateY(0); }
[data-reveal-stagger].is-visible > *:nth-child(7) { transition-delay: 0.35s; opacity: 1; transform: translateY(0); }
[data-reveal-stagger].is-visible > *:nth-child(8) { transition-delay: 0.4s; opacity: 1; transform: translateY(0); }
[data-reveal-stagger].is-visible > *:nth-child(9) { transition-delay: 0.45s; opacity: 1; transform: translateY(0); }

/* =============================================
   REDUCED MOTION
   ============================================= */

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

	*, *:before, *:after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
	}

	[data-reveal] {
		opacity: 1;
		transform: none;
	}

	[data-reveal-stagger] > * {
		opacity: 1;
		transform: none;
	}
}

/* =============================================
   PRINT
   ============================================= */

@media print {
	body {
		background: none;
		color: #000;
		font-size: 12pt;
	}

	#nav, .ad-slot, .ad-banner, .skip-to-content, .button, #piskotki, .nav-toggle, .quick-info, .phone-cta, .social-cta, .nav-brand {
		display: none;
	}

	#wrapper {
		max-width: 100%;
		width: 100%;
	}

	#header {
		background: none;
		border: none;
	}

	#header::before,
	#header::after {
		display: none;
	}

	#main {
		box-shadow: none;
	}

	#main, #main h1, #main h2, #main h3, #main h4,
	h1, h2, h3, h4, #header h1, #header p {
		color: #000;
	}

	a {
		color: #000;
		text-decoration: underline;
		background-image: none;
	}

	#footer {
		background: none;
		color: #000;
	}

	#footer h2, #footer p, #footer a {
		color: #000;
	}

	#footer::before {
		display: none;
	}

	img {
		max-width: 100%;
	}

	.embed-container {
		display: none;
	}

	.info-card, .emergency-callout, .map-card, .faq-item, .clinic-card {
		border: 1px solid #ccc;
		box-shadow: none;
	}

	[data-reveal] {
		opacity: 1;
		transform: none;
	}
}
