/**
 * Trauma city hub pages — organic local service pages
 * /trauma-crime-scene-cleaning/{city}/
 */

.tch-page {
	--tch-section-pad: clamp(2rem, 4vw, 3.25rem);
	background: var(--color-bg-page, #090909);
	color: var(--text-primary, #f3efe7);
}

.tch-page .grady-wrap {
	width: min(100% - 2 * var(--container-gutter, 1.25rem), var(--container-max, 72rem));
	margin-inline: auto;
}

.tch-section {
	padding: var(--tch-section-pad) 0;
}

.tch-section--dark {
	background: var(--charcoal, #151515);
}

.tch-section--light {
	background: var(--ivory, #f3efe7);
	color: var(--charcoal, #151515);
}

.tch-section--light .grady-heading,
.tch-section--light .tch-prose--dark {
	color: var(--charcoal, #151515);
}

.tch-section__header {
	margin-bottom: 1.5rem;
	max-width: 44rem;
}

.tch-section__lede {
	margin-top: 0.75rem;
	color: var(--text-muted, #8a8478);
	max-width: 42rem;
	line-height: 1.6;
}

.tch-prose {
	max-width: 44rem;
	line-height: 1.65;
	color: var(--text-secondary, #d8d0c3);
}

.tch-prose--dark {
	color: #3a3a3a;
}

/* Hero */
.tch-hero {
	position: relative;
	min-height: clamp(20rem, 58vh, 32rem);
	display: grid;
	align-items: end;
	background: var(--charcoal);
	overflow: hidden;
}

.tch-hero__media {
	position: absolute;
	inset: 0;
}

.tch-hero__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.tch-hero__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(9, 9, 9, 0.4) 0%, rgba(9, 9, 9, 0.92) 100%);
}

.tch-hero__panel {
	position: relative;
	z-index: 1;
	padding: calc(var(--grady-header-offset, 4.5rem) + 1.5rem) 0 var(--tch-section-pad);
}

.tch-hero__title {
	font-family: var(--font-display, 'Oswald', sans-serif);
	font-size: clamp(1.75rem, 4vw, 2.75rem);
	line-height: 1.1;
	margin: 0.5rem 0;
	text-transform: uppercase;
}

.tch-hero__subheadline {
	max-width: 38rem;
	margin: 0 0 1.25rem;
	color: var(--text-secondary, #d8d0c3);
}

.tch-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
}

.tch-hero__cta-phone {
	display: block;
	font-size: 1.125rem;
}

/* Discretion + trust */
.tch-discretion {
	padding: 1rem 0;
	background: rgba(185, 155, 104, 0.08);
	border-block: 1px solid rgba(185, 155, 104, 0.18);
}

.tch-discretion__text {
	margin: 0;
	text-align: center;
	font-size: 0.9375rem;
	color: var(--text-secondary, #d8d0c3);
}

.tch-trust {
	padding: 1.25rem 0;
	background: #111;
}

.tch-trust__grid {
	display: grid;
	gap: 0.75rem;
}

@media (min-width: 48rem) {
	.tch-trust__grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

.tch-trust__card {
	padding: 1rem;
	border: 1px solid rgba(185, 155, 104, 0.2);
	border-radius: var(--radius-md, 0.5rem);
	background: rgba(21, 21, 21, 0.6);
}

.tch-trust__title {
	margin: 0 0 0.35rem;
	font-weight: 600;
	font-size: 0.875rem;
	color: var(--bronze, #b99b68);
}

.tch-trust__desc {
	margin: 0;
	font-size: 0.8125rem;
	color: var(--text-muted, #8a8478);
}

/* Lists + steps */
.tch-bullets {
	margin: 0;
	padding: 0;
	list-style: none;
	display: grid;
	gap: 0.65rem;
	max-width: 44rem;
}

.tch-bullets__item {
	padding-left: 1.1rem;
	position: relative;
	line-height: 1.55;
}

.tch-bullets__item::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0.55em;
	width: 0.35rem;
	height: 0.35rem;
	border-radius: 50%;
	background: var(--bronze, #b99b68);
}

.tch-steps,
.tch-process {
	margin: 0;
	padding: 0;
	list-style: none;
	display: grid;
	gap: 1rem;
	max-width: 48rem;
}

@media (min-width: 48rem) {
	.tch-steps {
		grid-template-columns: repeat(2, 1fr);
	}
}

.tch-step,
.tch-process__step {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 0.85rem;
	align-items: start;
}

.tch-step__num,
.tch-process__num {
	font-family: var(--font-display, 'Oswald', sans-serif);
	color: var(--bronze, #b99b68);
	font-size: 1.25rem;
	line-height: 1;
}

.tch-step__title,
.tch-process__title {
	margin: 0 0 0.25rem;
	font-weight: 600;
}

.tch-step__body,
.tch-process__desc {
	margin: 0;
	color: var(--text-muted, #8a8478);
	font-size: 0.9375rem;
	line-height: 1.55;
}

.tch-eeat {
	margin-top: 1.25rem;
	padding: 1rem;
	border-left: 3px solid var(--bronze, #b99b68);
	background: rgba(21, 21, 21, 0.04);
	font-size: 0.9375rem;
	line-height: 1.6;
}

.tch-section--light .tch-eeat {
	background: rgba(21, 21, 21, 0.05);
	color: #333;
}

/* Map */
.tch-map-section .tch-map {
	min-height: clamp(16rem, 42vw, 22rem);
	margin-top: 1rem;
}

/* Nearby */
.tch-nearby__list {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem 1.25rem;
	margin: 1rem 0 0;
	padding: 0;
	list-style: none;
}

.tch-nearby__list a {
	color: var(--bronze, #b99b68);
	text-decoration: none;
	font-weight: 500;
}

.tch-nearby__list a:hover,
.tch-nearby__list a:focus-visible {
	text-decoration: underline;
}

.tch-nearby__plain {
	color: var(--text-muted, #8a8478);
}

.tch-nearby__hub-link {
	margin-top: 1rem;
	font-size: 0.9375rem;
}

.tch-nearby__hub-link a {
	color: var(--bronze, #b99b68);
}

/* FAQ */
.tch-faq {
	display: grid;
	gap: 1rem;
	max-width: 44rem;
}

.tch-faq__question {
	margin: 0 0 0.35rem;
	font-size: 1rem;
	font-weight: 600;
}

.tch-faq__answer {
	margin: 0;
	color: var(--text-muted, #8a8478);
	line-height: 1.6;
}

/* Related + final CTA */
.tch-related {
	display: grid;
	gap: 0.75rem;
}

@media (min-width: 40rem) {
	.tch-related {
		grid-template-columns: repeat(2, 1fr);
	}
}

.tch-related__card {
	display: block;
	padding: 1rem 1.1rem;
	border: 1px solid rgba(185, 155, 104, 0.22);
	border-radius: var(--radius-md, 0.5rem);
	text-decoration: none;
	color: inherit;
	transition: border-color 0.15s ease;
}

.tch-related__card:hover,
.tch-related__card:focus-visible {
	border-color: var(--bronze, #b99b68);
}

.tch-related__label {
	font-weight: 600;
	color: var(--bronze, #b99b68);
}

.tch-final-cta {
	padding: clamp(2.5rem, 5vw, 4rem) 0;
	background: linear-gradient(180deg, #111 0%, #090909 100%);
	text-align: center;
}

.tch-final-cta__title {
	font-family: var(--font-display, 'Oswald', sans-serif);
	font-size: clamp(1.5rem, 3vw, 2.25rem);
	margin: 0 0 0.75rem;
	text-transform: uppercase;
}

.tch-final-cta__body {
	margin: 0 auto 1.25rem;
	max-width: 36rem;
	color: var(--text-secondary, #d8d0c3);
}

.tch-final-cta__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	justify-content: center;
}

.tch-final-cta__call-phone {
	display: block;
	font-size: 1.125rem;
}

@media (max-width: 24rem) {
	.tch-hero__actions,
	.tch-final-cta__actions {
		flex-direction: column;
		align-items: stretch;
	}
}
