/* ---
   LEGAL PAGES (Privacy / Disclaimer) - Minimal / Wireframe
   --------------------------------------------------- */

/* --- Hero --- */
.lg-hero {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	min-height: 100vh;
	padding: 240px 5% 180px;
	background: var(--bg-primary, #0A0A0A);
}
.lg-hero__inner {
	max-width: 700px;
	width: 100%;
}
.lg-hero__eyebrow {
	display: inline-block;
	font-size: .72rem;
	font-weight: 500;
	letter-spacing: .18em;
	text-transform: uppercase;
	color: var(--text-muted, #5A5A5A);
	margin-bottom: 1.4rem;
}
.lg-hero h1 {
	font-size: clamp(1.6rem, 4.5vw, 3.2rem);
	font-weight: 900;
	line-height: 1.15;
	color: var(--text-primary);
	margin: 0 0 1.2rem;
	letter-spacing: -.02em;
	text-transform: uppercase;
}
.lg-hero__sub {
	font-size: .95rem;
	line-height: 1.7;
	color: var(--text-secondary, #8A8A8A);
	max-width: 580px;
	margin: 0 auto;
}

/* --- Sub-nav --- */
.lg-nav {
	position: sticky;
	top: 0;
	z-index: 50;
	display: flex;
	justify-content: center;
	gap: 2rem;
	padding: 1rem 1.5rem;
	background: var(--bg-primary, #0A0A0A);
	-webkit-backdrop-filter: blur(12px);
	backdrop-filter: blur(12px);
}
.lg-nav__link {
	font-size: .68rem;
	font-weight: 600;
	letter-spacing: .16em;
	text-transform: uppercase;
	color: var(--text-muted, #5A5A5A);
	text-decoration: none;
	transition: color .2s ease;
	padding: .35rem 0;
	border-bottom: 1px solid transparent;
}
.lg-nav__link:hover {
	color: var(--text-primary);
	border-bottom-color: var(--primary, #D65A1F);
}

/* --- Body --- */
.lg-body {
	max-width: 680px;
	margin: 0 auto;
	padding: 0 1.5rem;
}

/* --- Section --- */
.lg-section {
	padding: 3rem 0;
}
.lg-section--title {
	padding: 5rem 0 1.5rem;
	text-align: center;
	scroll-margin-top: 3.5rem;
}
.lg-section--title h2 {
	font-size: .72rem;
	font-weight: 600;
	letter-spacing: .18em;
	text-transform: uppercase;
	color: var(--text-primary);
	margin: 0;
	display: flex;
	align-items: center;
	gap: 1.5rem;
}
.lg-section--title h2::before,
.lg-section--title h2::after {
	content: '';
	flex: 1;
	height: 1px;
	background: rgba(212, 212, 212, .1);
}
.lg-section h2 {
	font-size: .7rem;
	letter-spacing: .18em;
	text-transform: uppercase;
	color: var(--text-muted, #5A5A5A);
	margin: 0 0 1.5rem;
	font-weight: 500;
}
.lg-section p {
	font-size: .9rem;
	line-height: 1.7;
	color: var(--text-secondary, #8A8A8A);
	margin: 0 0 1rem;
}
.lg-section p:last-child {
	margin-bottom: 0;
}
.lg-section ul {
	list-style: none;
	padding: 0;
	margin: 1rem 0 0;
	display: grid;
	gap: .75rem;
}
.lg-section ul li {
	display: flex;
	align-items: flex-start;
	gap: .75rem;
	font-size: .9rem;
	line-height: 1.6;
	color: var(--text-secondary, #8A8A8A);
}
.lg-section ul li::before {
	content: '';
	flex-shrink: 0;
	width: 4px;
	height: 4px;
	margin-top: .55rem;
	background: var(--primary, #D65A1F);
	border-radius: 50%;
}

/* --- Intro paragraph --- */
.lg-intro {
	color: var(--text-secondary, #8A8A8A);
}
.lg-section a {
	color: var(--primary, #D65A1F);
	text-decoration: none;
	transition: color .2s ease;
}
.lg-section a:hover {
	color: rgba(214, 90, 31, .8);
}

/* --- Updated note --- */
.lg-updated {
	font-size: .8rem;
	color: var(--text-muted, #5A5A5A);
	font-style: italic;
	margin: .8rem 0 0;
}

/* --- Contact --- */
.lg-contact {
	max-width: 680px;
	margin: 0 auto;
	padding: 2.5rem 1.5rem 1.5rem;
	font-size: .85rem;
	line-height: 1.7;
	color: var(--text-muted, #5A5A5A);
}
.lg-contact a {
	color: var(--primary, #D65A1F);
	text-decoration: none;
	transition: color .2s ease;
}
.lg-contact a:hover {
	color: rgba(214, 90, 31, .8);
}

/* --- Bottom CTA --- */
.lg-cta {
	text-align: center;
	padding: 3rem 1.5rem 5rem;
	border-top: 1px solid rgba(212, 212, 212, .06);
}

/* --- Responsive --- */
@media (max-width: 900px) {
	.lg-hero {
		padding: 180px 5% 140px;
	}
}

@media (max-width: 600px) {
	.lg-hero {
		padding: 160px 5% 112px;
	}
	.lg-nav {
		gap: 1.25rem;
		padding: .85rem 1rem;
	}
	.lg-nav__link {
		font-size: .62rem;
	}
	.lg-body {
		padding: 0 1.25rem;
	}
	.lg-section {
		padding: 2.5rem 0;
	}
	.lg-contact {
		padding: 2.5rem 1.25rem 1.25rem;
	}
	.lg-cta {
		padding: 2.5rem 1.25rem 4rem;
	}
}
