/* =========================================================================
   HINTERLAND · raw forest honey
   Cinematic editorial system. Mobile-first. Dark by design.
   ---------------------------------------------------------------------- */

:root {
	--ink: #070707;
	--coal: #0b0a08;
	--panel: #141310;
	--gold: #c8a45a;
	--amber: #d88c1e;
	--umber: #8a4e12;
	--bone: #f5f1e9;
	--mute: rgba(245, 241, 233, 0.56);
	--faint: rgba(245, 241, 233, 0.32);
	--line: rgba(200, 164, 90, 0.18);
	--line-soft: rgba(200, 164, 90, 0.1);

	--serif: "Cormorant Garamond", "Times New Roman", serif;
	--sans: "Inter", -apple-system, "Segoe UI", sans-serif;

	--gutter: clamp(1.25rem, 5vw, 6rem);
	--section: clamp(5.5rem, 14vw, 11rem);
	--ease-out: cubic-bezier(0.19, 1, 0.22, 1);
	--ease-soft: cubic-bezier(0.33, 1, 0.68, 1);
}

/* ------------------------------------------------------------ base reset */

*,
*::before,
*::after { box-sizing: border-box; }

html {
	scroll-behavior: smooth;
	-webkit-text-size-adjust: 100%;
}

html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }

body {
	margin: 0;
	background: var(--ink);
	color: var(--bone);
	font-family: var(--sans);
	font-weight: 300;
	font-size: 1rem;
	line-height: 1.7;
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}

img, video { max-width: 100%; height: auto; display: block; }

a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }

::selection { background: var(--gold); color: var(--ink); }

::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--ink); }
::-webkit-scrollbar-thumb { background: #2a2418; border-radius: 5px; }
::-webkit-scrollbar-thumb:hover { background: var(--umber); }

.skip-link {
	position: absolute;
	left: -999px;
	top: 0;
	z-index: 10001;
	padding: 0.75rem 1.25rem;
	background: var(--gold);
	color: var(--ink);
	font-size: 0.8rem;
}
.skip-link:focus { left: 0; }

/* Motion-managed elements start visible; the .js flag lets the script
   set initial states before first reveal, so nothing flashes. */

/* ------------------------------------------------------------------ type */

.section__title {
	margin: 0 0 1.5rem;
	font-family: var(--serif);
	font-weight: 500;
	font-size: clamp(2.7rem, 6.5vw, 5.6rem);
	line-height: 1.02;
	letter-spacing: -0.01em;
	color: var(--bone);
}
.section__title em {
	font-style: italic;
	color: var(--gold);
}

.section__meta {
	display: flex;
	align-items: center;
	gap: 1rem;
	margin: 0 0 2.25rem;
	font-size: 0.6875rem;
	font-weight: 500;
	letter-spacing: 0.34em;
	text-transform: uppercase;
	color: var(--gold);
}
.section__meta i {
	display: block;
	width: 56px;
	height: 1px;
	background: var(--line);
}

.section {
	position: relative;
	padding: var(--section) var(--gutter);
	max-width: 1520px;
	margin: 0 auto;
}

/* --------------------------------------------------------------- buttons */

.btn {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.6rem;
	padding: 1rem 2rem;
	font-size: 0.7rem;
	font-weight: 500;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	white-space: nowrap;
	transition: color 0.45s var(--ease-out), border-color 0.45s var(--ease-out), background-color 0.45s var(--ease-out);
}

.btn--gold {
	color: var(--gold);
	border: 1px solid rgba(200, 164, 90, 0.55);
	overflow: hidden;
	z-index: 0;
}
.btn--gold::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -1;
	background: var(--gold);
	transform: scaleY(0);
	transform-origin: bottom;
	transition: transform 0.5s var(--ease-out);
}
.btn--gold:hover { color: var(--ink); border-color: var(--gold); }
.btn--gold:hover::before { transform: scaleY(1); }

.btn--ghost {
	color: var(--bone);
	border: 1px solid rgba(245, 241, 233, 0.22);
}
.btn--ghost:hover { border-color: var(--gold); color: var(--gold); }

.btn--bare {
	padding: 1rem 0.25rem;
	color: var(--mute);
}
.btn--bare::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0.65rem;
	height: 1px;
	background: var(--line);
	transform-origin: left;
	transition: transform 0.5s var(--ease-out), background-color 0.3s;
}
.btn--bare:hover { color: var(--gold); }
.btn--bare:hover::after { background: var(--gold); }

