/* Variables */
/* Scrollbar */
/* Base */
/* Skip Link */
/* Parallax Background */
/* Top Bar */
/* Auto-Play Button */
/* Intro */
/* Loading */
/* Timeline Wrapper */
/* Timeline Line */
/* Timeline Items & Nodes */
/* Content Cards */
/* Year Labels */
/* Buttons */
/* Scroll/Swipe Instructions */
/* Conclusion */
/* Mobile Nav Bar */
/* @media (max-width: 1024px) */
/* @media (max-width: 768px) */
/* @media (max-width: 480px) */
/* @media (prefers-reduced-motion) */

/* ---- Variables ---- */

:root {
	--black: #000000;
	--gold: #cfb991;
	--white: #ffffff;
	--gray: #777777;
	--gray-dark: #8a8a8a;
	--heading-accent: #ffeabe;
	--progress-track: #2d2d2d;
	--card-bg: #090909;
}

/* ---- Scrollbar ---- */

::-webkit-scrollbar {
	width: 6px;
}

::-webkit-scrollbar-track {
	background: var(--black);
}

::-webkit-scrollbar-thumb {
	background: var(--progress-track);
	border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
	background: var(--gray);
}

/* ---- Base ---- */

* {
	box-sizing: border-box;
}

html {
	scrollbar-width: thin;
	scrollbar-color: var(--progress-track) var(--black);
	scroll-behavior: smooth;
	scroll-snap-type: y proximity;
}

body {
	margin: 0;
	font-family: "Inter", sans-serif;
	font-size: 16px;
	background: var(--black);
	color: var(--white);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	position: relative;
}

h1,
h2,
h3 {
	font-family: "United Sans Condensed", sans-serif;
}

h3 {
	margin: 0 0 12px 0;
	font-size: 2rem;
}

p {
	line-height: 1.6;
	opacity: 0.9;
}

/* ---- Skip Link ---- */

.skip-link {
	position: absolute;
	top: -100%;
	left: 50%;
	transform: translateX(-50%);
	background: var(--gold);
	color: var(--black);
	padding: 12px 24px;
	border-radius: 0 0 8px 8px;
	z-index: 10000;
	font-weight: 600;
	text-decoration: none;
	transition: top 0.2s ease;
}

.skip-link:focus {
	top: 0;
}

/* ---- Parallax Background ---- */

.parallax-background {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100dvh;
	min-height: 100vh;
	z-index: -1;
	overflow: hidden;
	pointer-events: none;
}

.parallax-image {
	position: absolute;
	top: -20vh;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 140dvh;
	min-height: 140vh;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	will-change: transform;
	opacity: 0;
}

.parallax-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100dvh;
	min-height: 100vh;
	background: radial-gradient(circle at center, rgba(0, 0, 0, 0) 45%, rgba(0, 0, 0, 0.55) 75%, rgba(0, 0, 0, 0.9) 100%), rgba(0, 0, 0, 0.65);
	backdrop-filter: blur(2px);
	z-index: 1;
	pointer-events: none;
}

.parallax-overlay::before {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.35);
	pointer-events: none;
}

/* ---- Top Bar ---- */

