/* =========================================================================
   Inner pages — Phases 6 & 7
   Boutique-spa aesthetic matching the Home page (Phase 5).
   Loaded after pages.css, before a11y.css.
   ========================================================================= */

/* -------------------------------------------------------------------------
   Breadcrumb nav (shared across category + single pages)
   ------------------------------------------------------------------------- */
.breadcrumb-nav {
	background: var(--c-teal-50);
	border-bottom: 1px solid var(--color-border);
	padding-block: var(--sp-3);
}

.breadcrumb {
	display: flex;
	flex-wrap: wrap;
	gap: 0.25rem 0.5rem;
	list-style: none;
	margin: 0;
	padding: 0;
	font-size: var(--fs-small);
	color: var(--color-text-muted);
	align-items: center;
}

.breadcrumb a {
	color: var(--color-primary);
	text-decoration: none;
}

.breadcrumb a:hover { text-decoration: underline; }

.breadcrumb__sep { color: var(--color-border); user-select: none; }

/* -------------------------------------------------------------------------
   Shared: CTA banner (section--teal variant)
   ------------------------------------------------------------------------- */
.cta-banner {
	display: grid;
	place-items: center;
	text-align: center;
}

.cta-banner__content { max-width: 620px; }

.cta-banner__title {
	font-family: var(--font-display);
	font-size: var(--fs-h2);
	color: #fff;
	margin-bottom: var(--sp-4);
}

.cta-banner__body {
	color: rgba(255,255,255,0.85);
	margin-bottom: var(--sp-6);
	font-size: var(--fs-lead);
	line-height: var(--lh-body);
}

.cta-banner__actions {
	display: flex;
	flex-wrap: wrap;
	gap: var(--sp-4);
	justify-content: center;
}

/* -------------------------------------------------------------------------
   Accordion (treatment list + FAQ)
   ------------------------------------------------------------------------- */
.accordion { display: flex; flex-direction: column; gap: 0; }

.accordion__item {
	border: 1px solid var(--color-border);
	border-top: none;
	background: var(--color-surface);
}

.accordion__item:first-child { border-top: 1px solid var(--color-border); border-radius: var(--r-md) var(--r-md) 0 0; }
.accordion__item:last-child  { border-radius: 0 0 var(--r-md) var(--r-md); }
.accordion__item:only-child  { border-radius: var(--r-md); }

.accordion__heading { margin: 0; }

.accordion__trigger {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--sp-4);
	width: 100%;
	padding: var(--sp-5) var(--sp-6);
	font-family: var(--font-display);
	font-size: var(--fs-h4);
	font-weight: var(--fw-medium);
	color: var(--c-ink);
	text-align: left;
	background: none;
	border: none;
	cursor: pointer;
	transition: background-color var(--t-fast) var(--ease), color var(--t-fast) var(--ease);
}

.accordion__trigger:hover,
.accordion__trigger:focus-visible {
	background: var(--c-teal-50);
	color: var(--color-primary);
	outline: none;
}

.accordion__trigger[aria-expanded="true"] {
	color: var(--color-primary);
	background: var(--c-teal-50);
}

.accordion__trigger-text { flex: 1; }

.accordion__icon {
	flex: none;
	color: var(--color-primary);
	transition: transform var(--t-base) var(--ease);
}

.accordion__trigger[aria-expanded="true"] .accordion__icon {
	transform: rotate(-180deg);
}

.accordion__panel { border-top: 1px solid var(--color-border); }

.accordion__body {
	padding: var(--sp-6);
	display: flex;
	flex-direction: column;
	gap: var(--sp-5);
}

/* Treatment field blocks inside accordion */
.treatment-field {
	background: var(--color-surface-alt);
	border-radius: var(--r-md);
	padding: var(--sp-5);
	border-left: 3px solid var(--color-primary);
}

.treatment-field__label {
	display: flex;
	align-items: center;
	gap: var(--sp-2);
	font-family: var(--font-body);
	font-size: var(--fs-small);
	font-weight: var(--fw-semibold);
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--color-primary);
	margin-bottom: var(--sp-3);
}

.treatment-field__content { color: var(--color-text); line-height: var(--lh-body); }
.treatment-field__content p + p { margin-top: var(--sp-3); }

.accordion__cta {
	display: flex;
	align-items: center;
	gap: var(--sp-5);
	flex-wrap: wrap;
	padding-top: var(--sp-2);
	border-top: 1px solid var(--color-border);
}

/* -------------------------------------------------------------------------
   Category hero
   ------------------------------------------------------------------------- */
.category-hero {
	padding-block: clamp(3rem, 2rem + 5vw, 6rem);
}

.category-hero__inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: clamp(2rem, 1rem + 4vw, 5rem);
	align-items: center;
}

.category-hero__icon-wrap {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 64px;
	height: 64px;
	border-radius: var(--r-pill);
	background: var(--c-teal-50);
	border: 1.5px solid var(--c-teal-100);
	color: var(--color-primary);
	margin-bottom: var(--sp-4);
}

.category-hero__title {
	font-family: var(--font-display);
	font-size: var(--fs-h1);
	font-weight: var(--fw-bold);
	line-height: var(--lh-heading);
	color: var(--c-ink);
	margin-bottom: var(--sp-4);
}

.category-hero__tagline {
	margin-bottom: var(--sp-4);
}

.category-hero__intro {
	color: var(--color-text-muted);
	line-height: var(--lh-body);
	max-width: 56ch;
	margin-bottom: var(--sp-6);
}

.category-hero__visual { position: relative; }

.category-hero__photo-wrap {
	border-radius: var(--r-xl);
	overflow: hidden;
	box-shadow: var(--sh-lg);
}

.category-hero__photo-wrap picture,
.category-hero__photo-wrap picture img,
.category-hero__photo-wrap img {
	display: block;
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
}