.btn--wide { width: 100%; }

/* ---------------------------------------------------------------- loader */

.loader {
	position: fixed;
	inset: 0;
	z-index: 10000;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--ink);
	transition: transform 1s var(--ease-out), visibility 0s 1s;
}
.loader.is-done { transform: translateY(-100%); visibility: hidden; }

.loader__inner { text-align: center; width: min(320px, 78vw); }
.loader__crest { width: 64px; height: 64px; object-fit: contain; margin: 0 auto 1.4rem; opacity: 0.9; }
.loader__word {
	font-family: var(--serif);
	font-weight: 500;
	font-size: 1.35rem;
	letter-spacing: 0.52em;
	text-indent: 0.52em;
	color: var(--bone);
	margin-bottom: 1.6rem;
}
.loader__bar {
	height: 1px;
	background: rgba(200, 164, 90, 0.16);
	overflow: hidden;
	margin-bottom: 0.9rem;
}
.loader__bar span {
	display: block;
	height: 100%;
	width: 100%;
	background: var(--gold);
	transform: scaleX(0);
	transform-origin: left;
}
.loader__meta {
	display: flex;
	justify-content: space-between;
	font-size: 0.625rem;
	letter-spacing: 0.28em;
	text-transform: uppercase;
	color: var(--faint);
}

/* ----------------------------------------------------------------- grain */

.grain {
	position: fixed;
	inset: -50%;
	z-index: 9000;
	pointer-events: none;
	opacity: 0.055;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.72' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
	animation: grain-shift 0.9s steps(2) infinite;
}
@keyframes grain-shift {
	0% { transform: translate(0, 0); }
	50% { transform: translate(-1.5%, 1%); }
	100% { transform: translate(1%, -1.5%); }
}

/* ---------------------------------------------------------------- cursor */

.cursor { display: none; }
@media (pointer: fine) {
	.cursor {
		display: block;
		position: fixed;
		left: 0;
		top: 0;
		z-index: 9500;
		pointer-events: none;
	}
	.cursor__dot,
	.cursor__ring {
		position: fixed;
		left: 0;
		top: 0;
		border-radius: 50%;
		transform: translate(-50%, -50%);
	}
	.cursor__dot {
		width: 5px;
		height: 5px;
		background: var(--gold);
	}
	.cursor__ring {
		width: 34px;
		height: 34px;
		border: 1px solid rgba(200, 164, 90, 0.4);
		transition: width 0.3s var(--ease-soft), height 0.3s var(--ease-soft), border-color 0.3s;
	}
	.cursor.is-hover .cursor__ring {
		width: 56px;
		height: 56px;
		border-color: rgba(200, 164, 90, 0.85);
	}
}

/* -------------------------------------------------------------- masthead */

.masthead {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 8000;
	transition: transform 0.55s var(--ease-out), background-color 0.45s, border-color 0.45s;
	border-bottom: 1px solid transparent;
}
.masthead.is-scrolled {
	background: rgba(7, 7, 7, 0.72);
	-webkit-backdrop-filter: blur(14px);
	backdrop-filter: blur(14px);
	border-bottom-color: var(--line-soft);
}
.masthead.is-hidden { transform: translateY(-100%); }

.masthead__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1.5rem;
	max-width: 1520px;
	margin: 0 auto;
	padding: 1rem var(--gutter);
}

.masthead__brand {
	display: flex;
	align-items: center;
	gap: 0.8rem;
}
.masthead__crest { width: 38px; height: 38px; object-fit: contain; }
.masthead__word {
	font-family: var(--serif);
	font-weight: 500;
	font-size: 1.15rem;
	letter-spacing: 0.34em;
	text-transform: uppercase;
	color: var(--bone);
}

.masthead__nav { display: none; }
@media (min-width: 900px) {
	.masthead__nav {
		display: flex;
		gap: 2.4rem;
	}
	.masthead__nav a {
		position: relative;
		font-size: 0.7rem;
		font-weight: 500;
		letter-spacing: 0.24em;
		text-transform: uppercase;
		color: var(--mute);
		padding: 0.4rem 0;
		transition: color 0.3s;
	}
	.masthead__nav a::after {
		content: "";
		position: absolute;
		left: 0;
		bottom: 0;
		width: 100%;
		height: 1px;
		background: var(--gold);
		transform: scaleX(0);
		transform-origin: right;
		transition: transform 0.45s var(--ease-out);
	}
	.masthead__nav a:hover { color: var(--bone); }
	.masthead__nav a:hover::after { transform: scaleX(1); transform-origin: left; }
}

