/* ===========================================================================
   VOICES — Brand design system
   Inter. Royal purple, golden ochre, warm sand, burnt clay, bone.
   Measured typography. Mobile-first. Minimal imagery.
   =========================================================================== */

/* ---------- Tokens ---------- */
:root {
	/* Brand palette (from the VOICES brand sheet). */
	--purple:    #43317e;   /* royal purple, brand core */
	--purple-2:  #5a45a3;   /* lifted purple */
	--amethyst:  #736597;   /* muted amethyst */
	--gold:      #c2924c;   /* golden ochre, the logo gold + accents */
	--gold-2:    #d8ad5c;   /* brighter ochre for hover */
	--clay:      #a54a40;   /* burnt clay */
	--sand:      #e8c47a;   /* warm sand, light section blocks */
	--bone:      #f6f8e0;   /* bone white, primary light */

	/* Dark base, warm (not cold black). */
	--ink:       #15111f;   /* base background */
	--ink-2:     #1d1730;   /* lifted surface */
	--ink-3:     #271f40;   /* card surface */

	--on-sand:   #2b2238;   /* text on warm sand / light */
	--bone-dim:   rgba(246, 248, 224, 0.66);
	--bone-faint: rgba(246, 248, 224, 0.34);
	--line:       rgba(246, 248, 224, 0.14);
	--line-dark:  rgba(43, 34, 56, 0.18);

	--bg: var(--ink);
	--fg: var(--bone);

	/* Type. Inter. */
	--font: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;

	/* Fluid type scale — measured, never oversized. */
	--fs-hero:  clamp(2rem, 5.2vw, 3.9rem);
	--fs-h1:    clamp(1.7rem, 4vw, 2.9rem);
	--fs-h2:    clamp(1.45rem, 3vw, 2.2rem);
	--fs-h3:    clamp(1.15rem, 2vw, 1.5rem);
	--fs-lead:  clamp(1.05rem, 1.5vw, 1.3rem);
	--fs-body:  1.0625rem;
	--fs-small: 0.78rem;
	--fs-mark:  clamp(2.6rem, 11vw, 7rem);

	/* Tracking (Montserrat needs little). */
	--track-h:    -0.01em;
	--track-body:  0;
	--track-kick:  0.22em;

	/* Rhythm. */
	--gutter: clamp(1.25rem, 5vw, 5rem);
	--section-y: clamp(4rem, 10vh, 8.5rem);
	--maxw: 1440px;

	/* Motion. */
	--ease-out: cubic-bezier(0.16, 1, 0.3, 1);
	--ease-io:  cubic-bezier(0.65, 0, 0.35, 1);

	--radius: 14px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; overflow-x: hidden; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }
.lenis.lenis-stopped { overflow: hidden; }

body {
	margin: 0;
	background: var(--bg);
	color: var(--fg);
	font-family: var(--font);
	font-size: var(--fs-body);
	line-height: 1.62;
	letter-spacing: var(--track-body);
	font-weight: 400;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
	overflow-x: hidden;
}

img, picture, video, canvas, svg { display: block; max-width: 100%; }
video, img { height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
ul { list-style: none; padding: 0; }
::selection { background: var(--gold); color: var(--ink); }

/* ---------- Layout ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.section { position: relative; padding-block: var(--section-y); }
.section--flush { padding-block: 0; }

/* Section colour blocks (the brand alternates dark / sand / purple). */
.section--sand { background: var(--sand); color: var(--on-sand); }
.section--sand .kicker { color: var(--clay); }
.section--sand .kicker__index { color: rgba(43,34,56,0.45); }
.section--sand .lead, .section--sand p { color: rgba(43,34,56,0.82); }
.section--sand .btn--ghost { color: var(--on-sand); border-color: var(--line-dark); }
.section--sand .btn--ghost:hover { border-color: var(--clay); color: var(--clay); }
.section--purple { background: var(--purple); color: var(--bone); }
.section--purple .kicker { color: var(--sand); }
.section--purple .lead, .section--purple p { color: rgba(246,248,224,0.82); }

/* ---------- Typography ---------- */
h1, h2, h3, h4 { font-weight: 700; line-height: 1.1; letter-spacing: var(--track-h); text-wrap: balance; }
.lead { font-size: var(--fs-lead); line-height: 1.5; color: var(--bone-dim); max-width: 52ch; }
p { text-wrap: pretty; }
em { font-style: italic; }

/* A large editorial statement line (closing convictions). */
.statement { font-size: var(--fs-h1); font-weight: 600; line-height: 1.2; color: var(--bone); max-width: 24ch; }
.statement .text-gold { color: var(--gold); }

.kicker {
	display: inline-flex; align-items: center; gap: 0.75rem;
	font-size: var(--fs-small); font-weight: 600;
	text-transform: uppercase; letter-spacing: var(--track-kick);
	color: var(--gold);
}
.kicker__index { color: var(--bone-faint); font-variant-numeric: tabular-nums; }

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

/* ---------- Custom cursor (viewfinder) ---------- */
.cursor { position: fixed; top: 0; left: 0; z-index: 9500; pointer-events: none; mix-blend-mode: difference; will-change: transform; }
.cursor__ring { width: 34px; height: 34px; margin: -17px 0 0 -17px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.8); transition: width 0.3s var(--ease-out), height 0.3s var(--ease-out), margin 0.3s var(--ease-out); }
.cursor__dot { position: fixed; top: 0; left: 0; width: 5px; height: 5px; margin: -2.5px 0 0 -2.5px; border-radius: 50%; background: var(--gold); z-index: 9501; pointer-events: none; }
body.cursor-hover .cursor__ring { width: 58px; height: 58px; margin: -29px 0 0 -29px; }
body.cursor-media .cursor__ring { width: 80px; height: 80px; margin: -40px 0 0 -40px; }
.cursor__label { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%) scale(0.6); opacity: 0; font-size: 9px; letter-spacing: 0.25em; text-transform: uppercase; color: #fff; transition: opacity 0.3s, transform 0.3s; }
body.cursor-media .cursor__label { opacity: 1; transform: translate(-50%,-50%) scale(1); }

