/*
 * Lashibi Funeral Homes Theme Stylesheet
 *
 * Design tokens, layout primitives, and component styles.
 * Mirrors the React + Tailwind v4 source at lashibi.replit.app
 * as static CSS so the WordPress theme renders without a build step.
 */

/* ============================================================
   1. Design Tokens
   ============================================================ */
:root {
	/* Brand */
	--primary-hex: #cc171e;
	--primary: 358 80% 45%;
	--primary-foreground: 0 0% 100%;

	/* Stone scale (matches Tailwind v4 stone palette) */
	--stone-50:  #fafaf9;
	--stone-100: #f5f5f4;
	--stone-200: #e7e5e4;
	--stone-300: #d6d3d1;
	--stone-400: #a8a29e;
	--stone-500: #78716c;
	--stone-600: #57534e;
	--stone-700: #44403c;
	--stone-800: #292524;
	--stone-900: #1c1917;
	--stone-950: #0c0a09;

	/* Surfaces */
	--background: #ffffff;
	--foreground: #1c1917;
	--muted: var(--stone-100);
	--muted-foreground: var(--stone-500);
	--border: var(--stone-200);

	/* Typography */
	--font-sans: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	--font-serif: 'Inter', system-ui, -apple-system, sans-serif;

	/* Radii */
	--radius: 0.875rem;
	--radius-sm: 0.5rem;
	--radius-md: 0.75rem;
	--radius-lg: 1rem;
	--radius-xl: 1.5rem;
	--radius-2xl: 2rem;
	--radius-3xl: 2.5rem;
	--radius-full: 9999px;

	/* Container */
	--container-max: 1280px;
	--container-pad: 1.5rem;

	/* Easing */
	--ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ============================================================
   2. Reset & Base
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
	margin: 0;
	font-family: var(--font-sans);
	font-weight: 400;
	color: var(--foreground);
	background: var(--background);
	line-height: 1.55;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	font-optical-sizing: auto;
	font-synthesis: none;
	text-rendering: optimizeLegibility;
}
img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: var(--primary-hex); text-decoration: none; transition: color 0.25s ease; }
a:hover { color: var(--foreground); }
button { font-family: inherit; cursor: pointer; }
ul, ol { padding-left: 1.5rem; }

h1, h2, h3, h4, h5, h6 {
	font-family: var(--font-serif);
	letter-spacing: -0.025em;
	font-weight: 500;
	color: var(--foreground);
	margin: 0 0 1rem;
	line-height: 1.15;
}

::selection { background: hsl(var(--primary) / 0.2); color: var(--primary-hex); }

/* Accessibility */
.screen-reader-text {
	border: 0; clip: rect(1px, 1px, 1px, 1px); clip-path: inset(50%);
	height: 1px; margin: -1px; overflow: hidden; padding: 0;
	position: absolute !important; width: 1px; word-wrap: normal !important;
}
.skip-link {
	position: absolute; top: -100px; left: 1rem;
	background: var(--primary-hex); color: #fff; padding: 0.75rem 1.25rem;
	border-radius: var(--radius-full); z-index: 100;
	transition: top 0.2s ease;
}
.skip-link:focus { top: 1rem; color: #fff; }

:focus-visible { outline: 2px solid var(--primary-hex); outline-offset: 2px; }

/* ============================================================
   3. Layout Primitives
   ============================================================ */
.container {
	width: calc(100% - (var(--container-pad) * 2));
	max-width: var(--container-max);
	margin: 0 auto;
	padding: 0;
}

@media (min-width: 768px) {
	:root { --container-pad: 2rem; }
}
@media (min-width: 1024px) {
	.container {
		width: 80%;
		max-width: none;
	}
}

/* Lucide icon defaults */
[data-lucide] {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 1.25em;
	height: 1.25em;
	stroke-width: 1.5;
	vertical-align: middle;
	flex-shrink: 0;
}
.lucide svg { width: 100%; height: 100%; }

/* ============================================================
   4. Reusable Components
   ============================================================ */

/* Buttons */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	padding: 0.75rem 1.5rem;
	border-radius: var(--radius-full);
	font-weight: 700;
	font-size: 0.875rem;
	letter-spacing: 0.01em;
	border: 1px solid transparent;
	cursor: pointer;
	box-shadow: 0 0 0 hsl(0 0% 0% / 0);
	transition: background 0.22s ease, color 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease, transform 0.22s var(--ease-out-expo);
	text-decoration: none;
	white-space: nowrap;
}
.btn--primary {
	background: var(--primary-hex);
	color: #fff;
	box-shadow: 0 0.55rem 1.2rem hsl(var(--primary) / 0.18);
}
.btn--primary:hover {
	background: hsl(var(--primary) / 0.96);
	color: #fff;
	box-shadow: 0 0.8rem 1.7rem hsl(var(--primary) / 0.28);
}
.btn--ghost {
	background: transparent;
	color: var(--foreground);
	border-color: hsl(0 0% 10% / 0.15);
}
.btn--ghost:hover {
	background: hsl(0 0% 10% / 0.05);
	color: var(--foreground);
	border-color: hsl(0 0% 10% / 0.25);
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0) scale(0.985); }
.btn:focus-visible {
	outline: 0;
	box-shadow: 0 0 0 4px hsl(var(--primary) / 0.18), 0 0.8rem 1.7rem hsl(var(--primary) / 0.18);
}
.btn--small { padding: 0.625rem 1.25rem; font-size: 0.8125rem; }
.btn--large { padding: 1rem 2.25rem; font-size: 0.9375rem; }
.btn--shadow { box-shadow: 0 10px 30px -10px hsl(var(--primary) / 0.4); }
.btn [data-lucide] {
	width: 1rem;
	height: 1rem;
	transition: transform 0.22s var(--ease-out-expo);
}
.btn:hover [data-lucide] { transform: translateX(0.16rem); }

/* Eyebrow label */
.eyebrow {
	display: inline-block;
	color: var(--primary-hex);
	font-size: 0.75rem;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.2em;
	margin-bottom: 1rem;
}
.eyebrow--light { color: rgba(255,255,255,0.85); }

/* Section header */
.section-header { margin-bottom: 3.5rem; }
.section-header--center { text-align: center; max-width: 42rem; margin-left: auto; margin-right: auto; }
.section-header--row {
	display: flex;
	flex-direction: column;
	gap: 2rem;
	align-items: flex-start;
	margin-bottom: 4rem;
}
@media (min-width: 768px) {
	.section-header--row { flex-direction: row; align-items: flex-end; justify-content: space-between; }
}
.section-header__heading {
	font-family: var(--font-serif);
	font-size: clamp(2.25rem, 4vw, 3rem);
	color: var(--foreground);
	margin: 0 0 1.5rem;
	line-height: 1.1;
	letter-spacing: -0.025em;
}
.section-header__intro {
	color: hsl(0 0% 10% / 0.6);
	font-weight: 300;
	line-height: 1.7;
	font-size: 1rem;
	margin: 0;
}
.section-header__text { max-width: 36rem; }
.section-header__link {
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
	color: var(--primary-hex);
	font-weight: 500;
	font-size: 0.875rem;
	letter-spacing: 0.15em;
	text-transform: uppercase;
}
.section-header__link span {
	border-bottom: 1px solid hsl(var(--primary) / 0.3);
	padding-bottom: 0.25rem;
	transition: border-color 0.25s ease;
}
.section-header__link:hover span { border-bottom-color: var(--primary-hex); }

/* ============================================================
   5. Header
   ============================================================ */
.site-header {
	position: fixed;
	top: 0; left: 0; right: 0;
	z-index: 50;
	background: transparent;
}
.utility-bar {
	background: var(--stone-900);
	color: rgba(255,255,255,0.8);
	font-size: 0.75rem;
	overflow: visible;
	transition: max-height 0.5s ease, opacity 0.5s ease;
	max-height: none;
	opacity: 1;
	display: block;
}
.utility-bar > .container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.75rem 1.5rem;
	min-height: 2.5rem;
	flex-wrap: wrap;
	padding-top: 0.45rem;
	padding-bottom: 0.45rem;
}
.utility-bar__item {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	min-width: 0;
	color: rgba(255,255,255,0.8);
}
.utility-bar__item [data-lucide] { width: 0.875rem; height: 0.875rem; color: var(--primary-hex); }
.utility-bar__address span {
	white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.utility-bar__address:hover,
.utility-bar__address:focus-visible {
	color: #fff;
	text-decoration: underline;
	text-decoration-color: hsl(var(--primary) / 0.7);
	text-underline-offset: 0.18em;
}
.utility-bar__group { display: inline-flex; gap: 1.5rem; flex-shrink: 0; flex-wrap: wrap; }
.utility-bar__phone { color: #fff; font-weight: 500; }
.utility-bar__phone:hover { color: #fff; }
@media (max-width: 767px) {
	.utility-bar {
		font-size: 0.6875rem;
	}
	.utility-bar > .container {
		justify-content: center;
		text-align: center;
	}
	.utility-bar__address span {
		white-space: normal;
	}
	.utility-bar__group {
		justify-content: center;
		gap: 0.75rem;
	}
}

.nav-bar {
	background: rgba(255,255,255,0.95);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	border-bottom: 1px solid var(--stone-200);
	padding: 1rem 0;
	transition: padding 0.3s ease, box-shadow 0.3s ease;
}
.site-header.is-scrolled .nav-bar { padding: 0.75rem 0; box-shadow: 0 1px 2px hsl(0 0% 0% / 0.04); }
.nav-bar > .container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1.5rem;
}
.brand { display: inline-flex; align-items: center; flex-shrink: 0; }
.brand__logo { height: 2.5rem; width: auto; object-fit: contain; }
@media (min-width: 768px) { .brand__logo { height: 3.5rem; } }

.primary-nav { display: none; }
@media (min-width: 1280px) { .primary-nav { display: flex; } }
.primary-nav__list {
	list-style: none;
	display: flex;
	align-items: center;
	gap: 1.75rem;
	margin: 0;
	padding: 0;
}
.primary-nav__list a {
	font-size: 0.875rem;
	font-weight: 500;
	color: var(--stone-800);
	transition: color 0.25s ease;
}
.primary-nav__list a:hover,
.primary-nav__list .current-menu-item > a,
.primary-nav__list .current-menu-parent > a,
.primary-nav__list .current_page_item > a { color: var(--primary-hex); }

.nav-actions { display: flex; align-items: center; gap: 1rem; }
.nav-contact-btn { display: none; }
@media (min-width: 640px) { .nav-contact-btn { display: inline-flex; } }
.menu-toggle {
	background: transparent;
	border: 0;
	padding: 0.5rem;
	color: var(--stone-800);
	transition: color 0.25s ease;
	display: inline-flex;
}
@media (min-width: 1280px) { .menu-toggle { display: none; } }
.menu-toggle:hover { color: var(--primary-hex); }
.menu-toggle [data-lucide] { width: 1.5rem; height: 1.5rem; }

/* Mobile menu */
.mobile-menu {
	position: fixed;
	inset: 0;
	z-index: 60;
	background: #fff;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.35s ease;
}
.mobile-menu.is-open {
	opacity: 1;
	visibility: visible;
}
.mobile-menu__close {
	position: absolute;
	top: 1.5rem;
	right: 1.5rem;
	background: transparent;
	border: 0;
	padding: 1rem;
	color: var(--foreground);
	transition: color 0.25s ease;
}
.mobile-menu__close:hover { color: var(--primary-hex); }
.mobile-menu__close [data-lucide] { width: 2rem; height: 2rem; }
.mobile-menu__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1.25rem;
}
.mobile-menu__list a {
	font-family: var(--font-serif);
	font-size: 1.875rem;
	color: var(--foreground);
	transition: color 0.25s ease;
}
@media (min-width: 768px) { .mobile-menu__list a { font-size: 2.25rem; } }
.mobile-menu__list a:hover { color: var(--primary-hex); }
.mobile-menu__footer {
	position: absolute;
	bottom: 3rem;
	font-size: 0.875rem;
	color: rgba(28,25,23,0.6);
	letter-spacing: 0.05em;
}
.mobile-menu__footer a { color: var(--primary-hex); font-weight: 500; }

/* ============================================================
   6. Main content offset (account for fixed header)
   ============================================================ */
.site-content { padding-top: 0; }
body.is-inner-page .site-content { padding-top: 0; }
/* Hero is full-screen so it absorbs the header. Inner pages use page-hero
   which has its own padding-top accounting for the header. */

/* ============================================================
   7. Hero (home)
   ============================================================ */
.hero {
	position: relative;
	background: var(--stone-900);
	min-height: 100vh;
	overflow: hidden;
}
.hero__media {
	position: absolute;
	inset: 0;
}
.hero__slide {
	position: absolute;
	inset: 0;
	opacity: 0;
	transform: scale(1.06);
	transition: opacity 1.4s var(--ease-out-expo), transform 1.4s var(--ease-out-expo);
	pointer-events: none;
}
.hero__slide.is-active { opacity: 1; transform: scale(1); }
.hero__slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}
.hero__overlay {
	position: absolute;
	inset: 0;
	pointer-events: none;
}
.hero__overlay--horizontal {
	background: linear-gradient(to right,
		hsl(20 14% 4% / 0.34),
		hsl(20 14% 8% / 0.24),
		hsl(20 14% 8% / 0.08));
}
.hero__overlay--vertical {
	background: linear-gradient(to top,
		hsl(20 14% 4% / 0.22),
		transparent,
		transparent);
}
.hero__inner {
	position: relative;
	z-index: 10;
	padding-top: 14rem;
	padding-bottom: 5rem;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.hero__content { max-width: 54rem; }
.hero__eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 1rem;
	margin-bottom: 1.5rem;
}
.hero__rule {
	display: inline-block;
	width: 3rem;
	height: 1px;
	background: var(--primary-hex);
}
.hero__eyebrow span:last-child {
	color: rgba(255,255,255,0.8);
	font-size: 0.75rem;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.25em;
}
.hero__text { min-height: 11rem; position: relative; }
.hero__text-slide {
	position: absolute;
	inset: 0;
	opacity: 0;
	transform: translateY(20px);
	transition: opacity 0.7s ease-out, transform 0.7s ease-out;
	pointer-events: none;
}
.hero__text-slide.is-active { opacity: 1; transform: translateY(0); position: relative; pointer-events: auto; }
.hero__title {
	font-family: var(--font-serif);
	font-size: clamp(2.25rem, 5vw, 3.75rem);
	color: #fff;
	line-height: 1.1;
	margin-bottom: 1.5rem;
	letter-spacing: -0.025em;
	font-weight: 500;
}
.hero__subtitle {
	font-size: 1.125rem;
	color: rgba(255,255,255,0.75);
	font-weight: 300;
	line-height: 1.7;
	max-width: 42rem;
	margin: 0;
}
@media (min-width: 768px) {
	.hero__subtitle { font-size: 1.25rem; }
}
.hero__cta { margin-top: 2.5rem; }
.hero__controls {
	margin-top: 3rem;
	display: flex;
	align-items: center;
	gap: 1.5rem;
}
.hero__arrows { display: flex; gap: 0.5rem; }
.hero__arrow {
	padding: 0.75rem;
	border: 1px solid rgba(255,255,255,0.25);
	background: transparent;
	border-radius: var(--radius-full);
	color: rgba(255,255,255,0.7);
	transition: background 0.25s ease, color 0.25s ease;
}
.hero__arrow:hover { background: rgba(255,255,255,0.1); color: #fff; }
.hero__arrow [data-lucide] { width: 1.25rem; height: 1.25rem; }
.hero__dots { display: flex; gap: 0.5rem; align-items: center; }
.hero__dot {
	height: 0.25rem;
	width: 1rem;
	background: rgba(255,255,255,0.3);
	border: 0;
	border-radius: var(--radius-full);
	transition: all 0.5s ease;
	cursor: pointer;
}
.hero__dot.is-active { width: 2rem; background: var(--primary-hex); }

/* ============================================================
   8. Testimonials Slider
   ============================================================ */
.testimonials {
	background: #fff;
	padding: 4rem 0 5rem;
	border-top: 1px solid var(--stone-200);
	border-bottom: 1px solid var(--stone-200);
}
@media (min-width: 768px) { .testimonials { padding: 5rem 0; } }
.testimonials__stage {
	max-width: 72rem;
	margin: 0 auto;
	position: relative;
}
.testimonials__viewport {
	min-height: 15rem;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
}
.testimonials__item {
	text-align: center;
	padding: 0 1rem;
	opacity: 0;
	transform: translateY(20px);
	transition: opacity 0.6s var(--ease-out-expo), transform 0.6s var(--ease-out-expo);
	position: absolute;
	inset: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	pointer-events: none;
}
.testimonials__item.is-active { opacity: 1; transform: translateY(0); position: relative; pointer-events: auto; }
.testimonials__icon {
	width: 3rem;
	height: 3rem;
	border-radius: var(--radius-full);
	background: hsl(var(--primary) / 0.1);
	color: var(--primary-hex);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 1.5rem;
}
.testimonials__icon [data-lucide] { width: 1.5rem; height: 1.5rem; }
.testimonials__quote {
	font-family: var(--font-serif);
	font-size: clamp(1.25rem, 2.5vw, 1.875rem);
	color: var(--stone-800);
	line-height: 1.5;
	margin: 0 auto 1.5rem;
	max-width: 64rem;
	font-weight: 400;
	letter-spacing: -0.01em;
}
.testimonials__author {
	color: var(--stone-500);
	font-weight: 500;
	font-size: 0.875rem;
	letter-spacing: 0.04em;
}
.testimonials__controls {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1.5rem;
	margin-top: 2rem;
}
.testimonials__arrow {
	padding: 0.75rem;
	border: 1px solid var(--stone-300);
	background: transparent;
	border-radius: var(--radius-full);
	color: var(--stone-400);
	transition: background 0.25s ease, color 0.25s ease;
}
.testimonials__arrow:hover { background: var(--stone-100); color: var(--stone-700); }
.testimonials__arrow [data-lucide] { width: 1.25rem; height: 1.25rem; }
.testimonials__dots { display: flex; gap: 0.5rem; align-items: center; }
.testimonials__dot {
	height: 0.375rem;
	width: 1rem;
	background: var(--stone-300);
	border: 0;
	border-radius: var(--radius-full);
	transition: all 0.5s ease;
	cursor: pointer;
}
.testimonials__dot.is-active { width: 2rem; background: var(--primary-hex); }

/* ============================================================
   9. Services Grid (Our Care)
   ============================================================ */
.services {
	background: #fff;
	padding: 5rem 0;
	border-top: 1px solid var(--stone-200);
}
@media (min-width: 768px) { .services { padding: 7rem 0; } }
.services__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.25rem;
}
@media (min-width: 640px) { .services__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .services__grid { grid-template-columns: repeat(4, 1fr); } }
.services__footer { display: flex; justify-content: center; margin-top: 3.5rem; }

.service-card {
	background: #fff;
	border: 1px solid var(--stone-200);
	border-radius: var(--radius-xl);
	overflow: hidden;
	box-shadow: 0 1px 2px hsl(0 0% 0% / 0.04);
	transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.service-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 20px 40px -20px hsl(0 0% 0% / 0.15);
}
.service-card__media {
	position: relative;
	aspect-ratio: 4 / 3;
	overflow: hidden;
	background: hsl(0 0% 10% / 0.05);
}
.service-card__media img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.7s ease;
}
.service-card:hover .service-card__media img { transform: scale(1.05); }
.service-card__media-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, hsl(0 0% 0% / 0.5), transparent);
}
.service-card__body { padding: 1.25rem; }
.service-card__title {
	font-family: var(--font-serif);
	font-size: 1.125rem;
	margin: 0 0 0.5rem;
	color: var(--foreground);
}
.service-card__text {
	font-size: 0.875rem;
	font-weight: 300;
	line-height: 1.65;
	color: hsl(20 14% 8% / 0.37);
	margin: 0 0 1rem;
}
.service-card__link {
	display: inline-flex;
	align-items: center;
	gap: 0.25rem;
	font-size: 0.875rem;
	font-weight: 500;
	color: var(--primary-hex);
}
.service-card__link:hover { text-decoration: underline; }
.service-card__link [data-lucide] { width: 0.875rem; height: 0.875rem; }

/* ============================================================
   10. Our Promise
   ============================================================ */
.promise {
	background: var(--stone-50);
	padding: 6rem 0 7rem;
	border-top: 1px solid var(--stone-200);
	border-bottom: 1px solid var(--stone-200);
}
@media (min-width: 768px) { .promise { padding: 8rem 0; } }
.promise__grid {
	display: grid;
	gap: 3rem;
	grid-template-columns: 1fr;
	align-items: start;
}
@media (min-width: 1024px) {
	.promise__grid { grid-template-columns: 4fr 8fr; gap: 2rem; }
}
.promise__intro { text-align: center; }
@media (min-width: 1024px) { .promise__intro { text-align: left; } }
.promise__heading {
	font-family: var(--font-serif);
	font-size: clamp(2.25rem, 4vw, 3rem);
	margin: 0 0 1.5rem;
	line-height: 1.15;
	letter-spacing: -0.025em;
}
.promise__text {
	color: hsl(0 0% 10% / 0.6);
	font-weight: 300;
	line-height: 1.7;
	margin: 0;
}
.promise__pillars {
	display: grid;
	gap: 1.5rem;
	grid-template-columns: 1fr;
}
@media (min-width: 768px) { .promise__pillars { grid-template-columns: repeat(3, 1fr); } }
.promise__pillars--4col { grid-template-columns: 1fr; }
@media (min-width: 768px) { .promise__pillars--4col { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .promise__pillars--4col { grid-template-columns: repeat(4, 1fr); } }

.pillar-card {
	background: #fff;
	border: 1px solid var(--stone-200);
	border-radius: var(--radius-2xl);
	padding: 2rem;
	box-shadow: 0 1px 2px hsl(0 0% 0% / 0.04);
	transition: transform 0.5s ease, box-shadow 0.5s ease;
	display: flex;
	flex-direction: column;
}
.pillar-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 25px 50px -20px hsl(0 0% 0% / 0.18);
}
.pillar-card__icon {
	width: 4rem;
	height: 4rem;
	border-radius: var(--radius-full);
	border: 2px solid hsl(var(--primary) / 0.25);
	color: var(--primary-hex);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1.5rem;
	transition: background 0.5s ease, color 0.5s ease, border-color 0.5s ease;
}
.pillar-card:hover .pillar-card__icon {
	background: var(--primary-hex);
	color: #fff;
	border-color: var(--primary-hex);
}
.pillar-card__icon [data-lucide] { width: 1.75rem; height: 1.75rem; }
.pillar-card__title {
	font-family: var(--font-serif);
	font-size: 1.5rem;
	margin: 0 0 0.75rem;
}
.pillar-card__text {
	color: hsl(0 0% 10% / 0.6);
	font-weight: 300;
	font-size: 0.875rem;
	line-height: 1.65;
	margin: 0;
}