.masthead__cta { display: flex; align-items: center; gap: 1rem; }
.masthead__cta .btn--ghost { display: none; padding: 0.7rem 1.4rem; }
@media (min-width: 700px) { .masthead__cta .btn--ghost { display: inline-flex; } }

.masthead__toggle {
	position: relative;
	width: 40px;
	height: 40px;
	display: grid;
	place-items: center;
}
.masthead__toggle span {
	position: absolute;
	width: 22px;
	height: 1px;
	background: var(--bone);
	transition: transform 0.4s var(--ease-out);
}
.masthead__toggle span:first-child { transform: translateY(-4px); }
.masthead__toggle span:last-child { transform: translateY(4px); }
.masthead__toggle[aria-expanded="true"] span:first-child { transform: rotate(45deg); }
.masthead__toggle[aria-expanded="true"] span:last-child { transform: rotate(-45deg); }
@media (min-width: 900px) { .masthead__toggle { display: none; } }

.mobile-nav[hidden] { display: none; }
.mobile-nav {
	position: fixed;
	inset: 0;
	z-index: 7900;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 6rem var(--gutter) 3rem;
	background: rgba(7, 7, 7, 0.94);
	-webkit-backdrop-filter: blur(20px);
	backdrop-filter: blur(20px);
	opacity: 0;
	transition: opacity 0.45s var(--ease-soft);
}
.mobile-nav.is-open { opacity: 1; }
.mobile-nav nav { display: grid; gap: 0.4rem; }
.mobile-nav nav a {
	display: flex;
	align-items: baseline;
	gap: 1.1rem;
	padding: 0.9rem 0;
	border-bottom: 1px solid var(--line-soft);
	font-family: var(--serif);
	font-size: clamp(1.9rem, 8vw, 2.6rem);
	font-weight: 500;
	color: var(--bone);
	transform: translateY(18px);
	opacity: 0;
	transition: transform 0.6s var(--ease-out), opacity 0.6s var(--ease-out);
}
.mobile-nav.is-open nav a { transform: translateY(0); opacity: 1; }
.mobile-nav.is-open nav a:nth-child(2) { transition-delay: 0.05s; }
.mobile-nav.is-open nav a:nth-child(3) { transition-delay: 0.1s; }
.mobile-nav.is-open nav a:nth-child(4) { transition-delay: 0.15s; }
.mobile-nav.is-open nav a:nth-child(5) { transition-delay: 0.2s; }
.mobile-nav nav a span {
	font-family: var(--sans);
	font-size: 0.65rem;
	letter-spacing: 0.3em;
	color: var(--gold);
}
.mobile-nav__meta {
	margin-top: 2.5rem;
	font-size: 0.65rem;
	letter-spacing: 0.3em;
	text-transform: uppercase;
	color: var(--faint);
}

/* ------------------------------------------------------------------ hero */

.hero {
	position: relative;
	min-height: 100svh;
	display: flex;
	align-items: flex-end;
	overflow: hidden;
}

.hero__media { position: absolute; inset: 0; }
.hero__video {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transform: scale(1.05);
}
.hero__shade {
	position: absolute;
	inset: 0;
	background:
		radial-gradient(120% 90% at 70% 20%, transparent 40%, rgba(7, 7, 7, 0.55) 100%),
		linear-gradient(180deg, rgba(7, 7, 7, 0.55) 0%, rgba(7, 7, 7, 0.05) 34%, rgba(7, 7, 7, 0.82) 82%, var(--ink) 100%);
}

.hero__content {
	position: relative;
	z-index: 2;
	width: 100%;
	max-width: 1520px;
	margin: 0 auto;
	padding: 8rem var(--gutter) clamp(5rem, 12vh, 8.5rem);
}

.hero__kicker {
	margin: 0 0 1.6rem;
	font-size: 0.6875rem;
	font-weight: 500;
	letter-spacing: 0.4em;
	text-transform: uppercase;
	color: var(--gold);
}

.hero__title {
	margin: 0 0 1.8rem;
	font-family: var(--serif);
	font-weight: 500;
	font-size: clamp(3.4rem, 11vw, 9.2rem);
	line-height: 0.96;
	letter-spacing: -0.015em;
	color: var(--bone);
}
.hero__title em { font-style: italic; color: var(--gold); }

