/* ──────────────────────────────────────────
   STORY PAGE — cinematic editorial system
   Shared by About + Vineyard. Dark, serif, image-led, scroll-revealed.
─────────────────────────────────────────── */
.story { background: var(--dark); }

/* ── Hero (full-screen, Ken Burns) ─────────── */
.story-hero {
	position: relative;
	height: 100vh;
	min-height: 600px;
	display: flex;
	align-items: flex-end;
	overflow: hidden;
}
.story-hero-bg {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	animation: storyKen 22s var(--ease-out-quint) forwards;
}
@keyframes storyKen {
	from { transform: scale(1.16); }
	to   { transform: scale(1); }
}
.story-hero::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(to bottom, rgba(19,19,19,0.5) 0%, rgba(19,19,19,0.04) 34%, rgba(19,19,19,0.5) 68%, var(--dark) 100%);
}
.story-hero-inner {
	position: relative;
	z-index: 2;
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 clamp(24px, 5vw, 64px) clamp(64px, 11vh, 130px);
}
.story-eyebrow {
	display: block;
	font-family: var(--sans);
	text-transform: uppercase;
	letter-spacing: 0.4em;
	font-size: 0.74rem;
	color: var(--light-dim);
	margin-bottom: 26px;
}
.story-hero-title {
	font-family: var(--serif);
	font-weight: 500;
	line-height: 1;
	font-size: clamp(3rem, 9vw, 7rem);
	letter-spacing: -0.01em;
	color: var(--light);
}
.story-hero-sub {
	margin-top: 30px;
	max-width: 48ch;
	font-family: var(--sans);
	font-size: clamp(1rem, 1.4vw, 1.18rem);
	line-height: 1.85;
	color: var(--light-dim);
}
.story-scroll {
	position: absolute;
	left: 50%;
	bottom: 32px;
	transform: translateX(-50%);
	z-index: 2;
	width: 1px;
	height: 56px;
	background: var(--light-faint);
	overflow: hidden;
}
.story-scroll::after {
	content: "";
	position: absolute;
	left: 0;
	top: -50%;
	width: 100%;
	height: 50%;
	background: var(--light);
	animation: storyScroll 2.4s cubic-bezier(0.7, 0, 0.3, 1) infinite;
}
@keyframes storyScroll {
	0%   { top: -50%; }
	100% { top: 100%; }
}

/* ── Big statement ─────────────────────────── */
.story-statement {
	max-width: 1000px;
	margin: 0 auto;
	padding: clamp(90px, 16vh, 180px) clamp(24px, 5vw, 40px);
	text-align: center;
}
.story-statement p {
	font-family: var(--serif);
	font-weight: 400;
	font-size: clamp(1.6rem, 3.8vw, 2.9rem);
	line-height: 1.4;
	color: var(--light);
}

/* ── Editable prose ────────────────────────── */
.story-prose {
	max-width: 720px;
	margin: 0 auto;
	padding: 0 clamp(24px, 5vw, 40px) clamp(40px, 8vh, 90px);
}

/* ── Split (image + text) ──────────────────── */
.story-split {
	max-width: 1240px;
	margin: 0 auto;
	padding: clamp(50px, 8vh, 90px) clamp(24px, 5vw, 64px);
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: clamp(30px, 5vw, 80px);
	align-items: center;
}
.story-split.reverse .story-split-media { order: 2; }
.story-split-media {
	position: relative;
	aspect-ratio: 4 / 5;
	overflow: hidden;
}
.story-split-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.story-split-index {
	font-family: var(--serif);
	font-size: 0.95rem;
	letter-spacing: 0.2em;
	color: var(--light-faint);
	margin-bottom: 18px;
}
.story-split-title {
	font-family: var(--serif);
	font-weight: 500;
	font-size: clamp(1.8rem, 3.5vw, 2.8rem);
	line-height: 1.1;
	color: var(--light);
	margin-bottom: 24px;
}
.story-split-text {
	font-family: var(--sans);
	font-size: 1.05rem;
	line-height: 1.95;
	color: var(--light-dim);
}
.story-split-text p { margin-bottom: 1.2em; }

