*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
		sans-serif;
	color: #111;
	background: #fff;
}

img {
	max-width: 100%;
	display: block;
}

audio,
iframe {
	width: 100%;
}


:root {
	--color-bg-dark: #000000;
	--color-bg-light: #ffffff;
	--color-text-main: #111111;
	--color-text-muted: #555555;
	--color-accent: #ffcb05;
	--color-accent-dark: #f0b800;
	--container-width: 960px;
	--header-h: 100px;
}

section[id] {
	scroll-margin-top: calc(var(--header-h) + 16px);
}

.container {
	width: 100%;
	max-width: var(--container-width);
	margin: 0 auto;
	padding: 0 16px;
}


.header {
	width: 100%;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 3;
	background: #20201E;
}

.header__container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 16px;
}

.header__logo {
	height: 85px;
}

.header__logo img {
	height: 100%;
	width: 100%;
	object-fit: contain;
}

.header__burger {
	background: transparent;
	border: none;
	padding: 0;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
}

.header__burger img {
	width: 55px;
	height: auto;
}

.header__nav {
	position: fixed;
	top: 0px;
	left: 0;
	width: 100%;
	background: #20201E;
	transform: translateY(-100%);
	transition: .35s ease;
	padding: 20px 0;
}

.header__nav.open {
	transform: translateY(100px);
}

.header__nav-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.header__nav-link {
	display: block;
	padding: 14px 20px;
	color: #fff;
	font-size: 16px;
	text-decoration: none;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header__nav-link:hover {
	background: rgba(255, 255, 255, 0.05);
}

.main {
	padding-top: var(--header-h);
}

.hero {
	position: fixed;
	inset: 0;
	background: #000;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 4;
	opacity: 1;
	transition: opacity 0.8s ease-in-out;
}

.hero--hide {
	opacity: 0;
	pointer-events: none;
}

.hero-logo {
	width: 320px;
	height: auto;
	user-select: none;
}

.intro {
	padding-top: 150px;
	background: #fff;
}

.intro__inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	justify-content: center;
}

.intro__name {
	font-size: 40px;
	font-weight: 700;
	line-height: 1.1;
	/* margin: 0 0 8px; */
	color: #000;
}

.intro__name span {
	font-weight: 400;
}

.intro__rank-row {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
	margin-bottom: 20px;
}

.intro__rank {
	font-size: 18px;
	color: #222;
	text-transform: uppercase;
	font-weight: 600;
	letter-spacing: 2px;
	text-decoration: underline;
}

.intro__tags {
	gap: 10px;
	display: flex;
}

.tag {
	display: inline-block;
	padding: 8px 16px;
	border-radius: 20px;
	font-size: 15px;
	font-weight: 300;
	background: #E8E8E8;
}

.tag--yellow {
	background: #FFC216;
	color: #000;
}

.intro__photo-wrap {
	position: relative;
	height: 450px;
	z-index: 2;
	background: black;
	border-radius: 8px;
}

.intro__photo-label {
	position: absolute;
	top: -20px;
	left: 40px;
	background: var(--color-accent);
	padding: 20px 25px;
	font-size: 32px;
	border-radius: 8px;
	letter-spacing: 2px;
	text-transform: uppercase;
	width: 360px;
	height: 120px;
}

.intro__photo-label span {
	font-weight: 600;
}

.intro__photo {
	position: absolute;
	top: 40px;
	right: -5px;
	z-index: 1;
	padding: 10px;
	overflow: hidden;
	max-height: 410px;
}

.intro__photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.pill {
	display: inline-flex;
	align-items: center;
	padding: 4px 12px;
	font-size: 11px;
	border-radius: 999px;
	text-transform: uppercase;
	letter-spacing: 0.08em;
}

.pill--yellow {
	background: var(--color-accent);
	color: #000;
}

.pill--outline {
	border: 1px solid #000;
}

.lead {
	background: #ffffff;
	padding: 16px 0 24px;
}

.lead__card {
	background: #ffffff;
}

.lead__title {
	font-size: 40px;
	font-weight: 400;
	line-height: 1.35;
	margin: 20px 0 20px;
	text-align: center;
}

.lead__subtitle {
	margin: 0;
	font-size: 14px;
	color: var(--color-text-muted);
}

.cta-strip {
	background: #000;
	color: #fff;
	padding: 16px 0;
	position: relative;
}

.cta-strip::before {
	content: "";
	position: absolute;
	top: -10px;
	left: 0;
	width: 95%;
	height: 10px;
	background: #FFC216;
	z-index: 1;
}

.cta-strip__inner {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.cta-strip__text {
	padding: 10px 0;
	font-size: 26px;
}


.text-highlight {
	background: #FFCD2D;
	color: #000;
	padding: 0 3px;
	box-decoration-break: clone;
	display: inline-block;
	height: 30px;
	line-height: 28px;
}

.story {
	background: #f5f5f5;
	padding: 24px 0;
}

.story__inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
}