.category-hero__photo-accent {
	position: absolute;
	top: -8%;
	right: -6%;
	width: 65%;
	height: 90%;
	background: radial-gradient(ellipse at 60% 40%, var(--c-teal-100) 0%, var(--c-teal-50) 55%, transparent 80%);
	border-radius: 60% 40% 55% 45% / 50% 45% 55% 50%;
	z-index: -1;
	pointer-events: none;
}

/* -------------------------------------------------------------------------
   Single treatment
   ------------------------------------------------------------------------- */
.single-service-hero {
	padding-block: clamp(3rem, 2rem + 5vw, 6rem);
}

.single-service-hero__inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: clamp(2rem, 1rem + 4vw, 5rem);
	align-items: center;
}

.single-service-hero__cat-link {
	display: inline-flex;
	gap: var(--sp-2);
	align-items: center;
	text-decoration: none;
}

.single-service-hero__cat-link:hover { color: var(--color-primary-dark); }

.single-service-hero__title {
	font-size: var(--fs-h1);
	font-weight: var(--fw-bold);
	line-height: var(--lh-heading);
	margin-block: var(--sp-3) var(--sp-4);
}

.single-service-hero__excerpt { margin-bottom: var(--sp-6); }

.single-service-hero__image { position: relative; }

.single-service-hero__photo,
.single-service-hero__image img {
	border-radius: var(--r-xl);
	overflow: hidden;
	box-shadow: var(--sh-lg);
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
	display: block;
}

/* Two-column layout */
.single-service__layout {
	display: grid;
	grid-template-columns: 1fr 340px;
	gap: clamp(2rem, 1rem + 4vw, 5rem);
	align-items: start;
}

/* Treatment block (section within single treatment) */
.treatment-block {
	background: var(--color-surface);
	border: 1px solid var(--color-border);
	border-radius: var(--r-lg);
	padding: var(--sp-6) var(--sp-7);
	margin-bottom: var(--sp-5);
	box-shadow: var(--sh-xs);
}

.treatment-block + .treatment-block { margin-top: 0; }

.treatment-block__label {
	display: flex;
	align-items: center;
	gap: var(--sp-3);
	margin-bottom: var(--sp-4);
	padding-bottom: var(--sp-3);
	border-bottom: 1px solid var(--color-border);
}

.treatment-block__label h2 {
	font-family: var(--font-display);
	font-size: var(--fs-h4);
	font-weight: var(--fw-medium);
	color: var(--color-primary);
	margin: 0;
}

.treatment-block__label .ns-icon { color: var(--color-primary); flex: none; }

.treatment-block__body { color: var(--color-text); line-height: var(--lh-body); }
.treatment-block__body p + p { margin-top: var(--sp-4); }

.single-service__back-link { padding-top: var(--sp-3); }

.rotated-180 { transform: rotate(180deg); }

/* Sticky CTA card */
.sticky-card {
	position: sticky;
	top: calc(100px + var(--sp-5)); /* below sticky header */
	border: 1px solid var(--color-border);
	border-radius: var(--r-lg);
	padding: var(--sp-6);
	background: var(--color-surface);
	box-shadow: var(--sh-sm);
	display: flex;
	flex-direction: column;
	gap: var(--sp-4);
}

.sticky-card__icon-wrap {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 60px;
	height: 60px;
	border-radius: var(--r-pill);
	background: var(--c-teal-50);
	color: var(--color-primary);
	margin-bottom: var(--sp-2);
}

.sticky-card__title {
	font-family: var(--font-display);
	font-size: var(--fs-h4);
	color: var(--c-ink);
	margin: 0;
}

.sticky-card__cat {
	font-size: var(--fs-small);
	color: var(--color-primary);
	font-weight: var(--fw-semibold);
	margin: 0;
}

.sticky-card__body {
	color: var(--color-text-muted);
	font-size: 0.93rem;
	line-height: var(--lh-body);
	margin: 0;
}

.sticky-card__contact {
	padding-top: var(--sp-3);
	border-top: 1px solid var(--color-border);
}

.sticky-card__phone {
	display: inline-flex;
	align-items: center;
	gap: var(--sp-2);
	font-weight: var(--fw-semibold);
	color: var(--color-primary);
	font-size: 0.97rem;
}

/* -------------------------------------------------------------------------
   Services index
   ------------------------------------------------------------------------- */
.services-index-hero__inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: clamp(2rem, 1rem + 4vw, 5rem);
	align-items: center;
	padding-block: clamp(3rem, 2rem + 5vw, 6rem);
}

.services-index-hero__text h1 {
	font-size: var(--fs-h1);
	margin-block: var(--sp-3) var(--sp-5);
}

.services-index-hero__photo,
.services-index-hero__visual img {
	border-radius: var(--r-xl);
	overflow: hidden;
	box-shadow: var(--sh-lg);
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
	display: block;
}

.services-index__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: var(--sp-5);
}

.services-landing-card {
	padding: 0;
	transition: transform var(--t-base) var(--ease), box-shadow var(--t-base) var(--ease);
	overflow: hidden;
}

.services-landing-card:hover {
	transform: translateY(-5px);
	box-shadow: var(--sh-md);
}

.services-landing-card__link {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: var(--sp-3);
	padding: var(--sp-6);
	height: 100%;
	text-decoration: none;
	color: inherit;
	text-align: center;
}

.services-landing-card__icon-wrap {
	width: 60px;
	height: 60px;
	border-radius: var(--r-lg);
	background: var(--c-teal-50);
	border: 1px solid var(--c-teal-100);
	display: grid;
	place-items: center;
	color: var(--color-primary);
	transition: background-color var(--t-base) var(--ease), color var(--t-base) var(--ease);
	flex: none;
}

