/* ============================================================
   Journey Productions — editorial one-page
   ============================================================ */

:root {
	--bg: #0e0d0c;
	--bg-raised: #161412;
	--ink: #f3ede4;
	--ink-dim: #b6ad9f;
	--accent: #c2a274;
	--accent-soft: #aa917f;
	--line: rgba(243, 237, 228, 0.14);
	--serif: "Playfair Display", Georgia, serif;
	--sans: "Inter", -apple-system, BlinkMacSystemFont, "Helvetica Neue", sans-serif;
	--nav-h: 72px;
	--ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html {
	scroll-behavior: smooth;
	scroll-padding-top: var(--nav-h);
}

body {
	background: var(--bg);
	color: var(--ink);
	font-family: var(--sans);
	font-size: 16px;
	line-height: 1.7;
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; }

.container { width: min(1060px, 92vw); margin: 0 auto; }
.container--wide { width: min(1280px, 94vw); }

/* ---------- reveal on scroll ---------- */
.reveal {
	opacity: 0;
	transform: translateY(26px);
	transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	.reveal { opacity: 1; transform: none; transition: none; }
	.ticker__track { animation: none !important; }
}

/* ============================================================
   NAV
   ============================================================ */
.nav {
	position: fixed;
	inset: 0 0 auto 0;
	z-index: 100;
	height: var(--nav-h);
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 clamp(20px, 4vw, 48px);
	background: transparent;
	transition: background 0.4s ease, border-color 0.4s ease;
	border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
	background: rgba(14, 13, 12, 0.96);
	border-bottom-color: var(--line);
}
.nav__brand {
	font-family: var(--serif);
	font-size: 26px;
	font-weight: 600;
	letter-spacing: 0.04em;
	text-decoration: none;
}
.nav__links { display: flex; gap: clamp(18px, 3vw, 40px); }
.nav__links a {
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	text-decoration: none;
	color: var(--ink-dim);
	padding: 6px 0;
	position: relative;
	transition: color 0.3s ease;
}
.nav__links a::after {
	content: "";
	position: absolute;
	left: 0; right: 100%; bottom: 0;
	height: 1px;
	background: var(--accent);
	transition: right 0.35s var(--ease);
}
.nav__links a:hover { color: var(--ink); }
.nav__links a:hover::after { right: 0; }

.nav__toggle {
	display: none;
	background: none;
	border: 0;
	cursor: pointer;
	padding: 10px;
}
.nav__toggle span {
	display: block;
	width: 24px;
	height: 2px;
	background: var(--ink);
	margin: 5px 0;
	box-shadow: 0 1px 4px rgba(0, 0, 0, 0.55);
	transition: transform 0.3s ease, opacity 0.3s ease;
}

@media (max-width: 760px) {
	.nav__toggle { display: block; }
	.nav__links {
		position: fixed;
		top: var(--nav-h);
		left: 0; right: 0;
		flex-direction: column;
		gap: 0;
		background: rgba(14, 13, 12, 0.98);
		border-bottom: 1px solid var(--line);
		padding: 8px 0 16px;
		transform: translateY(-12px);
		opacity: 0;
		pointer-events: none;
		transition: opacity 0.3s ease, transform 0.3s var(--ease);
	}
	.nav__links.is-open { opacity: 1; transform: none; pointer-events: auto; }
	.nav__links a { padding: 14px clamp(20px, 4vw, 48px); }
	.nav.is-menu-open .nav__toggle span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
	.nav.is-menu-open .nav__toggle span:nth-child(2) { opacity: 0; }
	.nav.is-menu-open .nav__toggle span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
	position: relative;
	min-height: 100svh;
	display: flex;
	align-items: flex-end;
	overflow: hidden;
}
.hero__bg {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center 30%;
	animation: heroZoom 30s ease-out forwards;
}
/* slow push-in: starts at natural size so the header never appears to resize */
@keyframes heroZoom {
	from { transform: scale(1); }
	to   { transform: scale(1.06); }
}
.hero__scrim {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(180deg, rgba(14,13,12,0.62) 0%, rgba(14,13,12,0.12) 34%, rgba(14,13,12,0.42) 62%, rgba(14,13,12,0.96) 100%);
}
.hero__content {
	position: relative;
	z-index: 2;
	width: min(1060px, 92vw);
	margin: 0 auto;
	padding-top: calc(var(--nav-h) + 24px);
	padding-bottom: clamp(96px, 16vh, 170px);
}
/* short viewports: tighten type so the hero never crowds the nav */
@media (max-height: 700px) {
	.hero__title { font-size: clamp(40px, 7vw, 76px); }
	.hero__sub { margin-bottom: 26px; }
	.hero__content { padding-bottom: clamp(48px, 9vh, 90px); }
	.hero__scroll { display: none; }
}
.hero__eyebrow {
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.34em;
	text-transform: uppercase;
	color: var(--accent);
	margin-bottom: 22px;
}
.hero__title {
	font-family: var(--serif);
	font-weight: 500;
	font-size: clamp(52px, 9.5vw, 118px);
	line-height: 1.02;
	letter-spacing: -0.01em;
	margin-bottom: 26px;
}
.hero__title em {
	font-style: italic;
	color: var(--accent);
}
.hero__sub {
	font-size: 14px;
	letter-spacing: 0.08em;
	color: var(--ink);
	opacity: 0.85;
	text-shadow: 0 1px 12px rgba(0, 0, 0, 0.7);
	margin-bottom: 40px;
}
.hero__eyebrow, .hero__title { text-shadow: 0 2px 24px rgba(0, 0, 0, 0.45); }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; }
@media (max-width: 560px) {
	.hero__actions { flex-direction: column; }
	.hero__actions .btn { width: 100%; }
}

