/* ---------- Tokens ---------- */
:root {
	--teal-900: #123b42;
	--teal-700: #1f7a8c;
	--teal-600: #279aae;
	--teal-100: #e4f2f2;
	--teal-50: #f2f8f7;
	--coral: #ef8354;
	--coral-100: #fdece2;
	--ink: #1e2a2f;
	--ink-soft: #4a5a5f;
	--paper: #fbfaf7;
	--line: #e2e8e6;
	--radius-lg: 22px;
	--radius-md: 14px;
	--shadow: 0 12px 32px -16px rgba(18, 59, 66, 0.25);
	--font-heading: "Quicksand", system-ui, sans-serif;
	--font-body: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
	--wrap: 1120px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; }

body {
	margin: 0;
	background: var(--paper);
	color: var(--ink);
	font-family: var(--font-body);
	font-size: 17px;
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}

h1, h2, h3 {
	font-family: var(--font-heading);
	color: var(--teal-900);
	line-height: 1.15;
	margin: 0 0 0.6em;
}

h1 { font-size: clamp(2rem, 1.5rem + 2vw, 2.9rem); font-weight: 700; }
h2 { font-size: clamp(1.5rem, 1.3rem + 1vw, 2rem); font-weight: 700; }
h3 { font-size: 1.15rem; font-weight: 600; }

p { margin: 0 0 1em; }

a { color: var(--teal-700); }

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

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

.skip-link {
	position: absolute;
	left: -999px;
	top: 0;
	background: var(--teal-700);
	color: #fff;
	padding: 10px 16px;
	border-radius: 0 0 8px 0;
	z-index: 1000;
}
.skip-link:focus { left: 0; }

/* ---------- Header ---------- */
.site-header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: rgba(251, 250, 247, 0.9);
	backdrop-filter: blur(8px);
	border-bottom: 1px solid var(--line);
}

.site-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding-top: 12px;
	padding-bottom: 12px;
}

.brand {
	display: flex;
	align-items: center;
	gap: 10px;
	text-decoration: none;
	color: var(--ink);
	min-width: 0;
	flex-shrink: 1;
}
.brand__logo { width: 40px; height: 40px; flex: none; }
.brand__name {
	font-family: var(--font-heading);
	font-size: 0.95rem;
	line-height: 1.3;
	color: var(--ink-soft);
	min-width: 0;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}
.brand__name strong { color: var(--teal-900); font-weight: 700; }

.site-nav {
	display: flex;
	gap: 28px;
	font-weight: 600;
}
.site-nav a {
	text-decoration: none;
	color: var(--ink);
	font-size: 0.95rem;
}
.site-nav a:hover { color: var(--teal-700); }

/* ---------- Hero ---------- */
.hero { padding: 56px 0 40px; }
.hero__inner {
	display: grid;
	grid-template-columns: 1.1fr 1fr;
	gap: 48px;
	align-items: center;
}
.hero__text, .hero__media { min-width: 0; }

.eyebrow {
	display: inline-block;
	color: var(--teal-700);
	background: var(--teal-100);
	font-weight: 700;
	font-size: 0.82rem;
	letter-spacing: 0.02em;
	padding: 6px 14px;
	border-radius: 999px;
	margin-bottom: 18px;
}

.hero__lead {
	color: var(--ink-soft);
	font-size: 1.05rem;
	max-width: 46ch;
	margin-bottom: 30px;
}

.quickfacts {
	display: grid;
	grid-template-columns: 1fr;
	gap: 12px;
	margin: 0;
	max-width: 420px;
}
.quickfacts__item {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius-md);
	padding: 14px 16px;
}
.quickfacts dt {
	font-family: var(--font-heading);
	font-weight: 700;
	font-size: 0.78rem;
	color: var(--teal-700);
	text-transform: uppercase;
	letter-spacing: 0.04em;
	margin-bottom: 6px;
}
.quickfacts dd {
	margin: 0;
	font-size: 0.9rem;
	color: var(--ink-soft);
}
.quickfacts dd a { color: var(--ink); text-decoration: none; }
.quickfacts dd a:hover { color: var(--teal-700); }
.quickfacts__group { display: block; }
.quickfacts__group + .quickfacts__group { margin-top: 10px; }
.quickfacts__group strong { color: var(--teal-900); font-weight: 700; }

.hero__media { position: relative; }
.hero__blob {
	position: absolute;
	inset: -8% -12%;
	background: var(--teal-100);
	border-radius: 40% 60% 55% 45% / 50% 45% 55% 50%;
	z-index: 0;
}
.hero__photo {
	position: relative;
	z-index: 1;
	width: 100%;
	height: auto;
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow);
	border: 6px solid #fff;
}

/* ---------- Wave divider ---------- */
.wave-divider {
	color: var(--teal-600);
	opacity: 0.5;
	height: 24px;
	margin: 8px 0;
}
.wave-divider svg { width: 100%; height: 100%; }

/* ---------- About ---------- */
.about { padding: 20px 0 60px; }
.about__inner {
	display: grid;
	grid-template-columns: 1.4fr 1fr;
	gap: 40px;
	align-items: start;
}
.about__text, .about__staff { min-width: 0; }
.about__text p { color: var(--ink-soft); }
.about__text p:first-of-type {
	color: var(--ink);
	font-weight: 600;
	font-size: 1.1rem;
}

