/* Swarayu — material-minimal system; background locked per plan */
@import url("https://api.fontshare.com/v2/css?f[]=cabinet-grotesk@1,1&f[]=satoshi@1,1&display=swap");

:root {
	/* Rustic, fresh — linen / clay / garden green (Ayurvedic food mood) */
	--bg: #f6f3eb;
	--bg-stone-100: #efe9dd;
	--bg-card: #fffcf7;
	--text: #1c1917;
	--muted: #5c5348;
	--border: #e0d8cc;
	--wood: #9d6b4a;
	--aluminum: #d4cfc4;
	--accent: #3d3429;
	--accent-green: #3d6b52;
	--radius: 1.5rem;
	--radius-lg: 2rem;
	--shadow: 0 4px 24px rgba(61, 52, 41, 0.07);
	--shadow-xl: 0 25px 50px -12px rgba(61, 52, 41, 0.14);
	--font-sans: "Satoshi", system-ui, sans-serif;
	--font-display: "Cabinet Grotesk", system-ui, sans-serif;
	--max: 1120px;
	--header-h: 80px;
	--ease: cubic-bezier(0.4, 0, 0.2, 1);
	/* Immersive hero (home) — tuned with color-mix */
	--hero-fg: color-mix(in srgb, #faf8f3 88%, var(--accent-green) 12%);
	--hero-fg-muted: color-mix(in srgb, #f0ebe3 72%, var(--muted) 28%);
	--hero-eyebrow-fg: color-mix(in srgb, #fef9e7 42%, var(--wood) 58%);
	--hero-em: color-mix(in srgb, #d8f0e0 24%, var(--accent-green) 76%);
	--hero-scrim-1: rgba(35, 58, 42, 0.44);
	--hero-scrim-2: rgba(40, 32, 26, 0.38);
	/* Hologram text — strong stop contrast + wide sweep so the fade reads on photo scrims */
	--hero-hologram-gradient: linear-gradient(
		95deg,
		#4a8f6a,
		#e8d896,
		#3d7a9e,
		#e8b8c8,
		#7ab86a,
		#9a7ad8,
		#5a9e8a,
		#f0e0a8,
		#4a8f6a
	);
	--hero-hologram-bg-size: 240% 100%;
	--hero-hologram-duration: 14s;
}

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

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	font-family: var(--font-sans);
	font-size: 1rem;
	line-height: 1.65;
	color: var(--text);
	background: var(--bg);
	padding-bottom: 0;
}

body.has-sticky-bar {
	padding-bottom: 5.5rem;
}

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

a {
	color: var(--accent-green);
	text-decoration: none;
}

a:hover {
	text-decoration: underline;
}

.container {
	width: min(100% - 2rem, var(--max));
	margin-inline: auto;
}

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

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

@media (prefers-reduced-motion: reduce) {
	[data-reveal] {
		opacity: 1;
		transform: none;
		transition: none;
	}
}

/* Header — glass */
.site-header {
	position: sticky;
	top: 0;
	z-index: 200;
	min-height: var(--header-h);
	background: color-mix(in srgb, var(--bg) 82%, transparent);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	border-bottom: 1px solid var(--border);
}

.header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	min-height: var(--header-h);
	padding: 0.65rem 0;
	flex-wrap: wrap;
}

/* Theme toggle */
.theme-toggle {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.5rem;
	height: 2.5rem;
	padding: 0;
	border: 2px solid var(--border);
	border-radius: 999px;
	background: var(--bg-card);
	cursor: pointer;
	color: var(--text);
	flex-shrink: 0;
	transition: border-color 0.2s var(--ease), transform 0.2s var(--ease);
}

.theme-toggle:hover {
	border-color: var(--accent-green);
	transform: scale(1.04);
}

.theme-toggle:focus-visible {
	outline: 2px solid var(--accent-green);
	outline-offset: 2px;
}

.theme-toggle__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	line-height: 0;
}

.theme-toggle__icon svg {
	display: block;
}

[data-theme="light"] .theme-toggle__icon--sun {
	display: none;
}

[data-theme="light"] .theme-toggle__icon--moon {
	display: flex;
}

[data-theme="dark"] .theme-toggle__icon--sun {
	display: flex;
}

[data-theme="dark"] .theme-toggle__icon--moon {
	display: none;
}

/* Header social */
.header-social {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.15rem;
	flex-shrink: 0;
}

.header-social__link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.25rem;
	height: 2.25rem;
	border-radius: 999px;
	color: var(--text);
	opacity: 0.82;
	transition: opacity 0.2s var(--ease), color 0.2s var(--ease), transform 0.2s var(--ease), background 0.2s var(--ease);
}

.header-social__link:hover {
	opacity: 1;
	color: var(--accent-green);
	transform: translateY(-1px);
	background: color-mix(in srgb, var(--accent-green) 10%, transparent);
}

.header-social__link:focus-visible {
	outline: 2px solid var(--accent-green);
	outline-offset: 2px;
}

[data-theme="dark"] .header-social__link {
	color: var(--text);
}

.page-content-after-hero {
	padding-top: clamp(2rem, 5vw, 3.5rem);
}

/* Contact page — wide strip below form (distinct from home hero imagery) */
.contact-hero-strip {
	margin-top: 1rem;
	padding-bottom: 2.5rem;
}

.contact-hero-strip__img {
	display: block;
	width: 100%;
	max-height: min(420px, 55vh);
	height: auto;
	object-fit: cover;
	object-position: center;
	border-radius: var(--radius-lg);
	border: 1px solid var(--border);
}

@keyframes heroHomeIntroZoom {
	from {
		opacity: 0.96;
		transform: scale(1.04);
	}

	to {
		opacity: 1;
		transform: scale(1);
	}
}

@keyframes heroKenBurnsHome {
	0% {
		transform: scale(1.02) translate3d(0, 0, 0);
		background-position: 48% 44%;
	}

	50% {
		transform: scale(1.05) translate3d(-1%, -0.8%, 0);
		background-position: 52% 48%;
	}

	100% {
		transform: scale(1.03) translate3d(0.8%, 0.6%, 0);
		background-position: 48% 52%;
	}
}

/* Home hero: entrance + background motion (no reduced motion) */
@media (prefers-reduced-motion: no-preference) {
	.hero--home:not(.hero--entered) .hero__immersive-inner .hero__content {
		opacity: 0;
		transform: translateY(28px);
	}

	.hero--home .hero__immersive-inner .hero__content {
		transition: opacity 0.95s var(--ease), transform 0.95s var(--ease);
	}

	.hero--home.hero--entered .hero__immersive-inner .hero__content {
		opacity: 1;
		transform: translateY(0);
	}

	.hero--home .hero__media {
		will-change: transform;
	}

	/* Outer: first-impression zoom settle (no conflict with inner motion) */
	.hero--home .hero__kenburns-stack {
		position: absolute;
		inset: -4%;
		width: 108%;
		height: 108%;
		overflow: hidden;
		will-change: transform, opacity;
		animation: heroHomeIntroZoom 2.1s cubic-bezier(0.22, 1, 0.36, 1) forwards;
	}

	/* Inner: gentle motion only — keeps photo sharp on large screens */
	.hero--home .hero__kenburns--home {
		inset: -3%;
		width: 106%;
		height: 106%;
		animation: heroKenBurnsHome 32s ease-in-out 0.5s infinite alternate;
	}
}

/* Services page hero motion */
@media (prefers-reduced-motion: no-preference) {
	@keyframes servicesHeroIn {
		from {
			opacity: 0;
			transform: translateY(22px);
		}

		to {
			opacity: 1;
			transform: translateY(0);
		}
	}

	.services-page-hero {
		animation: servicesHeroIn 0.9s var(--ease) 0.08s forwards;
		opacity: 0;
	}
}

/* Blog index — spacing below hero + card list */
.blog-index {
	position: relative;
	padding: clamp(4rem, 12vw, 7.5rem) 0 clamp(2.75rem, 6vw, 4.5rem);
	background:
		radial-gradient(ellipse 120% 80% at 50% 0%, color-mix(in srgb, var(--accent-green) 7%, transparent) 0%, transparent 55%),
		var(--bg);
}

.blog-index__inner {
	width: min(100% - 2rem, 820px);
	margin-inline: auto;
}

.blog-index__head {
	margin-bottom: clamp(1.75rem, 4vw, 2.75rem);
	padding-bottom: 1.25rem;
	border-bottom: 1px solid color-mix(in srgb, var(--accent-green) 22%, var(--border));
}

.blog-index__eyebrow {
	margin: 0 0 0.5rem;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--accent-green);
}

.blog-index__title {
	margin: 0 0 0.5rem;
	font-family: var(--font-display);
	font-size: clamp(1.45rem, 3.2vw, 1.85rem);
	font-weight: 800;
	letter-spacing: -0.04em;
	line-height: 1.2;
	color: var(--text);
}

.blog-index__lead {
	margin: 0;
	max-width: 36rem;
	font-size: 0.98rem;
	color: var(--muted);
	line-height: 1.55;
}

.post-index {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 0.85rem;
}

.post-index__item[data-reveal] {
	transition-delay: calc(var(--reveal-stagger, 0) * 52ms);
}

