:root {
	--navy: #17243e;
	--deep: #101a2e;
	--navy-2: #213251;
	--blue: #1d6298;
	--blue-dark: #174f7b;
	--accent-soft: rgba(29, 98, 152, 0.14);
	--gold: #b89655;
	--paper: #f7f8f6;
	--mist: #eef5fa;
	--ink: #172033;
	--muted: #647084;
	--border: #dce2e1;
	--white: #ffffff;
	--display: "Manrope", Arial, sans-serif;
	--body: "Manrope", Arial, sans-serif;
}

* {
	box-sizing: border-box;
}

body.kwok-site {
	margin: 0;
	background: var(--paper);
	color: var(--ink);
	font-family: var(--body);
	font-size: 16px;
	line-height: 1.35;
}

body.kwok-site h1,
body.kwok-site h2,
body.kwok-site h3,
body.kwok-site p {
	letter-spacing: 0;
}

body.kwok-site h1,
body.kwok-site h2,
body.kwok-site h3 {
	line-height: 1;
}

body.kwok-site p,
body.kwok-site li {
	line-height: 1.35;
}

body.kwok-site a {
	color: var(--blue-dark);
	text-decoration: none;
}

body.kwok-site a:hover {
	text-decoration: underline;
}

.site-container {
	width: min(1160px, calc(100% - 48px));
	margin: 0 auto;
}

.topbar {
	background: var(--navy);
	color: rgba(255, 255, 255, 0.84);
	font-size: 13px;
}

.topbar-inner {
	display: flex;
	justify-content: flex-end;
	gap: 24px;
	padding: 9px 0;
	text-align: right;
}

.topbar a {
	color: var(--white) !important;
	font-weight: 600;
}

.topbar-contact {
	display: grid;
	gap: 3px;
	justify-items: end;
}

.topbar-contact-row {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	gap: 18px;
}

.topbar-form-link {
	text-decoration: underline;
	text-underline-offset: 3px;
}

.main-nav {
	position: sticky;
	top: 0;
	z-index: 20;
	background: rgba(255, 255, 255, 0.96);
	border-bottom: 1px solid var(--border);
	backdrop-filter: blur(16px);
}

body.home .site-header {
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	z-index: 30;
}

body.home.admin-bar .site-header {
	top: 32px;
}

body.home .topbar,
body.home .main-nav {
	background: transparent;
	border-bottom: 0;
	backdrop-filter: none;
}

body.home .topbar {
	color: var(--white);
}

body.home .brand-name,
body.home.kwok-site .primary-menu a {
	color: var(--white) !important;
	text-shadow: 0 1px 12px rgba(0, 0, 0, 0.45);
}

body.home .brand-name,
body.home .brand-tagline {
	color: var(--white) !important;
	text-shadow: 0 2px 18px rgba(0, 0, 0, 0.65);
}

body.home.kwok-site .primary-menu li:last-child a {
	border: 1px solid rgba(255, 255, 255, 0.9);
	background: rgba(255, 255, 255, 0.12);
	color: var(--white) !important;
}

.nav-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 28px;
	min-height: 78px;
}

.brand {
	color: var(--navy);
	text-decoration: none;
}

.brand:hover,
.brand:focus,
.footer-brand:hover,
.footer-brand:focus {
	text-decoration: none;
}

.brand-name {
	display: block;
	font-family: var(--display);
	font-size: 26px;
	font-weight: 600;
	line-height: 1;
}

.brand-tagline {
	display: block;
	margin-top: 4px;
	color: var(--blue-dark);
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 1.7px;
	text-transform: uppercase;
}

body.kwok-site .primary-menu,
body.kwok-site .footer-menu {
	display: flex;
	align-items: center;
	gap: 22px;
	margin: 0;
	padding: 0;
	list-style: none;
}

body.kwok-site .primary-menu li,
body.kwok-site .footer-menu li {
	margin: 0;
	list-style: none;
}

body.kwok-site .primary-menu a {
	color: var(--navy) !important;
	font-size: 16px;
	font-weight: 500;
	text-decoration: none;
}