.hero__lede {
	max-width: 34rem;
	margin: 0 0 2.4rem;
	font-size: clamp(0.95rem, 1.4vw, 1.06rem);
	color: var(--mute);
}

.hero__actions { display: flex; flex-wrap: wrap; gap: 1.1rem; align-items: center; }

.hero__aside {
	position: absolute;
	right: calc(var(--gutter) * 0.6);
	bottom: clamp(5rem, 12vh, 8.5rem);
	z-index: 2;
	display: none;
	flex-direction: column;
	gap: 1.2rem;
	writing-mode: vertical-rl;
	font-size: 0.6rem;
	letter-spacing: 0.34em;
	color: var(--faint);
}
@media (min-width: 1100px) { .hero__aside { display: flex; } }

.hero__cue {
	position: absolute;
	left: 50%;
	bottom: 1.9rem;
	z-index: 2;
	transform: translateX(-50%);
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.7rem;
}
.hero__cue-label {
	font-size: 0.6rem;
	letter-spacing: 0.4em;
	text-transform: uppercase;
	color: var(--faint);
}
.hero__cue-line {
	width: 1px;
	height: 52px;
	background: var(--line);
	position: relative;
	overflow: hidden;
}
.hero__cue-line::after {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: var(--gold);
	animation: cue-drip 2.2s var(--ease-soft) infinite;
}
@keyframes cue-drip {
	0% { transform: translateY(-100%); }
	55% { transform: translateY(0); }
	100% { transform: translateY(100%); }
}

/* ----------------------------------------------------------------- story */

.story { overflow: visible; }

.story__watermark {
	position: absolute;
	top: clamp(2rem, 6vw, 5rem);
	left: 0;
	z-index: 0;
	font-family: var(--serif);
	font-weight: 600;
	font-size: clamp(6rem, 19vw, 17rem);
	line-height: 1;
	letter-spacing: 0.06em;
	color: transparent;
	-webkit-text-stroke: 1px rgba(200, 164, 90, 0.12);
	white-space: nowrap;
	pointer-events: none;
	user-select: none;
}

.story__grid {
	position: relative;
	z-index: 1;
	display: grid;
	gap: 3rem;
}
@media (min-width: 1000px) {
	.story__grid { grid-template-columns: 5fr 6fr; gap: clamp(3rem, 7vw, 7rem); }
	.story__sticky { position: sticky; top: 22vh; align-self: start; }
}

.story__aside {
	max-width: 21rem;
	margin: 2rem 0 0;
	padding-left: 1.2rem;
	border-left: 1px solid var(--line);
	font-size: 0.85rem;
	color: var(--mute);
}

.story__lead {
	font-family: var(--serif);
	font-size: clamp(1.35rem, 2.4vw, 1.8rem);
	line-height: 1.45;
	color: var(--bone);
	margin: 0 0 1.6rem;
}
.story__lead::first-letter {
	float: left;
	font-size: 3.4em;
	line-height: 0.82;
	padding: 0.06em 0.12em 0 0;
	color: var(--gold);
}
.story__body > p { color: var(--mute); max-width: 38rem; }

.story__stack {
	position: relative;
	margin: 3.5rem 0 0;
	display: grid;
	gap: 1.5rem;
}
@media (min-width: 700px) {
	.story__stack { grid-template-columns: 7fr 5fr; align-items: start; }
	.story__img--off { margin-top: 6rem; }
}
.story__img { overflow: hidden; }
.story__img img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; }
.story__img--off img { aspect-ratio: 1; }

.story__quote {
	margin: 4rem 0 0;
	padding-top: 2.2rem;
	border-top: 1px solid var(--line);
	font-family: var(--serif);
	font-style: italic;
	font-weight: 500;
	font-size: clamp(1.6rem, 3.2vw, 2.4rem);
	line-height: 1.3;
	color: var(--gold);
	max-width: 34rem;
}

/* --------------------------------------------------------------- marquee */