.story__photo {
	height: 550px;
	overflow: hidden;
	border-radius: 8px;
}

.story__photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.story__content p {
	margin: 0 0 12px;
	font-size: 14px;
	line-height: 1.5;
}

.text-highlight-border {
	background: #FFC216;
	color: #000;
	padding: 2px 4px;
	border-radius: 8px;
	box-decoration-break: clone;
}

.story__highlight_title {
	font-weight: 300;
	font-size: 16px;
	letter-spacing: 1px;
}

.story__highlight {
	padding: 10px 12px;
	background: #ffffff;
	border-left: 4px solid var(--color-accent);
	font-weight: 500;
}

.mission {
	background: #FFC216;
	padding: 24px 0;
}

.mission__inner {
	display: grid;
	gap: 16px;
}

.mission__title {
	margin: 0 0 10px;
	font-size: 18px;
	text-transform: uppercase;
	letter-spacing: 0.06em;
}

.mission__text-block p {
	margin: 0 0 10px;
	font-size: 14px;
	font-weight: 600;
	text-align: justify;
}

.mission__photo {
	height: 400px;
	width: 100%;
	max-width: var(--container-width);
	margin: 0 auto;
	padding: 0 16px;

}

.mission__photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 8px;
}

.timeline {
	background: #ffffff;
	padding: 28px 0 32px;
}

.section-title {
	margin: 0 0 14px;
	font-size: 18px;
}

.timeline__list {
	margin-top: 6px;
	border-left: 2px solid var(--color-accent);
	padding-left: 16px;
}

.timeline__item {
	position: relative;
	margin-bottom: 18px;
}

.timeline__item::before {
	content: "";
	position: absolute;
	left: -20px;
	top: 4px;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: var(--color-accent);
}

.timeline__date {
	font-weight: 600;
	margin-bottom: 4px;
	font-size: 13px;
}

.timeline__text {
	font-size: 14px;
	color: var(--color-text-muted);
}

.media {
	background: #f5f5f5;
	padding: 0 0 32px;
}

.media__item {
	background: #ffffff;
	border-radius: 8px;
	padding: 8px 8px;
}

.media__label {
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--color-text-muted);
	margin-bottom: 6px;
}

.media__video-frame {
	position: relative;
	padding-top: 56.25%;
	border-radius: 6px;
	overflow: hidden;
}

.media__video-frame iframe {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
}

.media__item--audio audio {
	margin-top: 4px;
}

.memory {
	background: #000;
	color: #fff;
	padding: 36px 16px;
}

.memory__inner {
	text-align: left;
}

.memory__caption {
	font-size: 20px;
	margin: 0 0 18px;
	color: #dddddd;
}

.memory__title {
	font-size: 40px;
	margin: 0 40px 40px 0;
	text-transform: uppercase;
	letter-spacing: 0.12em;
}

.footer {
	background: #111;
	color: #fff;
	padding: 14px 0;
	font-size: 12px;
}

.footer__inner {
	text-align: center;
}

.footer__inner a {
	text-decoration: none;
	color: #fff;
	font-size: 12px;
	transition: 0.3s;
}

.footer__inner a:hover {
	color: #FFC216;
}


.reveal {
	opacity: 0;
	transform: translateY(24px);
	transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal--visible {
	opacity: 1;
	transform: translateY(0);
}

/* ===== desktop / tablet ===== */

@media (max-width: 768px) {
	.header {
		padding: 0 24px;
	}

	.header__container {
		padding: 8px 0;
	}

	.nav {
		position: static;
		transform: none;
		background: transparent;
	}

	.nav__list {
		display: flex;
		gap: 16px;
		padding: 0;
	}

	.nav__link {
		font-size: 13px;
		padding: 0;
	}

	.burger {
		display: none;
	}

	.main {
		padding-top: 72px;
	}

	.intro {
		padding-top: 50px;
	}

	.tag {
		padding: 6px 12px;
	}

	.intro__inner {
		grid-template-columns: auto;
	}

	.intro__photo-wrap {
		margin-top: 40px;
	}

	.intro__photo-label {
		left: 20px;
		width: 300px;
		font-size: 30px;
		letter-spacing: 0px;
	}

	.lead__title {
		font-size: 24px;
		line-height: 24px;
		text-align: justify;
	}

	.cta-strip__text {
		padding: 0;
		font-size: 18px;
	}

	.story__content p {
		text-align: justify;
	}

	.text-highlight {
		display: inline;
	}

	.story__inner {
		grid-template-columns: auto;
	}

	.mission {
		padding: 24px 0 0;
	}

	.mission__inner {
		grid-template-columns: auto;
	}

	.mission__photo {
		padding: 0;
	}

	.mission__photo img {
		border-radius: 0px;
	}

	.media__grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.memory__inner {
		display: block;
	}

	.memory__title {
		margin: 40px 0;
	}
}