.services-landing-card:hover .services-landing-card__icon-wrap {
	background: var(--color-primary);
	color: #fff;
}

/* Client PNG icons inside the service-index + category-hero badges */
.services-landing-card__icon-wrap .ns-img-icon,
.category-hero__icon-wrap .ns-img-icon {
	display: block;
	object-fit: contain;
}
/* PNG icons can't recolor on hover — keep the badge light so they stay visible */
.services-landing-card:hover .services-landing-card__icon-wrap {
	background: var(--c-teal-100);
	color: var(--color-primary);
}

.services-landing-card__title {
	font-size: var(--fs-h4);
	color: var(--c-ink);
	margin: 0;
	line-height: var(--lh-tight);
}

.services-landing-card__tagline {
	font-size: var(--fs-small);
	font-weight: var(--fw-semibold);
	color: var(--color-primary);
	margin: 0;
}

.services-landing-card__intro {
	color: var(--color-text-muted);
	font-size: 0.9rem;
	line-height: var(--lh-body);
	margin: 0;
	flex: 1;
}

.services-landing-card__footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--sp-3);
	padding-top: var(--sp-3);
	border-top: 1px solid var(--color-border);
	margin-top: auto;
}

.services-landing-card__count {
	font-size: var(--fs-small);
	color: var(--color-text-muted);
}

/* -------------------------------------------------------------------------
   About Us
   ------------------------------------------------------------------------- */
.about-hero__inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: clamp(2rem, 1rem + 4vw, 5rem);
	align-items: center;
	padding-block: clamp(3rem, 2rem + 5vw, 6rem);
}

.about-hero__lead { margin-block: var(--sp-5) var(--sp-6); max-width: 54ch; }

.about-hero__visual { position: relative; }

.about-hero__photo-wrap {
	border-radius: var(--r-xl);
	overflow: hidden;
	box-shadow: var(--sh-lg);
}

.about-hero__photo-wrap picture,
.about-hero__photo-wrap picture img,
.about-hero__photo-wrap img {
	display: block;
	width: 100%;
	aspect-ratio: 4 / 5;
	object-fit: cover;
}

.about-hero__blob {
	position: absolute;
	top: -8%;
	right: -6%;
	width: 60%;
	height: 80%;
	background: radial-gradient(ellipse at 60% 40%, var(--c-coral-100) 0%, var(--c-sage-100) 55%, transparent 80%);
	border-radius: 60% 40% 55% 45% / 50% 45% 55% 50%;
	z-index: -1;
	pointer-events: none;
}

/* Mission/Vision cards */
.about-mv-grid { margin-top: var(--sp-2); }

.about-mv-card {
	text-align: center;
	padding: var(--sp-7) var(--sp-6);
}

