/* TCHC component styles — anything theme.json can't express directly. */

.tchc-container {
	max-width: var(--wp--custom--container--content-max);
	margin-inline: auto;
	padding-inline: var(--wp--custom--container--side-padding);
}

.tchc-section {
	padding-block: var(--wp--custom--section-rhythm);
}

.tchc-eyebrow {
	display: inline-block;
	font-size: var(--wp--preset--font-size--sm);
	font-weight: 700;
	letter-spacing: var(--wp--custom--letter-spacing--caps);
	text-transform: uppercase;
	color: var(--wp--preset--color--teal-600);
	margin-bottom: var(--wp--preset--spacing--3);
}

.tchc-eyebrow--on-dark { color: var(--wp--preset--color--teal-200); }

.tchc-lede {
	font-size: var(--wp--preset--font-size--lg);
	line-height: var(--wp--custom--line-height--relaxed);
	color: var(--wp--preset--color--grey-700);
	max-width: 640px;
}

/* Buttons */
.tchc-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	height: 44px;
	padding: 11px 20px;
	border-radius: var(--wp--custom--radius--pill);
	font-weight: 600;
	font-size: var(--wp--preset--font-size--md);
	white-space: nowrap;
	text-decoration: none;
	border: 1.5px solid transparent;
	cursor: pointer;
	transition: transform var(--wp--custom--motion--fast) var(--wp--custom--motion--ease),
		box-shadow var(--wp--custom--motion--base) var(--wp--custom--motion--ease),
		background-color var(--wp--custom--motion--fast) var(--wp--custom--motion--ease);
}
.tchc-btn:hover { transform: translateY(-2px); }
.tchc-btn:active { transform: translateY(1px) scale(0.99); }

.tchc-btn--primary {
	background: var(--wp--preset--color--orange-500);
	color: var(--wp--preset--color--white);
	box-shadow: var(--wp--custom--shadow--glow-orange);
}
.tchc-btn--primary:hover { background: var(--wp--preset--color--orange-600); color: var(--wp--preset--color--white); }

.tchc-btn--secondary {
	background: transparent;
	color: var(--wp--preset--color--teal-700);
	border-color: var(--wp--preset--color--teal-500);
}
.tchc-btn--secondary:hover { background: var(--wp--preset--color--teal-050); color: var(--wp--preset--color--teal-700); }

.tchc-btn--on-dark {
	background: var(--wp--preset--color--white);
	color: var(--wp--preset--color--navy);
}
.tchc-btn--on-dark:hover { background: var(--wp--preset--color--teal-050); color: var(--wp--preset--color--navy); }

/* Cards */
.tchc-card {
	background: var(--wp--preset--color--white);
	border: 1px solid var(--wp--preset--color--grey-200);
	border-radius: var(--wp--custom--radius--lg);
	box-shadow: var(--wp--custom--shadow--sm);
	padding: var(--wp--preset--spacing--6);
	transition: transform var(--wp--custom--motion--base) var(--wp--custom--motion--ease),
		box-shadow var(--wp--custom--motion--base) var(--wp--custom--motion--ease);
}
.tchc-card:hover {
	transform: translateY(-3px);
	box-shadow: var(--wp--custom--shadow--md);
}

.tchc-pill {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 6px 14px;
	border-radius: var(--wp--custom--radius--pill);
	background: var(--wp--preset--color--teal-050);
	color: var(--wp--preset--color--teal-700);
	font-size: var(--wp--preset--font-size--sm);
	font-weight: 600;
}

.tchc-pill--available { background: var(--wp--preset--color--success-tint); color: var(--wp--preset--color--success); }
.tchc-pill--coming-soon { background: var(--wp--preset--color--grey-100); color: var(--wp--preset--color--grey-600); }