/* ---------- Loader ---------- */
.loader { position: fixed; inset: 0; z-index: 9999; background: var(--ink); display: grid; place-items: center; }
.loader__mark { position: relative; color: var(--gold); }
.loader__count { position: absolute; bottom: clamp(1.5rem,5vw,3rem); right: var(--gutter); font-size: var(--fs-small); letter-spacing: 0.2em; color: var(--bone-faint); font-variant-numeric: tabular-nums; }
.loader__bar { position: absolute; left: var(--gutter); right: var(--gutter); bottom: clamp(1.5rem,5vw,3rem); height: 1px; background: var(--line); transform-origin: left; }
.loader__bar i { display: block; height: 100%; width: 100%; background: var(--gold); transform: scaleX(0); transform-origin: left; }

/* ---------- Logo ---------- */
.voices-logo { display: inline-flex; align-items: center; }
.voices-logo img { height: clamp(32px, 4.2vw, 46px); width: auto; }
.loader__mark img { width: clamp(150px, 32vw, 230px); height: auto; }

/* ---------- Wordmark + dagger (legacy fallback) ---------- */
.voices-wordmark { display: inline-flex; align-items: center; }
.voices-wordmark__text { font-weight: 800; font-size: clamp(1.3rem, 1.8vw, 1.6rem); letter-spacing: 0.04em; text-transform: uppercase; display: inline-flex; align-items: center; line-height: 1; }
.voices-wordmark--gold { color: var(--gold); }
.voices-wordmark--light { color: var(--bone); }
.voices-wordmark--purple { color: var(--purple); }
.voices-wordmark__blade { display: inline-flex; align-items: center; height: 1em; margin: 0 0.03em; }
.voices-dagger { width: auto; height: 1.15em; }

/* ---------- Header / nav ---------- */
.site-header {
	position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
	display: flex; align-items: center; justify-content: space-between;
	gap: 1.5rem;
	padding: clamp(1rem, 2vw, 1.6rem) var(--gutter);
	transition: transform 0.5s var(--ease-out), background 0.5s var(--ease-out), padding 0.5s var(--ease-out), backdrop-filter 0.5s;
}
.site-header.is-stuck {
	background: rgba(21, 17, 31, 0.8);
	backdrop-filter: blur(14px) saturate(140%);
	padding-block: clamp(0.65rem, 1.4vw, 1rem);
	border-bottom: 1px solid var(--line);
}
.site-header.is-hidden { transform: translateY(-110%); }

.nav-primary { display: none; }
.nav-primary ul { display: flex; gap: clamp(1rem, 1.6vw, 1.9rem); align-items: center; }
.nav-primary a {
	font-size: 0.76rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase;
	color: var(--bone-dim); position: relative; padding-block: 0.4rem; transition: color 0.35s; white-space: nowrap;
}
.nav-primary 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.4s var(--ease-out); }
.nav-primary a:hover { color: var(--bone); }
.nav-primary .current-menu-item > a { color: var(--gold); }
.nav-primary .current-menu-item > a::after { transform: scaleX(1); transform-origin: left; }
.nav-primary a:hover::after { transform: scaleX(1); transform-origin: left; }
.footer-nav .current-menu-item > a, .nav-overlay .current-menu-item > a { color: var(--gold); }
.site-header .header-cta { display: none; }

/* Mobile menu toggle */
.nav-toggle { position: relative; z-index: 1100; width: 44px; height: 44px; display: grid; place-items: center; flex: none; }
.nav-toggle span { display: block; width: 26px; height: 2px; background: var(--bone); position: relative; transition: transform 0.4s var(--ease-out), background 0.2s; }
.nav-toggle span::before, .nav-toggle span::after { content: ""; position: absolute; left: 0; width: 26px; height: 2px; background: var(--bone); transition: transform 0.4s var(--ease-out); }
.nav-toggle span::before { top: -8px; }
.nav-toggle span::after { top: 8px; }
body.menu-open .nav-toggle span { background: transparent; }
body.menu-open .nav-toggle span::before { transform: translateY(8px) rotate(45deg); }
body.menu-open .nav-toggle span::after { transform: translateY(-8px) rotate(-45deg); }

