:root {
	--color-theme-1: #0a0f1c;
	--color-theme-2: #112173;
	--color-theme-3: #4258a2;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: 'Inter', sans-serif;
	background: #f8fafc;
	color: #0f172a;
	line-height: 1.65;
}

img {
	max-width: 100%;
	display: block;
}

a {
	text-decoration: none;
}

.container {
	width: 100%;
	max-width: 1180px;
	margin: 0 auto;
	padding: 0 20px;
}

.narrow {
	max-width: 900px;
	margin: 0 auto;
}

.center-text {
	text-align: center;
}

/* ── HEADER ────────────────────────────────────────── */
.site-header {
	background: rgba(255, 255, 255, 0.92);
	backdrop-filter: blur(10px);
	border-bottom: 1px solid #e5e7eb;
	position: sticky;
	top: 0;
	z-index: 100;
}

.nav-wrap {
	min-height: 90px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
}

.brand {
	display: flex;
	align-items: center;
	flex-shrink: 0;
}

.brand img {
	height: 60px;
	margin: 15px 0;
	width: auto;
	display: block;
	object-fit: contain;
}

.main-nav {
	display: flex;
	align-items: center;
	gap: 24px;
	flex: 1;
	justify-content: center;
}

.main-nav a {
	color: #475569;
	font-weight: 600;
	font-size: 15px;
	position: relative;
	padding: 6px 0;
	white-space: nowrap;
}

.main-nav a.active,
.main-nav a:hover {
	color: #2563eb;
}

.main-nav a.active::after {
	content: '';
	position: absolute;
	bottom: -2px;
	left: 0;
	right: 0;
	height: 2px;
	background: #2563eb;
	border-radius: 2px;
}

.header-cta {
	padding: 10px 20px;
	border-radius: 999px;
	background: #2563eb;
	color: #fff;
	font-weight: 700;
	font-size: 14px;
	white-space: nowrap;
	flex-shrink: 0;
	transition: background 0.2s ease, transform 0.15s ease;
}

.header-cta:hover {
	background: #1d4ed8;
	transform: translateY(-1px);
}

/* ── BADGES ────────────────────────────────────────── */

.section-badge.soft {
	background: #eff6ff;
	color: #2563eb;
}

/* ── HERO ───────────────────────────────────────────── */
.hero-section {
	padding: 72px 0 30px;
	background:
		radial-gradient(circle at top left, rgba(191, 219, 254, 0.65), transparent 30%),
		radial-gradient(circle at top right, rgba(254, 240, 138, 0.30), transparent 22%),
		#f8fafc;
}

.hero-grid {
	display: grid;
	grid-template-columns: 1.1fr 0.9fr;
	gap: 42px;
	align-items: center;
}

.hero-copy h1 {
	font-size: 56px;
	line-height: 1.05;
	letter-spacing: -0.03em;
	margin-bottom: 18px;
}

.hero-subtext {
	font-size: 21px;
	color: #334155;
	margin-bottom: 16px;
	max-width: 720px;
}

.hero-description {
	color: #64748b;
	font-size: 17px;
	max-width: 700px;
	margin-bottom: 28px;
}

.hero-actions {
	display: flex;
	flex-wrap: nowrap;
	gap: 12px;
	align-items: center;
}

.hero-actions .btn {
	flex-shrink: 0;
}

.hero-visual {
	position: relative;
}

.hero-image-card {
	background: #ffffff;
	border: 1px solid #e5e7eb;
	border-radius: 28px;
	padding: 16px;
	box-shadow: 0 20px 60px rgba(15, 23, 42, 0.08);
	position: relative;
	overflow: visible;
}

.hero-image-card img.headshot {
	width: 100%;
	height: 700px;
	object-fit: cover;
	object-position: center top;
	border-radius: 20px;
	display: block;
}

/* Signature overlay */
.hero-signature {
	position: absolute;
	bottom: 28px;
	right: 20px;
	width: 200px;
	opacity: 0;
	transform: translateY(10px);
	animation: signatureReveal 1s cubic-bezier(0.16, 1, 0.3, 1) 1.2s forwards;
	pointer-events: none;
	filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.18));
	z-index: 2;
}

