/* ==========================================================================
   Cafe Zocalo — about.css
   About / Our Story page layouts only. Enqueued by Page ID.
   ========================================================================== */

/* ── Section 01 — Hero: The Story ──────────────────────────────────────── */
.cz-about-hero {
	position: relative;
	min-height: 460px;
}

.cz-about-hero__media {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.cz-about-hero__overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(180deg, rgba(42, 31, 24, 0.72) 0%, rgba(42, 31, 24, 0.85) 100%);
	display: flex;
	align-items: center;
	justify-content: center;
}

.cz-about-hero__content {
	width: 100%;
	max-width: var(--container);
	margin: 0 auto;
	padding: 80px 24px;
	text-align: center;
	color: var(--pure-white);
}

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

.cz-about-hero__subhead {
	font-size: 18px;
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.92);
	max-width: 54ch;
	margin: 0 auto;
}

/* ── Content rows (Founders / Why Zocalo / Food Philosophy / Community) ─── */
.cz-about-row {
	padding: 80px 0;
	background: var(--bg-primary);
}

.cz-about-row--alt {
	background: var(--surface-warm);
}

.cz-about-row__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 56px;
	align-items: center;
}

/* Reversed rows put the image on the right. */
.cz-about-row--reverse .cz-about-row__media {
	order: 2;
}

.cz-about-row__media {
	width: 100%;
	aspect-ratio: 4 / 5;
	object-fit: cover;
	border-radius: var(--radius-lg);
}

.cz-about-row__body p {
	font-size: 15.5px;
	line-height: 1.85;
	color: var(--ink-mid);
	margin-bottom: 16px;
}

.cz-about-row__body p:last-child {
	margin-bottom: 0;
}

/* ── Section 06 — Visit Us CTA ─────────────────────────────────────────── */
.cz-about-cta {
	padding: 84px 0;
	background: linear-gradient(135deg, var(--terracotta) 0%, var(--terracotta-deep) 100%);
	color: var(--pure-white);
}

.cz-about-cta__inner {
	text-align: center;
}

.cz-about-cta__headline {
	font-family: var(--font-display);
	font-size: clamp(32px, 5vw, 46px);
	font-weight: 600;
	color: var(--pure-white);
	letter-spacing: -1px;
	margin-bottom: 14px;
}

.cz-about-cta__body {
	font-size: 17px;
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.92);
	max-width: 54ch;
	margin: 0 auto 18px;
}

.cz-about-cta__details {
	font-family: var(--font-mono);
	font-size: 14px;
	color: var(--pure-white);
	margin-bottom: 28px;
}

.cz-about-cta__details a {
	color: var(--pure-white);
	font-weight: 700;
}

.cz-about-cta__details a:hover {
	color: var(--gold-light);
}

.cz-about-cta__actions {
	display: flex;
	justify-content: center;
	gap: 14px;
	flex-wrap: wrap;
	margin-bottom: 20px;
}

.cz-about-cta__social a {
	font-family: var(--font-body);
	font-weight: 600;
	font-size: 15px;
	color: var(--pure-white);
}

.cz-about-cta__social a:hover {
	color: var(--gold-light);
}

/* ── Responsive ────────────────────────────────────────────────────────── */
@media (max-width: 860px) {
	.cz-about-row__grid {
		grid-template-columns: 1fr;
		gap: 32px;
	}

	/* Keep the image above the text on every stacked row. */
	.cz-about-row__media,
	.cz-about-row--reverse .cz-about-row__media {
		order: -1;
	}
}

@media (max-width: 600px) {
	.cz-about-row,
	.cz-about-cta {
		padding-top: 56px;
		padding-bottom: 56px;
	}

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