.hero__scroll {
	position: absolute;
	z-index: 2;
	right: clamp(20px, 4vw, 48px);
	bottom: 0;
	height: 120px;
	width: 24px;
	display: flex;
	justify-content: center;
}
.hero__scroll-line {
	width: 1px;
	height: 100%;
	background: linear-gradient(var(--accent), transparent);
	transform-origin: top;
	animation: scrollPulse 2.4s ease-in-out infinite;
}
@keyframes scrollPulse {
	0%, 100% { transform: scaleY(0.55); opacity: 0.5; }
	50% { transform: scaleY(1); opacity: 1; }
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
	display: inline-block;
	font-family: var(--sans);
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	text-decoration: none;
	padding: 16px 30px;
	border: 1px solid var(--accent);
	cursor: pointer;
	transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
	text-align: center;
}
.btn--solid {
	background: var(--accent);
	color: #14110c;
}
.btn--solid:hover { background: var(--ink); border-color: var(--ink); }
.btn--ghost {
	background: transparent;
	color: var(--ink);
	border-color: rgba(243, 237, 228, 0.4);
}
.btn--ghost:hover { border-color: var(--ink); background: rgba(243, 237, 228, 0.08); }
.btn--full { width: 100%; }

/* ============================================================
   TICKER
   ============================================================ */
.ticker {
	border-top: 1px solid var(--line);
	border-bottom: 1px solid var(--line);
	overflow: hidden;
	padding: 18px 0;
	background: var(--bg);
}
.ticker__track {
	display: flex;
	align-items: center;
	gap: 34px;
	width: max-content;
	animation: tick 36s linear infinite;
}
.ticker__track span {
	font-family: var(--serif);
	font-style: italic;
	font-size: 19px;
	letter-spacing: 0.05em;
	color: var(--ink-dim);
	white-space: nowrap;
}
.ticker__track i { color: var(--accent); font-style: normal; }
@keyframes tick {
	from { transform: translateX(0); }
	to   { transform: translateX(-50%); }
}

/* ============================================================
   SECTIONS (shared)
   ============================================================ */
.section { padding: clamp(90px, 13vw, 150px) 0; }

.section__eyebrow {
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.34em;
	text-transform: uppercase;
	color: var(--accent);
	margin-bottom: 18px;
}
.section__title {
	font-family: var(--serif);
	font-weight: 500;
	font-size: clamp(34px, 5vw, 58px);
	line-height: 1.12;
	letter-spacing: -0.01em;
	margin-bottom: 22px;
	max-width: 18em;
}
.section__sub {
	color: var(--ink-dim);
	max-width: 560px;
	margin-bottom: clamp(48px, 7vw, 80px);
}

/* ============================================================
   ABOUT
   ============================================================ */
.stats {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	border-top: 1px solid var(--line);
	border-bottom: 1px solid var(--line);
	margin: clamp(48px, 7vw, 80px) 0;
}
.stat {
	padding: clamp(28px, 4vw, 44px) clamp(16px, 3vw, 36px);
	display: flex;
	flex-direction: column;
	gap: 6px;
}
.stat + .stat { border-left: 1px solid var(--line); }
.stat__num {
	font-family: var(--serif);
	font-size: clamp(30px, 4.4vw, 52px);
	font-weight: 500;
	color: var(--accent);
	line-height: 1.1;
}
.stat__label {
	font-size: 12px;
	font-weight: 500;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--ink-dim);
}
@media (max-width: 640px) {
	.stats { grid-template-columns: 1fr; }
	.stat + .stat { border-left: 0; border-top: 1px solid var(--line); }
}