/* Mobile overlay menu */
.nav-overlay {
	position: fixed; inset: 0; z-index: 1050; background: var(--purple);
	display: flex; flex-direction: column; justify-content: center; padding: var(--gutter);
	clip-path: inset(0 0 100% 0); transition: clip-path 0.7s var(--ease-io); pointer-events: none;
}
body.menu-open .nav-overlay { clip-path: inset(0 0 0 0); pointer-events: auto; }
/* Keep the header (and its hamburger-turned-X close) above the open overlay */
body.menu-open .site-header { z-index: 1100; transform: none; background: transparent; backdrop-filter: none; border: 0; }
body.menu-open .nav-toggle span::before, body.menu-open .nav-toggle span::after { background: var(--bone); }
.nav-overlay ul { display: flex; flex-direction: column; gap: 0.2rem; }
.nav-overlay a { font-size: clamp(1.8rem, 7vw, 2.8rem); font-weight: 700; letter-spacing: var(--track-h); color: var(--bone); line-height: 1.18; display: inline-block; }
.nav-overlay a:hover { color: var(--sand); }
.nav-overlay__meta { margin-top: clamp(2rem,6vw,3rem); color: rgba(246,248,224,0.6); font-size: var(--fs-small); letter-spacing: 0.1em; }

/* ---------- Buttons ---------- */
.btn {
	position: relative; display: inline-flex; align-items: center; gap: 0.65rem;
	padding: 0.95em 1.7em; border-radius: 100px; overflow: hidden; isolation: isolate;
	font-size: 0.8rem; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase;
}
.btn__bg { position: absolute; inset: 0; z-index: -1; border-radius: inherit; transition: transform 0.6s var(--ease-out); }
.btn__arrow { transition: transform 0.5s var(--ease-out); }
.btn:hover .btn__arrow { transform: translateX(5px); }
.btn--solid { color: var(--ink); }
.btn--solid .btn__bg { background: var(--gold); }
.btn--solid:hover .btn__bg { transform: scale(1.05); background: var(--gold-2); }
.btn--ghost { color: var(--bone); border: 1px solid var(--line); }
.btn--ghost:hover { border-color: var(--gold); color: var(--gold); }
.btn--play { color: var(--bone); padding-left: 0.45em; }
.btn--play .btn__play { width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--gold); display: grid; place-items: center; color: var(--gold); flex: none; transition: background 0.4s, color 0.4s; }
.btn--play .btn__play svg { width: 15px; }
.btn--play:hover .btn__play { background: var(--gold); color: var(--ink); }
.btn--play .btn__arrow { display: none; }

/* ---------- Reveal base states (GSAP drives these) ---------- */
[data-reveal] { will-change: transform, opacity; }
.split-line { overflow: hidden; }
.split-line__inner { display: block; }
[data-reveal="img"] { overflow: hidden; }
[data-reveal="img"] img { transform: scale(1.12); will-change: transform; }

/* ---------- HERO ---------- */
.hero { position: relative; min-height: 92svh; display: flex; align-items: flex-end; overflow: hidden; }
.hero__media { position: absolute; inset: 0; z-index: -2; background: var(--ink); }
.hero__media img, .hero__media video { width: 100%; height: 100%; object-fit: cover; }
.hero__media::after {
	content: ""; position: absolute; inset: 0;
	background:
		linear-gradient(to top, var(--ink) 4%, rgba(21,17,31,0.45) 50%, rgba(21,17,31,0.6) 100%),
		linear-gradient(110deg, rgba(67,49,126,0.4), transparent 65%);
}
.hero__inner { width: 100%; padding-bottom: clamp(3rem, 8vh, 6rem); padding-top: clamp(7rem, 16vh, 11rem); }
.hero__title { font-size: var(--fs-hero); font-weight: 800; line-height: 1.04; margin-top: 1.1rem; max-width: 18ch; }
.hero__title .defy { color: var(--gold); }
.hero__lead { margin-top: clamp(1.3rem, 2.5vw, 2rem); color: rgba(246,248,224,0.78); }
.hero__actions { margin-top: clamp(1.8rem, 3.5vw, 2.6rem); display: flex; flex-wrap: wrap; gap: 1rem 1.4rem; align-items: center; }
.hero__scroll { position: absolute; bottom: 1.8rem; right: var(--gutter); display: none; align-items: center; gap: 0.7rem; font-size: var(--fs-small); letter-spacing: 0.2em; text-transform: uppercase; color: var(--bone-faint); }
.hero__scroll i { width: 1px; height: 42px; background: linear-gradient(var(--gold), transparent); animation: scrollpulse 2s var(--ease-io) infinite; transform-origin: top; }
@keyframes scrollpulse { 0%,100%{transform:scaleY(0.3);opacity:0.4} 50%{transform:scaleY(1);opacity:1} }
.hero__socials { position: absolute; left: var(--gutter); bottom: 1.8rem; display: none; flex-direction: column; gap: 0.9rem; font-size: var(--fs-small); letter-spacing: 0.1em; }
.hero__socials a { color: var(--bone-dim); transition: color 0.3s; }
.hero__socials a:hover { color: var(--gold); }

/* ---------- Section head ---------- */
.section-head { display: flex; flex-direction: column; gap: 1.1rem; margin-bottom: clamp(2rem, 5vw, 3.5rem); }
.section-head--row { flex-direction: row; justify-content: space-between; align-items: flex-end; flex-wrap: wrap; gap: 1.5rem; }
.section-title { font-size: clamp(1.7rem, 3.6vw, 2.6rem); font-weight: 800; color: var(--gold); text-transform: uppercase; letter-spacing: 0.005em; line-height: 1.05; }
.section--sand .section-title { color: var(--clay); }
.section--purple .section-title { color: var(--sand); }
.intro__title { font-size: var(--fs-h1); }

/* ---------- About teaser ---------- */
.about-teaser { display: grid; gap: clamp(1.8rem, 4vw, 3.5rem); grid-template-columns: 1fr; align-items: center; }
.about-teaser--noimg { grid-template-columns: 1fr; max-width: 74ch; }