/* ============================================================
   11. Facilities Grid
   ============================================================ */
.facilities {
	background: var(--stone-50);
	padding: 6rem 0;
	border-top: 1px solid var(--stone-200);
	overflow: hidden;
}
@media (min-width: 768px) { .facilities { padding: 8rem 0; } }
.facilities .section-header { margin-bottom: 4rem; }
.facilities__grid {
	display: grid;
	gap: 1.5rem;
	grid-template-columns: 1fr;
}
@media (min-width: 768px) { .facilities__grid { grid-template-columns: repeat(2, 1fr); } }

.facility-card {
	position: relative;
	aspect-ratio: 4 / 3;
	overflow: hidden;
	border-radius: var(--radius-2xl);
	box-shadow: 0 4px 10px hsl(0 0% 0% / 0.1);
	background: hsl(0 0% 10% / 0.05);
	cursor: pointer;
	transition: box-shadow 0.5s ease;
	display: block;
	color: #fff;
}
@media (min-width: 768px) { .facility-card { aspect-ratio: 16 / 10; } }
.facility-card:hover { box-shadow: 0 20px 50px -20px hsl(0 0% 0% / 0.3); color: #fff; }
.facility-card img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 1s ease;
}
.facility-card:hover img { transform: scale(1.05); }
.facility-card__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, hsl(0 0% 0% / 0.7), hsl(0 0% 0% / 0.2), transparent);
	opacity: 0.7;
	transition: opacity 0.5s ease;
}
.facility-card:hover .facility-card__overlay { opacity: 0.85; }
.facility-card__body {
	position: absolute;
	bottom: 0;
	left: 0;
	padding: 2rem;
	width: 100%;
}
.facility-card__number {
	color: rgba(255,255,255,0.8);
	font-size: 0.75rem;
	letter-spacing: 0.25em;
	display: block;
	margin-bottom: 0.5rem;
	font-weight: 500;
}
.facility-card__title {
	font-family: var(--font-serif);
	font-size: 1.5rem;
	color: #fff;
	margin: 0 0 1rem;
}
@media (min-width: 768px) { .facility-card__title { font-size: 1.875rem; } }
.facility-card__pill {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.625rem 1.25rem;
	background: var(--primary-hex);
	color: #fff;
	border-radius: var(--radius-full);
	font-size: 0.75rem;
	font-weight: 500;
	letter-spacing: 0.04em;
	transition: background 0.3s ease, color 0.3s ease;
}
.facility-card:hover .facility-card__pill { background: #fff; color: var(--stone-900); }
.facility-card__pill [data-lucide] { width: 1rem; height: 1rem; }

/* ============================================================
   12. Guidance & Resources
   ============================================================ */
.guidance {
	background: var(--stone-50);
	padding: 6rem 0;
	border-top: 1px solid var(--stone-200);
}
@media (min-width: 768px) { .guidance { padding: 8rem 0; } }
.guidance__grid {
	display: grid;
	gap: 1.5rem;
	grid-template-columns: 1fr;
}
@media (min-width: 768px) { .guidance__grid { grid-template-columns: repeat(3, 1fr); } }

.guidance-card {
	background: #fff;
	border: 1px solid var(--stone-200);
	border-radius: var(--radius-2xl);
	overflow: hidden;
	box-shadow: 0 1px 2px hsl(0 0% 0% / 0.04);
	transition: transform 0.5s ease, box-shadow 0.5s ease;
	display: flex;
	flex-direction: column;
	color: var(--foreground);
	height: 100%;
}
.guidance-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 25px 50px -20px hsl(0 0% 0% / 0.18);
	color: var(--foreground);
}
.guidance-card__media {
	position: relative;
	aspect-ratio: 16 / 10;
	overflow: hidden;
	background: hsl(0 0% 10% / 0.05);
}
.guidance-card__media img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 1.2s ease;
}
.guidance-card:hover .guidance-card__media img { transform: scale(1.05); }
.guidance-card__body {
	padding: 1.75rem;
	display: flex;
	flex-direction: column;
	flex: 1;
}
.guidance-card__title {
	font-family: var(--font-serif);
	font-size: 1.5rem;
	margin: 0 0 0.75rem;
}
.guidance-card__text {
	color: hsl(0 0% 10% / 0.6);
	font-weight: 300;
	font-size: 0.875rem;
	line-height: 1.65;
	margin: 0;
	flex: 1;
}
.guidance-card__link {
	margin-top: 1.5rem;
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	color: var(--primary-hex);
	font-weight: 500;
	font-size: 0.875rem;
	letter-spacing: 0.02em;
}
.guidance-card__link [data-lucide] {
	width: 1rem; height: 1rem;
	transition: transform 0.3s ease;
}
.guidance-card:hover .guidance-card__link [data-lucide] { transform: translateX(0.25rem); }

/* ============================================================
   13. Partners Marquee
   ============================================================ */
.partners {
	background: var(--stone-100);
	padding: 4rem 0;
	overflow: hidden;
	border-top: 1px solid var(--stone-200);
	border-bottom: 1px solid var(--stone-200);
}
.partners__label {
	text-align: center;
	margin-bottom: 2rem;
	color: hsl(0 0% 10% / 0.4);
	font-size: 0.75rem;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.2em;
}
.partners__track-wrap {
	position: relative;
	display: flex;
	white-space: nowrap;
	opacity: 0.6;
	transition: opacity 0.5s ease;
}
.partners__track-wrap:hover { opacity: 1; }
.partners__track {
	display: flex;
	gap: 5rem;
	align-items: center;
	animation: marquee 40s linear infinite;
	flex-shrink: 0;
}
@keyframes marquee {
	from { transform: translateX(0); }
	to { transform: translateX(-50%); }
}
.partners__item {
	display: inline-flex;
	align-items: center;
	gap: 5rem;
	flex-shrink: 0;
}
.partners__item a, .partners__item span {
	font-family: var(--font-serif);
	font-size: 1.5rem;
	color: hsl(0 0% 10% / 0.8);
	transition: color 0.3s ease;
}
@media (min-width: 768px) { .partners__item a, .partners__item span { font-size: 1.875rem; } }
.partners__item a:hover { color: var(--primary-hex); }
.partners__sep {
	width: 6px;
	height: 6px;
	border-radius: var(--radius-full);
	background: hsl(0 0% 10% / 0.2);
	display: inline-block;
}

/* ============================================================
   14. Scheduling
   ============================================================ */
.scheduling {
	background: #fff;
	padding: 6rem 0;
	border-top: 1px solid var(--stone-200);
	position: relative;
	overflow: hidden;
}
@media (min-width: 768px) { .scheduling { padding: 8rem 0; } }
.scheduling__bg {
	position: absolute;
	top: 0;
	right: 0;
	width: 50%;
	height: 100%;
	background: hsl(0 0% 10% / 0.04);
	transform: skewX(-12deg) translateX(8rem);
	transform-origin: top;
	z-index: 0;
	display: none;
}
@media (min-width: 1024px) { .scheduling__bg { display: block; } }
.scheduling .container { position: relative; z-index: 1; }
.scheduling__grid {
	display: grid;
	gap: 4rem;
	grid-template-columns: 1fr;
	align-items: center;
}
@media (min-width: 1024px) { .scheduling__grid { grid-template-columns: repeat(2, 1fr); gap: 6rem; } }
.scheduling__heading {
	font-family: var(--font-serif);
	font-size: clamp(2.25rem, 4vw, 3rem);
	line-height: 1.1;
	margin: 0 0 1.5rem;
	letter-spacing: -0.025em;
}
.scheduling__intro {
	color: hsl(0 0% 10% / 0.6);
	font-weight: 300;
	font-size: 1.125rem;
	line-height: 1.7;
	margin: 0 0 2.5rem;
	max-width: 28rem;
}
.scheduling__features {
	list-style: none;
	margin: 0 0 3rem;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
}
.scheduling__features li {
	display: flex;
	align-items: center;
	gap: 1rem;
	color: hsl(0 0% 10% / 0.8);
	font-size: 0.875rem;
	font-weight: 300;
}
.scheduling__features [data-lucide] {
	color: var(--primary-hex);
	width: 1.25rem;
	height: 1.25rem;
	flex-shrink: 0;
}
.scheduling__card-wrap { position: relative; }
.scheduling__card {
	background: #fff;
	border: 1px solid var(--border);
	border-radius: var(--radius-3xl);
	box-shadow: 0 25px 50px -20px hsl(0 0% 0% / 0.2);
	padding: 2.5rem;
	position: relative;
	z-index: 10;
	max-width: 32rem;
	margin: 0 auto;
}
@media (min-width: 768px) { .scheduling__card { padding: 3.5rem; } }
.scheduling__card-shadow {
	position: absolute;
	bottom: -1.5rem;
	right: -1.5rem;
	left: 0;
	top: 0;
	background: hsl(0 0% 10% / 0.04);
	border-radius: var(--radius-3xl);
	z-index: 0;
}
.scheduling__card-label {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	margin-bottom: 1.5rem;
	color: hsl(0 0% 10% / 0.4);
	font-size: 0.75rem;
	text-transform: uppercase;
	letter-spacing: 0.2em;
	font-weight: 500;
}
.scheduling__card-dot {
	width: 0.5rem;
	height: 0.5rem;
	border-radius: var(--radius-full);
	background: var(--primary-hex);
}
.scheduling__card-title {
	font-family: var(--font-serif);
	font-size: 1.875rem;
	margin: 0 0 2rem;
}
.scheduling__card-meta {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
	font-size: 0.875rem;
	font-weight: 300;
	color: hsl(0 0% 10% / 0.7);
	padding-bottom: 2rem;
	margin-bottom: 2rem;
	border-bottom: 1px solid hsl(0 0% 10% / 0.08);
}
.scheduling__card-meta > div {
	display: flex;
	align-items: center;
	gap: 1rem;
}
.scheduling__card-meta [data-lucide] {
	color: hsl(var(--primary) / 0.7);
	width: 1.25rem;
	height: 1.25rem;
}
.scheduling__card-foot {
	color: hsl(0 0% 10% / 0.5);
	font-size: 0.875rem;
	font-weight: 300;
	line-height: 1.65;
	margin: 0;
}

/* ============================================================
   15. Footer
   ============================================================ */
.site-footer {
	background: var(--stone-900);
	color: #fff;
	padding-top: 6rem;
	padding-bottom: 0;
	position: relative;
	overflow: hidden;
}
.site-footer__grid {
	display: grid;
	gap: 3rem;
	grid-template-columns: 1fr;
	margin-bottom: 6rem;
}
@media (min-width: 768px) { .site-footer__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .site-footer__grid { grid-template-columns: 1.6fr repeat(4, 1fr); gap: 2.25rem; } }
.site-footer__logo img {
	height: 3.75rem;
	width: auto;
	margin-bottom: 1.75rem;
	object-fit: contain;
	filter: brightness(0) invert(1);
}
.site-footer__about {
	color: rgba(255,255,255,0.6);
	font-size: 0.875rem;
	line-height: 1.7;
	margin: 0 0 1.5rem;
	font-weight: 300;
}
.site-footer__contacts {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}
.site-footer__contacts li {
	display: flex;
	align-items: flex-start;
	gap: 0.75rem;
	color: rgba(255,255,255,0.6);
	font-size: 0.875rem;
	font-weight: 300;
}
.site-footer__contacts [data-lucide] {
	color: var(--primary-hex);
	width: 1rem;
	height: 1rem;
	margin-top: 0.125rem;
	flex-shrink: 0;
}
.site-footer__contacts a { color: rgba(255,255,255,0.6); }
.site-footer__contacts a:hover { color: var(--primary-hex); }
.site-footer__heading {
	font-family: var(--font-sans);
	font-weight: 500;
	color: #fff;
	margin: 0 0 1.5rem;
	text-transform: uppercase;
	letter-spacing: 0.2em;
	font-size: 0.75rem;
}
.site-footer__menu {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 1rem;
}
.site-footer__menu a {
	color: rgba(255,255,255,0.6);
	font-size: 0.875rem;
	font-weight: 300;
	transition: color 0.3s ease;
}
.site-footer__menu a:hover { color: var(--primary-hex); }
.site-footer__widgets { margin-bottom: 2rem; }
.site-footer__bottom {
	border-top: 1px solid rgba(255,255,255,0.1);
	padding: 2rem 0;
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
	align-items: center;
	font-size: 0.75rem;
	color: rgba(255,255,255,0.4);
	font-weight: 300;
	letter-spacing: 0.04em;
}
@media (min-width: 768px) {
	.site-footer__bottom { flex-direction: row; justify-content: space-between; }
}
.site-footer__copy { margin: 0; }
.social-icons { display: flex; gap: 0.75rem; }
.social-icons a {
	width: 2.25rem;
	height: 2.25rem;
	border-radius: var(--radius-full);
	border: 1px solid rgba(255,255,255,0.15);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: rgba(255,255,255,0.6);
	transition: all 0.3s ease;
}
.social-icons a:hover { color: #fff; background: var(--primary-hex); border-color: var(--primary-hex); }
.social-icons [data-lucide] { width: 1rem; height: 1rem; }

/* ============================================================
   16. Page Hero (inner pages)
   ============================================================ */
.page-hero {
	position: relative;
	padding: 14rem 0 5rem;
	overflow: hidden;
	color: #fff;
	background: var(--stone-900);
}
.page-hero--plain {
	background: var(--stone-50);
	color: var(--foreground);
	padding: 10rem 0 4rem;
}
.page-hero--dark { background: var(--stone-900); color: #fff; }
.page-hero__media {
	position: absolute;
	inset: 0;
	z-index: 0;
}
.page-hero__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}
.page-hero__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top,
		hsl(20 14% 4% / 0.38),
		hsl(20 14% 8% / 0.28) 50%,
		hsl(20 14% 8% / 0.16));
}
.page-hero__inner {
	position: relative;
	z-index: 1;
	max-width: var(--container-max);
}
.page-hero__eyebrow {
	display: inline-block;
	color: var(--primary-hex);
	font-size: 0.75rem;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.25em;
	margin-bottom: 1rem;
}
.page-hero--plain .page-hero__eyebrow { color: var(--primary-hex); }
.page-hero__title {
	font-family: var(--font-serif);
	font-size: clamp(2.25rem, 5vw, 3.75rem);
	line-height: 1.1;
	margin: 0 0 1rem;
	letter-spacing: -0.025em;
	color: inherit;
}
.page-hero__subhead {
	font-size: 1.125rem;
	max-width: 44rem;
	line-height: 1.7;
	margin: 0;
	font-weight: 300;
	color: rgba(255,255,255,0.8);
}
.page-hero--plain .page-hero__subhead { color: hsl(0 0% 10% / 0.65); }

/* ============================================================
   17. Page Article (prose)
   ============================================================ */
.page-article { padding: 4rem 0; background: #fff; }
.page-article__container {
	max-width: 50rem;
}
.page-article__container .service-detail-gallery {
	left: 50%;
	margin-left: 0;
	margin-right: 0;
	max-width: min(80vw, 72rem);
	position: relative;
	transform: translateX(-50%);
	width: min(80vw, 72rem);
}
@media (max-width: 767px) {
	.page-article__container .service-detail-gallery {
		left: auto;
		max-width: 100%;
		transform: none;
		width: 100%;
	}
}
.page-article__feature {
	margin: 0 0 2.5rem;
	border-radius: var(--radius-xl);
	overflow: hidden;
}
.page-article__feature img { width: 100%; height: auto; display: block; }
.prose {
	color: hsl(0 0% 10% / 0.85);
	font-size: 1.0625rem;
	line-height: 1.75;
	font-weight: 400;
}
.prose h1, .prose h2, .prose h3, .prose h4 {
	font-family: var(--font-serif);
	color: var(--foreground);
	margin-top: 2.5rem;
	margin-bottom: 1rem;
	letter-spacing: -0.02em;
}
.prose h2 { font-size: 1.875rem; }
.prose h3 { font-size: 1.5rem; }
.prose p, .prose ul, .prose ol, .prose blockquote { margin: 0 0 1.25rem; }
.prose a { color: var(--primary-hex); text-decoration: underline; text-underline-offset: 4px; }
.prose img { border-radius: var(--radius-md); margin: 2rem 0; }
.prose blockquote {
	border-left: 3px solid var(--primary-hex);
	padding: 0.5rem 1.5rem;
	font-style: italic;
	color: hsl(0 0% 10% / 0.7);
	margin: 2rem 0;
}
.prose ul, .prose ol { padding-left: 1.5rem; }
.prose li { margin-bottom: 0.5rem; }
.prose strong { color: var(--foreground); }

.page-article__footer {
	margin-top: 3rem;
	padding-top: 1.5rem;
	border-top: 1px solid var(--stone-200);
	font-size: 0.875rem;
	color: var(--stone-500);
}
.post-nav {
	max-width: 50rem;
	margin: 0 auto 3rem;
	display: flex;
	justify-content: space-between;
	gap: 1.5rem;
	padding: 2rem 0;
	border-top: 1px solid var(--stone-200);
}
.post-nav a {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	color: var(--foreground);
	font-weight: 500;
}
.post-nav a:hover { color: var(--primary-hex); }

/* ============================================================
   18. Archives
   ============================================================ */
.archive-grid {
	background: #fff;
	padding: 5rem 0;
}
.archive-grid__list {
	display: grid;
	gap: 2rem;
	grid-template-columns: 1fr;
}
@media (min-width: 768px) { .archive-grid__list { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .archive-grid__list { grid-template-columns: repeat(3, 1fr); } }
.archive-card {
	background: #fff;
	border: 1px solid var(--stone-200);
	border-radius: var(--radius-xl);
	overflow: hidden;
	transition: transform 0.4s ease, box-shadow 0.4s ease;
	display: flex;
	flex-direction: column;
}
.archive-card:hover { transform: translateY(-4px); box-shadow: 0 20px 40px -20px hsl(0 0% 0% / 0.15); }
.archive-card__media {
	display: block;
	aspect-ratio: 16 / 10;
	overflow: hidden;
	background: var(--stone-100);
}
.archive-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s ease; }
.archive-card:hover .archive-card__media img { transform: scale(1.05); }
.archive-card__body { padding: 1.75rem; display: flex; flex-direction: column; flex: 1; }
.archive-card__type {
	font-size: 0.6875rem;
	font-weight: 500;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--primary-hex);
	margin-bottom: 0.5rem;
}
.archive-card__title { font-family: var(--font-serif); font-size: 1.375rem; margin: 0 0 0.75rem; }
.archive-card__title a { color: var(--foreground); }
.archive-card__title a:hover { color: var(--primary-hex); }
.archive-card__meta { font-size: 0.75rem; color: var(--stone-500); margin-bottom: 1rem; }
.archive-card__excerpt {
	color: hsl(0 0% 10% / 0.6);
	font-size: 0.9375rem;
	line-height: 1.65;
	font-weight: 300;
	flex: 1;
	margin-bottom: 1.25rem;
}
.archive-card__link {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	color: var(--primary-hex);
	font-size: 0.875rem;
	font-weight: 500;
	align-self: flex-start;
}
.archive-card__link [data-lucide] { width: 1rem; height: 1rem; }