body.kwok-site .primary-menu a:hover,
body.kwok-site .primary-menu a:focus {
	color: var(--blue-dark) !important;
	text-decoration: none;
}

body.kwok-site .primary-menu li:last-child a {
	display: inline-flex;
	align-items: center;
	min-height: 42px;
	padding: 0 18px;
	border-radius: 4px;
	background: var(--blue);
	color: var(--white) !important;
}

.nav-toggle {
	display: none;
	border: 1px solid var(--border);
	border-radius: 4px;
	background: var(--white);
	color: var(--navy);
	font: inherit;
	font-weight: 700;
	padding: 9px 12px;
}

.site-main {
	background: var(--paper);
}

.page-hero {
	padding: 62px 0 52px;
	background:
		radial-gradient(circle at 84% 10%, var(--accent-soft), transparent 28%),
		linear-gradient(135deg, var(--deep), var(--navy));
	color: var(--white);
}

.page-hero h1 {
	max-width: 880px;
	margin: 14px 0 0;
	color: var(--white);
	font-family: var(--display);
	font-size: clamp(30px, 3.4vw, 46px);
	line-height: 1.05;
}

.page-subheader {
	max-width: 820px;
	margin: 18px 0 0;
	color: rgba(255, 255, 255, 0.84);
	font-size: 18px;
	line-height: 1.55;
}

.breadcrumbs-wrap {
	color: rgba(255, 255, 255, 0.74);
	font-size: 14px;
	font-weight: 700;
}

.yoast-breadcrumbs,
.yoast-breadcrumbs a {
	color: rgba(255, 255, 255, 0.78);
}

.yoast-breadcrumbs a:hover {
	color: var(--white);
}

.content-layout {
	display: grid;
	gap: 48px;
	align-items: start;
}

.content-layout.has-sidebar {
	grid-template-columns: minmax(0, 1fr) minmax(300px, 360px);
}

.entry-content-wrap {
	min-width: 0;
}

.content-featured-image {
	margin: 0 0 34px;
	overflow: hidden;
	border-radius: 8px;
	background: var(--mist);
	box-shadow: 0 18px 50px rgba(23, 36, 62, 0.11);
}

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

.content-featured-image--thumbnail,
.content-featured-image--medium,
.content-featured-image--full {
	display: inline-block;
	max-width: 100%;
}

.content-featured-image--thumbnail img,
.content-featured-image--medium img,
.content-featured-image--full img {
	width: auto;
	max-width: 100%;
}

.gutenberg-content > :first-child {
	margin-top: 0;
}

.gutenberg-content h2,
.gutenberg-content h3 {
	color: var(--navy);
	font-family: var(--display);
	line-height: 1.05;
}

.gutenberg-content h2 {
	margin: 38px 0 16px;
	font-size: clamp(26px, 2.4vw, 34px);
}

.gutenberg-content h3 {
	margin: 28px 0 12px;
	font-size: 22px;
}

.gutenberg-content p,
.gutenberg-content li {
	color: var(--ink);
	font-size: 17px;
	line-height: 1.68;
}

.content-sidebar {
	display: grid;
	gap: 22px;
	border-left: 3px solid rgba(29, 98, 152, 0.35);
	padding-left: 28px;
}

.sidebar-card {
	background: var(--white);
	padding: 30px;
	box-shadow: 0 14px 42px rgba(23, 36, 62, 0.07);
}

.sidebar-card h2 {
	margin: 0 0 22px;
	color: var(--navy);
	font-family: var(--display);
	font-size: 32px;
	line-height: 1.1;
}

.sidebar-card h2::after {
	display: block;
	width: 58px;
	height: 3px;
	margin-top: 14px;
	background: var(--blue);
	content: "";
}

.sidebar-link-list {
	display: grid;
	gap: 0;
	margin: 0;
	padding: 0;
	list-style: none;
}

.sidebar-link-list li {
	margin: 0;
	border-bottom: 1px solid var(--border);
	list-style: none;
}

.sidebar-link-list a {
	display: block;
	padding: 14px 0 14px 24px;
	position: relative;
	color: var(--ink);
	font-weight: 700;
}

