.about-main
{
	width: min(1300px, calc(100% - 80px));
	margin: 0 auto;
	padding: 0 0 100px;
}

.about-header
{
	max-width: 1000px;
	margin-bottom: 24px;
}

.about-header > p
{
	max-width: 820px;
}


/* ==================================================
   INTRO
================================================== */

.about-intro
{
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(380px, .85fr);
	align-items: center;
	gap: 45px;
}

.about-intro-copy
{
	max-width: 660px;
	align-self: start;
	padding: var(--about-intro-padding, 32px 36px);
	color: var(--about-intro-text, var(--page-text, var(--text)));
	background: var(--about-intro-bg, var(--light-overlay-48));
	border: 1px solid var(--about-intro-border, var(--border));
	border-radius: var(--about-intro-radius, 8px);
	box-shadow: var(--about-intro-shadow, 0 8px 26px var(--warm-shadow-06));
}

.about-lead
{
	margin: 0 0 18px;
	color: var(--primary);
	font-size: clamp(1.55rem, 2.3vw, 2rem);
	font-weight: 700;
	line-height: 1.2;
}

.about-intro-copy p:not(.about-lead)
{
	margin: 0 0 16px;
	font-size: 1.08rem;
	line-height: 1.55;
}

.about-intro-copy p:last-child
{
	margin-bottom: 0;
}

.about-art
{
	margin: 0;
	overflow: hidden;
	background: var(--light-overlay-50);
	border: 1px solid var(--accent-overlay-55);
	border-radius: 9px;
	box-shadow: 0 18px 45px var(--warm-shadow-13);
	transform: rotate(1deg);
	width: min(100%, 540px);
	justify-self: end;
}

.about-art img
{
	width: 100%;
	aspect-ratio: 4 / 3;
	display: block;
	object-fit: cover;
}

.about-art figcaption
{
	padding: 13px 18px;
	color: var(--primary);
	font-size: .85rem;
	font-weight: 700;
	letter-spacing: .04em;
	text-align: center;
}


/* ==================================================
   ORIGIN VIDEO
================================================== */
.about-origin
{
	margin-top: 35px;
	padding: 35px 45px 45px;
	display: grid;
	grid-template-columns: minmax(0, 1.15fr) minmax(320px, .85fr);
	gap: 35px 55px;
	color: var(--light);
	background: linear-gradient(135deg, var(--text), var(--surface-deeper));
	border: 1px solid var(--accent-overlay-52);
	border-radius: 9px;
	box-shadow: 0 18px 45px var(--shadow-15);
}

.about-origin-header
{
	grid-column: 1 / -1;
	text-align: center;
}

.about-origin-header p
{
	margin: 0 0 8px;
	color: var(--accent-soft);
	font-size: .9rem;
	font-weight: 700;
	letter-spacing: .12em;
	text-transform: uppercase;
}

.about-origin-header h2
{
	margin: 0;
	font-size: clamp(2.2rem, 4vw, 3.5rem);
	font-weight: 700;
	line-height: 1;
	text-transform: uppercase;
}

.about-video
{
	align-self: center;
	overflow: hidden;
	background: var(--black);
	border: 1px solid var(--accent-soft-overlay-35);
	border-radius: 6px;
	box-shadow: 0 12px 32px var(--shadow-28);
}

.about-video iframe
{
	width: 100%;
	aspect-ratio: 16 / 9;
	display: block;
	border: 0;
}

.about-origin-copy
{
	align-self: center;
	max-width: 520px;
}

.about-origin-copy p
{
	margin: 0 0 16px;
	color: var(--light-text-overlay-82);
	font-size: 1.05rem;
	line-height: 1.55;
}

.about-origin-copy > p:not(.about-origin-kicker)
{
	margin: 0 0 15px;
	color: var(--light-text-overlay-82);
	font-size: 1.05rem;
	line-height: 1.55;
}

.about-video-link
{
	margin-top: 7px;
	padding: 12px 20px;
	display: inline-flex;
	color: var(--accent-soft);
	background: var(--transparent);
	border: 1px solid var(--accent);
	border-radius: 4px;
	font-size: .84rem;
	font-weight: 700;
	letter-spacing: .07em;
	text-transform: uppercase;
	transition:
		color .2s ease,
		background-color .2s ease,
		transform .2s ease;
}

.about-video-link:hover,
.about-video-link:focus-visible
{
	color: var(--surface-dark);
	background: var(--accent-soft);
	transform: translateY(-2px);
}


/* ==================================================
   ABOUT CARDS
================================================== */

.about-grid
{
	margin-top: 65px;
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 22px;
}

.about-card
{
	position: relative;
	min-height: 320px;
	padding: 38px 40px;
	overflow: hidden;
	background: var(--light-overlay-48);
	border: 1px solid var(--border);
	border-radius: 8px;
	box-shadow: 0 8px 26px var(--warm-shadow-06);
}

.about-card::after
{
	content: '';
	position: absolute;
	right: -60px;
	bottom: -80px;
	width: 190px;
	height: 190px;
	background: var(--accent-overlay-06);
	border-radius: 50%;
}

.about-card-icon
{
	position: relative;
	z-index: 1;
	display: block;
	margin-bottom: 16px;
	color: var(--accent);
	font-size: 2rem;
	line-height: 1;
}

.about-card h2
{
	position: relative;
	z-index: 1;
	margin: 0 0 17px;
	color: var(--primary);
	font-size: 1.85rem;
	font-weight: 700;
	line-height: 1.05;
	text-transform: uppercase;
}