/* Pagination */
.pagination {
	margin-top: 3rem;
	display: flex;
	justify-content: center;
}
.pagination ul {
	display: flex;
	gap: 0.5rem;
	list-style: none;
	margin: 0;
	padding: 0;
}
.pagination a, .pagination span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 2.5rem;
	height: 2.5rem;
	padding: 0 0.75rem;
	border: 1px solid var(--stone-200);
	border-radius: var(--radius-full);
	font-size: 0.875rem;
	color: var(--foreground);
	font-weight: 500;
}
.pagination .current { background: var(--primary-hex); color: #fff; border-color: var(--primary-hex); }
.pagination a:hover { background: var(--stone-100); color: var(--foreground); }

/* ============================================================
   19. Contact Page (new layout: dark hero + two-column body + map)
   ============================================================ */
.contact-hero {
	position: relative;
	background: var(--stone-950);
	color: #fff;
	padding: 9rem 0 5rem;
	overflow: hidden;
	min-height: 26rem;
	display: flex;
	align-items: flex-end;
}
@media (min-width: 768px) {
	.contact-hero { padding: 12rem 0 6rem; min-height: 32rem; }
}
.contact-hero__media {
	position: absolute;
	inset: 0;
	z-index: 0;
}
.contact-hero__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	filter: grayscale(100%) brightness(0.7);
}
.contact-hero__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to right,
		hsl(20 14% 4% / 0.46) 0%,
		hsl(20 14% 4% / 0.24) 60%,
		hsl(20 14% 4% / 0.20) 100%);
}
.contact-hero__inner {
	position: relative;
	z-index: 1;
	width: 100%;
}
.contact-hero__back {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	color: rgba(255,255,255,0.8);
	font-size: 0.75rem;
	font-weight: 500;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	margin-bottom: 2rem;
	transition: color 0.25s ease;
}
.contact-hero__back:hover { color: #fff; }
.contact-hero__back [data-lucide] { width: 1rem; height: 1rem; }
.contact-hero__eyebrow {
	display: inline-block;
	color: var(--primary-hex);
	font-size: 0.75rem;
	font-weight: 500;
	letter-spacing: 0.25em;
	text-transform: uppercase;
	margin-bottom: 1rem;
}
.contact-hero__title {
	font-family: var(--font-serif);
	font-size: clamp(2.5rem, 6vw, 4.5rem);
	color: #fff;
	margin: 0;
	line-height: 1.05;
	letter-spacing: -0.03em;
	font-weight: 500;
}

.contact-body {
	background: var(--stone-50);
	padding: 5rem 0;
}
@media (min-width: 768px) { .contact-body { padding: 6rem 0; } }
.contact-layout {
	display: grid;
	gap: 2.5rem;
	grid-template-columns: 1fr;
}
@media (min-width: 1024px) {
	.contact-layout { grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: 3rem; align-items: start; }
}
.contact-layout__intro {
	font-size: 0.9375rem;
	line-height: 1.7;
	color: hsl(0 0% 10% / 0.7);
	margin: 0 0 2rem;
	font-weight: 400;
}

.contact-info-card {
	background: #fff;
	border-radius: var(--radius-xl);
	box-shadow: 0 4px 12px hsl(0 0% 0% / 0.05);
	border: 1px solid var(--stone-200);
	padding: 1.5rem;
	display: flex;
	gap: 1.25rem;
	align-items: flex-start;
	margin-bottom: 1rem;
	transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.contact-info-card:hover {
	box-shadow: 0 10px 30px hsl(0 0% 0% / 0.1);
	transform: translateY(-2px);
}
.contact-info-card__icon {
	flex-shrink: 0;
	width: 3rem;
	height: 3rem;
	border-radius: var(--radius-full);
	background: hsl(var(--primary) / 0.12);
	color: var(--primary-hex);
	display: inline-flex;
	align-items: center;
	justify-content: center;
}
.contact-info-card__icon [data-lucide] { width: 1.25rem; height: 1.25rem; }
.contact-info-card__body { flex: 1; min-width: 0; }
.contact-info-card__label {
	display: block;
	font-size: 0.6875rem;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.18em;
	color: var(--stone-500);
	margin-bottom: 0.5rem;
}
.contact-info-card__body p {
	margin: 0;
	color: var(--foreground);
	font-size: 0.9375rem;
	line-height: 1.6;
	font-weight: 400;
}
.contact-info-card__body a {
	color: var(--foreground);
}
.contact-info-card__body a:hover { color: var(--primary-hex); }
.contact-info-card__phones {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 0.375rem;
}
.contact-info-card__phones a {
	color: var(--foreground);
	font-size: 0.9375rem;
	font-variant-numeric: tabular-nums;
}
.contact-info-card__muted {
	color: var(--stone-500);
	font-size: 0.8125rem;
	font-weight: 400;
}

/* Form card */
.contact-layout__form-wrap {
	position: relative;
}
.contact-card-form {
	background: #fff;
	border-radius: var(--radius-2xl);
	box-shadow: 0 10px 40px hsl(0 0% 0% / 0.08);
	border: 1px solid var(--stone-200);
	padding: 2rem;
	position: relative;
	z-index: 1;
}
@media (min-width: 640px) { .contact-card-form { padding: 2.5rem; } }
@media (min-width: 1024px) { .contact-card-form { padding: 3rem; } }
.contact-card-form__eyebrow {
	display: block;
	color: var(--primary-hex);
	font-size: 0.75rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.28em;
	margin-bottom: 2rem;
}
.contact-card-form__grid {
	display: grid;
	gap: 1.5rem;
	grid-template-columns: 1fr;
	margin-bottom: 2rem;
}
@media (min-width: 640px) { .contact-card-form__grid { grid-template-columns: repeat(2, 1fr); } }

.form-field--card label {
	font-size: 0.75rem;
	font-weight: 500;
	color: var(--stone-700);
	margin-bottom: 0.625rem;
	letter-spacing: 0.18em;
	text-transform: uppercase;
}
.form-field--card .form-field__req {
	color: var(--primary-hex);
	margin-left: 0.125rem;
}
.form-field--card input,
.form-field--card select,
.form-field--card textarea {
	padding: 1rem 1.25rem;
	font-size: 0.9375rem;
	border-radius: var(--radius-md);
	background: #fff;
	border: 1px solid var(--stone-200);
	color: var(--foreground);
	transition: border-color 0.25s ease, box-shadow 0.25s ease;
	font-family: inherit;
	width: 100%;
}
.form-field--card input::placeholder,
.form-field--card textarea::placeholder { color: var(--stone-400); }
.form-field--card select {
	appearance: none;
	-webkit-appearance: none;
	background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%2378716c' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>");
	background-repeat: no-repeat;
	background-position: right 1.25rem center;
	padding-right: 3rem;
}
.form-field--card input:focus,
.form-field--card select:focus,
.form-field--card textarea:focus {
	outline: none;
	border-color: hsl(var(--primary) / 0.6);
	box-shadow: 0 0 0 4px hsl(var(--primary) / 0.12);
}
.form-field--card textarea { min-height: 8rem; resize: vertical; }

.btn--block {
	width: 100%;
	justify-content: center;
	padding: 1.125rem 2rem;
	font-size: 1rem;
	font-weight: 500;
	border-radius: var(--radius-full);
}

/* Floating social icons attached to the form card */
.contact-form-socials {
	display: none;
}
@media (min-width: 1280px) {
	.contact-form-socials {
		display: flex;
		flex-direction: column;
		gap: 0.75rem;
		position: absolute;
		right: -3.5rem;
		top: 50%;
		transform: translateY(-50%);
		z-index: 2;
	}
	.contact-form-socials a {
		width: 2.5rem;
		height: 2.5rem;
		border-radius: var(--radius-full);
		background: #fff;
		border: 1px solid hsl(var(--primary) / 0.3);
		color: var(--primary-hex);
		display: inline-flex;
		align-items: center;
		justify-content: center;
		box-shadow: 0 4px 12px hsl(0 0% 0% / 0.06);
		transition: all 0.25s ease;
	}
	.contact-form-socials a:hover {
		background: var(--primary-hex);
		color: #fff;
		border-color: var(--primary-hex);
		transform: translateX(-2px);
	}
	.contact-form-socials [data-lucide] { width: 1rem; height: 1rem; }
}

/* Map embed */
.contact-map {
	background: var(--stone-50);
	padding: 0 0 6rem;
}
.contact-map__frame {
	position: relative;
	border-radius: var(--radius-2xl);
	overflow: hidden;
	box-shadow: 0 10px 40px hsl(0 0% 0% / 0.08);
	aspect-ratio: 16 / 9;
}
@media (min-width: 1024px) { .contact-map__frame { aspect-ratio: 21 / 9; } }
.contact-map__frame iframe {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border: 0;
}

/* Legacy schedule-section (still used by the schedule page template) */
.schedule-section { background: #fff; padding: 5rem 0; }
.schedule-section__inner { max-width: 56rem; margin: 0 auto; }
.schedule-section__intro { margin-bottom: 3rem; }

.schedule-form {
	background: var(--stone-50);
	padding: 2.5rem;
	border-radius: var(--radius-2xl);
	border: 1px solid var(--stone-200);
}
@media (min-width: 768px) {
	.contact-form, .schedule-form { padding: 3rem; }
}
.contact-form__grid, .schedule-form__grid {
	display: grid;
	gap: 1.25rem;
	grid-template-columns: 1fr;
	margin-bottom: 2rem;
}
@media (min-width: 768px) {
	.contact-form__grid, .schedule-form__grid { grid-template-columns: repeat(2, 1fr); }
}
.contact-form__honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; }
.form-field { display: flex; flex-direction: column; }
.form-field--full { grid-column: 1 / -1; }
.form-field label {
	font-size: 0.8125rem;
	font-weight: 500;
	color: var(--stone-700);
	margin-bottom: 0.5rem;
	letter-spacing: 0.02em;
}
.form-field input,
.form-field select,
.form-field textarea {
	width: 100%;
	padding: 0.875rem 1rem;
	border: 1px solid var(--stone-200);
	border-radius: var(--radius-md);
	background: #fff;
	color: var(--foreground);
	font-family: inherit;
	font-size: 0.9375rem;
	transition: border-color 0.25s ease, box-shadow 0.25s ease;
	box-shadow: 0 1px 2px hsl(0 0% 0% / 0.03);
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
	outline: none;
	border-color: hsl(var(--primary) / 0.6);
	box-shadow: 0 0 0 3px hsl(var(--primary) / 0.15);
}
.form-field input.has-error,
.form-field select.has-error,
.form-field textarea.has-error {
	border-color: #f87171;
	box-shadow: 0 0 0 3px hsl(0 96% 71% / 0.2);
}
.form-field textarea { resize: vertical; min-height: 7rem; }
.form-field__error {
	font-size: 0.75rem;
	color: #dc2626;
	margin-top: 0.375rem;
	min-height: 1rem;
}
.contact-form__submit {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 1rem;
}
.contact-form__status { font-size: 0.875rem; margin: 0; min-height: 1.25rem; }
.contact-form__status.is-success { color: #16a34a; }
.contact-form__status.is-error { color: #dc2626; }
.contact-form__status.is-loading { color: var(--stone-500); }

/* Schedule Appointment page */
.schedule-hero {
	position: relative;
	display: flex;
	align-items: center;
	min-height: 22rem;
	padding: 5.5rem 0 4.5rem;
	overflow: hidden;
	background: var(--stone-950);
	color: #fff;
}
@media (min-width: 768px) {
	.schedule-hero {
		min-height: 28rem;
		padding: 7rem 0 5.5rem;
	}
}
.schedule-hero__media {
	position: absolute;
	inset: 0;
	z-index: 0;
}
.schedule-hero__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center 42%;
	filter: brightness(0.58) saturate(0.9);
}
.schedule-hero__overlay {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(to right, hsl(20 14% 4% / 0.44) 0%, hsl(20 14% 4% / 0.22) 48%, hsl(20 14% 4% / 0.16) 100%),
		linear-gradient(to bottom, hsl(20 14% 4% / 0.16), hsl(20 14% 4% / 0.22));
}
.schedule-hero__inner {
	position: relative;
	z-index: 1;
}
.schedule-hero__eyebrow,
.schedule-appointment__eyebrow {
	display: block;
	color: var(--primary-hex);
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.34em;
	text-transform: uppercase;
}
.schedule-hero__eyebrow { margin-bottom: 1.5rem; }
.schedule-hero__title {
	max-width: 50rem;
	margin: 0;
	color: #fff;
	font-size: clamp(3.5rem, 6.5vw, 5.75rem);
	font-weight: 400;
	letter-spacing: -0.04em;
	line-height: 1.06;
}
.schedule-appointment {
	background: var(--stone-50);
	padding: clamp(5rem, 8vw, 7.25rem) 0 clamp(5.5rem, 9vw, 7.75rem);
}
.schedule-appointment__layout {
	display: grid;
	gap: clamp(3rem, 6vw, 5rem);
	align-items: start;
}
@media (min-width: 1024px) {
	.schedule-appointment__layout {
		grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.28fr);
	}
}
.schedule-appointment__intro {
	max-width: 27rem;
}
.schedule-appointment__eyebrow { margin-bottom: 1.25rem; }
.schedule-appointment__intro h2 {
	max-width: 18rem;
	margin: 0 0 2rem;
	color: var(--foreground);
	font-size: clamp(2.1rem, 3.4vw, 3.35rem);
	font-weight: 400;
	letter-spacing: -0.045em;
	line-height: 1.15;
}
.schedule-appointment__intro p {
	margin: 0 0 3rem;
	color: hsl(0 0% 10% / 0.56);
	font-size: 1.125rem;
	font-weight: 300;
	line-height: 1.65;
}
.schedule-info-card {
	display: grid;
	gap: 1.35rem;
	padding: clamp(1.75rem, 3.2vw, 2.35rem);
	border: 1px solid var(--stone-200);
	border-radius: var(--radius-xl);
	background: #fff;
	box-shadow: 0 2px 10px hsl(0 0% 0% / 0.05);
}
.schedule-info-card__item {
	display: grid;
	grid-template-columns: 3rem 1fr;
	column-gap: 1rem;
	align-items: center;
}
.schedule-info-card__icon {
	display: inline-flex;
	grid-row: span 2;
	align-items: center;
	justify-content: center;
	width: 2.5rem;
	height: 2.5rem;
	border-radius: var(--radius-full);
	background: hsl(var(--primary) / 0.1);
	color: var(--primary-hex);
}
.schedule-info-card__icon [data-lucide] {
	width: 1.1rem;
	height: 1.1rem;
}
.schedule-info-card__label {
	display: block;
	color: var(--stone-400);
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.24em;
	line-height: 1.2;
	text-transform: uppercase;
}
.schedule-info-card strong,
.schedule-info-card a {
	color: var(--foreground);
	font-size: 0.98rem;
	font-weight: 600;
	line-height: 1.45;
}
.schedule-info-card a:hover { color: var(--primary-hex); }
.schedule-appointment-form {
	padding: clamp(2rem, 4vw, 4rem);
	border: 1px solid var(--stone-200);
	border-radius: 2rem;
	background: #fff;
	box-shadow: 0 2px 14px hsl(0 0% 0% / 0.07);
}
.schedule-appointment-form h2 {
	margin: 0 0 1.75rem;
	color: var(--foreground);
	font-size: clamp(1.55rem, 2.3vw, 2rem);
	font-weight: 400;
	letter-spacing: -0.035em;
}
.schedule-appointment-form h2:not(:first-of-type) {
	margin-top: 2.65rem;
}
.schedule-appointment-form__grid {
	display: grid;
	gap: 1.45rem;
	grid-template-columns: 1fr;
}
@media (min-width: 700px) {
	.schedule-appointment-form__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}
.form-field--schedule label {
	color: var(--stone-500);
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.22em;
	line-height: 1.2;
	text-transform: uppercase;
}
.form-field--schedule label span {
	color: var(--primary-hex);
	margin-left: 0.2rem;
}
.form-field--schedule label span:not([aria-hidden]) {
	color: var(--stone-400);
	font-weight: 500;
	letter-spacing: 0.18em;
	text-transform: none;
}
.schedule-field-control {
	position: relative;
	display: flex;
	align-items: center;
	min-height: 3.7rem;
	border: 1px solid var(--stone-200);
	border-radius: var(--radius-lg);
	background: #fff;
	box-shadow: 0 2px 8px hsl(0 0% 0% / 0.05);
	transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.schedule-field-control:focus-within {
	border-color: hsl(var(--primary) / 0.55);
	box-shadow: 0 0 0 4px hsl(var(--primary) / 0.1), 0 2px 8px hsl(0 0% 0% / 0.05);
}
.schedule-field-control [data-lucide] {
	position: absolute;
	left: 1.1rem;
	width: 1.1rem;
	height: 1.1rem;
	color: var(--stone-400);
	pointer-events: none;
}
.form-field--schedule input,
.form-field--schedule select,
.form-field--schedule textarea {
	border: 0;
	border-radius: inherit;
	background: transparent;
	box-shadow: none;
	color: var(--foreground);
	font-size: 1rem;
	outline: none;
	padding: 1rem 1.15rem;
	width: 100%;
}
.schedule-field-control [data-lucide] + input,
.schedule-field-control [data-lucide] + textarea {
	padding-left: 3.15rem;
}
.form-field--schedule input:focus,
.form-field--schedule select:focus,
.form-field--schedule textarea:focus {
	border-color: transparent;
	box-shadow: none;
}
.form-field--schedule input::placeholder,
.form-field--schedule textarea::placeholder {
	color: var(--stone-400);
}
.schedule-field-control--select select {
	appearance: none;
	-webkit-appearance: none;
	padding-right: 3rem;
}
.schedule-field-control--select::after {
	content: "";
	position: absolute;
	right: 1.25rem;
	width: 0.65rem;
	height: 0.65rem;
	border-right: 1.5px solid var(--stone-400);
	border-bottom: 1.5px solid var(--stone-400);
	pointer-events: none;
	transform: translateY(-20%) rotate(45deg);
}
.schedule-field-control--textarea {
	align-items: flex-start;
	min-height: 7.5rem;
}
.schedule-field-control--textarea [data-lucide] {
	top: 1.15rem;
}
.schedule-field-control--textarea textarea {
	min-height: 7.5rem;
	resize: vertical;
}
.schedule-appointment-form__submit {
	margin-top: 2.5rem;
	min-height: 4rem;
	box-shadow: 0 0.65rem 1.4rem hsl(var(--primary) / 0.22);
}
.schedule-appointment-form__submit [data-lucide] {
	width: 1.15rem;
	height: 1.15rem;
}
@media (max-width: 699px) {
	.schedule-appointment-form {
		border-radius: var(--radius-xl);
	}
	.schedule-appointment__intro {
		max-width: none;
	}
	.schedule-info-card__item {
		grid-template-columns: 2.7rem 1fr;
	}
}

/* ============================================================
   20. Team
   ============================================================ */
.team { background: #fff; padding: 5rem 0; }
.team--alt { background: var(--stone-50); }
.team__grid {
	display: grid;
	gap: 2rem;
	grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 768px) { .team__grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .team__grid { grid-template-columns: repeat(4, 1fr); } }
.team__grid--with-bio { grid-template-columns: 1fr; }
@media (min-width: 768px) { .team__grid--with-bio { grid-template-columns: repeat(2, 1fr); } }
.team-card { text-align: center; }
.team-card--bio { text-align: left; background: #fff; padding: 1.5rem; border-radius: var(--radius-xl); border: 1px solid var(--stone-200); }
.team-card__media {
	aspect-ratio: 3 / 4;
	background: var(--stone-100);
	border-radius: var(--radius-lg);
	overflow: hidden;
	margin-bottom: 1rem;
}
.team-card--bio .team-card__media { aspect-ratio: 16 / 10; }
.team-card__media img { width: 100%; height: 100%; object-fit: cover; }
.team-card__name { font-family: var(--font-serif); font-size: 1.125rem; margin: 0 0 0.25rem; }
.team-card__role { font-size: 0.8125rem; color: var(--primary-hex); margin: 0; font-weight: 500; letter-spacing: 0.04em; }
.team-card__bio { font-size: 0.875rem; color: hsl(0 0% 10% / 0.6); margin: 0.75rem 0 0; line-height: 1.6; font-weight: 300; }

/* ============================================================
   21. CTA Bands & Flexible Layouts
   ============================================================ */
.cta-band {
	background: var(--stone-50);
	padding: 5rem 0;
	position: relative;
	color: var(--foreground);
}
.cta-band--simple { background: var(--stone-100); color: var(--foreground); }
.cta-band--simple h2 { color: var(--foreground); }
.cta-band--media {
	background-size: cover;
	background-position: center;
	color: #fff;
}
.cta-band__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, hsl(20 14% 4% / 0.37), hsl(20 14% 8% / 0.35));
}
.cta-band__inner {
	position: relative;
	text-align: center;
	max-width: 42rem;
	margin: 0 auto;
}
.cta-band__inner h2 {
	font-family: var(--font-serif);
	font-size: clamp(2rem, 4vw, 2.75rem);
	margin: 0 0 1rem;
	letter-spacing: -0.02em;
}
.cta-band__inner p { font-size: 1.0625rem; opacity: 0.85; margin: 0 0 2rem; font-weight: 300; line-height: 1.7; }
.cta-band__actions { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }

/* Two-column flex */
.flex-section { padding: 5rem 0; }
.bg-stone { background: var(--stone-50); }
.bg-white { background: #fff; }
.flex-2col__grid { display: grid; gap: 3rem; grid-template-columns: 1fr; align-items: center; }
@media (min-width: 1024px) { .flex-2col__grid { grid-template-columns: repeat(2, 1fr); gap: 5rem; } }
.flex-2col__media { border-radius: var(--radius-xl); overflow: hidden; }
.flex-2col__media img { width: 100%; height: auto; }
.flex-2col--left .flex-2col__media { order: -1; }
@media (min-width: 1024px) { .flex-2col--left .flex-2col__text { order: 2; } .flex-2col--left .flex-2col__media { order: 1; } }
.flex-2col__body { font-size: 1rem; line-height: 1.75; color: hsl(0 0% 10% / 0.75); font-weight: 300; }
.flex-2col__body p { margin: 0 0 1rem; }

.flex-features__grid {
	display: grid;
	gap: 1.5rem;
	grid-template-columns: 1fr;
}
@media (min-width: 768px) { .flex-features__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .flex-features__grid { grid-template-columns: repeat(3, 1fr); } }

.flex-richtext__inner { max-width: 50rem; margin: 0 auto; }
.flex-richtext--wide { max-width: 64rem; }

.gallery-grid {
	display: grid;
	gap: 1rem;
	grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 768px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; } }
.gallery-grid__item { margin: 0; aspect-ratio: 1; overflow: hidden; border-radius: var(--radius-lg); background: var(--stone-100); }
.gallery-grid__item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s ease; }
.gallery-grid__item:hover img { transform: scale(1.05); }

/* Feature list */
.feature-list {
	list-style: none;
	margin: 2rem 0 0;
	padding: 0;
	display: grid;
	gap: 1rem;
	grid-template-columns: 1fr;
}
@media (min-width: 640px) { .feature-list { grid-template-columns: repeat(2, 1fr); } }
.feature-list li {
	display: flex;
	gap: 0.75rem;
	align-items: flex-start;
	color: hsl(0 0% 10% / 0.75);
	font-size: 0.9375rem;
	line-height: 1.6;
}
.feature-list [data-lucide] {
	color: var(--primary-hex);
	margin-top: 0.25rem;
	width: 1.125rem;
	height: 1.125rem;
}

/* ============================================================
   22. Obituary
   ============================================================ */
.obituary-hero {
	background: var(--stone-50);
	padding: 10rem 0 4rem;
	border-bottom: 1px solid var(--stone-200);
}
.obituary-hero__inner {
	display: grid;
	gap: 2rem;
	grid-template-columns: 1fr;
	align-items: center;
	max-width: 48rem;
	text-align: center;
}
@media (min-width: 768px) { .obituary-hero__inner { grid-template-columns: 200px 1fr; text-align: left; max-width: 100%; } }
.obituary-hero__media {
	width: 200px;
	height: 200px;
	margin: 0 auto;
	border-radius: var(--radius-full);
	overflow: hidden;
	background: var(--stone-200);
	border: 4px solid #fff;
	box-shadow: 0 10px 30px hsl(0 0% 0% / 0.15);
}
.obituary-hero__media img { width: 100%; height: 100%; object-fit: cover; }
.obituary-hero__eyebrow {
	display: inline-block;
	color: var(--primary-hex);
	font-size: 0.75rem;
	letter-spacing: 0.25em;
	text-transform: uppercase;
	font-weight: 500;
	margin-bottom: 0.75rem;
}
.obituary-hero__name {
	font-family: var(--font-serif);
	font-size: clamp(2rem, 4vw, 3rem);
	margin: 0 0 0.5rem;
	letter-spacing: -0.02em;
}
.obituary-hero__dates {
	color: var(--stone-500);
	font-size: 1rem;
	margin: 0;
	letter-spacing: 0.02em;
}

.obituary-grid { background: #fff; padding: 5rem 0; }
.obituary-grid__list {
	display: grid;
	gap: 1.5rem;
	grid-template-columns: 1fr;
}
@media (min-width: 640px) { .obituary-grid__list { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .obituary-grid__list { grid-template-columns: repeat(3, 1fr); } }
.obituary-card {
	display: flex;
	align-items: center;
	gap: 1.25rem;
	padding: 1.25rem;
	background: #fff;
	border: 1px solid var(--stone-200);
	border-radius: var(--radius-xl);
	transition: all 0.3s ease;
	color: var(--foreground);
}
.obituary-card:hover {
	border-color: hsl(var(--primary) / 0.4);
	box-shadow: 0 10px 30px -15px hsl(0 0% 0% / 0.15);
	color: var(--foreground);
}
.obituary-card__media {
	width: 5rem;
	height: 5rem;
	border-radius: var(--radius-full);
	overflow: hidden;
	background: var(--stone-200);
	flex-shrink: 0;
	border: 1px solid var(--stone-200);
}
.obituary-card__media img { width: 100%; height: 100%; object-fit: cover; }
.obituary-card__name { font-family: var(--font-serif); font-size: 1.125rem; margin: 0 0 0.25rem; }
.obituary-card__dates { font-size: 0.8125rem; color: var(--stone-500); margin: 0 0 0.5rem; }
.obituary-card__link {
	display: inline-flex;
	align-items: center;
	gap: 0.375rem;
	color: var(--primary-hex);
	font-size: 0.8125rem;
	font-weight: 500;
}

.service-details {
	margin-top: 3rem;
	padding: 2rem;
	background: var(--stone-50);
	border-radius: var(--radius-xl);
	border: 1px solid var(--stone-200);
}
.service-details__title { font-family: var(--font-serif); font-size: 1.5rem; margin: 0 0 1.25rem; }
.service-details p { display: flex; gap: 0.75rem; align-items: center; margin: 0 0 0.75rem; font-size: 0.9375rem; color: hsl(0 0% 10% / 0.75); }
.service-details [data-lucide] { color: var(--primary-hex); flex-shrink: 0; }

/* ============================================================
   23. Search & 404
   ============================================================ */
.search-form {
	display: flex;
	max-width: 30rem;
	margin: 0 auto;
	gap: 0.5rem;
}
.search-form__field {
	flex: 1;
	padding: 0.875rem 1.25rem;
	border-radius: var(--radius-full);
	border: 1px solid var(--stone-200);
	background: #fff;
	font-size: 0.9375rem;
}
.search-form__field:focus {
	outline: none;
	border-color: hsl(var(--primary) / 0.5);
	box-shadow: 0 0 0 3px hsl(var(--primary) / 0.15);
}
.search-form__submit {
	width: 3rem;
	height: 3rem;
	border-radius: var(--radius-full);
	background: var(--primary-hex);
	color: #fff;
	border: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	transition: background 0.25s ease;
}
.search-form__submit:hover { background: hsl(var(--primary) / 0.9); }
.search-form-wrap { margin-top: 2rem; }
.error-actions { background: #fff; padding: 5rem 0; }
.error-actions__row { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; margin-bottom: 4rem; }
.error-actions__search { text-align: center; }
.error-actions__search h2 { font-family: var(--font-serif); font-size: 1.5rem; margin: 0 0 1.5rem; }
.empty-state { text-align: center; color: var(--stone-500); padding: 4rem 0; }

/* ============================================================
   23.5. Guidance Page
   ============================================================ */

/* Hero */
.guidance-hero {
	position: relative;
	background: var(--stone-950);
	color: #fff;
	padding: 9rem 0 4rem;
	overflow: hidden;
	min-height: 22rem;
	display: flex;
	align-items: flex-end;
}
@media (min-width: 768px) {
	.guidance-hero { padding: 12rem 0 5rem; min-height: 28rem; }
}
.guidance-hero__media {
	position: absolute;
	inset: 0;
	z-index: 0;
}
.guidance-hero__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}
.guidance-hero__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to right,
		hsl(20 14% 4% / 0.44) 0%,
		hsl(20 14% 4% / 0.24) 60%,
		hsl(20 14% 4% / 0.20) 100%);
}
.guidance-hero__inner {
	position: relative;
	z-index: 1;
	width: 100%;
}
.guidance-hero__eyebrow {
	display: inline-block;
	color: var(--primary-hex);
	font-size: 0.75rem;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.25em;
	margin-bottom: 1rem;
}
.guidance-hero__title {
	font-family: var(--font-serif);
	font-size: clamp(2.5rem, 6vw, 4.5rem);
	color: #fff;
	margin: 0;
	line-height: 1.05;
	letter-spacing: -0.03em;
	font-weight: 500;
	max-width: 52rem;
}

/* Intro */
.guidance-intro { background: #fff; padding: 5rem 0; }
@media (min-width: 768px) { .guidance-intro { padding: 6rem 0; } }
.guidance-intro__inner { max-width: 42rem; margin: 0 auto; text-align: center; }
.guidance-intro__heading {
	font-family: var(--font-serif);
	font-size: clamp(2rem, 4vw, 2.75rem);
	color: var(--foreground);
	margin: 0 0 1.5rem;
	line-height: 1.15;
	letter-spacing: -0.02em;
}
.guidance-intro__body {
	font-size: 1rem;
	color: hsl(0 0% 10% / 0.6);
	line-height: 1.75;
	font-weight: 400;
	margin: 0;
}

/* FAQ */
.guidance-faq {
	background: var(--stone-50);
	padding: 5rem 0;
}
@media (min-width: 768px) { .guidance-faq { padding: 6rem 0; } }
.faq-list {
	max-width: 48rem;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: 0.875rem;
}
.faq-item {
	background: #fff;
	border: 1px solid var(--stone-200);
	border-radius: var(--radius-full);
	overflow: hidden;
	transition: border-radius 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.faq-item.is-open {
	border-radius: var(--radius-2xl);
	box-shadow: 0 6px 24px hsl(0 0% 0% / 0.06);
	border-color: var(--stone-200);
}
.faq-item__trigger {
	width: 100%;
	background: transparent;
	border: 0;
	padding: 1.25rem 1.75rem;
	text-align: left;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1.5rem;
	cursor: pointer;
	font-family: inherit;
	color: var(--foreground);
	transition: color 0.25s ease;
}
.faq-item__trigger:hover { color: var(--primary-hex); }
.faq-item__question {
	font-size: 1rem;
	font-weight: 500;
	letter-spacing: -0.005em;
}
.faq-item__chevron {
	flex-shrink: 0;
	color: var(--stone-500);
	display: inline-flex;
	transition: transform 0.35s var(--ease-out-expo), color 0.25s ease;
}
.faq-item__chevron [data-lucide] { width: 1.125rem; height: 1.125rem; }
.faq-item.is-open .faq-item__chevron {
	transform: rotate(180deg);
	color: var(--primary-hex);
}
.faq-item__panel {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.4s var(--ease-out-expo);
}
.faq-item.is-open .faq-item__panel { max-height: 32rem; }
.faq-item__answer {
	padding: 0 1.75rem 1.5rem;
	color: hsl(0 0% 10% / 0.65);
	font-size: 0.9375rem;
	line-height: 1.7;
	font-weight: 400;
}
.faq-item__answer p { margin: 0 0 0.75rem; }
.faq-item__answer p:last-child { margin: 0; }

/* Resources grid */
.guidance-resources {
	background: #fff;
	padding: 5rem 0;
}
@media (min-width: 768px) { .guidance-resources { padding: 6rem 0; } }
.resource-grid {
	display: grid;
	gap: 1.25rem;
	grid-template-columns: 1fr;
	max-width: 78rem;
	margin: 0 auto;
}
@media (min-width: 640px) { .resource-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .resource-grid { grid-template-columns: repeat(4, 1fr); } }
.resource-card {
	background: #fff;
	border: 1px solid var(--stone-200);
	border-radius: var(--radius-xl);
	padding: 2rem 1.75rem;
	display: flex;
	flex-direction: column;
	color: var(--foreground);
	transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}
.resource-card.is-linked { cursor: pointer; }
.resource-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 20px 40px -20px hsl(0 0% 0% / 0.15);
	color: var(--foreground);
	border-color: hsl(var(--primary) / 0.25);
}
.resource-card__icon {
	width: 3rem;
	height: 3rem;
	border-radius: var(--radius-full);
	background: hsl(var(--primary) / 0.12);
	color: var(--primary-hex);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1.5rem;
	transition: background 0.3s ease, color 0.3s ease;
}
.resource-card:hover .resource-card__icon {
	background: var(--primary-hex);
	color: #fff;
}
.resource-card__icon [data-lucide] { width: 1.25rem; height: 1.25rem; }
.resource-card__title {
	font-family: var(--font-serif);
	font-size: 1.125rem;
	margin: 0 0 0.75rem;
	color: var(--foreground);
	letter-spacing: -0.01em;
	line-height: 1.3;
}
.resource-card__text {
	font-size: 0.875rem;
	color: hsl(0 0% 10% / 0.6);
	line-height: 1.65;
	margin: 0 0 1.5rem;
	font-weight: 400;
	flex: 1;
}
.resource-card__label {
	font-size: 0.6875rem;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.18em;
	color: var(--primary-hex);
	display: inline-flex;
	align-items: center;
	gap: 0.375rem;
}
.resource-card__label [data-lucide] {
	width: 0.875rem;
	height: 0.875rem;
	transition: transform 0.3s ease;
}
.resource-card:hover .resource-card__label--link [data-lucide] {
	transform: translateX(0.25rem);
}

/* Sisters' Circle promo */
.guidance-promo {
	background: var(--stone-50);
	padding: 0 0 5rem;
}
@media (min-width: 768px) { .guidance-promo { padding-bottom: 6rem; } }
.guidance-promo__card {
	background: #fff;
	border: 1px solid var(--stone-200);
	border-radius: var(--radius-2xl);
	box-shadow: 0 6px 24px hsl(0 0% 0% / 0.05);
	padding: 2rem;
	max-width: 56rem;
	margin: 0 auto;
	display: flex;
	gap: 1.5rem;
	align-items: flex-start;
	flex-direction: column;
}
@media (min-width: 640px) {
	.guidance-promo__card { flex-direction: row; padding: 2.5rem; gap: 2rem; align-items: center; }
}
.guidance-promo__icon {
	flex-shrink: 0;
	width: 3.5rem;
	height: 3.5rem;
	border-radius: var(--radius-full);
	background: hsl(var(--primary) / 0.12);
	color: var(--primary-hex);
	display: inline-flex;
	align-items: center;
	justify-content: center;
}
.guidance-promo__icon [data-lucide] { width: 1.5rem; height: 1.5rem; }
.guidance-promo__body { flex: 1; min-width: 0; }
.guidance-promo__heading {
	font-family: var(--font-serif);
	font-size: 1.75rem;
	margin: 0 0 0.75rem;
	letter-spacing: -0.015em;
	color: var(--foreground);
}
.guidance-promo__text {
	color: hsl(0 0% 10% / 0.65);
	font-size: 0.9375rem;
	line-height: 1.65;
	margin: 0 0 1.25rem;
	font-weight: 400;
}
.guidance-promo__link {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	color: var(--primary-hex);
	font-size: 0.875rem;
	font-weight: 500;
	letter-spacing: 0.01em;
}
.guidance-promo__link [data-lucide] {
	width: 1rem;
	height: 1rem;
	transition: transform 0.3s ease;
}
.guidance-promo__link:hover [data-lucide] { transform: translateX(0.25rem); }

/* Closing CTA */
.guidance-cta {
	background: var(--stone-900);
	color: #fff;
	padding: 5rem 0;
	text-align: center;
}
@media (min-width: 768px) { .guidance-cta { padding: 6rem 0; } }
.guidance-cta__inner { max-width: 42rem; margin: 0 auto; }
.guidance-cta__heading {
	font-family: var(--font-serif);
	font-size: clamp(2rem, 4vw, 2.75rem);
	color: #fff;
	margin: 0 0 1rem;
	letter-spacing: -0.02em;
}
.guidance-cta__body {
	color: rgba(255,255,255,0.7);
	font-size: 1rem;
	line-height: 1.7;
	margin: 0 0 2.5rem;
	font-weight: 400;
}

/* ============================================================
   24. Our Story Page
   ============================================================ */
.story-page-hero {
	position: relative;
	background: var(--stone-950);
	color: #fff;
	min-height: 27rem;
	padding: 9rem 0 4rem;
	overflow: hidden;
	display: flex;
	align-items: flex-end;
}
@media (min-width: 768px) {
	.story-page-hero {
		min-height: 34rem;
		padding: 12rem 0 5.5rem;
	}
}
.story-page-hero__media {
	position: absolute;
	inset: 0;
	z-index: 0;
}
.story-page-hero__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center 42%;
	filter: brightness(0.58) saturate(0.9);
}
.story-page-hero__overlay {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(to right, hsl(20 14% 4% / 0.44) 0%, hsl(20 14% 4% / 0.22) 48%, hsl(20 14% 4% / 0.16) 100%),
		linear-gradient(to bottom, hsl(20 14% 4% / 0.14), hsl(20 14% 4% / 0.22));
}
.story-page-hero__inner {
	position: relative;
	z-index: 1;
	width: 100%;
}
.story-page-hero__back {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	color: rgba(255,255,255,0.72);
	font-size: 0.75rem;
	font-weight: 500;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	margin-bottom: 2.25rem;
	transition: color 0.25s ease;
}
.story-page-hero__back:hover { color: #fff; }
.story-page-hero__back [data-lucide] { width: 1rem; height: 1rem; }
.story-page-kicker {
	display: inline-block;
	color: var(--primary-hex);
	font-size: 0.6875rem;
	font-weight: 600;
	letter-spacing: 0.32em;
	text-transform: uppercase;
}
.story-page-hero .story-page-kicker { margin-bottom: 1.25rem; }
.story-page-hero__title {
	color: #fff;
	font-family: var(--font-serif);
	font-size: clamp(3rem, 7vw, 5rem);
	font-weight: 400;
	letter-spacing: -0.03em;
	line-height: 1.08;
	margin: 0;
	max-width: 45rem;
}

.story-page-who {
	background: #fff;
	padding: 6rem 0 7rem;
}
@media (min-width: 768px) {
	.story-page-who { padding: 8rem 0; }
}
.story-page-who__grid {
	display: grid;
	gap: 3rem;
	align-items: center;
	max-width: 68rem;
}
@media (min-width: 900px) {
	.story-page-who__grid { grid-template-columns: minmax(0, 0.9fr) minmax(20rem, 1fr); gap: 5rem; }
}
.story-page-who__copy h2 {
	color: hsl(0 0% 10% / 0.7);
	font-size: clamp(2rem, 4vw, 3rem);
	font-weight: 400;
	letter-spacing: -0.035em;
	line-height: 1.08;
	margin: 1.4rem 0 2rem;
}
.story-page-who__copy p {
	color: hsl(0 0% 10% / 0.48);
	font-size: 0.975rem;
	font-weight: 300;
	line-height: 1.75;
	margin: 0 0 1.25rem;
}
.story-page-who__copy strong {
	color: var(--primary-hex);
	font-style: italic;
	font-weight: 600;
}
.story-page-who__media {
	position: relative;
	border-radius: 4rem 0 4rem 0;
	overflow: visible;
}
.story-page-who__media img {
	width: 100%;
	aspect-ratio: 4 / 3.4;
	object-fit: cover;
	border-radius: 4rem 0 4rem 0;
	box-shadow: 0 22px 50px hsl(0 0% 0% / 0.16);
}
.story-page-badge {
	position: absolute;
	left: -1.5rem;
	bottom: -1.5rem;
	background: var(--primary-hex);
	color: #fff;
	border-radius: var(--radius-md);
	box-shadow: 0 16px 34px hsl(var(--primary) / 0.36);
	padding: 1.1rem 1.25rem;
	min-width: 8rem;
}
.story-page-badge strong {
	display: block;
	font-size: 1.45rem;
	font-weight: 700;
	line-height: 1;
	margin-bottom: 0.3rem;
}
.story-page-badge span {
	display: block;
	font-size: 0.7rem;
	font-weight: 500;
	opacity: 0.82;
}

.story-page-promise,
.story-page-team--management {
	background: var(--stone-50);
}
.story-page-history,
.story-page-team--board {
	background: #fff;
}
.story-page-promise,
.story-page-history,
.story-page-team {
	padding: 6rem 0 7rem;
}
@media (min-width: 768px) {
	.story-page-promise,
	.story-page-history,
	.story-page-team {
		padding: 7.5rem 0 8rem;
	}
}
.story-page-section-header {
	text-align: center;
	max-width: 42rem;
	margin: 0 auto 4rem;
}
.story-page-section-header .story-page-kicker { margin-bottom: 1.25rem; }
.story-page-section-header h2,
.story-page-history h2 {
	color: hsl(0 0% 10% / 0.68);
	font-size: clamp(2.1rem, 4vw, 3.25rem);
	font-weight: 400;
	letter-spacing: -0.035em;
	line-height: 1.12;
	margin: 0;
}
.story-page-promise__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.25rem;
	max-width: 62rem;
	margin: 0 auto;
}
@media (min-width: 768px) {
	.story-page-promise__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
.story-page-promise-card {
	background: #fff;
	border: 1px solid var(--stone-200);
	border-radius: var(--radius-md);
	box-shadow: 0 2px 8px hsl(0 0% 0% / 0.03);
	padding: 2rem;
}
.story-page-promise-card__icon {
	color: var(--primary-hex);
	margin-bottom: 1.4rem;
}
.story-page-promise-card__icon [data-lucide] { width: 1.2rem; height: 1.2rem; }
.story-page-promise-card h3 {
	font-size: 1.125rem;
	font-weight: 500;
	letter-spacing: -0.02em;
	margin: 0 0 0.85rem;
}
.story-page-promise-card p {
	color: hsl(0 0% 10% / 0.44);
	font-size: 0.875rem;
	font-weight: 300;
	line-height: 1.7;
	margin: 0;
}

.story-page-history__inner {
	max-width: 62rem;
}
.story-page-history .story-page-kicker {
	margin-bottom: 1.25rem;
}
.story-page-history h2 {
	margin-bottom: 2rem;
}
.story-page-history__copy {
	border-left: 2px solid hsl(var(--primary) / 0.18);
	padding-left: 1.5rem;
}
.story-page-history__copy p {
	color: hsl(0 0% 10% / 0.48);
	font-size: 0.95rem;
	font-weight: 300;
	line-height: 1.8;
	margin: 0 0 1.25rem;
}
.story-page-founder {
	background: #fff;
	border: 1px solid var(--stone-200);
	border-radius: var(--radius-md);
	box-shadow: 0 2px 10px hsl(0 0% 0% / 0.04);
	display: grid;
	gap: 1.5rem;
	margin-top: 3rem;
	padding: 1rem;
	align-items: center;
}
@media (min-width: 640px) {
	.story-page-founder { grid-template-columns: 10rem minmax(0, 1fr); }
}
.story-page-founder__portrait,
.story-page-person-card__media {
	background:
		linear-gradient(135deg, hsl(var(--primary) / 0.12), hsl(0 0% 10% / 0.08)),
		var(--stone-100);
	display: flex;
	align-items: center;
	justify-content: center;
	color: hsl(0 0% 10% / 0.42);
	font-size: 1.5rem;
	font-weight: 600;
	letter-spacing: 0.06em;
}
.story-page-founder__portrait {
	aspect-ratio: 1;
	border-radius: var(--radius-md);
	overflow: hidden;
}
.story-page-founder__portrait img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.story-page-founder__eyebrow {
	color: var(--primary-hex);
	display: block;
	font-size: 0.625rem;
	font-weight: 600;
	letter-spacing: 0.22em;
	margin-bottom: 0.55rem;
	text-transform: uppercase;
}
.story-page-founder h3 {
	font-size: 1.45rem;
	font-weight: 400;
	margin: 0 0 0.5rem;
}
.story-page-founder p {
	color: hsl(0 0% 10% / 0.48);
	font-size: 0.875rem;
	font-style: italic;
	font-weight: 300;
	line-height: 1.7;
	margin: 0;
}

.story-page-people-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1.25rem;
	max-width: 62rem;
	margin: 0 auto;
}
@media (min-width: 768px) {
	.story-page-people-grid--board { grid-template-columns: repeat(4, minmax(0, 1fr)); max-width: none; }
	.story-page-people-grid--management { grid-template-columns: repeat(4, minmax(0, 1fr)); max-width: none; }
}
.story-page-person-card {
	background: #fff;
	border: 1px solid var(--stone-200);
	border-radius: var(--radius-md);
	box-shadow: 0 2px 8px hsl(0 0% 0% / 0.04);
	overflow: hidden;
}
.story-page-person-card__media {
	aspect-ratio: 1 / 1.18;
	overflow: hidden;
}
.story-page-person-card--management .story-page-person-card__media {
	aspect-ratio: 1 / 1.08;
}
.story-page-person-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.story-page-person-card__body {
	padding: 1rem;
}
.story-page-person-card h3 {
	font-size: 0.95rem;
	font-weight: 500;
	letter-spacing: -0.015em;
	line-height: 1.3;
	margin: 0 0 0.35rem;
}
.story-page-person-card p {
	color: var(--primary-hex);
	font-size: 0.625rem;
	font-weight: 600;
	letter-spacing: 0.14em;
	margin: 0;
	text-transform: uppercase;
}
.story-page-person-card a,
.story-page-person-card__read {
	background: transparent;
	border: 0;
	color: hsl(0 0% 10% / 0.38);
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	font-size: 0.625rem;
	font-weight: 600;
	letter-spacing: 0.12em;
	margin-top: 0.75rem;
	padding: 0;
	text-transform: uppercase;
	cursor: pointer;
}
.story-page-person-card a:hover,
.story-page-person-card__read:hover { color: var(--primary-hex); }
.story-page-person-card a [data-lucide],
.story-page-person-card__read [data-lucide] {
	width: 0.75rem;
	height: 0.75rem;
}

.modal-open {
	overflow: hidden;
}
.team-bio-modal {
	position: fixed;
	inset: 0;
	z-index: 9999;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	padding: 1.5rem;
	pointer-events: none;
	transition: opacity 0.25s ease;
}
.team-bio-modal.is-open {
	opacity: 1;
	pointer-events: auto;
}
.team-bio-modal__backdrop {
	position: absolute;
	inset: 0;
	background: hsl(20 14% 4% / 0.50);
	backdrop-filter: blur(6px);
}
.team-bio-modal__dialog {
	position: relative;
	z-index: 1;
	width: min(52rem, 100%);
	max-height: min(42rem, calc(100vh - 3rem));
	background: #fff;
	border: 1px solid var(--stone-200);
	border-radius: 1.5rem;
	box-shadow: 0 28px 80px hsl(0 0% 0% / 0.24);
	overflow: hidden;
	outline: none;
	transform: translateY(14px) scale(0.98);
	transition: transform 0.25s ease;
}
.team-bio-modal.is-open .team-bio-modal__dialog {
	transform: translateY(0) scale(1);
}
.team-bio-modal__close {
	position: absolute;
	top: 1rem;
	right: 1rem;
	z-index: 2;
	width: 2.5rem;
	height: 2.5rem;
	border: 1px solid hsl(0 0% 10% / 0.12);
	border-radius: var(--radius-full);
	background: rgba(255,255,255,0.92);
	color: var(--foreground);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.team-bio-modal__close:hover {
	background: var(--primary-hex);
	border-color: var(--primary-hex);
	color: #fff;
}
.team-bio-modal__close [data-lucide] {
	width: 1.1rem;
	height: 1.1rem;
}
.team-bio-modal__grid {
	display: grid;
	grid-template-columns: 1fr;
	max-height: inherit;
	overflow: auto;
}
@media (min-width: 760px) {
	.team-bio-modal__grid {
		grid-template-columns: minmax(17rem, 0.82fr) minmax(0, 1fr);
	}
}
.team-bio-modal__media {
	background: var(--stone-100);
	margin: 0;
	min-height: 18rem;
}
.team-bio-modal__media[hidden] {
	display: none;
}
.team-bio-modal__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.team-bio-modal__content {
	padding: clamp(2.25rem, 5vw, 4rem);
}
.team-bio-modal__content .story-page-kicker {
	margin-bottom: 1.1rem;
}
.team-bio-modal__content h2 {
	font-size: clamp(2rem, 4vw, 3rem);
	font-weight: 400;
	letter-spacing: -0.04em;
	line-height: 1.1;
	margin: 0 0 1.5rem;
}
.team-bio-modal__content p {
	color: hsl(0 0% 10% / 0.62);
	font-size: 1rem;
	font-weight: 300;
	line-height: 1.75;
	margin: 0;
	white-space: pre-line;
}

@media (max-width: 639px) {
	.story-page-hero {
		min-height: 28rem;
		padding-bottom: 3.5rem;
	}
	.story-page-hero__title { font-size: 2.55rem; }
	.story-page-badge {
		left: 1rem;
		bottom: 1rem;
	}
	.story-page-people-grid {
		grid-template-columns: 1fr;
	}
}

/* ============================================================
   25. Our Care Page
   ============================================================ */
.care-page-hero {
	position: relative;
	background: var(--stone-950);
	color: #fff;
	min-height: 27rem;
	padding: 9rem 0 4rem;
	overflow: hidden;
	display: flex;
	align-items: flex-end;
}
@media (min-width: 768px) {
	.care-page-hero {
		min-height: 34rem;
		padding: 12rem 0 5.5rem;
	}
}
.care-page-hero__media {
	position: absolute;
	inset: 0;
	z-index: 0;
}
.care-page-hero__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center 44%;
	filter: brightness(0.58) saturate(0.85);
}
.care-page-hero__overlay {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(to right, hsl(20 14% 4% / 0.44) 0%, hsl(20 14% 4% / 0.22) 50%, hsl(20 14% 4% / 0.16) 100%),
		linear-gradient(to bottom, hsl(20 14% 4% / 0.14), hsl(20 14% 4% / 0.22));
}
.care-page-hero__inner {
	position: relative;
	z-index: 1;
	width: 100%;
}
.care-page-hero__back {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	color: rgba(255,255,255,0.72);
	font-size: 0.75rem;
	font-weight: 500;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	margin-bottom: 2.25rem;
	transition: color 0.25s ease;
}
.care-page-hero__back:hover { color: #fff; }
.care-page-hero__back [data-lucide] { width: 1rem; height: 1rem; }
.care-page-kicker {
	display: inline-block;
	color: var(--primary-hex);
	font-size: 0.6875rem;
	font-weight: 600;
	letter-spacing: 0.32em;
	text-transform: uppercase;
}
.care-page-hero .care-page-kicker { margin-bottom: 1.25rem; }
.care-page-hero__title {
	color: #fff;
	font-family: var(--font-serif);
	font-size: clamp(3rem, 7vw, 5rem);
	font-weight: 400;
	letter-spacing: -0.03em;
	line-height: 1.08;
	margin: 0;
	max-width: 42rem;
}

.care-page-intro {
	background: var(--stone-50);
	padding: 4.5rem 0;
	text-align: center;
}
.care-page-intro__inner {
	max-width: 43rem;
}
.care-page-intro p {
	color: hsl(0 0% 10% / 0.58);
	font-size: 1rem;
	font-weight: 300;
	line-height: 1.75;
	margin: 0;
}
.care-page-intro strong {
	color: hsl(0 0% 10% / 0.72);
	font-weight: 600;
}

.care-page-grid-section {
	background: #fff;
	padding: 6rem 0 7.5rem;
}
@media (min-width: 768px) {
	.care-page-grid-section { padding: 7rem 0 8rem; }
}
.care-page-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.75rem;
}
@media (min-width: 768px) {
	.care-page-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (min-width: 1180px) {
	.care-page-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
.care-page-card {
	background: #fff;
	border: 1px solid var(--stone-200);
	border-radius: var(--radius-md);
	box-shadow: 0 2px 10px hsl(0 0% 0% / 0.04);
	overflow: hidden;
	transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}
.care-page-card:hover {
	border-color: hsl(var(--primary) / 0.24);
	box-shadow: 0 16px 36px hsl(0 0% 0% / 0.08);
	transform: translateY(-2px);
}
.care-page-card__media {
	display: block;
	aspect-ratio: 16 / 9.6;
	background: var(--stone-100);
	overflow: hidden;
	position: relative;
}
.care-page-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.55s ease, filter 0.55s ease;
}
.care-page-card:hover .care-page-card__media img { transform: scale(1.04); }
.care-page-card:nth-child(7) .care-page-card__media img {
	filter: grayscale(100%) brightness(1.18);
}
.care-page-card__number {
	position: absolute;
	top: 0.8rem;
	left: 0.8rem;
	z-index: 1;
	width: 2rem;
	height: 2rem;
	border-radius: var(--radius-full);
	background: #fff;
	color: var(--primary-hex);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 0.65rem;
	font-weight: 700;
	box-shadow: 0 6px 18px hsl(0 0% 0% / 0.12);
}
.care-page-card__body {
	padding: 1.8rem;
	min-height: 16rem;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}
.care-page-card h2 {
	font-size: 1.25rem;
	font-weight: 400;
	letter-spacing: -0.02em;
	line-height: 1.25;
	margin: 0 0 1rem;
}
.care-page-card h2 a {
	color: var(--foreground);
}
.care-page-card h2 a:hover { color: var(--primary-hex); }
.care-page-card__eyebrow {
	color: var(--primary-hex);
	font-size: 0.65rem;
	font-weight: 600;
	letter-spacing: 0.16em;
	line-height: 1.4;
	margin: -0.35rem 0 0.85rem;
	text-transform: uppercase;
}
.care-page-card p {
	color: hsl(0 0% 10% / 0.48);
	font-size: 0.875rem;
	font-weight: 300;
	line-height: 1.65;
	margin: 0 0 2rem;
}
.care-page-card__link {
	color: hsl(0 0% 10% / 0.36);
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 0.7rem;
	font-weight: 600;
	letter-spacing: 0.18em;
	margin-top: auto;
	text-transform: uppercase;
}
.care-page-card__link:hover { color: var(--primary-hex); }
.care-page-card__link [data-lucide] { width: 0.85rem; height: 0.85rem; }

.care-page-cta {
	position: relative;
	background: var(--stone-950);
	color: #fff;
	min-height: 31rem;
	padding: 6rem 0;
	display: flex;
	align-items: center;
	overflow: hidden;
	text-align: center;
}
@media (min-width: 768px) {
	.care-page-cta {
		min-height: 36rem;
		padding: 7rem 0;
	}
}
.care-page-cta__media {
	position: absolute;
	inset: 0;
	z-index: 0;
}
.care-page-cta__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	filter: blur(3px) brightness(0.42) saturate(0.8);
	transform: scale(1.03);
}
.care-page-cta__overlay {
	position: absolute;
	inset: 0;
	background: hsl(20 14% 4% / 0.42);
}
.care-page-cta__inner {
	position: relative;
	z-index: 1;
	max-width: 58rem;
}
.care-page-cta .care-page-kicker { margin-bottom: 1.5rem; }
.care-page-cta h2 {
	color: #fff;
	font-size: clamp(2.35rem, 5vw, 3.7rem);
	font-weight: 400;
	letter-spacing: -0.035em;
	line-height: 1.1;
	margin: 0 0 2rem;
}
.care-page-cta p {
	color: rgba(255,255,255,0.58);
	font-size: 1rem;
	font-weight: 300;
	line-height: 1.6;
	margin: 0 auto 3rem;
	max-width: 34rem;
}

@media (max-width: 639px) {
	.care-page-hero {
		min-height: 26rem;
		padding-bottom: 3.5rem;
	}
	.care-page-hero__title { font-size: 2.65rem; }
	.care-page-intro { padding: 4rem 0; }
	.care-page-card__body {
		min-height: 0;
		padding: 1.6rem;
	}
}

/* ============================================================
   26. Our Spaces Page
   ============================================================ */
.spaces-page-hero {
	position: relative;
	background: var(--stone-950);
	color: #fff;
	min-height: 27rem;
	padding: 9rem 0 4rem;
	overflow: hidden;
	display: flex;
	align-items: flex-end;
}
@media (min-width: 768px) {
	.spaces-page-hero {
		min-height: 34rem;
		padding: 12rem 0 5.5rem;
	}
}
.spaces-page-hero__media {
	position: absolute;
	inset: 0;
	z-index: 0;
}
.spaces-page-hero__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center 48%;
	filter: brightness(0.62) saturate(0.86);
}
.spaces-page-hero__overlay {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(to right, hsl(20 14% 4% / 0.44) 0%, hsl(20 14% 4% / 0.26) 48%, hsl(20 14% 4% / 0.14) 100%),
		linear-gradient(to bottom, hsl(20 14% 4% / 0.08), hsl(20 14% 4% / 0.22));
}
.spaces-page-hero__inner {
	position: relative;
	z-index: 1;
	width: 100%;
}
.spaces-page-hero__back {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	color: rgba(255,255,255,0.72);
	font-size: 0.75rem;
	font-weight: 500;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	margin-bottom: 2.25rem;
	transition: color 0.25s ease;
}
.spaces-page-hero__back:hover { color: #fff; }
.spaces-page-hero__back [data-lucide] { width: 1rem; height: 1rem; }
.spaces-page-kicker {
	display: inline-block;
	color: var(--primary-hex);
	font-size: 0.6875rem;
	font-weight: 600;
	letter-spacing: 0.32em;
	text-transform: uppercase;
}
.spaces-page-hero .spaces-page-kicker { margin-bottom: 1.25rem; }
.spaces-page-hero__title {
	color: #fff;
	font-family: var(--font-serif);
	font-size: clamp(3rem, 7vw, 5rem);
	font-weight: 400;
	letter-spacing: -0.03em;
	line-height: 1.08;
	margin: 0;
	max-width: 54rem;
}

.spaces-page-intro {
	background: var(--stone-50);
	padding: 5rem 0;
	text-align: center;
}
.spaces-page-intro__inner {
	max-width: 50rem;
}
.spaces-page-intro p {
	color: hsl(0 0% 10% / 0.62);
	font-size: clamp(1.25rem, 2vw, 1.55rem);
	font-weight: 300;
	line-height: 1.55;
	margin: 0;
}

.spaces-page-grid-section {
	background: #fff;
	padding: 6rem 0 7.5rem;
}
@media (min-width: 768px) {
	.spaces-page-grid-section { padding: 7rem 0 8rem; }
}
.spaces-page-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2rem;
}
@media (min-width: 768px) {
	.spaces-page-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (min-width: 1180px) {
	.spaces-page-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
.spaces-page-card {
	background: #fff;
	border: 1px solid var(--stone-200);
	border-radius: var(--radius-md);
	box-shadow: 0 2px 10px hsl(0 0% 0% / 0.05);
	overflow: hidden;
	transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}
.spaces-page-card:hover {
	border-color: hsl(var(--primary) / 0.24);
	box-shadow: 0 16px 36px hsl(0 0% 0% / 0.08);
	transform: translateY(-2px);
}
.spaces-page-card__media {
	display: block;
	aspect-ratio: 16 / 11;
	background: var(--stone-100);
	overflow: hidden;
}
.spaces-page-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.55s ease, filter 0.55s ease;
}
.spaces-page-card:hover .spaces-page-card__media img {
	transform: scale(1.04);
}
.spaces-page-card:nth-child(3) .spaces-page-card__media img {
	filter: grayscale(100%) brightness(1.2);
}
.spaces-page-card__body {
	padding: 2.25rem;
	min-height: 17rem;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}
.spaces-page-card__eyebrow {
	color: var(--primary-hex);
	font-size: 0.6875rem;
	font-weight: 600;
	letter-spacing: 0.2em;
	line-height: 1.4;
	margin-bottom: 0.9rem;
	text-transform: uppercase;
}
.spaces-page-card h2 {
	font-size: clamp(1.45rem, 2vw, 1.9rem);
	font-weight: 400;
	letter-spacing: -0.03em;
	line-height: 1.2;
	margin: 0 0 1.35rem;
}
.spaces-page-card h2 a {
	color: var(--foreground);
}
.spaces-page-card h2 a:hover { color: var(--primary-hex); }
.spaces-page-card p {
	color: hsl(0 0% 10% / 0.48);
	font-size: 0.98rem;
	font-weight: 300;
	line-height: 1.65;
	margin: 0 0 2rem;
}
.spaces-page-card__link {
	color: hsl(0 0% 10% / 0.36);
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.18em;
	margin-top: auto;
	text-transform: uppercase;
}
.spaces-page-card__link:hover { color: var(--primary-hex); }
.spaces-page-card__link [data-lucide] { width: 0.9rem; height: 0.9rem; }

.spaces-page-cta {
	position: relative;
	background: var(--stone-950);
	color: #fff;
	min-height: 31rem;
	padding: 6rem 0;
	display: flex;
	align-items: center;
	overflow: hidden;
	text-align: center;
}
@media (min-width: 768px) {
	.spaces-page-cta {
		min-height: 36rem;
		padding: 7rem 0;
	}
}
.spaces-page-cta__media {
	position: absolute;
	inset: 0;
	z-index: 0;
}
.spaces-page-cta__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	filter: blur(3px) brightness(0.42) saturate(0.8);
	transform: scale(1.03);
}
.spaces-page-cta__overlay {
	position: absolute;
	inset: 0;
	background: hsl(20 14% 4% / 0.42);
}
.spaces-page-cta__inner {
	position: relative;
	z-index: 1;
	max-width: 58rem;
}
.spaces-page-cta .spaces-page-kicker { margin-bottom: 1.5rem; }
.spaces-page-cta h2 {
	color: #fff;
	font-size: clamp(2.5rem, 5vw, 4rem);
	font-weight: 400;
	letter-spacing: -0.035em;
	margin: 0 0 2rem;
}
.spaces-page-cta p {
	color: rgba(255,255,255,0.58);
	font-size: clamp(1rem, 2vw, 1.25rem);
	font-weight: 300;
	line-height: 1.6;
	margin: 0 auto 3rem;
	max-width: 42rem;
}

@media (max-width: 639px) {
	.spaces-page-hero {
		min-height: 26rem;
		padding-bottom: 3.5rem;
	}
	.spaces-page-hero__title { font-size: 2.65rem; }
	.spaces-page-intro { padding: 4rem 0; }
	.spaces-page-card__body {
		min-height: 0;
		padding: 1.75rem;
	}
}

/* ============================================================
   27. Twenty-Five Years Page
   ============================================================ */
.anniversary-hero {
	position: relative;
	background: var(--stone-950);
	color: #fff;
	min-height: 27rem;
	padding: 9rem 0 4rem;
	overflow: hidden;
	display: flex;
	align-items: flex-end;
}
@media (min-width: 768px) {
	.anniversary-hero {
		min-height: 34rem;
		padding: 12rem 0 5.5rem;
	}
}
.anniversary-hero__media {
	position: absolute;
	inset: 0;
	z-index: 0;
}
.anniversary-hero__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center 42%;
	filter: grayscale(100%) brightness(0.58);
}
.anniversary-hero__overlay {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(to right, hsl(20 14% 4% / 0.44) 0%, hsl(20 14% 4% / 0.22) 48%, hsl(20 14% 4% / 0.18) 100%),
		linear-gradient(to bottom, hsl(20 14% 4% / 0.16), hsl(20 14% 4% / 0.22));
}
.anniversary-hero__inner {
	position: relative;
	z-index: 1;
	width: 100%;
}
.anniversary-hero__back {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	color: rgba(255,255,255,0.72);
	font-size: 0.75rem;
	font-weight: 500;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	margin-bottom: 2.25rem;
	transition: color 0.25s ease;
}
.anniversary-hero__back:hover { color: #fff; }
.anniversary-hero__back [data-lucide] { width: 1rem; height: 1rem; }
.anniversary-kicker {
	display: inline-block;
	color: var(--primary-hex);
	font-size: 0.6875rem;
	font-weight: 600;
	letter-spacing: 0.3em;
	text-transform: uppercase;
}
.anniversary-hero .anniversary-kicker { margin-bottom: 1.25rem; }
.anniversary-hero__title {
	color: #fff;
	font-family: var(--font-serif);
	font-size: clamp(3rem, 7vw, 5rem);
	font-weight: 400;
	letter-spacing: -0.03em;
	line-height: 1.08;
	margin: 0;
	max-width: 54rem;
}

.anniversary-intro,
.anniversary-stats,
.anniversary-community,
.anniversary-recognition {
	background: #fff;
}
.anniversary-timeline,
.anniversary-values,
.anniversary-future,
.anniversary-partnerships {
	background: var(--stone-50);
}
.anniversary-intro,
.anniversary-community,
.anniversary-future,
.anniversary-partnerships {
	padding: 6rem 0;
	text-align: center;
}
.anniversary-timeline,
.anniversary-stats,
.anniversary-values,
.anniversary-recognition {
	padding: 6rem 0 7rem;
}
@media (min-width: 768px) {
	.anniversary-intro,
	.anniversary-community,
	.anniversary-future,
	.anniversary-partnerships {
		padding: 7.5rem 0;
	}
	.anniversary-timeline,
	.anniversary-stats,
	.anniversary-values,
	.anniversary-recognition {
		padding: 7.5rem 0 8rem;
	}
}

.anniversary-text-block {
	max-width: 45rem;
	text-align: center;
}
.anniversary-text-block .anniversary-kicker,
.anniversary-section-header .anniversary-kicker {
	margin-bottom: 1.25rem;
}
.anniversary-text-block h2,
.anniversary-section-header h2 {
	font-size: clamp(2.1rem, 4vw, 3.25rem);
	font-weight: 400;
	letter-spacing: -0.035em;
	line-height: 1.12;
	margin: 0 0 1.25rem;
}
.anniversary-text-block p {
	color: hsl(0 0% 10% / 0.44);
	font-size: 1rem;
	font-weight: 300;
	line-height: 1.75;
	margin: 0 auto 1.5rem;
}
.anniversary-text-block__note {
	color: hsl(0 0% 10% / 0.5) !important;
	font-style: italic;
	margin-bottom: 0 !important;
}
.anniversary-section-header {
	text-align: center;
	max-width: 42rem;
	margin: 0 auto 4.25rem;
}

.anniversary-timeline__list {
	max-width: 45rem;
	margin: 0 auto;
	position: relative;
}
.anniversary-timeline__list::before {
	content: "";
	position: absolute;
	left: 1.5rem;
	top: 0.5rem;
	bottom: 0.5rem;
	width: 1px;
	background: var(--stone-200);
}
.anniversary-milestone {
	display: grid;
	grid-template-columns: 3rem minmax(0, 1fr);
	gap: 1.5rem;
	position: relative;
	margin-bottom: 3.5rem;
}
.anniversary-milestone:last-child { margin-bottom: 0; }
.anniversary-milestone__mark {
	width: 2.25rem;
	height: 2.25rem;
	border-radius: var(--radius-full);
	background: hsl(var(--primary) / 0.1);
	color: var(--primary-hex);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	position: relative;
	z-index: 1;
	margin: 0.1rem auto 0;
}
.anniversary-milestone__mark [data-lucide] { width: 1rem; height: 1rem; }
.anniversary-milestone__body span {
	color: var(--primary-hex);
	display: block;
	font-size: 0.6875rem;
	font-weight: 600;
	line-height: 1;
	margin-bottom: 0.6rem;
}
.anniversary-milestone__body h3 {
	font-size: 1.2rem;
	font-weight: 500;
	letter-spacing: -0.02em;
	margin: 0 0 0.5rem;
}
.anniversary-milestone__body p {
	color: hsl(0 0% 10% / 0.45);
	font-size: 0.9375rem;
	font-weight: 300;
	line-height: 1.65;
	margin: 0;
}

.anniversary-stats__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 2rem;
	max-width: 56rem;
	margin: 0 auto;
}
@media (min-width: 768px) {
	.anniversary-stats__grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
.anniversary-stat {
	text-align: center;
}
.anniversary-stat__icon {
	width: 3rem;
	height: 3rem;
	border-radius: var(--radius-full);
	background: hsl(var(--primary) / 0.1);
	color: var(--primary-hex);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 1rem;
}
.anniversary-stat__icon [data-lucide] { width: 1.25rem; height: 1.25rem; }
.anniversary-stat strong {
	color: hsl(0 0% 10% / 0.66);
	display: block;
	font-size: clamp(2rem, 4vw, 3rem);
	font-weight: 400;
	letter-spacing: -0.04em;
	line-height: 1;
	margin-bottom: 0.75rem;
}
.anniversary-stat span {
	color: hsl(0 0% 10% / 0.48);
	display: block;
	font-size: 0.6875rem;
	font-weight: 600;
	letter-spacing: 0.16em;
	text-transform: uppercase;
}

.anniversary-values__grid,
.anniversary-recognition__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.5rem;
	max-width: 62rem;
	margin: 0 auto;
}
@media (min-width: 768px) {
	.anniversary-values__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
	.anniversary-recognition__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
.anniversary-value-card,
.anniversary-recognition-card {
	background: #fff;
	border: 1px solid var(--stone-200);
	border-radius: var(--radius-md);
	box-shadow: 0 2px 8px hsl(0 0% 0% / 0.03);
	padding: 2rem;
}
.anniversary-value-card__icon {
	width: 3rem;
	height: 3rem;
	border-radius: var(--radius-full);
	background: hsl(var(--primary) / 0.1);
	color: var(--primary-hex);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1.4rem;
}
.anniversary-value-card__icon [data-lucide] { width: 1.2rem; height: 1.2rem; }
.anniversary-value-card h3,
.anniversary-recognition-card h3 {
	font-size: 1.125rem;
	font-weight: 500;
	letter-spacing: -0.02em;
	margin: 0 0 0.85rem;
}
.anniversary-value-card p,
.anniversary-recognition-card p {
	color: hsl(0 0% 10% / 0.44);
	font-size: 0.875rem;
	font-weight: 300;
	line-height: 1.7;
	margin: 0;
}
.anniversary-recognition-card span {
	color: var(--primary-hex);
	display: block;
	font-size: 0.625rem;
	font-weight: 600;
	letter-spacing: 0.18em;
	margin-bottom: 0.7rem;
	text-transform: uppercase;
}

.anniversary-cta {
	background: var(--stone-900);
	color: #fff;
	padding: 6rem 0 7rem;
	text-align: center;
}
@media (min-width: 768px) {
	.anniversary-cta { padding: 7.5rem 0 8rem; }
}
.anniversary-cta__inner { max-width: 56rem; }
.anniversary-cta h2 {
	color: #fff;
	font-size: clamp(2.5rem, 5vw, 4rem);
	font-weight: 400;
	letter-spacing: -0.035em;
	margin: 0 0 1.5rem;
}
.anniversary-cta p {
	color: rgba(255,255,255,0.62);
	font-size: 1rem;
	font-weight: 300;
	line-height: 1.65;
	margin: 0 auto 2.5rem;
	max-width: 38rem;
}

@media (max-width: 639px) {
	.anniversary-hero {
		min-height: 26rem;
		padding-bottom: 3.5rem;
	}
	.anniversary-hero__title { font-size: 2.65rem; }
	.anniversary-timeline__list::before { left: 1.5rem; }
	.anniversary-value-card,
	.anniversary-recognition-card {
		padding: 1.75rem;
	}
}

/* ============================================================
   28. Testimonials Page
   ============================================================ */
.testimonial-page-hero {
	position: relative;
	background: var(--stone-950);
	color: #fff;
	min-height: 27rem;
	padding: 9rem 0 4rem;
	overflow: hidden;
	display: flex;
	align-items: flex-end;
}
@media (min-width: 768px) {
	.testimonial-page-hero {
		min-height: 34rem;
		padding: 12rem 0 5.5rem;
	}
}
.testimonial-page-hero__media {
	position: absolute;
	inset: 0;
	z-index: 0;
}
.testimonial-page-hero__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center 38%;
	filter: brightness(0.58) saturate(0.9);
}
.testimonial-page-hero__overlay {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(to right, hsl(20 14% 4% / 0.44) 0%, hsl(20 14% 4% / 0.22) 48%, hsl(20 14% 4% / 0.16) 100%),
		linear-gradient(to bottom, hsl(20 14% 4% / 0.16), hsl(20 14% 4% / 0.22));
}
.testimonial-page-hero__inner {
	position: relative;
	z-index: 1;
	width: 100%;
}
.testimonial-page-hero__back {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	color: rgba(255,255,255,0.72);
	font-size: 0.75rem;
	font-weight: 500;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	margin-bottom: 2.25rem;
	transition: color 0.25s ease;
}
.testimonial-page-hero__back:hover { color: #fff; }
.testimonial-page-hero__back [data-lucide] { width: 1rem; height: 1rem; }
.testimonial-page-hero__eyebrow,
.testimonial-page-kicker {
	display: inline-block;
	color: var(--primary-hex);
	font-size: 0.6875rem;
	font-weight: 600;
	letter-spacing: 0.32em;
	text-transform: uppercase;
}
.testimonial-page-hero__eyebrow { margin-bottom: 1.25rem; }
.testimonial-page-hero__title {
	color: #fff;
	font-family: var(--font-serif);
	font-size: clamp(3rem, 7vw, 5rem);
	font-weight: 400;
	letter-spacing: -0.03em;
	line-height: 1.08;
	margin: 0;
	max-width: 46rem;
}

.testimonial-page-list {
	background: #fff;
	padding: 6rem 0 7rem;
}
@media (min-width: 768px) {
	.testimonial-page-list { padding: 7rem 0 8rem; }
}
.testimonial-page-header {
	text-align: center;
	max-width: 42rem;
	margin: 0 auto 4.5rem;
}
.testimonial-page-header .testimonial-page-kicker { margin-bottom: 1.25rem; }
.testimonial-page-header h2 {
	font-size: clamp(2.25rem, 4vw, 3.25rem);
	font-weight: 400;
	letter-spacing: -0.035em;
	margin: 0;
}
.testimonial-page-grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	gap: 1.5rem;
	max-width: 76rem;
	margin: 0 auto;
}
@media (min-width: 768px) {
	.testimonial-page-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 1.75rem;
	}
	.testimonial-page-grid:has(.testimonial-page-card:only-child) {
		grid-template-columns: minmax(0, 31rem);
		justify-content: start;
	}
}
.testimonial-page-card {
	background: var(--stone-50);
	border: 1px solid var(--stone-200);
	border-radius: var(--radius-lg);
	box-shadow: 0 2px 8px hsl(0 0% 0% / 0.04);
	margin: 0;
	min-height: 19rem;
	padding: 2.75rem;
	transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}