.about-mv-card--mission { background: linear-gradient(135deg, var(--c-teal-50) 0%, #fff 100%); }
.about-mv-card--vision  { background: linear-gradient(135deg, var(--c-coral-100) 0%, #fff 100%); }

.about-mv-card__icon-wrap {
	display: grid;
	place-items: center;
	width: 68px;
	height: 68px;
	border-radius: var(--r-pill);
	background: #fff;
	box-shadow: var(--sh-sm);
	margin: 0 auto var(--sp-5);
	color: var(--color-primary);
}

.about-mv-card--vision .about-mv-card__icon-wrap { color: var(--color-accent); }

.about-mv-card__label {
	font-size: var(--fs-small);
	font-weight: var(--fw-bold);
	text-transform: uppercase;
	letter-spacing: 0.16em;
	color: var(--color-primary);
	margin-bottom: var(--sp-3);
}

.about-mv-card--vision .about-mv-card__label { color: var(--color-accent-dark); }

.about-mv-card__body {
	font-size: var(--fs-lead);
	line-height: var(--lh-body);
	color: var(--c-ink);
	font-family: var(--font-display);
	font-weight: var(--fw-light);
}

/* Split section */
.about-clinic-photo-wrap {
	border-radius: var(--r-xl);
	overflow: hidden;
	box-shadow: var(--sh-lg);
}

.about-clinic-photo-wrap picture,
.about-clinic-photo-wrap picture img,
.about-clinic-photo,
.about-clinic-photo-wrap img {
	display: block;
	width: 100%;
	aspect-ratio: 3 / 4;
	object-fit: cover;
}

.about-clinic-split__text h2 { margin-block: var(--sp-3) var(--sp-5); }
.about-clinic-split__text p + p { margin-top: var(--sp-4); }

.about-clinic-split__details {
	display: flex;
	flex-direction: column;
	gap: var(--sp-3);
	margin-block: var(--sp-5);
}

.about-clinic-split__detail {
	display: flex;
	align-items: flex-start;
	gap: var(--sp-3);
	color: var(--color-text-muted);
}

.about-clinic-split__detail .ns-icon { color: var(--color-primary); flex: none; margin-top: 2px; }
.about-clinic-split__detail small { display: block; font-size: var(--fs-small); }

/* Pillars grid */
.about-pillars-grid { margin-top: var(--sp-2); }

.about-pillar { text-align: center; padding: var(--sp-6); }

.about-pillar__icon-wrap {
	width: 60px;
	height: 60px;
	border-radius: var(--r-pill);
	background: var(--c-teal-50);
	display: grid;
	place-items: center;
	margin: 0 auto var(--sp-4);
	color: var(--color-primary);
	transition: background-color var(--t-base) var(--ease), color var(--t-base) var(--ease);
}

.about-pillar:hover .about-pillar__icon-wrap {
	background: var(--color-primary);
	color: #fff;
}

.about-pillar__title { font-size: var(--fs-h4); margin-bottom: var(--sp-3); }
.about-pillar__body  { color: var(--color-text-muted); font-size: 0.93rem; line-height: var(--lh-body); }

/* -------------------------------------------------------------------------
   Memberships
   ------------------------------------------------------------------------- */
.memberships-hero__inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: clamp(2rem, 1rem + 4vw, 5rem);
	align-items: center;
	padding-block: clamp(3rem, 2rem + 5vw, 6rem);
}

.memberships-hero__text h1 { margin-block: var(--sp-3) var(--sp-5); font-size: var(--fs-h1); }
.memberships-hero__photo,
.memberships-hero__visual img {
	border-radius: var(--r-xl);
	overflow: hidden;
	box-shadow: var(--sh-lg);
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
	display: block;
}

.memberships-hero__ctas {
	display: flex;
	align-items: center;
	gap: var(--sp-5);
	flex-wrap: wrap;
	margin-top: var(--sp-6);
}

/* Plan cards */
.membership-cards {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: var(--sp-6);
	max-width: 860px;
	margin-inline: auto;
}

.membership-card {
	background: var(--color-surface);
	border: 1px solid var(--color-border);
	border-radius: var(--r-xl);
	padding: var(--sp-6);
	display: flex;
	flex-direction: column;
	gap: var(--sp-4);
	box-shadow: var(--sh-xs);
	position: relative;
	transition: transform var(--t-base) var(--ease), box-shadow var(--t-base) var(--ease);
}

.membership-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--sh-md);
}

.membership-card--featured {
	border-color: var(--color-primary);
	background: linear-gradient(135deg, var(--c-teal-50) 0%, #fff 60%);
	box-shadow: var(--sh-md);
}

.membership-card__badge {
	position: absolute;
	top: -14px;
	left: 50%;
	transform: translateX(-50%);
	background: var(--color-primary);
	color: #fff;
	font-size: 0.78rem;
	font-weight: var(--fw-semibold);
	padding: 0.35rem 1rem;
	border-radius: var(--r-pill);
	white-space: nowrap;
}

.membership-card__header { text-align: center; padding-top: var(--sp-3); }

.membership-card__icon {
	display: grid;
	place-items: center;
	width: 60px;
	height: 60px;
	border-radius: var(--r-pill);
	background: var(--c-teal-50);
	color: var(--color-primary);
	margin: 0 auto var(--sp-4);
}

.membership-card--featured .membership-card__icon {
	background: var(--color-primary);
	color: #fff;
}

.membership-card__title { font-size: var(--fs-h3); margin-bottom: var(--sp-2); }

.membership-card__price {
	font-family: var(--font-display);
	font-size: var(--fs-lead);
	color: var(--color-primary);
	font-weight: var(--fw-medium);
}

.membership-card__benefits {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: var(--sp-3);
	flex: 1;
}

.membership-card__benefits li {
	display: flex;
	align-items: flex-start;
	gap: var(--sp-3);
	font-size: 0.95rem;
	color: var(--c-ink);
}

.membership-card__benefits .ns-icon {
	color: var(--c-sage-600);
	flex: none;
	margin-top: 2px;
}

.membership-card__cta { margin-top: auto; }

/* Comparison strip */
.compare-strip {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: var(--sp-6);
}

.compare-strip__item {
	text-align: center;
	padding: var(--sp-6);
}

.compare-strip__item .ns-icon {
	color: var(--color-primary);
	margin-bottom: var(--sp-4);
}

.compare-strip__item h3 {
	font-size: var(--fs-h4);
	margin-bottom: var(--sp-3);
}

.compare-strip__item p {
	color: var(--color-text-muted);
	font-size: 0.93rem;
	line-height: var(--lh-body);
}

/* -------------------------------------------------------------------------
   Contact
   ------------------------------------------------------------------------- */
.contact-hero { padding-block: clamp(3rem, 2rem + 5vw, 6rem); }

.contact-layout {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: clamp(2.5rem, 2vw + 1rem, 5rem);
	align-items: start;
}

.contact-form-title {
	font-family: var(--font-display);
	font-size: var(--fs-h3);
	margin-bottom: var(--sp-5);
}

/* Form feedback */
.form-feedback {
	display: flex;
	align-items: flex-start;
	gap: var(--sp-3);
	padding: var(--sp-4) var(--sp-5);
	border-radius: var(--r-md);
	margin-bottom: var(--sp-5);
	font-size: 0.95rem;
}

.form-feedback .ns-icon { flex: none; margin-top: 2px; }

.form-feedback--success {
	background: var(--c-sage-100);
	color: var(--c-sage-600);
	border: 1px solid var(--c-sage-600);
}

.form-feedback--error {
	background: var(--c-coral-100);
	color: var(--c-coral-700);
	border: 1px solid var(--c-coral-700);
}

/* Form itself */
.contact-form { display: flex; flex-direction: column; gap: var(--sp-4); }

/* Embedded external form (Go High Level / LeadConnector) */
.contact-form-embed { width: 100%; }
.contact-form-embed iframe {
	width: 100%;
	min-height: 620px;
	border: none;
	border-radius: var(--r-md);
	display: block;
}

.contact-form__row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: var(--sp-4);
}

.contact-form__group { display: flex; flex-direction: column; gap: var(--sp-2); }

.contact-form__label {
	font-size: var(--fs-small);
	font-weight: var(--fw-semibold);
	color: var(--c-ink);
}

.contact-form__input {
	width: 100%;
	padding: 0.875rem 1.1rem;
	border: 1.5px solid var(--color-border);
	border-radius: var(--r-md);
	font-family: var(--font-body);
	font-size: 1rem;
	color: var(--c-ink);
	background: #fff;
	transition: border-color var(--t-fast) var(--ease), box-shadow var(--t-fast) var(--ease);
}

.contact-form__input::placeholder { color: var(--color-text-muted); }

.contact-form__input:focus {
	border-color: var(--color-primary);
	box-shadow: var(--sh-focus);
	outline: none;
}

.contact-form__textarea { resize: vertical; min-height: 130px; }

.contact-form__submit { margin-top: var(--sp-2); }

/* Honeypot — visually hidden but not display:none to keep it in the DOM */
.contact-form__honeypot {
	position: absolute;
	left: -9999px;
	width: 1px;
	height: 1px;
	overflow: hidden;
	opacity: 0;
	pointer-events: none;
	tab-index: -1;
}

/* Contact info strip */
.contact-info-strip {
	display: flex;
	flex-direction: column;
	gap: var(--sp-4);
	margin-top: var(--sp-7);
	padding-top: var(--sp-6);
	border-top: 1px solid var(--color-border);
}

.contact-info-strip__item {
	display: flex;
	align-items: flex-start;
	gap: var(--sp-4);
}

.contact-info-strip__icon {
	width: 48px;
	height: 48px;
	border-radius: var(--r-pill);
	background: var(--c-teal-50);
	color: var(--color-primary);
	display: grid;
	place-items: center;
	flex: none;
}

.contact-info-strip__label {
	font-size: var(--fs-small);
	color: var(--color-text-muted);
	margin: 0 0 0.25rem;
}

.contact-info-strip__value {
	display: block;
	font-weight: var(--fw-semibold);
	color: var(--c-ink);
	font-size: 0.97rem;
	text-decoration: none;
}

a.contact-info-strip__value:hover { color: var(--color-primary); }

.contact-info-strip__address { font-style: normal; }
.contact-info-strip__address small { display: block; font-size: var(--fs-small); color: var(--color-text-muted); font-weight: var(--fw-regular); }

/* Boutique hours box */
.contact-hours-box {
	background: var(--color-surface-alt);
	border: 1px solid var(--color-border);
	border-radius: var(--r-lg);
	padding: var(--sp-5) var(--sp-6);
	margin-top: var(--sp-6);
}

.contact-hours-box__title {
	display: flex;
	align-items: center;
	gap: var(--sp-2);
	font-size: 0.97rem;
	font-weight: var(--fw-semibold);
	color: var(--color-primary);
	margin-bottom: var(--sp-4);
}

.contact-hours-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 0;
}