.post-index__card {
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	gap: 1rem 1.15rem;
	padding: 1.05rem 1.1rem 1.05rem 1rem;
	border-radius: var(--radius);
	border: 1px solid var(--border);
	background: var(--bg-card);
	box-shadow: 0 1px 0 color-mix(in srgb, var(--text) 4%, transparent);
	text-decoration: none;
	color: inherit;
	position: relative;
	overflow: hidden;
	isolation: isolate;
	transition:
		transform 0.38s var(--ease),
		box-shadow 0.38s var(--ease),
		border-color 0.38s var(--ease),
		background 0.38s var(--ease);
}

.post-index__card::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(
		125deg,
		color-mix(in srgb, var(--accent-green) 9%, transparent) 0%,
		transparent 42%
	);
	opacity: 0;
	transition: opacity 0.38s var(--ease);
	pointer-events: none;
	z-index: 0;
}

.post-index__card:hover {
	text-decoration: none;
	transform: translateY(-3px);
	border-color: color-mix(in srgb, var(--accent-green) 38%, var(--border));
	box-shadow: var(--shadow), 0 12px 40px color-mix(in srgb, var(--accent-green) 12%, transparent);
}

.post-index__card:hover::before {
	opacity: 1;
}

.post-index__card:focus-visible {
	outline: 2px solid var(--accent-green);
	outline-offset: 3px;
}

.post-index__datebox {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	min-width: 3.35rem;
	padding: 0.55rem 0.45rem;
	border-radius: 1rem;
	background: linear-gradient(
		160deg,
		color-mix(in srgb, var(--accent-green) 16%, var(--bg-card)) 0%,
		color-mix(in srgb, var(--wood) 8%, var(--bg-card)) 100%
	);
	border: 1px solid color-mix(in srgb, var(--accent-green) 25%, var(--border));
	font-family: var(--font-display);
	font-weight: 800;
	line-height: 1.05;
	z-index: 1;
	transition: transform 0.38s var(--ease), border-color 0.38s var(--ease);
}

.post-index__datebox-day {
	font-size: 1.35rem;
	letter-spacing: -0.03em;
	color: var(--accent-green);
}

.post-index__datebox-mon {
	font-size: 0.62rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--muted);
	margin-top: 0.2rem;
}

.post-index__card:hover .post-index__datebox {
	transform: scale(1.04);
	border-color: color-mix(in srgb, var(--accent-green) 45%, var(--border));
}

.post-index__content {
	display: flex;
	flex-direction: column;
	gap: 0.35rem;
	min-width: 0;
	z-index: 1;
}

.post-index__time {
	font-size: 0.78rem;
	font-weight: 600;
	color: var(--muted);
	letter-spacing: 0.02em;
}

.post-index__title {
	font-family: var(--font-display);
	font-size: clamp(1.02rem, 2.1vw, 1.14rem);
	font-weight: 700;
	letter-spacing: -0.03em;
	line-height: 1.35;
	color: var(--text);
	transition: color 0.28s var(--ease);
}

.post-index__card:hover .post-index__title {
	color: var(--accent-green);
}

.post-index__arrow {
	display: flex;
	align-items: center;
	justify-content: center;
	color: color-mix(in srgb, var(--accent-green) 65%, var(--muted));
	z-index: 1;
	transition: transform 0.4s var(--ease), color 0.28s var(--ease);
}

.post-index__card:hover .post-index__arrow {
	transform: translateX(5px);
	color: var(--accent-green);
}

@media (max-width: 520px) {
	.blog-index__head {
		margin-bottom: 1.35rem;
	}

	.post-index {
		gap: 0.7rem;
	}

	.post-index__card {
		gap: 0.75rem 0.65rem;
		padding: 0.95rem 0.85rem 0.95rem 0.8rem;
	}

	.post-index__datebox {
		min-width: 2.85rem;
		padding: 0.48rem 0.32rem;
	}

	.post-index__datebox-day {
		font-size: 1.2rem;
	}

	.post-index__arrow svg {
		width: 18px;
		height: 18px;
	}
}

/* FAQ index — same card rhythm as blog list; expandable answers */
.post-index--faq .post-index__item {
	list-style: none;
}

.faq-card {
	position: relative;
	border-radius: var(--radius);
	border: 1px solid var(--border);
	background: var(--bg-card);
	box-shadow: 0 1px 0 color-mix(in srgb, var(--text) 4%, transparent);
	overflow: hidden;
	isolation: isolate;
	transition:
		transform 0.38s var(--ease),
		box-shadow 0.38s var(--ease),
		border-color 0.38s var(--ease),
		background 0.38s var(--ease);
}

.faq-card::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(
		125deg,
		color-mix(in srgb, var(--accent-green) 9%, transparent) 0%,
		transparent 42%
	);
	opacity: 0;
	transition: opacity 0.38s var(--ease);
	pointer-events: none;
	z-index: 0;
}

.faq-card:hover {
	border-color: color-mix(in srgb, var(--accent-green) 38%, var(--border));
	box-shadow: var(--shadow), 0 12px 40px color-mix(in srgb, var(--accent-green) 12%, transparent);
	transform: translateY(-3px);
}

.faq-card:hover::before {
	opacity: 1;
}

.faq-card[open] {
	border-color: color-mix(in srgb, var(--accent-green) 42%, var(--border));
	box-shadow: var(--shadow), 0 8px 32px color-mix(in srgb, var(--accent-green) 10%, transparent);
}

.faq-card__summary {
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	gap: 1rem 1.15rem;
	padding: 1.05rem 1.1rem 1.05rem 1rem;
	cursor: pointer;
	list-style: none;
	font-family: var(--font-sans);
	z-index: 1;
	position: relative;
}

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

.faq-card__summary::marker {
	content: "";
}

.faq-card__summary:focus-visible {
	outline: 2px solid var(--accent-green);
	outline-offset: 3px;
	border-radius: calc(var(--radius) - 4px);
}

.faq-card__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 3.35rem;
	height: 3.35rem;
	min-width: 3.35rem;
	border-radius: 1rem;
	background: linear-gradient(
		160deg,
		color-mix(in srgb, var(--accent-green) 16%, var(--bg-card)) 0%,
		color-mix(in srgb, var(--wood) 8%, var(--bg-card)) 100%
	);
	border: 1px solid color-mix(in srgb, var(--accent-green) 25%, var(--border));
	color: var(--accent-green);
	z-index: 1;
	transition: transform 0.38s var(--ease), border-color 0.38s var(--ease);
}

.faq-card__icon svg {
	display: block;
	width: 22px;
	height: 22px;
	flex-shrink: 0;
}

.faq-card:hover .faq-card__icon {
	transform: scale(1.04);
	border-color: color-mix(in srgb, var(--accent-green) 45%, var(--border));
}

.faq-card__content {
	display: flex;
	flex-direction: column;
	gap: 0.35rem;
	min-width: 0;
	z-index: 1;
}

.faq-card__meta {
	font-size: 0.78rem;
	font-weight: 600;
	color: var(--muted);
	letter-spacing: 0.02em;
}

.faq-card__title {
	font-family: var(--font-display);
	font-size: clamp(1.02rem, 2.1vw, 1.14rem);
	font-weight: 700;
	letter-spacing: -0.03em;
	line-height: 1.35;
	color: var(--text);
	transition: color 0.28s var(--ease);
}

.faq-card:hover .faq-card__title,
.faq-card[open] .faq-card__title {
	color: var(--accent-green);
}

.faq-card__chevron {
	display: flex;
	align-items: center;
	justify-content: center;
	color: color-mix(in srgb, var(--accent-green) 65%, var(--muted));
	z-index: 1;
	transition: transform 0.38s var(--ease), color 0.28s var(--ease);
	flex-shrink: 0;
}

.faq-card[open] .faq-card__chevron {
	transform: rotate(90deg);
	color: var(--accent-green);
}

.faq-card:hover .faq-card__chevron {
	color: var(--accent-green);
}

.faq-card__body {
	margin: 0;
	padding: 0 1.1rem 1.15rem;
	padding-left: calc(1rem + 3.35rem + 1.15rem);
	border-top: 1px solid color-mix(in srgb, var(--border) 85%, transparent);
	position: relative;
	z-index: 1;
}

.faq-card__body p {
	margin: 0;
	color: var(--muted);
	font-size: 0.9375rem;
	line-height: 1.58;
}

.faq-card__body p + p {
	margin-top: 0.65rem;
}

.faq-index__cta {
	text-align: center;
	margin-top: clamp(1.75rem, 4vw, 2.5rem);
}

@media (max-width: 520px) {
	.faq-card__summary {
		gap: 0.75rem 0.65rem;
		padding: 0.95rem 0.85rem 0.95rem 0.8rem;
	}

	.faq-card__icon {
		width: 2.85rem;
		height: 2.85rem;
		min-width: 2.85rem;
	}

	.faq-card__body {
		padding-left: 0.85rem;
		padding-right: 0.85rem;
	}
}

@media (prefers-reduced-motion: reduce) {
	.post-index__item[data-reveal] {
		transition-delay: 0ms;
	}

	.post-index__card,
	.post-index__card::before,
	.post-index__datebox,
	.post-index__arrow {
		transition: none;
	}

	.post-index__card:hover {
		transform: none;
	}

	.post-index__card:hover .post-index__datebox {
		transform: none;
	}

	.post-index__card:hover .post-index__arrow {
		transform: none;
	}

	.faq-card,
	.faq-card::before,
	.faq-card__icon,
	.faq-card__chevron {
		transition: none;
	}

	.faq-card:hover {
		transform: none;
	}

	.faq-card:hover .faq-card__icon {
		transform: none;
	}

	.services-page-hero {
		opacity: 1;
		animation: none;
		transform: none;
	}
}

