/* ==========================================================================
   POLICY.CSS — The Law Offices of Jimmy Cha, APC.
   SHARED stylesheet for the legal / policy pages: Privacy Policy, Terms of Use,
   Cookies Policy, California Privacy (CCPA/CPRA), Accessibility Policy.
   Map each policy page ID to 'policy' in functions.php.
   Layout: compact hero (title + effective date) · readable prose body.
   Content on these pages is reproduced verbatim from the source documents.
   ========================================================================== */

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

/* ==========================================================================
   HERO
   ========================================================================== */
.policy-hero {
	position: relative;
	overflow: hidden;
	background: var(--ink);
	border-bottom: 1px solid var(--crimson-dim);
}
.policy-hero-inner {
	position: relative;
	z-index: 1;
	max-width: 820px;
	margin-inline: auto;
	text-align: center;
	padding-block: 88px 52px;
}
.policy-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-family: var(--font-mono);
	font-size: 11px;
	font-weight: 500;
	letter-spacing: 2.5px;
	text-transform: uppercase;
	color: var(--gold);
	padding: 9px 18px;
	border: 1px solid var(--gold-dim);
	border-radius: 50px;
	background: var(--gold-dim);
	margin-bottom: 20px;
	animation: jcFadeUp 0.6s ease both;
}
.policy-title {
	font-size: clamp(30px, 4.2vw, 46px);
	font-weight: 700;
	color: var(--warm-white);
	line-height: 1.12;
	letter-spacing: -0.3px;
	margin-bottom: 16px;
	animation: jcFadeUp 0.6s ease 0.08s both;
}
.policy-date {
	font-family: var(--font-mono);
	font-size: 12px;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	color: var(--silver);
	animation: jcFadeUp 0.6s ease 0.16s both;
}

/* ==========================================================================
   PROSE BODY
   ========================================================================== */
.policy-body {
	background: var(--ink);
}
.policy-prose {
	max-width: 820px;
	margin-inline: auto;
}
.policy-prose > p:first-child,
.policy-lead {
	font-size: 17px;
	color: var(--silver-light);
	line-height: 1.8;
	margin-bottom: 22px;
}

/* Section headings (numbered or named) */
.policy-prose h2 {
	font-size: clamp(22px, 2.6vw, 28px);
	color: var(--warm-white);
	line-height: 1.25;
	margin-top: 48px;
	margin-bottom: 16px;
	padding-bottom: 12px;
	border-bottom: 1px solid var(--gunmetal);
}
.policy-prose h2:first-of-type {
	margin-top: 8px;
}
/* Subsection headings (e.g. 1.1, "Your Rights") */
.policy-prose h3 {
	font-size: 19px;
	color: var(--warm-white);
	line-height: 1.3;
	margin-top: 28px;
	margin-bottom: 12px;
}
.policy-prose p {
	font-size: 16px;
	color: var(--silver-light);
	line-height: 1.8;
	margin-bottom: 16px;
}
.policy-prose strong {
	color: var(--warm-white);
	font-weight: 600;
}

/* Lists */
.policy-prose ul {
	list-style: none;
	margin: 0 0 20px;
	padding: 0;
}
.policy-prose li {
	position: relative;
	padding-left: 26px;
	font-size: 16px;
	color: var(--silver-light);
	line-height: 1.7;
	margin-bottom: 10px;
}
.policy-prose li::before {
	content: '';
	position: absolute;
	left: 4px;
	top: 11px;
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--crimson);
}
/* Definition-style list (term + description on one line) */
.policy-prose li strong {
	color: var(--warm-white);
}

/* Contact callout */
.policy-contact {
	margin-top: 20px;
	padding: 24px 26px;
	border: 1px solid var(--gunmetal);
	border-left: 3px solid var(--gold);
	border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
	background: var(--grad-surface);
}
.policy-contact p {
	margin-bottom: 6px;
}
.policy-contact .policy-firm {
	font-family: var(--font-display);
	font-size: 19px;
	color: var(--warm-white);
	margin-bottom: 10px;
}
.policy-contact a {
	color: var(--gold);
}
.policy-contact a:hover {
	color: var(--gold-light);
}

/* Disclaimer note */
.policy-disclaimer {
	margin-top: 40px;
	padding-top: 22px;
	border-top: 1px solid var(--gunmetal);
	font-size: 14px;
	font-style: italic;
	color: var(--gray-300);
	line-height: 1.7;
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 680px) {
	.policy-hero-inner {
		padding-block: 64px 44px;
	}
	.policy-prose h2 {
		margin-top: 38px;
	}
}