.contact-hours-list li {
	display: flex;
	justify-content: space-between;
	gap: 1rem;
	padding: 0.45rem 0;
	border-bottom: 1px solid var(--color-border);
	font-size: 0.9rem;
}

.contact-hours-list__day  { color: var(--color-text-muted); }
.contact-hours-list__time { font-weight: var(--fw-semibold); color: var(--c-ink); }

/* Map */
.contact-layout__map-col { position: sticky; top: calc(100px + var(--sp-5)); }

.contact-map-wrap {
	border-radius: var(--r-xl);
	overflow: hidden;
	box-shadow: var(--sh-md);
	min-height: 500px;
	background: var(--color-surface-alt);
}

.contact-map-iframe {
	display: block;
	width: 100%;
	min-height: 500px;
	border: 0;
}

.contact-map-fallback {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: var(--sp-9) var(--sp-7);
	min-height: 500px;
	gap: var(--sp-4);
}

.contact-map-fallback__icon { color: var(--c-teal-300); }
.contact-map-fallback__title { font-size: var(--fs-h4); margin: 0; }
.contact-map-fallback__address { color: var(--color-text-muted); font-size: 0.97rem; font-style: normal; line-height: 1.5; }

/* -------------------------------------------------------------------------
   Thank You
   ------------------------------------------------------------------------- */
.thank-you-hero { padding-block: clamp(4rem, 2rem + 7vw, 8rem); }

.thank-you-hero__inner {
	text-align: center;
	max-width: 620px;
	margin-inline: auto;
}

.thank-you-hero__icon {
	width: 80px;
	height: 80px;
	border-radius: var(--r-pill);
	background: var(--c-sage-100);
	color: var(--c-sage-600);
	display: grid;
	place-items: center;
	margin: 0 auto var(--sp-5);
	box-shadow: var(--sh-sm);
}

.thank-you-hero__inner h1 { margin-block: var(--sp-3) var(--sp-4); font-size: var(--fs-h1); }
.thank-you-hero__inner .lead { margin: 0; }

/* Next steps */
.next-steps-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: var(--sp-6);
	counter-reset: steps;
}

.next-step-card {
	text-align: center;
	padding: var(--sp-7) var(--sp-6);
	background: var(--color-surface);
	border: 1px solid var(--color-border);
	border-radius: var(--r-xl);
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: var(--sp-3);
	box-shadow: var(--sh-xs);
	position: relative;
}

.next-step-card__number {
	position: absolute;
	top: -16px;
	left: 50%;
	transform: translateX(-50%);
	width: 32px;
	height: 32px;
	border-radius: var(--r-pill);
	background: var(--color-primary);
	color: #fff;
	font-family: var(--font-display);
	font-weight: var(--fw-bold);
	font-size: 0.9rem;
	display: grid;
	place-items: center;
	box-shadow: var(--sh-sm);
}

.next-step-card__icon {
	width: 56px;
	height: 56px;
	border-radius: var(--r-pill);
	background: var(--c-teal-50);
	color: var(--color-primary);
	display: grid;
	place-items: center;
	margin-top: var(--sp-2);
}

.next-step-card__title { font-size: var(--fs-h4); margin: 0; }
.next-step-card__body  { color: var(--color-text-muted); font-size: 0.93rem; line-height: var(--lh-body); margin: 0; }

.thank-you-links {
	text-align: center;
	padding: var(--sp-7);
	background: var(--color-surface);
	border-radius: var(--r-xl);
	border: 1px solid var(--color-border);
	box-shadow: var(--sh-xs);
}