.testimonial-page-card:hover {
	border-color: hsl(var(--primary) / 0.25);
	box-shadow: 0 14px 34px hsl(0 0% 0% / 0.08);
	transform: translateY(-2px);
}
.testimonial-page-card__icon {
	width: 3rem;
	height: 3rem;
	border-radius: var(--radius-full);
	background: hsl(var(--primary) / 0.1);
	color: var(--primary-hex);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1.75rem;
}
.testimonial-page-card__icon [data-lucide] { width: 1.25rem; height: 1.25rem; }
.testimonial-page-card blockquote {
	color: hsl(0 0% 10% / 0.48);
	font-size: 1.0625rem;
	font-style: italic;
	font-weight: 300;
	line-height: 1.75;
	margin: 0 0 2.25rem;
}
.testimonial-page-card figcaption {
	border-top: 1px solid hsl(0 0% 10% / 0.04);
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
	padding-top: 1.5rem;
}
.testimonial-page-card strong {
	color: hsl(0 0% 10% / 0.7);
	font-size: 0.9375rem;
	font-weight: 600;
}
.testimonial-page-card span {
	color: hsl(0 0% 10% / 0.38);
	font-size: 0.875rem;
	font-weight: 300;
}

.testimonial-page-cta {
	background: var(--stone-900);
	color: #fff;
	padding: 6rem 0 7rem;
	text-align: center;
}
@media (min-width: 768px) {
	.testimonial-page-cta { padding: 7.5rem 0 8rem; }
}
.testimonial-page-cta__inner { max-width: 42rem; }
.testimonial-page-cta h2 {
	color: #fff;
	font-size: clamp(2.5rem, 5vw, 4rem);
	font-weight: 400;
	letter-spacing: -0.035em;
	margin: 0 0 2rem;
}
.testimonial-page-cta p {
	color: rgba(255,255,255,0.6);
	font-size: 1.25rem;
	font-weight: 300;
	line-height: 1.65;
	margin: 0 auto 3rem;
	max-width: 40rem;
}