.sidebar-link-list a::before {
	position: absolute;
	left: 2px;
	color: var(--blue);
	content: "-";
}

.sidebar-card--appointment p {
	color: var(--muted);
}

.hero-section,
.wp-block-group.hero-section {
	position: relative;
	overflow: hidden;
	padding: 78px 0 84px;
	background:
		radial-gradient(circle at 78% 18%, rgba(29, 98, 152, 0.2), transparent 30%),
		linear-gradient(90deg, rgba(16, 26, 46, 0.98) 0%, rgba(16, 26, 46, 0.94) 52%, rgba(23, 36, 62, 0.98) 100%);
	color: var(--white);
}

.hero-section--home {
	display: flex;
	min-height: 720px;
	align-items: flex-end;
	background-position: center;
	background-size: cover;
}

.hero-section--image-only {
	padding: 0 0 64px;
}

.hero-section::after {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(16, 26, 46, 0.05), rgba(16, 26, 46, 0.42));
	content: "";
	pointer-events: none;
}

.hero-grid {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: minmax(0, 650px) minmax(320px, 420px);
	align-items: end;
	gap: 72px;
}

.hero-grid--home {
	grid-template-columns: minmax(0, 760px);
	align-items: end;
	padding-top: 140px;
}

.hero-grid--bio {
	align-items: center;
}

.hero-copy {
	max-width: 720px;
}

.hero-editor-content > :first-child {
	margin-top: 0;
}

.hero-editor-content > :last-child {
	margin-bottom: 0;
}

.hero-section--compact {
	padding: 64px 0;
}

.hero-section h1,
.hero-section h2,
.wp-block-group.hero-section h1,
.wp-block-group.hero-section h2 {
	max-width: 780px;
	margin: 0 0 22px;
	color: var(--white);
	font-family: var(--display);
	font-size: clamp(30px, 4vw, 48px);
	line-height: 1.05;
	font-weight: 500;
}

.hero-section p,
.wp-block-group.hero-section p {
	max-width: 660px;
	color: rgba(255, 255, 255, 0.86);
	font-size: 18px;
}

.hero-section--home .eyebrow {
	color: var(--white);
}

.hero-section--home .hero-editor-content p {
	text-shadow: 0 1px 16px rgba(0, 0, 0, 0.36);
}

body.home .hero-image-card {
	display: none;
}

.hero-image-title-wrap {
	position: relative;
	z-index: 1;
	display: flex;
	justify-content: center;
}

.hero-image-title-wrap h1 {
	max-width: 980px;
	margin: 0;
	color: var(--white);
	font-family: var(--display);
	font-size: clamp(28px, 3.6vw, 46px);
	font-weight: 300;
	line-height: 1.05;
	text-align: center;
	text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.home-intro-section {
	padding: 96px 0 86px;
	background: #f4f6f8;
}

.home-intro-physician {
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
	gap: 72px;
	align-items: center;
}

.home-intro-section .eyebrow {
	color: var(--blue);
	margin-bottom: 22px;
}

.home-intro-copy {
	color: var(--ink);
	font-size: 21px;
	line-height: 1.75;
}

.home-intro-copy .hero-section,
.home-intro-copy .wp-block-group.hero-section {
	display: none;
}

.home-intro-copy .wp-block-group.content-band,
.home-intro-copy .content-band {
	padding: 0;
	background: transparent !important;
	box-shadow: none;
}

.home-intro-copy .wp-block-group.content-band > .site-container,
.home-intro-copy .content-band > .site-container {
	width: auto;
	max-width: none;
	margin: 0;
	padding: 0;
}

.home-intro-copy p {
	max-width: 960px;
	margin-top: 0;
}

.home-intro-copy .wp-block-buttons {
	margin-top: 34px;
}

.home-physician-card {
	display: grid;
	grid-template-columns: 1fr;
	gap: 24px;
	align-items: start;
	padding: 32px;
	background: var(--white);
	box-shadow: 0 18px 54px rgba(23, 36, 62, 0.08);
}

.home-physician-card .doctor-portrait {
	box-shadow: none;
}

.doctor-portrait-link {
	display: block;
	transition: opacity 0.2s ease, transform 0.2s ease;
}

.doctor-portrait-link:hover,
.doctor-portrait-link:focus-visible {
	opacity: 0.9;
	transform: translateY(-2px);
}

.home-physician-card h2 {
	margin: 0 0 14px;
	color: var(--navy);
	font-family: var(--display);
	font-size: clamp(26px, 2.6vw, 34px);
	font-weight: 400;
	line-height: 1.05;
}

.home-physician-card p:not(.eyebrow) {
	margin: 0;
	color: var(--ink);
	font-size: 17px;
	line-height: 1.6;
}

.home-care-section {
	background: var(--white) !important;
}

.hero-panel,
.hero-image-card,
.bio-hero-portrait {
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.08);
	box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
	backdrop-filter: blur(12px);
}