/* About row (text + photo) */
.about-row { display: grid; grid-template-columns: 1fr; gap: clamp(2rem, 4vw, 3.5rem); align-items: center; }
.about-row__media { aspect-ratio: 4 / 5; border-radius: var(--radius); overflow: hidden; background: var(--ink-3); }
.about-row__media img { width: 100%; height: 100%; object-fit: cover; }
@media (min-width: 760px) { .about-row { grid-template-columns: 1.1fr 0.9fr; } }
.about-teaser__media { border-radius: var(--radius); overflow: hidden; aspect-ratio: 4 / 5; background: var(--ink-3); }
.about-teaser__media img { width: 100%; height: 100%; object-fit: cover; }
.about-teaser__body p + p { margin-top: 1.1rem; }

/* ---------- Numbered list (impact + "we create") ---------- */
.vlist { border-top: 1px solid var(--line); }
.section--sand .vlist, .section--sand .vlist .vrow { border-color: var(--line-dark); }
.vrow { display: grid; grid-template-columns: auto minmax(0, 1fr); gap: 1rem 1.4rem; align-items: baseline; padding: clamp(1.1rem, 2.4vw, 1.7rem) 0; border-bottom: 1px solid var(--line); }
.vrow__text { overflow-wrap: break-word; }
.vrow__num { font-size: var(--fs-small); color: var(--gold); font-variant-numeric: tabular-nums; letter-spacing: 0.12em; font-weight: 600; }
.section--sand .vrow__num { color: var(--clay); }
.vrow__text { font-size: clamp(1.05rem, 1.7vw, 1.35rem); font-weight: 500; line-height: 1.35; }
.vrow__text b { font-weight: 700; }

/* ---------- Productions ---------- */
.prod-feature { display: grid; grid-template-columns: 1fr; gap: clamp(1.5rem, 3vw, 2.5rem); align-items: center; }
.prod-feature__media { position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 4 / 5; background: linear-gradient(200deg, var(--ink-3), var(--ink)); max-width: 420px; }
.prod-feature__media img { width: 100%; height: 100%; object-fit: cover; }
.prod-feature__tag { font-size: var(--fs-small); letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); }
.prod-feature__title { font-size: var(--fs-h2); font-weight: 700; margin: 0.6rem 0 0.4rem; line-height: 1.1; }
.prod-feature__meta { color: var(--bone-dim); }
.prod-feature__tagline { font-style: italic; color: var(--gold); font-size: var(--fs-lead); margin: 0.2rem 0 1.1rem; }
.prod-feature__logline { color: var(--bone-dim); max-width: 52ch; line-height: 1.55; }
.prod-feature__credit { color: var(--bone-dim); font-size: 0.92rem; margin-top: 0.7rem; }
.prod-feature__credit:first-of-type { margin-top: 1.3rem; color: var(--bone); }

/* Film fact sheet */
.prod-facts { margin-top: 1.6rem; border-top: 1px solid var(--line); }
.prod-facts__row { display: grid; grid-template-columns: 8rem minmax(0, 1fr); gap: 1rem; padding: 0.7rem 0; border-bottom: 1px solid var(--line); }
.prod-facts dt { font-size: var(--fs-small); letter-spacing: 0.14em; text-transform: uppercase; color: var(--bone-faint); }
.prod-facts dd { color: var(--bone); }

/* Upcoming film row */
.prod-upcoming { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; padding: clamp(1.5rem, 3vw, 2.4rem); border: 1px solid var(--line); border-radius: var(--radius); transition: border-color 0.4s, padding-left 0.4s var(--ease-out); }
.prod-upcoming:hover { border-color: var(--gold); }
.prod-upcoming:hover .prod-upcoming__arrow { transform: translateX(6px); color: var(--gold); }
.prod-upcoming__tag { font-size: var(--fs-small); letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); }
.prod-upcoming__title { font-size: var(--fs-h3); font-weight: 700; margin: 0.5rem 0 0.3rem; }
.prod-upcoming__meta { color: var(--bone-dim); }
.prod-upcoming__arrow { font-size: 1.6rem; color: var(--bone-faint); transition: transform 0.4s var(--ease-out), color 0.35s; flex: none; }

/* ---------- Press ---------- */
.press-list { border-top: 1px solid var(--line); }
.press-row { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 1.2rem; padding: clamp(1.2rem, 3vw, 2rem) 0; border-bottom: 1px solid var(--line); transition: padding-left 0.4s var(--ease-out); }
.press-row:hover { padding-left: 0.8rem; }
.press-row:hover .press-row__title { color: var(--gold); }
.press-row:hover .press-row__arrow { transform: translateX(6px); color: var(--gold); }
.press-row__tag { font-size: var(--fs-small); letter-spacing: 0.16em; text-transform: uppercase; color: var(--bone-faint); min-width: 8ch; }
.press-row__title { font-size: clamp(1.1rem, 2.2vw, 1.5rem); font-weight: 600; transition: color 0.35s; }
.press-row__arrow { transition: transform 0.4s var(--ease-out), color 0.35s; }