.thank-you-links__label {
	font-size: var(--fs-small);
	font-weight: var(--fw-semibold);
	text-transform: uppercase;
	letter-spacing: 0.12em;
	color: var(--color-text-muted);
	margin-bottom: var(--sp-5);
}

.thank-you-links__actions {
	display: flex;
	flex-wrap: wrap;
	gap: var(--sp-4);
	justify-content: center;
}

/* -------------------------------------------------------------------------
   Gallery
   ------------------------------------------------------------------------- */
.gallery-hero { padding-block: clamp(3rem, 2rem + 5vw, 6rem); }

/* Filter chips */
.gallery-filters {
	display: flex;
	flex-wrap: wrap;
	gap: var(--sp-3);
	margin-bottom: var(--sp-7);
}

.gallery-filter-chip {
	padding: 0.55rem 1.25rem;
	border: 1.5px solid var(--color-border);
	border-radius: var(--r-pill);
	font-size: var(--fs-small);
	font-weight: var(--fw-semibold);
	font-family: var(--font-body);
	color: var(--color-text-muted);
	background: var(--color-surface);
	cursor: pointer;
	transition: border-color var(--t-fast) var(--ease), background-color var(--t-fast) var(--ease), color var(--t-fast) var(--ease);
}

.gallery-filter-chip:hover,
.gallery-filter-chip--active {
	border-color: var(--color-primary);
	background: var(--color-primary);
	color: #fff;
}

/* Gallery grid */
.gallery-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
	gap: var(--sp-6);
}

/* Real clinic photo grid (no before/after — just the space) */
.clinic-photos-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	gap: var(--sp-5);
}

.clinic-photo {
	margin: 0;
	border-radius: var(--r-lg);
	overflow: hidden;
	box-shadow: var(--sh-xs);
	aspect-ratio: 4 / 3;
}

.clinic-photo__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform var(--t-base) var(--ease);
}

.clinic-photo:hover .clinic-photo__img {
	transform: scale(1.04);
}

/* Filter visibility via CSS: hide cards that don't match active filter */
.gallery-grid[data-active-filter]:not([data-active-filter="all"]) .gallery-case-card {
	display: none;
}

/* JS sets these selectors dynamically but we provide the general mechanism:
   Items that match get shown back. This is done via JS attribute toggles
   but the hide-all-except approach works purely via data attributes. */

.gallery-case-card {
	background: var(--color-surface);
	border: 1px solid var(--color-border);
	border-radius: var(--r-xl);
	overflow: hidden;
	box-shadow: var(--sh-xs);
	transition: transform var(--t-base) var(--ease), box-shadow var(--t-base) var(--ease);
}

.gallery-case-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--sh-md);
}

.gallery-case-card__body {
	padding: var(--sp-4) var(--sp-5) var(--sp-5);
}

.gallery-case-card__title {
	font-size: var(--fs-h4);
	margin-bottom: var(--sp-2);
}

.gallery-case-card__summary {
	color: var(--color-text-muted);
	font-size: 0.92rem;
	line-height: var(--lh-body);
	margin-bottom: var(--sp-3);
}

.gallery-empty {
	text-align: center;
	padding: var(--sp-9);
	color: var(--color-text-muted);
}

/* Before/After slider component */
.before-after {
	position: relative;
	overflow: hidden;
	aspect-ratio: 16 / 10;
	background: var(--color-surface-alt);
	--ba-pos: 50%;
}

.before-after__after {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	position: absolute;
	inset: 0;
}

.before-after__clip {
	position: absolute;
	inset: 0;
	clip-path: inset(0 calc(100% - var(--ba-pos, 50%)) 0 0);
	transition: clip-path 0s; /* No transition — instant per pointer */
}

@media (prefers-reduced-motion: no-preference) {
	.before-after__clip {
		transition: clip-path 0.05s linear;
	}
}

