/* ════════════════════════════════════════════════════════════════════
   CONTACT PAGE
════════════════════════════════════════════════════════════════════ */

.contact-banner {
	width: 100%;
	height: clamp(280px, 45vw, 560px);
	background-color: var(--color-surface);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.contact-section {
	padding: clamp(3rem, 7vw, 6rem) 0 clamp(4rem, 8vw, 8rem);
}

.contact-inner {
	max-width: 680px;
}

.contact-headline {
	font-family: var(--font-heading);
	font-weight: 700;
	font-size: clamp(2.5rem, 6vw, 5rem);
	line-height: 1.1;
	margin-bottom: 1.5rem;
}

.contact-intro {
	font-family: var(--font-body);
	font-size: clamp(1.05rem, 1.3vw, 1.25rem);
	line-height: 1.75;
	margin-bottom: 2.5rem;
	max-width: 560px;
}

.contact-details {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	margin-bottom: 3rem;
}

.contact-detail-line {
	font-family: var(--font-heading);
	font-weight: 700;
	font-size: clamp(0.7rem, 1vw, 0.9rem);
	line-height: 1.6;
	display: block;
	letter-spacing: 0.02em;
}

.contact-email {
	color: var(--color-text);
	text-decoration: underline;
	text-underline-offset: 0.25em;
}

.contact-email:hover {
	color: var(--color-footer);
}

.contact-phone-row {
	display: flex;
	gap: 1.5rem;
	align-items: baseline;
}

.contact-phone-name {
	min-width: 110px;
}

.contact-phone-row a {
	color: var(--color-text);
	text-decoration: underline;
	text-underline-offset: 0.2em;
}

.contact-address {
	font-style: normal;
	opacity: 0.7;
}

/* Substack block on contact page — identical to home version, no bg image */
.contact-substack {
	background-color: var(--color-bg) !important;
	background-image: none !important;
}

@media (max-width: 600px) {
	.contact-phone-row {
		flex-direction: column;
		gap: 0.2rem;
	}
}