/* Header */
.tchc-header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: rgba(255,255,255,.6);
	border-bottom: 1px solid transparent;
	transition: background-color var(--wp--custom--motion--base) var(--wp--custom--motion--ease),
		border-color var(--wp--custom--motion--base) var(--wp--custom--motion--ease),
		box-shadow var(--wp--custom--motion--base) var(--wp--custom--motion--ease);
}
.tchc-header.is-scrolled {
	background: rgba(255,255,255,.96);
	backdrop-filter: blur(8px);
	border-bottom-color: var(--wp--preset--color--grey-200);
	box-shadow: var(--wp--custom--shadow--xs);
}
.tchc-header__bar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--wp--preset--spacing--5);
	padding-block: var(--wp--preset--spacing--3);
}
.tchc-header__logo img { height: 40px; width: auto; display: block; }
.tchc-nav { display: flex; align-items: center; gap: var(--wp--preset--spacing--6); }
.tchc-nav__links { display: flex; gap: var(--wp--preset--spacing--5); list-style: none; margin: 0; padding: 0; }
.tchc-nav__links a {
	color: var(--wp--preset--color--navy);
	text-decoration: none;
	font-weight: 500;
	font-size: var(--wp--preset--font-size--sm);
}
.tchc-nav__links a:hover { color: var(--wp--preset--color--teal-600); }
.tchc-header__actions { display: flex; align-items: center; gap: var(--wp--preset--spacing--5); }
.tchc-header__phone {
	display: flex;
	align-items: center;
	gap: 6px;
	color: var(--wp--preset--color--navy);
	font-weight: 600;
	text-decoration: none;
	font-size: var(--wp--preset--font-size--sm);
}
.tchc-nav__toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; color: var(--wp--preset--color--navy); }

/* Inline Lucide icon sizing/alignment used throughout (trust row, buttons, chips, step cards, etc.) */
.tchc-icon, svg[stroke-linecap] { flex-shrink: 0; vertical-align: -3px; }
.tchc-header__phone svg, .tchc-btn svg, .tchc-trust-row svg, .tchc-eyebrow svg { vertical-align: -2px; margin-right: 2px; }

@media (max-width: 880px) {
	.tchc-header__phone { display: none; }
	.tchc-nav__toggle { display: block; }
	.tchc-nav__links {
		position: absolute;
		inset-inline: 0;
		top: 100%;
		flex-direction: column;
		background: var(--wp--preset--color--white);
		padding: var(--wp--preset--spacing--5);
		border-bottom: 1px solid var(--wp--preset--color--grey-200);
		box-shadow: var(--wp--custom--shadow--md);
		display: none;
		gap: var(--wp--preset--spacing--4);
	}
	.tchc-nav__links.is-open { display: flex; }
	.tchc-header__actions .tchc-btn { padding: 10px 18px; font-size: var(--wp--preset--font-size--sm); }
}

/* Hero */
.tchc-hero { background: var(--wp--preset--color--teal-050); }
.tchc-hero__grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: var(--wp--preset--spacing--9); align-items: center; }
.tchc-hero h1 { color: var(--wp--preset--color--navy); }
.tchc-hero h1 .tchc-accent { color: var(--wp--preset--color--teal-600); }
.tchc-hero__actions { display: flex; gap: var(--wp--preset--spacing--4); flex-wrap: wrap; margin-block: var(--wp--preset--spacing--6); }
.tchc-trust-row { display: flex; gap: var(--wp--preset--spacing--5); flex-wrap: wrap; list-style: none; padding: 0; margin: 0; }
.tchc-trust-row li { display: flex; align-items: center; gap: 6px; font-size: var(--wp--preset--font-size--sm); color: var(--wp--preset--color--grey-700); font-weight: 500; }
.tchc-trust-row li svg { color: var(--wp--preset--color--teal-600); }

.tchc-hero__visual { position: relative; }
.tchc-hero__tagline { display: flex; align-items: center; gap: 8px; font-weight: 700; color: var(--wp--preset--color--white); margin: 0 0 var(--wp--preset--spacing--4); }
.tchc-hero__tagline svg { color: var(--wp--preset--color--white); }