/* ---------- Newsletter ---------- */
.newsletter__title { font-size: var(--fs-h1); font-weight: 700; }
.newsletter__form { margin-top: clamp(1.6rem,3vw,2.4rem); display: flex; gap: 0.6rem; max-width: 480px; border-bottom: 1px solid var(--line); padding-bottom: 0.7rem; }
.section--sand .newsletter__form { border-color: var(--line-dark); }
.newsletter__form input { flex: 1; background: none; border: 0; color: inherit; font-size: 1.05rem; outline: none; }
.newsletter__form input::placeholder { color: var(--bone-faint); }
.section--sand .newsletter__form input::placeholder { color: rgba(43,34,56,0.5); }
.newsletter__form button { color: var(--gold); text-transform: uppercase; letter-spacing: 0.12em; font-size: var(--fs-small); font-weight: 700; }
.section--sand .newsletter__form button { color: var(--clay); }

/* ---------- Event cards (modern, Netflix-style) ---------- */
.events-grid { display: grid; grid-template-columns: 1fr; gap: clamp(1.2rem, 2.5vw, 1.8rem); }
.event-card { display: grid; grid-template-columns: 1fr; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: var(--ink-2); transition: border-color 0.4s, transform 0.5s var(--ease-out); }
.event-card:hover { border-color: var(--gold); transform: translateY(-4px); }
.event-card__media { position: relative; aspect-ratio: 16 / 9; overflow: hidden; background: linear-gradient(150deg, var(--purple), var(--ink-3)); }
.event-card__media img { width: 100%; height: 100%; object-fit: cover; object-position: center 35%; transition: transform 1s var(--ease-out); }
.event-card:hover .event-card__media img { transform: scale(1.05); }
.event-card__badge { position: absolute; top: 1rem; left: 1rem; display: grid; justify-items: center; padding: 0.5rem 0.85rem; border-radius: 10px; background: rgba(21,17,31,0.72); backdrop-filter: blur(8px); color: var(--bone); line-height: 1; }
.event-card__day { font-size: 1.7rem; font-weight: 800; }
.event-card__mo { font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase; margin-top: 0.25rem; color: var(--sand); }
.event-card__body { padding: clamp(1.4rem, 3vw, 2.2rem); }
.event-card__tag { font-size: var(--fs-small); letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); }
.event-card__title { font-size: var(--fs-h2); font-weight: 700; margin: 0.5rem 0 0.4rem; line-height: 1.1; }
.event-card__meta { color: var(--bone); }
.event-card__where, .event-card__people { color: var(--bone-dim); margin-top: 0.5rem; font-size: 0.95rem; }
.event-card__people strong { color: var(--bone); }
.event-card__cta { margin-top: 1.5rem; }
@media (min-width: 860px) {
	.event-card { grid-template-columns: 1.05fr 1fr; }
	.event-card__media { aspect-ratio: auto; min-height: 320px; }
}

/* ---------- Impact cards ---------- */
.impact-cards { display: grid; grid-template-columns: 1fr; gap: clamp(0.8rem, 1.6vw, 1.1rem); margin-top: clamp(1.6rem, 3vw, 2.4rem); }
.impact-card { border: 1px solid rgba(246,248,224,0.14); background: rgba(246,248,224,0.05); border-radius: var(--radius); padding: clamp(1.3rem, 2.4vw, 1.9rem); transition: background 0.4s, transform 0.4s var(--ease-out); }
.impact-card:hover { background: rgba(246,248,224,0.1); transform: translateY(-3px); }
.impact-card__num { display: block; font-size: clamp(1.9rem, 3.6vw, 2.6rem); font-weight: 800; line-height: 1; letter-spacing: -0.03em; color: var(--sand); }
.impact-card__icon { display: inline-flex; width: 36px; height: 36px; color: var(--sand); margin-bottom: 0.5rem; }
.impact-card__icon svg { width: 100%; height: 100%; }
.section--sand .impact-card__icon { color: var(--clay); }
.impact-card__text { margin-top: 0.6rem; color: var(--bone); line-height: 1.5; }
.section--sand .impact-card { border-color: var(--line-dark); background: rgba(43,34,56,0.06); }
.section--sand .impact-card__num { color: var(--clay); }
.section--sand .impact-card__text { color: var(--on-sand); }
@media (min-width: 680px) { .impact-cards { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .impact-cards { grid-template-columns: repeat(3, 1fr); } }

/* ---------- Create chips ---------- */
.create-chips { display: flex; flex-wrap: wrap; gap: 0.7rem; margin-top: clamp(1.2rem, 2.5vw, 1.8rem); }
.create-chip { border: 1px solid var(--line); border-radius: 100px; padding: 0.65rem 1.3rem; color: var(--bone); font-size: 0.95rem; transition: border-color 0.35s, color 0.35s; }
.create-chip:hover { border-color: var(--gold); color: var(--gold); }

/* ---------- Film cards ---------- */
.film-cards { display: grid; grid-template-columns: 1fr; gap: clamp(1.2rem, 2.5vw, 1.8rem); margin-top: clamp(1.5rem, 3vw, 2.2rem); }
@media (min-width: 680px) { .film-cards { grid-template-columns: repeat(2, 1fr); } }
.film-card { display: block; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: var(--ink-2); transition: border-color 0.4s, transform 0.5s var(--ease-out); }
.film-card:hover { border-color: var(--gold); transform: translateY(-5px); }
.film-card__media { aspect-ratio: 4 / 3; overflow: hidden; }
.film-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease-out); }
.film-card:hover .film-card__media img { transform: scale(1.04); }
.film-card__media--soon { background: linear-gradient(165deg, var(--purple), var(--ink-3)); }
.film-card__body { padding: clamp(1.2rem, 2.5vw, 1.7rem); }
.film-card__tag { display: inline-block; font-size: var(--fs-small); letter-spacing: 0.16em; text-transform: uppercase; margin-bottom: 0.5rem; }
.film-card__tag--available { color: var(--gold); }
.film-card__tag--soon { color: var(--amethyst); }
.film-card__title { font-size: var(--fs-h3); font-weight: 700; line-height: 1.15; }
.film-card__meta { color: var(--bone-dim); margin-top: 0.4rem; font-size: 0.92rem; }