.marquee {
	overflow: hidden;
	padding: 1.6rem 0;
	border-top: 1px solid var(--line-soft);
	border-bottom: 1px solid var(--line-soft);
	background: var(--coal);
}
.marquee__track {
	display: flex;
	align-items: center;
	gap: 2.6rem;
	width: max-content;
	animation: marquee-run 30s linear infinite;
}
.marquee__track span {
	font-family: var(--serif);
	font-style: italic;
	font-size: clamp(1.05rem, 2vw, 1.5rem);
	color: var(--mute);
	white-space: nowrap;
}
.marquee__track i {
	font-style: normal;
	font-size: 0.8rem;
	color: var(--gold);
}
@keyframes marquee-run {
	from { transform: translateX(0); }
	to { transform: translateX(-50%); }
}

/* ------------------------------------------------------------------- why */

.why__grid {
	display: grid;
	gap: 2.5rem;
	margin-top: 3rem;
}
@media (min-width: 800px) {
	.why__grid { grid-template-columns: 1fr 1fr; gap: clamp(2.5rem, 5vw, 5rem); }
	.why__item:nth-child(even) { margin-top: 3.5rem; }
}

.why__item {
	padding-top: 1.8rem;
	border-top: 1px solid var(--line);
	transition: border-color 0.5s;
}
.why__item:hover { border-top-color: var(--gold); }

.why__num {
	display: block;
	font-family: var(--serif);
	font-style: italic;
	font-size: 2.1rem;
	color: transparent;
	-webkit-text-stroke: 1px rgba(200, 164, 90, 0.5);
	margin-bottom: 1.1rem;
	transition: color 0.5s;
}
.why__item:hover .why__num { color: var(--gold); }

.why__item h3 {
	margin: 0 0 0.8rem;
	font-family: var(--serif);
	font-weight: 500;
	font-size: clamp(1.5rem, 2.4vw, 1.9rem);
	color: var(--bone);
}
.why__item p { margin: 0; max-width: 26rem; color: var(--mute); font-size: 0.95rem; }

/* ----------------------------------------------------------------- honey */

.honey__grid {
	display: grid;
	gap: 3rem;
	margin-top: 3rem;
	align-items: center;
}
@media (min-width: 1000px) {
	.honey__grid { grid-template-columns: 6fr 5fr; gap: clamp(3rem, 6vw, 6.5rem); }
}

.honey__showcase {
	position: relative;
	aspect-ratio: 4 / 5;
	max-height: 78vh;
}
.honey__glow {
	position: absolute;
	inset: 8%;
	background: radial-gradient(50% 50% at 50% 55%, rgba(216, 140, 30, 0.22) 0%, transparent 70%);
	filter: blur(24px);
}
.honey__jar {
	position: absolute;
	inset: 0;
	margin: 0;
	border: 1px solid var(--line-soft);
	overflow: hidden;
	opacity: 0;
	transform: scale(1.02);
	transition: opacity 0.7s var(--ease-soft), transform 0.7s var(--ease-soft);
	pointer-events: none;
}
.honey__jar.is-active { opacity: 1; transform: scale(1); }
.honey__jar img { width: 100%; height: 100%; object-fit: cover; }

.honey__tabs {
	display: flex;
	flex-wrap: wrap;
	gap: 0.4rem 1.8rem;
	margin-bottom: 2rem;
	border-bottom: 1px solid var(--line-soft);
}
.honey__tab {
	position: relative;
	padding: 0.8rem 0.1rem;
	font-size: 0.72rem;
	font-weight: 500;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--faint);
	transition: color 0.35s;
}
.honey__tab::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: -1px;
	width: 100%;
	height: 1px;
	background: var(--gold);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.5s var(--ease-out);
}
.honey__tab:hover { color: var(--mute); }
.honey__tab.is-active { color: var(--gold); }
.honey__tab.is-active::after { transform: scaleX(1); }

.honey__detail {
	display: none;
}
.honey__detail.is-active { display: block; animation: detail-in 0.6s var(--ease-out); }
@keyframes detail-in {
	from { opacity: 0; transform: translateY(14px); }
	to { opacity: 1; transform: translateY(0); }
}

.honey__note {
	font-family: var(--serif);
	font-size: clamp(1.25rem, 2vw, 1.55rem);
	line-height: 1.5;
	color: var(--bone);
	margin: 0 0 1.6rem;
}

.honey__tags {
	display: flex;
	flex-wrap: wrap;
	gap: 0.6rem;
	margin: 0 0 2.2rem;
	padding: 0;
	list-style: none;
}
.honey__tags li {
	padding: 0.45rem 0.95rem;
	border: 1px solid var(--line);
	font-size: 0.62rem;
	letter-spacing: 0.24em;
	text-transform: uppercase;
	color: var(--mute);
}