.letter {
	background: var(--bg-raised);
	border: 1px solid var(--line);
	padding: clamp(34px, 6vw, 72px);
	margin-bottom: clamp(48px, 7vw, 90px);
}
.letter__head {
	display: flex;
	align-items: center;
	gap: 18px;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.24em;
	text-transform: uppercase;
	color: var(--accent);
	text-align: center;
	margin-bottom: 34px;
}
.letter__rule { flex: 1; height: 1px; background: var(--line); }
.letter blockquote p {
	font-family: var(--serif);
	font-size: clamp(17px, 2vw, 21px);
	line-height: 1.75;
	color: var(--ink);
	margin-bottom: 1.2em;
}
.letter blockquote strong { color: var(--accent); font-weight: 600; }
.letter__sig { margin-top: 30px; }
.letter__grat { font-family: var(--serif); font-style: italic; color: var(--ink-dim); margin-bottom: 10px; }
.letter__name {
	font-family: var(--serif);
	font-size: 24px;
	color: var(--accent);
}
.letter__role { font-size: 13px; color: var(--ink-dim); letter-spacing: 0.04em; }

.about__cols {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: clamp(32px, 5vw, 72px);
}
@media (max-width: 700px) { .about__cols { grid-template-columns: 1fr; } }
.about__col h3 {
	font-family: var(--serif);
	font-weight: 500;
	font-size: clamp(22px, 2.6vw, 30px);
	margin-bottom: 6px;
}
.about__colnote { color: var(--ink-dim); font-size: 14px; margin-bottom: 22px; }
.list-lined { list-style: none; }
.list-lined li {
	padding: 13px 0;
	border-top: 1px solid var(--line);
	font-size: 15px;
	letter-spacing: 0.02em;
	position: relative;
	padding-left: 26px;
}
.list-lined li:last-child { border-bottom: 1px solid var(--line); }
.list-lined li::before {
	content: "";
	position: absolute;
	left: 4px;
	top: 50%;
	width: 6px;
	height: 6px;
	transform: translateY(-50%) rotate(45deg);
	background: var(--accent);
}
.about__close {
	margin-top: clamp(48px, 7vw, 80px);
	font-family: var(--serif);
	font-style: italic;
	font-size: clamp(20px, 2.6vw, 27px);
	text-align: center;
}
.about__close span { color: var(--accent); font-size: 0.75em; }

/* ============================================================
   CHARITY / FEATURES
   ============================================================ */
.charity { background: var(--bg-raised); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }

.feature {
	display: grid;
	grid-template-columns: 1.15fr 1fr;
	gap: clamp(28px, 5vw, 72px);
	align-items: center;
	margin-bottom: clamp(56px, 8vw, 110px);
}
.feature--flip .feature__media { order: 2; }
.feature--flip .feature__body { order: 1; }
@media (max-width: 700px) {
	.feature, .feature--flip { grid-template-columns: 1fr; }
	.feature--flip .feature__media { order: 0; }
}
.feature__media {
	overflow: hidden;
	border: 1px solid var(--line);
}
.feature__media img {
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
	transition: transform 1.2s var(--ease);
}
/* the charity award photos are square — show the full plate */
.charity .feature__media img { aspect-ratio: 1 / 1; }
.feature:hover .feature__media img { transform: scale(1.04); }
.feature__year {
	display: block;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.3em;
	text-transform: uppercase;
	color: var(--accent);
	margin-bottom: 14px;
}
.feature__body h3 {
	font-family: var(--serif);
	font-weight: 500;
	font-size: clamp(26px, 3.4vw, 38px);
	line-height: 1.15;
	margin-bottom: 16px;
}
.feature__body p { color: var(--ink-dim); }

.awards__title {
	font-family: var(--serif);
	font-weight: 500;
	font-size: clamp(24px, 3vw, 34px);
	text-align: center;
	margin: clamp(40px, 6vw, 70px) 0 36px;
}
.awards {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: clamp(16px, 2.5vw, 28px);
}
@media (max-width: 860px) { .awards { grid-template-columns: repeat(2, 1fr); } }
.award {
	text-align: center;
	padding: clamp(20px, 3vw, 34px) clamp(14px, 2vw, 24px);
	border: 1px solid var(--line);
	background: var(--bg);
}
.award img {
	width: min(150px, 70%);
	aspect-ratio: 1;
	object-fit: cover;
	border-radius: 50%;
	margin: 0 auto 18px;
	border: 1px solid var(--line);
}
.award__year {
	display: block;
	font-family: var(--serif);
	font-size: 26px;
	color: var(--ink);
}
.charity__cta { text-align: center; margin-top: clamp(44px, 6vw, 70px); }

/* ============================================================
   MUSIC & MEDIA (client access)
   ============================================================ */
.video {
	position: relative;
	border: 1px solid var(--line);
	background: #000;
}
.video iframe {
	display: block;
	width: 100%;
	aspect-ratio: 16 / 9;
	border: 0;
}
.video__label {
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--ink-dim);
	padding: 14px 16px;
	border-bottom: 1px solid var(--line);
}

