/* ==========================================================================
   FAMILY-HELP.CSS — The Law Office of Jimmy Cha, APC.
   Family Member Arrested — Help Now (family-help.php). Slug "family-help".
   The most emotionally delicate page — calmer and softer than Just Arrested:
   more whitespace, gentler accents, single-column steps.
   01 Hero · 02 What You Can Do · 03 How Jimmy Helps · 04 CTA
   ========================================================================== */

@keyframes jcFadeUp {
	from { opacity: 0; transform: translateY(28px); }
	to   { opacity: 1; transform: none; }
}

/* ==========================================================================
   01 — HERO (reassurance + authority)
   ========================================================================== */
.fh-hero {
	position: relative;
	overflow: hidden;
	background: var(--ink);
	border-bottom: 1px solid var(--crimson-dim);
}
.fh-hero-inner {
	position: relative;
	z-index: 1;
	max-width: 860px;
	margin-inline: auto;
	text-align: center;
	padding-block: 100px 84px;
}
.fh-hero-title {
	font-size: clamp(34px, 5vw, 58px);
	font-weight: 700;
	color: var(--warm-white);
	line-height: 1.1;
	letter-spacing: -0.4px;
	margin-bottom: 20px;
	animation: jcFadeUp 0.7s ease both;
}
.fh-hero-title em {
	font-style: italic;
	background: var(--grad-crimson);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}
.fh-hero-sub {
	font-size: clamp(16px, 2vw, 20px);
	color: var(--silver-light);
	max-width: 640px;
	margin: 0 auto 32px;
	animation: jcFadeUp 0.7s ease 0.12s both;
}
.fh-hero-actions {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 16px;
	margin-bottom: 22px;
	animation: jcFadeUp 0.7s ease 0.24s both;
}
.fh-hero .reassurance-line {
	color: var(--gold);
	animation: jcFadeUp 0.7s ease 0.32s both;
}

/* ==========================================================================
   02 — WHAT YOU CAN DO (calm single-column steps)
   ========================================================================== */
.fh-steps {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 18px;
	margin-top: 12px;
	align-items: start;
}
.fh-step {
	display: flex;
	gap: 22px;
	padding: 28px 30px;
	border: 1px solid var(--gunmetal);
	border-radius: var(--radius-lg);
	background: var(--grad-surface);
	transition: transform 0.3s ease, border-color 0.3s ease;
	height: 100%;
}
.fh-step:hover {
	transform: translateY(-3px);
	border-color: rgba(184, 148, 94, 0.35);
}
.fh-step-num {
	flex-shrink: 0;
	display: grid;
	place-items: center;
	width: 46px;
	height: 46px;
	border-radius: 50%;
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 20px;
	color: var(--crimson-light);
	background: var(--crimson-dim);
	border: 1px solid rgba(166, 24, 44, 0.3);
}
.fh-step-title {
	font-size: 21px;
	color: var(--warm-white);
	margin-bottom: 10px;
	line-height: 1.25;
}
.fh-step-body p {
	font-size: 15px;
	color: var(--silver-light);
	line-height: 1.7;
}
.fh-step-body a {
	color: var(--crimson-light);
	text-decoration: underline;
	text-underline-offset: 3px;
}
.fh-gather {
	margin-top: 14px;
	padding-left: 4px;
	display: flex;
	flex-direction: column;
	gap: 9px;
}
.fh-gather li {
	position: relative;
	padding-left: 26px;
	font-size: 15px;
	color: var(--silver-light);
	line-height: 1.5;
}
.fh-gather li::before {
	content: '\f00c'; /* check */
	font-family: 'Font Awesome 6 Free';
	font-weight: 900;
	position: absolute;
	left: 0;
	top: 2px;
	font-size: 12px;
	color: var(--gold);
}
/* Step 5 — call step, gently highlighted, spans full width */
.fh-step--highlight {
	grid-column: 1 / -1;
	border-color: transparent;
	background:
		linear-gradient(160deg, rgba(166, 24, 44, 0.12), rgba(20, 20, 25, 0.5)) padding-box,
		linear-gradient(160deg, rgba(166, 24, 44, 0.45), rgba(184, 148, 94, 0.25)) border-box;
	border: 1px solid transparent;
}
.fh-step--highlight .fh-step-num {
	color: #fff;
	background: var(--grad-crimson);
	border-color: transparent;
}
.fh-steps-cta {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	margin-top: 32px;
}

/* ==========================================================================
   03 — HOW JIMMY HELPS FAMILIES
   ========================================================================== */
.fh-help-section {
	background: var(--charcoal);
}
.fh-help-intro {
	font-size: 17px;
	color: var(--silver-light);
	line-height: 1.8;
	max-width: 820px;
	margin-bottom: 16px;
}
.fh-help-grid {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 20px;
	margin-top: 24px;
}
.fh-help-card {
	border: 1px solid var(--gunmetal);
	border-radius: var(--radius-lg);
	padding: 30px;
	background: var(--grad-surface);
	transition: transform 0.3s ease, border-color 0.3s ease;
}
.fh-help-card:hover {
	transform: translateY(-4px);
	border-color: rgba(166, 24, 44, 0.35);
}
.fh-help-icon {
	display: grid;
	place-items: center;
	width: 54px;
	height: 54px;
	border-radius: 14px;
	font-size: 22px;
	color: var(--crimson-light);
	background: rgba(166, 24, 44, 0.12);
	border: 1px solid rgba(166, 24, 44, 0.25);
	margin-bottom: 18px;
}
.fh-help-name {
	font-size: 21px;
	color: var(--warm-white);
	margin-bottom: 10px;
	line-height: 1.25;
}
.fh-help-card p {
	font-size: 14.5px;
	color: var(--silver-light);
	line-height: 1.7;
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 880px) {
	.fh-help-grid {
		grid-template-columns: 1fr;
	}
	.fh-steps {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 680px) {
	.fh-hero-inner {
		padding-block: 68px 56px;
	}
	.fh-hero-actions .btn,
	.fh-steps-cta .btn {
		width: 100%;
	}
	.fh-step {
		padding: 24px;
		gap: 16px;
	}
}