.honey__badges {
	display: flex;
	flex-wrap: wrap;
	gap: 2rem 3.5rem;
	justify-content: center;
	margin: clamp(4rem, 8vw, 6rem) 0 0;
	padding: 2.4rem 0 0;
	border-top: 1px solid var(--line-soft);
	list-style: none;
}
.honey__badges li {
	display: flex;
	align-items: center;
	gap: 0.9rem;
	font-size: 0.68rem;
	font-weight: 500;
	letter-spacing: 0.26em;
	text-transform: uppercase;
	color: var(--mute);
}
.honey__badges svg { width: 30px; height: 30px; color: var(--gold); flex: none; }

/* ------------------------------------------------------------------ band */

.band {
	position: relative;
	height: clamp(24rem, 68vh, 40rem);
	overflow: hidden;
	display: grid;
	place-items: center;
}
.band__media {
	position: absolute;
	inset: -18% 0;
}
.band__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0.5;
}
.band::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, var(--ink) 0%, transparent 30%, transparent 70%, var(--ink) 100%);
}
.band__quote {
	position: relative;
	z-index: 2;
	margin: 0;
	padding: 0 var(--gutter);
	max-width: 46rem;
	text-align: center;
	font-family: var(--serif);
	font-style: italic;
	font-size: clamp(1.6rem, 3.4vw, 2.6rem);
	line-height: 1.35;
	color: var(--bone);
}

/* --------------------------------------------------------------- journey */

.journey__timeline {
	position: relative;
	margin-top: clamp(3rem, 7vw, 5.5rem);
	display: grid;
	gap: clamp(3.5rem, 8vw, 7rem);
}

.journey__line {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 8px;
	width: 1px;
	background: var(--line-soft);
}
@media (min-width: 800px) { .journey__line { left: 50%; } }
.journey__line span {
	display: block;
	width: 100%;
	height: 100%;
	background: linear-gradient(180deg, var(--gold), var(--amber));
	transform: scaleY(0);
	transform-origin: top;
}

.journey__step {
	position: relative;
	display: grid;
	gap: 1.4rem;
	padding-left: 2.4rem;
}
.journey__step::before {
	content: "";
	position: absolute;
	left: 5px;
	top: 0.4rem;
	width: 7px;
	height: 7px;
	border-radius: 50%;
	border: 1px solid var(--gold);
	background: var(--ink);
	transition: background-color 0.4s;
}
.journey__step.is-passed::before { background: var(--gold); }

@media (min-width: 800px) {
	.journey__step {
		grid-template-columns: 1fr 1fr;
		gap: clamp(2.5rem, 6vw, 6rem);
		padding-left: 0;
		align-items: center;
	}
	.journey__step::before {
		left: 50%;
		top: 50%;
		transform: translate(-50%, -50%);
	}
	.journey__step:nth-child(even) .journey__media { order: 2; }
	.journey__step:nth-child(even) .journey__text { order: 1; text-align: right; justify-items: end; }
	.journey__step:nth-child(even) .journey__text p { margin-left: auto; }
}

.journey__media { overflow: hidden; }
.journey__media img { width: 100%; aspect-ratio: 16 / 11; object-fit: cover; }

.journey__num {
	display: block;
	font-family: var(--serif);
	font-style: italic;
	font-size: 1.9rem;
	color: transparent;
	-webkit-text-stroke: 1px rgba(200, 164, 90, 0.5);
	margin-bottom: 0.7rem;
}
.journey__text h3 {
	margin: 0 0 0.7rem;
	font-family: var(--serif);
	font-weight: 500;
	font-size: clamp(1.6rem, 2.6vw, 2.1rem);
	color: var(--bone);
}
.journey__text p { margin: 0; max-width: 24rem; color: var(--mute); font-size: 0.95rem; }

/* ---------------------------------------------------------------- voices */

.voices { overflow: hidden; }
.voices__glow {
	position: absolute;
	right: -12%;
	top: 10%;
	width: 55vw;
	height: 55vw;
	max-width: 700px;
	max-height: 700px;
	background: radial-gradient(50% 50% at 50% 50%, rgba(216, 140, 30, 0.12) 0%, transparent 70%);
	filter: blur(20px);
	pointer-events: none;
}

.voices__grid {
	display: grid;
	gap: 1.6rem;
	margin-top: 3rem;
}
@media (min-width: 900px) { .voices__grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 900px) { .voice:nth-child(2) { margin-top: 2.5rem; } }