.media__videos {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: clamp(20px, 3vw, 32px);
	margin-top: clamp(40px, 6vw, 64px);
}
@media (max-width: 760px) { .media__videos { grid-template-columns: 1fr; } }

.gallery {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
	gap: 10px;
}
.gallery a {
	position: relative;
	overflow: hidden;
	border: 1px solid var(--line);
	background: var(--bg-raised);
}
.gallery img {
	width: 100%;
	aspect-ratio: 16 / 10;
	object-fit: cover;
	transition: transform 0.9s var(--ease), opacity 0.4s ease;
	opacity: 0.88;
}
.gallery a:hover img { transform: scale(1.06); opacity: 1; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
	padding: clamp(70px, 10vw, 110px) 24px;
	text-align: center;
	border-top: 1px solid var(--line);
}
.footer__brand {
	font-family: var(--serif);
	font-size: clamp(40px, 6vw, 64px);
	font-weight: 500;
	text-decoration: none;
	display: inline-block;
	margin-bottom: 18px;
}
.footer__contact a {
	color: var(--ink-dim);
	text-decoration: none;
	font-size: 14px;
	letter-spacing: 0.06em;
	transition: color 0.3s ease;
}
.footer__contact a:hover { color: var(--accent); }
.footer__copy {
	margin-top: 14px;
	font-size: 12px;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--ink-dim);
}

/* ============================================================
   MODALS
   ============================================================ */
.modal {
	background: var(--bg-raised);
	color: var(--ink);
	border: 1px solid var(--line);
	padding: clamp(34px, 5vw, 52px);
	width: min(420px, 92vw);
	margin: auto;
}
.modal::backdrop {
	background: rgba(8, 7, 6, 0.75);
	backdrop-filter: blur(6px);
}
.modal__close {
	position: absolute;
	top: 10px;
	right: 14px;
	background: none;
	border: 0;
	color: var(--ink-dim);
	font-size: 30px;
	line-height: 1;
	cursor: pointer;
	transition: color 0.3s ease;
}
.modal__close:hover { color: var(--ink); }
.modal__eyebrow {
	font-family: var(--serif);
	font-size: 20px;
	color: var(--accent);
	margin-bottom: 4px;
}
.modal__title {
	font-family: var(--serif);
	font-weight: 500;
	font-size: 30px;
	margin-bottom: 22px;
}
.modal__text { color: var(--ink-dim); margin-bottom: 22px; font-size: 14px; }
.field { display: block; margin-bottom: 16px; }
.field span {
	display: block;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--ink-dim);
	margin-bottom: 7px;
}
.field input {
	width: 100%;
	background: var(--bg);
	border: 1px solid var(--line);
	color: var(--ink);
	font-family: var(--sans);
	font-size: 15px;
	padding: 13px 14px;
	outline: none;
	transition: border-color 0.3s ease;
}
.field input:focus { border-color: var(--accent); }
.modal__error {
	color: #e08585;
	font-size: 13px;
	margin: -6px 0 14px;
}
.modal.is-shake { animation: shake 0.4s ease; }
@keyframes shake {
	0%, 100% { transform: translateX(0); }
	25% { transform: translateX(-7px); }
	75% { transform: translateX(7px); }
}

/* ============================================================
   LIGHTBOX
   ============================================================ */
.lightbox[hidden] { display: none; }
.lightbox {
	position: fixed;
	inset: 0;
	z-index: 200;
	background: rgba(8, 7, 6, 0.94);
	backdrop-filter: blur(8px);
	display: flex;
	align-items: center;
	justify-content: center;
}
.lightbox figure {
	max-width: min(1200px, 92vw);
	max-height: 86vh;
	display: flex;
	flex-direction: column;
}
.lightbox img {
	max-width: 100%;
	max-height: 80vh;
	object-fit: contain;
	border: 1px solid var(--line);
}
.lightbox figcaption {
	display: flex;
	justify-content: space-between;
	gap: 20px;
	padding-top: 14px;
	font-size: 12px;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--ink-dim);
}
.lightbox__count { color: var(--accent); }
.lightbox__btn {
	position: absolute;
	background: none;
	border: 0;
	color: var(--ink-dim);
	cursor: pointer;
	font-family: var(--serif);
	transition: color 0.3s ease;
	z-index: 2;
}
.lightbox__btn:hover { color: var(--ink); }
.lightbox__close { top: 18px; right: 26px; font-size: 40px; }
.lightbox__prev, .lightbox__next {
	top: 50%;
	transform: translateY(-50%);
	font-size: 64px;
	padding: 20px;
}
.lightbox__prev { left: clamp(4px, 2vw, 30px); }
.lightbox__next { right: clamp(4px, 2vw, 30px); }
@media (max-width: 640px) {
	.lightbox__prev, .lightbox__next { font-size: 46px; padding: 10px; }
}