@keyframes signatureReveal {
	0% {
		opacity: 0;
		transform: translateY(10px) scale(0.92);
	}

	100% {
		opacity: 1;
		transform: translateY(0) scale(1);
	}
}

/* ── SECTIONS ───────────────────────────────────────── */

.gradient-flow {
	background: linear-gradient(45deg,
			var(--color-theme-1) 0%,
			var(--color-theme-1) 25%,
			var(--color-theme-2) 40%,
			var(--color-theme-3) 50%,
			var(--color-theme-2) 60%,
			var(--color-theme-1) 70%,
			var(--color-theme-1) 100%);
	background-size: 1000% 1000%;
	animation: moveGradient 10s ease infinite;
}

@keyframes moveGradient {
	0% {
		background-position: 0% 50%;
	}

	100% {
		background-position: 100% 50%;
	}
}

.gradient-pulse {
	background: repeating-linear-gradient(45deg,
			var(--color-theme-1),
			var(--color-theme-1) 10%,
			var(--color-theme-2) 20%,
			var(--color-theme-3) 30%,
			var(--color-theme-2) 40%,
			var(--color-theme-1) 50%);
	background-size: 200% 200%;
	animation: shiftStripes 15s linear infinite;
}

@keyframes shiftStripes {
	from {
		background-position: 0 0;
	}

	to {
		background-position: 100% 100%;
	}
}

.story-box h2,
.story-box .story-lines p {
	color: #fff;
}

.story-body {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.story-box .story-lines p strong {
	color: #fff;
	font-weight: 700;
}

.story-box p {
	color: #ffffffb6;
}

.story-box p strong {
	color: #fff;
	font-weight: 700;
}

.story-section,
.benefits-section,
.bonus-section,
.quote-section,
.signup-section,
.tour-list-section,
.tour-cta-section {
	padding: 30px 0;
}

.bonus-box,
.signup-box,
.tour-cta-box {
	background: #ffffff;
	border: 1px solid #e5e7eb;
	border-radius: 28px;
	padding: 34px;
	box-shadow: 0 14px 40px rgba(15, 23, 42, 0.05);
}

.story-box h2,
.bonus-box h2,
.signup-head h2,
.tour-cta-box h2 {
	font-size: 38px;
	line-height: 1.15;
	margin-bottom: 16px;
}

.signup-head p,
.tour-cta-box p {
	color: #475569;
	font-size: 17px;
}

.story-lines {
	margin-top: 24px;
	display: grid;
	gap: 10px;
}

.story-lines p {
	color: #334155;
}

.section-heading {
	text-align: center;
	margin-bottom: 36px;
}

.section-heading h2 {
	font-size: 40px;
	color: #fff;
}

.benefits-section h2 {
	font-size: 40px;
	color: #000000;
}

/* ── BENEFITS ───────────────────────────────────────── */
.benefits-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 24px;
}

.benefit-card {
	background: #ffffff;
	border: 1px solid #e5e7eb;
	border-radius: 24px;
	padding: 28px;
	box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
}

.benefit-card h3 {
	font-size: 22px;
	margin-bottom: 10px;
}

.benefit-card p {
	color: #64748b;
}

/* ── BONUS ──────────────────────────────────────────── */
.bonus-title {
	font-size: 20px;
	font-weight: 700;
	color: #1d4ed8;
}

/* ── QUOTE ──────────────────────────────────────────── */
.quote-text {
	font-size: 20px;
	line-height: 1.85;
	color: #1e293b;
	margin-bottom: 18px;
	text-indent: 3rem;
}

.quote-author {
	color: #2563eb;
	font-weight: 700;
}

/* ── FORM ───────────────────────────────────────────── */
.signup-head {
	margin-bottom: 24px;
}

.signup-form {
	display: grid;
	gap: 18px;
}

.form-group label {
	display: block;
	font-size: 14px;
	font-weight: 700;
	color: #334155;
	margin-bottom: 8px;
}

.form-control {
	width: 100%;
	height: 56px;
	border: 1px solid #cbd5e1;
	border-radius: 16px;
	padding: 0 16px;
	font-size: 15px;
	color: #0f172a;
	background: #fff;
	outline: none;
	transition: 0.2s ease;
}

.form-control:focus {
	border-color: #60a5fa;
	box-shadow: 0 0 0 4px rgba(96, 165, 250, 0.15);
}