.top-bar {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1rem 24px 2rem;
	z-index: 1000;
	pointer-events: none;
	background: linear-gradient(to bottom, #000 0%, #000 30%, rgba(0, 0, 0, 0) 100%);
}

.top-bar > * {
	pointer-events: auto;
}

.top-bar-logo {
	display: inline-flex;
	align-items: center;
}

.top-bar-logo img {
	height: 40px;
	width: auto;
}

/* ---- Auto-Play Button ---- */

.auto-play-btn {
	cursor: pointer;
	appearance: none;
	position: relative;
	font-style: normal;
	font-weight: 400;
	color: var(--gold);
	text-decoration: none;
	border: 2px solid var(--gold);
	padding: 12px 20px;
	border-radius: 25px;
	transition: all 0.25s ease;
	display: flex;
	align-items: center;
	gap: 4px;
	font-size: 0.95rem;
	white-space: nowrap;
	backdrop-filter: blur(10px);
	background: var(--black);
	min-width: 140px;
	overflow: hidden;
	outline: none;
}

.auto-play-btn:hover {
	transform: translateY(-2px);
}

.auto-play-btn::after {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: var(--auto-play-progress, 0%);
	background: var(--progress-track);
	transition: width 0.1s linear;
	z-index: 0;
	pointer-events: none;
}

.auto-play-icon {
	width: 1.4rem;
	height: 1.4rem;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	z-index: 2;
	position: relative;
}

.auto-play-svg {
	width: 1.4rem;
	height: 1.4rem;
}

.auto-play-btn .auto-play-label {
	z-index: 2;
	position: relative;
	font-family: "United Sans Condensed", sans-serif;
	text-transform: uppercase;
	font-weight: 600;
	font-size: 1.25rem;
	line-height: 1;
	display: inline-flex;
	align-items: center;
	transform: translateY(3px);
	padding-right: 1rem;
}

.pause-icon,
.restart-icon {
	display: none;
}

.auto-play-btn .play-icon {
	display: block;
}

.auto-play-btn .pause-icon {
	display: none;
}

.auto-play-btn.is-playing .play-icon {
	display: none;
}

.auto-play-btn.is-playing .pause-icon {
	display: block;
	width: 1.5rem;
	height: 1.5rem;
}

.auto-play-btn.is-paused .play-icon {
	display: block;
}

.auto-play-btn.is-paused .pause-icon {
	display: none;
}

.auto-play-btn.is-restart .play-icon,
.auto-play-btn.is-restart .pause-icon {
	display: none;
}

.auto-play-btn.is-restart .restart-icon {
	display: block;
}

.auto-play-btn.is-restart .auto-play-icon::before {
	content: none;
}

.auto-play-btn.is-restart {
	min-width: auto;
}

.auto-play-btn.is-restart::after {
	display: none;
}

/* ---- Intro ---- */

.timeline-intro {
	scroll-snap-align: center;
	background: transparent;
	padding: clamp(40px, 6vw, 80px) 20px clamp(2rem, 3vw, 4rem);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	min-height: 100dvh;
	transition: min-height 2s linear;
}

body:not(.is-loading) .timeline-intro {
	min-height: 0;
}

.intro-inner {
	max-width: 800px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	position: relative;
	margin-bottom: 4rem;
}

.intro-text {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.intro-text h1 {
	font-size: clamp(2.75rem, 8vw, 8rem);
	font-weight: 600;
	color: var(--gold);
	margin: 0 0 clamp(12px, 2vw, 20px) 0;
	line-height: 0.8;
	text-align: center;
	padding-top: 1.25rem;
}

.intro-text p {
	max-width: 620px;
	font-size: clamp(0.9rem, 1.2vw, 1.1rem);
	line-height: 1.6;
	opacity: 0.9;
	text-align: center;
}

.intro-badge {
	display: flex;
	justify-content: center;
	align-items: center;
}

.intro-badge img {
	max-width: clamp(180px, 35vw, 500px);
	width: 100%;
	height: auto;
}

/* ---- Loading ---- */

.loading-bar {
	width: 160px;
	height: 16px;
	background: var(--progress-track);
	border-radius: 999px;
	margin: 2rem auto 0.25rem;
	overflow: hidden;
	opacity: 0;
	transition: opacity 0.3s ease;
	border: 1px solid var(--gray);
	padding: 4px;
}

.loading-bar-fill {
	width: 0%;
	height: 100%;
	background: var(--gold);
	border-radius: 999px;
	transition: width 0.3s ease-out;
}

.loading-status {
	font-size: 0.9em;
	color: #fff;
	text-align: center;
	margin: 0px;
	font-family: "Inter", sans-serif;
	transition: opacity 0.3s ease;
}

.loading-dots span {
	animation: dotPulse 1.4s infinite ease-in-out;
}

.loading-dots span:nth-child(2) {
	animation-delay: 0.2s;
}

.loading-dots span:nth-child(3) {
	animation-delay: 0.4s;
}

@keyframes dotPulse {
	0%,
	20% {
		opacity: 0;
	}
	40% {
		opacity: 1;
	}
	100% {
		opacity: 0;
	}
}

body:not(.is-loading) .loading-status {
	opacity: 0;
	pointer-events: none;
}

body.is-loading .loading-bar {
	opacity: 1;
}

body:not(.is-loading) .loading-bar {
	opacity: 0;
	pointer-events: none;
}

body.is-loading .timeline-wrapper,
body.is-loading .timeline-conclusion {
	display: none;
}

.timeline-wrapper,
.timeline-conclusion {
	animation: timeline-fade-in 0.6s ease both;
}

@keyframes timeline-fade-in {
	from {
		opacity: 0;
		transform: translateY(20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* ---- Timeline Wrapper ---- */

.timeline-wrapper {
	max-width: 1100px;
	margin: 0 auto;
	padding: clamp(30px, 5vw, 60px) clamp(16px, 3vw, 25px);
	padding-bottom: 0;
	position: relative;
}

.timeline-items {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-auto-rows: 1fr;
}

/* ---- Timeline Line ---- */

.timeline-line-border {
	position: absolute;
	left: 50%;
	top: 0;
	transform: translateX(-50%);
	width: 12px;
	height: 100%;
	border-left: 2px solid var(--gray);
	border-right: 2px solid var(--gray);
	border-top: 2px solid var(--gray);
	border-radius: 6px;
	z-index: 0;
}

.timeline-line {
	position: absolute;
	left: 50%;
	top: 0;
	transform: translateX(-50%);
	width: 2px;
	height: 0;
	background: var(--gold);
	z-index: 1;
	margin-top: 4px;
}

/* ---- Timeline Items & Nodes ---- */

.timeline-item {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: clamp(24px, 6vw, 80px);
	padding-bottom: 140px;
	position: relative;
	scroll-snap-align: center;
	scroll-snap-stop: always;
}

.timeline-item:first-child {
	margin-top: clamp(20px, 3vw, 40px);
}

.timeline-anchor.timeline-item {
	display: block;
	height: 0;
	padding: 0;
	margin: 0;
	border: 0;
	overflow: hidden;
	pointer-events: none;
}

.timeline-anchor.timeline-item::before {
	display: none;
}

.timeline-item::before {
	content: "";
	position: absolute;
	left: 50%;
	top: 40px;
	width: 18px;
	height: 18px;
	background: var(--black);
	box-shadow: 0 0 3px 10px rgba(0, 0, 0, 0.15);
	border: 2px solid var(--gray);
	border-radius: 50%;
	transform: translateX(-50%) scale(1);
	transform-origin: center;
	z-index: 99;
	transition:
		background 0.4s ease,
		box-shadow 0.4s ease,
		transform 0.35s ease;
}

.timeline-item.active::before {
	border: 2px solid var(--gold);
	transform: translateX(-50%) scale(1);
	animation: timeline-node-reveal 0.3s ease-out both;
}

@keyframes timeline-node-reveal {
	0% {
		transform: translateX(-50%) scale(1.1);
	}
	60% {
		transform: translateX(-50%) scale(1.25);
	}
	100% {
		transform: translateX(-50%) scale(1.15);
	}
}

.branch {
	position: absolute;
	top: 48px;
	width: 0px;
	height: 3px;
	background: var(--gold);
	transition: width 0.5s ease;
}

.timeline-item.left.active .branch {
	right: 50%;
	width: 40px;
}

.timeline-item.right.active .branch {
	left: 50%;
	width: 40px;
}

/* ---- Content Cards ---- */

.content-wrapper {
	display: flex;
	flex-direction: column;
}

.timeline-item.left .content-wrapper {
	grid-column: 1;
}

.timeline-item.right .content-wrapper {
	grid-column: 2;
}

.content {
	background: transparent;
	border: none;
	border-radius: 14px;
	padding: clamp(16px, 2.5vw, 28px);
	opacity: 0;
	z-index: 99;
	position: relative;
	transition: box-shadow 0.3s ease;
}

.content.is-visible {
	box-shadow: 0px 0px 30px 30px rgba(0, 0, 0, 0.2);
}

.content-inner {
	opacity: 0;
}

.content__row {
	display: flex;
	flex-direction: row;
	gap: 2rem;
}

.content__text {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	flex: 1;
}

.content__text h3 {
	font-size: clamp(1.75rem, 2.2vw, 1.95rem);
	padding: 0;
	margin: 0;
	font-weight: 600;
	color: var(--gold);
}

.content__text p {
	font-size: 1rem;
	line-height: 1.75;
	padding: 0;
	margin: 0;
}

.content__link {
	display: flex;
	flex-direction: row;
	padding-top: 0.25rem;
}

.content-border-svg {
	position: absolute;
	inset: -2.5px;
	pointer-events: none;
	z-index: 1;
	overflow: visible;
}

.content-border-svg svg {
	width: 100%;
	height: 100%;
	display: block;
}

.content-border-path {
	fill: none;
	stroke: var(--gold);
	stroke-width: 3;
	stroke-linecap: butt;
	stroke-linejoin: round;
}

/* ---- Year Labels ---- */

.timeline-item .year {
	position: absolute;
	top: 29px;
	transform: translateY(-50%);
	z-index: 98;
	color: var(--gray-dark);
	font-weight: 600;
	letter-spacing: 1px;
	font-size: clamp(2rem, 3.5vw, 3.25rem);
	white-space: nowrap;
	font-family: "United Sans Condensed", sans-serif;
}

.timeline-item.left .year {
	left: 50%;
	margin-left: 24px;
	text-align: left;
}

.timeline-item.right .year {
	right: 50%;
	margin-right: 24px;
	text-align: right;
}

/* ---- Buttons ---- */

.btn {
	display: inline-block;
	margin-top: 16px;
	padding: clamp(8px, 1vw, 10px) clamp(14px, 1.5vw, 18px);
	border-radius: 999px;
	border: 2px solid var(--gold);
	color: var(--gold);
	text-decoration: none;
	font-weight: 600;
	font-size: clamp(0.85rem, 1vw, 1rem);
	transition: all 0.25s ease;
}

.btn:hover {
	background: var(--gold);
	color: var(--black);
}

/* ---- Scroll/Swipe Instructions ---- */

.timeline-instruction {
	position: absolute;
	left: 50%;
	top: -60px;
	transform: translateX(-50%);
	display: flex;
	align-items: center;
	gap: 12px;
}

.timeline-instruction > div {
	display: flex;
	align-items: center;
	gap: 16px;
}

.timeline-instruction p {
	font-style: italic;
	font-weight: 300;
	margin: 0;
}

.scroll-instruction-icon {
	display: flex;
	align-items: center;
	justify-content: center;
}

.scroll-mouse-icon {
	width: 22px;
	height: 36px;
	color: var(--white);
	flex-shrink: 0;
}

.scroll-mouse-icon svg {
	width: 100%;
	height: 100%;
	display: block;
}

.scroll-mouse-icon .scroll-mouse-dot {
	animation: scroll-mouse-loop 1.8s ease-in-out infinite;
	transform-origin: 13px 11px;
}

@keyframes scroll-mouse-loop {
	0%,
	100% {
		transform: translateY(0);
		opacity: 1;
	}
	50% {
		transform: translateY(14px);
		opacity: 0.85;
	}
}

.scroll-instruction-text {
	display: block;
}

.swipe-instruction-icon {
	display: none;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	width: 22px;
	height: 36px;
	color: var(--white);
	flex-shrink: 0;
}

.swipe-instruction-icon svg {
	width: 100%;
	height: 100%;
	display: block;
}

.timeline-instruction > .swipe-instruction-icon {
	display: none;
}

.swipe-instruction-text {
	display: none;
}

/* ---- Conclusion ---- */

.timeline-conclusion {
	scroll-snap-align: end;
	background: linear-gradient(to bottom, var(--black), rgba(0, 0, 0, 0.92));
	padding: 120px 20px 180px;
	border-top: 3px solid var(--gray);
	margin-top: -5px;
	margin-bottom: 0;
	position: relative;
	z-index: 99;
	display: block;
}

.timeline-conclusion::before {
	display: none;
}

.conclusion-inner {
	max-width: 900px;
	margin: 0 auto;
	text-align: center;
}

.timeline-conclusion h2 {
	font-size: clamp(1.75rem, 3vw, 2.8rem);
	color: var(--gold);
	margin-bottom: clamp(16px, 2vw, 24px);
	margin-top: 30px;
	font-weight: 700;
}

.timeline-conclusion p {
	font-size: clamp(1rem, 1.2vw, 1.1rem);
	line-height: 1.7;
	opacity: 1;
	max-width: 620px;
	margin: 0 auto;
}

.timeline-conclusion p a {
	color: var(--gold);
	text-decoration: underline;
	text-underline-offset: 3px;
	text-decoration-thickness: 1px;
	transition:
		color 0.2s ease,
		text-decoration-color 0.2s ease;
}

.timeline-conclusion p a:hover {
	color: var(--white);
	text-decoration-color: var(--white);
}

/* ---- Mobile Nav Bar ---- */

.mobile-nav-bar {
	display: none;
}

/* ---- @media (max-width: 1024px) ---- */

@media (max-width: 1024px) {
	.timeline-intro {
		padding: 100px 20px 5rem;
	}

	.intro-badge {
		margin-top: 30px;
	}

	.timeline-item {
		gap: 40px;
		margin-bottom: 120px;
	}

	.timeline-conclusion.timeline-item {
		margin-bottom: 0;
	}

	.auto-play-btn {
		padding: 10px 16px;
	}
}

/* ---- @media (max-width: 768px) ---- */

@media (max-width: 768px) {
	html {
		scroll-snap-type: none;
	}

	body {
		font-size: 18px;
	}

	.top-bar {
		padding: 12px 16px 80px 16px;
		background: linear-gradient(to bottom, rgba(0, 0, 0, 1) 50%, rgba(0, 0, 0, 0) 100%);
		justify-content: center;
	}

	.top-bar-logo img {
		height: 45px;
		margin-right: -10px;
	}

	.auto-play-btn {
		display: none;
	}

	.timeline-intro {
		padding: 80px 16px 60px;
	}

	.intro-inner {
		grid-template-columns: 1fr;
		text-align: center;
		padding-inline: 3rem;
		margin-bottom: 0;
	}

	.intro-text p {
		margin: 0 auto;
	}

	.intro-badge {
		margin-top: 30px;
	}

	.timeline-items {
		display: block;
	}

	.timeline-item {
		grid-template-columns: 1fr;
		gap: 0;
		margin-bottom: 70vh;
		padding-top: 45px;
	}

	.timeline-conclusion.timeline-item {
		margin-bottom: 0;
	}

	.timeline-item:first-child {
		margin-top: 180px;
	}

	.timeline-item::before {
		top: 0px;
	}

	.timeline-item.active::before {
		animation: timeline-node-reveal 0.3s ease-out both;
	}

	.timeline-item .year {
		position: absolute;
		top: -6px;
		transform: translateY(-50%);
		font-size: 3rem;
		padding-top: 0;
		padding-bottom: 0;
		line-height: 1;
	}

	.timeline-item.left .year,
	.timeline-item.right .year {
		left: 50%;
		right: auto;
		margin-left: 20px;
		margin-right: 0;
		text-align: left;
	}

	.branch {
		display: none;
	}

	.timeline-item.left .content-wrapper,
	.timeline-item.right .content-wrapper {
		grid-column: 1;
		align-items: center;
	}

	.timeline-item.left .content,
	.timeline-item.right .content {
		grid-column: 1;
		padding: 1.5rem;
		max-width: 500px;
		margin: 0 auto;
	}

	.content__row {
		flex-direction: column;
		gap: 1rem;
	}

	.timeline-instruction {
		top: -40px;
	}

	.scroll-instruction-icon {
		display: none;
	}

	.timeline-instruction > .scroll-mouse-icon {
		display: none;
	}

	.scroll-mouse-icon .scroll-mouse-dot {
		animation: none;
	}

	.swipe-instruction-icon {
		display: flex;
	}

	.scroll-instruction-text {
		display: none;
	}

	.swipe-instruction-text {
		display: block;
	}

	.timeline-conclusion {
		padding: 80px 16px 150px;
	}

	.mobile-nav-bar {
		position: fixed;
		bottom: 0;
		left: 0;
		right: 0;
		z-index: 1000;
		display: flex !important;
		justify-content: space-between;
		align-items: center;
		padding: 1rem;
		min-height: 95px;
		background: #000;
		pointer-events: none;
		border-top: 1px solid #333;
		transform: translateY(100%);
		transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
	}

	.mobile-nav-bar.is-visible {
		transform: translateY(0);
	}

	.mobile-nav-bar > * {
		pointer-events: auto;
	}

	.mobile-nav-btn {
		cursor: pointer;
		appearance: none;
		border: 2px solid var(--gold);
		background: var(--black);
		color: var(--gold);
		border-radius: 50%;
		width: 60px;
		height: 60px;
		display: flex;
		align-items: center;
		justify-content: center;
		font-size: 1.5rem;
		transition: all 0.2s ease;
		outline: none;
		flex-shrink: 0;
	}

	.mobile-nav-btn:active:not(:disabled) {
		transform: scale(0.92);
		background: var(--gold);
		color: var(--black);
	}

	.mobile-nav-btn:disabled {
		opacity: 0.25;
		cursor: default;
		pointer-events: none;
	}

	.mobile-nav-btn svg {
		width: 24px;
		height: 24px;
		display: block;
	}

	.mobile-nav-autoplay {
		border-radius: 25px;
		width: auto;
		padding: 10px 18px;
		gap: 6px;
		position: relative;
		overflow: hidden;
		flex: 1;
		max-width: 220px;
		white-space: nowrap;
	}

	.mobile-nav-autoplay .auto-play-icon {
		width: 1.2rem;
		height: 1.2rem;
		display: inline-flex;
		align-items: center;
		justify-content: center;
		flex-shrink: 0;
		z-index: 2;
		position: relative;
	}

	.mobile-nav-autoplay .auto-play-svg {
		width: 1.2rem;
		height: 1.2rem;
	}

	.mobile-nav-autoplay .pause-icon,
	.mobile-nav-autoplay .restart-icon {
		display: none;
	}

	.mobile-nav-autoplay .play-icon {
		display: block;
	}

	.mobile-nav-autoplay.is-playing .play-icon {
		display: none;
	}

	.mobile-nav-autoplay.is-playing .pause-icon {
		display: block;
		width: 1.3rem;
		height: 1.3rem;
	}

	.mobile-nav-autoplay.is-paused .play-icon {
		display: block;
	}

	.mobile-nav-autoplay.is-paused .pause-icon {
		display: none;
	}

	.mobile-nav-autoplay.is-restart .play-icon,
	.mobile-nav-autoplay.is-restart .pause-icon {
		display: none;
	}

	.mobile-nav-autoplay.is-restart .restart-icon {
		display: block;
	}

	.mobile-nav-autoplay .auto-play-label {
		z-index: 2;
		position: relative;
		font-family: "United Sans Condensed", sans-serif;
		text-transform: uppercase;
		font-weight: 600;
		font-size: 1.25rem;
		line-height: 1;
		display: inline-flex;
		align-items: center;
		transform: translateY(2px);
	}

	.mobile-nav-autoplay::after {
		content: "";
		position: absolute;
		left: 0;
		top: 0;
		bottom: 0;
		width: var(--auto-play-progress, 0%);
		background: var(--progress-track);
		transition: width 0.1s linear;
		z-index: 0;
		pointer-events: none;
	}

	.mobile-nav-autoplay.is-restart::after {
		display: none;
	}

	.mobile-nav-autoplay.is-restart {
		min-width: auto;
	}

	.top-bar .auto-play-btn {
		display: none;
	}
}

/* ---- @media (max-width: 480px) ---- */

@media (max-width: 480px) {
	.timeline-intro {
		padding: 60px 12px 40px;
	}

	.loading-bar {
		width: 160px;
		margin-top: 1.5rem;
	}

	.timeline-item {
		margin-bottom: 70vh;
		padding-top: 50px;
	}

	.timeline-conclusion.timeline-item {
		margin-bottom: 90px;
	}

	.timeline-item:first-child {
		margin-top: 140px;
	}

	.timeline-item .year {
		font-size: 2.5rem;
	}

	.timeline-item.left .content,
	.timeline-item.right .content {
		padding: 2rem;
	}

	.timeline-item::before {
		width: 14px;
		height: 14px;
	}

	.timeline-line-border {
		width: 10px;
	}

	.auto-play-btn {
		padding: 8px 12px;
		min-width: 110px;
		border-radius: 20px;
	}

	.auto-play-btn .auto-play-label {
		font-size: 0.95rem;
		padding-right: 0.5rem;
	}

	.auto-play-icon {
		width: 1.2rem;
		height: 1.2rem;
	}

	.top-bar {
		padding: 1rem 12px 5rem;
		justify-content: center;
	}

	.top-bar-logo img {
		height: 40px;
	}

	.timeline-conclusion {
		padding: 2rem;
		padding-bottom: 5rem;
	}

	.mobile-nav-bar {
		padding: 8px 12px;
	}

	.mobile-nav-btn {
		width: 50px;
		height: 50px;
		font-size: 1.2rem;
	}

	.mobile-nav-autoplay {
		padding: 10px 16px;
		min-width: 100px;
	}

	.mobile-nav-autoplay .auto-play-label {
		font-size: 1.2rem;
	}
}

/* ---- @media (prefers-reduced-motion) ---- */

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-snap-type: none;
		scroll-behavior: auto;
	}

	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
	}

	.parallax-image {
		opacity: 0.3 !important;
	}

	.auto-play-btn {
		display: none;
	}

	.scroll-mouse-dot {
		animation: none;
	}
}