.before-after__before {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* The range input sits on top, full-width, invisible track */
.before-after__range {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	cursor: ew-resize;
	z-index: 10;
	margin: 0;
	padding: 0;
	-webkit-appearance: none;
}

/* Visible handle */
.before-after__handle {
	position: absolute;
	top: 0;
	bottom: 0;
	left: var(--ba-pos, 50%);
	transform: translateX(-50%);
	width: 3px;
	background: #fff;
	pointer-events: none;
	z-index: 5;
	box-shadow: 0 0 8px rgba(0,0,0,0.35);
}

.before-after__handle::before,
.before-after__handle::after {
	content: "";
	position: absolute;
	top: 50%;
	width: 36px;
	height: 36px;
	border-radius: var(--r-pill);
	background: #fff;
	box-shadow: var(--sh-sm);
	transform: translateY(-50%);
}

.before-after__handle::before {
	right: 100%;
	margin-right: 1px;
	background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23027298' stroke-width='2' stroke-linecap='round'%3E%3Cpath d='M15 18l-6-6 6-6'/%3E%3C/svg%3E") center/18px no-repeat;
}

.before-after__handle::after {
	left: 100%;
	margin-left: 1px;
	background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23027298' stroke-width='2' stroke-linecap='round'%3E%3Cpath d='M9 18l6-6-6-6'/%3E%3C/svg%3E") center/18px no-repeat;
}

/* Before/After labels */
.before-after__label {
	position: absolute;
	bottom: var(--sp-3);
	padding: 0.25rem 0.65rem;
	background: rgba(0,0,0,0.55);
	color: #fff;
	font-size: 0.72rem;
	font-weight: var(--fw-semibold);
	text-transform: uppercase;
	letter-spacing: 0.1em;
	border-radius: var(--r-sm);
	z-index: 6;
	pointer-events: none;
}

.before-after__label--before { left: var(--sp-3); }
.before-after__label--after  { right: var(--sp-3); }

/* Lightbox variant — larger slider */
.before-after--lightbox {
	aspect-ratio: 16 / 9;
	border-radius: var(--r-lg);
	overflow: hidden;
}

/* Gallery lightbox dialog */
.gallery-lightbox {
	position: fixed;
	inset: 0;
	z-index: var(--z-modal);
	background: rgba(1, 47, 63, 0.9);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: var(--gutter);
	border: none;
	max-width: 100%;
	max-height: 100%;
	width: 100%;
	height: 100%;
}

/* Native dialog hidden state */
.gallery-lightbox:not([open]) { display: none; }

.gallery-lightbox__inner {
	position: relative;
	background: var(--color-surface);
	border-radius: var(--r-xl);
	overflow: hidden;
	width: 100%;
	max-width: 860px;
	box-shadow: var(--sh-lg);
	display: flex;
	flex-direction: column;
}

.gallery-lightbox__close {
	position: absolute;
	top: var(--sp-4);
	right: var(--sp-4);
	z-index: 10;
	width: 44px;
	height: 44px;
	border-radius: var(--r-pill);
	background: rgba(1,47,63,0.65);
	color: #fff;
	display: grid;
	place-items: center;
	border: none;
	cursor: pointer;
	transition: background-color var(--t-fast) var(--ease);
}

.gallery-lightbox__close:hover { background: var(--c-teal-900); }

.gallery-lightbox__prev,
.gallery-lightbox__next {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 10;
	width: 44px;
	height: 44px;
	border-radius: var(--r-pill);
	background: rgba(1,47,63,0.65);
	color: #fff;
	display: grid;
	place-items: center;
	border: none;
	cursor: pointer;
	transition: background-color var(--t-fast) var(--ease);
}

.gallery-lightbox__prev { left: var(--sp-4); }
.gallery-lightbox__next { right: var(--sp-4); }
.gallery-lightbox__prev:hover,
.gallery-lightbox__next:hover { background: var(--c-teal-900); }

.gallery-lightbox__slider { flex: 1; }

.gallery-lightbox__meta {
	padding: var(--sp-5) var(--sp-6);
	border-top: 1px solid var(--color-border);
}

.gallery-lightbox__title { font-size: var(--fs-h4); margin: 0 0 var(--sp-2); }
.gallery-lightbox__summary { color: var(--color-text-muted); font-size: 0.93rem; margin: 0 0 var(--sp-3); }
.gallery-lightbox__counter { font-size: var(--fs-small); color: var(--color-text-muted); margin: 0; }

/* -------------------------------------------------------------------------
   Blog — single post
   ------------------------------------------------------------------------- */
.single-post-hero {
	padding-block: clamp(3rem, 2rem + 5vw, 6rem);
}

.single-post-hero__inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: clamp(2rem, 1rem + 4vw, 5rem);
	align-items: center;
}

.single-post-hero__title {
	font-size: var(--fs-h1);
	line-height: var(--lh-heading);
	margin-block: var(--sp-3) var(--sp-4);
}

.single-post-hero__excerpt { margin-bottom: 0; }

.single-post-hero__photo,
.single-post-hero__image img {
	display: block;
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
	border-radius: var(--r-xl);
	box-shadow: var(--sh-lg);
}

.single-post-content { line-height: var(--lh-body); }
.single-post-content > * + * { margin-top: var(--sp-5); }
.single-post-content h2, .single-post-content h3 { margin-top: var(--sp-7); }

.single-post-tags {
	display: flex;
	flex-wrap: wrap;
	gap: var(--sp-2);
	margin-top: var(--sp-6);
}

.single-post-tag {
	padding: 0.3rem 0.8rem;
	border: 1px solid var(--color-border);
	border-radius: var(--r-pill);
	font-size: var(--fs-small);
	color: var(--color-text-muted);
	text-decoration: none;
	transition: border-color var(--t-fast), color var(--t-fast);
}

.single-post-tag:hover { border-color: var(--color-primary); color: var(--color-primary); }

.single-post-share {
	margin-top: var(--sp-6);
	padding-top: var(--sp-5);
	border-top: 1px solid var(--color-border);
}

.single-post-share__label {
	font-size: var(--fs-small);
	font-weight: var(--fw-semibold);
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--color-text-muted);
	margin-bottom: var(--sp-3);
}

.single-post-share__actions {
	display: flex;
	gap: var(--sp-3);
	flex-wrap: wrap;
}

.single-post-cta-card {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: var(--sp-4);
	padding: var(--sp-8);
}

.single-post-cta-card__icon {
	width: 68px;
	height: 68px;
	border-radius: var(--r-pill);
	background: var(--c-teal-50);
	color: var(--color-primary);
	display: grid;
	place-items: center;
}

.single-post-cta-card__title { font-size: var(--fs-h3); margin: 0; }

/* -------------------------------------------------------------------------
   404
   ------------------------------------------------------------------------- */
.error-404-page {
	overflow: hidden;
}

.error-404 {
	position: relative;
	text-align: center;
	padding-block: clamp(4rem, 2rem + 8vw, 9rem);
	overflow: hidden;
}

.error-404__blob {
	position: absolute;
	top: -10%;
	left: 50%;
	transform: translateX(-50%);
	width: 80%;
	height: 120%;
	background: radial-gradient(ellipse at 50% 40%, var(--c-teal-50) 0%, transparent 70%);
	pointer-events: none;
	z-index: 0;
}

.error-404__code {
	position: relative;
	font-family: var(--font-display);
	font-size: clamp(6rem, 4rem + 12vw, 14rem);
	font-weight: var(--fw-bold);
	line-height: 1;
	color: var(--c-teal-100);
	margin-bottom: var(--sp-4);
	z-index: 0;
	pointer-events: none;
	user-select: none;
}

