/* ─── Hero ─── */
.hero {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.hero-image {
	width: min(420px, 78vw);
	height: auto;
	display: block;
}

.hero h1 {
	font-family: var(--font-display);
	font-size: 5rem;
	font-weight: 800;
	text-align: center;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	padding: var(--space-xl) var(--space-xl) 0;
}

.hero-divider {
	width: 36px;
	height: 1px;
	background: var(--black);
	margin: var(--space-lg) auto 0;
}

/* ─── Story ─── */
.story {
	max-width: var(--story-max-width);
	margin: 0 auto;
	padding: var(--space-2xl) var(--space-xl);
	text-align: center;
}

.story p {
	font-size: var(--text-base);
	line-height: 1.7;
	margin-bottom: var(--space-lg);
	color: var(--black);
}

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

.story .attribution {
	font-style: italic;
	color: var(--grey);
	margin-top: var(--space-lg);
}

/* ─── Edition Status ─── */
.edition {
	max-width: var(--content-max-width);
	margin: 0 auto;
	padding: var(--space-xl);
	background: var(--banner-bg);
	border: 1px solid var(--border-light);
	border-radius: 0;
	text-align: center;
}

.edition h2 {
	font-family: var(--font-display);
	font-size: var(--text-xs);
	font-weight: 800;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: var(--grey);
	margin-bottom: var(--space-md);
}

.edition-status {
	font-size: var(--text-xl);
	font-weight: 500;
	margin-bottom: var(--space-xs);
}

.edition-range {
	font-size: var(--text-sm);
	color: var(--grey);
	margin-bottom: var(--space-md);
}

.edition p {
	font-size: var(--text-sm);
	color: var(--grey);
	line-height: 1.6;
}

/* ─── Carousel Dots ─── */
.carousel-dots {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	max-width: 320px;
	margin: 0 auto;
	padding: var(--space-xl) 0;
	gap: 8px;
}

.dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: var(--dot-inactive);
	transition: background-color 0.2s;
	flex-shrink: 0;
}

.dot.active {
	background: var(--dot-active);
}

/* ─── Technical Specifications ─── */
.specs {
	max-width: var(--content-max-width);
	margin: 0 auto;
	padding: 0 var(--space-xl) var(--space-3xl);
}

.specs h2 {
	font-family: var(--font-display);
	font-size: var(--text-xs);
	font-weight: 800;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: var(--grey);
	margin-bottom: var(--space-xl);
	text-align: center;
}

.specs-table {
	width: 100%;
	border-collapse: collapse;
}

.specs-table tr {
	border-bottom: 1px solid var(--border-light);
}

.specs-table tr:last-child {
	border-bottom: none;
}

.specs-table td {
	padding: var(--space-md) 0;
	vertical-align: top;
}

.specs-table .spec-label {
	font-family: var(--font-body);
	font-size: var(--text-xs);
	letter-spacing: 1.5px;
	text-transform: uppercase;
	color: var(--grey);
	width: 40%;
	padding-right: var(--space-xl);
}

.specs-table .spec-value {
	font-size: var(--text-sm);
	line-height: 1.5;
	color: var(--black);
}

/* ─── Responsive ─── */
@media (max-width: 768px) {
	.hero h1 {
		font-size: var(--text-2xl);
		padding: var(--space-lg) var(--space-md) 0;
	}

	.story {
		padding: var(--space-xl) var(--space-md);
	}

	.specs-table .spec-label {
		width: 35%;
	}
}

@media (max-width: 480px) {
	.hero h1 {
		font-size: var(--text-xl);
	}

	.specs-table td {
		padding: var(--space-sm) 0;
	}

	.specs-table .spec-label {
		display: block;
		width: 100%;
		padding-bottom: 2px;
	}

	.specs-table .spec-value {
		display: block;
		width: 100%;
		padding-bottom: var(--space-sm);
	}

	.specs-table tr {
		display: block;
		padding: var(--space-sm) 0;
	}
}