.voice {
	position: relative;
	margin: 0;
	padding: 2.6rem 2.2rem 2.2rem;
	background: linear-gradient(165deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.015) 100%);
	border: 1px solid rgba(200, 164, 90, 0.2);
	-webkit-backdrop-filter: blur(16px);
	backdrop-filter: blur(16px);
}
.voice::before {
	content: "\201C";
	position: absolute;
	top: 0.4rem;
	left: 1.6rem;
	font-family: var(--serif);
	font-size: 4.2rem;
	line-height: 1;
	color: rgba(200, 164, 90, 0.35);
}
.voice blockquote {
	margin: 1rem 0 1.6rem;
	font-family: var(--serif);
	font-size: 1.2rem;
	line-height: 1.55;
	color: var(--bone);
}
.voice figcaption {
	font-size: 0.72rem;
	font-weight: 500;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--gold);
}
.voice figcaption span {
	display: block;
	margin-top: 0.3rem;
	color: var(--faint);
	letter-spacing: 0.18em;
}

/* --------------------------------------------------------------- reserve */

.reserve {
	background: var(--coal);
	border-top: 1px solid var(--line-soft);
}
.reserve__grid {
	max-width: 1520px;
	margin: 0 auto;
	padding: var(--section) var(--gutter);
	display: grid;
	gap: 3.5rem;
}
@media (min-width: 1000px) {
	.reserve__grid { grid-template-columns: 1fr 1fr; gap: clamp(3.5rem, 8vw, 8rem); align-items: start; }
}
.reserve__intro p { max-width: 26rem; color: var(--mute); }