.hero-panel {
	padding: 28px;
}

.hero-image-card,
.bio-hero-portrait {
	overflow: hidden;
}

.hero-image-card img,
.bio-hero-portrait img,
.doctor-portrait img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hero-image-card {
	position: relative;
	min-height: 430px;
}

.hero-image-card::after {
	position: absolute;
	inset: auto 0 0;
	height: 50%;
	background: linear-gradient(180deg, rgba(16, 26, 46, 0), rgba(16, 26, 46, 0.86));
	content: "";
}

.hero-image-caption {
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 1;
	padding: 26px;
}

.hero-image-caption h2 {
	margin: 0;
	font-size: 25px;
	line-height: 1.18;
}

.bio-hero-portrait {
	aspect-ratio: 4 / 5;
	max-height: 520px;
}

.hero-panel h2 {
	margin-bottom: 16px;
	font-size: 27px;
	line-height: 1.18;
}

.hero-panel ul {
	margin: 0;
	padding-left: 20px;
	color: rgba(255, 255, 255, 0.82);
}

.panel-kicker {
	margin: 0 0 10px;
	color: var(--gold) !important;
	font-size: 12px !important;
	font-weight: 800;
	letter-spacing: 1.4px;
	text-transform: uppercase;
}

.eyebrow {
	margin: 0 0 12px;
	color: var(--gold);
	font-size: 13px;
	font-weight: 800;
	letter-spacing: 1.9px;
	text-transform: uppercase;
}

.btn,
.wp-block-button__link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	padding: 0 22px;
	border-radius: 4px;
	font-weight: 800;
	line-height: 1.2;
	text-decoration: none;
}

.wp-block-buttons {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	align-items: center;
	margin-top: 24px;
}

.wp-block-buttons .wp-block-button {
	margin: 0;
}

.btn-primary,
.wp-block-button__link {
	background: var(--blue);
	color: var(--white) !important;
}

.btn-secondary,
.is-style-outline .wp-block-button__link {
	border: 1px solid var(--blue);
	background: rgba(255, 255, 255, 0.92);
	color: var(--blue-dark) !important;
}

.entry-back-link {
	margin-top: 38px;
}

.hero-section .is-style-outline .wp-block-button__link {
	border-color: rgba(255, 255, 255, 0.4);
	background: rgba(255, 255, 255, 0.08);
	color: var(--white) !important;
}

.wp-block-group.content-band,
.content-section,
.rotation-section {
	padding: 82px 0;
}

.wp-block-group.content-band {
	background: var(--white);
}

.split-layout {
	display: grid;
	grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
	align-items: start;
	gap: 58px;
}

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

.doctor-feature {
	display: grid;
	grid-template-columns: minmax(260px, 340px) minmax(0, 1fr);
	align-items: center;
	gap: 54px;
}

.doctor-portrait {
	overflow: hidden;
	aspect-ratio: 4 / 5;
	border-radius: 8px;
	background: var(--mist);
	box-shadow: 0 18px 50px rgba(23, 36, 62, 0.13);
}

.wp-block-group.content-band.is-soft,
.rotation-section--soft {
	background: var(--mist);
}