.logo {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	font-family: var(--font-display);
	font-weight: 800;
	font-size: 1.125rem;
	letter-spacing: -0.04em;
	color: var(--text);
	text-decoration: none;
}

.logo:hover {
	text-decoration: none;
}

.logo img {
	height: 40px;
	width: auto;
	transition: transform 0.45s var(--ease), filter 0.45s var(--ease);
}

.logo:hover img {
	transform: scale(1.04);
	filter: brightness(1.05);
}

@media (prefers-reduced-motion: reduce) {
	.logo img {
		transition: none;
	}

	.logo:hover img {
		transform: none;
		filter: none;
	}
}

.nav-main {
	display: flex;
	align-items: center;
	gap: 0.25rem 1rem;
	list-style: none;
	margin: 0;
	padding: 0;
	flex-wrap: wrap;
	justify-content: flex-end;
}

.nav-main a {
	color: var(--text);
	font-size: 0.875rem;
	font-weight: 500;
	text-decoration: none;
	opacity: 0.88;
}

.nav-main a:hover,
.nav-main a[aria-current="page"] {
	opacity: 1;
	color: var(--accent-green);
}

.nav-toggle {
	display: none;
	background: var(--bg-card);
	border: 2px solid var(--border);
	border-radius: var(--radius);
	padding: 0.5rem 0.75rem;
	cursor: pointer;
	font-size: 0.875rem;
	font-family: var(--font-sans);
}

@media (max-width: 960px) {
	.nav-toggle {
		display: block;
		order: 2;
	}

	.header-inner .header-social {
		order: 3;
	}

	.header-inner .theme-toggle {
		order: 4;
	}

	.header-inner .btn--primary {
		order: 5;
		margin-left: auto;
	}

	.nav-main {
		display: none;
		order: 6;
		width: 100%;
		flex-direction: column;
		align-items: flex-start;
		padding: 1rem 0 0;
		border-top: 1px solid var(--border);
	}

	.nav-main.is-open {
		display: flex;
	}
}

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	padding: 0.65rem 1.25rem;
	border-radius: 999px;
	font-family: var(--font-sans);
	font-weight: 600;
	font-size: 0.875rem;
	border: 2px solid transparent;
	cursor: pointer;
	text-decoration: none;
	transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.2s;
	white-space: nowrap;
}

.btn:hover {
	text-decoration: none;
	transform: scale(1.02);
}

.btn--primary {
	background: var(--accent);
	color: #fff;
	border-color: var(--accent);
}

.btn--primary:hover {
	color: #fff;
	box-shadow: var(--shadow-xl);
}

.btn--ghost {
	background: transparent;
	color: var(--text);
	border-color: var(--border);
}

.btn--ghost:hover {
	border-color: var(--text);
}

.btn--dark {
	background: var(--text);
	color: #fff;
}

/* Hero showroom */
.hero {
	padding: 3rem 0 2.5rem;
	position: relative;
}

.hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(231, 229, 228, 0.65) 0%, transparent 65%);
	pointer-events: none;
	z-index: 0;
}

.hero .container {
	position: relative;
	z-index: 1;
}

@media (min-width: 768px) {
	.hero {
		padding: 4rem 0 3rem;
	}
}

.hero__grid {
	display: grid;
	gap: 2rem;
	align-items: center;
}

@media (min-width: 900px) {
	.hero__grid {
		grid-template-columns: 1fr 1fr;
		gap: 3rem;
	}
}

.hero__eyebrow {
	font-size: 0.75rem;
	text-transform: uppercase;
	letter-spacing: 0.14em;
	color: var(--wood);
	font-weight: 700;
	margin: 0 0 1rem;
}

/* Exclude .hero__hologram — lower-specificity .hero__hologram was losing to this rule (no gradient visible) */
.hero h1:not(.hero__hologram):not(.hero__title-blog) {
	font-family: var(--font-display);
	font-size: clamp(2.25rem, 5.5vw, 3.5rem);
	font-weight: 800;
	letter-spacing: -0.05em;
	line-height: 1.08;
	margin: 0 0 1.25rem;
	color: var(--text);
}

.hero__lede {
	font-size: 1.125rem;
	color: var(--muted);
	margin: 0 0 1.5rem;
	max-width: 42rem;
	line-height: 1.6;
}

.hero__ctas {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	align-items: center;
}

.hero__compare {
	font-size: 0.9375rem;
	font-weight: 500;
	color: var(--muted);
	border-bottom: 1px solid var(--border);
	padding-bottom: 2px;
}

.hero__compare:hover {
	color: var(--text);
	border-color: var(--text);
	text-decoration: none;
}

.hero__visual-wrap {
	position: relative;
	border-radius: 2rem;
	overflow: hidden;
	box-shadow: var(--shadow-xl);
	aspect-ratio: 21 / 9;
	max-height: 420px;
}

@media (max-width: 899px) {
	.hero__visual-wrap {
		aspect-ratio: 4 / 3;
		max-height: none;
	}
}

