/**
 * Content pages (motherland plugin).
 *
 * Shared frame for the Phase 5 routes (/venue/, /gallery/,
 * /restaurant/, /faq/): page head, stat bands, detail grids, photo
 * bands and CTA bands — section heads and CTAs come from
 * components.css. Consumes the theme's design tokens. Mobile-first;
 * desktop at 1024px.
 */

/* ---- Page frame ------------------------------------------------------ */

.ml-page-head {
	padding: 32px var(--gutter) 8px;
}

.ml-page-head__intro {
	margin: 0;
	max-width: 560px;
	font-size: 14px;
	line-height: 1.55;
	color: var(--text-muted);
}

.ml-content-section {
	padding: var(--section-rhythm) var(--gutter);
}

.ml-content-section--elevated {
	background: var(--bg-elevated);
	border-top: 1px solid var(--hairline);
	border-bottom: 1px solid var(--hairline);
}

/* ---- Stats band ------------------------------------------------------ */

/* Fake dividers: 1px gaps over a gold-tinted backdrop (DESIGN.md). */
.ml-content-stats {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1px;
	background: var(--border-gold);
	border: 1px solid var(--border-gold);
}

.ml-content-stats__cell {
	display: flex;
	flex-direction: column;
	gap: 6px;
	padding: 22px 18px;
	background: var(--bg-base);
}

.ml-content-stats__value {
	font-family: var(--font-display);
	font-size: var(--fs-stat);
	line-height: var(--lh-display);
	color: var(--gold-light);
}

.ml-content-stats__label {
	font-size: var(--fs-micro);
	font-weight: 600;
	letter-spacing: var(--track-eyebrow);
	text-transform: uppercase;
	color: var(--text-faint);
}

/* ---- Detail grid ----------------------------------------------------- */

.ml-content-details {
	display: grid;
	gap: 28px;
}

.ml-content-details__item {
	padding-top: 18px;
	border-top: 1px solid var(--hairline);
}

.ml-content-details__title {
	margin: 0 0 8px;
	font-family: var(--font-display);
	font-weight: 400;
	font-size: var(--fs-card-title-sm);
	line-height: 1.1;
	color: var(--text-heading);
}

.ml-content-details__body {
	margin: 0;
	max-width: 480px;
	font-size: var(--fs-body-sm);
	line-height: 1.6;
	color: var(--text-muted);
}

/* ---- Photo band ------------------------------------------------------ */

.ml-content-photos {
	display: grid;
	gap: 14px;
}

.ml-content-photos__tile {
	margin: 0;
	overflow: hidden;
	border-radius: var(--radius-tile);
	background: var(--bg-image-fallback);
}

.ml-content-photos__tile img {
	display: block;
	width: 100%;
	height: 100%;
	max-width: 100%;
	aspect-ratio: 16 / 10;
	object-fit: cover;
	filter: var(--img-filter);
}

/* ---- Menu ------------------------------------------------------------ */

.ml-menu__note {
	margin: 0;
	font-size: var(--fs-body-sm);
	line-height: 1.6;
	color: var(--text-faint);
}

.ml-menu__sections {
	display: grid;
	gap: 40px;
	margin-top: 28px;
}

.ml-menu__title {
	margin: 0 0 4px;
	font-family: var(--font-display);
	font-weight: 400;
	font-size: var(--fs-card-title-sm);
	line-height: 1.1;
	color: var(--text-heading);
}

.ml-menu__section-note {
	margin: 0 0 16px;
	font-size: var(--fs-micro);
	font-weight: 600;
	letter-spacing: var(--track-eyebrow);
	text-transform: uppercase;
	color: var(--text-faint);
}

.ml-menu__items {
	margin: 0;
	padding: 0;
	list-style: none;
}

.ml-menu__item {
	display: flex;
	flex-direction: column;
	gap: 3px;
	padding: 12px 0;
	border-top: 1px solid var(--hairline);
}

.ml-menu__row {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 14px;
}

.ml-menu__name {
	font-size: var(--fs-body);
	color: var(--text);
}

.ml-menu__price {
	font-size: var(--fs-body-sm);
	font-weight: 600;
	letter-spacing: var(--track-button);
	color: var(--gold-light);
	white-space: nowrap;
}

.ml-menu__desc {
	max-width: 420px;
	font-size: var(--fs-body-sm);
	line-height: 1.5;
	color: var(--text-muted);
}

.ml-menu__nav {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 22px;
}