.content-band h2,
.content-section h1,
.content-section h2,
.rotation-section h2 {
	margin: 0 0 18px;
	color: var(--navy);
	font-family: var(--display);
	font-size: clamp(27px, 2.7vw, 36px);
	line-height: 1.05;
	font-weight: 400;
}

.content-band h3,
.info-card h3,
.post-card h2 {
	margin: 0 0 12px;
	color: var(--navy);
	font-size: 20px;
	line-height: 1.05;
	font-weight: 400;
}

.wp-block-columns {
	gap: 42px;
}

.wp-block-list li,
.content-band li {
	margin-bottom: 8px;
}

.section-heading {
	max-width: 720px;
	margin-bottom: 32px;
}

.section-heading--center {
	max-width: 880px;
	margin-right: auto;
	margin-left: auto;
	text-align: center;
}

.card-grid {
	display: grid;
	gap: 22px;
}

.card-grid--three {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card-grid--two {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.info-card,
.testimonial-card,
.faq-item,
.contact-panel {
	border: 1px solid var(--border);
	border-radius: 8px;
	background: var(--white);
	box-shadow: 0 16px 40px rgba(23, 36, 62, 0.08);
}

.info-card {
	padding: 26px;
}

.rotation-section--open-posts {
	background: #f4f6f8;
}

.rotation-section--open-posts .card-grid {
	gap: 34px;
}

.post-card--open {
	background: transparent;
	box-shadow: none;
}

.post-card-image {
	display: block;
	overflow: hidden;
	aspect-ratio: 16 / 9;
	margin-bottom: 24px;
	background: var(--mist);
	text-decoration: none;
}

.post-card-image img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.22s ease;
}

.post-card-image:hover img {
	transform: scale(1.03);
}

.post-card-image--placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid var(--border);
	background:
		linear-gradient(135deg, rgba(29, 98, 152, 0.14), rgba(23, 36, 62, 0.08)),
		var(--mist);
	color: var(--blue-dark);
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.post-card--open h2,
.post-card--open h3 {
	margin: 0 0 12px;
	color: var(--blue);
	font-family: var(--display);
	font-size: 22px;
	font-weight: 400;
	line-height: 1.05;
	text-transform: uppercase;
}

.post-card--open h2 a,
.post-card--open h3 a {
	color: inherit;
}

.post-card--open p {
	margin: 0 0 22px;
	color: var(--ink);
	font-size: 17px;
	line-height: 1.58;
}

.info-card p:last-child {
	margin-bottom: 0;
}

.cta-band {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	align-items: end;
	gap: 42px;
}

.cta-band p {
	max-width: 760px;
}

.card-kicker {
	margin: 0 0 10px;
	color: var(--blue-dark);
	font-size: 13px;
	font-weight: 800;
	letter-spacing: 1px;
	text-transform: uppercase;
}

.testimonial-card {
	margin: 0;
	padding: 30px;
	color: var(--ink);
}

.testimonial-card p {
	margin-top: 0;
	font-size: 19px;
}

.testimonial-card cite {
	display: block;
	margin-top: 18px;
	color: var(--blue-dark);
	font-style: normal;
	font-weight: 800;
}

.faq-list {
	display: grid;
	gap: 14px;
}

.gutenberg-content .faq-list {
	margin-top: 24px;
}

.faq-item {
	padding: 0;
}

.faq-item summary {
	cursor: pointer;
	padding: 20px 24px;
	color: var(--navy);
	font-weight: 800;
}

.faq-item summary::marker {
	color: var(--blue-dark);
}

.faq-answer {
	padding: 0 24px 22px;
	color: var(--muted);
}

.section-actions {
	margin-top: 30px;
}

.contact-panel {
	padding: 30px;
}

.contact-page-grid {
	display: grid;
	grid-template-columns: minmax(300px, 420px) minmax(0, 1fr);
	gap: 56px;
	align-items: start;
}

.contact-info-panel,
.contact-form-panel {
	background: var(--white);
	box-shadow: 0 18px 54px rgba(23, 36, 62, 0.08);
}

.contact-info-panel {
	padding: 28px;
}

.contact-form-panel {
	padding: 38px;
}

.contact-form-panel h2,
.contact-detail-group h2 {
	margin: 0 0 18px;
	color: var(--blue-dark);
	font-family: var(--display);
	font-size: clamp(28px, 2.7vw, 38px);
	line-height: 1.2;
}

.contact-form-panel > p:not(.eyebrow) {
	margin-bottom: 26px;
	color: var(--muted);
	font-size: 18px;
}

.contact-doctor-photo {
	margin: 0 0 34px;
	overflow: hidden;
	border-radius: 8px;
	background: var(--mist);
}

.contact-doctor-photo img {
	display: block;
	width: 100%;
	aspect-ratio: 4 / 5;
	object-fit: cover;
	object-position: center top;
}

.contact-detail-group + .contact-detail-group {
	margin-top: 42px;
}

.contact-map-wrap {
	margin-top: 32px;
	overflow: hidden;
	border-radius: 8px;
	background: var(--mist);
}

.contact-map-wrap iframe {
	display: block;
	width: 100%;
}

.contact-detail-group p {
	margin: 0 0 18px;
	color: var(--ink);
	font-size: 18px;
	line-height: 1.55;
}

.contact-detail-group strong {
	color: var(--navy);
}

.contact-practice-name {
	color: #1d6298 !important;
	font-size: 22px !important;
	font-weight: 800;
}

.contact-directions-link {
	display: inline-flex;
	margin-top: 4px;
	font-size: 19px;
}

.contact-form-panel .fw-contact-wrap {
	display: block;
}

.contact-form-panel .fw-field--honeypot,
.fw-field--honeypot {
	position: absolute !important;
	left: -9999px !important;
	width: 1px !important;
	height: 1px !important;
	overflow: hidden !important;
	opacity: 0;
	pointer-events: none;
}

.contact-form-panel .fw-contact-form {
	box-shadow: none;
	border-radius: 8px;
	border-color: var(--border);
	padding: 0;
	background: transparent;
}

.contact-form-panel .fw-contact-fields {
	gap: 16px;
}

.contact-form-panel .fw-field label,
.contact-form-panel .fw-field legend {
	display: block;
	margin: 0 0 7px;
	color: var(--navy);
	font-size: 14px;
	font-weight: 800;
	line-height: 1.3;
}

.contact-form-panel .fw-required {
	color: var(--blue-dark);
}

.contact-form-panel .fw-field input,
.contact-form-panel .fw-field select,
.contact-form-panel .fw-field textarea {
	width: 100%;
	min-height: 50px;
	border: 1px solid var(--border);
	border-radius: 4px;
	padding: 12px 14px;
	background: var(--white);
	color: var(--ink);
	font: inherit;
	font-size: 16px;
	line-height: 1.4;
	box-shadow: none;
	transition: border-color 0.16s ease, box-shadow 0.16s ease;
}

.contact-form-panel .fw-field textarea {
	min-height: 150px;
	resize: vertical;
}

.contact-form-panel .fw-field input:focus,
.contact-form-panel .fw-field select:focus,
.contact-form-panel .fw-field textarea:focus {
	outline: none;
	border-color: var(--blue);
	box-shadow: 0 0 0 3px rgba(29, 98, 152, 0.15);
}

.contact-form-panel .fw-field--message,
.contact-form-panel .fw-field--interest {
	grid-column: 1 / -1;
}

.contact-form-panel .fw-contact-submit {
	border-radius: 4px;
	background: var(--blue);
	color: var(--white);
}

.social-icons {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	align-items: center;
	margin-top: 16px;
}

.social-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border: 1px solid rgba(29, 98, 152, 0.35);
	border-radius: 50%;
	background: rgba(29, 98, 152, 0.08);
	color: var(--blue-dark);
}