@media (max-width: 639px) {
	.testimonial-page-hero {
		min-height: 26rem;
		padding-bottom: 3.5rem;
	}
	.testimonial-page-hero__title { font-size: 2.65rem; }
	.testimonial-page-card {
		min-height: 0;
		padding: 1.75rem;
	}
	.testimonial-page-cta p { font-size: 1rem; }
}

/* ============================================================
   29. Sisters' Circle Page
   ============================================================ */
.sisters-hero {
	position: relative;
	background: var(--stone-950);
	color: #fff;
	min-height: 27rem;
	padding: 9rem 0 4rem;
	overflow: hidden;
	display: flex;
	align-items: flex-end;
}
@media (min-width: 768px) {
	.sisters-hero {
		min-height: 34rem;
		padding: 12rem 0 5.5rem;
	}
}
.sisters-hero__media {
	position: absolute;
	inset: 0;
	z-index: 0;
}
.sisters-hero__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center 38%;
	filter: brightness(0.58) saturate(0.9);
}
@media (min-width: 1024px) {
	.sisters-hero__media img { object-position: center 42%; }
}
.sisters-hero__overlay {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(to right, hsl(20 14% 4% / 0.44) 0%, hsl(20 14% 4% / 0.22) 46%, hsl(20 14% 4% / 0.16) 100%),
		linear-gradient(to bottom, hsl(20 14% 4% / 0.08), hsl(20 14% 4% / 0.22));
}
.sisters-hero__inner {
	position: relative;
	z-index: 1;
	width: 100%;
}
.sisters-hero__back {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	color: rgba(255,255,255,0.72);
	font-size: 0.75rem;
	font-weight: 500;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	margin-bottom: 2.25rem;
	transition: color 0.25s ease;
}
.sisters-hero__back:hover { color: #fff; }
.sisters-hero__back [data-lucide] { width: 1rem; height: 1rem; }
.sisters-hero__eyebrow,
.sisters-section-kicker {
	display: inline-block;
	color: var(--primary-hex);
	font-size: 0.6875rem;
	font-weight: 600;
	letter-spacing: 0.32em;
	text-transform: uppercase;
}
.sisters-hero__eyebrow { margin-bottom: 1.25rem; }
.sisters-hero__title {
	color: #fff;
	font-family: var(--font-serif);
	font-size: clamp(3rem, 7vw, 5rem);
	font-weight: 400;
	letter-spacing: -0.03em;
	line-height: 1.08;
	margin: 0;
	max-width: 42rem;
}

.sisters-intro {
	background: #fff;
	padding: 5.5rem 0 6.5rem;
	text-align: center;
}
@media (min-width: 768px) {
	.sisters-intro { padding: 7rem 0 8rem; }
}
.sisters-intro__inner {
	max-width: 45rem;
	margin: 0 auto;
}
.sisters-intro__icon {
	width: 4rem;
	height: 4rem;
	border-radius: var(--radius-full);
	background: hsl(var(--primary) / 0.1);
	color: var(--primary-hex);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 2rem;
}
.sisters-intro__icon [data-lucide] { width: 1.75rem; height: 1.75rem; }
.sisters-intro .sisters-section-kicker { margin-bottom: 1.25rem; }
.sisters-intro__heading {
	font-size: clamp(2.25rem, 4vw, 3rem);
	font-weight: 400;
	letter-spacing: -0.03em;
	margin: 0 0 2rem;
}
.sisters-intro p {
	color: hsl(0 0% 10% / 0.48);
	font-size: 1.0625rem;
	font-weight: 300;
	line-height: 1.75;
	margin: 0 auto 2rem;
}
.sisters-intro blockquote {
	color: hsl(0 0% 10% / 0.58);
	font-size: 1rem;
	font-style: italic;
	font-weight: 300;
	line-height: 1.8;
	margin: 0 auto 1.75rem;
	max-width: 42rem;
}
.sisters-intro__promise {
	color: var(--primary-hex) !important;
	font-size: 0.75rem !important;
	font-weight: 600 !important;
	letter-spacing: 0.24em;
	line-height: 1.6 !important;
	text-transform: uppercase;
	margin-bottom: 0 !important;
}

.sisters-offers {
	background: var(--stone-50);
	border-top: 1px solid var(--stone-200);
	padding: 6rem 0 7rem;
}
@media (min-width: 768px) {
	.sisters-offers { padding: 7rem 0 8rem; }
}
.sisters-section-header {
	text-align: center;
	max-width: 52rem;
	margin: 0 auto 4rem;
}
.sisters-section-header .sisters-section-kicker { margin-bottom: 1.25rem; color: hsl(var(--primary) / 0.45); }
.sisters-section-header h2 {
	color: hsl(0 0% 10% / 0.5);
	font-size: clamp(2.15rem, 4vw, 3.25rem);
	font-weight: 400;
	letter-spacing: -0.035em;
	margin: 0 0 1rem;
}
.sisters-section-header p {
	color: hsl(0 0% 10% / 0.32);
	font-size: 1rem;
	font-weight: 300;
	line-height: 1.7;
	margin: 0;
}
.sisters-offers__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.5rem;
	max-width: 56rem;
	margin: 0 auto;
}
@media (min-width: 768px) {
	.sisters-offers__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 1.75rem;
	}
}
.sisters-offer-card {
	background: #fff;
	border: 1px solid var(--stone-200);
	border-radius: var(--radius-md);
	box-shadow: 0 2px 8px hsl(0 0% 0% / 0.04);
	min-height: 16.25rem;
	padding: 2.25rem;
	transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}