.reserve__notice {
	margin: 0 0 1.6rem;
	padding: 1rem 1.2rem;
	font-size: 0.85rem;
	border: 1px solid var(--line);
}
.reserve__notice--ok { color: var(--gold); border-color: rgba(200, 164, 90, 0.5); }
.reserve__notice--err { color: #e08c8c; border-color: rgba(224, 140, 140, 0.4); }

.reserve__meadow { position: absolute; left: -9999px; }

.field { margin-bottom: 1.7rem; }
.field label {
	display: block;
	margin-bottom: 0.55rem;
	font-size: 0.62rem;
	font-weight: 500;
	letter-spacing: 0.28em;
	text-transform: uppercase;
	color: var(--mute);
}
.field input,
.field textarea {
	width: 100%;
	padding: 0.85rem 0.1rem;
	background: transparent;
	border: 0;
	border-bottom: 1px solid var(--line);
	color: var(--bone);
	font-family: var(--sans);
	font-size: 1rem;
	font-weight: 300;
	transition: border-color 0.35s;
}
.field input:focus,
.field textarea:focus {
	outline: none;
	border-bottom-color: var(--gold);
}
.field textarea { resize: vertical; }

/* -------------------------------------------------------------- colophon */

.colophon {
	position: relative;
	border-top: 1px solid var(--line-soft);
	background: var(--ink);
}

.colophon__hero {
	padding: clamp(5rem, 12vw, 9rem) var(--gutter) clamp(3rem, 7vw, 5rem);
	text-align: center;
}
.colophon__line {
	margin: 0;
	font-family: var(--serif);
	font-style: italic;
	font-weight: 500;
	font-size: clamp(2.6rem, 8vw, 6.5rem);
	line-height: 1.05;
	color: var(--bone);
}
.colophon__sub {
	margin: 1.4rem 0 0;
	font-size: 0.72rem;
	letter-spacing: 0.34em;
	text-transform: uppercase;
	color: var(--gold);
}

.colophon__grid {
	max-width: 1520px;
	margin: 0 auto;
	padding: 3rem var(--gutter);
	display: grid;
	gap: 2.5rem;
	border-top: 1px solid var(--line-soft);
}
@media (min-width: 800px) {
	.colophon__grid { grid-template-columns: 1fr auto auto; align-items: center; gap: 4rem; }
}

.colophon__brand { display: flex; align-items: center; gap: 1.1rem; }
.colophon__brand img { width: 48px; height: 48px; object-fit: contain; }
.colophon__brand p {
	margin: 0;
	font-family: var(--serif);
	font-size: 1.1rem;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	line-height: 1.5;
}
.colophon__brand p span {
	font-family: var(--sans);
	font-size: 0.6rem;
	letter-spacing: 0.3em;
	color: var(--faint);
}

.colophon__nav { display: flex; flex-wrap: wrap; gap: 1.8rem; }
.colophon__nav a,
.colophon__meta a {
	font-size: 0.68rem;
	font-weight: 500;
	letter-spacing: 0.24em;
	text-transform: uppercase;
	color: var(--mute);
	transition: color 0.3s;
}
.colophon__nav a:hover,
.colophon__meta a:hover { color: var(--gold); }

.colophon__meta { display: flex; align-items: center; gap: 1.8rem; }
.colophon__meta p {
	margin: 0;
	font-size: 0.62rem;
	letter-spacing: 0.28em;
	text-transform: uppercase;
	color: var(--faint);
}

.colophon__legal {
	max-width: 1520px;
	margin: 0 auto;
	padding: 1.6rem var(--gutter) 2rem;
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	justify-content: space-between;
	align-items: center;
	border-top: 1px solid var(--line-soft);
}
.colophon__legal p {
	margin: 0;
	font-size: 0.68rem;
	letter-spacing: 0.14em;
	color: var(--faint);
}
.colophon__top {
	font-size: 0.62rem;
	font-weight: 500;
	letter-spacing: 0.28em;
	text-transform: uppercase;
	color: var(--mute);
	transition: color 0.3s;
}
.colophon__top:hover { color: var(--gold); }

/* ---------------------------------------------------------- plain (fallback) */

.plain { min-height: 70vh; padding: 10rem var(--gutter) 6rem; }
.plain__inner { max-width: 46rem; margin: 0 auto; }
.plain__title {
	font-family: var(--serif);
	font-weight: 500;
	font-size: clamp(2.4rem, 6vw, 4rem);
	color: var(--bone);
}
.plain__content a, .plain__inner a { color: var(--gold); }

/* -------------------------------------------------- cinematic photo grade
   Product photography arrives as honest daylight shots; this grade pulls
   every image into the film-dark world of the brand. */

.story__img,
.journey__media,
.honey__jar {
	position: relative;
	background: var(--coal);
}
.story__img img,
.journey__media img,
.honey__jar img {
	filter: brightness(0.8) contrast(1.1) saturate(1.06) sepia(0.14);
}
.story__img::after,
.journey__media::after,
.honey__jar::after {
	content: "";
	position: absolute;
	inset: 0;
	pointer-events: none;
	background:
		linear-gradient(180deg, rgba(7, 7, 7, 0.34) 0%, transparent 32%, transparent 66%, rgba(7, 7, 7, 0.5) 100%),
		radial-gradient(130% 105% at 50% 42%, transparent 52%, rgba(7, 7, 7, 0.62) 100%);
}
.band__media::after {
	content: "";
	position: absolute;
	inset: 0;
	pointer-events: none;
	background: radial-gradient(120% 100% at 50% 50%, transparent 40%, rgba(7, 7, 7, 0.7) 100%);
}

/* -------------------------------------------------------- reveal helpers */

[data-img-reveal] { position: relative; }
html.js [data-img-reveal] {
	clip-path: inset(0 0 100% 0);
}
html.js [data-img-reveal] img { transform: scale(1.18); }
html.js [data-img-reveal].is-shown {
	clip-path: inset(0 0 0% 0);
	transition: clip-path 1.2s var(--ease-out);
}
html.js [data-img-reveal].is-shown img {
	transform: scale(1);
	transition: transform 1.5s var(--ease-out);
}

html.js [data-reveal]:not([data-reveal="lines"]) {
	opacity: 0;
	transform: translateY(26px);
}
html.js [data-reveal]:not([data-reveal="lines"]).is-shown {
	opacity: 1;
	transform: translateY(0);
	transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}

/* Line masks (headings split on their authored <br>) */
.line-mask {
	display: block;
	overflow: hidden;
	padding-bottom: 0.08em;
	margin-bottom: -0.08em;
}
.line-mask .line {
	display: block;
	will-change: transform;
}

/* --------------------------------------------------------- reduced motion */

@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	.grain, .hero__cue-line::after { animation: none; }
	.marquee__track { animation: none; flex-wrap: wrap; }
	html.js [data-reveal], html.js [data-img-reveal] {
		opacity: 1 !important;
		transform: none !important;
		clip-path: none !important;
	}
	html.js [data-img-reveal] img { transform: none !important; }
	.cursor { display: none !important; }
}
