/* ==========================================================================
   Cafe Zocalo — contact.css
   Contact page layouts only. Enqueued by Page ID.
   ========================================================================== */

/* ── Section 01 — Hero (text-only, no background image) ─────────────────── */
.cz-contact-hero {
	background: var(--surface-warm);
	border-bottom: 1px solid var(--line);
	text-align: center;
}

.cz-contact-hero__content {
	padding: 72px 24px 60px;
}

.cz-contact-hero__headline {
	font-family: var(--font-display);
	font-style: italic;
	font-size: clamp(40px, 6vw, 60px);
	font-weight: 600;
	color: var(--ink);
	letter-spacing: -1px;
	line-height: 1.05;
	margin-bottom: 16px;
}

.cz-contact-hero__subhead {
	font-size: 18px;
	line-height: 1.7;
	color: var(--ink-mid);
	max-width: 52ch;
	margin: 0 auto;
}

/* ── Section 02 — Quick Contact Info ───────────────────────────────────── */
.cz-contact-info {
	padding: 80px 0;
	background: var(--bg-primary);
}

.cz-contact-info__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 22px;
	margin-bottom: 32px;
}

.cz-contact-card {
	background: var(--surface);
	border: 1px solid var(--line);
	border-radius: var(--radius-lg);
	padding: 32px 26px;
	text-align: center;
	transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.cz-contact-card:hover {
	transform: translateY(-3px);
	border-color: var(--terracotta);
	box-shadow: 0 12px 28px rgba(199, 93, 62, 0.12);
}

.cz-contact-card__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 52px;
	height: 52px;
	border-radius: 50%;
	background: var(--terracotta-dim);
	color: var(--terracotta-deep);
	font-size: 21px;
	margin-bottom: 18px;
}

.cz-contact-card__title {
	font-family: var(--font-display);
	font-size: 20px;
	font-weight: 600;
	color: var(--ink);
	margin-bottom: 8px;
}

.cz-contact-card__line {
	font-family: var(--font-mono);
	font-size: 15px;
	color: var(--ink);
	line-height: 1.5;
	margin-bottom: 10px;
}

.cz-contact-card__line a {
	color: var(--terracotta-deep);
	font-weight: 700;
}

.cz-contact-card__sub {
	font-size: 13.5px;
	line-height: 1.7;
	color: var(--ink-soft);
	margin: 0;
}

.cz-contact-info__hours {
	text-align: center;
	font-family: var(--font-mono);
	font-size: 13px;
	letter-spacing: 0.5px;
	color: var(--ink-mid);
	margin-bottom: 22px;
}

.cz-contact-info__social {
	display: flex;
	justify-content: center;
	gap: 14px;
}

.cz-contact-info__social a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	border: 1px solid var(--line);
	background: var(--surface);
	color: var(--ink-mid);
	font-size: 17px;
	transition: all 0.2s ease;
}

.cz-contact-info__social a:hover {
	background: var(--terracotta);
	border-color: var(--terracotta);
	color: var(--pure-white);
	transform: translateY(-2px);
}

/* ── Section 03 — General Contact Form ─────────────────────────────────── */
.cz-contact-form {
	padding: 80px 0;
	background: var(--surface-warm);
}

.cz-contact-form__inner {
	max-width: 700px;
}

.cz-contact-form__note {
	margin-top: 20px;
	text-align: center;
	font-size: 14px;
	line-height: 1.7;
	color: var(--ink-soft);
}

.cz-contact-form__note a {
	color: var(--terracotta-deep);
	font-weight: 600;
}

/* ── Section 04 — Cross-Links ──────────────────────────────────────────── */
.cz-contact-links {
	padding: 80px 0;
	background: var(--bg-primary);
}

.cz-contact-links__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

.cz-crosslink {
	display: block;
	background: var(--surface);
	border: 1px solid var(--line);
	border-radius: var(--radius-lg);
	padding: 28px 24px;
	color: inherit;
	transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.cz-crosslink:hover {
	transform: translateY(-3px);
	border-color: var(--terracotta);
	box-shadow: 0 12px 28px rgba(199, 93, 62, 0.12);
	color: inherit;
}

.cz-crosslink__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: var(--terracotta-dim);
	color: var(--terracotta-deep);
	font-size: 19px;
	margin-bottom: 16px;
}

.cz-crosslink__title {
	font-family: var(--font-display);
	font-size: 18px;
	font-weight: 600;
	color: var(--ink);
	margin-bottom: 8px;
	letter-spacing: -0.2px;
}

.cz-crosslink__text {
	font-size: 14px;
	line-height: 1.7;
	color: var(--ink-mid);
	margin-bottom: 14px;
}

.cz-crosslink__cta {
	font-family: var(--font-body);
	font-weight: 600;
	font-size: 14px;
	color: var(--terracotta-deep);
}

.cz-crosslink:hover .cz-crosslink__cta {
	color: var(--terracotta);
}

/* ── Responsive ────────────────────────────────────────────────────────── */
@media (max-width: 900px) {
	.cz-contact-links__grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 700px) {
	.cz-contact-info__grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 600px) {
	.cz-contact-info,
	.cz-contact-form,
	.cz-contact-links {
		padding-top: 56px;
		padding-bottom: 56px;
	}

	.cz-contact-hero__content {
		padding: 56px 24px;
	}

	.cz-contact-links__grid {
		grid-template-columns: 1fr;
	}
}