.sisters-offer-card:hover {
	border-color: hsl(var(--primary) / 0.25);
	box-shadow: 0 14px 34px hsl(0 0% 0% / 0.08);
	transform: translateY(-2px);
}
.sisters-offer-card__icon {
	width: 3.25rem;
	height: 3.25rem;
	border-radius: var(--radius-full);
	border: 1px solid hsl(var(--primary) / 0.32);
	color: var(--primary-hex);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1.75rem;
}
.sisters-offer-card__icon [data-lucide] { width: 1.35rem; height: 1.35rem; }
.sisters-offer-card h3 {
	font-size: 1.25rem;
	font-weight: 500;
	letter-spacing: -0.02em;
	margin: 0 0 1rem;
}
.sisters-offer-card p {
	color: hsl(0 0% 10% / 0.44);
	font-size: 0.9375rem;
	font-weight: 300;
	line-height: 1.7;
	margin: 0;
}

.sisters-cta {
	position: relative;
	background: var(--stone-950);
	color: #fff;
	min-height: 28rem;
	padding: 5.5rem 0;
	display: flex;
	align-items: center;
	overflow: hidden;
	text-align: center;
}
@media (min-width: 768px) {
	.sisters-cta {
		min-height: 34rem;
		padding: 7rem 0;
	}
}
.sisters-cta__media {
	position: absolute;
	inset: 0;
	z-index: 0;
}
.sisters-cta__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	filter: blur(3px) brightness(0.42) saturate(0.85);
	transform: scale(1.03);
}
.sisters-cta__overlay {
	position: absolute;
	inset: 0;
	background: hsl(20 14% 4% / 0.42);
}
.sisters-cta__inner {
	position: relative;
	z-index: 1;
	max-width: 48rem;
}
.sisters-cta .sisters-section-kicker { margin-bottom: 1.5rem; }
.sisters-cta h2 {
	color: #fff;
	font-size: clamp(2.25rem, 5vw, 3.5rem);
	font-weight: 400;
	line-height: 1.15;
	letter-spacing: -0.035em;
	margin: 0 auto 2rem;
	max-width: 41rem;
}
.sisters-cta p {
	color: rgba(255,255,255,0.72);
	font-size: 1rem;
	font-weight: 300;
	line-height: 1.75;
	margin: 0 auto 3rem;
	max-width: 36rem;
}

@media (max-width: 639px) {
	.sisters-hero {
		min-height: 26rem;
		padding-bottom: 3.5rem;
	}
	.sisters-hero__title {
		font-size: 2.65rem;
		max-width: 20rem;
	}
	.sisters-offer-card {
		min-height: 0;
		padding: 1.75rem;
	}
}

/* ============================================================
   30. Space Detail Page
   ============================================================ */
.space-detail-hero {
	position: relative;
	background: var(--stone-950);
	color: #fff;
	min-height: 31rem;
	padding: 10rem 0 4.75rem;
	overflow: hidden;
	display: flex;
	align-items: flex-end;
}
@media (min-width: 768px) {
	.space-detail-hero {
		min-height: 43rem;
		padding: 13rem 0 6rem;
	}
}
.space-detail-hero__media {
	position: absolute;
	inset: 0;
	z-index: 0;
}
.space-detail-hero__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center 45%;
	filter: brightness(0.68) saturate(0.9);
}
.space-detail-page--crematorium .space-detail-hero__media img {
	filter: grayscale(100%) brightness(0.68);
}
.space-detail-page--pavilion .space-detail-hero__media img {
	object-position: center 38%;
}
.space-detail-page--vip .space-detail-hero__media img {
	object-position: center 46%;
}
.space-detail-page--shop .space-detail-hero__media img {
	object-position: center 48%;
	filter: brightness(0.62) saturate(0.82);
}
.space-detail-hero__overlay {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(to right, hsl(20 14% 4% / 0.44) 0%, hsl(20 14% 4% / 0.22) 48%, hsl(20 14% 4% / 0.12) 100%),
		linear-gradient(to bottom, hsl(20 14% 4% / 0.16), hsl(20 14% 4% / 0.22));
}
.space-detail-hero__inner {
	position: relative;
	z-index: 1;
	width: 100%;
}
.space-detail-hero__back {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	color: rgba(255,255,255,0.74);
	font-size: 0.75rem;
	font-weight: 500;
	letter-spacing: 0.16em;
	margin-bottom: 2.25rem;
	text-transform: uppercase;
	transition: color 0.25s ease;
}
.space-detail-hero__back:hover { color: #fff; }
.space-detail-hero__back [data-lucide] { width: 1rem; height: 1rem; }
.space-detail-kicker {
	display: inline-block;
	color: var(--primary-hex);
	font-size: 0.6875rem;
	font-weight: 600;
	letter-spacing: 0.32em;
	text-transform: uppercase;
}
.space-detail-hero .space-detail-kicker { margin-bottom: 1.35rem; }
.space-detail-hero__title {
	color: #fff;
	font-family: var(--font-serif);
	font-size: clamp(4rem, 8vw, 6.5rem);
	font-weight: 400;
	letter-spacing: -0.045em;
	line-height: 0.98;
	margin: 0;
	max-width: 42rem;
}

.space-detail-features {
	background: #fff;
	border-bottom: 1px solid var(--stone-200);
	padding: 2.25rem 0;
}
.space-detail-features__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 2rem;
}
@media (min-width: 900px) {
	.space-detail-features__grid {
		grid-template-columns: repeat(4, minmax(0, 1fr));
		gap: 3rem;
	}
	.space-detail-features--count-2 .space-detail-features__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		max-width: 44rem;
	}
	.space-detail-features--count-3 .space-detail-features__grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}
.space-detail-feature {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	min-width: 0;
}
.space-detail-feature__icon {
	width: 3rem;
	height: 3rem;
	border-radius: var(--radius-full);
	background: hsl(var(--primary) / 0.09);
	color: var(--primary-hex);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1.05rem;
}
.space-detail-feature__icon [data-lucide] { width: 1.25rem; height: 1.25rem; }
.space-detail-feature__label {
	color: hsl(0 0% 10% / 0.38);
	font-size: 0.6875rem;
	font-weight: 600;
	letter-spacing: 0.18em;
	margin-bottom: 0.25rem;
	text-transform: uppercase;
}
.space-detail-feature__value {
	color: var(--foreground);
	font-size: 0.9375rem;
	font-weight: 500;
	line-height: 1.45;
}

.space-detail-body {
	background: var(--stone-50);
	padding: 6rem 0 8rem;
}
@media (min-width: 768px) {
	.space-detail-body { padding: 7.5rem 0 8.5rem; }
}
.space-detail-columns {
	display: grid;
	grid-template-columns: 1fr;
	gap: 3rem;
	max-width: 61rem;
}
@media (min-width: 900px) {
	.space-detail-columns {
		grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
		gap: 7rem;
	}
}
.space-detail-copy .space-detail-kicker,
.space-detail-gallery .space-detail-kicker,
.space-detail-reserve .space-detail-kicker {
	margin-bottom: 1.5rem;
}
.space-detail-copy h2 {
	font-size: clamp(2.45rem, 4vw, 3.65rem);
	font-weight: 400;
	letter-spacing: -0.04em;
	line-height: 1.12;
	margin: 0 0 2rem;
	max-width: 42rem;
}
.space-detail-copy p,
.space-detail-copy .prose {
	color: hsl(0 0% 10% / 0.52);
	font-size: clamp(1rem, 1.35vw, 1.2rem);
	font-weight: 300;
	line-height: 1.72;
	margin: 0;
}
.space-detail-copy p + p {
	margin-top: 1.5rem;
}
.space-detail-copy strong {
	color: hsl(0 0% 10% / 0.72);
	font-weight: 600;
}
.space-detail-copy--offer {
	padding-top: 0.25rem;
}
@media (min-width: 900px) {
	.space-detail-copy--offer { padding-top: 0.35rem; }
}

.space-detail-gallery {
	margin-top: 8rem;
	text-align: center;
}
.space-detail-gallery__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.75rem;
	justify-items: center;
	margin-top: 0.75rem;
}
@media (min-width: 768px) {
	.space-detail-gallery__grid {
		grid-template-columns: repeat(auto-fit, minmax(min(100%, 18rem), 1fr));
		justify-content: center;
		justify-items: stretch;
	}
}
.space-detail-gallery__item {
	width: 100%;
	max-width: 34rem;
	aspect-ratio: 16 / 10.25;
	border-radius: var(--radius-md);
	box-shadow: 0 16px 40px hsl(0 0% 0% / 0.08);
	cursor: pointer;
	margin: 0;
	overflow: hidden;
}
.space-detail-gallery__item:focus-visible {
	box-shadow: 0 0 0 4px hsl(0 86% 52% / 0.18), 0 18px 42px hsl(0 0% 0% / 0.12);
	outline: none;
}
@media (min-width: 768px) {
	.space-detail-gallery__item {
		max-width: none;
	}
}
.space-detail-gallery__item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.space-detail-page--crematorium .space-detail-gallery__item img {
	filter: grayscale(100%) brightness(1.14);
}
@media (min-width: 900px) {
	.space-detail-page--pavilion .space-detail-gallery,
	.space-detail-page--vip .space-detail-gallery {
		max-width: 72rem;
	}
	.space-detail-page--pavilion .space-detail-gallery__grid,
	.space-detail-page--vip .space-detail-gallery__grid {
		grid-template-columns: minmax(0, 1.35fr) repeat(2, minmax(0, 0.65fr));
		grid-auto-rows: 10.75rem;
		align-items: stretch;
		gap: 1.25rem;
	}
	.space-detail-page--pavilion .space-detail-gallery__item,
	.space-detail-page--vip .space-detail-gallery__item {
		aspect-ratio: auto;
		max-width: none;
		width: 100%;
	}
	.space-detail-page--pavilion .space-detail-gallery__item:first-child,
	.space-detail-page--vip .space-detail-gallery__item:first-child {
		grid-column: 1;
		grid-row: 1 / span 2;
	}
	.space-detail-page--pavilion .space-detail-gallery__item:nth-child(6),
	.space-detail-page--vip .space-detail-gallery__item:nth-child(6) {
		grid-column: 1;
		grid-row: 3;
		max-width: 16rem;
		justify-self: start;
	}
	.space-detail-page--pavilion .space-detail-gallery__item:nth-child(n+2):nth-child(-n+5),
	.space-detail-page--vip .space-detail-gallery__item:nth-child(n+2):nth-child(-n+5) {
		grid-row: span 1;
	}
}