.tchc-service-list-card {
	display: flex;
	flex-direction: column;
	gap: var(--wp--preset--spacing--3);
	background: linear-gradient(155deg, var(--wp--preset--color--teal-600), var(--wp--preset--color--teal-700));
	border-radius: var(--wp--custom--radius--xl);
	box-shadow: var(--wp--custom--shadow--lg);
	padding: var(--wp--preset--spacing--6);
}
.tchc-service-list-card__row {
	display: flex;
	align-items: center;
	gap: var(--wp--preset--spacing--3);
	background: rgba(255,255,255,.08);
	border: 1px solid rgba(255,255,255,.14);
	border-radius: var(--wp--custom--radius--md);
	padding: var(--wp--preset--spacing--3);
}
.tchc-service-list-card__icon {
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	background: var(--wp--preset--color--white);
	color: var(--wp--preset--color--teal-600);
	border-radius: var(--wp--custom--radius--sm);
}
.tchc-service-list-card__row strong { flex: 1; color: var(--wp--preset--color--white); font-weight: 600; }

.tchc-pill--on-dark, .tchc-pill--on-dark-muted {
	flex-shrink: 0;
	padding: 5px 12px;
	border-radius: var(--wp--custom--radius--pill);
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: var(--wp--custom--letter-spacing--wide);
}
.tchc-pill--on-dark { background: rgba(255,255,255,.9); color: var(--wp--preset--color--teal-700); }
.tchc-pill--on-dark-muted { background: rgba(255,255,255,.18); color: rgba(255,255,255,.85); }

.tchc-rating-chip {
	position: absolute;
	bottom: -18px;
	right: 24px;
	display: flex;
	align-items: center;
	gap: 6px;
	background: var(--wp--preset--color--white);
	border-radius: var(--wp--custom--radius--lg);
	box-shadow: var(--wp--custom--shadow--lg);
	padding: var(--wp--preset--spacing--3) var(--wp--preset--spacing--4);
	font-weight: 700;
	font-size: var(--wp--preset--font-size--md);
	color: var(--wp--preset--color--navy);
}
.tchc-rating-chip span { font-weight: 500; font-size: var(--wp--preset--font-size--sm); color: var(--wp--preset--color--grey-600); }

@media (max-width: 880px) {
	.tchc-hero__grid { grid-template-columns: 1fr; }
	.tchc-rating-chip { position: static; margin-top: var(--wp--preset--spacing--3); display: inline-flex; }
}

/* Grids */
.tchc-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--wp--preset--spacing--6); }
@media (max-width: 880px) { .tchc-grid-3 { grid-template-columns: 1fr; } }

.tchc-step-card { display: flex; flex-direction: column; gap: var(--wp--preset--spacing--4); }

.tchc-service-card {
	display: flex;
	flex-direction: column;
	background: var(--wp--preset--color--white);
	border: 1px solid var(--wp--preset--color--grey-200);
	border-radius: var(--wp--custom--radius--lg);
	box-shadow: var(--wp--custom--shadow--sm);
	overflow: hidden;
	transition: transform var(--wp--custom--motion--base) var(--wp--custom--motion--ease),
		box-shadow var(--wp--custom--motion--base) var(--wp--custom--motion--ease);
}
.tchc-service-card:hover {
	transform: translateY(-3px);
	box-shadow: var(--wp--custom--shadow--md);
}
.tchc-service-card--soon { opacity: .85; }
.tchc-service-card__photo-wrap { position: relative; }

/* How It Works step cards: icon badge + large faint watermark number */
.tchc-step-card { position: relative; gap: var(--wp--preset--spacing--2); }
.tchc-step-card__watermark {
	position: absolute;
	top: 22px;
	right: 24px;
	font-size: 36px;
	font-weight: 700;
	color: var(--wp--preset--color--grey-200);
	line-height: 1;
}
.tchc-step-card__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 52px;
	height: 52px;
	border-radius: var(--wp--custom--radius--md);
	background: var(--wp--preset--color--teal-050);
	color: var(--wp--preset--color--teal-600);
	margin-bottom: var(--wp--preset--spacing--2);
}