.hidden-field {
	display: none;
}

.alert {
	border-radius: 14px;
	padding: 14px 16px;
	margin-bottom: 18px;
	font-size: 14px;
	font-weight: 600;
}

.alert-success {
	background: #ecfdf5;
	border: 1px solid #bbf7d0;
	color: #166534;
}

.alert-error {
	background: #fef2f2;
	border: 1px solid #fecaca;
	color: #991b1b;
}

/* ── BUTTONS ────────────────────────────────────────── */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 54px;
	padding: 0 22px;
	border-radius: 16px;
	font-weight: 700;
	border: none;
	cursor: pointer;
	transition: 0.2s ease;
}

.btn-primary {
	background: #2563eb;
	color: #fff;
	box-shadow: 0 14px 26px rgba(37, 99, 235, 0.18);
}

.btn-primary:hover {
	background: #1d4ed8;
	transform: translateY(-1px);
}

.btn-secondary {
	background: #ffffff;
	color: #0f172a;
	border: 1px solid #d1d5db;
}

.btn-secondary:hover {
	background: #f8fafc;
}

.btn-full {
	width: 100%;
}

/* ── TOUR PAGE ──────────────────────────────────────── */
.tour-hero-section {
	padding: 72px 0 30px;
	background:
		radial-gradient(circle at top left, rgba(186, 230, 253, 0.45), transparent 28%),
		#f8fafc;
}

.tour-title {
	font-size: 52px;
	line-height: 1.08;
	margin-bottom: 16px;
}

.tour-subtext {
	font-size: 19px;
	color: #64748b;
}

.tour-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 28px;
}

.tour-card {
	overflow: hidden;
	background: #ffffff;
	border: 1px solid #e5e7eb;
	border-radius: 26px;
	box-shadow: 0 14px 40px rgba(15, 23, 42, 0.05);
}

.tour-banner img {
	width: 100%;
	height: 220px;
	object-fit: cover;
}

.tour-card-body {
	padding: 24px;
	position: relative;
}

.tour-location-thumb {
	width: 72px;
	height: 72px;
	border-radius: 50%;
	overflow: hidden;
	border: 4px solid #ffffff;
	margin-top: -58px;
	margin-bottom: 16px;
	box-shadow: 0 8px 20px rgba(15, 23, 42, 0.10);
}

.tour-location-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.tour-date {
	display: inline-block;
	font-size: 13px;
	font-weight: 800;
	color: #2563eb;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	margin-bottom: 10px;
}

.tour-card h3 {
	font-size: 28px;
	line-height: 1.15;
	margin-bottom: 12px;
}

.tour-copy {
	color: #64748b;
	margin-bottom: 20px;
}

/* ── FOOTER ─────────────────────────────────────────── */
.site-footer {
	padding: 28px 0 40px;
	border-top: 1px solid #e5e7eb;
	background: #ffffff;
}

.footer-inner {
	text-align: center;
	color: #64748b;
	font-size: 14px;
}

/* ══════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════ */

@media (max-width: 991px) {

	.hero-grid,
	.tour-grid,
	.benefits-grid {
		grid-template-columns: 1fr;
	}

	.hero-copy h1,
	.tour-title {
		font-size: 42px;
	}

	.story-box h2,
	.bonus-box h2,
	.signup-head h2,
	.tour-cta-box h2,
	.section-heading h2 {
		font-size: 32px;
	}
}

/* Hide hamburger and drawer on desktop */
.nav-toggle {
	display: none;
}

.mobile-drawer {
	display: none;
}

.mobile-drawer.is-open {
	display: block;
}