.social-icon svg {
	display: block;
	width: 20px;
	height: 20px;
	fill: currentColor;
}

.site-footer .social-icons {
	margin-top: 20px;
}

.site-footer .social-icon {
	border-color: rgba(255, 255, 255, 0.18);
	background: rgba(255, 255, 255, 0.08);
	color: var(--white);
}

.site-footer {
	background: var(--deep);
	color: var(--white);
}

.footer-grid {
	display: grid;
	grid-template-columns: 1.4fr 1fr 1fr;
	gap: 42px;
	padding: 58px 0;
}

.site-footer a {
	color: var(--white) !important;
	text-decoration: none;
}

.site-footer a:hover {
	color: var(--white);
}

.footer-brand {
	display: inline-block;
	margin-bottom: 10px;
	color: var(--white);
	font-family: var(--display);
	font-size: 26px;
	font-weight: 700;
}

.site-footer h2 {
	margin: 0 0 14px;
	color: var(--white);
	font-size: 17px;
}

body.kwok-site .footer-menu {
	display: grid;
	gap: 8px;
}

.footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.12);
	padding: 18px 0;
	font-size: 14px;
}

.site-footer p,
.site-footer li,
.footer-bottom {
	color: var(--white);
}

.text-link {
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	border-bottom: 2px solid currentColor;
}