/* ── Quote band (parallax) ─────────────────── */
.story-band {
	position: relative;
	min-height: 70vh;
	display: flex;
	align-items: center;
	justify-content: center;
	background-size: cover;
	background-position: center;
	background-attachment: fixed;
}
.story-band::after {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(10, 10, 10, 0.66);
}
.story-band-inner {
	position: relative;
	z-index: 2;
	max-width: 900px;
	padding: 0 24px;
	text-align: center;
}
.story-band blockquote {
	font-family: var(--serif);
	font-style: italic;
	font-size: clamp(1.7rem, 4.2vw, 3rem);
	line-height: 1.3;
	color: var(--light);
}
.story-band cite {
	display: block;
	margin-top: 30px;
	font-style: normal;
	font-family: var(--sans);
	text-transform: uppercase;
	letter-spacing: 0.24em;
	font-size: 0.74rem;
	color: var(--light-dim);
}

/* ── Stats ─────────────────────────────────── */
.story-stats {
	max-width: 1100px;
	margin: 0 auto;
	padding: clamp(80px, 12vh, 130px) clamp(24px, 5vw, 40px);
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 30px;
	text-align: center;
}
.story-stat-value {
	font-family: var(--serif);
	font-weight: 500;
	font-size: clamp(2.6rem, 5.5vw, 4.4rem);
	line-height: 1;
	color: var(--light);
}
.story-stat-label {
	margin-top: 16px;
	font-family: var(--sans);
	text-transform: uppercase;
	letter-spacing: 0.22em;
	font-size: 0.72rem;
	color: var(--light-dim);
}

/* ── Awards ────────────────────────────────── */
.story-awards {
	max-width: 1100px;
	margin: 0 auto;
	padding: clamp(70px, 11vh, 120px) clamp(24px, 5vw, 40px);
	text-align: center;
	border-top: 1px solid var(--light-ghost);
}
.story-awards-eyebrow {
	display: block;
	font-family: var(--sans);
	text-transform: uppercase;
	letter-spacing: 0.3em;
	font-size: 0.72rem;
	color: var(--light-dim);
	margin-bottom: 18px;
}
.story-awards-title {
	font-family: var(--serif);
	font-weight: 500;
	font-size: clamp(1.8rem, 4vw, 2.8rem);
	color: var(--light);
	margin-bottom: 50px;
}
.story-medals {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: clamp(30px, 6vw, 80px);
}
.story-medal {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 14px;
	max-width: 220px;
}
.story-medal img {
	width: 120px;
	height: 120px;
	object-fit: contain;
}
.story-medal-year {
	font-family: var(--serif);
	font-size: 1.4rem;
	color: var(--light);
}
.story-medal-name {
	font-family: var(--sans);
	font-size: 0.82rem;
	line-height: 1.6;
	color: var(--light-dim);
}

/* ── CTA ───────────────────────────────────── */
.story-cta {
	text-align: center;
	padding: clamp(80px, 12vh, 140px) 24px clamp(100px, 15vh, 160px);
}
.story-cta-eyebrow {
	display: block;
	font-family: var(--sans);
	text-transform: uppercase;
	letter-spacing: 0.3em;
	font-size: 0.72rem;
	color: var(--light-dim);
	margin-bottom: 26px;
}
.story-cta-link {
	font-family: var(--serif);
	font-size: clamp(1.6rem, 3.5vw, 2.4rem);
	color: var(--light);
	text-decoration: none;
	border-bottom: 1px solid var(--light-faint);
	padding-bottom: 8px;
	transition: border-color 0.4s var(--ease-out-quint);
}
.story-cta-link:hover { border-color: var(--light); }

/* ── Scroll reveal ─────────────────────────── */
.sp-reveal {
	opacity: 0;
	transform: translateY(32px);
	transition: opacity 1.1s var(--ease-out-quint), transform 1.1s var(--ease-out-quint);
}
.sp-reveal.is-visible {
	opacity: 1;
	transform: none;
}

/* ── Responsive ────────────────────────────── */
@media (max-width: 860px) {
	.story-hero { height: 86vh; }
	.story-split { grid-template-columns: 1fr; gap: 28px; }
	.story-split.reverse .story-split-media { order: 0; }
	.story-split-media { aspect-ratio: 3 / 2; }
	.story-stats { grid-template-columns: repeat(2, 1fr); gap: 50px 20px; }
	.story-band { background-attachment: scroll; min-height: 54vh; }
}
