/* Place details — editorial layout (globe beta tokens) */
.place-page {
	--ink: #141414;
	--grey: #767672;
	--paper: #fbfaf7;
	--line: #e6e3da;
	--gold: #c89b2c;
	--black: #0a0a0a;
	background: var(--paper);
	color: var(--ink);
	font-family: 'Inter', system-ui, sans-serif;
	padding-bottom: 0 !important;
}

.place-page #app {
	padding-top: 0 !important;
}

.place-detail {
	overflow-x: hidden;
	padding-bottom: 5rem;
}

.place-detail *,
.place-detail *::before,
.place-detail *::after {
	box-sizing: border-box;
}

/* ── In-page header (replaces _base nav) ── */
.place-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 50;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 1rem 1.25rem;
	transition: background 0.25s ease, box-shadow 0.25s ease;
}

.place-header.is-scrolled {
	background: rgba(10, 10, 10, 0.92);
	backdrop-filter: blur(8px);
	box-shadow: 0 1px 0 rgba(255, 255, 255, 0.06);
}

.place-header__logo img {
	height: 2rem;
}

@media (min-width: 768px) {
	.place-header {
		padding: 1.25rem 3rem;
	}

	.place-header__logo img {
		height: 2.5rem;
	}
}

.place-header__actions {
	display: flex;
	align-items: center;
	gap: 0.75rem;
}

/* ── Buttons ── */
.pd-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	padding: 0.7rem 1.35rem;
	border-radius: 8px;
	font-family: 'IBM Plex Mono', monospace;
	font-size: 10px;
	font-weight: 500;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	text-decoration: none;
	border: none;
	cursor: pointer;
	transition: background 0.15s, color 0.15s, border-color 0.15s;
	white-space: nowrap;
}

.pd-btn--gold {
	background: var(--gold);
	color: #fff;
}

.pd-btn--gold:hover {
	background: #b08824;
}

.pd-btn--outline {
	background: transparent;
	color: #fff;
	border: 1px solid rgba(255, 255, 255, 0.55);
}

.pd-btn--outline:hover {
	border-color: #fff;
	background: rgba(255, 255, 255, 0.08);
}

.pd-btn--outline-dark {
	background: transparent;
	color: var(--ink);
	border: 1px solid var(--line);
}

.pd-btn--outline-dark:hover {
	border-color: var(--gold);
	color: var(--gold);
}

/* ── Hero ── */
.place-hero {
	position: relative;
	min-height: 88vh;
	display: flex;
	align-items: flex-end;
	color: #fff;
}

.place-hero__bg {
	position: absolute;
	inset: 0;
	background: var(--black);
}

.place-hero__bg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.place-hero__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		to top,
		rgba(10, 10, 10, 0.92) 0%,
		rgba(10, 10, 10, 0.55) 45%,
		rgba(10, 10, 10, 0.25) 100%
	);
}

.place-hero__content {
	position: relative;
	z-index: 1;
	width: 100%;
	max-width: 72rem;
	margin: 0 auto;
	padding: 7rem 1.25rem 3.5rem;
}

@media (min-width: 768px) {
	.place-hero__content {
		padding: 8rem 3rem 5rem;
	}
}

.place-hero__label {
	font-family: 'IBM Plex Mono', monospace;
	font-size: 10px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--gold);
	margin-bottom: 1rem;
}

.place-hero__title {
	font-family: 'Instrument Serif', serif;
	font-size: clamp(2.5rem, 6vw, 4.25rem);
	font-weight: 400;
	line-height: 1.05;
	margin: 0 0 1rem;
	max-width: 18ch;
}

.place-hero__teaser {
	font-family: 'Instrument Serif', serif;
	font-size: clamp(1.05rem, 2.5vw, 1.35rem);
	font-style: italic;
	line-height: 1.5;
	color: rgba(255, 255, 255, 0.82);
	max-width: 42rem;
	margin: 0 0 1.75rem;
}

.place-hero__ctas {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
}

.place-hero__breadcrumb {
	position: absolute;
	top: 5rem;
	left: 1.25rem;
	right: 1.25rem;
	z-index: 2;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.35rem 0.5rem;
	font-size: 12px;
	color: rgba(255, 255, 255, 0.55);
}

.place-hero__breadcrumb a {
	color: rgba(255, 255, 255, 0.7);
	text-decoration: none;
}

.place-hero__breadcrumb a:hover {
	color: #fff;
}

@media (min-width: 768px) {
	.place-hero__breadcrumb {
		left: 3rem;
		right: 3rem;
	}
}

/* ── Sections ── */
.pd-section {
	padding: 4rem 1.25rem;
}

@media (min-width: 768px) {
	.pd-section {
		padding: 5.5rem 3rem;
	}
}

.pd-section--paper {
	background: var(--paper);
}

.pd-section--dark {
	background: var(--black);
	color: #fff;
}

.pd-section__inner {
	max-width: 72rem;
	margin: 0 auto;
}