.error-404__content {
	position: relative;
	z-index: 1;
	max-width: 560px;
	margin-inline: auto;
}

.error-404__title {
	font-size: var(--fs-h2);
	margin-block: var(--sp-4) var(--sp-4);
}

.error-404__body {
	margin-bottom: var(--sp-6);
}

.error-404__search {
	max-width: 420px;
	margin: 0 auto var(--sp-6);
}

/* WP search form styling */
.error-404__search .search-form {
	display: flex;
	gap: var(--sp-2);
}

.error-404__search .search-field {
	flex: 1;
	padding: 0.875rem 1.1rem;
	border: 1.5px solid var(--color-border);
	border-radius: var(--r-pill);
	font-family: var(--font-body);
	font-size: 1rem;
}

.error-404__search .search-field:focus {
	border-color: var(--color-primary);
	box-shadow: var(--sh-focus);
	outline: none;
}

.error-404__search .search-submit {
	padding: 0.875rem 1.5rem;
	border-radius: var(--r-pill);
	background: var(--color-primary);
	color: #fff;
	font-family: var(--font-body);
	font-weight: var(--fw-semibold);
	border: none;
	cursor: pointer;
	transition: background-color var(--t-fast) var(--ease);
}

.error-404__search .search-submit:hover { background: var(--color-primary-dark); }

.error-404__links {
	display: flex;
	flex-wrap: wrap;
	gap: var(--sp-4);
	justify-content: center;
	margin-bottom: var(--sp-7);
}

.error-404__symbol {
	color: var(--c-teal-100);
	margin-top: var(--sp-6);
}

/* -------------------------------------------------------------------------
   Team
   ------------------------------------------------------------------------- */
.team-hero { padding-block: clamp(3rem, 2rem + 5vw, 6rem); }

.team-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	gap: var(--sp-6);
}

.team-card {
	padding: 0;
	overflow: hidden;
}

.team-card__photo-wrap {
	aspect-ratio: 3 / 4;
	overflow: hidden;
}

.team-card__photo-wrap img,
.team-card__photo {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.team-card__photo-placeholder {
	aspect-ratio: 3 / 4;
	display: grid;
	place-items: center;
	background: var(--c-teal-50);
	color: var(--c-teal-300);
}

.team-card__body { padding: var(--sp-5); }

.team-card__name { font-size: var(--fs-h4); margin-bottom: var(--sp-2); }
.team-card__role { color: var(--color-primary); font-weight: var(--fw-semibold); font-size: 0.9rem; margin: 0 0 var(--sp-2); }
.team-card__credentials { color: var(--color-text-muted); font-size: var(--fs-small); margin: 0 0 var(--sp-2); }
.team-card__years { color: var(--color-text-muted); font-size: var(--fs-small); margin: 0 0 var(--sp-4); }
.team-card__bio { font-size: 0.92rem; line-height: var(--lh-body); }

.team-empty {
	text-align: center;
	padding: var(--sp-9);
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: var(--sp-4);
}

.team-empty__icon { color: var(--c-teal-300); }

/* -------------------------------------------------------------------------
   Responsive overrides
   ------------------------------------------------------------------------- */

@media (max-width: 1100px) {
	.single-service__layout { grid-template-columns: 1fr; }
	.single-service__sidebar { position: static; }
	.sticky-card { position: static; }
}

@media (max-width: 960px) {
	.category-hero__inner,
	.single-service-hero__inner,
	.services-index-hero__inner,
	.about-hero__inner,
	.memberships-hero__inner,
	.single-post-hero__inner {
		grid-template-columns: 1fr;
	}

	.services-index__grid { grid-template-columns: repeat(2, 1fr); }
	.compare-strip { grid-template-columns: 1fr; }
	.contact-layout { grid-template-columns: 1fr; }
	.contact-layout__map-col { position: static; }
	.next-steps-grid { grid-template-columns: 1fr; }
	.membership-cards { grid-template-columns: 1fr; max-width: 420px; }
}

@media (max-width: 768px) {
	.accordion__trigger { padding: var(--sp-4) var(--sp-4); font-size: 1rem; }
	.accordion__body    { padding: var(--sp-4); }

	.services-index__grid { grid-template-columns: 1fr; }

	.about-mv-grid { grid-template-columns: 1fr; }
	.about-pillars-grid { grid-template-columns: 1fr 1fr; }

	.contact-form__row { grid-template-columns: 1fr; }
	.contact-map-wrap  { min-height: 300px; }
	.contact-map-iframe { min-height: 300px; }
	.contact-map-fallback { min-height: 300px; }

	.next-steps-grid { grid-template-columns: 1fr; }

	.gallery-grid { grid-template-columns: 1fr; }
	.gallery-lightbox__prev,
	.gallery-lightbox__next { display: none; }
}

@media (max-width: 480px) {
	.about-pillars-grid { grid-template-columns: 1fr; }
	.cta-banner__actions { flex-direction: column; align-items: center; }
	.thank-you-links__actions { flex-direction: column; align-items: center; }
	.memberships-hero__ctas { flex-direction: column; }
}

/* =========================================================================
   Contact form HIPAA privacy hint (PHI awareness).
   Small note under the message textarea, brand-coloured, never prominent.
   ========================================================================= */
.contact-form__privacy-note {
	font-size: 0.82rem;
	color: var(--color-text-muted);
	line-height: 1.45;
	margin: var(--sp-3) 0 0;
}
.contact-form__privacy-note a {
	color: var(--color-primary);
	font-weight: var(--fw-semibold);
	border-bottom: 1px solid var(--c-teal-100);
}
.contact-form__privacy-note a:hover {
	border-bottom-color: var(--color-primary);
}