/* ---------- Centered section ---------- */
.section--center { text-align: center; }
.section--center .section-head, .section--center .kicker { justify-content: center; }
.section--center .newsletter__form, .section--center .btn { margin-inline: auto; }

/* ---------- Founder figure (page) + home founder crop ---------- */
.founder-figure { border-radius: var(--radius); overflow: hidden; aspect-ratio: 3 / 2; background: var(--ink-3); margin-bottom: clamp(2rem, 4vw, 3rem); max-height: 540px; }
.founder-figure img { width: 100%; height: 100%; object-fit: cover; object-position: center 28%; }
#founder .about-teaser__media img { object-position: 28% 30%; }

/* ---------- Footer ---------- */
.site-footer { padding-block: clamp(3rem,6vw,5rem) clamp(2rem,4vw,3rem); border-top: 1px solid var(--line); background: var(--ink-2); }
.footer-top { display: grid; grid-template-columns: 1fr; gap: clamp(2rem,5vw,3rem); align-items: start; padding-bottom: clamp(2rem,4vw,3rem); border-bottom: 1px solid var(--line); }
.footer-logo { height: 42px; width: auto; }
.footer-tagline { margin-top: 1.2rem; color: var(--bone-dim); max-width: 34ch; }
.footer-email { display: inline-block; margin-top: 1rem; color: var(--gold); border-bottom: 1px solid transparent; transition: border-color 0.35s; }
.footer-email:hover { border-color: var(--gold); }
.footer-nav .menu { display: flex; flex-direction: column; gap: 0.7rem; }
.footer-nav a { color: var(--bone-dim); text-transform: uppercase; letter-spacing: 0.08em; font-size: var(--fs-small); transition: color 0.3s; }
.footer-nav a:hover { color: var(--gold); }
.footer-bottom { display: flex; flex-wrap: wrap; gap: 1rem 2rem; justify-content: space-between; align-items: center; padding-top: clamp(1.5rem,3vw,2rem); color: var(--bone-faint); font-size: var(--fs-small); }
.footer-social { display: flex; gap: 1.3rem; }
.footer-social a, .footer-bottom a { color: var(--bone-dim); transition: color 0.3s; }
.footer-social a:hover { color: var(--gold); }
@media (min-width: 760px) {
	.footer-top { grid-template-columns: 1.3fr 1fr; }
	.footer-nav .menu { align-items: flex-end; }
}

/* ---------- Page hero (interior) ---------- */
.page-hero { padding-top: clamp(7rem, 17vh, 11rem); padding-bottom: clamp(1.5rem,5vh,3.5rem); }
.page-hero__title { font-size: var(--fs-hero); font-weight: 800; line-height: 1.05; }
.prose { max-width: 66ch; }
.prose p { color: var(--bone-dim); margin-bottom: 1.3rem; font-size: var(--fs-lead); }
.prose p.lead { color: var(--bone); }
.prose p strong { color: var(--bone); }

/* ---------- Page banner (interior pages: purple, branded breadcrumb) ---------- */
.page-banner { padding-top: clamp(7rem, 16vh, 11rem); padding-bottom: clamp(2.4rem, 6vw, 4.2rem); position: relative; overflow: hidden; }
.breadcrumb { display: flex; align-items: center; gap: 0.6rem; font-size: var(--fs-small); letter-spacing: 0.14em; text-transform: uppercase; color: rgba(246,248,224,0.7); margin-bottom: 1.1rem; }
.breadcrumb a { color: var(--sand); transition: color 0.3s; }
.breadcrumb a:hover { color: var(--bone); }
.breadcrumb__sep { color: rgba(246,248,224,0.4); }
.breadcrumb__current { color: var(--bone); }
.page-banner__title { font-size: var(--fs-hero); font-weight: 700; color: var(--bone); line-height: 1.05; letter-spacing: var(--track-h); }
.page-banner__mark { position: absolute; right: clamp(-0.5rem, 3vw, 3rem); bottom: -16%; width: clamp(90px, 16vw, 210px); color: rgba(246,248,224,0.08); pointer-events: none; }
.page-banner__mark .voices-dagger { width: 100%; height: auto; }

/* Founder intro (no portrait; text-led) */
.founder-name { font-size: var(--fs-h1); font-weight: 700; }
.founder-role { color: var(--gold); margin-top: 0.5rem; }

/* A production feature with no image runs full width */
.prod-feature--noimg { grid-template-columns: 1fr; }