.pd-label {
	font-family: 'IBM Plex Mono', monospace;
	font-size: 10px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--gold);
	margin-bottom: 0.75rem;
}

.pd-section--dark .pd-label {
	color: var(--gold);
}

.pd-heading {
	font-family: 'Instrument Serif', serif;
	font-size: clamp(1.75rem, 4vw, 2.75rem);
	font-weight: 400;
	line-height: 1.15;
	margin: 0 0 1.25rem;
}

.pd-section--dark .pd-heading {
	color: #fff;
}

/* ── Story two-column ── */
.pd-story {
	display: grid;
	gap: 2.5rem;
	align-items: start;
}

@media (min-width: 900px) {
	.pd-story {
		grid-template-columns: 1fr 320px;
		gap: 4rem;
	}
}

.pd-story__body {
	font-size: 15px;
	line-height: 1.75;
	color: var(--ink);
}

.pd-story__body.markdown h3 {
	font-family: 'Instrument Serif', serif;
	font-size: 1.35rem;
	font-weight: 400;
	margin: 2rem 0 0.75rem;
}

.pd-story__body.markdown p {
	margin: 1rem 0;
}

.pd-story__body.markdown a {
	color: var(--gold);
}

.pd-story__body.markdown em {
	font-style: italic;
}

.pd-story__body.markdown strong {
	font-weight: 600;
}

/* Award highlight card */
.pd-award-card {
	background: var(--black);
	color: #fff;
	border-radius: 16px;
	padding: 1.75rem;
	text-align: center;
}

.pd-award-card__year {
	font-family: 'IBM Plex Mono', monospace;
	font-size: 10px;
	color: rgba(255, 255, 255, 0.5);
	letter-spacing: 0.1em;
	padding-bottom: 0.75rem;
	margin-bottom: 0.75rem;
	border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.pd-award-card__guide {
	font-size: 1.1rem;
	font-weight: 600;
	margin-bottom: 1rem;
}

.pd-award-card__icon {
	height: 3rem;
	margin: 0 auto 1rem;
}

.pd-award-card__title {
	font-size: 0.9rem;
	color: rgba(255, 255, 255, 0.8);
	margin-bottom: 1rem;
	line-height: 1.4;
}

.pd-award-card__link {
	font-family: 'IBM Plex Mono', monospace;
	font-size: 10px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--gold);
	background: none;
	border: none;
	cursor: pointer;
	text-decoration: none;
}

.pd-award-card__link:hover {
	text-decoration: underline;
}

/* ── Awards grid ── */
.pd-awards-grid {
	display: grid;
	gap: 1.25rem;
	grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
	margin-top: 2rem;
}

.pd-award-tile {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: 14px;
	padding: 1.5rem 1.25rem;
	text-align: center;
	transition: box-shadow 0.2s;
}

.pd-award-tile:hover {
	box-shadow: 0 8px 24px rgba(20, 20, 20, 0.08);
}

.pd-award-tile__year {
	font-family: 'IBM Plex Mono', monospace;
	font-size: 10px;
	color: var(--grey);
	letter-spacing: 0.08em;
	margin-bottom: 0.5rem;
}

.pd-award-tile__guide {
	font-weight: 600;
	font-size: 1rem;
	margin-bottom: 0.75rem;
}

.pd-award-tile__icon {
	height: 2.75rem;
	margin: 0 auto 0.75rem;
}

.pd-award-tile__title {
	font-size: 0.85rem;
	color: var(--grey);
	line-height: 1.4;
	margin-bottom: 0.75rem;
}

/* ── Gallery (dark) ── */
.pd-gallery {
	display: grid;
	gap: 0.75rem;
	margin-top: 2rem;
}

@media (min-width: 768px) {
	.pd-gallery {
		grid-template-columns: 1.4fr 1fr;
		grid-template-rows: 1fr 1fr;
		gap: 1rem;
		min-height: 420px;
	}

	.pd-gallery__item:first-child {
		grid-row: 1 / -1;
	}

	.pd-gallery__item img {
		height: 100%;
	}
}

.pd-gallery__item {
	border-radius: 14px;
	overflow: hidden;
}

.pd-gallery__item img {
	width: 100%;
	height: 200px;
	object-fit: cover;
	display: block;
	transition: transform 0.3s ease;
}

@media (min-width: 768px) {
	.pd-gallery__item img {
		height: 100%;
		min-height: 180px;
	}
}

.pd-gallery__item:hover img {
	transform: scale(1.03);
}

.pd-gallery-more {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 0.75rem;
	margin-top: 1rem;
}

@media (min-width: 768px) {
	.pd-gallery-more {
		grid-template-columns: repeat(4, 1fr);
		gap: 1rem;
	}
}

.pd-gallery-more img {
	width: 100%;
	aspect-ratio: 4/3;
	object-fit: cover;
	border-radius: 12px;
}

.pd-gallery-more[hidden] {
	display: none;
}

/* ── Details / meta ── */
.pd-meta-grid {
	display: grid;
	gap: 2.5rem;
}

