.tour-page {
	max-width: none;
}

.tour-lead {
	margin: 0 0 var(--space-md);
	font-size: 1.15rem;
	line-height: 1.65;
	color: var(--color-text);
}

.tour-lead--muted {
	margin: 0 0 var(--space-lg);
	font-size: 1.05rem;
	line-height: 1.65;
	color: var(--color-text-muted);
}

.tour-callout {
	margin-bottom: var(--space-xl);
	padding: var(--space-md) var(--space-lg);
	border-radius: var(--radius-md);
	border: 1px solid var(--color-border);
	border-left: 4px solid var(--color-brand-gold);
	background: var(--color-surface-muted);
}

.tour-callout p {
	margin: 0;
	line-height: 1.65;
	color: var(--color-text-muted);
}

.tour-nav {
	display: flex;
	flex-wrap: wrap;
	gap: var(--space-xs);
	margin-bottom: var(--space-2xl);
}

.tour-nav__link {
	display: inline-block;
	padding: var(--space-xs) var(--space-md);
	border: 1px solid var(--color-border);
	border-radius: 999px;
	background: var(--color-surface-muted);
	color: var(--color-link);
	font-size: 0.875rem;
	font-weight: 600;
	text-decoration: none;
	transition: border-color 0.15s ease, background 0.15s ease;
}

.tour-nav__link:hover {
	border-color: var(--color-brand-gold);
	background: rgba(201, 166, 107, 0.1);
	color: var(--color-link-hover);
}

.tour-stop {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
	gap: var(--space-xl);
	align-items: start;
	margin-bottom: var(--space-2xl);
	padding-bottom: var(--space-xl);
	border-bottom: 1px solid var(--color-border);
	scroll-margin-top: var(--space-lg);
}

.tour-stop:last-of-type {
	margin-bottom: 0;
}

.tour-stop--reverse {
	grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
}

.tour-stop--reverse .tour-stop__content {
	order: 2;
}

.tour-stop--reverse .tour-stop__gallery {
	order: 1;
}

.tour-stop__title {
	margin: 0 0 var(--space-sm);
	font-size: 1.1rem;
	font-weight: 700;
	color: var(--color-brand-gold-light);
}

.tour-stop__content p {
	margin: 0 0 var(--space-md);
	line-height: 1.65;
	color: var(--color-text-muted);
}

.tour-stop__content p:last-child {
	margin-bottom: 0;
}

.tour-stop__content ul {
	margin: var(--space-sm) 0 0;
	padding-left: 1.25rem;
	color: var(--color-text-muted);
}

.tour-stop__content li {
	margin-bottom: var(--space-xs);
	line-height: 1.6;
}

.tour-stop__gallery .media-gallery__hint {
	margin-bottom: var(--space-sm);
}

.tour-amenities {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: var(--space-md);
	margin: 0;
	padding: 0;
	list-style: none;
}

.tour-amenity {
	padding: var(--space-md) var(--space-lg);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-md);
	background: var(--color-surface-muted);
	font-size: 0.95rem;
	line-height: 1.6;
	color: var(--color-text-muted);
}

.tour-section {
	margin-bottom: var(--space-2xl);
	padding-bottom: var(--space-xl);
	border-bottom: 1px solid var(--color-border);
	scroll-margin-top: var(--space-lg);
}

.tour-section:last-child {
	margin-bottom: 0;
	padding-bottom: 0;
	border-bottom: none;
}

.tour-section__title {
	margin: 0 0 var(--space-md);
	font-size: 1.1rem;
	font-weight: 700;
	color: var(--color-brand-gold-light);
}

.tour-closing {
	margin: var(--space-xl) 0 0;
	font-size: 1.05rem;
	line-height: 1.65;
	text-align: center;
	color: var(--color-text-muted);
}

.tour-cta {
	display: flex;
	flex-wrap: wrap;
	gap: var(--space-sm);
	margin-top: var(--space-lg);
}

.tour-cta .button {
	margin: 0;
}

@media (max-width: 768px) {
	.tour-stop,
	.tour-stop--reverse {
		grid-template-columns: 1fr;
	}

	.tour-stop--reverse .tour-stop__content,
	.tour-stop--reverse .tour-stop__gallery {
		order: unset;
	}

	.tour-amenities {
		grid-template-columns: 1fr;
	}
}
