:root {
	--ink: #1c1915;
	--muted: #5c564c;
	--paper: #f7f3eb;
	--paper-deep: #ebe4d6;
	--accent: #8b3a1a;
	--accent-soft: #c46a3d;
	--line: #d4cbb8;
	--ok: #1f6b45;
	--warn: #9a6b12;
	--font-display: "Fraunces", Georgia, serif;
	--font-body: "Source Sans 3", "Segoe UI", sans-serif;
	--max: 840px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
	margin: 0;
	font-family: var(--font-body);
	color: var(--ink);
	background:
		radial-gradient(1200px 500px at 10% -10%, #fff8ee 0%, transparent 55%),
		radial-gradient(900px 400px at 100% 0%, #e8dfd0 0%, transparent 50%),
		var(--paper);
	line-height: 1.5;
}
a { color: var(--accent); }
a:hover { color: var(--accent-soft); }

.site-header {
	position: sticky;
	top: 0;
	z-index: 20;
	backdrop-filter: blur(10px);
	background: rgb(247 243 235 / 92%);
	border-bottom: 1px solid var(--line);
}
.site-header__inner {
	width: min(100% - 2rem, 1100px);
	margin: 0 auto;
	display: flex;
	align-items: center;
	gap: 1rem;
	padding: 0.85rem 0;
	flex-wrap: wrap;
}
.site-logo {
	font-family: var(--font-display);
	font-weight: 650;
	font-size: 1.25rem;
	color: var(--ink);
	text-decoration: none;
	letter-spacing: -0.02em;
}
.site-nav {
	display: flex;
	flex-wrap: wrap;
	gap: 0.85rem 1.1rem;
	margin-left: auto;
}
.site-nav a {
	color: var(--muted);
	text-decoration: none;
	font-size: 0.95rem;
}
.site-nav a:hover { color: var(--ink); }

.lang-switcher {
	position: relative;
	font-size: 0.9rem;
}
.lang-switcher summary {
	cursor: pointer;
	list-style: none;
	color: var(--muted);
}
.lang-switcher ul {
	position: absolute;
	right: 0;
	margin: 0.4rem 0 0;
	padding: 0.5rem 0.75rem;
	list-style: none;
	background: #fff;
	border: 1px solid var(--line);
	border-radius: 8px;
	min-width: 9rem;
	box-shadow: 0 8px 24px rgb(28 25 21 / 8%);
}
.lang-switcher__soon {
	color: #a39a8c;
	font-size: 0.9rem;
}

.site-footer {
	margin-top: 4rem;
	padding: 2rem 0 2.5rem;
	border-top: 1px solid var(--line);
	background: linear-gradient(180deg, transparent, var(--paper-deep));
}
.site-footer__inner {
	width: min(100% - 2rem, var(--max));
	margin: 0 auto;
}
.site-footer__disclaimer {
	color: var(--muted);
	font-size: 0.92rem;
}
.site-footer__nav {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	margin-top: 1rem;
}
.site-footer__nav a { text-decoration: none; }

.hero, .editorial, .ticket-type-selector, .price-calendar, .visit-selection, .visit-comparison-method, .times-page {
	width: min(100% - 2rem, var(--max));
	margin-left: auto;
	margin-right: auto;
}
.hero { padding: 2.25rem 0 0.5rem; }
.hero h1 {
	font-family: var(--font-display);
	font-weight: 650;
	font-size: clamp(1.85rem, 4vw, 2.6rem);
	line-height: 1.15;
	letter-spacing: -0.03em;
	margin: 0.4rem 0 0.75rem;
}
.hero__disclaimer, .visit-last-checked {
	color: var(--muted);
	font-size: 0.92rem;
	margin: 0;
}
.hero__subtitle {
	font-size: 1.1rem;
	max-width: 38rem;
	margin: 0 0 0.75rem;
}

.editorial { padding: 2rem 0 3rem; }
.editorial h1 {
	font-family: var(--font-display);
	font-size: clamp(1.7rem, 3.5vw, 2.3rem);
}
.editorial h2 {
	font-family: var(--font-display);
	font-size: clamp(1.3rem, 2.5vw, 1.65rem);
	line-height: 1.25;
	margin: 0 0 0.7rem;
}
.editorial__intro {
	max-width: 46rem;
	font-size: 1.12rem;
	color: var(--muted);
	margin: 0 0 1.5rem;
}
.route-facts {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 0.75rem;
	padding: 0;
	margin: 1.5rem 0 2.25rem;
	list-style: none;
}
.route-facts li {
	padding: 1rem;
	border: 1px solid var(--line);
	border-radius: 12px;
	background: rgb(255 255 255 / 45%);
}
.route-facts strong,
.route-facts span {
	display: block;
}
.route-facts strong {
	font-family: var(--font-display);
	font-size: 1.05rem;
}
.route-facts span {
	margin-top: 0.2rem;
	color: var(--muted);
	font-size: 0.9rem;
}
.route-section {
	margin-top: 2.25rem;
}
.route-section > p {
	max-width: 46rem;
}
.route-stop-list {
	display: grid;
	gap: 0.75rem;
	padding-left: 2.1rem;
}
.route-stop-list li {
	padding: 0.9rem 1rem;
	border: 1px solid var(--line);
	border-radius: 10px;
	background: rgb(255 255 255 / 40%);
}
.route-stop-list li::marker {
	color: var(--accent);
	font-weight: 600;
}
.route-stop-list p {
	margin: 0.35rem 0 0;
	color: var(--muted);
}
.route-stop-list__must {
	border-left: 4px solid var(--accent) !important;
}
.route-stop-list__must div::after {
	content: "Must see";
	display: inline-block;
	margin-left: 0.5rem;
	padding: 0.1rem 0.45rem;
	border-radius: 999px;
	background: #efe0d6;
	color: var(--accent);
	font-size: 0.75rem;
	font-weight: 600;
	vertical-align: 0.1rem;
}
.route-stop__place {
	color: var(--muted);
	font-size: 0.88rem;
	white-space: nowrap;
}
.route-artwork-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0.75rem;
	padding: 0;
	list-style: none;
}
.route-artwork-grid li {
	padding: 0.9rem 1rem;
	border-left: 4px solid var(--accent);
	border-radius: 8px;
	background: rgb(255 255 255 / 45%);
}
.route-artwork-grid strong,
.route-artwork-grid span {
	display: block;
}
.route-artwork-grid span {
	margin-top: 0.2rem;
	color: var(--muted);
	font-size: 0.88rem;
}
.route-note {
	margin-top: 2rem;
	padding: 1rem 1.1rem;
	border-left: 4px solid var(--warn);
	border-radius: 8px;
	background: #f2ead8;
}
.route-tips {
	padding-left: 1.25rem;
}
.route-tips li + li {
	margin-top: 0.55rem;
}
.route-fine-print {
	margin-top: 1.5rem;
	color: var(--muted);
	font-size: 0.92rem;
}
.route-builder-cta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1.5rem;
	margin-top: 2.5rem;
	padding: 1.25rem;
	border: 1px solid var(--line);
	border-radius: 14px;
	background: var(--paper-deep);
}
.route-builder-cta h2 {
	margin: 0;
}
.route-builder-cta p {
	max-width: 34rem;
	margin: 0.35rem 0 0;
	color: var(--muted);
}
.route-builder-cta .btn {
	flex: 0 0 auto;
}
.btn, .visit-selection__action, .times-checkout__continue {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.4rem;
	padding: 0.85rem 1.25rem;
	border: 0;
	border-radius: 10px;
	background: var(--accent);
	color: #fff;
	font: inherit;
	font-weight: 600;
	text-decoration: none;
	cursor: pointer;
}
.btn:hover, .visit-selection__action:hover, .times-checkout__continue:hover {
	background: var(--accent-soft);
	color: #fff;
}
@media (max-width: 720px) {
	.site-nav { margin-left: 0; width: 100%; }
	.route-facts,
	.route-artwork-grid {
		grid-template-columns: 1fr;
	}
	.route-builder-cta {
		align-items: stretch;
		flex-direction: column;
	}
	.route-builder-cta .btn {
		width: 100%;
	}
	.route-stop__place {
		display: block;
		white-space: normal;
	}
}