body.kwok-site h1,
body.kwok-site h2,
body.kwok-site h3 {
	line-height: 1 !important;
}

body.kwok-site p,
body.kwok-site li,
.gutenberg-content p,
.gutenberg-content li,
.home-intro-copy,
.home-physician-card p:not(.eyebrow),
.hero-section p,
.wp-block-group.hero-section p,
.page-subheader,
.post-card--open p,
.contact-detail-group p,
.faq-answer {
	line-height: 1.28 !important;
}

@media (max-width: 900px) {
	.topbar-inner,
	.nav-inner {
		align-items: flex-start;
	}

	.nav-inner {
		flex-wrap: wrap;
		padding: 18px 0;
	}

	.nav-toggle {
		display: inline-flex;
	}

	body.kwok-site .primary-menu {
		display: none;
		width: 100%;
		align-items: stretch;
		gap: 0;
		flex-direction: column;
		border-top: 1px solid var(--border);
		padding-top: 12px;
	}

	body.kwok-site .primary-menu.is-open {
		display: flex;
	}

	body.kwok-site .primary-menu a,
	body.kwok-site .primary-menu li:last-child a {
		display: block;
		padding: 12px 0;
		background: transparent;
		color: var(--navy) !important;
	}

	.card-grid--three,
	.card-grid--two,
	.footer-grid,
	.hero-grid,
	.home-intro-physician,
	.home-physician-card,
	.split-layout,
	.cta-band,
	.doctor-feature,
	.contact-page-grid,
	.content-layout.has-sidebar {
		grid-template-columns: 1fr;
	}

	.hero-grid {
		gap: 34px;
	}

	.hero-section--home {
		min-height: 620px;
	}

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

	.content-sidebar {
		border-left: 0;
		border-top: 3px solid rgba(29, 98, 152, 0.35);
		padding-left: 0;
		padding-top: 28px;
	}
}

@media (max-width: 640px) {
	body.kwok-site {
		font-size: 16px;
	}

	.site-container {
		width: min(100% - 28px, 1120px);
	}

	.topbar-inner {
		display: grid;
		gap: 4px;
	}

	.brand-name {
		font-size: 20px;
	}

	.hero-section,
	.wp-block-group.hero-section {
		padding: 68px 0 58px;
	}

	.hero-section--home {
		min-height: 560px;
		padding: 0 0 42px;
	}

	.home-intro-section {
		padding: 58px 0 48px;
	}

	.home-intro-copy {
		font-size: 18px;
	}

	.home-physician-card {
		padding: 24px;
	}

	.hero-section h1,
	.hero-section h2,
	.wp-block-group.hero-section h1,
	.wp-block-group.hero-section h2 {
		font-size: 32px;
		line-height: 1.05;
	}

	.wp-block-group.content-band,
	.content-section,
	.rotation-section {
		padding: 54px 0;
	}

	.page-hero {
		padding: 52px 0 44px;
	}

	.page-hero h1 {
		font-size: 34px;
	}

	.page-subheader {
		font-size: 17px;
	}
}