@media (min-width: 900px) {
	.pd-meta-grid {
		grid-template-columns: 1fr 1fr;
		gap: 4rem;
	}
}

.pd-data-table {
	border-top: 1px solid var(--line);
}

.pd-data-row {
	display: grid;
	grid-template-columns: 110px 1fr;
	gap: 0.75rem;
	padding: 0.85rem 0;
	border-bottom: 1px solid var(--line);
	font-size: 14px;
	align-items: baseline;
}

.pd-data-row .k {
	font-family: 'IBM Plex Mono', monospace;
	font-size: 10px;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--grey);
}

.pd-data-row img {
	width: 14px;
	height: 14px;
	margin-left: 4px;
	vertical-align: text-bottom;
}

.pd-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	margin-top: 0.75rem;
}

.pd-tag {
	padding: 0.35rem 0.9rem;
	font-size: 12px;
	border: 1px solid var(--line);
	border-radius: 999px;
	color: var(--ink);
}

/* ── Timeline ── */
.pd-timeline {
	margin-top: 1.5rem;
}

.pd-timeline__item {
	display: flex;
	gap: 1rem;
	padding: 1rem 0;
	border-bottom: 1px solid var(--line);
}

.pd-timeline__year {
	flex-shrink: 0;
	width: 3.5rem;
	font-family: 'IBM Plex Mono', monospace;
	font-size: 11px;
	color: var(--grey);
}

.pd-timeline__body {
	flex: 1;
	font-size: 14px;
}

.pd-timeline__body a {
	color: var(--gold);
	text-decoration: none;
}

.pd-timeline__body a:hover {
	text-decoration: underline;
}

.pd-timeline__desc {
	margin-top: 0.5rem;
	font-size: 13px;
	color: var(--grey);
	font-style: italic;
}

/* ── Location ── */
.pd-location {
	display: grid;
	gap: 2.5rem;
	align-items: start;
}

@media (min-width: 768px) {
	.pd-location {
		grid-template-columns: 1fr 1fr;
		gap: 3rem;
	}
}

.pd-location address {
	font-style: normal;
	font-size: 14px;
	line-height: 1.8;
}

.pd-location address a {
	color: var(--ink);
	text-decoration: none;
}

.pd-location address a:hover {
	color: var(--gold);
}

.pd-social {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	margin-top: 1.5rem;
}

.pd-social a {
	display: flex;
	align-items: center;
	gap: 0.6rem;
	font-size: 13px;
	font-weight: 500;
	text-decoration: none;
}

.pd-social a:hover {
	opacity: 0.8;
}

.pd-social img {
	width: 18px;
	height: 18px;
}

#place-map {
	width: 100%;
	height: 280px;
	border-radius: 14px;
	overflow: hidden;
}

@media (min-width: 768px) {
	#place-map {
		height: 340px;
	}
}

/* ── Sticky CTA ── */
.pd-sticky-cta {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 40;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding: 0.85rem 1.25rem;
	background: var(--black);
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	transform: translateY(100%);
	transition: transform 0.3s ease;
}

.pd-sticky-cta.is-visible {
	transform: translateY(0);
}

.pd-sticky-cta__text {
	color: rgba(255, 255, 255, 0.85);
	font-size: 13px;
}

.pd-sticky-cta__text strong {
	display: block;
	color: #fff;
	font-family: 'Instrument Serif', serif;
	font-size: 1.1rem;
	font-weight: 400;
}

.pd-sticky-cta__actions {
	display: flex;
	gap: 0.5rem;
	flex-shrink: 0;
}

/* ── Dark footer ── */
.place-footer {
	background: var(--black);
	color: rgba(255, 255, 255, 0.55);
	padding: 3rem 1.25rem 2rem;
	font-size: 13px;
	max-width: none !important;
	height: auto !important;
	box-shadow: none !important;
	border-radius: 0 !important;
	margin: 0 !important;
}

.place-footer__inner {
	max-width: 72rem;
	margin: 0 auto;
	display: grid;
	gap: 2rem;
}

@media (min-width: 768px) {
	.place-footer {
		padding: 4rem 3rem 2.5rem;
	}

	.place-footer__inner {
		grid-template-columns: 1.5fr 1fr 1fr;
		gap: 3rem;
	}
}

.place-footer__brand img {
	height: 2rem;
	margin-bottom: 1rem;
}

.place-footer__brand p {
	line-height: 1.6;
	max-width: 28ch;
}

.place-footer__col h3 {
	font-family: 'IBM Plex Mono', monospace;
	font-size: 10px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--gold);
	margin: 0 0 1rem;
}

.place-footer__col ul {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 0.6rem;
}

.place-footer__col a {
	color: rgba(255, 255, 255, 0.65);
	text-decoration: none;
}

.place-footer__col a:hover {
	color: #fff;
}

.place-footer__bottom {
	max-width: 72rem;
	margin: 2.5rem auto 0;
	padding-top: 1.5rem;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	font-size: 12px;
	text-align: center;
}

.place-footer__bottom a {
	color: rgba(255, 255, 255, 0.55);
}
