.subpage-detail {
	position: relative;
	isolation: isolate;
	overflow: hidden;
	min-height: 100vh;
	padding: 150px 100px 0;
	background: #000 !important;
	color: #fff;
}

.subpage-detail::before {
	display: none !important;
}

.subpage-detail::after,
.subpage-detail__orb {
	display: none !important;
}

.subpage-detail__inner {
	position: relative;
	z-index: 1;
	width: min(100%, 1248px);
	margin: 0 auto;
}

.subpage-detail__hero {
	display: grid;
	gap: 22px;
	max-width: 850px;
	margin: 0 auto;
	padding-bottom: 96px;
	text-align: center;
}

.subpage-detail__hero h1 {
	margin: 0;
	color: #fff;
	font-family: var(--font-body);
	font-size: clamp(40px, 4.6vw, 60px);
	font-weight: 700;
	line-height: 1.04;
	letter-spacing: -0.055em;
}

.subpage-detail__hero p {
	max-width: 640px;
	margin: 0 auto;
	color: #adb2b1;
	font-family: var(--font-body);
	font-size: 17px;
	font-weight: 400;
	line-height: 1.55;
}

.about-page {
	padding-top: 132px;
}

.about-page__banner {
	position: relative;
	display: grid;
	min-height: clamp(250px, 24vw, 330px);
	place-items: center;
	overflow: hidden;
	margin-bottom: 0;
	border-radius: 28px;
	background:
		linear-gradient(0deg, var(--banner-overlay-dark), var(--banner-overlay-dark)),
		linear-gradient(90deg, var(--banner-overlay-gold), var(--banner-overlay-gold-end)),
		var(--about-banner-image, none) center top / cover no-repeat,
		#000;
	text-align: center;
}

.about-page__banner::after {
	content: "";
	position: absolute;
	inset: 0;
	background:
		radial-gradient(circle at 50% 46%, var(--banner-radial-gold), transparent 56%),
		linear-gradient(180deg, var(--banner-vignette-top), var(--banner-vignette-bottom));
	pointer-events: none;
}

.about-page__banner-copy {
	position: relative;
	z-index: 1;
	display: grid;
	gap: 16px;
	padding: 42px 24px;
	justify-items: center;
}

.about-page__banner-copy h1 {
	margin: 0;
	color: #fff;
	font-family: var(--font-body);
	font-size: clamp(44px, 5vw, 72px);
	font-weight: 700;
	line-height: 1;
	letter-spacing: -0.06em;
}

.about-page__banner-copy p {
	max-width: 640px;
	margin: 0;
	color: rgba(255, 255, 255, 0.84);
	font-family: var(--font-body);
	font-size: 16px;
	font-weight: 400;
	line-height: 1.55;
}

.about-page .subpage-detail__content {
	margin-top: 0;
}

.about-page .subpage-detail__gallery {
	padding-top: 72px;
}

/* Alternating image / text rows - black + gold-tinted backgrounds, edge to edge */

.subpage-detail__content {
	display: grid;
	margin: 0 -100px;
}

.subpage-row {
	padding: 76px 100px;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.subpage-row__inner {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	gap: 64px;
	align-items: center;
	width: min(100%, 1248px);
	margin: 0 auto;
}

.subpage-row__media {
	margin: 0;
	overflow: hidden;
	border: 1px solid rgba(255, 204, 123, 0.2);
	border-radius: 20px;
	background: #0f1011;
	aspect-ratio: 4 / 3;
	order: 1;
}

.subpage-row__media img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: saturate(0.78) contrast(1.05);
}

.subpage-row__copy {
	display: grid;
	gap: 16px;
	order: 2;
}

.subpage-row__copy h2 {
	margin: 0;
	font-family: var(--font-body);
	font-size: 30px;
	font-weight: 700;
	line-height: 1.18;
	letter-spacing: -0.045em;
}

.subpage-row__copy p {
	margin: 0;
	font-family: var(--font-body);
	font-size: 16px;
	font-weight: 400;
	line-height: 1.65;
}

.subpage-row--reverse .subpage-row__media {
	order: 2;
}

.subpage-row--reverse .subpage-row__copy {
	order: 1;
}

