/* =============================================================================
   WHERE PAGE  —  bold dark layout, no dot-grid
   ============================================================================= */

/* ── Landing-page "where" widget (used on other pages) ──────────────────────── */
.where {
	padding: 0 0 2rem;
	background: var(--color-secondary);
}

.where__frame {
	background: var(--color-secondary);
	margin: 0 auto;
	width: 100vw;
	padding: 3.5rem 2rem 4rem;
	text-align: center;
}

.where__eyebrow {
	margin: 0 auto 0.6rem;
	padding: 0.55rem 1rem;
	max-width: 85%;
	background: var(--color-primary);
	color: var(--color-secondary);
	font-family: var(--font-secondary);
	font-weight: 700;
	letter-spacing: 0.22em;
	text-transform: uppercase;
}

.where__title {
	margin: 0;
	font-family: var(--font-secondary);
	font-size: clamp(1.8rem, 5.2vw, 4.8rem);
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	line-height: 1.05;
	color: var(--color-primary);
}

.where__headline {
	margin: 0;
	font-family: var(--font-fremont-osf-bold);
	font-weight: 700;
	line-height: 0.95;
	text-transform: uppercase;
	color: var(--color-primary);
}

.where__date {
	margin: 2rem auto 0;
	padding: 1rem 1.75rem;
	max-width: 46%;
	background: var(--color-primary);
	color: var(--color-secondary);
	font-family: var(--font-secondary);
	font-weight: 700;
	line-height: 1;
	text-transform: uppercase;
}


/* ── Where page — full layout ────────────────────────────────────────────────── */
.where--page {
	background: var(--color-primary);
	padding: clamp(3rem, 6vw, 5rem) 0;
}

.where--page .where__shell {
	display: grid;
	gap: clamp(1.5rem, 3vw, 2.5rem);
}

/* ── Top two-column row ──────────────────────────────────────────────────────── */
.where__top-row {
	display: grid;
	grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
	gap: 0;
	align-items: stretch;
	border: 1px solid rgba(255, 255, 255, 0.12);
	overflow: hidden;
}

/* ── Intro column ────────────────────────────────────────────────────────────── */
.where__intro-col {
	display: flex;
	flex-direction: column;
	gap: 1.4rem;
	padding: clamp(1.8rem, 3.5vw, 3rem) clamp(1.5rem, 3vw, 2.5rem);
	background: var(--color-primary);
	border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.where--page .where__eyebrow {
	margin: 0;
	padding: 0;
	max-width: none;
	background: transparent;
	color: var(--color-accent);
	font-family: var(--font-primary);
	font-size: 0.78rem;
	font-weight: 400;
	letter-spacing: 0.2em;
	text-transform: uppercase;
}

.where--page .where__title {
	margin: 0;
	font-family: var(--font-secondary);
	font-size: clamp(1.4rem, 2.2vw, 2.6rem);
	font-weight: 700;
	letter-spacing: 0.03em;
	text-transform: uppercase;
	line-height: 1.1;
	color: var(--color-secondary);
	word-break: break-word;
}

.where__divider {
	width: 3rem;
	height: 3px;
	background: var(--color-accent);
	flex-shrink: 0;
}

.where__location {
	margin: 0;
	font-family: var(--font-primary);
	font-size: clamp(1rem, 1.8vw, 1.15rem);
	font-weight: 300;
	color: rgba(255, 255, 255, 0.5);
	text-transform: uppercase;
	letter-spacing: 0.14em;
}

.where__copy {
	margin: 0;
	font-size: clamp(0.88rem, 1.3vw, 0.98rem);
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.65);
	max-width: 52ch;
}

/* ── Meta list ───────────────────────────────────────────────────────────────── */
.where__meta {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 0;
	border: 1px solid rgba(255, 255, 255, 0.1);
	margin-top: auto;
}

.where__meta li {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 0.75rem;
	padding: 0.7rem 1rem;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.where__meta li:last-child {
	border-bottom: none;
}

.where__meta-label {
	font-size: 0.68rem;
	text-transform: uppercase;
	letter-spacing: 0.16em;
	color: rgba(255, 255, 255, 0.38);
	font-weight: 400;
	white-space: nowrap;
}

.where__meta-value {
	font-size: 0.9rem;
	font-weight: 600;
	color: var(--color-secondary);
	text-align: right;
}

/* ── CTA row ─────────────────────────────────────────────────────────────────── */
.where__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.65rem;
}

/* ── Map column ──────────────────────────────────────────────────────────────── */
.where__map-col {
	display: grid;
	background: #0d0d0d;
}

.where__map {
	display: block;
	width: 100%;
	height: 100%;
	min-height: 440px;
	border: 0;
	filter: grayscale(18%) contrast(1.06);
}

/* ── Bottom detail cards ─────────────────────────────────────────────────────── */
.where__details {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	border: 1px solid rgba(255, 255, 255, 0.12);
}

.where__detail-card {
	display: grid;
	gap: 0.6rem;
	padding: clamp(1.2rem, 2.5vw, 1.8rem);
	border-right: 1px solid rgba(255, 255, 255, 0.1);
	align-content: start;
}

.where__detail-card:last-child {
	border-right: none;
}

.where__detail-card h2 {
	margin: 0;
	font-family: var(--font-secondary);
	font-size: 0.92rem;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--color-secondary);
}

.where__detail-card p {
	margin: 0;
	font-size: 0.9rem;
	line-height: 1.62;
	color: rgba(255, 255, 255, 0.6);
}

.where__detail-card a {
	justify-self: start;
	color: var(--color-accent);
	font-size: 0.76rem;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	text-decoration: none;
	font-weight: 600;
}

.where__detail-card a:hover,
.where__detail-card a:focus-visible {
	text-decoration: underline;
}


/* ── Responsive ──────────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
	.where__top-row {
		grid-template-columns: 1fr 1fr;
	}
}

@media (max-width: 768px) {
	.where__top-row {
		grid-template-columns: 1fr;
	}

	.where__intro-col {
		border-right: none;
		border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	}

	.where__map {
		min-height: 320px;
	}

	.where__details {
		grid-template-columns: 1fr;
	}

	.where__detail-card {
		border-right: none;
		border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	}

	.where__detail-card:last-child {
		border-bottom: none;
	}

	.where__meta {
		margin-top: 0;
	}

	.where__actions .landing12-btn {
		flex: 1 1 180px;
	}

	.where__date {
		max-width: 90%;
	}

	.where__frame {
		padding: 2rem 1rem 2.5rem;
	}

	.where__eyebrow {
		max-width: 100%;
		letter-spacing: 0.12em;
	}
}
