/* ═══════════════════════════════════════════════════════════════════════
   Legal Pages — Privacy Policy & Cookie Policy
   Clean, readable long-form text styling.
   Reuses shared tokens from header.css (:root).
   ═══════════════════════════════════════════════════════════════════════ */

/* ── Page wrapper ────────────────────────────────────────────────────── */
.legal-page {
	background: var(--h-white);
	color: var(--h-dark);
	font-family: var(--h-font);
	padding-bottom: 80px;
}

/* ── Header / hero band ─────────────────────────────────────────────── */
.legal-hero {
	background: #f8f9fa;
	border-bottom: 1px solid #d0d0d0;
	padding: 64px var(--h-pad) 48px;
}
.legal-hero__inner {
	max-width: 800px;
	margin: 0 auto;
}
.legal-hero__breadcrumb {
	font-size: 14px;
	font-weight: 500;
	color: #5f6368;
	margin-bottom: 16px;
}
.legal-hero__breadcrumb a {
	color: #5f6368;
	text-decoration: none;
}
.legal-hero__breadcrumb a:hover {
	color: var(--h-accent);
	text-decoration: underline;
}
.legal-hero h1 {
	font-family: var(--h-font);
	font-size: clamp(28px, 4vw, 42px);
	font-weight: 700;
	line-height: 1.2;
	color: var(--h-dark);
	margin: 0;
}
.legal-hero__meta {
	margin-top: 12px;
	font-size: 15px;
	color: #5f6368;
}

/* ── Content column ─────────────────────────────────────────────────── */
.legal-content {
	max-width: 800px;
	margin: 0 auto;
	padding: 48px var(--h-pad) 0;
}

/* ── Typography ─────────────────────────────────────────────────────── */
.legal-content h2 {
	font-family: var(--h-font);
	font-size: 24px;
	font-weight: 700;
	line-height: 1.3;
	color: var(--h-dark);
	margin: 48px 0 16px;
	padding-top: 16px;
}
.legal-content h2:first-child {
	margin-top: 0;
	padding-top: 0;
}

.legal-content h3 {
	font-family: var(--h-font);
	font-size: 18px;
	font-weight: 600;
	line-height: 1.4;
	color: var(--h-dark);
	margin: 32px 0 12px;
}

.legal-content p {
	font-size: 16px;
	font-weight: 400;
	line-height: 1.75;
	color: #3c3c3c;
	margin: 0 0 20px;
	max-width: 65ch;
}

.legal-content a {
	color: #1b4d5c;
	text-decoration: underline;
	text-underline-offset: 3px;
	text-decoration-thickness: 1px;
}
.legal-content a:hover {
	color: #14383f;
	text-decoration-thickness: 2px;
}

.legal-content ul,
.legal-content ol {
	margin: 0 0 20px;
	padding-left: 24px;
}
.legal-content li {
	font-size: 16px;
	line-height: 1.75;
	color: #3c3c3c;
	margin-bottom: 8px;
	max-width: 65ch;
}
.legal-content li::marker {
	color: #1b4d5c;
}

.legal-content strong {
	font-weight: 600;
	color: var(--h-dark);
}

/* ── Cookie table ───────────────────────────────────────────────────── */
.cookie-table {
	width: 100%;
	border-collapse: collapse;
	margin: 20px 0 32px;
	font-size: 15px;
}
.cookie-table th,
.cookie-table td {
	text-align: left;
	padding: 12px 16px;
	border-bottom: 1px solid #e0e0e0;
	vertical-align: top;
}
.cookie-table th {
	font-weight: 600;
	color: var(--h-dark);
	background: #f8f9fa;
	font-size: 13px;
	text-transform: uppercase;
	letter-spacing: 0.04em;
}
.cookie-table td {
	color: #3c3c3c;
	line-height: 1.6;
}
.cookie-table code {
	font-family: 'SFMono-Regular', Consolas, 'Liberation Mono', Menlo, monospace;
	font-size: 13px;
	background: #f0f0f0;
	padding: 2px 6px;
	border-radius: 3px;
}

/* ── Contact card ───────────────────────────────────────────────────── */
.legal-contact {
	background: #f8f9fa;
	border: 1px solid #d0d0d0;
	border-radius: 8px;
	padding: 24px 28px;
	margin: 24px 0 32px;
}
.legal-contact address {
	font-style: normal;
	line-height: 1.8;
	font-size: 16px;
	color: #3c3c3c;
}

/* ── Responsive ─────────────────────────────────────────────────────── */
@media (max-width: 600px) {
	.legal-hero {
		padding: 40px var(--h-pad) 32px;
	}
	.legal-content {
		padding-top: 32px;
	}
	.legal-content h2 {
		font-size: 20px;
		margin-top: 36px;
	}
	.cookie-table {
		font-size: 14px;
	}
	.cookie-table th,
	.cookie-table td {
		padding: 10px 12px;
	}
}