.ml-menu__nav-link {
	padding: 7px 14px;
	border: 1px solid var(--hairline);
	border-radius: var(--radius-pill);
	font-size: var(--fs-micro);
	font-weight: 600;
	letter-spacing: var(--track-eyebrow);
	text-transform: uppercase;
	text-decoration: none;
	color: var(--text-muted);
	transition: color 0.15s ease, border-color 0.15s ease;
}

.ml-menu__nav-link:hover,
.ml-menu__nav-link:focus-visible {
	color: var(--gold-light);
	border-color: var(--gold-light);
}

/* Anchor targets must clear the sticky site header. */
.ml-menu__section {
	scroll-margin-top: 96px;
}

/* Sections without a note: keep a breath between title and first rule. */
.ml-menu__title + .ml-menu__items {
	margin-top: 12px;
}

.ml-menu__variants {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	gap: 4px 16px;
}

.ml-menu__variant {
	display: flex;
	align-items: baseline;
	gap: 6px;
	white-space: nowrap;
}

.ml-menu__variant-label {
	font-size: var(--fs-micro);
	font-weight: 600;
	letter-spacing: var(--track-eyebrow);
	text-transform: uppercase;
	color: var(--text-faint);
}

.ml-menu__footnote {
	margin: 28px 0 0;
	font-size: var(--fs-body-sm);
	line-height: 1.6;
	color: var(--text-faint);
}

/* ---- Gallery mosaic -------------------------------------------------- */

/* Mobile: 2-col; feature/wide/panorama span both columns.
   Desktop: 4-col; feature 2×2, wide 2-col, panorama full row. */
.ml-mosaic {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px;
}

.ml-mosaic__tile {
	margin: 0;
	overflow: hidden;
	border-radius: var(--radius-tile);
	background: var(--bg-image-fallback);
}

.ml-mosaic__tile img {
	display: block;
	width: 100%;
	height: 100%;
	max-width: 100%;
	aspect-ratio: 1 / 1;
	object-fit: cover;
	filter: var(--img-filter);
	transition: filter 160ms ease;
}

.ml-mosaic__tile:hover img {
	filter: saturate(0.9) brightness(0.9) contrast(1.05);
}

.ml-mosaic__tile--feature,
.ml-mosaic__tile--wide,
.ml-mosaic__tile--panorama {
	grid-column: 1 / -1;
}

.ml-mosaic__tile--feature img,
.ml-mosaic__tile--wide img,
.ml-mosaic__tile--panorama img {
	aspect-ratio: 16 / 10;
}

/* ---- FAQ ------------------------------------------------------------- */

/* One flat run of rows in a boxed, centred column — big uppercase
   questions with an oversized +/- marker, LIV-style. */
.ml-faq__item {
	max-width: 880px;
	margin-inline: auto;
	border-top: 1px solid var(--hairline);
}

.ml-faq__item:last-child {
	border-bottom: 1px solid var(--hairline);
}

.ml-faq__question {
	position: relative;
	padding: 24px 56px 24px 0;
	font-size: 17px;
	font-weight: 600;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--text);
	cursor: pointer;
	list-style: none;
	transition: color 120ms ease;
}

.ml-faq__question::marker {
	content: '';
}

.ml-faq__question::-webkit-details-marker {
	display: none;
}

.ml-faq__question::after {
	content: '+';
	position: absolute;
	right: 2px;
	top: 50%;
	transform: translateY(-50%);
	font-family: var(--font-display);
	font-size: 40px;
	line-height: 1;
	color: var(--gold);
}

.ml-faq__item[open] .ml-faq__question {
	color: var(--gold-light);
}

.ml-faq__item[open] .ml-faq__question::after {
	content: '\2212';
}

.ml-faq__question:hover {
	color: var(--gold-light);
}

.ml-faq__answer {
	margin: 0;
	max-width: 620px;
	padding: 0 0 20px;
	font-size: var(--fs-body);
	line-height: 1.6;
	color: var(--text-muted);
}

.ml-faq__item[open] .ml-faq__answer + .ml-faq__links {
	margin-top: -8px;
}

.ml-faq__links {
	display: flex;
	flex-wrap: wrap;
	gap: 8px 22px;
	margin: 0;
	padding: 0 0 22px;
}

.ml-faq__link {
	font-size: 12px;
	font-weight: 600;
	letter-spacing: var(--track-button);
	text-transform: uppercase;
	color: var(--gold);
}

.ml-faq__link:hover {
	color: var(--gold-light);
}

/* ---- Map band -------------------------------------------------------- */