/* For Support Coordinators: simple divided step list (no cards/icons) */
.tchc-step-list__row {
	display: flex;
	gap: var(--wp--preset--spacing--4);
	padding-block: var(--wp--preset--spacing--4);
	border-bottom: 1px solid var(--wp--preset--color--grey-200);
}
.tchc-step-list__row--last { border-bottom: none; }
.tchc-step-list__row h4 { margin: 0 0 6px; }
.tchc-step-list__row p { margin: 0; color: var(--wp--preset--color--grey-600); }
.tchc-step-list__number {
	flex: 0 0 auto;
	width: 38px;
	height: 38px;
	border-radius: 50%;
	background: var(--wp--preset--color--teal-050);
	color: var(--wp--preset--color--teal-700);
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
}

.tchc-coordinators__intro { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: var(--wp--preset--spacing--8); align-items: center; }
.tchc-coordinators__photo { width: 100%; height: auto; aspect-ratio: 4 / 3; object-fit: cover; border-radius: var(--wp--custom--radius--lg); box-shadow: var(--wp--custom--shadow--md); }
@media (max-width: 880px) { .tchc-coordinators__intro { grid-template-columns: 1fr; } }
.tchc-service-card__photo {
	width: 100%;
	height: auto;
	aspect-ratio: 4 / 3;
	object-fit: cover;
	display: block;
}
.tchc-service-card__pill {
	position: absolute;
	top: 14px;
	left: 14px;
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: var(--wp--custom--letter-spacing--wide);
	padding: 5px 12px;
}
.tchc-service-card__icon-badge {
	position: absolute;
	left: 20px;
	bottom: -22px;
	width: 48px;
	height: 48px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--wp--preset--color--white);
	color: var(--wp--preset--color--teal-600);
	border-radius: var(--wp--custom--radius--sm);
	box-shadow: var(--wp--custom--shadow--md);
}
.tchc-service-card__content {
	display: flex;
	flex-direction: column;
	gap: var(--wp--preset--spacing--3);
	padding: var(--wp--preset--spacing--7) var(--wp--preset--spacing--6) var(--wp--preset--spacing--6);
	flex: 1;
}
.tchc-service-card h3 { margin: 0; }
.tchc-service-card__actions { display: flex; align-items: center; justify-content: space-between; gap: var(--wp--preset--spacing--3); flex-wrap: wrap; margin-top: auto; padding-top: var(--wp--preset--spacing--2); }
.tchc-learn-more {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	color: var(--wp--preset--color--teal-600);
	font-weight: 600;
	font-size: var(--wp--preset--font-size--sm);
	text-decoration: none;
}
.tchc-learn-more:hover { color: var(--wp--preset--color--teal-700); }
.tchc-step-card__number {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: var(--wp--custom--radius--circle);
	background: var(--wp--preset--color--teal-050);
	color: var(--wp--preset--color--teal-700);
	font-weight: 700;
}

/* Trust band (dark) */
.tchc-trust-band { background: var(--wp--preset--color--navy); color: var(--wp--preset--color--white); padding-block: clamp(5rem, 10vw, 6rem); }
.tchc-trust-band h2, .tchc-trust-band h3 { color: var(--wp--preset--color--white); }
.tchc-trust-band p { color: var(--wp--preset--color--teal-100); }
.tchc-trust-band__grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: var(--wp--preset--spacing--8); align-items: center; }
.tchc-badge-row { display: flex; gap: var(--wp--preset--spacing--4); flex-wrap: wrap; margin-block: var(--wp--preset--spacing--5); }
.tchc-badge {
	padding: 8px 16px;
	border-radius: var(--wp--custom--radius--pill);
	background: rgba(255,255,255,.08);
	border: 1px solid rgba(255,255,255,.18);
	font-size: var(--wp--preset--font-size--sm);
	font-weight: 600;
}
.tchc-stat-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--wp--preset--spacing--4); }
.tchc-stat {
	text-align: left;
	background: rgba(255,255,255,.06);
	border: 1px solid rgba(255,255,255,.12);
	border-radius: var(--wp--custom--radius--md);
	padding: var(--wp--preset--spacing--5);
}
.tchc-stat__value { font-size: 28px; font-weight: 700; display: block; margin-bottom: 4px; }
.tchc-stat__label { font-size: var(--wp--preset--font-size--sm); color: var(--wp--preset--color--teal-100); }
.tchc-stat.is-muted .tchc-stat__value { color: rgba(255,255,255,.5); }
.tchc-stat.is-muted .tchc-stat__label { color: rgba(255,255,255,.4); }

