/* City bottomless brunch (temper City) — page-specific */

.lobster-packages__price {
	margin: 0 0 8px;
	font-family: var(--f-sans);
	font-weight: 700;
	font-size: clamp(28px, 4vw, 40px);
	color: var(--cream);
	letter-spacing: -0.02em;
}

.lobster-packages__price small {
	display: block;
	font-size: 13px;
	font-weight: 400;
	color: var(--cream-mute);
	letter-spacing: 0.04em;
	margin-top: 4px;
}

.lobster-packages__courses {
	list-style: none;
	margin: 0 0 8px;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.lobster-packages__courses li {
	font-size: 14.5px;
	color: var(--cream-mute);
	line-height: 1.5;
	padding-left: 0;
}

.lobster-packages__courses li::before {
	display: none;
}

.lobster-packages__course {
	display: block;
	font-family: var(--f-mono);
	font-size: 10px;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--bronze-hi);
	margin-bottom: 4px;
}

.lobster-packages__fine {
	max-width: 640px;
	margin: 36px auto 0;
	padding: 0 24px;
	text-align: center;
	font-size: 13px;
	color: var(--cream-dim);
	font-style: italic;
}

.lobster-editorial .feature__copy p,
.brunch-soho-editorial .feature__copy p {
	color: var(--cream-mute);
}

.lobster-find__head {
	max-width: 720px;
	margin: 0 auto 40px;
}

.lobster-gallery {
	padding: 72px 20px 88px;
	border-bottom: 1px solid var(--line);
}

.lobster-gallery__grid {
	max-width: var(--maxw);
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1.25fr 1fr 1fr;
	grid-template-rows: minmax(160px, 22vw) minmax(160px, 22vw);
	gap: 12px;
	min-height: clamp(320px, 48vw, 560px);
}

.lobster-gallery__item {
	margin: 0;
	border-radius: var(--r-md);
	overflow: hidden;
	border: 1px solid var(--line);
	background: var(--bg-2);
	min-height: 140px;
}

.lobster-gallery__item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.lobster-gallery__item--span {
	grid-column: 1;
	grid-row: 1 / span 2;
}

/* Four images: tall hero left, two tiles top-right, one wide tile bottom-right (no empty cell) */
.lobster-gallery--four .lobster-gallery__item--wide {
	grid-column: 2 / -1;
	grid-row: 2;
	min-height: clamp(140px, 18vw, 220px);
}

@media (max-width: 900px) {
	.lobster-gallery__grid {
		grid-template-columns: 1fr 1fr;
		grid-template-rows: none;
		min-height: 0;
	}

	.lobster-gallery__item--span {
		grid-column: 1 / -1;
		grid-row: auto;
		min-height: 220px;
	}

	.lobster-gallery--four .lobster-gallery__item--wide {
		grid-column: 1 / -1;
		grid-row: auto;
		min-height: 200px;
	}
}

.lobster-faq .faq__a p {
	max-width: none;
}

.lobster-faq .faq__q[aria-expanded="true"] + .faq__a {
	max-height: 800px;
}

.lobster-brunch-page .faqs.alt-bg {
	background: var(--bg);
}

.sunday-roast-page .faqs.alt-bg {
	background: var(--bg);
}

.taco-tuesday-page .faqs.alt-bg {
	background: var(--bg);
}

/* Soho bottomless: long-form “About” + read more (bottomless-brunch page) */
.bb-about {
	padding: 48px 0 64px;
}
.bb-about__inner {
	max-width: var(--maxw, 1120px);
	margin: 0 auto;
	padding: 0 24px;
}
.bb-about__head {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 16px 24px;
	margin-bottom: 18px;
}
.bb-about__title {
	margin: 0;
	flex: 1 1 auto;
	min-width: min(100%, 240px);
}
.bb-about__toggle {
	flex-shrink: 0;
}
.bb-about__toggle-wrap--mobile {
	display: none;
}
@media (max-width: 760px) {
	.bb-about__toggle--desktop {
		display: none !important;
	}
	.bb-about__toggle-wrap--mobile {
		display: block;
		margin-top: 20px;
	}
	.bb-about__toggle--mobile {
		width: 100%;
		justify-content: center;
	}
}
.bb-about__lead,
.bb-about__more p {
	font-size: clamp(15px, 0.45vw + 14px, 17px);
	line-height: 1.65;
	color: var(--cream-mute, rgba(244, 237, 231, 0.82));
	margin: 0 0 1rem;
	max-width: 72ch;
}
.bb-about__more {
	margin-top: 0;
	padding-top: 0;
}
.bb-about__more > .bb-about__lead:first-child {
	margin-top: 0;
}
.bb-about__more > .bb-about__rich:first-child > :first-child {
	margin-top: 0;
}
.bb-about__more p:last-child {
	margin-bottom: 0;
}
.bb-about__more > .bb-about__rich:last-child > :last-child {
	margin-bottom: 0;
}
/* Subsection titles: explicit class (bottomless) or plain h2/h3 in rich HTML (location read_more_body) */
.bb-about__sub,
.bb-about__more h2,
.bb-about__more h3 {
	font-family: var(--f-sans, system-ui, sans-serif);
	font-size: clamp(18px, 1.2vw + 14px, 22px);
	font-weight: 600;
	color: var(--cream, #f4ede7);
	margin: 2rem 0 0.75rem;
	line-height: 1.25;
}
.bb-about__more h2:first-of-type,
.bb-about__more h3:first-of-type {
	margin-top: 0.5rem;
}
.bb-about__rich {
	width: 100%;
	max-width: none;
}
.bb-about__rich p {
	max-width: none;
}
.bb-about__list,
.bb-about__more ul,
.bb-about__more ol {
	margin: 0 0 1rem;
	padding-left: 1.25rem;
	max-width: 72ch;
	color: var(--cream-mute, rgba(244, 237, 231, 0.82));
	font-size: clamp(15px, 0.45vw + 14px, 17px);
	line-height: 1.55;
}
.bb-about__rich ul,
.bb-about__rich ol {
	max-width: none;
	width: 100%;
	box-sizing: border-box;
}
.bb-about__list li,
.bb-about__more ul li,
.bb-about__more ol li {
	margin-bottom: 0.35rem;
}
.bb-about__more strong {
	color: var(--cream, #f4ede7);
	font-weight: 500;
}
.bb-about__more .link-arrow {
	color: var(--bronze-hi, #c9a06b);
}