/* ---------- Founder ---------- */
.founder-layout { display: grid; gap: clamp(2rem, 5vw, 4rem); grid-template-columns: 1fr; align-items: start; }
.founder-portrait { aspect-ratio: 4 / 5; width: 100%; max-width: 460px; border-radius: var(--radius); overflow: hidden; background: var(--ink-3); }
.founder-portrait img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; gap: clamp(2rem, 5vw, 4rem); grid-template-columns: 1fr; }
.contact-direct { margin-top: 2rem; }
.contact-direct__email { font-size: clamp(1.3rem, 3.5vw, 2rem); font-weight: 700; color: var(--gold); border-bottom: 1px solid transparent; transition: border-color 0.4s; }
.contact-direct__email:hover { border-color: var(--gold); }
.contact-form .field { margin-bottom: 1.4rem; }
.contact-form label { display: block; font-size: var(--fs-small); letter-spacing: 0.1em; text-transform: uppercase; color: var(--bone-dim); margin-bottom: 0.55rem; }
.contact-form input, .contact-form textarea { width: 100%; background: var(--ink-2); border: 1px solid var(--line); border-radius: 10px; padding: 0.95rem 1.05rem; color: var(--bone); font: inherit; outline: none; transition: border-color 0.35s; resize: vertical; }
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--gold); }
.contact-form .btn { margin-top: 0.3rem; }
.contact-form__note { margin-top: 1.1rem; font-size: var(--fs-small); color: var(--bone-faint); }

/* ---------- Utilities ---------- */
.text-gold { color: var(--gold); }
.skip-link { position: absolute; left: -9999px; }
.skip-link:focus { left: var(--gutter); top: 1rem; z-index: 99999; background: var(--gold); color: var(--ink); padding: 0.6rem 1rem; border-radius: 6px; }

/* ===========================================================================
   Responsive
   =========================================================================== */
@media (min-width: 720px) {
	.about-teaser { grid-template-columns: 0.85fr 1.15fr; }
	.about-teaser--noimg { grid-template-columns: 1fr; }
	.prod-feature { grid-template-columns: 0.7fr 1.3fr; }
	.prod-feature--noimg { grid-template-columns: 1fr; }
	.hero__socials { display: flex; }
}
@media (min-width: 1024px) {
	.nav-primary { display: block; }
	.nav-toggle { display: none; }
	.site-header .header-cta { display: inline-flex; }
	.hero__scroll { display: flex; }
}

/* ===========================================================================
   Reduced motion + touch
   =========================================================================== */
@media (prefers-reduced-motion: reduce) {
	.fx-grain { animation: none; }
	.hero__scroll i { animation: none; }
	[data-reveal], .split-line__inner, [data-reveal="img"] img { opacity: 1 !important; transform: none !important; }
	* { scroll-behavior: auto !important; }
}
@media (hover: none), (pointer: coarse) {
	.cursor, .cursor__dot { display: none !important; }
}

/* ===========================================================================
   Polish: rhythm, founder layout, impact 4-col, film grid + carousel
   =========================================================================== */

/* Breathing room under the purple breadcrumb banner */
.page-banner + section { padding-top: clamp(2.5rem, 6vw, 4.5rem); }

/* Founder page — editorial two-column, photo keeps its ratio */
.founder-layout { display: grid; grid-template-columns: 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.founder-portrait { aspect-ratio: 4 / 5; border-radius: var(--radius); overflow: hidden; background: var(--ink-3); }
.founder-portrait img { width: 100%; height: 100%; object-fit: cover; object-position: 14% center; }
.founder-name { margin-top: 1.4rem; font-size: var(--fs-h1); font-weight: 700; }
.founder-role { color: var(--gold); margin-top: 0.4rem; }
.founder-bio__lead { font-size: var(--fs-lead); color: var(--bone); margin-bottom: 1.3rem; }
.founder-bio p { color: var(--bone-dim); margin-bottom: 1.3rem; }
@media (min-width: 900px) {
	.founder-layout { grid-template-columns: 0.9fr 1.1fr; gap: clamp(3rem, 5vw, 5rem); }
	.founder-aside { position: sticky; top: 110px; }
}

/* Impact — 4 centered columns with icons */
.impact-cards--four { grid-template-columns: 1fr; }
.impact-card--center { text-align: center; background: none; border: none; padding: clamp(1.2rem, 2.5vw, 1.8rem) clamp(1rem, 2vw, 1.6rem); transition: transform 0.45s var(--ease-out); }
.impact-card--center:hover { background: none; transform: translateY(-6px); }
.impact-card--center .impact-card__icon { margin-inline: auto; width: 44px; height: 44px; transition: transform 0.45s var(--ease-out), color 0.3s; }
.impact-card--center:hover .impact-card__icon { transform: scale(1.15) rotate(-3deg); color: var(--bone); }
.impact-card--center:hover .impact-card__text strong { color: var(--bone); }
.impact-cards--four .impact-card--center { will-change: transform; }

/* Impact intro (about page): centered, tight title + subtitle */
.impact-intro { text-align: center; max-width: 52ch; margin-inline: auto; margin-bottom: clamp(1.8rem, 3.5vw, 2.8rem); }
.impact-intro .lead { margin-top: 0.5rem; margin-inline: auto; color: var(--bone); font-weight: 500; }
.impact-card__text strong { display: block; font-size: 1.05rem; letter-spacing: 0.04em; text-transform: uppercase; color: var(--sand); margin-bottom: 0.4rem; }
.section--sand .impact-card__text strong { color: var(--clay); }
@media (min-width: 600px) { .impact-cards--four { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px) {
	.impact-cards--four { grid-template-columns: repeat(4, 1fr); }
	.impact-card--center + .impact-card--center { border-left: 1px solid rgba(246,248,224,0.12); }
}

/* Film grid (3 columns) + scrolling carousel */
.film-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 340px)); justify-content: center; gap: clamp(1.2rem, 2.5vw, 1.8rem); margin-top: clamp(1.5rem, 3vw, 2.2rem); }
.film-carousel { margin-top: clamp(1.5rem, 3vw, 2.2rem); overflow-x: auto; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; padding-bottom: 1rem; }
.film-carousel::-webkit-scrollbar { height: 6px; }
.film-carousel::-webkit-scrollbar-thumb { background: var(--line); border-radius: 100px; }
.film-carousel__track { display: grid; grid-auto-flow: column; grid-auto-columns: minmax(230px, 280px); gap: clamp(1rem, 2vw, 1.5rem); }
.film-carousel .film-card { scroll-snap-align: start; }
.film-card__cat { display: block; font-size: var(--fs-small); letter-spacing: 0.1em; text-transform: uppercase; color: var(--bone-faint); margin: 0.3rem 0 0.5rem; }