/* ── MOBILE HEADER ──────────────────────────────────── */
@media (max-width: 767px) {

	.quote-text {
		text-indent: 3rem;
	}

	.quote-box::before {
		left: 20px;
	}


	.nav-wrap {
		display: flex;
		flex-direction: row;
		align-items: center;
		justify-content: space-between;
		min-height: unset;
		padding: 0 4px;
		gap: 10px;
	}

	.brand {
		flex: 1;
		padding-left: 4px;
	}

	.header-cta {
		display: inline-flex;
		padding: 9px 14px;
		font-size: 12px;
		border-radius: 999px;
		flex-shrink: 0;
		white-space: nowrap;
	}

	.main-nav {
		display: none;
	}

	.nav-toggle {
		display: flex;
		flex-direction: column;
		justify-content: center;
		gap: 5px;
		width: 40px;
		height: 40px;
		background: none;
		border: 1px solid #e2e8f0;
		border-radius: 10px;
		cursor: pointer;
		padding: 8px 9px;
		flex-shrink: 0;
		transition: background 0.2s ease;
		margin-right: 4px;
	}

	.nav-toggle:hover {
		background: #f1f5f9;
	}

	.nav-toggle span {
		display: block;
		height: 2px;
		background: #0f172a;
		border-radius: 2px;
		transition: transform 0.25s ease, opacity 0.2s ease;
		transform-origin: center;
	}

	.nav-toggle.is-open span:nth-child(1) {
		transform: translateY(7px) rotate(45deg);
	}

	.nav-toggle.is-open span:nth-child(2) {
		opacity: 0;
		transform: scaleX(0);
	}

	.nav-toggle.is-open span:nth-child(3) {
		transform: translateY(-7px) rotate(-45deg);
	}

	.mobile-drawer {
		position: fixed;
		inset: 0;
		z-index: 99;
	}

	.drawer-backdrop {
		position: absolute;
		inset: 0;
		background: rgba(15, 23, 42, 0.45);
		animation: fadeIn 0.2s ease;
	}

	.drawer-panel {
		position: absolute;
		top: 90px;
		right: 0;
		width: 72vw;
		max-width: 280px;
		height: 100%;
		background: #ffffff;
		padding: 24px 20px;
		display: flex;
		flex-direction: column;
		gap: 6px;
		animation: slideIn 0.25s cubic-bezier(0.16, 1, 0.3, 1);
		box-shadow: -12px 0 40px rgba(15, 23, 42, 0.12);
	}

	.drawer-close {
		align-self: flex-end;
		width: 36px;
		height: 36px;
		display: flex;
		align-items: center;
		justify-content: center;
		background: #f1f5f9;
		border: none;
		border-radius: 8px;
		font-size: 18px;
		cursor: pointer;
		color: #475569;
		margin-bottom: 12px;
		transition: background 0.2s;
	}

	.drawer-close:hover {
		background: #e2e8f0;
	}

	.drawer-nav a {
		display: block;
		padding: 14px 16px;
		border-radius: 12px;
		font-size: 15px;
		font-weight: 600;
		color: #334155;
		transition: background 0.2s ease, color 0.2s ease;
		border-bottom: 1px solid #f1f5f9;
	}

	.drawer-nav a:last-child {
		border-bottom: none;
	}

	.drawer-nav a:hover,
	.drawer-nav a.active {
		background: #eff6ff;
		color: #2563eb;
	}

	@keyframes fadeIn {
		from {
			opacity: 0;
		}

		to {
			opacity: 1;
		}
	}

	@keyframes slideIn {
		from {
			transform: translateX(100%);
		}

		to {
			transform: translateX(0);
		}
	}

	/* ── OTHER MOBILE TWEAKS ────────────────────────── */
	.hero-section,
	.tour-hero-section {
		padding-top: 30px;
	}

	.hero-copy h1,
	.tour-title {
		font-size: 34px;
	}

	.hero-subtext,
	.tour-subtext {
		font-size: 17px;
	}

	.hero-actions .btn {
		min-height: 46px;
		padding: 0 16px;
		font-size: 14px;
	}

	.story-box,
	.bonus-box,
	.quote-box,
	.signup-box,
	.tour-cta-box,
	.benefit-card,
	.tour-card-body {
		padding: 22px;
	}

	.hero-image-card img.headshot {
		height: 420px;
		object-position: center top;
	}

	.hero-signature {
		width: 150px;
		bottom: 20px;
		right: 14px;
	}

	.tour-banner img {
		height: 180px;
	}

	.quote-text {
		font-size: 17px;
		line-height: 1.75;
	}
}

/* BANNER */

.tour-banner-hero {
	position: relative;
	overflow: hidden;
}

.tour-banner-bg {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center 30%;
	display: block;
	filter: brightness(0.55) blur(3px);
}