.insurance-list {
	display: flex;
	gap: 10px;
	list-style: none;
	padding: 0;
	margin: 8px 0 0;
	flex-wrap: wrap;
}
.insurance-list li {
	background: var(--teal-700);
	color: #fff;
	font-weight: 700;
	font-size: 0.9rem;
	padding: 6px 16px;
	border-radius: 999px;
}

.about__staff {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius-lg);
	padding: 26px 28px;
}
.staff-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; }
.staff-list li { font-size: 0.95rem; color: var(--ink); }
.staff-list__role {
	display: block;
	font-family: var(--font-heading);
	font-size: 0.78rem;
	font-weight: 700;
	color: var(--teal-700);
	text-transform: uppercase;
	letter-spacing: 0.04em;
	margin-bottom: 2px;
}

/* ---------- Exam / EEG ---------- */
.exam { background: var(--teal-900); color: #fff; padding: 60px 0; }
.exam__inner {
	display: grid;
	grid-template-columns: 0.8fr 1.2fr;
	gap: 48px;
	align-items: center;
}
.exam__media, .exam__text { min-width: 0; }
.exam__media img {
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow);
	border: 6px solid rgba(255,255,255,0.08);
	max-height: 420px;
	width: 100%;
	object-fit: cover;
}
.exam h2 { color: #fff; }

.info-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 18px; }
.info-list li {
	display: flex;
	align-items: flex-start;
	gap: 14px;
	background: rgba(255,255,255,0.06);
	border: 1px solid rgba(255,255,255,0.12);
	border-radius: var(--radius-md);
	padding: 14px 16px;
}
.info-list svg { width: 22px; height: 22px; flex: none; color: var(--coral); margin-top: 2px; }
.info-list span { font-size: 0.96rem; color: #eef4f3; }
.info-list strong { color: #fff; }

.info-list__warning {
	background: rgba(239, 131, 84, 0.16);
	border-color: rgba(239, 131, 84, 0.4);
}
.info-list__warning svg { color: #ffb08a; }

.pdf-card {
	display: flex;
	align-items: center;
	gap: 14px;
	background: var(--coral);
	color: #fff;
	text-decoration: none;
	border-radius: var(--radius-md);
	padding: 16px 18px;
	margin-top: 22px;
	transition: background .15s ease;
}
.pdf-card:hover { background: #e06d34; }
.pdf-card svg { width: 26px; height: 26px; flex: none; }
.pdf-card span { display: flex; flex-direction: column; gap: 3px; font-size: 0.92rem; }
.pdf-card strong { font-size: 0.98rem; }
.pdf-card__credit {
	margin: 8px 0 0;
	font-size: 0.76rem;
	color: rgba(238, 244, 243, 0.6);
}

/* ---------- Contact ---------- */
.contact { padding: 64px 0 80px; }
.contact__inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
	align-items: stretch;
}
.contact__card, .contact__map { min-width: 0; }
.contact__card {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius-lg);
	padding: 32px;
}
.contact-details { list-style: none; margin: 0 0 18px; padding: 0; display: grid; gap: 18px; }
.contact-details li { display: flex; gap: 14px; align-items: flex-start; }
.contact-details svg { width: 22px; height: 22px; flex: none; color: var(--teal-700); margin-top: 3px; }
.contact-details__label {
	display: block;
	font-family: var(--font-heading);
	font-weight: 700;
	font-size: 0.78rem;
	color: var(--teal-700);
	text-transform: uppercase;
	letter-spacing: 0.04em;
	margin-bottom: 2px;
}
.contact-details__note {
	display: block;
	font-size: 0.82rem;
	color: var(--ink-soft);
	margin-bottom: 4px;
}
.contact-details a { text-decoration: none; color: var(--ink); font-weight: 600; }
.contact-details a:hover { color: var(--teal-700); }
.contact-footnote { color: var(--ink-soft); margin: 0; font-size: 0.9rem; }

.contact__map {
	border-radius: var(--radius-lg);
	overflow: hidden;
	border: 1px solid var(--line);
	box-shadow: var(--shadow);
	min-height: 320px;
}
.contact__map iframe { width: 100%; height: 100%; min-height: 320px; }

/* ---------- Footer ---------- */
.site-footer {
	background: var(--teal-50);
	border-top: 1px solid var(--line);
	padding: 28px 0;
}
.site-footer__inner {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	gap: 12px;
	font-size: 0.85rem;
	color: var(--ink-soft);
}
.brand--footer { font-weight: 700; color: var(--teal-900); }
.brand--footer .brand__logo { width: 28px; height: 28px; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
	.site-nav { display: none; }
	.hero__inner, .about__inner, .exam__inner, .contact__inner {
		grid-template-columns: 1fr;
	}
	.hero__media { order: -1; }
	.hero__blob { display: none; }
	.exam__media img { max-height: none; height: auto; object-fit: fill; }
	.quickfacts { max-width: none; }
}

@media (max-width: 520px) {
	.hero { padding: 36px 0 24px; }
	.brand__pretitle, .brand__br { display: none; }
	.brand__name { font-size: 0.95rem; }
}