.hero__visual {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* Immersive home hero — full first screen, Ken Burns, scrim */
.hero.hero--immersive {
	padding: 0;
	margin: 0;
	position: relative;
	isolation: isolate;
	min-height: calc(100vh - var(--header-h));
	min-height: calc(100svh - var(--header-h));
	min-height: calc(100dvh - var(--header-h));
	display: flex;
	flex-direction: column;
	justify-content: center;
	overflow: hidden;
}

.hero.hero--immersive.hero--subpage {
	min-height: min(72vh, 640px);
	min-height: min(72svh, 640px);
	min-height: min(72dvh, 640px);
}

.hero.hero--immersive::before {
	display: none;
}

.hero__media {
	position: absolute;
	inset: 0;
	z-index: 0;
	overflow: hidden;
}

/* Home: extra wrapper so intro zoom + Ken Burns never fight over the same transform */
.hero--home .hero__kenburns-stack {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
}

.hero__kenburns {
	position: absolute;
	inset: -4%;
	width: 108%;
	height: 108%;
	background-image: var(--page-hero-bg, url("../images/Ayurveda-1.jpg"));
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	will-change: transform;
	animation: heroKenBurns 22s ease-in-out infinite alternate;
}

/* Subpages: gentle zoom only (home uses .hero__kenburns--home overrides) */
@keyframes heroKenBurns {
	from {
		transform: scale(1);
	}
	to {
		transform: scale(1.06);
	}
}

/* Immersive subpages: same gentle drift as home inner photo (readable, not flashy) */
.hero.hero--immersive.hero--subpage .hero__kenburns {
	inset: -3%;
	width: 106%;
	height: 106%;
	background-size: cover;
	background-position: center;
	animation: heroKenBurnsHome 28s ease-in-out 0.2s infinite alternate;
}

@media (prefers-reduced-motion: reduce) {
	.hero__kenburns {
		animation: none;
		inset: 0;
		width: 100%;
		height: 100%;
		transform: none;
	}

	.hero.hero--immersive.hero--subpage .hero__kenburns {
		animation: none;
		inset: 0;
		width: 100%;
		height: 100%;
		transform: none;
		background-position: center center;
	}

	.hero--home .hero__kenburns-stack {
		inset: 0;
		width: 100%;
		height: 100%;
		animation: none;
		transform: none;
		opacity: 1;
	}

	.hero--home .hero__kenburns--home {
		inset: 0;
		width: 100%;
		height: 100%;
		animation: none;
		background-position: center;
		transform: none;
	}
}

.hero__scrim {
	position: absolute;
	inset: 0;
	z-index: 1;
	pointer-events: none;
	background:
		linear-gradient(120deg, var(--hero-scrim-1) 0%, transparent 55%),
		linear-gradient(210deg, var(--hero-scrim-2) 0%, transparent 50%),
		radial-gradient(ellipse 90% 70% at 50% 100%, rgba(28, 25, 23, 0.55) 0%, transparent 58%);
}

/* Inner pages: lighter scrim so background photos stay visible (light + dark) */
.hero.hero--immersive.hero--subpage .hero__scrim {
	background:
		linear-gradient(125deg, rgba(20, 55, 48, 0.36) 0%, transparent 52%),
		linear-gradient(215deg, rgba(28, 25, 23, 0.26) 0%, transparent 48%),
		radial-gradient(ellipse 95% 78% at 50% 100%, rgba(22, 20, 18, 0.38) 0%, transparent 62%);
}

[data-theme="dark"] .hero.hero--immersive.hero--subpage .hero__scrim {
	background:
		linear-gradient(125deg, rgba(6, 40, 34, 0.52) 0%, transparent 52%),
		linear-gradient(215deg, rgba(10, 9, 8, 0.42) 0%, transparent 48%),
		radial-gradient(ellipse 95% 78% at 50% 100%, rgba(8, 7, 6, 0.5) 0%, transparent 62%);
}

/* About — warm cream/amber text + scrim to match Food-Mind (fresh food) photography */
.hero.hero--immersive.hero--subpage.hero--about .hero__scrim {
	background:
		linear-gradient(128deg, rgba(62, 40, 22, 0.48) 0%, transparent 54%),
		linear-gradient(218deg, rgba(45, 36, 28, 0.26) 0%, transparent 48%),
		radial-gradient(ellipse 96% 80% at 50% 100%, rgba(28, 22, 16, 0.4) 0%, transparent 64%);
}

[data-theme="dark"] .hero.hero--immersive.hero--subpage.hero--about .hero__scrim {
	background:
		linear-gradient(128deg, rgba(28, 18, 10, 0.58) 0%, transparent 54%),
		linear-gradient(218deg, rgba(12, 10, 8, 0.45) 0%, transparent 48%),
		radial-gradient(ellipse 96% 80% at 50% 100%, rgba(10, 8, 6, 0.52) 0%, transparent 64%);
}

.hero.hero--immersive.hero--about .hero__eyebrow {
	color: color-mix(in srgb, #fde68a 72%, #b45309 28%);
}

.hero.hero--immersive.hero--about h1:not(.hero__hologram) {
	color: #fffbeb;
	text-shadow: 0 2px 24px rgba(28, 22, 16, 0.4);
}

.hero.hero--immersive.hero--about .hero__title-em {
	color: color-mix(in srgb, #bbf7d0 32%, #15803d 68%);
}

.hero.hero--immersive.hero--about .lead {
	color: color-mix(in srgb, #ffedd5 85%, #57534e 15%);
}

[data-theme="dark"] .hero.hero--immersive.hero--about .hero__eyebrow {
	color: color-mix(in srgb, #fcd34d 68%, #ca8a04 32%);
}

[data-theme="dark"] .hero.hero--immersive.hero--about h1:not(.hero__hologram) {
	color: #fffbeb;
	text-shadow: 0 2px 28px rgba(0, 0, 0, 0.5);
}

[data-theme="dark"] .hero.hero--immersive.hero--about .hero__title-em {
	color: color-mix(in srgb, #86efac 38%, #22c55e 62%);
}

[data-theme="dark"] .hero.hero--immersive.hero--about .lead {
	color: color-mix(in srgb, #e7e5e4 80%, #fcd34d 20%);
}

.hero.hero--immersive.hero--about .btn--ghost {
	background: color-mix(in srgb, #fffbeb 16%, transparent);
	border-color: color-mix(in srgb, #fffbeb 48%, transparent);
	color: #fffbeb;
}

.hero.hero--immersive.hero--about .btn--ghost:hover {
	border-color: #fffbeb;
	color: #fffbeb;
}

[data-theme="dark"] .hero.hero--immersive.hero--about .btn--ghost {
	background: color-mix(in srgb, #fffbeb 10%, transparent);
	border-color: color-mix(in srgb, #fffbeb 42%, transparent);
	color: #fffbeb;
}

/* Subpage hologram headlines — consistent scale on photo heroes */
.hero.hero--immersive.hero--subpage h1.hero__hologram {
	font-family: var(--font-display);
	font-size: clamp(1.75rem, 4.2vw, 2.85rem);
	font-weight: 800;
	letter-spacing: -0.045em;
	line-height: 1.12;
	max-width: min(100%, 42rem);
}

/* Blog hero — line 1 solid; line 2 “Ayurveda & Nutrition” one line + hologram */
.hero.hero--immersive.hero--blog h1.hero__title-blog {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 0.4rem;
	margin: 0;
	max-width: min(100%, 44rem);
	font-family: var(--font-display);
	font-weight: 800;
	line-height: 1.15;
}

.hero.hero--immersive.hero--blog .hero__blog-line {
	font-size: clamp(1.05rem, 2.65vw, 1.55rem);
	font-weight: 700;
	letter-spacing: -0.03em;
	color: var(--hero-fg);
	text-shadow:
		0 1px 2px rgba(0, 0, 0, 0.5),
		0 2px 22px rgba(0, 0, 0, 0.28);
}

.hero.hero--immersive.hero--blog .hero__hologram.hero__hologram--blog-em {
	display: block;
	white-space: nowrap;
	font-size: clamp(1.2rem, 3.85vw, 2.75rem);
	letter-spacing: -0.045em;
	line-height: 1.1;
}

@media (max-width: 380px) {
	.hero.hero--immersive.hero--blog .hero__hologram.hero__hologram--blog-em {
		font-size: max(0.95rem, min(3.9vw, 2.75rem));
		letter-spacing: -0.055em;
	}
}

/* Blog — cool forest / sage (Ayurveda foliage) */
.hero.hero--immersive.hero--subpage.hero--blog .hero__scrim {
	background:
		linear-gradient(128deg, rgba(16, 52, 44, 0.5) 0%, transparent 54%),
		linear-gradient(218deg, rgba(22, 28, 26, 0.35) 0%, transparent 48%),
		radial-gradient(ellipse 96% 78% at 45% 100%, rgba(12, 22, 20, 0.55) 0%, transparent 62%);
}

.hero.hero--immersive.hero--subpage.hero--blog .hero__eyebrow {
	color: color-mix(in srgb, #d1fae5 55%, #a7f3d0 45%);
}

.hero.hero--immersive.hero--subpage.hero--blog .lead {
	color: color-mix(in srgb, #ecfdf5 88%, #6ee7b7 12%);
}

[data-theme="dark"] .hero.hero--immersive.hero--subpage.hero--blog .hero__scrim {
	background:
		linear-gradient(128deg, rgba(6, 28, 24, 0.62) 0%, transparent 54%),
		linear-gradient(218deg, rgba(8, 10, 12, 0.48) 0%, transparent 48%),
		radial-gradient(ellipse 96% 78% at 45% 100%, rgba(4, 12, 10, 0.65) 0%, transparent 62%);
}

/* Contact — calm blue-green (supportive / clinical warmth) */
.hero.hero--immersive.hero--subpage.hero--contact .hero__scrim {
	background:
		linear-gradient(125deg, rgba(22, 58, 52, 0.44) 0%, transparent 52%),
		linear-gradient(210deg, rgba(30, 38, 42, 0.32) 0%, transparent 48%),
		radial-gradient(ellipse 95% 80% at 50% 100%, rgba(18, 24, 28, 0.48) 0%, transparent 62%);
}

.hero.hero--immersive.hero--subpage.hero--contact .hero__eyebrow {
	color: color-mix(in srgb, #bae6fd 42%, #e0f2fe 58%);
}

.hero.hero--immersive.hero--subpage.hero--contact .lead {
	color: color-mix(in srgb, #f0fdfa 90%, #99f6e4 10%);
}

[data-theme="dark"] .hero.hero--immersive.hero--subpage.hero--contact .hero__scrim {
	background:
		linear-gradient(125deg, rgba(8, 38, 34, 0.55) 0%, transparent 52%),
		linear-gradient(210deg, rgba(10, 12, 14, 0.5) 0%, transparent 48%),
		radial-gradient(ellipse 95% 80% at 50% 100%, rgba(6, 10, 12, 0.58) 0%, transparent 62%);
}

/* FAQ — fresh garden green (preventive / wellness) */
.hero.hero--immersive.hero--subpage.hero--faq .hero__scrim {
	background:
		linear-gradient(126deg, rgba(28, 62, 38, 0.46) 0%, transparent 53%),
		linear-gradient(212deg, rgba(34, 30, 22, 0.3) 0%, transparent 48%),
		radial-gradient(ellipse 94% 76% at 50% 100%, rgba(20, 28, 22, 0.45) 0%, transparent 62%);
}

.hero.hero--immersive.hero--subpage.hero--faq .hero__eyebrow {
	color: color-mix(in srgb, #fef9c3 38%, #bbf7d0 62%);
}

.hero.hero--immersive.hero--subpage.hero--faq .lead {
	color: color-mix(in srgb, #f7fee7 85%, #d9f99d 15%);
}

[data-theme="dark"] .hero.hero--immersive.hero--subpage.hero--faq .hero__scrim {
	background:
		linear-gradient(126deg, rgba(12, 42, 24, 0.58) 0%, transparent 53%),
		linear-gradient(212deg, rgba(12, 10, 8, 0.48) 0%, transparent 48%),
		radial-gradient(ellipse 94% 76% at 50% 100%, rgba(8, 14, 10, 0.58) 0%, transparent 62%);
}

/* Services — balanced gold–green (treatment / pathways) */
.hero.hero--immersive.hero--subpage.hero--services .hero__scrim {
	background:
		linear-gradient(124deg, rgba(48, 42, 28, 0.5) 0%, transparent 52%),
		linear-gradient(214deg, rgba(28, 48, 38, 0.38) 0%, transparent 48%),
		radial-gradient(ellipse 96% 78% at 48% 100%, rgba(22, 26, 22, 0.5) 0%, transparent 62%);
}

.hero.hero--immersive.hero--subpage.hero--services .hero__eyebrow {
	color: color-mix(in srgb, #fde68a 45%, #fcd34d 55%);
}

.hero.hero--immersive.hero--subpage.hero--services .lead {
	color: color-mix(in srgb, #fffbeb 88%, #a7f3d0 12%);
}

[data-theme="dark"] .hero.hero--immersive.hero--subpage.hero--services .hero__scrim {
	background:
		linear-gradient(124deg, rgba(28, 24, 14, 0.62) 0%, transparent 52%),
		linear-gradient(214deg, rgba(14, 36, 28, 0.52) 0%, transparent 48%),
		radial-gradient(ellipse 96% 78% at 48% 100%, rgba(12, 14, 12, 0.6) 0%, transparent 62%);
}

/* NutriVeda — warm food / spice (meal photography) */
.hero.hero--immersive.hero--subpage.hero--nutriveda .hero__scrim {
	background:
		linear-gradient(128deg, rgba(58, 36, 22, 0.48) 0%, transparent 54%),
		linear-gradient(218deg, rgba(42, 32, 24, 0.34) 0%, transparent 48%),
		radial-gradient(ellipse 96% 80% at 50% 100%, rgba(28, 22, 16, 0.44) 0%, transparent 64%);
}

.hero.hero--immersive.hero--subpage.hero--nutriveda .hero__eyebrow {
	color: color-mix(in srgb, #fed7aa 55%, #fdba74 45%);
}

.hero.hero--immersive.hero--subpage.hero--nutriveda .lead {
	color: color-mix(in srgb, #fff7ed 90%, #ffedd5 10%);
}

[data-theme="dark"] .hero.hero--immersive.hero--subpage.hero--nutriveda .hero__scrim {
	background:
		linear-gradient(128deg, rgba(36, 22, 12, 0.58) 0%, transparent 54%),
		linear-gradient(218deg, rgba(24, 18, 12, 0.5) 0%, transparent 48%),
		radial-gradient(ellipse 96% 80% at 50% 100%, rgba(16, 12, 8, 0.55) 0%, transparent 64%);
}

/* EduVeda — paper / studio (education) */
.hero.hero--immersive.hero--subpage.hero--eduveda .hero__scrim {
	background:
		linear-gradient(126deg, rgba(36, 42, 52, 0.46) 0%, transparent 53%),
		linear-gradient(212deg, rgba(28, 32, 38, 0.34) 0%, transparent 48%),
		radial-gradient(ellipse 95% 78% at 50% 100%, rgba(22, 24, 28, 0.42) 0%, transparent 62%);
}

.hero.hero--immersive.hero--subpage.hero--eduveda .hero__eyebrow {
	color: color-mix(in srgb, #e0e7ff 50%, #c7d2fe 50%);
}

.hero.hero--immersive.hero--subpage.hero--eduveda .lead {
	color: color-mix(in srgb, #f8fafc 90%, #e2e8f0 10%);
}

[data-theme="dark"] .hero.hero--immersive.hero--subpage.hero--eduveda .hero__scrim {
	background:
		linear-gradient(126deg, rgba(18, 22, 32, 0.58) 0%, transparent 53%),
		linear-gradient(212deg, rgba(14, 16, 20, 0.5) 0%, transparent 48%),
		radial-gradient(ellipse 95% 78% at 50% 100%, rgba(10, 12, 16, 0.55) 0%, transparent 62%);
}

/* Radiology — neutral slate */
.hero.hero--immersive.hero--subpage.hero--radiology .hero__scrim {
	background:
		linear-gradient(125deg, rgba(32, 38, 48, 0.5) 0%, transparent 52%),
		linear-gradient(215deg, rgba(24, 26, 32, 0.38) 0%, transparent 48%),
		radial-gradient(ellipse 96% 78% at 50% 100%, rgba(18, 20, 26, 0.48) 0%, transparent 62%);
}

.hero.hero--immersive.hero--subpage.hero--radiology .hero__eyebrow {
	color: color-mix(in srgb, #e2e8f0 55%, #cbd5e1 45%);
}

.hero.hero--immersive.hero--subpage.hero--radiology .lead {
	color: color-mix(in srgb, #f1f5f9 92%, #e2e8f0 8%);
}

[data-theme="dark"] .hero.hero--immersive.hero--subpage.hero--radiology .hero__scrim {
	background:
		linear-gradient(125deg, rgba(16, 20, 28, 0.62) 0%, transparent 52%),
		linear-gradient(215deg, rgba(10, 12, 16, 0.55) 0%, transparent 48%),
		radial-gradient(ellipse 96% 78% at 50% 100%, rgba(8, 10, 14, 0.6) 0%, transparent 62%);
}

/* Educational services — outdoor / vitality */
.hero.hero--immersive.hero--subpage.hero--educational .hero__scrim {
	background:
		linear-gradient(124deg, rgba(28, 52, 36, 0.46) 0%, transparent 52%),
		linear-gradient(214deg, rgba(32, 36, 28, 0.34) 0%, transparent 48%),
		radial-gradient(ellipse 96% 78% at 50% 100%, rgba(22, 28, 20, 0.46) 0%, transparent 62%);
}

.hero.hero--immersive.hero--subpage.hero--educational .hero__eyebrow {
	color: color-mix(in srgb, #d9f99d 42%, #bbf7d0 58%);
}

.hero.hero--immersive.hero--subpage.hero--educational .lead {
	color: color-mix(in srgb, #f7fee7 88%, #ecfccb 12%);
}

[data-theme="dark"] .hero.hero--immersive.hero--subpage.hero--educational .hero__scrim {
	background:
		linear-gradient(124deg, rgba(12, 36, 24, 0.58) 0%, transparent 52%),
		linear-gradient(214deg, rgba(18, 22, 14, 0.5) 0%, transparent 48%),
		radial-gradient(ellipse 96% 78% at 50% 100%, rgba(12, 16, 10, 0.58) 0%, transparent 62%);
}

.hero__immersive-inner {
	position: relative;
	z-index: 2;
	width: min(100% - 2rem, var(--max));
	margin-inline: auto;
	padding: 2.5rem 0 3rem;
}

.hero--immersive .hero__eyebrow {
	color: var(--hero-eyebrow-fg);
	margin-bottom: 1rem;
}

.hero--immersive h1:not(.hero__hologram) {
	color: var(--hero-fg);
}

.hero--immersive .hero__title-em {
	font-style: normal;
	color: var(--hero-em);
}

/* Home: headline split — second line, distinct herbal / warmth mix */
.hero--home.hero--immersive .hero__title--split {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 0.45rem;
	margin: 0 0 1.25rem;
}

.hero--home.hero--immersive .hero__title--split .hero__title-line {
	display: block;
}

.hero--home.hero--immersive .hero__title-line:first-child {
	font-size: clamp(1.15rem, 0.55rem + 3.1vw, 2.65rem);
	font-weight: 800;
	letter-spacing: -0.052em;
	line-height: 1.14;
	color: var(--hero-fg);
	white-space: nowrap;
	max-width: none;
}

@media (max-width: 380px) {
	.hero--home.hero--immersive .hero__title-line:first-child {
		letter-spacing: -0.06em;
	}
}

.hero--home.hero--immersive .hero__title-line--accent {
	margin: 0.1rem 0 0;
	padding-bottom: 0.15rem;
	font-size: clamp(2rem, 5.2vw, 3.35rem);
	font-weight: 800;
	letter-spacing: -0.05em;
	line-height: 1.06;
}

/* Hologram text — photo heroes; gradient sweep + edge read */
.hero__hologram {
	border-bottom: 2px solid rgba(255, 255, 255, 0.35);
	text-shadow: 0 2px 14px rgba(0, 0, 0, 0.2);
	color: color-mix(in srgb, var(--hero-fg) 92%, #fff 8%);
	-webkit-font-smoothing: antialiased;
}

@supports (background-clip: text) or (-webkit-background-clip: text) {
	.hero__hologram {
		color: transparent;
		border-bottom-color: rgba(255, 255, 255, 0.4);
		background-image: var(--hero-hologram-gradient);
		background-size: var(--hero-hologram-bg-size);
		background-repeat: no-repeat;
		-webkit-background-clip: text;
		background-clip: text;
		box-decoration-break: clone;
		-webkit-box-decoration-break: clone;
		animation: heroHologramShift var(--hero-hologram-duration) ease-in-out infinite;
		will-change: background-position;
		filter:
			drop-shadow(0 2px 6px rgba(0, 0, 0, 0.55))
			drop-shadow(0 0 28px rgba(0, 0, 0, 0.2))
			drop-shadow(0 0 40px rgba(180, 230, 200, 0.22));
	}

	.hero.hero--immersive h1.hero__hologram .hero__title-em {
		color: transparent;
		background-image: var(--hero-hologram-gradient);
		background-size: var(--hero-hologram-bg-size);
		background-repeat: no-repeat;
		-webkit-background-clip: text;
		background-clip: text;
		animation: heroHologramShift var(--hero-hologram-duration) ease-in-out infinite;
		will-change: background-position;
		filter:
			drop-shadow(0 2px 6px rgba(0, 0, 0, 0.55))
			drop-shadow(0 0 28px rgba(0, 0, 0, 0.2))
			drop-shadow(0 0 40px rgba(180, 230, 200, 0.22));
	}
}

@media (prefers-reduced-motion: reduce) {
	.hero__hologram,
	.hero.hero--immersive h1.hero__hologram .hero__title-em {
		animation: none;
		background-size: 100% 100%;
		background-position: 50% 50%;
		will-change: auto;
	}
}

@keyframes heroHologramShift {
	0% {
		background-position: 0% 50%;
	}

	100% {
		background-position: 100% 50%;
	}
}

.hero--immersive .hero__lede {
	color: var(--hero-fg-muted);
	max-width: 40rem;
}

.hero--immersive .hero__tagline {
	margin: 1.1rem 0 0;
	max-width: 38rem;
	font-size: clamp(1rem, 2.2vw, 1.12rem);
	font-style: italic;
	font-weight: 500;
	line-height: 1.55;
	color: color-mix(in srgb, var(--hero-fg) 82%, var(--hero-em) 18%);
	border-left: 3px solid color-mix(in srgb, var(--hero-em) 55%, transparent);
	padding: 0.35rem 0 0.35rem 1rem;
}

.hero--immersive .lead {
	color: var(--hero-fg-muted);
	font-size: 1.125rem;
	margin: 0 0 1rem;
	max-width: 42rem;
	line-height: 1.6;
}

.hero--immersive .lead a {
	color: color-mix(in srgb, var(--hero-em) 72%, #fff 28%);
	font-weight: 600;
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 0.18em;
}

.hero--immersive .lead a:hover {
	color: var(--hero-fg);
}

.hero--immersive .page-hero__cta {
	margin-top: 1.25rem;
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	align-items: center;
}

.hero--immersive .hero__compare {
	color: var(--hero-fg-muted);
	border-bottom-color: color-mix(in srgb, var(--hero-fg) 45%, transparent);
}

.hero--immersive .hero__compare:hover {
	color: var(--hero-fg);
	border-bottom-color: var(--hero-fg);
}

.hero--immersive .btn--primary {
	background: var(--accent-green);
	border-color: var(--accent-green);
	color: #fff;
}

.hero--immersive .btn--primary:hover {
	color: #fff;
}

.hero--immersive .btn--ghost {
	background: color-mix(in srgb, #fff 12%, transparent);
	border-color: color-mix(in srgb, var(--hero-fg) 35%, transparent);
	color: var(--hero-fg);
}

.hero--immersive .btn--ghost:hover {
	border-color: var(--hero-fg);
	color: var(--hero-fg);
}

.hero__trust {
	margin: 1.75rem 0 0;
	font-size: 0.875rem;
	font-weight: 600;
	color: color-mix(in srgb, var(--hero-fg) 82%, var(--wood) 18%);
	letter-spacing: 0.02em;
	max-width: 36rem;
}

/* Clinical mosaic — bento gallery (replaces ticker marquee): editorial grid + hover/focus discovery */
.clinical-mosaic {
	position: relative;
	padding: clamp(2.75rem, 7vw, 4.25rem) 0;
	border-block: 1px solid color-mix(in srgb, var(--accent-green) 14%, var(--border));
	background:
		radial-gradient(ellipse 90% 70% at 100% 15%, color-mix(in srgb, var(--wood) 10%, transparent) 0%, transparent 52%),
		radial-gradient(ellipse 70% 55% at 0% 90%, color-mix(in srgb, var(--accent-green) 12%, transparent) 0%, transparent 50%),
		linear-gradient(165deg, var(--bg-stone-100) 0%, var(--bg) 45%, var(--bg-card) 100%);
	overflow: hidden;
}

.clinical-mosaic__inner {
	position: relative;
	z-index: 1;
}

.clinical-mosaic__head {
	text-align: center;
	max-width: 38rem;
	margin: 0 auto clamp(1.75rem, 4vw, 2.5rem);
	padding-inline: 0.5rem;
}

.clinical-mosaic__eyebrow {
	margin: 0 0 0.5rem;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--accent-green);
}

.clinical-mosaic__title {
	margin: 0 0 0.65rem;
	font-family: var(--font-display);
	font-size: clamp(1.45rem, 3.4vw, 2rem);
	font-weight: 800;
	letter-spacing: -0.04em;
	line-height: 1.18;
	color: var(--text);
}

.clinical-mosaic__lead {
	margin: 0;
	font-size: 0.98rem;
	line-height: 1.55;
	color: var(--muted);
}

.clinical-mosaic__grid {
	display: grid;
	gap: 0.65rem;
	grid-template-columns: repeat(4, 1fr);
	grid-template-rows: repeat(3, minmax(88px, 14vw));
	list-style: none;
	margin: 0;
	padding: 0;
}

.clinical-mosaic__cell {
	position: relative;
	margin: 0;
	border-radius: var(--radius-lg);
	overflow: hidden;
	isolation: isolate;
	cursor: default;
	outline: none;
	box-shadow:
		0 1px 0 color-mix(in srgb, var(--text) 6%, transparent),
		0 14px 36px color-mix(in srgb, var(--accent-green) 8%, transparent);
	transition:
		transform 0.5s var(--ease),
		box-shadow 0.5s var(--ease);
	animation: mosaicDrift 7s ease-in-out infinite;
}

.clinical-mosaic__cell:nth-child(1) {
	animation-delay: 0s;
}

.clinical-mosaic__cell:nth-child(2) {
	animation-delay: 0.4s;
}

.clinical-mosaic__cell:nth-child(3) {
	animation-delay: 0.8s;
}

.clinical-mosaic__cell:nth-child(4) {
	animation-delay: 0.2s;
}

.clinical-mosaic__cell:nth-child(5) {
	animation-delay: 1s;
}

.clinical-mosaic__cell:nth-child(6) {
	animation-delay: 0.6s;
}

.clinical-mosaic__cell:nth-child(7) {
	animation-delay: 1.2s;
}

.clinical-mosaic__cell:nth-child(8) {
	animation-delay: 0.15s;
}

.clinical-mosaic__cell:nth-child(9) {
	animation-delay: 0.9s;
}

.clinical-mosaic__cell--hero {
	grid-column: 1 / 3;
	grid-row: 1 / 3;
	min-height: 0;
}

.clinical-mosaic__cell:nth-child(2) {
	grid-column: 3;
	grid-row: 1;
}

.clinical-mosaic__cell:nth-child(3) {
	grid-column: 4;
	grid-row: 1;
}

.clinical-mosaic__cell:nth-child(4) {
	grid-column: 3;
	grid-row: 2;
}

.clinical-mosaic__cell:nth-child(5) {
	grid-column: 4;
	grid-row: 2;
}

.clinical-mosaic__cell:nth-child(6) {
	grid-column: 1;
	grid-row: 3;
}

.clinical-mosaic__cell:nth-child(7) {
	grid-column: 2;
	grid-row: 3;
}

.clinical-mosaic__cell:nth-child(8) {
	grid-column: 3;
	grid-row: 3;
}

.clinical-mosaic__cell:nth-child(9) {
	grid-column: 4;
	grid-row: 3;
}

.clinical-mosaic__cell::before {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: inherit;
	padding: 1px;
	background: linear-gradient(
		145deg,
		color-mix(in srgb, var(--accent-green) 45%, transparent),
		color-mix(in srgb, var(--wood) 35%, transparent),
		transparent 70%
	);
	-webkit-mask:
		linear-gradient(#fff 0 0) content-box,
		linear-gradient(#fff 0 0);
	mask:
		linear-gradient(#fff 0 0) content-box,
		linear-gradient(#fff 0 0);
	-webkit-mask-composite: xor;
	mask-composite: exclude;
	pointer-events: none;
	z-index: 2;
	opacity: 0.85;
}

.clinical-mosaic__cell img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	transform: scale(1.02);
	transition: transform 0.65s var(--ease);
}

.clinical-mosaic__cap {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 3;
	margin: 0;
	padding: 1rem 0.85rem 0.75rem;
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: #fff;
	background: linear-gradient(transparent 0%, rgba(15, 18, 16, 0.75) 45%, rgba(10, 12, 10, 0.92) 100%);
	transform: translateY(102%);
	transition: transform 0.4s var(--ease);
	pointer-events: none;
}

.clinical-mosaic__cell:hover,
.clinical-mosaic__cell:focus-visible {
	animation: none;
	transform: translateY(-6px) scale(1.015);
	box-shadow:
		0 1px 0 color-mix(in srgb, var(--text) 8%, transparent),
		0 22px 50px color-mix(in srgb, var(--accent-green) 18%, transparent);
	z-index: 4;
}

.clinical-mosaic__cell:focus-visible {
	outline: 2px solid var(--accent-green);
	outline-offset: 4px;
}

.clinical-mosaic__cell:hover img,
.clinical-mosaic__cell:focus-visible img {
	transform: scale(1.08);
}

.clinical-mosaic__cell:hover .clinical-mosaic__cap,
.clinical-mosaic__cell:focus-visible .clinical-mosaic__cap {
	transform: translateY(0);
}

@keyframes mosaicDrift {
	0%,
	100% {
		transform: translateY(0);
	}

	50% {
		transform: translateY(-3px);
	}
}

@media (max-width: 900px) {
	.clinical-mosaic__grid {
		grid-template-columns: repeat(2, 1fr);
		grid-template-rows: none;
		grid-auto-rows: minmax(120px, 28vw);
	}

	.clinical-mosaic__cell--hero {
		grid-column: 1 / -1;
		grid-row: auto;
		min-height: min(52vw, 280px);
	}

	.clinical-mosaic__grid .clinical-mosaic__cell:not(.clinical-mosaic__cell--hero) {
		grid-column: auto;
		grid-row: auto;
	}
}

@media (max-width: 520px) {
	.clinical-mosaic__grid {
		grid-template-columns: 1fr;
		grid-auto-rows: minmax(160px, 42vw);
	}

	.clinical-mosaic__cell--hero {
		min-height: 200px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.clinical-mosaic__cell {
		animation: none;
	}

	.clinical-mosaic__cell:hover,
	.clinical-mosaic__cell:focus-visible {
		transform: none;
	}

	.clinical-mosaic__cell:hover img,
	.clinical-mosaic__cell:focus-visible img {
		transform: scale(1.02);
	}

	.clinical-mosaic__cap {
		transform: translateY(0);
		padding-top: 0.65rem;
		background: linear-gradient(transparent 0%, rgba(15, 18, 16, 0.55) 100%);
	}
}

.section {
	padding: 3.5rem 0;
}

.section--tight {
	padding: 2rem 0;
}

.section__head {
	text-align: center;
	max-width: 640px;
	margin: 0 auto 2rem;
}

.section__head h2 {
	font-family: var(--font-display);
	font-size: clamp(1.65rem, 3.2vw, 2.25rem);
	font-weight: 800;
	letter-spacing: -0.04em;
	margin: 0 0 0.65rem;
	color: var(--text);
}

.section__sub {
	color: var(--muted);
	margin: 0;
	font-size: 1.02rem;
}

.eyebrow {
	font-size: 0.75rem;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	color: var(--wood);
	font-weight: 700;
	margin: 0 0 0.5rem;
}

/* Pillars */
.pillars {
	display: grid;
	gap: 1.25rem;
	grid-template-columns: 1fr;
}

@media (min-width: 640px) {
	.pillars {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 960px) {
	.pillars {
		grid-template-columns: repeat(4, 1fr);
	}

	.pillars--usp {
		grid-template-columns: repeat(3, 1fr);
	}
}

.pillar-card {
	background: var(--bg-card);
	border-radius: var(--radius-lg);
	padding: 1.5rem;
	border: 2px solid var(--border);
	box-shadow: var(--shadow);
	transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.pillar-card:hover {
	transform: scale(1.02);
	box-shadow: var(--shadow-xl);
}

.pillar-card h3 {
	font-family: var(--font-display);
	font-size: 1.2rem;
	font-weight: 800;
	letter-spacing: -0.03em;
	margin: 0 0 0.5rem;
}

.pillar-card p {
	margin: 0;
	font-size: 0.9375rem;
	color: var(--muted);
}

/* CTA band */
.cta-band {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 0.65rem 0.75rem;
	background: linear-gradient(135deg, var(--accent-green) 0%, #1a5c52 100%);
	color: #fff;
	padding: 2.5rem 1.5rem;
	border-radius: var(--radius-lg);
	text-align: center;
	margin: 2rem auto;
	max-width: var(--max);
	border: 2px solid transparent;
}

.cta-band h2 {
	flex: 1 1 100%;
	font-family: var(--font-display);
	font-weight: 800;
	letter-spacing: -0.03em;
	font-size: clamp(1.45rem, 2.8vw, 1.95rem);
	margin: 0 0 0.75rem;
	line-height: 1.3;
}

.cta-band .btn--ghost {
	border-color: rgba(255, 255, 255, 0.45);
	color: #fff;
}

.cta-band .btn--ghost:hover {
	background: rgba(255, 255, 255, 0.1);
	border-color: #fff;
}

/* Testimonials */
.testimonials {
	display: grid;
	gap: 1.25rem;
	grid-template-columns: 1fr;
}

@media (min-width: 768px) {
	.testimonials {
		grid-template-columns: repeat(3, 1fr);
	}
}

.testimonial-card {
	background: var(--bg-card);
	padding: 1.6rem;
	border-radius: var(--radius-lg);
	border: 2px solid var(--border);
	transition: transform 0.35s var(--ease);
}

.testimonial-card:hover {
	transform: scale(1.02);
}

.testimonial-card blockquote {
	margin: 0 0 1rem;
	font-size: 0.98rem;
	font-style: italic;
	color: var(--text);
}

.testimonial-card cite {
	font-size: 0.875rem;
	font-style: normal;
	color: var(--muted);
	font-weight: 600;
}

/* Service cards + selection */
.services-grid {
	display: grid;
	gap: 1.5rem;
	grid-template-columns: 1fr;
}

@media (min-width: 700px) {
	.services-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

/* Services page: three main lines + book */
.services-grid--quad {
	grid-template-columns: 1fr;
}

@media (min-width: 640px) {
	.services-grid--quad {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 1024px) {
	.services-grid--quad {
		grid-template-columns: repeat(4, 1fr);
	}
}

.service-card {
	background: var(--bg-card);
	border-radius: var(--radius-lg);
	overflow: hidden;
	border: 2px solid var(--border);
	box-shadow: var(--shadow);
	transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.2s;
	cursor: pointer;
	isolation: isolate;
}

.service-card--selectable {
	cursor: pointer;
}

.service-card.is-active {
	border-color: var(--accent);
	box-shadow: var(--shadow-xl);
	transform: scale(1.03);
}

.service-card:not(.service-card--selectable):hover,
.service-card--selectable:hover:not(.is-active) {
	transform: scale(1.02);
	box-shadow: var(--shadow-xl);
	border-color: color-mix(in srgb, var(--accent-green) 45%, var(--border));
}

@media (prefers-reduced-motion: reduce) {
	.service-card:not(.service-card--selectable):hover,
	.service-card--selectable:hover:not(.is-active) {
		transform: none;
	}
}

.service-card img {
	width: 100%;
	aspect-ratio: 4/3;
	object-fit: cover;
	object-position: center;
	mix-blend-mode: normal;
	background: var(--bg-stone-100);
}

.service-card__body {
	padding: 1.35rem 1.5rem 1.5rem;
}

.service-card h3 {
	font-family: var(--font-display);
	font-size: 1.1rem;
	font-weight: 800;
	letter-spacing: -0.03em;
	margin: 0 0 0.45rem;
}

.service-card h3 a {
	color: inherit;
}

.service-card p {
	margin: 0;
	font-size: 0.92rem;
	color: var(--muted);
}

/* Sticky book bar */
.sticky-book-bar {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 150;
	display: none;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	flex-wrap: wrap;
	padding: 0.85rem 1.25rem;
	background: rgba(255, 255, 255, 0.92);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	border-top: 2px solid var(--border);
	box-shadow: 0 -8px 30px rgba(0, 0, 0, 0.08);
}

.sticky-book-bar.is-visible {
	display: flex;
}

.sticky-book-bar__left {
	font-size: 0.9rem;
}

.sticky-book-bar__left strong {
	font-family: var(--font-display);
	font-weight: 800;
	letter-spacing: -0.03em;
}

.sticky-book-bar__status {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	color: var(--muted);
	font-size: 0.8rem;
	margin-top: 0.2rem;
}

.sticky-book-bar__status::before {
	content: "";
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #22c55e;
}

.blog-row {
	display: grid;
	gap: 1.5rem;
	grid-template-columns: 1fr;
}

@media (min-width: 700px) {
	.blog-row {
		grid-template-columns: repeat(3, 1fr);
	}
}

.blog-card {
	background: var(--bg-card);
	border-radius: var(--radius-lg);
	overflow: hidden;
	border: 2px solid var(--border);
	transition: transform 0.35s var(--ease);
}

.blog-card:hover {
	transform: scale(1.02);
}

/* Thumbnails: show full graphic (incl. text baked into asset) — not a tight crop */
.blog-card > a {
	display: block;
	background: var(--bg-stone-100);
}

.blog-card img {
	width: 100%;
	height: auto;
	min-height: 160px;
	max-height: 280px;
	object-fit: contain;
	object-position: center top;
}

.blog-card__body {
	padding: 1.15rem;
}

.blog-card .meta {
	font-size: 0.8rem;
	color: var(--muted);
	margin: 0 0 0.35rem;
}

.blog-card h3 {
	font-family: var(--font-display);
	font-size: 1.05rem;
	font-weight: 800;
	letter-spacing: -0.03em;
	margin: 0;
}

.blog-card a {
	color: inherit;
	text-decoration: none;
}

.blog-card a:hover {
	color: var(--accent-green);
}

.site-footer {
	background: #1c1917;
	color: rgba(255, 255, 255, 0.85);
	padding: 2.75rem 0 1.75rem;
	margin-top: 3rem;
}

.site-footer a {
	color: rgba(255, 255, 255, 0.9);
}

.site-footer__grid {
	display: grid;
	gap: 1.75rem;
	grid-template-columns: 1fr;
}

@media (min-width: 768px) {
	.site-footer__grid {
		grid-template-columns: 2fr 1fr 1fr;
	}
}

.site-footer h3 {
	font-family: var(--font-display);
	font-size: 0.95rem;
	font-weight: 800;
	margin: 0 0 0.85rem;
	color: #fff;
}

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

.site-footer li {
	margin-bottom: 0.45rem;
}

.footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	margin-top: 1.75rem;
	padding-top: 1.25rem;
	font-size: 0.8125rem;
	color: rgba(255, 255, 255, 0.5);
	text-align: center;
}

.page-hero {
	padding: 2.5rem 0 1.5rem;
	text-align: center;
	max-width: 720px;
	margin: 0 auto;
}

.page-hero h1 {
	font-family: var(--font-display);
	font-size: clamp(1.85rem, 4vw, 2.75rem);
	font-weight: 800;
	letter-spacing: -0.05em;
	margin: 0 0 0.85rem;
}

.page-hero .lead {
	color: var(--muted);
	font-size: 1.05rem;
	margin: 0;
}

.prose {
	max-width: 680px;
	margin: 0 auto;
	padding: 0 0 2.5rem;
}

.prose p {
	margin: 0 0 1.15rem;
}

.prose h2,
.prose h3 {
	font-family: var(--font-display);
	font-weight: 800;
	letter-spacing: -0.04em;
}

.prose h2 {
	font-size: 1.4rem;
	margin: 1.75rem 0 0.65rem;
}

.prose h3 {
	font-size: 1.15rem;
	margin: 1.25rem 0 0.5rem;
}

.post-body {
	overflow-wrap: break-word;
}

.post-body p {
	margin: 0 0 1rem;
}

.post-body ul,
.post-body ol {
	margin: 0 0 1rem;
	padding-left: 1.25rem;
	color: var(--muted);
}

.prose ul,
.prose ol {
	margin: 0 0 1rem;
	padding-left: 1.25rem;
	color: var(--muted);
}

.prose .wp-block-image {
	margin: 1.25rem 0;
}

.prose img {
	border-radius: var(--radius);
}

.two-col {
	display: grid;
	gap: 1.75rem;
	align-items: start;
}

@media (min-width: 800px) {
	.two-col {
		grid-template-columns: 1fr 1fr;
	}
}

.img-rounded {
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow);
}

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

@media (min-width: 600px) {
	.sitemap-grid {
		columns: 2;
	}
}

.sitemap-list li {
	margin-bottom: 0.45rem;
	break-inside: avoid;
}

.contact-grid {
	display: grid;
	gap: 1.5rem;
}

@media (min-width: 768px) {
	.contact-grid {
		grid-template-columns: 1fr 1fr;
	}
}

.contact-card {
	background: var(--bg-card);
	padding: 1.5rem;
	border-radius: var(--radius-lg);
	border: 2px solid var(--border);
}

.contact-card h2 {
	font-family: var(--font-display);
	font-size: 1.15rem;
	font-weight: 800;
	margin: 0 0 0.75rem;
}

.contact-card p {
	margin: 0;
	color: var(--muted);
}

/* About: editorial split */
.editorial-split {
	display: grid;
	gap: 2.5rem;
	align-items: start;
}

@media (min-width: 900px) {
	.editorial-split {
		grid-template-columns: 1fr 1fr;
	}
}

.section-label {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	font-size: 0.75rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	color: var(--muted);
	margin-bottom: 1rem;
}

.section-label::before {
	content: "";
	width: 2rem;
	height: 2px;
	background: var(--border);
}

.editorial-split h2 {
	font-family: var(--font-display);
	font-size: clamp(1.75rem, 3vw, 2.5rem);
	font-weight: 800;
	letter-spacing: -0.05em;
	line-height: 1.15;
	margin: 0 0 1rem;
}

.image-grid-stagger {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 0.75rem;
}

.image-grid-stagger img {
	border-radius: var(--radius);
	width: 100%;
	object-fit: cover;
	object-position: center;
	transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.image-grid-stagger img:hover {
	transform: scale(1.02);
	box-shadow: var(--shadow);
}

.image-grid-stagger .tall {
	grid-row: span 2;
	min-height: 240px;
}

.image-grid-stagger .short {
	min-height: 140px;
}

/* Dark band */
.dark-band {
	background: var(--text);
	color: #e7e5e4;
	padding: 3.5rem 0;
	margin: 2rem 0;
}

.dark-band h2 {
	font-family: var(--font-display);
	font-weight: 800;
	letter-spacing: -0.04em;
	color: #fafaf9;
}

.dark-band .section__sub {
	color: #a8a29e;
}

.feature-walk-grid {
	display: grid;
	gap: 1.5rem;
	grid-template-columns: 1fr;
}

@media (min-width: 768px) {
	.feature-walk-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

.feature-walk-card {
	text-align: left;
}

.feature-walk-card h3 {
	color: #fafaf9;
}

.feature-walk-card img {
	opacity: 0.6;
	border-radius: var(--radius);
	margin-bottom: 1rem;
}

.feature-walk-card ul {
	list-style: none;
	padding: 0;
	margin: 0.5rem 0 0;
}

.feature-walk-card li {
	position: relative;
	padding-left: 1.35rem;
	margin-bottom: 0.5rem;
	font-size: 0.9rem;
	color: #d6d3d1;
}

.feature-walk-card li::before {
	content: "✓";
	position: absolute;
	left: 0;
	color: var(--wood);
	font-weight: 700;
}

/* Spec table */
.spec-table-wrap {
	overflow-x: auto;
	margin: 2rem 0;
	border-radius: var(--radius-lg);
	border: 2px solid var(--border);
	background: var(--bg-card);
}

.spec-table {
	width: 100%;
	border-collapse: collapse;
	font-size: 0.9rem;
}

.spec-table th,
.spec-table td {
	padding: 1rem 1.25rem;
	text-align: left;
	border-bottom: 1px solid var(--border);
	vertical-align: top;
}

.spec-table th {
	font-family: var(--font-display);
	font-weight: 800;
	font-size: 0.85rem;
	letter-spacing: -0.02em;
}

.spec-table tr:last-child th,
.spec-table tr:last-child td {
	border-bottom: none;
}

.spec-table .col-featured {
	background: var(--bg-stone-100);
	font-weight: 600;
}

/* Material badge */
.material-badge {
	display: inline-block;
	padding: 1rem 1.25rem;
	background: rgba(255, 255, 255, 0.92);
	backdrop-filter: blur(12px);
	border-radius: var(--radius);
	border: 2px solid var(--border);
	max-width: 240px;
}

.material-badge__label {
	font-size: 0.625rem;
	font-weight: 800;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	color: var(--muted);
	margin: 0 0 0.35rem;
}

.material-badge__text {
	display: block;
	font-size: 0.875rem;
	font-weight: 500;
	color: var(--text);
	margin: 0;
	line-height: 1.4;
}

.service-card__more {
	margin: 0.85rem 0 0;
	font-size: 0.875rem;
}

.service-card__more a {
	color: var(--accent-green);
	font-weight: 700;
}

/* Dark theme — global tokens + surfaces */
[data-theme="dark"] {
	color-scheme: dark;
	--bg: #161412;
	--bg-stone-100: #1e1b18;
	--bg-card: #242019;
	--text: #f5f2eb;
	--muted: #b5aea3;
	--border: #3d3830;
	--wood: #d4a574;
	--aluminum: #4a443c;
	--accent: #7cb89a;
	--accent-green: #6d9e7e;
	--shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
	--shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
	--hero-fg: color-mix(in srgb, #faf8f3 90%, var(--accent-green) 10%);
	--hero-fg-muted: color-mix(in srgb, #e8e3da 76%, var(--muted) 24%);
	--hero-eyebrow-fg: color-mix(in srgb, #fde68a 22%, var(--wood) 78%);
	--hero-em: color-mix(in srgb, #a7d4b8 32%, var(--accent-green) 68%);
	--hero-scrim-1: rgba(18, 42, 28, 0.75);
	--hero-scrim-2: rgba(14, 12, 10, 0.68);
	--hero-hologram-gradient: linear-gradient(
		95deg,
		#6ad4a8,
		#f0e0a0,
		#7ec8f0,
		#f0b8d8,
		#9ee878,
		#c8a8f8,
		#7ee0c0,
		#f8e8b0,
		#6ad4a8
	);
	--hero-hologram-bg-size: 240% 100%;
	--hero-hologram-duration: 14s;
}

[data-theme="dark"] .site-header {
	background: rgba(20, 18, 17, 0.88);
	border-bottom-color: var(--border);
}

[data-theme="dark"] .clinical-mosaic {
	background:
		radial-gradient(ellipse 90% 70% at 100% 15%, color-mix(in srgb, var(--wood) 14%, transparent) 0%, transparent 52%),
		radial-gradient(ellipse 70% 55% at 0% 90%, color-mix(in srgb, var(--accent-green) 14%, transparent) 0%, transparent 50%),
		linear-gradient(165deg, var(--bg-stone-100) 0%, var(--bg) 50%, var(--bg-card) 100%);
	border-block-color: var(--border);
}

[data-theme="dark"] .clinical-mosaic__cell {
	box-shadow:
		0 1px 0 color-mix(in srgb, var(--text) 10%, transparent),
		0 14px 40px rgba(0, 0, 0, 0.45);
}

[data-theme="dark"] .clinical-mosaic__cell:hover,
[data-theme="dark"] .clinical-mosaic__cell:focus-visible {
	box-shadow:
		0 1px 0 color-mix(in srgb, var(--text) 12%, transparent),
		0 24px 56px rgba(0, 0, 0, 0.55);
}

[data-theme="dark"] .nav-toggle {
	background: var(--bg-card);
	border-color: var(--border);
	color: var(--text);
}

[data-theme="dark"] .theme-toggle {
	background: var(--bg-card);
	border-color: var(--border);
	color: var(--text);
}

[data-theme="dark"] .sticky-book-bar {
	background: rgba(28, 25, 23, 0.94);
	border-top-color: var(--border);
	box-shadow: 0 -8px 30px rgba(0, 0, 0, 0.4);
}

[data-theme="dark"] .sticky-book-bar__left strong {
	color: var(--text);
}

[data-theme="dark"] .material-badge {
	background: rgba(31, 28, 26, 0.92);
	border-color: var(--border);
}

[data-theme="dark"] .material-badge__text {
	color: var(--text);
}

[data-theme="dark"] .site-footer {
	background: #0c0a09;
}

[data-theme="dark"] .dark-band {
	background: #0c0a09;
}

[data-theme="dark"] .spec-table .col-featured {
	background: var(--bg-stone-100);
}