.subpage-row--dark {
	background: #000;
	color: #fff;
}

.subpage-row--dark .subpage-row__copy h2 {
	color: var(--color-gold);
}

.subpage-row--dark .subpage-row__copy p {
	color: #adb2b1;
}

.subpage-row--light {
	background: linear-gradient(180deg, rgba(255, 204, 123, 0.07), rgba(255, 204, 123, 0.015)), #15130c;
	color: #fff;
}

.subpage-row--light .subpage-row__copy h2 {
	color: #fff;
}

.subpage-row--light .subpage-row__copy p {
	color: #d8d2c4;
}

/* Gallery */

.subpage-detail__gallery {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 16px;
	width: min(100%, 1248px);
	margin: 0 auto;
	padding: 96px 0;
}

.subpage-detail__image {
	margin: 0;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.16);
	border-radius: 18px;
	background: #0f1011;
	aspect-ratio: 4 / 3;
}

.subpage-detail__image img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: saturate(0.72) contrast(1.05);
}

/* CTA */

.subpage-detail__cta {
	padding: 96px 0 132px;
}

.subpage-detail__cta-inner {
	display: grid;
	gap: 22px;
	justify-items: center;
	max-width: 720px;
	margin: 0 auto;
	padding: 56px 48px;
	text-align: center;
	border: 1px solid rgba(255, 204, 123, 0.34);
	border-radius: 28px;
	background:
		linear-gradient(90deg, rgba(255, 204, 123, 0.1), transparent 70%),
		rgba(12, 12, 13, 0.86);
}

.subpage-detail__cta h2 {
	margin: 0;
	color: #fff;
	font-family: var(--font-body);
	font-size: clamp(28px, 3vw, 38px);
	font-weight: 700;
	line-height: 1.12;
	letter-spacing: -0.05em;
}

.subpage-detail__cta p {
	margin: 0;
	max-width: 520px;
	color: #adb2b1;
	font-family: var(--font-body);
	font-size: 16px;
	font-weight: 400;
	line-height: 1.55;
}

.subpage-detail__cta-button {
	display: inline-flex;
	min-width: 210px;
	align-items: center;
	justify-content: center;
	padding: 16px 36px;
	text-decoration: none;
}

@media (max-width: 1180px) {
	.subpage-detail {
		padding-right: 64px;
		padding-left: 64px;
	}

	.subpage-detail__content {
		margin: 0 -64px;
	}

	.subpage-row {
		padding: 72px 64px;
	}
}

@media (max-width: 900px) {
	.subpage-row__inner {
		grid-template-columns: 1fr;
		gap: 22px;
	}

	.subpage-row--reverse .subpage-row__media,
	.subpage-row--reverse .subpage-row__copy,
	.subpage-row__media,
	.subpage-row__copy {
		order: initial;
	}

	.subpage-detail__gallery {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 760px) {
	.subpage-detail {
		padding: 118px 24px 0;
	}

	.subpage-detail__content {
		margin: 0 -24px;
	}

	.subpage-row {
		padding: 56px 24px;
	}

	.about-page {
		padding-top: 118px;
	}

	.about-page__banner {
		min-height: 230px;
		border-radius: 22px;
	}

	.about-page__banner-copy {
		padding: 32px 22px;
	}

	.about-page__banner-copy h1 {
		font-size: clamp(36px, 12vw, 54px);
	}

	.subpage-detail__hero {
		padding-bottom: 56px;
	}

	.subpage-detail__hero h1 {
		font-size: 38px;
		line-height: 1.1;
	}

	.subpage-detail__gallery {
		grid-template-columns: 1fr;
		gap: 12px;
		padding: 56px 0;
	}

	.subpage-detail__cta {
		padding: 56px 0 92px;
	}

	.subpage-detail__cta-inner {
		padding: 40px 28px;
		border-radius: 22px;
	}
}

@media (max-width: 560px) {
	.subpage-detail {
		padding-right: 18px;
		padding-left: 18px;
	}

	.subpage-detail__content {
		margin: 0 -18px;
	}

	.subpage-row {
		padding: 48px 18px;
	}
}