@media (max-width: 880px) {
	.tchc-trust-band__grid { grid-template-columns: 1fr; }
	.tchc-stat-grid { margin-top: var(--wp--preset--spacing--6); }
}

/* Coordinators */
.tchc-coordinators__grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--wp--preset--spacing--8); align-items: start; }
@media (max-width: 880px) { .tchc-coordinators__grid { grid-template-columns: 1fr; } }
.tchc-funding-note {
	background: var(--wp--preset--color--orange-100);
	border-left: 4px solid var(--wp--preset--color--orange-500);
	border-radius: var(--wp--custom--radius--sm);
	padding: var(--wp--preset--spacing--4) var(--wp--preset--spacing--5);
	font-size: var(--wp--preset--font-size--sm);
	color: var(--wp--preset--color--grey-800);
}
.tchc-download-card { background: var(--wp--preset--color--teal-050); border-radius: var(--wp--custom--radius--lg); padding: var(--wp--preset--spacing--6); }

/* Testimonial */
.tchc-testimonial { background: var(--wp--preset--color--white); text-align: center; }
.tchc-testimonial blockquote {
	font-size: 28px;
	font-weight: 500;
	color: var(--wp--preset--color--navy);
	max-width: 780px;
	margin: 0 auto var(--wp--preset--spacing--5);
	line-height: var(--wp--custom--line-height--snug);
}
.tchc-testimonial cite { font-style: normal; color: var(--wp--preset--color--grey-600); font-size: var(--wp--preset--font-size--sm); }

/* Final CTA */
.tchc-final-cta {
	position: relative;
	background-color: var(--wp--preset--color--navy);
	background-image: linear-gradient(rgba(50,59,99,.82), rgba(50,59,99,.82)), var(--tchc-cta-photo, none);
	background-size: cover;
	background-position: center;
	color: var(--wp--preset--color--white);
	text-align: center;
}
.tchc-final-cta h2, .tchc-final-cta p { color: var(--wp--preset--color--white); }
.tchc-final-cta__actions { display: flex; gap: var(--wp--preset--spacing--5); justify-content: center; align-items: center; flex-wrap: wrap; margin-top: var(--wp--preset--spacing--6); }

/* Footer */
.tchc-footer { background: var(--wp--preset--color--grey-050); border-top: 1px solid var(--wp--preset--color--grey-200); }
.tchc-footer__grid { display: grid; grid-template-columns: 1.4fr repeat(4, 1fr); gap: var(--wp--preset--spacing--7); }
@media (max-width: 880px) { .tchc-footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 500px) { .tchc-footer__grid { grid-template-columns: 1fr; } }
.tchc-footer__tagline { color: var(--wp--preset--color--grey-600); font-size: var(--wp--preset--font-size--sm); max-width: 320px; }
.tchc-footer h4 { font-size: var(--wp--preset--font-size--sm); text-transform: uppercase; letter-spacing: var(--wp--custom--letter-spacing--wide); color: var(--wp--preset--color--grey-500); margin-bottom: var(--wp--preset--spacing--3); }
.tchc-footer ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: var(--wp--preset--spacing--2); }
.tchc-footer a { color: var(--wp--preset--color--grey-700); text-decoration: none; font-size: var(--wp--preset--font-size--sm); }
.tchc-footer a:hover { color: var(--wp--preset--color--teal-600); }
.tchc-footer__bottom {
	border-top: 1px solid var(--wp--preset--color--grey-200);
	margin-top: var(--wp--preset--spacing--7);
	padding-top: var(--wp--preset--spacing--5);
	display: flex;
	justify-content: space-between;
	gap: var(--wp--preset--spacing--4);
	flex-wrap: wrap;
	font-size: var(--wp--preset--font-size--xs);
	color: var(--wp--preset--color--grey-500);
}
