:root {
	--tour-ink: #17243d;
	--tour-muted: #5d6d86;
	--tour-blue: #2c76cf;
	--tour-blue-soft: #eaf4ff;
	--tour-line: #d7e4f2;
	--tour-paper: #f8fbff;
	--tour-white: #fff;
	--tour-yellow: #ffd64a;
	--tour-green: #37a86d;
	--tour-red: #e9535d;
	--tour-max: 1180px;
}

* { box-sizing: border-box; }

html {
	scroll-behavior: smooth;
	scroll-padding-top: 94px;
	background: var( --tour-paper );
}

body {
	margin: 0;
	color: var( --tour-ink );
	background: var( --tour-paper );
	font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	font-size: 16px;
	line-height: 1.6;
	overflow-x: hidden;
}

a { color: inherit; }
img, svg { display: block; max-width: 100%; }
button, input { font: inherit; }

.skip-link {
	position: fixed;
	z-index: 1000;
	left: 14px;
	top: 12px;
	padding: 10px 14px;
	background: var( --tour-ink );
	color: #fff;
	transform: translateY( -160% );
}
.skip-link:focus { transform: translateY( 0 ); }

.tour-header {
	position: sticky;
	z-index: 100;
	top: 0;
	display: flex;
	align-items: center;
	gap: 22px;
	min-height: 72px;
	padding: 10px max( 18px, calc( ( 100vw - var( --tour-max ) ) / 2 ) );
	border-bottom: 1px solid rgba( 44, 118, 207, .14 );
	background: rgba( 255, 255, 255, .94 );
	backdrop-filter: blur( 14px );
}

.tour-brand {
	display: inline-flex;
	align-items: center;
	gap: 11px;
	font-weight: 850;
	text-decoration: none;
	white-space: nowrap;
}
.tour-brand img { width: 42px; height: 42px; }
.tour-brand small { display: block; color: var( --tour-muted ); font-size: .68rem; font-weight: 700; }

.tour-nav {
	display: flex;
	align-items: center;
	gap: 4px;
	margin-left: auto;
}
.tour-nav a {
	padding: 9px 11px;
	color: #445775;
	font-size: .86rem;
	font-weight: 720;
	text-decoration: none;
}
.tour-nav a:hover,
.tour-nav a:focus-visible,
.tour-nav a[aria-current="page"] { color: var( --tour-blue ); background: var( --tour-blue-soft ); }

.tour-menu-toggle {
	display: none;
	width: 44px;
	height: 44px;
	margin-left: auto;
	border: 1px solid var( --tour-line );
	background: #fff;
	color: var( --tour-ink );
	font-size: 1.4rem;
	cursor: pointer;
}

.tour-status {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 9px;
	min-height: 38px;
	padding: 7px 18px;
	background: #fff8d9;
	color: #6a5614;
	font-size: .82rem;
	font-weight: 780;
	text-align: center;
}
.tour-status::before { content: ""; width: 9px; height: 9px; border-radius: 50%; background: var( --tour-yellow ); box-shadow: 0 0 0 4px rgba( 255, 214, 74, .28 ); }

.tour-hero {
	position: relative;
	isolation: isolate;
	min-height: min( 760px, calc( 100vh - 110px ) );
	display: grid;
	align-items: center;
	overflow: hidden;
	background: #fff;
}
.tour-hero-inner {
	position: relative;
	z-index: 2;
	width: min( calc( 100% - 36px ), var( --tour-max ) );
	margin: 0 auto;
	padding: 72px 0 92px;
	display: grid;
	grid-template-columns: minmax( 0, .93fr ) minmax( 450px, 1.07fr );
	align-items: center;
	gap: 56px;
}
.tour-eyebrow {
	margin: 0 0 16px;
	color: var( --tour-blue );
	font-size: .78rem;
	font-weight: 900;
	letter-spacing: .12em;
	text-transform: uppercase;
}
.tour-hero h1,
.tour-page-hero h1,
.tour-section-heading h2 {
	margin: 0;
	font-family: Georgia, "Times New Roman", serif;
	font-weight: 650;
	letter-spacing: 0;
	line-height: 1.04;
}
.tour-hero h1 { font-size: 6.5rem; }
.tour-hero h1 span { color: var( --tour-blue ); }
.tour-lead {
	max-width: 620px;
	margin: 26px 0 0;
	color: var( --tour-muted );
	font-size: 1.2rem;
	line-height: 1.75;
}