.hero-content-container {
	position: relative;
	padding: 5em 0 2em 0;
	z-index: 1;
	display: flex;
	justify-content: center;
	align-items: center;
	background: url("../images/locations/lambeau_field.webp");
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

.hero-content-container::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
	/* Adjust 0.5 for more/less darkness */
	backdrop-filter: blur(3px);
	z-index: 0;
}

.hero-content-wrapper {
	position: relative;
	width: 100vw;
	margin: 0 5vw;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-direction: row;
	gap: 2em;
	z-index: 1;
}

.hero-intro {
	flex: 2;
	display: flex;
	flex-direction: row;
	justify-content: space-between;

}

.hero-texts {
	flex: 1;
	color: #fff;
}

.hero-texts>* {
	opacity: 0;
	transform: translateY(20px);
	transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

/* Final State: Visible and in position */
.hero-texts>*.is-visible {
	opacity: 1;
	transform: translateY(0);
}

.banner-info {
	flex: 1;
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.banner-info p {
	text-transform: uppercase;
	font-size: 25px;
	font-weight: bold;
	color: #fff;
	margin: 0;
	line-height: 27px;
}

.banner-info p:nth-of-type(2) {
	margin-bottom: 2em;
}

.banner-info p:last-of-type {
	margin-top: 20px;
}

.banner-info>img:first-of-type {
	width: 150px;
	margin-bottom: 2em;
}

.banner-info .year-container {
	position: relative;
}

.year-container {
	perspective: 1000px;
	display: inline-block;
}

.year-container img {
	transition: transform 0.3s ease-out;
	will-change: transform;
	pointer-events: none;
}

.banner-info .year-container img {
	width: 300px;
	margin: 0;
}

.banner-info .year-container::after {
	content: "";
	height: 3px;
	width: 150px;
	position: absolute;
	top: -1.5em;
	transform: translateX(50%);
	background-color: #e4a41b;
}

.banner-location {
	flex: 1;
}

/* 
.location-img-container {
	position: absolute;
	bottom: 90%;
	right: 3em;
}

.location-img-container img {
	transform: rotate(40deg);
}
 */
.banner-location-wrapper {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: stretch;
	gap: 1em;
}

.banner-location-wrapper .block {
	flex: 1;
	display: flex;
	flex-direction: column;
	flex-wrap: wrap;
	gap: 1em;
}

.banner-location-card {
	flex: 1;
	background: #fff;
	padding: 1em;
	border-radius: 1em;
	transition: .5s ease;
	cursor: pointer;
	box-shadow: none;
}

.banner-location-card:hover {
	transform: scale(1.05);
	transition: .5s ease;
	box-shadow: #00000069 -3px 3px 7px;
}

.hero-logo-container {
	margin: 2em 0;
}

.hero-logo-container img {
	width: 200px;
}

.section-badge {
	display: inline-block;
	padding: 8px 14px;
	border-radius: 999px;
	background: #dbeafe;
	color: #1d4ed8;
	font-size: 12px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	margin-bottom: 18px;
}

.hero-texts .section-badge {
	background: rgba(255, 255, 255, 0.12);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.22);
	color: #fff;
	margin-bottom: 20px;
}

.location-card-wrapper {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: .5em;
}

.card-date {
	flex: 1;
	padding-right: 1em;
}

.card-location {
	flex: 5;
}

.card-date {
	border-right: 1px solid var(--color-theme-1);
}

.card-date p {
	text-align: center;
}

.card-date p,
.card-location p:first-of-type {
	font-size: 18px;
}

.card-date p,
.card-location p {
	color: var(--color-theme-1);
	text-transform: uppercase;
	font-weight: bold;
	margin: 0;
	line-height: normal;
}

.card-location p:last-of-type {
	font-size: 10px;
}

.tour-banner-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg,
			rgba(7, 9, 15, 0.15) 0%,
			rgba(7, 9, 15, 0.45) 50%,
			rgba(7, 9, 15, 0.75) 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
}

