/* ==========================================================================
   Cafe Zocalo — home.css
   Home (front page) section layouts only. Enqueued by Page ID.
   ========================================================================== */

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

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

.cz-hero__overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	/* Full-section overlay — darker on the left for text legibility, still
	   covering the whole hero (no transparent edge). */
	background: linear-gradient(90deg, rgba(42, 31, 24, 0.9) 0%, rgba(42, 31, 24, 0.72) 100%);
	/* Vertically center the hero content. */
	display: flex;
	align-items: center;
}

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

.cz-trust-strip {
	font-family: var(--font-mono);
	font-size: 11px;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	color: var(--gold-light);
	margin-bottom: 18px;
}

.cz-hero__headline {
	font-family: var(--font-display);
	font-size: clamp(40px, 6vw, 64px);
	font-weight: 600;
	color: var(--pure-white);
	letter-spacing: -1.5px;
	line-height: 1.05;
	margin-bottom: 18px;
	max-width: 16ch;
}

.cz-hero__subhead {
	font-size: 17px;
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.92);
	max-width: 48ch;
	margin-bottom: 32px;
}

.cz-hero__actions {
	display: flex;
	gap: 14px;
	flex-wrap: wrap;
}

/* ── Section 02 — Signature dishes strip ───────────────────────────────── */
.cz-signature {
	padding: 72px 0;
	background: var(--bg-primary);
}

.cz-signature__row {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 16px;
}

/* Single CTA below the tiles (they all lead to the Menu) */
.cz-signature__cta {
	margin-top: 32px;
	text-align: center;
}

.cz-dish-card {
	background: var(--surface);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	overflow: hidden;
	transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
	display: flex;
	flex-direction: column;
}

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

.cz-dish-card__media {
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
}

.cz-dish-card__name {
	font-family: var(--font-display);
	font-size: 17px;
	font-weight: 600;
	color: var(--ink);
	padding: 14px 16px 4px;
}

.cz-dish-card__desc {
	font-size: 13px;
	color: var(--ink-mid);
	line-height: 1.6;
	padding: 0 16px 12px;
	flex: 1;
}

.cz-dish-card .cz-link {
	padding: 0 16px 16px;
}

/* ── Section 03 — Owner story teaser ───────────────────────────────────── */
.cz-story {
	padding: 80px 0;
	background: var(--surface-warm);
}

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

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

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

.cz-story__body .cz-link {
	display: inline-block;
	margin-top: 6px;
}

/* ── Section 04 — Coffee & pastry bar ──────────────────────────────────── */
.cz-pastry {
	padding: 80px 0;
	background: var(--bg-primary);
}

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

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

.cz-pastry__body p {
	font-size: 15.5px;
	line-height: 1.85;
	margin-bottom: 18px;
}

/* ── Section 05 — Reviews & community ──────────────────────────────────── */
.cz-reviews {
	padding: 80px 0;
	background: #fff;
	color: var(--ink-mid);
}

.cz-reviews .cz-eyebrow {
	color: var(--terracotta-deep);
}

.cz-reviews__intro {
	text-align: center;
	font-family: var(--font-display);
	font-style: italic;
	font-size: 19px;
	color: var(--ink-soft);
	max-width: 50ch;
	margin: 0 auto 36px;
}

/* Google reviews widget (Trustindex shortcode) */
.cz-reviews__widget {
	margin-top: 8px;
}

/* ── Section 06 — Cakes & catering block ───────────────────────────────── */
.cz-cc {
	padding: 80px 0;
	background: var(--bg-primary);
}

/* Single-paragraph "More than a meal" block. */
.cz-cc__inner {
	text-align: center;
}

.cz-cc__text {
	max-width: 68ch;
	margin: 8px auto 0;
	font-size: 17px;
	line-height: 1.85;
	color: var(--ink-mid);
}

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

.cz-cc__text a:hover {
	color: var(--terracotta);
}

.cz-cc__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 24px;
	margin-top: 8px;
}

.cz-cc-card {
	background: var(--surface);
	border: 1px solid var(--line);
	border-radius: var(--radius-lg);
	overflow: hidden;
	display: flex;
	flex-direction: column;
}

.cz-cc-card__media {
	width: 100%;
	aspect-ratio: 16 / 9;
	object-fit: cover;
}

.cz-cc-card__body {
	padding: 28px;
}

.cz-cc-card__body p:not(.cz-eyebrow) {
	font-size: 15px;
	line-height: 1.75;
	margin-bottom: 20px;
}

/* ── Section 07 — Visit / map / hours ──────────────────────────────────── */
.cz-visit {
	padding: 80px 0;
	background: var(--surface-warm);
}

.cz-visit__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 56px;
	align-items: start;
}

.cz-visit__intro {
	font-size: 15.5px;
	line-height: 1.8;
	margin-bottom: 24px;
}

.cz-hours {
	width: 100%;
	border-collapse: collapse;
	background: var(--surface);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	overflow: hidden;
	margin-bottom: 24px;
}

.cz-hours th,
.cz-hours td {
	padding: 12px 18px;
	border-bottom: 1px solid var(--line);
	font-size: 14px;
	text-align: left;
}

.cz-hours th {
	font-family: var(--font-mono);
	font-size: 12px;
	letter-spacing: 0.5px;
	color: var(--terracotta-deep);
	font-weight: 700;
	width: 45%;
}

.cz-hours td {
	color: var(--ink-mid);
}

.cz-hours tr:last-child th,
.cz-hours tr:last-child td {
	border-bottom: none;
}

.cz-visit__details li {
	font-size: 14.5px;
	line-height: 1.7;
	color: var(--ink-mid);
	padding: 6px 0;
}

.cz-visit__details strong {
	color: var(--ink);
}

.cz-visit__map {
	border-radius: var(--radius-lg);
	overflow: hidden;
	border: 1px solid var(--line);
	min-height: 420px;
	height: 100%;
}

.cz-visit__map iframe {
	width: 100%;
	height: 100%;
	min-height: 420px;
	border: 0;
	display: block;
}

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

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

.cz-final-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: 12px;
}

.cz-final-cta__subhead {
	font-size: 17px;
	color: rgba(255, 255, 255, 0.92);
	margin-bottom: 30px;
}

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

.cz-final-cta__phone {
	font-family: var(--font-mono);
	font-size: 16px;
	font-weight: 700;
	margin-bottom: 4px;
}

.cz-final-cta__phone a {
	color: var(--pure-white);
}

.cz-final-cta__phone a:hover {
	color: var(--gold-light);
}

/* ── Responsive ────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
	.cz-signature__row {
		grid-template-columns: repeat(3, 1fr);
	}
}

@media (max-width: 860px) {
	.cz-story__grid,
	.cz-pastry__grid,
	.cz-cc__grid,
	.cz-visit__grid {
		grid-template-columns: 1fr;
		gap: 36px;
	}

	/* Keep the image above the copy on stacked story/pastry sections */
	.cz-pastry__media {
		order: -1;
	}

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

@media (max-width: 600px) {
	.cz-signature__row {
		grid-template-columns: repeat(2, 1fr);
	}

	.cz-signature,
	.cz-story,
	.cz-pastry,
	.cz-reviews,
	.cz-cc,
	.cz-visit,
	.cz-final-cta {
		padding-top: 56px;
		padding-bottom: 56px;
	}
}