/* ---------- Announcement pop-up ---------- */
.announce { position: fixed; inset: 0; z-index: 12000; display: grid; place-items: center; padding: clamp(1rem, 4vw, 2rem); opacity: 0; pointer-events: none; transition: opacity 0.4s var(--ease-out); }
.announce.is-open { opacity: 1; pointer-events: auto; }
.announce__overlay { position: absolute; inset: 0; background: rgba(10, 8, 16, 0.82); backdrop-filter: blur(6px); }
.announce__box { position: relative; z-index: 1; width: 100%; max-width: 440px; max-height: 92vh; overflow-y: auto; background: var(--ink-2); border: 1px solid var(--line); border-radius: var(--radius); transform: translateY(18px) scale(0.98); transition: transform 0.45s var(--ease-out); }
.announce.is-open .announce__box { transform: none; }
.announce__close { position: absolute; top: 0.6rem; right: 0.6rem; z-index: 2; width: 40px; height: 40px; border-radius: 50%; background: rgba(10,8,16,0.6); color: var(--bone); font-size: 1.6rem; line-height: 1; display: grid; place-items: center; transition: background 0.3s, color 0.3s; }
.announce__close:hover { background: var(--gold); color: var(--ink); }
.announce__media img { width: 100%; height: auto; display: block; }
.announce__body { padding: clamp(1.4rem, 4vw, 2rem); text-align: center; }
.announce__tag { font-size: var(--fs-small); letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); }
.announce__title { font-size: var(--fs-h3); font-weight: 800; line-height: 1.1; margin: 0.4rem 0; }
.announce__meta { color: var(--bone); font-weight: 500; }
.announce__where { color: var(--bone-dim); font-size: 0.92rem; margin-top: 0.2rem; }
.announce__body .btn { margin-top: 1.3rem; }

/* ---------- Back to top ---------- */
.to-top { position: fixed; right: clamp(1rem, 3vw, 2rem); bottom: clamp(1rem, 3vw, 2rem); z-index: 1200; width: 46px; height: 46px; border-radius: 50%; background: var(--gold); color: var(--ink); display: grid; place-items: center; opacity: 0; transform: translateY(12px); pointer-events: none; transition: opacity 0.35s, transform 0.35s var(--ease-out), background 0.3s; box-shadow: 0 8px 24px rgba(0,0,0,0.35); }
.to-top.is-visible { opacity: 1; transform: none; pointer-events: auto; }
.to-top:hover { background: var(--bone); }
.to-top svg { width: 20px; height: 20px; }

/* ---------- Production feature: reversed + actions ---------- */
.prod-feature__actions { margin-top: 1.6rem; display: flex; flex-wrap: wrap; gap: 0.8rem 1rem; align-items: center; }
.film-trailer-note { font-size: var(--fs-small); letter-spacing: 0.12em; text-transform: uppercase; color: var(--bone-faint); }
.film-trailer { position: relative; aspect-ratio: 16 / 9; border-radius: var(--radius); overflow: hidden; background: var(--ink-3); box-shadow: 0 20px 60px rgba(0,0,0,0.4); }
.film-trailer iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* Born to Dance landing: director + facts two-column */
.born-cols { display: grid; grid-template-columns: 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.born-facts { margin-top: 0; }
@media (min-width: 820px) { .born-cols { grid-template-columns: 1.2fr 0.8fr; } }

/* ---------- Contact: follow / socials ---------- */
.contact-follow { margin-top: 2.2rem; }
.contact-follow__label { display: block; font-size: var(--fs-small); letter-spacing: 0.14em; text-transform: uppercase; color: var(--bone-dim); margin-bottom: 0.7rem; }
.contact-socials { display: flex; gap: 1.4rem; flex-wrap: wrap; }
.contact-socials a { color: var(--gold); text-transform: uppercase; letter-spacing: 0.06em; font-size: 0.92rem; transition: color 0.3s; }
.contact-socials a:hover { color: var(--bone); }

/* ---------- Tactile feedback on touch (no hover) ---------- */
@media (hover: none) {
	.film-card, .impact-card, .event-card, .prod-upcoming, .create-chip, .to-top, .btn { transition: transform 0.18s ease, border-color 0.3s, background 0.3s; }
	.film-card:active, .impact-card:active, .event-card:active, .prod-upcoming:active { transform: scale(0.98); }
	.create-chip:active { transform: scale(0.95); border-color: var(--gold); color: var(--gold); }
	.btn:active { transform: scale(0.95); }
	.to-top:active { transform: scale(0.9); }
	.film-card:active { border-color: var(--gold); }
}
@media (min-width: 720px) {
	.prod-feature--rev { grid-template-columns: 1.3fr 0.7fr; }
	.prod-feature--rev .prod-feature__media { order: 2; }
}