.tour-banner-overlay .container {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.tour-banner-title {
	font-size: 72px;
	font-weight: 800;
	color: #ffffff;
	line-height: 1.02;
	letter-spacing: -0.03em;
	margin-bottom: 16px;
	text-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
}

/* Accent word highlight */
.tour-banner-title em {
	font-style: normal;
	color: #ffffff;
}

.tour-banner-sub {
	font-size: 17px;
	color: rgba(255, 255, 255, 0.65);
	margin-bottom: 36px;
	max-width: 480px;
}

/* Tour count pills row */
.tour-banner-stats {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
	margin-bottom: 36px;
}

.tbs-pill {
	background: rgba(255, 255, 255, 0.10);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.18);
	color: #fff;
	font-size: 13px;
	font-weight: 700;
	padding: 8px 18px;
	border-radius: 999px;
	display: flex;
	align-items: center;
	gap: 6px;
}

@media(max-width: 1280px) {
	.hero-texts {
		display: none;
	}

	.hero-intro {
		flex: 1;
	}

	.card-date p,
	.card-location p:first-of-type {
		font-size: 16px
	}
}

@media(max-width: 851px) {

	.hero-content-wrapper {
		flex-direction: column;
	}

	.hero-intro {
		flex-direction: column;
	}

	.hero-texts {
		margin-bottom: 2em;
	}

	.tour-banner-title {
		font-size: 72px;
	}

}


/* ── LOCATIONS SECTION ──────────────────────────────── */
.tour-locations-section {
	padding: 64px 0 78px;
}

.tour-locations-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 3px;
}

/* ── LOCATION CARD ──────────────────────────────────── */
.tour-location-card {
	position: relative;
	cursor: pointer;
	overflow: hidden;
	aspect-ratio: 3 / 4;
}

/* Every 5th card spans 2 columns for variety */
.tour-location-card:nth-child(5n + 1) {
	grid-column: span 2;
	aspect-ratio: 6 / 4;
}

.tlc-image-wrap {
	position: relative;
	width: 100%;
	height: 100%;
	overflow: hidden;
}

.tlc-image-wrap img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	/* Start B&W */
	filter: grayscale(100%) brightness(0.75);
	transition: filter 0.5s ease, transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Hover: full color + zoom */
.tour-location-card:hover .tlc-image-wrap img {
	filter: grayscale(0%) brightness(1);
	transform: scale(1.07);
}

/* Overlay gradient (always present, intensifies on hover) */
.tlc-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(0deg,
			rgba(5, 10, 28, 0.85) 0%,
			rgba(5, 10, 28, 0.20) 55%,
			transparent 100%);
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	padding: 20px;
	transition: background 0.4s ease;
}

.tour-location-card:hover .tlc-overlay {
	background: linear-gradient(0deg,
			rgba(5, 10, 28, 0.92) 0%,
			rgba(5, 10, 28, 0.35) 60%,
			transparent 100%);
}

.tlc-date {
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: #60a5fa;
	margin-bottom: 4px;
	display: block;
}

.tlc-city {
	font-size: 22px;
	font-weight: 800;
	color: #ffffff;
	line-height: 1.1;
	margin-bottom: 2px;
}

.tour-location-card:nth-child(5n + 1) .tlc-city {
	font-size: 28px;
}

.tlc-state {
	font-size: 12px;
	color: rgba(255, 255, 255, 0.60);
	font-weight: 500;
	margin-bottom: 10px;
}

.tlc-cta-hint {
	font-size: 12px;
	font-weight: 700;
	color: rgba(255, 255, 255, 0);
	letter-spacing: 0.04em;
	transition: color 0.3s ease, transform 0.3s ease;
	display: block;
	transform: translateY(6px);
}

.tour-location-card:hover .tlc-cta-hint {
	color: rgba(255, 255, 255, 0.85);
	transform: translateY(0);
}

/* ── TOUR MODAL (same as before) ────────────────────── */
.tour-modal-overlay {
	position: fixed;
	inset: 0;
	background: rgba(5, 10, 25, 0.80);
	backdrop-filter: blur(5px);
	z-index: 9990;
	display: none;
	align-items: center;
	justify-content: center;
	padding: 20px;
	overflow-y: auto;
}

.tour-modal-overlay.is-open {
	display: flex;
}

.tour-modal {
	position: relative;
	background: #ffffff;
	border-radius: 24px;
	width: 100%;
	max-width: 680px;
	overflow: hidden;
	box-shadow: 0 40px 100px rgba(5, 10, 25, 0.40);
	transform: translateY(32px) scale(0.97);
	opacity: 0;
	transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.35s ease;
	margin: auto;
}