.shop-detail {
	background: var(--stone-50);
	padding: 5.5rem 0 7rem;
}
@media (min-width: 768px) {
	.shop-detail { padding: 7rem 0 8rem; }
}
.shop-detail__intro,
.shop-detail__header {
	margin: 0 auto;
	max-width: 46rem;
	text-align: center;
}
.shop-detail__intro {
	max-width: 62rem;
}
.shop-detail__intro .space-detail-kicker,
.shop-detail__header .space-detail-kicker {
	margin-bottom: 1.35rem;
}
.shop-detail__intro h2,
.shop-detail__header h2 {
	font-size: clamp(2.25rem, 4vw, 3.4rem);
	font-weight: 400;
	letter-spacing: -0.04em;
	line-height: 1.12;
	margin: 0 auto 1.5rem;
	max-width: 50rem;
}
.shop-detail__intro p {
	color: hsl(0 0% 10% / 0.62);
	font-size: 1.1875rem;
	font-weight: 300;
	line-height: 1.8;
	margin: 0 auto 1.25rem;
	max-width: 58rem;
}
.shop-detail__intro p:last-child {
	margin-bottom: 0;
}
@media (min-width: 768px) {
	.shop-detail__intro p { font-size: 1.3125rem; }
}
.shop-detail__section {
	margin-top: 5.5rem;
}
@media (min-width: 768px) {
	.shop-detail__section { margin-top: 7rem; }
}
.shop-detail__section--urns {
	margin-top: 6.5rem;
}
.shop-detail__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.75rem;
	margin: 3rem auto 0;
}
.shop-detail__grid--caskets {
	max-width: 52rem;
}
.shop-detail__grid--urns {
	max-width: 72rem;
}
@media (min-width: 720px) {
	.shop-detail__grid--caskets {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
	.shop-detail__grid--urns {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}
@media (min-width: 1080px) {
	.shop-detail__grid--urns {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}
}
.shop-detail-card {
	background: #fff;
	border: 1px solid var(--stone-200);
	border-radius: var(--radius-md);
	box-shadow: 0 2px 10px hsl(0 0% 0% / 0.05);
	overflow: hidden;
	transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}
.shop-detail-card:hover {
	border-color: hsl(var(--primary) / 0.22);
	box-shadow: 0 16px 34px hsl(0 0% 0% / 0.08);
	transform: translateY(-2px);
}
.shop-detail-card__media {
	aspect-ratio: 16 / 10.4;
	background: var(--stone-100);
	margin: 0;
	overflow: hidden;
}
.shop-detail-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.55s ease;
}
.shop-detail-card:hover .shop-detail-card__media img {
	transform: scale(1.04);
}
.shop-detail-card__body {
	min-height: 13.75rem;
	padding: 1.65rem 1.75rem 1.85rem;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}
.shop-detail-card h3 {
	font-size: 1.12rem;
	font-weight: 500;
	letter-spacing: -0.02em;
	line-height: 1.25;
	margin: 0 0 0.85rem;
}
.shop-detail-card p {
	color: hsl(0 0% 10% / 0.48);
	font-size: 0.9rem;
	font-weight: 300;
	line-height: 1.62;
	margin: 0 0 1.75rem;
}
.shop-detail-card a {
	color: hsl(0 0% 10% / 0.34);
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 0.6875rem;
	font-weight: 600;
	letter-spacing: 0.18em;
	margin-top: auto;
	text-transform: uppercase;
}
.shop-detail-card a:hover { color: var(--primary-hex); }
.shop-detail-card a [data-lucide] { width: 0.85rem; height: 0.85rem; }

.shop-detail-cta {
	position: relative;
	background: var(--stone-950);
	color: #fff;
	min-height: 32rem;
	padding: 6rem 0;
	display: flex;
	align-items: center;
	overflow: hidden;
	text-align: center;
}
@media (min-width: 768px) {
	.shop-detail-cta {
		min-height: 38rem;
		padding: 7rem 0;
	}
}
.shop-detail-cta__media {
	position: absolute;
	inset: 0;
	z-index: 0;
}
.shop-detail-cta__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	filter: blur(3px) brightness(0.36) saturate(0.78);
	transform: scale(1.03);
}
.shop-detail-cta__overlay {
	position: absolute;
	inset: 0;
	background: hsl(20 14% 4% / 0.46);
}
.shop-detail-cta__inner {
	position: relative;
	z-index: 1;
	max-width: 58rem;
}
.shop-detail-cta .space-detail-kicker {
	margin-bottom: 1.45rem;
}
.shop-detail-cta h2 {
	color: #fff;
	font-size: clamp(2.25rem, 5vw, 3.75rem);
	font-weight: 400;
	letter-spacing: -0.04em;
	line-height: 1.12;
	margin: 0 auto 1.75rem;
	max-width: 56rem;
}
.shop-detail-cta p {
	color: rgba(255,255,255,0.62);
	font-size: 1rem;
	font-weight: 300;
	line-height: 1.75;
	margin: 0 auto 2.75rem;
	max-width: 42rem;
}
.shop-detail-cta__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	justify-content: center;
}
.shop-detail-cta .btn--ghost {
	border-color: rgba(255,255,255,0.22);
	color: rgba(255,255,255,0.78);
}
.shop-detail-cta .btn--ghost:hover {
	background: rgba(255,255,255,0.08);
	color: #fff;
}

@media (max-width: 639px) {
	.shop-detail {
		padding: 4.75rem 0 5.5rem;
	}
	.shop-detail-card__body {
		min-height: 0;
	}
	.shop-detail-cta__actions .btn {
		justify-content: center;
		width: 100%;
	}
}

.space-detail-reserve {
	margin-top: 9rem;
	max-width: 58rem;
}
.space-detail-reserve__card {
	background: #fff;
	border: 1px solid var(--stone-200);
	border-radius: 2rem;
	box-shadow: 0 2px 10px hsl(0 0% 0% / 0.03);
	padding: clamp(3.5rem, 7vw, 5.5rem) 2rem;
	text-align: center;
}
.space-detail-reserve__card h2 {
	font-size: clamp(2.35rem, 4vw, 3.7rem);
	font-weight: 400;
	letter-spacing: -0.04em;
	line-height: 1.12;
	margin: 0 auto 1.5rem;
	max-width: 42rem;
}
.space-detail-reserve__card p {
	color: hsl(0 0% 10% / 0.5);
	font-size: clamp(1rem, 1.6vw, 1.2rem);
	font-weight: 300;
	line-height: 1.65;
	margin: 0 auto 2.75rem;
	max-width: 32rem;
}
.space-detail-reserve__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	justify-content: center;
}

@media (max-width: 639px) {
	.space-detail-hero {
		min-height: 31rem;
		padding-bottom: 3.75rem;
	}
	.space-detail-hero__title {
		font-size: 3.75rem;
		max-width: 21rem;
	}
	.space-detail-features__grid {
		grid-template-columns: 1fr;
		gap: 1.75rem;
	}
	.space-detail-body {
		padding: 5rem 0 6rem;
	}
	.space-detail-gallery {
		margin-top: 5.5rem;
	}
	.space-detail-reserve {
		margin-top: 6rem;
	}
	.space-detail-reserve__actions .btn {
		justify-content: center;
		width: 100%;
	}
}

/* ============================================================
   31. Gallery Page
   ============================================================ */
.gallery-page-hero {
	position: relative;
	min-height: clamp(20rem, 36vw, 27rem);
	overflow: hidden;
	background: var(--stone-900);
	color: #fff;
}
.gallery-page-hero__media,
.gallery-page-hero__overlay {
	position: absolute;
	inset: 0;
}
.gallery-page-hero__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.gallery-page-hero__overlay {
	background:
		linear-gradient(90deg, hsl(0 0% 0% / 0.72) 0%, hsl(0 0% 0% / 0.44) 44%, hsl(0 0% 0% / 0.38) 100%),
		linear-gradient(0deg, hsl(0 0% 0% / 0.24), hsl(0 0% 0% / 0.1));
}
.gallery-page-hero__inner {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
	min-height: clamp(20rem, 36vw, 27rem);
	padding-block: clamp(4rem, 8vw, 7rem);
}
.gallery-page-hero__back {
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
	width: fit-content;
	margin-bottom: 2.35rem;
	color: hsl(0 0% 100% / 0.72);
	font-size: 0.875rem;
	font-weight: 600;
	letter-spacing: 0.2em;
	text-transform: uppercase;
}
.gallery-page-hero__back [data-lucide] {
	width: 1rem;
	height: 1rem;
}
.gallery-page-hero__back:hover {
	color: #fff;
}
.gallery-page-hero__eyebrow {
	color: var(--primary-hex);
	font-size: 0.82rem;
	font-weight: 700;
	letter-spacing: 0.42em;
	margin-bottom: 1.7rem;
	text-transform: uppercase;
}
.gallery-page-hero__title {
	color: #fff !important;
	font-size: clamp(3.35rem, 7.4vw, 6rem);
	font-weight: 400;
	letter-spacing: 0;
	line-height: 0.98;
	margin: 0;
	max-width: 44rem;
}
.gallery-page {
	background: var(--stone-50);
	padding: clamp(4rem, 7vw, 6rem) 0 clamp(4.75rem, 8vw, 7rem);
}
.gallery-page__filters {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	margin-bottom: clamp(3rem, 5vw, 4.25rem);
}
.gallery-filter {
	appearance: none;
	background: #fff;
	border: 1px solid hsl(0 0% 10% / 0.1);
	border-radius: 999px;
	box-shadow: 0 1px 1px hsl(0 0% 0% / 0.04);
	color: hsl(0 0% 10% / 0.62);
	cursor: pointer;
	font: inherit;
	font-size: 0.95rem;
	font-weight: 700;
	min-height: 3rem;
	padding: 0 1.55rem;
	transition: transform 0.2s ease, box-shadow 0.2s ease, color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}
.gallery-filter:hover {
	border-color: hsl(0 0% 10% / 0.18);
	color: var(--stone-900);
	transform: translateY(-1px);
}
.gallery-filter.is-active {
	background: var(--primary-hex);
	border-color: var(--primary-hex);
	box-shadow: 0 10px 22px hsl(0 86% 52% / 0.22);
	color: #fff;
}
.gallery-page__grid {
	display: grid;
	gap: 1.55rem;
	grid-template-columns: 1fr;
}
@media (min-width: 680px) {
	.gallery-page__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}
@media (min-width: 1100px) {
	.gallery-page__grid {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}
}
.gallery-album-card {
	background: #fff;
	border: 1px solid hsl(0 0% 10% / 0.08);
	border-radius: 1.125rem;
	box-shadow: 0 14px 30px hsl(0 0% 0% / 0.07);
	cursor: pointer;
	overflow: hidden;
	transition: opacity 0.24s ease, transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}
.gallery-album-card:hover {
	border-color: hsl(0 86% 52% / 0.22);
	box-shadow: 0 20px 38px hsl(0 0% 0% / 0.1);
	transform: translateY(-3px);
}
.gallery-album-card:focus-visible {
	border-color: var(--primary-hex);
	box-shadow: 0 0 0 4px hsl(0 86% 52% / 0.18), 0 20px 38px hsl(0 0% 0% / 0.1);
	outline: none;
}
.gallery-album-card.is-hidden {
	display: none;
}
.gallery-album-card__media {
	position: relative;
	aspect-ratio: 1 / 0.76;
	background: hsl(0 0% 94%);
	margin: 0;
	overflow: hidden;
}
.gallery-album-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.gallery-album-card__count {
	position: absolute;
	right: 1rem;
	bottom: 1rem;
	background: #fff;
	border-radius: 999px;
	box-shadow: 0 8px 18px hsl(0 0% 0% / 0.14);
	color: hsl(0 0% 10% / 0.72);
	font-size: 0.82rem;
	font-weight: 800;
	line-height: 1;
	padding: 0.62rem 0.86rem;
}
.gallery-album-card__body {
	padding: 1.45rem 1.55rem 1.7rem;
}
.gallery-album-card__category {
	color: var(--primary-hex);
	display: block;
	font-size: 0.76rem;
	font-weight: 800;
	letter-spacing: 0.24em;
	margin-bottom: 0.75rem;
	text-transform: uppercase;
}
.gallery-album-card h2 {
	color: var(--stone-900);
	font-size: clamp(1.25rem, 1.7vw, 1.45rem);
	font-weight: 500;
	letter-spacing: 0;
	line-height: 1.16;
	margin: 0;
}
.gallery-lightbox-open {
	overflow: hidden;
}
.gallery-lightbox {
	align-items: center;
	display: flex;
	inset: 0;
	justify-content: center;
	opacity: 0;
	padding: clamp(1rem, 3vw, 2rem);
	pointer-events: none;
	position: fixed;
	transition: opacity 0.22s ease;
	z-index: 10000;
}
.gallery-lightbox.is-open {
	opacity: 1;
	pointer-events: auto;
}
.gallery-lightbox__backdrop {
	background: hsl(0 0% 0% / 0.78);
	backdrop-filter: blur(10px);
	inset: 0;
	position: absolute;
}
.gallery-lightbox__dialog {
	background: hsl(0 0% 7%);
	border: 1px solid hsl(0 0% 100% / 0.12);
	border-radius: 1.25rem;
	box-shadow: 0 28px 80px hsl(0 0% 0% / 0.45);
	color: #fff;
	max-height: min(86vh, 56rem);
	max-width: min(90vw, 72rem);
	overflow: hidden;
	position: relative;
	transform: translateY(0.75rem) scale(0.985);
	transition: transform 0.22s ease;
	width: 100%;
}
.gallery-lightbox.is-open .gallery-lightbox__dialog {
	transform: translateY(0) scale(1);
}
.gallery-lightbox__media {
	align-items: center;
	background: hsl(0 0% 3%);
	display: flex;
	height: min(68vh, 42rem);
	justify-content: center;
}
.gallery-lightbox__media img {
	display: block;
	height: 100%;
	max-width: 100%;
	object-fit: contain;
	width: 100%;
}
.gallery-lightbox__bar {
	align-items: center;
	display: flex;
	gap: 1.5rem;
	justify-content: space-between;
	padding: 1.1rem clamp(1.15rem, 3vw, 1.75rem);
}
.gallery-lightbox__eyebrow {
	color: var(--primary-hex);
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.26em;
	margin: 0 0 0.35rem;
	text-transform: uppercase;
}
.gallery-lightbox__bar h2 {
	color: #fff;
	font-size: clamp(1.2rem, 2vw, 1.75rem);
	font-weight: 500;
	letter-spacing: 0;
	line-height: 1.2;
	margin: 0;
}
.gallery-lightbox__count {
	color: hsl(0 0% 100% / 0.68);
	font-size: 0.95rem;
	font-weight: 700;
	margin: 0;
	white-space: nowrap;
}
.gallery-lightbox__close,
.gallery-lightbox__nav {
	align-items: center;
	appearance: none;
	background: hsl(0 0% 100% / 0.12);
	border: 1px solid hsl(0 0% 100% / 0.15);
	border-radius: 999px;
	color: #fff;
	cursor: pointer;
	display: inline-flex;
	justify-content: center;
	transition: background 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}
.gallery-lightbox__close:hover,
.gallery-lightbox__nav:hover {
	background: var(--primary-hex);
	border-color: var(--primary-hex);
	transform: translateY(-1px);
}
.gallery-lightbox__close:focus-visible,
.gallery-lightbox__nav:focus-visible {
	box-shadow: 0 0 0 4px hsl(0 86% 52% / 0.24);
	outline: none;
}
.gallery-lightbox__close {
	height: 2.8rem;
	position: absolute;
	right: 1rem;
	top: 1rem;
	width: 2.8rem;
	z-index: 3;
}
.gallery-lightbox__nav {
	height: 3.25rem;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 3.25rem;
	z-index: 2;
}
.gallery-lightbox__nav:hover {
	transform: translateY(-50%) translateY(-1px);
}
.gallery-lightbox__nav--prev {
	left: 1rem;
}
.gallery-lightbox__nav--next {
	right: 1rem;
}
.gallery-lightbox__nav:disabled,
.gallery-lightbox.has-single-slide .gallery-lightbox__nav {
	display: none;
}
.gallery-lightbox [data-lucide] {
	height: 1.2rem;
	width: 1.2rem;
}
@media (max-width: 767px) {
	.gallery-page-hero__inner {
		min-height: 24rem;
	}
	.gallery-page-hero__back {
		font-size: 0.75rem;
		letter-spacing: 0.14em;
		margin-bottom: 1.55rem;
	}
	.gallery-page-hero__eyebrow {
		letter-spacing: 0.3em;
	}
	.gallery-page__filters {
		gap: 0.6rem;
	}
	.gallery-filter {
		font-size: 0.86rem;
		min-height: 2.7rem;
		padding: 0 1.1rem;
	}
	.gallery-lightbox {
		padding: 0.75rem;
	}
	.gallery-lightbox__dialog {
		border-radius: 1rem;
		max-height: 90vh;
		max-width: 100%;
	}
	.gallery-lightbox__media {
		height: 62vh;
	}
	.gallery-lightbox__bar {
		align-items: flex-start;
		flex-direction: column;
		gap: 0.65rem;
	}
	.gallery-lightbox__nav {
		height: 2.75rem;
		width: 2.75rem;
	}
	.gallery-lightbox__nav--prev {
		left: 0.65rem;
	}
	.gallery-lightbox__nav--next {
		right: 0.65rem;
	}
}

/* ============================================================
   32. Live Stream Page
   ============================================================ */
.live-stream-hero {
	position: relative;
	min-height: clamp(20rem, 36vw, 27rem);
	overflow: hidden;
	background: var(--stone-900);
	color: #fff;
}
.live-stream-hero__media,
.live-stream-hero__overlay {
	position: absolute;
	inset: 0;
}
.live-stream-hero__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.live-stream-hero__overlay {
	background:
		linear-gradient(90deg, hsl(0 0% 0% / 0.76) 0%, hsl(0 0% 0% / 0.48) 48%, hsl(0 0% 0% / 0.36) 100%),
		linear-gradient(0deg, hsl(0 0% 0% / 0.22), hsl(0 0% 0% / 0.08));
}
.live-stream-hero__inner {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
	min-height: clamp(20rem, 36vw, 27rem);
	padding-block: clamp(4rem, 8vw, 7rem);
}
.live-stream-hero__back {
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
	width: fit-content;
	margin-bottom: 2.35rem;
	color: hsl(0 0% 100% / 0.72);
	font-size: 0.875rem;
	font-weight: 600;
	letter-spacing: 0.2em;
	text-transform: uppercase;
}
.live-stream-hero__back [data-lucide] {
	width: 1rem;
	height: 1rem;
}
.live-stream-hero__back:hover {
	color: #fff;
}
.live-stream-hero__eyebrow {
	color: var(--primary-hex);
	font-size: 0.82rem;
	font-weight: 700;
	letter-spacing: 0.42em;
	margin-bottom: 1.7rem;
	text-transform: uppercase;
}
.live-stream-hero__title {
	color: #fff !important;
	font-size: clamp(3.35rem, 7.4vw, 6rem);
	font-weight: 400;
	letter-spacing: 0;
	line-height: 0.98;
	margin: 0;
	max-width: 44rem;
}
.live-stream-page {
	background: var(--stone-50);
	padding: clamp(4.5rem, 7vw, 7rem) 0 clamp(5rem, 8vw, 8rem);
}
.live-stream-page__inner {
	max-width: 70rem;
}
.live-stream-page__header {
	margin: 0 auto clamp(2.5rem, 5vw, 4rem);
	max-width: 46rem;
	text-align: center;
}
.live-stream-page__header h2 {
	color: var(--stone-900);
	font-size: clamp(2.35rem, 4.8vw, 4rem);
	font-weight: 400;
	letter-spacing: 0;
	line-height: 1.05;
	margin: 0.7rem 0 1rem;
}
.live-stream-page__header p {
	color: hsl(0 0% 10% / 0.56);
	font-size: clamp(1rem, 1.35vw, 1.16rem);
	font-weight: 300;
	line-height: 1.7;
	margin: 0 auto;
	max-width: 42rem;
}
.live-stream-player {
	background: var(--stone-900);
	border: 1px solid hsl(0 0% 10% / 0.08);
	border-radius: 1.35rem;
	box-shadow: 0 24px 60px hsl(0 0% 0% / 0.12);
	overflow: hidden;
}
.live-stream-player iframe,
.live-stream-player video,
.live-stream-player embed,
.live-stream-player object {
	display: block;
	width: 100%;
	aspect-ratio: 16 / 9;
	height: auto;
	min-height: 20rem;
	border: 0;
}
.live-stream-empty {
	display: grid;
	place-items: center;
	min-height: clamp(18rem, 35vw, 28rem);
	padding: clamp(2rem, 5vw, 4.5rem);
	text-align: center;
	background: #fff;
	border: 1px solid hsl(0 0% 10% / 0.08);
	border-radius: 1.35rem;
	box-shadow: 0 18px 46px hsl(0 0% 0% / 0.07);
}
.live-stream-empty__icon {
	display: grid;
	width: 4.5rem;
	height: 4.5rem;
	place-items: center;
	margin-bottom: 1.25rem;
	border-radius: var(--radius-full);
	background: hsl(0 86% 52% / 0.1);
	color: var(--primary-hex);
}
.live-stream-empty__icon [data-lucide] {
	width: 1.65rem;
	height: 1.65rem;
}
.live-stream-empty p {
	color: var(--stone-900);
	font-size: clamp(1.35rem, 2.5vw, 2rem);
	font-weight: 500;
	line-height: 1.25;
	margin: 0;
	max-width: 34rem;
}
@media (max-width: 767px) {
	.live-stream-hero__inner {
		min-height: 24rem;
	}
	.live-stream-hero__back {
		font-size: 0.75rem;
		letter-spacing: 0.14em;
		margin-bottom: 1.55rem;
	}
	.live-stream-hero__eyebrow {
		letter-spacing: 0.3em;
	}
	.live-stream-player iframe,
	.live-stream-player video,
	.live-stream-player embed,
	.live-stream-player object {
		min-height: 15rem;
	}
}

/* ============================================================
   33. Reveal Animation
   ============================================================ */