.about-card p
{
	position: relative;
	z-index: 1;
	margin: 0 0 15px;
	font-size: 1.03rem;
	line-height: 1.55;
}

.about-card p:last-of-type
{
	margin-bottom: 0;
}

.about-button
{
	position: relative;
	z-index: 1;
	margin-top: 22px;
	padding: 13px 24px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: var(--light);
	background: var(--primary);
	border: 1px solid var(--primary);
	border-radius: 4px;
	font-size: .9rem;
	font-weight: 700;
	letter-spacing: .07em;
	text-transform: uppercase;
	transition:
		background-color .2s ease,
		transform .2s ease;
}

.about-button:hover,
.about-button:focus-visible
{
	background: var(--primary-dark);
	transform: translateY(-2px);
}


/* ==================================================
   LEGACY SECTION
================================================== */

.about-legacy
{
	margin-top: 70px;
	padding: clamp(38px, 5vw, 60px);
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(360px, .8fr);
	align-items: center;
	gap: 60px;
	color: var(--light);
	background: linear-gradient(135deg, var(--text), var(--surface-deeper));
	border: 1px solid var(--accent-overlay-50);
	border-radius: 8px;
	box-shadow: 0 16px 40px var(--shadow-13);
}

.about-legacy h2
{
	margin: 0 0 18px;
	font-size: clamp(2.1rem, 4vw, 3.4rem);
	font-weight: 700;
	line-height: 1;
	text-transform: uppercase;
}

.about-legacy-copy > p
{
	max-width: 650px;
	margin: 0;
	color: var(--light-text-overlay-80);
	font-size: 1.05rem;
	line-height: 1.6;
}

.archive-links
{
	display: flex;
	flex-direction: column;
	gap: 13px;
}

.archive-links a
{
	min-height: 78px;
	padding: 15px 20px;
	display: flex;
	align-items: center;
	gap: 17px;
	background: var(--light-overlay-06);
	border: 1px solid var(--accent-soft-overlay-30);
	border-radius: 5px;
	transition:
		background-color .2s ease,
		border-color .2s ease,
		transform .2s ease;
}

.archive-links a:hover,
.archive-links a:focus-visible
{
	background: var(--light-overlay-10);
	border-color: var(--accent-soft);
	transform: translateX(4px);
}

.archive-links > a > span:first-child
{
	flex: 0 0 auto;
	color: var(--accent-soft);
	font-size: 1.7rem;
	line-height: 1;
}

.archive-links strong,
.archive-links small
{
	display: block;
}

.archive-links strong
{
	font-size: 1.04rem;
	font-weight: 700;
	letter-spacing: .04em;
	text-transform: uppercase;
}

.archive-links small
{
	margin-top: 4px;
	color: var(--light-text-overlay-68);
	font-size: .88rem;
}


/* ==================================================
   DISCLAIMER
================================================== */

.about-disclaimer
{
	max-width: 900px;
	margin: 65px auto 0;
	padding: 27px 32px;
	display: flex;
	align-items: center;
	gap: 25px;
	background: var(--light-overlay-44);
	border-top: 1px solid var(--border);
	border-bottom: 1px solid var(--border);
}

.about-disclaimer-icon
{
	flex: 0 0 auto;
	color: var(--accent);
	font-size: 2.5rem;
	line-height: 1;
}

.about-disclaimer h2
{
	margin: 0 0 6px;
	color: var(--primary);
	font-size: 1.35rem;
	text-transform: uppercase;
}

.about-disclaimer p
{
	margin: 0;
	line-height: 1.5;
}


/* ==================================================
   TABLET
================================================== */

@media (max-width: 950px)
{
	.about-main
	{
		width: min(100% - 40px, 1300px);
	}

	.about-intro,
	.about-origin,
	.about-legacy
	{
		grid-template-columns: 1fr;
	}

	.about-intro
	{
		gap: 35px;
	}

	.about-intro-copy
	{
		max-width: 800px;
		margin: 0 auto;
		text-align: center;
	}

	.about-art
	{
		width: min(100%, 680px);
		margin: 0 auto;
		transform: none;
	}

	.about-origin
	{
		gap: 30px;
	}

	.about-origin-copy
	{
		max-width: 760px;
	}

	.about-legacy
	{
		gap: 35px;
	}
}


/* ==================================================
   MOBILE
================================================== */

@media (max-width: 700px)
{
	.about-main
	{
		width: calc(100% - 30px);
		padding-bottom: 65px;
	}

	.about-grid
	{
		grid-template-columns: 1fr;
		gap: 15px;
		margin-top: 45px;
	}

	.about-origin
	{
		margin-top: 40px;
		padding: 26px 20px;
	}

	.about-origin h2
	{
		font-size: 2.2rem;
	}

	.about-card
	{
		min-height: 0;
		padding: 30px 25px;
	}

	.about-card h2
	{
		font-size: 1.6rem;
	}

	.about-card p
	{
		font-size: 1rem;
	}

	.about-legacy
	{
		margin-top: 45px;
		padding: 34px 24px;
	}

	.about-legacy h2
	{
		font-size: 2.2rem;
	}

	.archive-links a
	{
		padding: 14px 16px;
	}

	.about-disclaimer
	{
		margin-top: 45px;
		padding: 24px 20px;
		align-items: flex-start;
	}

	.about-disclaimer-icon
	{
		font-size: 2rem;
	}
}


/* ==================================================
   SMALL MOBILE
================================================== */

@media (max-width: 480px)
{
	.about-art img
	{
		aspect-ratio: 1 / 1;
	}

	.about-disclaimer
	{
		flex-direction: column;
		gap: 12px;
	}
}