/* Mobile: venue card as a full-bleed band stacked above the map.
   Desktop: the card floats over the right side of the map (LIV-style). */
.ml-faq-map {
	position: relative;
}

.ml-faq-map__card {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 14px;
	margin-inline: calc(-1 * var(--gutter));
	padding: 40px var(--gutter);
	text-align: center;
	background: var(--bg-elevated);
	border-top: 1px solid var(--hairline);
}

.ml-faq-map__name {
	margin: 0;
	font-size: 17px;
	font-weight: 700;
	letter-spacing: var(--track-eyebrow);
	text-transform: uppercase;
	color: var(--text-heading);
}

.ml-faq-map__address {
	margin: 0;
	font-size: var(--fs-body);
	line-height: 1.6;
	color: var(--text-muted);
}

.ml-faq-map__directions {
	font-size: 12px;
	font-weight: 600;
	letter-spacing: var(--track-button);
	text-transform: uppercase;
	color: var(--gold);
}

.ml-faq-map__directions:hover {
	color: var(--gold-light);
}

/* Full-bleed: cancel the section gutter so the map runs edge to edge. */
.ml-faq-map__frame {
	overflow: hidden;
	margin-inline: calc(-1 * var(--gutter));
	border-bottom: 1px solid var(--hairline);
	background: var(--bg-image-fallback);
}

/* Dark-theme the stock Google embed: inversion flips the base map to
   near-black while the double hue flip keeps landmark colours honest. */
.ml-faq-map__frame iframe {
	display: block;
	width: 100%;
	height: 360px;
	border: 0;
	filter: invert(0.92) hue-rotate(180deg) saturate(0.6) brightness(0.95) contrast(0.95);
}

/* ---- CTA band -------------------------------------------------------- */

.ml-content-cta {
	border-top: 1px solid var(--hairline);
}

.ml-content-cta__actions {
	display: flex;
	flex-direction: column;
	gap: 14px;
}

/* ---- Desktop --------------------------------------------------------- */

@media (min-width: 1024px) {

	.ml-page-head {
		padding: 72px var(--gutter) 16px;
	}

	.ml-page-head__intro {
		font-size: 15px;
		line-height: 1.6;
	}

	.ml-content-section {
		padding: var(--section-rhythm) var(--gutter);
	}

	.ml-content-stats {
		grid-template-columns: repeat(4, 1fr);
	}

	.ml-content-stats__cell {
		padding: 30px 26px;
	}

	.ml-content-details {
		grid-template-columns: 1fr 1fr;
		gap: 44px var(--col-gap);
	}

	.ml-content-photos {
		grid-template-columns: 1fr 1fr;
		gap: 18px;
	}

	.ml-content-photos--trio {
		grid-template-columns: repeat(3, 1fr);
	}

	.ml-content-stats--trio {
		grid-template-columns: repeat(3, 1fr);
	}

	.ml-menu__sections {
		grid-template-columns: 1fr 1fr;
		gap: 48px var(--col-gap);
	}

	.ml-mosaic {
		grid-template-columns: repeat(4, 1fr);
		gap: 14px;
	}

	.ml-mosaic__tile--feature {
		grid-column: span 2;
		grid-row: span 2;
	}

	.ml-mosaic__tile--wide {
		grid-column: span 2;
	}

	.ml-mosaic__tile--panorama {
		grid-column: 1 / -1;
	}

	.ml-mosaic__tile--feature img,
	.ml-mosaic__tile--wide img {
		aspect-ratio: auto;
	}

	.ml-mosaic__tile--panorama img {
		aspect-ratio: 32 / 10;
	}

	.ml-content-cta__actions {
		flex-direction: row;
		gap: 18px;
	}

	.ml-faq__question {
		padding: 30px 80px 30px 0;
		font-size: 21px;
	}

	.ml-faq__question::after {
		font-size: 48px;
	}

	.ml-faq__answer {
		font-size: 15px;
	}

	.ml-faq-map__card {
		position: absolute;
		top: 50%;
		right: calc(var(--gutter) + 24px);
		z-index: 1;
		transform: translateY(-50%);
		align-items: flex-start;
		width: 380px;
		margin-inline: 0;
		padding: 44px 40px;
		text-align: left;
		background: rgba(12, 10, 9, 0.96);
		border: 1px solid var(--hairline);
	}

	.ml-faq-map__name {
		font-size: 20px;
	}

	.ml-faq-map__frame {
		border-top: 1px solid var(--hairline);
	}

	.ml-faq-map__frame iframe {
		height: 560px;
	}
}