.tour-modal-overlay.is-open .tour-modal {
	transform: translateY(0) scale(1);
	opacity: 1;
}

.tour-modal-close {
	position: absolute;
	top: 14px;
	right: 14px;
	z-index: 10;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.9);
	border: none;
	font-size: 15px;
	color: #334155;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
	transition: background 0.2s, transform 0.2s;
}

.tour-modal-close:hover {
	background: #f1f5f9;
	transform: scale(1.1);
}

.tour-modal-banner {
	position: relative;
	height: 220px;
	overflow: hidden;
}

.tour-modal-banner img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.tour-modal-banner-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(160deg, rgba(5, 10, 25, 0.72) 0%, rgba(5, 10, 25, 0.30) 60%, transparent 100%);
	display: flex;
	align-items: flex-end;
	padding: 24px 28px;
}

.tour-modal-tag {
	display: block;
	width: fit-content;
	background: rgba(255, 255, 255, 0.18);
	backdrop-filter: blur(8px);
	border: 1px solid rgba(255, 255, 255, 0.3);
	color: #fff;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	padding: 5px 12px;
	border-radius: 999px;
	margin-bottom: 10px;
}

.tour-modal-city {
	font-size: 32px;
	font-weight: 800;
	color: #fff;
	line-height: 1.1;
	letter-spacing: -0.02em;
	margin-bottom: 6px;
}

.tour-modal-date-display {
	font-size: 14px;
	color: rgba(255, 255, 255, 0.80);
	font-weight: 600;
}

.tour-modal-body {
	padding: 28px;
}

.tour-modal-location-row {
	display: flex;
	align-items: center;
	gap: 16px;
	margin-bottom: 20px;
}

.tour-modal-thumb {
	width: 64px;
	height: 64px;
	border-radius: 50%;
	object-fit: cover;
	border: 3px solid #e5e7eb;
	flex-shrink: 0;
}

.tour-modal-venue {
	font-size: 14px;
	font-weight: 700;
	color: #0f172a;
	margin-bottom: 8px;
}

.tour-modal-badges {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.tour-modal-badge {
	font-size: 12px;
	font-weight: 600;
	color: #1d4ed8;
	background: #eff6ff;
	padding: 4px 12px;
	border-radius: 999px;
}

.tour-modal-desc {
	font-size: 15px;
	color: #475569;
	line-height: 1.72;
	margin-bottom: 24px;
	padding-bottom: 24px;
	border-bottom: 1px solid #f1f5f9;
}

.tour-modal-features {
	display: flex;
	flex-direction: column;
	gap: 14px;
	margin-bottom: 28px;
}

.tour-modal-feature {
	display: flex;
	align-items: flex-start;
	gap: 14px;
}

.tmf-icon {
	font-size: 22px;
	flex-shrink: 0;
	margin-top: 1px;
}

.tour-modal-feature strong {
	display: block;
	font-size: 14px;
	font-weight: 700;
	color: #0f172a;
	margin-bottom: 2px;
}

.tour-modal-feature p {
	font-size: 13px;
	color: #64748b;
	margin: 0;
}

.tour-modal-cta {
	font-size: 15px;
	box-shadow: 0 10px 28px rgba(37, 99, 235, 0.25);
	margin-bottom: 10px;
}

.tour-modal-note {
	text-align: center;
	font-size: 12px;
	color: #94a3b8;
}

/* ── RESPONSIVE ─────────────────────────────────────── */
@media (max-width: 991px) {
	.tour-locations-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.tour-location-card:nth-child(5n + 1) {
		grid-column: span 2;
		aspect-ratio: 6 / 4;
	}
}

@media (max-width: 640px) {

	.tour-banner-sub {
		font-size: 15px;
	}

	.tour-banner-stats {
		gap: 8px;
	}

	.tbs-pill {
		font-size: 12px;
		padding: 6px 14px;
	}

	.tour-locations-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 2px;
	}

	.tour-location-card:nth-child(5n + 1) {
		grid-column: span 2;
	}

	.tour-modal-banner {
		height: 180px;
	}

	.tour-modal-city {
		font-size: 24px;
	}

	.tour-modal-body {
		padding: 20px;
	}

	/* 
	.banner-location-wrapper {
		flex-direction: column;
	}
 */
}