.story-page-hero__inner.container,
.care-page-hero__inner.container,
.spaces-page-hero__inner.container,
.anniversary-hero__inner.container,
.testimonial-page-hero__inner.container,
.sisters-hero__inner.container,
.space-detail-hero__inner.container,
.gallery-page-hero__inner.container,
.live-stream-hero__inner.container,
.contact-hero__inner.container,
.guidance-hero__inner.container,
.page-hero__inner.container,
.hero__inner.container {
	width: calc(100% - (var(--container-pad) * 2));
	max-width: var(--container-max);
}
.story-page-hero__back,
.care-page-hero__back,
.spaces-page-hero__back,
.anniversary-hero__back,
.testimonial-page-hero__back,
.sisters-hero__back,
.space-detail-hero__back,
.gallery-page-hero__back,
.live-stream-hero__back,
.contact-hero__back,
.guidance-hero__back,
.page-hero__back {
	display: flex;
	width: fit-content;
}
.site-content img {
	transition: transform 0.45s var(--ease-out-expo), filter 0.45s var(--ease-out-expo), opacity 0.45s var(--ease-out-expo);
}
.site-content :where(
	.story-page-who__media,
	.story-page-founder__portrait,
	.story-page-person-card__media,
	.care-page-card__media,
	.spaces-page-card__media,
	.space-detail-gallery__item,
	.gallery-album-card__media,
	.shop-detail-card__media,
	.guidance-card__media,
	.obituary-card__media,
	.archive-card__media,
	.page-article__feature,
	.flex-2col__media,
	.gallery-grid__item
) {
	overflow: hidden;
}
.site-content :where(
	.story-page-who__media,
	.story-page-founder__portrait,
	.story-page-person-card__media,
	.care-page-card,
	.spaces-page-card,
	.space-detail-gallery__item,
	.gallery-album-card,
	.shop-detail-card,
	.guidance-card,
	.obituary-card,
	.archive-card,
	.page-article__feature,
	.flex-2col__media,
	.gallery-grid__item
):hover img {
	filter: saturate(1.05);
	transform: scale(1.035);
}
.site-content {
	font-feature-settings: "kern" 1, "liga" 1, "calt" 1;
}
.site-content :where(
	.section-header__intro,
	.contact-layout__intro,
	.schedule-appointment__intro p,
	.story-page-who p,
	.story-page-history p,
	.care-page-intro__inner,
	.spaces-page-intro__inner,
	.sisters-intro__inner,
	.space-detail-body p,
	.shop-detail-intro p
) {
	color: hsl(0 0% 10% / 0.72);
}
.site-content :where(h1, h2, h3, h4, h5, h6) {
	font-weight: 500;
	text-wrap: balance;
}
.site-content :where(img) {
	backface-visibility: hidden;
	image-rendering: auto;
	transform: translateZ(0);
}
.care-page-cta__media img,
.spaces-page-cta__media img,
.sisters-cta__media img,
.shop-detail-cta__media img {
	filter: brightness(0.44) saturate(0.92);
}
.care-page-cta h2,
.spaces-page-cta h2,
.sisters-cta h2,
.shop-detail-cta h2,
.space-detail-reserve__card h2,
.schedule-hero__title,
.story-page-hero__title,
.care-page-hero__title,
.spaces-page-hero__title,
.anniversary-hero__title,
.testimonial-page-hero__title,
.sisters-hero__title,
.space-detail-hero__title,
.gallery-page-hero__title,
.live-stream-hero__title {
	color: #fff;
	font-weight: 500;
	letter-spacing: -0.025em;
}
.story-page-person-card,
.care-page-card,
.spaces-page-card,
.testimonial-page-card,
.sisters-offer-card,
.shop-detail-card,
.schedule-appointment-form,
.schedule-info-card {
	box-shadow: 0 0.25rem 1.2rem hsl(0 0% 0% / 0.055);
}
.story-page-who__media {
	isolation: isolate;
	overflow: visible;
}
.story-page-who__media img {
	position: relative;
	z-index: 1;
}
.story-page-badge {
	z-index: 3;
}

/* ============================================================
   Responsive polish
   ============================================================ */
html,
body {
	overflow-x: hidden;
}
html {
	scroll-padding-top: 8rem;
}
.site-content :where(a, button, input, select, textarea) {
	-webkit-tap-highlight-color: hsl(var(--primary) / 0.14);
}
.site-content :where(
	.hero__title,
	.page-hero__title,
	.contact-hero__title,
	.guidance-hero__title,
	.story-page-hero__title,
	.care-page-hero__title,
	.spaces-page-hero__title,
	.anniversary-hero__title,
	.testimonial-page-hero__title,
	.sisters-hero__title,
	.space-detail-hero__title,
	.gallery-page-hero__title,
	.live-stream-hero__title,
	.schedule-hero__title
) {
	overflow-wrap: anywhere;
}
.mobile-menu {
	overflow-y: auto;
	padding: 6rem 1.5rem 3rem;
	transform: translateY(-0.75rem);
	transition: opacity 0.35s ease, visibility 0.35s ease, transform 0.35s var(--ease-out-expo);
}
.mobile-menu.is-open {
	transform: translateY(0);
}
@media (max-width: 767px) {
	:root {
		--container-pad: 1rem;
	}
	.site-header {
		position: sticky;
	}
	.utility-bar > .container {
		width: calc(100% - 1.5rem);
		gap: 0.4rem;
		min-height: 2.25rem;
		padding-top: 0.35rem;
		padding-bottom: 0.35rem;
	}
	.utility-bar__item {
		justify-content: center;
	}
	.utility-bar__group {
		width: 100%;
	}
	.nav-bar {
		padding: 0.65rem 0;
	}
	.site-header.is-scrolled .nav-bar {
		padding: 0.55rem 0;
	}
	.nav-bar > .container {
		gap: 0.75rem;
	}
	.brand__logo {
		height: 2.8rem;
		max-width: 12rem;
	}
	.menu-toggle {
		min-width: 2.75rem;
		min-height: 2.75rem;
		align-items: center;
		justify-content: center;
		border-radius: var(--radius-full);
		background: var(--stone-50);
	}
	.mobile-menu {
		justify-content: flex-start;
		padding-top: 6.5rem;
	}
	.mobile-menu__list {
		width: 100%;
		gap: 0.35rem;
	}
	.mobile-menu__list a {
		display: flex;
		justify-content: center;
		width: 100%;
		padding: 0.85rem 0.5rem;
		border-radius: var(--radius-md);
		font-size: clamp(1.55rem, 8vw, 2.25rem);
		line-height: 1.05;
	}
	.mobile-menu__list a:hover,
	.mobile-menu__list .current-menu-item > a,
	.mobile-menu__list .current_page_item > a {
		background: hsl(var(--primary) / 0.08);
	}
	.mobile-menu__footer {
		position: static;
		margin-top: 2rem;
		text-align: center;
	}
	.hero,
	.page-hero,
	.contact-hero,
	.guidance-hero,
	.story-page-hero,
	.care-page-hero,
	.spaces-page-hero,
	.anniversary-hero,
	.testimonial-page-hero,
	.sisters-hero,
	.space-detail-hero,
	.schedule-hero {
		min-height: clamp(25rem, 78vh, 34rem);
		padding-top: 5.25rem;
		padding-bottom: 3.5rem;
	}
	.hero__title,
	.page-hero__title,
	.contact-hero__title,
	.guidance-hero__title,
	.story-page-hero__title,
	.care-page-hero__title,
	.spaces-page-hero__title,
	.anniversary-hero__title,
	.testimonial-page-hero__title,
	.sisters-hero__title,
	.schedule-hero__title {
		font-size: clamp(2.35rem, 12vw, 3.35rem);
		line-height: 1.08;
		max-width: 100%;
	}
	.space-detail-hero__title {
		font-size: clamp(3rem, 14vw, 4rem);
		line-height: 1.03;
		max-width: 100%;
	}
	.hero__subtitle,
	.page-hero__subhead,
	.contact-layout__intro,
	.schedule-appointment__intro p,
	.spaces-page-intro p {
		font-size: 1rem;
		line-height: 1.65;
	}
	.story-page-who,
	.story-page-promise,
	.story-page-history,
	.story-page-team,
	.care-page-grid-section,
	.spaces-page-grid-section,
	.anniversary-intro,
	.anniversary-milestones,
	.anniversary-values,
	.testimonial-page-main,
	.sisters-intro,
	.sisters-offers,
	.space-detail-body,
	.shop-detail,
	.schedule-appointment,
	.contact-body {
		padding-top: 4rem;
		padding-bottom: 4.5rem;
	}
	.story-page-who__grid,
	.contact-layout,
	.schedule-appointment__layout,
	.space-detail-body__grid {
		gap: 2.25rem;
	}
	.story-page-who__copy h2,
	.schedule-appointment__intro h2,
	.story-page-section-header h2,
	.anniversary-section-header h2,
	.sisters-section-header h2,
	.space-detail-body h2,
	.shop-detail-section-header h2 {
		font-size: clamp(2rem, 9vw, 2.65rem);
	}
	.story-page-who__media,
	.story-page-who__media img {
		border-radius: 2rem 0 2rem 0;
	}
	.story-page-badge {
		left: 0.9rem;
		bottom: 0.9rem;
		min-width: 7.2rem;
		padding: 0.9rem 1rem;
	}
	.story-page-badge strong {
		font-size: 1.25rem;
	}
	.care-page-card__body,
	.spaces-page-card__body,
	.shop-detail-card__body {
		min-height: 0;
		padding: 1.45rem;
	}
	.story-page-people-grid,
	.care-page-grid,
	.spaces-page-grid,
	.anniversary-values__grid,
	.sisters-offers__grid,
	.shop-detail-grid,
	.space-detail-gallery__grid,
	.resource-grid,
	.gallery-grid {
		grid-template-columns: 1fr;
		gap: 1.25rem;
	}
	.space-detail-gallery__grid,
	.space-detail-gallery__grid--pavilion,
	.space-detail-gallery__grid--vip {
		grid-auto-rows: auto;
	}
	.space-detail-gallery__item,
	.space-detail-gallery__item--large,
	.space-detail-gallery__item--wide {
		grid-column: auto;
		grid-row: auto;
	}
	.schedule-appointment-form,
	.contact-card-form,
	.space-detail-reserve__card,
	.team-bio-modal__dialog {
		border-radius: var(--radius-xl);
	}
	.schedule-appointment-form,
	.contact-card-form {
		padding: 1.5rem;
	}
	.schedule-appointment-form__grid,
	.contact-card-form__grid {
		gap: 1rem;
	}
	.schedule-field-control,
	.form-field--card input,
	.form-field--card select,
	.form-field--card textarea {
		min-height: 3.35rem;
	}
	.btn,
	.btn--large,
	.btn--block {
		width: 100%;
		min-height: 3.25rem;
		white-space: normal;
		text-align: center;
	}
	.hero__actions,
	.scheduling__actions,
	.space-detail-reserve__actions,
	.shop-detail-cta__actions {
		width: 100%;
	}
	.site-footer {
		padding-top: 4rem;
		padding-bottom: 2rem;
	}
	.site-footer__grid {
		gap: 2.25rem;
	}
	.site-footer__logo img {
		height: 3.25rem;
	}
}
@media (min-width: 768px) and (max-width: 1180px) {
	.primary-nav {
		display: none;
	}
	.menu-toggle {
		display: inline-flex;
	}
	.nav-contact-btn {
		display: inline-flex;
	}
	.container {
		width: calc(100% - 4rem);
		max-width: var(--container-max);
	}
	.story-page-people-grid--board,
	.story-page-people-grid--management {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
	.space-detail-gallery__grid--pavilion,
	.space-detail-gallery__grid--vip,
	.shop-detail-grid--urns {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}
@media (hover: hover) and (pointer: fine) {
	body.has-custom-cursor :where(
		.site-header,
		.site-content,
		.site-footer,
		.mobile-menu,
		.site-header *,
		.site-content *,
		.site-footer *,
		.mobile-menu *
	) {
		cursor: none !important;
	}
	body.has-custom-cursor :where(input, textarea, select, label, #wpadminbar, #wpadminbar *) {
		cursor: auto !important;
	}
	.custom-cursor {
		position: fixed;
		top: 0;
		left: 0;
		z-index: 99999;
		display: grid;
		width: 0.875rem;
		height: 0.875rem;
		place-items: center;
		border-radius: var(--radius-full);
		background: #38d9d6;
		box-shadow: 0 0 0 0.35rem hsl(179 68% 54% / 0.16), 0 0.75rem 2rem hsl(179 68% 42% / 0.28);
		opacity: 0;
		pointer-events: none;
		transition:
			width 0.32s var(--ease-out-expo),
			height 0.32s var(--ease-out-expo),
			opacity 0.2s ease,
			background 0.32s var(--ease-out-expo),
			box-shadow 0.32s var(--ease-out-expo);
		will-change: transform;
	}
	.custom-cursor span {
		color: hsl(20 14% 4% / 0.70);
		font-size: 1rem;
		font-weight: 600;
		letter-spacing: 0.02em;
		line-height: 1;
		opacity: 0;
		transform: translateY(0.35rem);
		transition: opacity 0.2s ease, transform 0.28s var(--ease-out-expo);
	}
	.custom-cursor.is-visible {
		opacity: 1;
	}
	.custom-cursor.is-link {
		width: 4.75rem;
		height: 4.75rem;
		background: hsl(179 68% 54% / 0.88);
		box-shadow: 0 0.85rem 2.1rem hsl(179 68% 34% / 0.3);
	}
	.custom-cursor.is-link span {
		opacity: 1;
		transform: translateY(0);
	}
}
@media (min-width: 1024px) {
	.story-page-hero__inner.container,
	.care-page-hero__inner.container,
	.spaces-page-hero__inner.container,
	.anniversary-hero__inner.container,
	.testimonial-page-hero__inner.container,
	.sisters-hero__inner.container,
	.space-detail-hero__inner.container,
	.gallery-page-hero__inner.container,
	.live-stream-hero__inner.container,
	.contact-hero__inner.container,
	.guidance-hero__inner.container,
	.page-hero__inner.container,
	.hero__inner.container {
		width: 80%;
		max-width: none;
	}
}

.reveal {
	opacity: 0;
	transform: translateY(28px);
	transition: opacity 0.85s var(--ease-out-expo), transform 0.85s var(--ease-out-expo);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
	.reveal { opacity: 1; transform: none; transition: none; }
	.hero__slide, .hero__text-slide, .testimonials__item { transition: opacity 0.2s ease; }
	.partners__track { animation-duration: 120s; }
	.site-content img { transition: none; }
	.custom-cursor { display: none; }
	.btn,
	.btn [data-lucide] {
		transition: none;
	}
	.btn:hover,
	.btn:active,
	.btn:hover [data-lucide] {
		transform: none;
	}
	.site-content :where(
		.story-page-who__media,
		.story-page-founder__portrait,
		.story-page-person-card__media,
		.care-page-card,
		.spaces-page-card,
		.space-detail-gallery__item,
		.shop-detail-card,
		.guidance-card,
		.obituary-card,
		.archive-card,
		.page-article__feature,
		.flex-2col__media,
		.gallery-grid__item
	):hover img {
		transform: none;
	}
}

/* ============================================================
   32. Print
   ============================================================ */
@media print {
	.site-header, .site-footer, .mobile-menu { display: none; }
	body { color: #000; background: #fff; }
}

/* ============================================================
   Share Your Experience (testimonials page) — distinct from the
   enquiry form: light band, centred card, generous serif header.
   ============================================================ */
.experience-share {
	background: var(--stone-50);
	padding: 5.5rem 0;
}
.experience-share__inner { max-width: 46rem; margin: 0 auto; }
.experience-share__header { text-align: center; margin-bottom: 2.5rem; }
.experience-share__eyebrow {
	display: inline-block;
	color: var(--primary-hex);
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	margin-bottom: 0.75rem;
}
.experience-share__header h2 {
	font-family: var(--font-serif);
	font-size: clamp(1.85rem, 3.6vw, 2.5rem);
	letter-spacing: -0.02em;
	margin: 0 0 0.75rem;
}
.experience-share__header p { color: var(--muted-foreground); font-weight: 300; line-height: 1.7; margin: 0 auto; max-width: 34rem; }

.experience-share__form {
	background: #fff;
	border: 1px solid var(--border);
	border-radius: var(--radius-xl, 1rem);
	padding: 2.25rem;
	box-shadow: 0 18px 44px hsl(20 14% 4% / 0.07);
	display: grid;
	gap: 1.25rem;
}
.experience-share__row { display: grid; gap: 1.25rem; }
@media (min-width: 640px) { .experience-share__row { grid-template-columns: 1fr 1fr; } }
.experience-share__field { display: grid; gap: 0.45rem; }
.experience-share__field span {
	font-size: 0.8125rem;
	font-weight: 600;
	letter-spacing: 0.02em;
	color: var(--stone-700);
}
.experience-share__field input,
.experience-share__field textarea {
	width: 100%;
	border: 1px solid var(--border);
	border-radius: 0.625rem;
	background: var(--stone-50);
	padding: 0.8rem 1rem;
	font: inherit;
	color: var(--foreground);
	transition: border-color 0.2s ease, background 0.2s ease;
}
.experience-share__field input:focus,
.experience-share__field textarea:focus {
	outline: none;
	border-color: var(--primary-hex);
	background: #fff;
}
.experience-share__consent {
	display: flex;
	align-items: flex-start;
	gap: 0.6rem;
	font-size: 0.875rem;
	color: var(--muted-foreground);
}
.experience-share__consent input { margin-top: 0.2rem; accent-color: var(--primary-hex); }
.experience-share__form .btn { justify-self: center; min-width: 14rem; }
.experience-share__hp { position: absolute !important; left: -9999px !important; height: 0; overflow: hidden; }
.experience-share__notice {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.6rem;
	background: #fff;
	border: 1px solid var(--border);
	border-radius: 0.75rem;
	padding: 1.5rem;
	color: var(--stone-700);
	font-weight: 500;
}
.experience-share__notice svg { color: #1a7f37; }

/* Star rating inside the Share Your Experience form */
.experience-share__rating {
	border: 0;
	padding: 0;
	margin: 0;
	text-align: center;
}
.experience-share__rating legend {
	font-size: 0.8125rem;
	font-weight: 600;
	letter-spacing: 0.02em;
	color: var(--stone-700);
	margin: 0 auto 0.6rem;
}
.experience-share__stars {
	display: inline-flex;
	flex-direction: row-reverse;
	gap: 0.35rem;
}
.experience-share__stars input {
	position: absolute;
	opacity: 0;
	width: 1px;
	height: 1px;
}
.experience-share__stars label {
	cursor: pointer;
	color: var(--stone-300);
	transition: color 0.15s ease, transform 0.15s ease;
}
.experience-share__stars label svg {
	width: 2.1rem;
	height: 2.1rem;
	display: block;
}
.experience-share__stars label:hover { transform: scale(1.12); }
.experience-share__stars label:hover,
.experience-share__stars label:hover ~ label,
.experience-share__stars input:checked ~ label {
	color: #e8a13a;
}
.experience-share__stars input:focus-visible + label {
	outline: 2px solid var(--primary-hex);
	outline-offset: 3px;
	border-radius: 4px;
}

/* Partners page: We're here to help phone strip */
.partners-help__phones {
	margin-top: 2.25rem;
	padding-top: 1.75rem;
	border-top: 1px solid var(--stone-200);
	display: flex;
	flex-wrap: wrap;
	gap: 0.6rem 1.75rem;
	align-items: center;
	justify-content: center;
}
.partners-help__label {
	display: block;
	width: 100%;
	font-size: 0.875rem;
	color: var(--muted-foreground);
	margin-bottom: 0.35rem;
}
.partners-help__phones a {
	color: var(--primary-hex);
	font-weight: 600;
	font-size: 1.0625rem;
	text-decoration: none;
}
.partners-help__phones a:hover { text-decoration: underline; }

/* ============================================================
   Partnership features — two partners take the full page:
   large alternating image / text sections.
   ============================================================ */
.partnership-features { padding: 2rem 0 0; }
.partnership-feature { padding: 4.5rem 0; }
.partnership-feature:nth-child(even) { background: var(--stone-50); }
.partnership-feature__inner {
	display: grid;
	gap: 2.5rem;
	align-items: center;
}
@media (min-width: 900px) {
	.partnership-feature__inner {
		grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
		gap: 4.5rem;
	}
	.partnership-feature--flip .partnership-feature__media { order: 2; }
	.partnership-feature--flip .partnership-feature__body  { order: 1; }
}
.partnership-feature__media {
	margin: 0;
	border-radius: var(--radius-xl, 1rem);
	overflow: hidden;
	box-shadow: 0 24px 60px hsl(20 14% 4% / 0.12);
	background: #fff;
}
.partnership-feature__media img {
	display: block;
	width: 100%;
	height: auto;
}
.partnership-feature__eyebrow {
	display: inline-block;
	color: var(--primary-hex);
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	margin-bottom: 1rem;
}
.partnership-feature__body h2 {
	font-family: var(--font-serif);
	font-size: clamp(1.9rem, 3.4vw, 2.8rem);
	letter-spacing: -0.025em;
	line-height: 1.15;
	margin: 0 0 1.25rem;
	max-width: 30ch;
}
.partnership-feature__body p {
	color: var(--muted-foreground);
	font-size: 1.0625rem;
	font-weight: 300;
	line-height: 1.8;
	margin: 0 0 2rem;
	max-width: 56ch;
}

/* ============================================================
   Hero text legibility on lightened overlays.
   Soft ambient shadow + tight edge shadow keeps white type
   crisp over brighter photography.
   ============================================================ */
.hero__title,
.page-hero__title,
.contact-hero__title,
.schedule-hero__title,
.guidance-hero__title,
.story-page-hero__title,
.care-page-hero__title,
.spaces-page-hero__title,
.anniversary-hero__title,
.testimonial-page-hero__title,
.sisters-hero__title,
.space-detail-hero__title {
	text-shadow: 0 1px 2px hsl(20 14% 4% / 0.55), 0 8px 32px hsl(20 14% 4% / 0.40);
}

.hero__subtitle,
.page-hero__subtitle,
.contact-hero__inner p,
.guidance-hero__inner p,
.story-page-hero__inner p,
.care-page-hero__inner p,
.spaces-page-hero__inner p,
.anniversary-hero__inner p,
.testimonial-page-hero__inner p,
.space-detail-hero__inner p {
	text-shadow: 0 1px 2px hsl(20 14% 4% / 0.50), 0 4px 18px hsl(20 14% 4% / 0.35);
}

.hero__eyebrow,
.care-page-kicker,
.spaces-page-kicker,
.guidance-kicker,
.anniversary-kicker,
.testimonial-page-hero__eyebrow,
.story-page-kicker,
.space-detail-kicker,
.care-page-hero__back,
.spaces-page-hero__back,
.space-detail-hero__back,
.anniversary-hero__back {
	text-shadow: 0 1px 2px hsl(20 14% 4% / 0.45), 0 3px 14px hsl(20 14% 4% / 0.30);
}

/* Slightly brighter supporting text now that the background is lighter */
.hero__subtitle { color: rgba(255, 255, 255, 0.92); }