.tour-actions { display: flex; flex-wrap: wrap; gap: 11px; margin-top: 32px; }
.tour-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 9px;
	min-height: 50px;
	padding: 12px 18px;
	border: 1px solid transparent;
	background: #fff;
	font-weight: 800;
	text-decoration: none;
	cursor: pointer;
	transition: transform .18s ease, box-shadow .18s ease;
}
.tour-button:hover { transform: translateY( -2px ); }
.tour-button--primary { background: var( --tour-blue ); color: #fff; box-shadow: 0 12px 28px rgba( 44, 118, 207, .24 ); }
.tour-button--secondary { border-color: var( --tour-line ); color: var( --tour-ink ); }
.tour-button[aria-disabled="true"] { color: #6d7787; background: #edf1f5; box-shadow: none; cursor: not-allowed; }

.tour-route-scene {
	position: relative;
	min-height: 480px;
	display: grid;
	place-items: center;
}
.tour-route-scene > svg { width: min( 100%, 600px ); }
.tour-route-label {
	position: absolute;
	padding: 8px 12px;
	border: 1px solid var( --tour-line );
	background: #fff;
	font-size: .75rem;
	font-weight: 850;
	box-shadow: 0 10px 22px rgba( 35, 80, 130, .1 );
}
.tour-route-label--one { left: 7%; bottom: 20%; }
.tour-route-label--two { left: 40%; top: 12%; }
.tour-route-label--three { right: 2%; bottom: 28%; }

.tour-band { padding: 84px 0; }
.tour-band--white { background: #fff; }
.tour-band--blue { background: #edf6ff; }
.tour-band--ink { background: var( --tour-ink ); color: #fff; }
.tour-container { width: min( calc( 100% - 36px ), var( --tour-max ) ); margin: 0 auto; }
.tour-section-heading { max-width: 760px; margin-bottom: 38px; }
.tour-section-heading h2 { font-size: 4rem; }
.tour-section-heading p:last-child { color: var( --tour-muted ); font-size: 1.06rem; }
.tour-band--ink .tour-section-heading p:last-child { color: #bfcce0; }

.tour-steps {
	display: grid;
	grid-template-columns: repeat( 4, minmax( 0, 1fr ) );
	border-top: 1px solid var( --tour-line );
	border-bottom: 1px solid var( --tour-line );
}
.tour-step { min-height: 190px; padding: 28px 24px; border-right: 1px solid var( --tour-line ); }
.tour-step:last-child { border-right: 0; }
.tour-step strong { display: block; color: var( --tour-blue ); font-size: 2rem; }
.tour-step h3 { margin: 16px 0 8px; font-size: 1.14rem; }
.tour-step p { margin: 0; color: var( --tour-muted ); }

.jersey-grid { display: grid; grid-template-columns: repeat( 5, minmax( 0, 1fr ) ); gap: 14px; }
.jersey-card {
	min-width: 0;
	padding: 20px 15px;
	border: 1px solid var( --tour-line );
	border-radius: 8px;
	background: #fff;
	text-align: center;
}
.jersey-card h3 { margin: 13px 0 3px; font-size: 1rem; }
.jersey-card p { margin: 0; color: var( --tour-muted ); font-size: .8rem; }
.jersey-icon { width: 92px; margin: 0 auto; }
.jersey-icon path { fill: var( --jersey-color ); stroke: rgba( 23, 36, 61, .34 ); stroke-width: 2; }
.jersey-icon circle { fill: rgba( 255, 255, 255, .9 ); }
.jersey-icon text { fill: #17243d; font: 900 14px Inter, sans-serif; text-anchor: middle; }

.tour-timeline { display: grid; grid-template-columns: repeat( 6, minmax( 0, 1fr ) ); border-top: 3px solid var( --tour-blue ); }
.tour-timeline article { position: relative; padding: 27px 18px 0; }
.tour-timeline article::before { content: ""; position: absolute; width: 15px; height: 15px; left: 18px; top: -9px; border-radius: 50%; background: #fff; border: 4px solid var( --tour-blue ); }
.tour-timeline time { display: block; color: var( --tour-blue ); font-size: .72rem; font-weight: 900; text-transform: uppercase; }
.tour-timeline h3 { margin: 8px 0 6px; font-size: 1rem; }
.tour-timeline p { margin: 0; color: var( --tour-muted ); font-size: .84rem; }

.ranking-preview { display: grid; grid-template-columns: repeat( 3, minmax( 0, 1fr ) ); align-items: end; gap: 12px; max-width: 720px; margin: 36px auto 0; }
.ranking-place { min-height: 150px; padding: 22px 16px; display: grid; place-items: center; border: 1px dashed #7292b8; background: rgba( 255, 255, 255, .06 ); text-align: center; }
.ranking-place--one { min-height: 205px; }
.ranking-place strong { font-size: 2rem; color: var( --tour-yellow ); }
.ranking-place span { color: #c2d0e3; font-size: .82rem; }
.ranking-note { max-width: 720px; margin: 26px auto 0; color: #c2d0e3; text-align: center; }

.tour-page-hero { padding: 78px 0 64px; background: #fff; border-bottom: 1px solid var( --tour-line ); }
.tour-page-hero-inner { width: min( calc( 100% - 36px ), var( --tour-max ) ); margin: 0 auto; display: grid; grid-template-columns: minmax( 0, 1fr ) 220px; gap: 34px; align-items: center; }
.tour-page-hero h1 { font-size: 5rem; overflow-wrap: anywhere; }
.tour-page-hero img { width: 180px; justify-self: end; }

.content-grid { display: grid; grid-template-columns: minmax( 0, 1.6fr ) minmax( 260px, .7fr ); gap: 34px; align-items: start; }
.content-main h2 { margin: 38px 0 12px; font-family: Georgia, "Times New Roman", serif; font-size: 2rem; letter-spacing: 0; }
.content-main h2:first-child { margin-top: 0; }
.content-main h3 { margin: 24px 0 8px; }
.content-main p, .content-main li { color: #4f617b; }
.content-main ul, .content-main ol { padding-left: 1.35rem; }
.content-aside { border-left: 3px solid var( --tour-blue ); padding: 4px 0 4px 22px; }
.content-aside h2 { margin: 0 0 10px; font-size: 1rem; }
.content-aside p { color: var( --tour-muted ); font-size: .9rem; }

.tour-callout { margin: 28px 0; padding: 22px; border-left: 5px solid var( --tour-yellow ); background: #fff9dc; }
.tour-callout strong { display: block; margin-bottom: 5px; }
.tour-callout p { margin: 0; color: #62551f; }
.tour-callout--blue { border-color: var( --tour-blue ); background: #edf6ff; }
.tour-callout--blue p { color: #405979; }

.status-list { display: grid; gap: 10px; margin: 28px 0; }
.status-row { display: grid; grid-template-columns: 150px minmax( 0, 1fr ); gap: 16px; padding: 14px 0; border-bottom: 1px solid var( --tour-line ); }
.status-row strong { color: var( --tour-blue ); }
.status-row span { color: var( --tour-muted ); }

.patron-calculator { margin: 30px 0; display: grid; grid-template-columns: repeat( 3, minmax( 0, 1fr ) ) minmax( 180px, .8fr ); border: 1px solid var( --tour-line ); background: #fff; }
.patron-calculator label, .patron-result { padding: 18px; border-right: 1px solid var( --tour-line ); }
.patron-result { border-right: 0; background: var( --tour-blue-soft ); }
.patron-calculator span { display: block; margin-bottom: 7px; color: var( --tour-muted ); font-size: .78rem; font-weight: 750; }
.patron-calculator input { width: 100%; min-height: 44px; padding: 9px 10px; border: 1px solid #b8c9dc; background: #fff; }
.patron-result output { display: block; font-size: 1.8rem; font-weight: 900; color: var( --tour-blue ); }

.faq-list details { padding: 18px 0; border-bottom: 1px solid var( --tour-line ); }
.faq-list summary { font-weight: 820; cursor: pointer; }
.faq-list p { max-width: 780px; color: var( --tour-muted ); }

.tour-footer { padding: 52px 0; border-top: 1px solid var( --tour-line ); background: #fff; }
.tour-footer-inner { width: min( calc( 100% - 36px ), var( --tour-max ) ); margin: 0 auto; display: flex; align-items: flex-start; justify-content: space-between; gap: 26px; }
.tour-footer strong { display: block; }
.tour-footer p { margin: 5px 0 0; color: var( --tour-muted ); font-size: .83rem; }
.tour-footer nav { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 14px; }
.tour-footer a { color: #456486; font-size: .82rem; font-weight: 720; }

@media ( max-width: 980px ) {
	.tour-nav { display: none; position: absolute; left: 16px; right: 16px; top: 66px; padding: 12px; flex-direction: column; align-items: stretch; border: 1px solid var( --tour-line ); background: #fff; box-shadow: 0 18px 38px rgba( 23, 36, 61, .15 ); }
	.tour-nav.is-open { display: flex; }
	.tour-menu-toggle { display: inline-grid; place-items: center; }
	.tour-hero-inner { grid-template-columns: 1fr; padding-top: 62px; }
	.tour-hero h1 { font-size: 5rem; }
	.tour-section-heading h2 { font-size: 3.35rem; }
	.tour-page-hero h1 { font-size: 4rem; }
	.tour-route-scene { min-height: 390px; }
	.tour-steps { grid-template-columns: repeat( 2, minmax( 0, 1fr ) ); }
	.tour-step:nth-child( 2 ) { border-right: 0; }
	.tour-step:nth-child( -n+2 ) { border-bottom: 1px solid var( --tour-line ); }
	.jersey-grid { grid-template-columns: repeat( 3, minmax( 0, 1fr ) ); }
	.tour-timeline { grid-template-columns: repeat( 3, minmax( 0, 1fr ) ); gap: 28px 0; }
	.tour-page-hero-inner { grid-template-columns: 1fr; }
	.tour-page-hero img { justify-self: start; width: 130px; }
	.content-grid { grid-template-columns: 1fr; }
	.patron-calculator { grid-template-columns: repeat( 2, minmax( 0, 1fr ) ); }
	.patron-calculator label:nth-child( 2 ) { border-right: 0; }
	.patron-calculator label:nth-child( -n+2 ) { border-bottom: 1px solid var( --tour-line ); }
}

@media ( max-width: 620px ) {
	.tour-header { min-height: 64px; padding-inline: 14px; }
	.tour-brand span { font-size: .86rem; }
	.tour-status { align-items: flex-start; font-size: .74rem; }
	.tour-hero { min-height: auto; }
	.tour-hero-inner { width: min( calc( 100% - 28px ), var( --tour-max ) ); padding: 52px 0 64px; gap: 24px; }
	.tour-hero h1 { max-width: 100%; font-size: 3rem; overflow-wrap: anywhere; }
	.tour-lead { font-size: 1rem; }
	.tour-actions { display: grid; grid-template-columns: 1fr; }
	.tour-button { width: 100%; }
	.tour-route-scene { min-height: 300px; }
	.tour-route-label { font-size: .66rem; }
	.tour-route-label--one { left: 1%; }
	.tour-band { padding: 62px 0; }
	.tour-container { width: min( calc( 100% - 28px ), var( --tour-max ) ); }
	.tour-steps { grid-template-columns: 1fr; }
	.tour-step { min-height: 0; border-right: 0; border-bottom: 1px solid var( --tour-line ); }
	.tour-step:last-child { border-bottom: 0; }
	.jersey-grid { grid-template-columns: repeat( 2, minmax( 0, 1fr ) ); gap: 9px; }
	.jersey-card { padding-inline: 8px; }
	.tour-timeline { grid-template-columns: 1fr; margin-left: 8px; }
	.ranking-preview { grid-template-columns: 1fr; align-items: stretch; }
	.ranking-place, .ranking-place--one { min-height: 110px; }
	.ranking-place--one { order: -1; }
	.tour-page-hero { padding: 54px 0 42px; }
	.tour-page-hero-inner { width: min( calc( 100% - 28px ), var( --tour-max ) ); }
	.tour-section-heading h2 { font-size: 2.5rem; }
	.tour-page-hero h1 { font-size: 2.75rem; }
	.status-row { grid-template-columns: 1fr; gap: 3px; }
	.patron-calculator { grid-template-columns: 1fr; }
	.patron-calculator label, .patron-result { border-right: 0; border-bottom: 1px solid var( --tour-line ); }
	.patron-result { border-bottom: 0; }
	.tour-footer-inner { flex-direction: column; }
	.tour-footer nav { justify-content: flex-start; }
}

@media ( prefers-reduced-motion: reduce ) {
	*, *::before, *::after { scroll-behavior: auto !important; transition: none !important; }
}

@media print {
	.tour-header, .tour-status, .tour-actions, .tour-footer { display: none !important; }
	body { background: #fff; color: #000; }
	.tour-band, .tour-page-hero { padding: 20px 0; }
	.jersey-card, .tour-callout, .patron-calculator { break-inside: avoid; box-shadow: none; }
}
