/* ==========================================================================
   CRIMINAL-DEFENSE.CSS — The Law Office of Jimmy Cha, APC.
   Criminal Defense Overview / Hub (criminal-defense.php). Slug "criminal-defense".
   Practice-area cards + final CTA come from component.css.
   01 Hero (+ honors trust row) · 02 Practice grid · 03 Approach · 04 CTA
   ========================================================================== */

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

/* ==========================================================================
   01 — HERO
   ========================================================================== */
.cd-hero {
	position: relative;
	overflow: hidden;
	background: var(--ink);
	border-bottom: 1px solid var(--crimson-dim);
}
.cd-hero-inner {
	position: relative;
	z-index: 1;
	max-width: 900px;
	margin-inline: auto;
	text-align: center;
	padding-block: 96px 72px;
}
.cd-hero-eyebrow {
	font-family: var(--font-mono);
	font-size: 12px;
	font-weight: 500;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: var(--gold);
	margin-bottom: 16px;
	animation: jcFadeUp 0.7s ease both;
}
.cd-hero-title {
	font-size: clamp(34px, 5vw, 58px);
	font-weight: 700;
	color: var(--warm-white);
	line-height: 1.08;
	letter-spacing: -0.4px;
	margin-bottom: 20px;
	animation: jcFadeUp 0.7s ease 0.06s both;
}
.cd-hero-title em {
	font-style: italic;
	background: var(--grad-crimson);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}
.cd-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;
}
.cd-hero-actions {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 16px;
	margin-bottom: 30px;
	animation: jcFadeUp 0.7s ease 0.24s both;
}
.cd-hero-trust {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 12px 28px;
	padding: 20px 0;
	margin-bottom: 18px;
	border-block: 1px solid var(--gold-dim);
	animation: jcFadeUp 0.7s ease 0.32s both;
}
.cd-hero-trust span {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-family: var(--font-mono);
	font-size: 11px;
	letter-spacing: 1.4px;
	text-transform: uppercase;
	color: var(--gold);
}
.cd-hero-trust i {
	font-size: 13px;
}
.cd-hero .reassurance-line {
	color: var(--gold);
}

/* ==========================================================================
   02 — FOUR COURT DIVISIONS (cards)
   ========================================================================== */
.cd-divisions-section {
	background: var(--charcoal);
}
.cd-divisions {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
	margin-top: 26px;
}
.cd-division-card {
	border: 1px solid var(--gunmetal);
	border-radius: var(--radius-lg);
	padding: 28px 30px;
	background: var(--grad-surface);
	transition: transform 0.3s ease, border-color 0.3s ease;
}
.cd-division-card:hover {
	transform: translateY(-4px);
	border-color: rgba(184, 148, 94, 0.4);
}
.cd-division-head {
	display: flex;
	align-items: center;
	gap: 15px;
	margin-bottom: 16px;
}
.cd-division-icon {
	flex-shrink: 0;
	display: grid;
	place-items: center;
	width: 50px;
	height: 50px;
	border-radius: 13px;
	font-size: 21px;
	color: var(--gold);
	background: var(--gold-dim);
	border: 1px solid rgba(184, 148, 94, 0.3);
}
.cd-division-name {
	font-size: 21px;
	color: var(--warm-white);
	line-height: 1.2;
}
.cd-division-city {
	font-family: var(--font-mono);
	font-size: 11px;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	color: var(--gold);
}
.cd-division-desc {
	font-size: 15px;
	color: var(--silver-light);
	line-height: 1.7;
	margin-bottom: 14px;
}
.cd-division-desc a {
	color: var(--crimson-light);
	font-weight: 600;
}
.cd-division-desc a:hover {
	text-decoration: underline;
}
.cd-division-link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-family: var(--font-body);
	font-weight: 600;
	font-size: 13.5px;
	color: var(--crimson-light);
}
.cd-division-link i {
	transition: transform 0.25s ease;
}
.cd-division-card:hover .cd-division-link i {
	transform: translateX(5px);
}

/* ==========================================================================
   03 — COVERAGE (two-column editorial: title aside + prose body)
   ========================================================================== */
.cd-coverage-section {
	background: var(--ink);
}
.cd-coverage-grid {
	display: grid;
	grid-template-columns: 0.85fr 1.15fr;
	gap: 30px 56px;
	align-items: start;
}
.cd-coverage-aside .section-title {
	margin-bottom: 0;
}
.cd-coverage-body p {
	font-size: 16px;
	color: var(--silver-light);
	line-height: 1.85;
	margin-bottom: 18px;
}
.cd-coverage-body p:last-child {
	margin-bottom: 0;
}

/* ==========================================================================
   04 — WHATEVER THE CHARGE (centered band + charge chips)
   ========================================================================== */
.cd-charge-section {
	background: var(--charcoal);
}
.cd-charge-inner {
	max-width: 760px;
	text-align: center;
}
.cd-charge-intro {
	font-size: 17px;
	color: var(--silver-light);
	line-height: 1.75;
	margin: 0 auto 30px;
}
.cd-charge-cta {
	display: flex;
	justify-content: center;
}

/* ==========================================================================
   04 — CTA honors line
   ========================================================================== */
.cd-cta-honors {
	font-family: var(--font-mono);
	font-size: 11px;
	letter-spacing: 1.2px;
	text-transform: uppercase;
	color: var(--gold);
	line-height: 1.9;
	text-align: center;
	max-width: 600px;
	margin: 22px auto 0;
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 880px) {
	.cd-divisions {
		grid-template-columns: 1fr;
	}
	.cd-coverage-grid {
		grid-template-columns: 1fr;
		gap: 16px;
	}
}

@media (max-width: 680px) {
	.cd-hero-inner {
		padding-block: 66px 52px;
	}
	.cd-hero-actions .btn {
		width: 100%;
	}
}
