/* ===========================================================================
   Tour / "How Gig Heaven works" timeline
   Self-contained styles for /tour/. Brand orange = #C06014 (@brand-tertiary).
   Loaded after bootstrap.min.css so it can layer on top.
   =========================================================================== */

.tour {
	--tour-orange: #c06014;
	--tour-orange-dark: #9c4d10;
	--tour-ink: #20242e;
	--tour-muted: #6b7280;
	--tour-line: #ecdccb;
	max-width: 1040px;
	margin: 0 auto;
	padding: 44px 0 56px;
}

/* ---- Intro --------------------------------------------------------------- */
.tour-intro {
	text-align: center;
	max-width: 700px;
	margin: 0 auto 54px;
}
.tour-intro__kicker {
	display: inline-block;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: .15em;
	text-transform: uppercase;
	color: var(--tour-orange);
	margin-bottom: 14px;
}
.tour-intro__title {
	font-size: 38px;
	line-height: 1.18;
	font-weight: 700;
	color: var(--tour-ink);
	margin: 0 0 16px;
}
.tour-intro__sub {
	font-size: 18px;
	line-height: 1.6;
	color: var(--tour-muted);
	margin: 0;
}

/* ---- Timeline spine ------------------------------------------------------ */
.tour-timeline {
	position: relative;
	padding: 6px 0;
}
.tour-timeline::before {
	content: "";
	position: absolute;
	top: 14px;
	bottom: 56px;
	left: 50%;
	width: 4px;
	transform: translateX(-50%);
	background: linear-gradient(to bottom, var(--tour-orange) 0%, var(--tour-line) 100%);
	border-radius: 4px;
}

/* ---- Step ---------------------------------------------------------------- */
.tour-step {
	position: relative;
	display: grid;
	grid-template-columns: 1fr 76px 1fr;
	align-items: center;
	margin-bottom: 60px;
}

.tour-step__media { grid-column: 1; grid-row: 1; padding-right: 56px; }
.tour-step__body  { grid-column: 3; grid-row: 1; padding-left: 56px; text-align: left; }
.tour-step:nth-child(even) .tour-step__media { grid-column: 3; padding-right: 0; padding-left: 56px; }
.tour-step:nth-child(even) .tour-step__body  { grid-column: 1; padding-left: 0; padding-right: 56px; text-align: right; }

/* ---- Node ---------------------------------------------------------------- */
.tour-step__node {
	grid-column: 2;
	grid-row: 1;
	justify-self: center;
	position: relative;
	z-index: 2;
	width: 62px;
	height: 62px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--tour-orange) 0%, var(--tour-orange-dark) 100%);
	color: #fff;
	font-size: 23px;
	font-weight: 700;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 0 0 8px #fff, 0 8px 18px rgba(192, 96, 20, .35);
}

/* ---- Media / image ------------------------------------------------------- */
.tour-step__img {
	display: block;
	width: 100%;
	aspect-ratio: 3 / 2;
	object-fit: cover;
	border-radius: 14px;
	box-shadow: 0 20px 44px -20px rgba(32, 36, 46, .5);
}

/* ---- Body text ----------------------------------------------------------- */
.tour-step__kicker {
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .13em;
	text-transform: uppercase;
	color: var(--tour-orange);
	margin-bottom: 8px;
}
.tour-step__title {
	font-size: 25px;
	font-weight: 700;
	color: var(--tour-ink);
	margin: 0 0 10px;
}
.tour-step__lead {
	font-size: 17px;
	font-weight: 600;
	color: var(--tour-ink);
	margin: 0 0 8px;
}
.tour-step__text {
	font-size: 16px;
	line-height: 1.6;
	color: var(--tour-muted);
	margin: 0;
}

/* ---- Closing node -------------------------------------------------------- */
.tour-end {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}
.tour-end__dot {
	width: 58px;
	height: 58px;
	border-radius: 50%;
	background: #fff;
	border: 4px solid var(--tour-orange);
	color: var(--tour-orange);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 24px;
	box-shadow: 0 0 0 8px #fff, 0 8px 18px rgba(192, 96, 20, .25);
	position: relative;
	z-index: 2;
}
.tour-end__label {
	margin-top: 14px;
	font-size: 16px;
	font-weight: 600;
	color: var(--tour-ink);
}

/* ---- Reveal animation (progressive enhancement; .tour-js set by inline JS) */
.tour-js .tour-step,
.tour-js .tour-end {
	opacity: 0;
	transform: translateY(28px);
	transition: opacity .6s ease, transform .6s ease;
}
.tour-js .tour-step.is-visible,
.tour-js .tour-end.is-visible {
	opacity: 1;
	transform: none;
}
@media (prefers-reduced-motion: reduce) {
	.tour-js .tour-step,
	.tour-js .tour-end {
		opacity: 1 !important;
		transform: none !important;
		transition: none !important;
	}
}

/* ---- Mobile / small screens --------------------------------------------- */
@media (max-width: 767px) {
	.tour { padding: 28px 0 40px; }
	.tour-intro { margin-bottom: 34px; }
	.tour-intro__title { font-size: 28px; }
	.tour-intro__sub { font-size: 16px; }

	.tour-timeline::before { left: 26px; top: 10px; bottom: 50px; }

	.tour-step {
		grid-template-columns: 52px 1fr;
		align-items: start;
		column-gap: 16px;
		margin-bottom: 38px;
	}
	.tour-step__node {
		grid-column: 1;
		grid-row: 1;
		width: 52px;
		height: 52px;
		font-size: 20px;
		box-shadow: 0 0 0 5px #fff, 0 6px 14px rgba(192, 96, 20, .35);
	}
	.tour-step__body,
	.tour-step:nth-child(even) .tour-step__body {
		grid-column: 2;
		grid-row: 1;
		padding: 3px 0 0 0;
		text-align: left;
	}
	.tour-step__media,
	.tour-step:nth-child(even) .tour-step__media {
		grid-column: 2;
		grid-row: 2;
		padding: 14px 0 0 0;
	}
	.tour-step__title { font-size: 22px; }

	.tour-end { flex-direction: row; align-items: center; justify-content: flex-start; gap: 16px; text-align: left; }
	.tour-end__dot { width: 52px; height: 52px; margin-left: 0; }
}

/* ---- "Join Gig Heaven" CTA band (mirrors the homepage FOR SUPPLIERS section) -- */
.black-bg { background-color: #000; }
/* full-bleed: break the CTA out of the panels container to span the viewport */
.lmm-secondary { overflow-x: clip; }
.tour-join-band {
	position: relative;
	left: 50%;
	width: 100vw;
	transform: translateX(-50%);
	padding: 48px 0;
}
@media (min-width: 768px) {
	.for-suppliers-row { display: flex; align-items: stretch; }
	.for-suppliers-row:before,
	.for-suppliers-row:after { content: none; }
	.for-suppliers-row .tour-join-text { display: flex; flex-direction: column; justify-content: center; }
}
