/* ============================================================
   THE JVC — The Code & The Rose
   Shared cinematic design system
   ============================================================ */

/* ---------- Fonts ---------- */
@font-face {
	font-family: "KaliGraff";
	src: url("../../../fonts/network/jvc/KaliGraff.otf") format("opentype");
	font-display: swap;
}
@font-face {
	font-family: "RuthlessDrippin";
	src: url("../../../fonts/network/jvc/RuthlessDrippin.otf") format("opentype");
	font-display: swap;
}

/* ---------- Tokens ---------- */
:root {
	/* warm near-black inks */
	--ink:        hsl(0 32% 4.5%);
	--ink-1:      hsl(0 28% 7%);
	--ink-2:      hsl(0 24% 10%);
	--ink-glass:  hsl(0 30% 6% / 0.72);

	/* reds */
	--blood:      hsl(353 64% 15%);
	--red:        hsl(353 74% 33%);
	--red-bright: hsl(353 82% 48%);
	--red-glow:   hsl(353 90% 52%);

	/* gold */
	--gold-deep:  hsl(40 62% 38%);
	--gold:       hsl(43 72% 56%);
	--gold-lite:  hsl(46 86% 74%);
	--gold-hi:    hsl(48 96% 88%);

	/* warm purple accent */
	--plum:       hsl(318 38% 20%);
	--plum-glow:  hsl(306 52% 48%);

	/* darker purples */
	--black-russian: hsl(287, 100%, 5%);
	--black-russian-deep: hsl(289, 100%, 4%);

	/* neutral / paper */
	--cream:      hsl(40 34% 90%);
	--parch:      hsl(38 40% 86%);
	--haze:       hsl(40 18% 72%);

	--maxw: 1240px;
	--ease: cubic-bezier(0.22, 1, 0.36, 1);

	--font-black: "UnifrakturCook", "Pirata One", serif;
	--font-cholo: "KaliGraff", "Pirata One", cursive;
	--font-body:  "Cormorant Garamond", Georgia, serif;
	--font-ui:    "Barlow Condensed", "Arial Narrow", sans-serif;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
	margin: 0;
	background: var(--ink);
	color: var(--cream);
	font-family: var(--font-body);
	font-size: 20px;
	line-height: 1.66;
	overflow-x: hidden;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
}
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
::selection { background: var(--red-bright); color: var(--gold-hi); }

/* page atmosphere — deep vignette + faint warm grain */
body::before {
	content: "";
	position: fixed; inset: 0; z-index: 0; pointer-events: none;
	background:
		radial-gradient(120% 80% at 50% -10%, hsl(353 60% 14% / 0.55), transparent 60%),
		radial-gradient(100% 60% at 50% 120%, hsl(318 40% 16% / 0.45), transparent 60%);
	mix-blend-mode: screen;
}

/* ---------- Type helpers ---------- */
.eyebrow {
	font-family: var(--font-cholo);
	font-size: clamp(1.1rem, 1.6vw, 1.5rem);
	letter-spacing: 0.04em;
	color: var(--gold-lite);
	text-shadow: 0 0 18px hsl(43 80% 50% / 0.5);
	line-height: 1;
}
.kicker {
	font-family: var(--font-ui);
	text-transform: uppercase;
	letter-spacing: 0.42em;
	font-size: 0.74rem;
	font-weight: 600;
	color: var(--gold);
}
.section-title {
	font-family: var(--font-black);
	font-weight: 400;
	font-size: clamp(2.6rem, 6vw, 5rem);
	line-height: 0.98;
	letter-spacing: 0.01em;
	color: var(--cream);
	margin: 0.2em 0 0;
}
.section-title .em { color: var(--gold-lite); }
.lede {
	font-size: clamp(1.15rem, 1.8vw, 1.5rem);
	color: var(--haze);
	font-style: italic;
	max-width: 60ch;
}

/* gold gradient text */
.goldtext {
	background: linear-gradient(177deg, var(--gold-hi) 4%, var(--gold-lite) 26%, var(--gold) 50%, var(--gold-deep) 74%, var(--gold-lite) 100%);
	-webkit-background-clip: text; background-clip: text;
	color: transparent;
	-webkit-text-fill-color: transparent;
}

/* ---------- Layout ---------- */
.wrap { width: min(100% - 2.6rem, var(--maxw)); margin-inline: auto; }
.section { position: relative; z-index: 1; padding: clamp(4.5rem, 11vh, 9rem) 0; }
.section-head { max-width: 64ch; margin-bottom: clamp(2rem, 5vh, 3.4rem); }

/* hairline gold divider */
.rule {
	height: 1px; border: 0; margin: 0;
	background: linear-gradient(90deg, transparent, var(--gold-deep) 12%, var(--gold) 50%, var(--gold-deep) 88%, transparent);
	opacity: 0.6;
}

/* ============================================================
   NAV
   ============================================================ */
.nav {
	position: fixed; top: 0; left: 0; right: 0; z-index: 60;
	display: flex; align-items: center; justify-content: space-between;
	gap: 1.5rem;
	padding: 0.9rem clamp(1rem, 3vw, 2.4rem);
	background: linear-gradient(180deg, hsl(0 32% 4% / 0.92), hsl(0 32% 4% / 0));
	transition: background 0.4s var(--ease), backdrop-filter 0.4s var(--ease), padding 0.4s var(--ease);
}
.nav.solid {
	background: var(--ink-glass);
	backdrop-filter: blur(14px) saturate(1.1);
	border-bottom: 1px solid hsl(43 60% 50% / 0.18);
	padding-top: 0.6rem; padding-bottom: 0.6rem;
}
.brand {
	display: flex; align-items: baseline; gap: 0.5rem;
	font-family: var(--font-black);
	font-size: 1.7rem; line-height: 1;
	color: var(--cream);
	letter-spacing: 0.02em;
}
.brand .the { font-family: var(--font-ui); font-size: 0.7rem; letter-spacing: 0.4em; text-transform: uppercase; color: var(--gold); transform: translateY(-2px); }
.brand .jvc { color: var(--gold-lite); text-shadow: 0 0 22px hsl(43 84% 52% / 0.55); }

.nav-links { display: flex; align-items: center; gap: 0.3rem; }
.nav-links a {
	font-family: var(--font-ui);
	text-transform: uppercase; letter-spacing: 0.15em;
	font-size: 0.84rem; font-weight: 500;
	color: var(--haze);
	padding: 0.5rem 0.7rem;
	position: relative;
	white-space: nowrap;
	transition: color 0.25s var(--ease);
}
.nav-links a::after {
	content: ""; position: absolute; left: 0.85rem; right: 0.85rem; bottom: 0.34rem;
	height: 1px; background: var(--gold); transform: scaleX(0); transform-origin: left;
	transition: transform 0.3s var(--ease);
}
.nav-links a:hover, .nav-links a.active { color: var(--gold-lite); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }

.nav-yt {
	display: inline-flex; align-items: center; gap: 0.5rem;
	font-family: var(--font-ui); text-transform: uppercase; letter-spacing: 0.16em;
	font-size: 0.8rem; font-weight: 600;
	color: var(--ink); background: var(--gold);
	padding: 0.5rem 0.95rem; border-radius: 2px;
	transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s;
	box-shadow: 0 0 0 hsl(43 80% 50% / 0);
}
.nav-yt:hover { background: var(--gold-lite); transform: translateY(-1px); box-shadow: 0 8px 26px hsl(43 80% 40% / 0.35); }
.nav-yt svg { width: 18px; height: 18px; fill: currentColor; }

.nav-toggle { display: none; background: none; border: 0; color: var(--gold-lite); cursor: pointer; padding: 0.4rem; }
.nav-toggle svg { width: 28px; height: 28px; fill: currentColor; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
	display: inline-flex; align-items: center; gap: 0.7rem;
	font-family: var(--font-ui); text-transform: uppercase; letter-spacing: 0.2em;
	font-size: 0.92rem; font-weight: 600;
	padding: 0.95rem 1.8rem;
	border: 1px solid transparent; border-radius: 2px;
	cursor: pointer; position: relative;
	transition: transform 0.25s var(--ease), box-shadow 0.3s var(--ease), background 0.3s, color 0.3s, border-color 0.3s;
}
.btn-gold {
	background: linear-gradient(180deg, var(--gold-lite), var(--gold) 55%, var(--gold-deep));
	color: hsl(0 40% 8%);
	box-shadow: 0 10px 34px hsl(43 80% 40% / 0.28), inset 0 1px 0 hsl(48 96% 92% / 0.7);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 16px 44px hsl(43 84% 44% / 0.45), inset 0 1px 0 hsl(48 96% 92% / 0.8); }
.btn-ghost {
	background: hsl(0 30% 8% / 0.4); color: var(--gold-lite);
	border-color: hsl(43 64% 56% / 0.45);
	backdrop-filter: blur(6px);
}
.btn-ghost:hover { border-color: var(--gold-lite); color: var(--gold-hi); transform: translateY(-2px); box-shadow: 0 12px 30px hsl(0 0% 0% / 0.4); }
.btn .play { width: 16px; height: 16px; fill: currentColor; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
	position: relative; z-index: 1;
	min-height: 100svh;
	display: grid; align-items: center;
	grid-template-columns: minmax(0, 1fr);
	overflow: hidden;
	isolation: isolate;
}
.hero .hero-inner { min-width: 0; }
.hero-bg { position: absolute; inset: -8% 0 0 0; z-index: -3; }
.hero-bg img { width: 100%; height: 116%; object-fit: cover; object-position: 60% 28%; will-change: transform; }
.hero-bg::after {
	content: ""; position: absolute; inset: 0;
	background:
		linear-gradient(180deg, hsl(0 40% 4% / 0.55) 0%, hsl(0 38% 5% / 0.18) 32%, hsl(0 40% 5% / 0.72) 78%, var(--ink) 100%),
		linear-gradient(90deg, hsl(0 40% 4% / 0.78) 0%, transparent 46%, hsl(353 50% 10% / 0.35) 100%),
		radial-gradient(80% 60% at 30% 56%, hsl(43 70% 30% / 0.22), transparent 60%);
}
.embers { position: absolute; inset: 0; z-index: -2; pointer-events: none; }

/* .hero-inner { position: relative; z-index: 2; padding: 7rem 0 4rem; } */
.hero-inner { background: right / contain no-repeat url("../../../images/network/jvc/bg/rose.webp"); position: relative; z-index: 2; padding: 7rem 0 4rem; }
.hero-eyebrow { display: inline-flex; align-items: center; gap: 0.8rem; margin-bottom: 0.6rem; }
.hero-eyebrow .ln { width: 46px; height: 1px; background: linear-gradient(90deg, var(--gold), transparent); }

/* the giant title */
.titleword {
	font-family: var(--font-black); font-weight: 400;
	font-size: clamp(7rem, 30vw, 10rem);
	line-height: 0.8; letter-spacing: 0.02em; margin: 0;
	position: relative;
}
.hero .titleword { font-size: clamp(8rem, 34vw, 30rem); }
.hero-sub {
	font-family: var(--font-black);
	font-size: clamp(1.8rem, 5.2vw, 3.6rem);
	line-height: 1; margin: 0.1em 0 0.5em;
	color: var(--cream);
}
.hero-sub .amp { color: var(--red-bright); font-style: normal; padding: 0 0.12em; }
.hero-tag {
	font-style: italic; color: var(--haze);
	font-size: clamp(1.1rem, 2vw, 1.5rem);
	max-width: 40ch; margin: 0 0 2.2rem;
	text-wrap: balance;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 1rem; }

/* --- Hero title variant A : GOLD NEON --- */
body[data-hero="neon"] .titleword {
	color: var(--gold-hi);
	text-shadow:
		0 0 8px hsl(46 90% 80% / 0.9),
		0 0 28px hsl(43 96% 60% / 0.8),
		0 0 60px hsl(40 96% 52% / 0.7),
		0 0 120px hsl(38 96% 48% / 0.55),
		0 0 200px hsl(353 90% 46% / 0.45);
	animation: heroflicker 5.2s infinite steps(1);
}
@keyframes heroflicker {
	0%, 38%, 41%, 62%, 65%, 100% { opacity: 1; filter: brightness(1); }
	39% { opacity: 0.72; filter: brightness(0.7); }
	40% { opacity: 0.95; }
	63% { opacity: 0.6; filter: brightness(0.55); }
	64% { opacity: 0.92; }
}

/* --- Hero title variant B : CHROME / LOWRIDER ENGRAVED --- */
body[data-hero="chrome"] .titleword {
	background: linear-gradient(177deg,
		var(--gold-hi) 2%, #fff7df 14%, var(--gold-lite) 30%,
		var(--gold) 47%, var(--gold-deep) 58%, #7c5a1f 66%,
		var(--gold) 80%, var(--gold-lite) 94%);
	-webkit-background-clip: text; background-clip: text;
	-webkit-text-fill-color: transparent; color: transparent;
	filter: drop-shadow(0 2px 1px hsl(0 0% 0% / 0.6)) drop-shadow(0 0 42px hsl(43 80% 46% / 0.4));
}
body[data-hero="chrome"] .titleword::after {
	content: attr(data-text);
	position: absolute; inset: 0; z-index: -1;
	background: none; -webkit-text-fill-color: hsl(0 40% 6%); color: hsl(0 40% 6%);
	transform: translate(3px, 4px); filter: blur(1px); opacity: 0.7;
}

/* --- Hero title variant C : ROSE & CROSS CREST --- */
body[data-hero="crest"] .titleword {
	color: var(--gold-lite);
	text-shadow: 0 0 30px hsl(43 90% 52% / 0.5), 0 2px 2px hsl(0 0% 0% / 0.6);
}
.crest-orn { display: none; }
body[data-hero="crest"] .crest-orn {
	display: flex; align-items: center; justify-content: flex-start; gap: 1.1rem;
	margin-bottom: 0.4rem;
}
.crest-orn .cross {
	position: relative; width: 26px; height: 38px;
	filter: drop-shadow(0 0 16px hsl(43 90% 54% / 0.7));
}
.crest-orn .cross::before, .crest-orn .cross::after {
	content: ""; position: absolute;
	background: linear-gradient(180deg, var(--gold-hi), var(--gold), var(--gold-deep));
	border-radius: 1px;
}
.crest-orn .cross::before { left: 50%; top: 0; width: 7px; height: 100%; transform: translateX(-50%); }
.crest-orn .cross::after { top: 30%; left: 0; width: 100%; height: 7px; }
.crest-orn .crest-ln { height: 1px; width: clamp(40px, 12vw, 130px); background: linear-gradient(90deg, var(--gold), transparent); }
.crest-orn .crest-rose {
	width: 42px; height: 42px; border-radius: 50%;
	background:
		radial-gradient(circle at 50% 50%, hsl(353 80% 42%) 0 18%, transparent 19%),
		radial-gradient(circle at 50% 50%, transparent 0 26%, hsl(353 72% 34%) 27% 40%, transparent 41%),
		radial-gradient(circle at 50% 50%, transparent 0 48%, hsl(353 64% 26%) 49% 62%, transparent 63%);
	box-shadow: 0 0 24px hsl(353 80% 40% / 0.6);
	opacity: 0.95;
}

/* hero variant switcher */
.hero-switch {
	position: absolute; z-index: 5; left: 50%; transform: translateX(-50%);
	bottom: 1.6rem;
	display: none; align-items: center; gap: 0.55rem; visibility: hidden;
	padding: 0.5rem 0.7rem;
	background: var(--ink-glass); backdrop-filter: blur(12px);
	border: 1px solid hsl(43 60% 50% / 0.22); border-radius: 100px;
}
.hero-switch .lbl {
	font-family: var(--font-ui); text-transform: uppercase; letter-spacing: 0.22em;
	font-size: 0.62rem; color: var(--haze); padding-right: 0.2rem;
}
.hero-switch button {
	font-family: var(--font-ui); text-transform: uppercase; letter-spacing: 0.14em;
	font-size: 0.68rem; font-weight: 600;
	color: var(--haze); background: none; border: 1px solid transparent;
	padding: 0.34rem 0.7rem; border-radius: 100px; cursor: pointer;
	transition: all 0.25s var(--ease);
}
.hero-switch button:hover { color: var(--gold-lite); }
.hero-switch button.on { color: var(--ink); background: var(--gold); }

.scrollcue {
	position: absolute; left: 50%; bottom: 1.4rem; transform: translateX(-50%);
	display: none;
}

/* ============================================================
   STORY / LORE
   ============================================================ */
.story {
	position: relative; overflow: hidden;
	background: linear-gradient(180deg, var(--ink) 0%, var(--ink-1) 100%);
}
.story-bg { position: absolute; inset: 0; z-index: 0; }
.story-bg img { width: 100%; height: 120%; object-fit: cover; object-position: center 30%; opacity: 0.26; }
.story-bg::after { content: ""; position: absolute; inset: 0; background: radial-gradient(120% 90% at 50% 40%, transparent, var(--ink) 78%); }
.story .wrap { position: relative; z-index: 1; }
.story-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: clamp(2rem, 6vw, 5rem); align-items: center; }
.story-copy p { font-size: clamp(1.2rem, 2vw, 1.62rem); line-height: 1.6; color: var(--cream); }
.story-copy p .hl { color: var(--gold-lite); font-style: italic; }

/* parchment "Code" quote */
.code-card {
	position: relative;
	background:
		linear-gradient(160deg, hsl(40 36% 90%), hsl(38 30% 82%));
	color: hsl(0 38% 12%);
	padding: 2.4rem 2.2rem;
	border-radius: 3px;
	box-shadow: 0 30px 70px hsl(0 0% 0% / 0.55), inset 0 0 60px hsl(38 40% 70% / 0.5);
	border: 1px solid hsl(40 30% 70%);
}
.code-card::before {
	content: ""; position: absolute; inset: 8px; border: 1px solid hsl(0 40% 22% / 0.35); border-radius: 2px; pointer-events: none;
}
.code-card .kicker { color: var(--red); }
.code-card blockquote {
	margin: 0.8rem 0 0; font-family: var(--font-black); font-weight: 400;
	font-size: clamp(1.5rem, 2.6vw, 2.1rem); line-height: 1.18; color: hsl(0 50% 18%);
}
.code-card .by { margin-top: 1rem; font-family: var(--font-ui); text-transform: uppercase; letter-spacing: 0.2em; font-size: 0.78rem; color: hsl(0 30% 28%); }

/* stat row */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; margin-top: clamp(2.4rem, 5vh, 3.6rem); background: hsl(43 50% 50% / 0.16); border-block: 1px solid hsl(43 50% 50% / 0.16); }
.stat { background: var(--ink); padding: 1.5rem 1rem; text-align: center; }
.stat .n { font-family: var(--font-black); font-size: clamp(2rem, 4vw, 3rem); color: var(--gold-lite); line-height: 1; }
.stat .l { font-family: var(--font-ui); text-transform: uppercase; letter-spacing: 0.16em; font-size: 0.72rem; color: var(--haze); margin-top: 0.5rem; }

/* ============================================================
   GANGS — wide cinematic strips
   ============================================================ */
.gangs { background: url("../../../images/network/jvc/bg/brick.webp"), var(--black-russian); background-blend-mode: overlay; }
.gangs .wrap { background: url("../../../images/network/jvc/ornament/hustle-graffiti-transparent.webp") no-repeat top right; }
.gang-list { display: grid; gap: clamp(1rem, 2.4vw, 1.6rem); }
.gang {
	position: relative; overflow: hidden; border-radius: 3px;
	min-height: clamp(220px, 30vw, 320px);
	display: flex; align-items: flex-end;
	border: 1px solid hsl(43 50% 50% / 0.16);
	isolation: isolate;
}
.gang img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; transition: transform 1.2s var(--ease), filter 0.6s; }
.gang::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(90deg, hsl(0 40% 4% / 0.92) 0%, hsl(0 40% 5% / 0.5) 46%, transparent 78%); }
.gang:hover img { transform: scale(1.05); filter: saturate(1.12); }
.gang-body { padding: clamp(1.4rem, 3vw, 2.4rem); max-width: 56ch; }
.gang-tag { font-family: var(--font-cholo); font-size: 1.2rem; color: var(--gold-lite); }
.gang h3 { font-family: var(--font-black); font-weight: 400; font-size: clamp(2rem, 4.5vw, 3.4rem); margin: 0.1em 0 0.3em; color: var(--cream); line-height: 1; }
.gang p { margin: 0; color: var(--haze); font-size: 1.05rem; }
.gang .chip { position: absolute; top: 1.2rem; right: 1.3rem; font-family: var(--font-ui); text-transform: uppercase; letter-spacing: 0.18em; font-size: 0.68rem; color: var(--gold); border: 1px solid hsl(43 60% 56% / 0.4); padding: 0.3rem 0.7rem; border-radius: 100px; background: hsl(0 30% 6% / 0.5); }

/* ============================================================
   CHARACTERS — portrait cards
   ============================================================ */
.chars { background: url("../../../images/network/jvc/bg/brick.webp"), url("../../../images/network/jvc/ornament/maelstrom-graffiti.webp") no-repeat bottom right, url("../../../images/network/jvc/ornament/muerte-pray.png") repeat-x bottom, var(--black-russian-deep); background-blend-mode: overlay; }
.char-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(265px, 1fr)); gap: clamp(1rem, 2vw, 1.5rem); }
.char {
	position: relative; overflow: hidden; border-radius: 3px;
	aspect-ratio: 3 / 4; display: flex; align-items: flex-end;
	border: 1px solid hsl(43 50% 50% / 0.18);
	isolation: isolate; cursor: default;
	background: var(--ink-2);
}
.char img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 22%; z-index: -2; transition: transform 1s var(--ease), filter 0.6s; }
.char::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, hsl(0 40% 5% / 0.1) 30%, hsl(0 40% 5% / 0.4) 56%, hsl(0 42% 4% / 0.96) 100%); transition: background 0.5s; }
.char:hover img { transform: scale(1.06); filter: saturate(1.1); }
.char:hover::after { background: linear-gradient(180deg, hsl(353 50% 8% / 0.2) 20%, hsl(0 40% 5% / 0.45) 52%, hsl(0 42% 4% / 0.97) 100%); }
.char-body { position: relative; padding: 1.3rem 1.3rem 1.4rem; width: 100%; }
.char-alias { font-family: var(--font-cholo); font-size: 1.15rem; color: var(--gold-lite); line-height: 1; text-shadow: 0 0 16px hsl(43 80% 50% / 0.4); }
.char h3 { font-family: var(--font-black); font-weight: 400; font-size: 1.62rem; line-height: 1.02; margin: 0.25em 0 0; color: var(--cream); }
.char .role { font-family: var(--font-ui); text-transform: uppercase; letter-spacing: 0.16em; font-size: 0.72rem; color: var(--haze); margin-top: 0.5rem; display: flex; align-items: center; gap: 0.5rem; }
.char .role .dot { width: 5px; height: 5px; border-radius: 50%; background: var(--red-bright); box-shadow: 0 0 8px var(--red-glow); }
.char .roses { position: absolute; top: 1rem; right: 1rem; display: flex; gap: 0.25rem; }
.char .roses .r { width: 9px; height: 9px; border-radius: 50%; background: radial-gradient(circle, hsl(353 80% 50%), hsl(353 70% 30%)); box-shadow: 0 0 8px hsl(353 80% 46% / 0.7); }

/* ============================================================
   TRAILER — poster + lightbox
   ============================================================ */
.trailer { background: var(--ink) url("../../../images/network/jvc/bg/brick.webp"); background-blend-mode: overlay; position: relative; overflow: hidden; }
.poster {
	position: relative; border-radius: 4px; overflow: hidden;
	aspect-ratio: 16 / 7; cursor: pointer; isolation: isolate;
	border: 1px solid hsl(43 56% 50% / 0.3);
	box-shadow: 0 40px 90px hsl(0 0% 0% / 0.6);
}
.poster img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; transition: transform 1.4s var(--ease), filter 0.6s; }
.poster::after { content: ""; position: absolute; inset: 0; background: radial-gradient(60% 80% at 50% 50%, transparent, hsl(0 40% 4% / 0.7)); }
.poster:hover img { transform: scale(1.05); filter: saturate(1.1) brightness(1.05); }
.poster-play {
	position: absolute; z-index: 2; inset: 0; display: grid; place-content: center; gap: 1.1rem; justify-items: center; text-align: center;
}
.poster-play .ring {
	width: clamp(74px, 9vw, 104px); aspect-ratio: 1; border-radius: 50%;
	display: grid; place-content: center;
	background: linear-gradient(180deg, var(--gold-lite), var(--gold) 60%, var(--gold-deep));
	box-shadow: 0 0 0 0 hsl(43 90% 56% / 0.5), 0 18px 50px hsl(43 80% 40% / 0.4);
	animation: pulsering 2.6s infinite var(--ease);
}
@keyframes pulsering { 0% { box-shadow: 0 0 0 0 hsl(43 90% 56% / 0.45), 0 18px 50px hsl(43 80% 40% / 0.4); } 70% { box-shadow: 0 0 0 26px hsl(43 90% 56% / 0), 0 18px 50px hsl(43 80% 40% / 0.4); } 100% { box-shadow: 0 0 0 0 hsl(43 90% 56% / 0); } }
/* .poster-play .ring svg { width: 34%; height: 34%; fill: hsl(0 40% 8%); margin-left: 8%; } */
.poster-play .pl-label { font-family: var(--font-ui); text-transform: uppercase; letter-spacing: 0.34em; font-size: 0.82rem; color: var(--gold-hi); }
.poster-meta { position: absolute; left: clamp(1.2rem, 3vw, 2.4rem); bottom: clamp(1.1rem, 3vw, 2rem); z-index: 2; }
.poster-meta .t { font-family: var(--font-black); font-size: clamp(1.6rem, 3.4vw, 2.6rem); color: var(--cream); line-height: 1; }
.poster-meta .s { font-family: var(--font-ui); text-transform: uppercase; letter-spacing: 0.2em; font-size: 0.74rem; color: var(--gold); margin-top: 0.4rem; }

/* lightbox */
.lightbox {
	position: fixed; inset: 0; z-index: 200; display: none;
	place-content: center; padding: 5vw;
	background: hsl(0 40% 2% / 0.92); backdrop-filter: blur(10px);
	opacity: 0; transition: opacity 0.4s var(--ease);
}
.lightbox.open { display: grid; opacity: 1; }
.lightbox-inner { width: min(92vw, 1180px); aspect-ratio: 16 / 9; position: relative; box-shadow: 0 40px 120px hsl(0 0% 0% / 0.7); border: 1px solid hsl(43 56% 50% / 0.3); }
.lightbox-inner iframe { width: 100%; height: 100%; border: 0; display: block; }
.lightbox-close { position: absolute; top: -3rem; right: -0.4rem; background: none; border: 0; color: var(--gold-lite); cursor: pointer; font-family: var(--font-ui); text-transform: uppercase; letter-spacing: 0.2em; font-size: 0.8rem; display: flex; align-items: center; gap: 0.5rem; }
.lightbox-close svg { width: 20px; height: 20px; fill: currentColor; }

/* ============================================================
   SEQUEL TEASER
   ============================================================ */
.sequel { position: relative; overflow: hidden; text-align: center; background: var(--ink-1); }
.sequel-bg { position: absolute; inset: 0; z-index: 0; }
.sequel-bg img { width: 100%; height: 130%; object-fit: cover; opacity: 0.2; object-position: center 20%; }
.sequel-bg::after { content: ""; position: absolute; inset: 0; background: radial-gradient(100% 80% at 50% 40%, hsl(318 40% 14% / 0.5), var(--ink-1) 72%); }
.sequel .wrap { position: relative; z-index: 1; }
.sequel .big { font-family: var(--font-black); font-weight: 400; font-size: clamp(2.6rem, 7vw, 6rem); line-height: 0.98; color: var(--cream); margin: 0.2em 0; }
.sequel .big .em { color: var(--gold-lite); text-shadow: 0 0 40px hsl(43 84% 52% / 0.45); }
.sequel .prod { display: inline-flex; align-items: center; gap: 0.7rem; font-family: var(--font-ui); text-transform: uppercase; letter-spacing: 0.24em; font-size: 0.8rem; color: var(--gold); border: 1px solid hsl(43 60% 56% / 0.35); padding: 0.5rem 1.1rem; border-radius: 100px; }
.sequel .prod .pulse { width: 8px; height: 8px; border-radius: 50%; background: var(--red-bright); box-shadow: 0 0 0 0 var(--red-glow); animation: pulsedot 2s infinite; }
@keyframes pulsedot { 0% { box-shadow: 0 0 0 0 hsl(353 90% 52% / 0.6); } 70% { box-shadow: 0 0 0 12px hsl(353 90% 52% / 0); } 100% { box-shadow: 0 0 0 0 hsl(353 90% 52% / 0); } }
.sequel .also { margin-top: 2.4rem; color: var(--haze); font-style: italic; }
.sequel .also a { color: var(--gold-lite); border-bottom: 1px solid hsl(43 60% 56% / 0.4); }
.sequel .also a:hover { color: var(--gold-hi); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: /* fine warm grain */  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%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.55'/%3E%3C/svg%3E"),  /* damask-ish soft diagonal weave */  repeating-linear-gradient(125deg, hsl(0 30% 6% / 0.5) 0 2px, transparent 2px 9px),  repeating-linear-gradient(55deg, hsl(353 34% 9% / 0.34) 0 2px, transparent 2px 11px),  radial-gradient(140% 90% at 50% -10%, hsl(353 52% 13% / 0.6), transparent 55%), var(--black-russian) url("../../../images/network/jvc/bg/valentinos-graffiti.jpg"); background-blend-mode: overlay; border-top: 1px solid hsl(43 50% 50% / 0.16); padding: clamp(3rem, 7vh, 5rem) 0 2.4rem; position: relative; z-index: 1; }
.footer-top { display: flex; flex-wrap: wrap; gap: 2rem; justify-content: space-between; align-items: flex-start; }
.footer .brand { font-size: 2.2rem; }
.footer .tagline { color: var(--haze); font-style: italic; max-width: 40ch; margin-top: 0.6rem; }
.socials { display: flex; gap: 0.7rem; }
.socials a { width: 44px; height: 44px; display: grid; place-content: center; border-radius: 50%; border: 1px solid hsl(43 56% 50% / 0.3); color: var(--gold-lite); transition: all 0.25s var(--ease); }
.socials a:hover { background: var(--gold); color: var(--ink); transform: translateY(-2px); border-color: var(--gold); }
.socials svg { width: 20px; height: 20px; fill: currentColor; }
.footer-bottom { margin-top: 2.6rem; padding-top: 1.6rem; border-top: 1px solid hsl(43 50% 50% / 0.1); display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between; align-items: center; }
.footer-bottom .links { display: flex; flex-wrap: wrap; gap: 1.4rem; }
.footer-bottom a { font-family: var(--font-ui); text-transform: uppercase; letter-spacing: 0.16em; font-size: 0.78rem; color: var(--haze); }
.footer-bottom a:hover { color: var(--gold-lite); }
.disclaimer { font-family: var(--font-ui); text-transform: uppercase; letter-spacing: 0.12em; font-size: 0.66rem; color: hsl(40 12% 42%); }

.wax {
	margin: 0 0 -2.4rem auto;
	width: 150px;
	height: 400px;
	position: relative;
}
.wax *, .wax *:before, .wax *:after {
	position: absolute;
	content: "";
}
.footer-candle {
	background: #190f02;
	background: linear-gradient(#e48825, #e78e0e, #833c03, #4c1a03 50%, #1c0900);
	border-radius: 150px / 40px;
	border-bottom-left-radius: 0;
	border-bottom-right-radius: 0;
	bottom: 0;
	box-shadow: inset 20px -30px 50px 0 rgba(0, 0, 0, 0.4), inset -20px 0 50px 0 rgba(0, 0, 0, 0.4);
	height: 300px;
	width: 150px;
}
.footer-candle:before {
	width: 100%;
	height: 40px;
	border-radius: 50%;
	border: 2px solid #d47401;
	background: #b86409;
	background: radial-gradient(#eaa121, #8e4901 45%, #b86409 80%);
}
.footer-candle:after {
	width: 34px;
	height: 10px;
	left: 50%;
	transform: translateX(-50%);
	border-radius: 50%;
	top: 14px;
	box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.5);
	background: radial-gradient(rgba(0, 0, 0, 0.6), transparent 45%);
}
.thread {  
	width: 6px;
	height: 36px;
	top: -17px;
	left: 50%;
	z-index: 1;
	border-radius: 40% 40% 0 0;
	transform: translateX(-50%);
	background: #121212;
	background: linear-gradient(#d6994a, #4b232c, #121212, black, #e8bb31 90%);
}
.flame {
	width: 24px;
	height: 120px;
	left: 50%;
	transform-origin: 50% 100%;
	transform: translateX(-50%);
	bottom: 100%;
	border-radius: 50% 50% 20% 20%;
	background: rgba(255, 255, 255, 1);
	background: linear-gradient(white 80%, transparent);
	animation: moveFlame 6s linear infinite, enlargeFlame 5s linear infinite;
}
.flame:before {
	width: 100%;
	height: 100%;
	border-radius: 50% 50% 20% 20%;
	box-shadow: 0 0 15px 0 rgba(247, 93, 0, .4), 0 -6px 4px 0 rgba(247, 128, 0, .7);
}
.glow {
	width: 26px;
	height: 60px;
	border-radius: 50% 50% 35% 35%;
	left: 50%;
	top: -48px;
	transform: translateX(-50%);
	background: rgba(0, 133, 255, .7);
	box-shadow: 0 -40px 30px 0 #dc8a0c, 0 40px 50px 0 #dc8a0c, inset 3px 0 2px 0 rgba(0, 133, 255, .6), inset -3px 0 2px 0 rgba(0, 133, 255, .6);
}
.glow:before {
	width: 70%;
	height: 60%;
	left: 50%;
	transform: translateX(-50%);
	bottom: 0;
	border-radius: 50%;
	background: rgba(0, 0, 0, 0.35);
}
.blinking-glow {
	width: 100px;
	height: 180px;
	left: 50%;
	top: -55%;
	transform: translateX(-50%);
	border-radius: 50%;
	background: #ff6000;
	filter: blur(60px);
	animation: blinkIt .1s infinite;
}

@keyframes blinkIt {
	50% { opacity: .8; }
}
@keyframes enlargeFlame {
	0%, 100% {
		height: 120px;
	}
	50% {
		height: 140px;
	}
}
@keyframes moveFlame {
	0%, 100% {
		transform: translateX(-50%) rotate(-2deg);
	}
	50% {
		transform: translateX(-50%) rotate(2deg);
	}
}

/* ============================================================
   REVEAL ON SCROLL
   ============================================================ */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: 0.08s; }
.reveal.d2 { transition-delay: 0.16s; }
.reveal.d3 { transition-delay: 0.24s; }
.reveal.d4 { transition-delay: 0.32s; }
@media (prefers-reduced-motion: reduce) {
	.reveal { opacity: 1; transform: none; transition: none; }
	* { animation: none !important; scroll-behavior: auto; }
}

/* ============================================================
   SUB-PAGE HEADER (characters/gangs/factions)
   ============================================================ */
.subhero { position: relative; min-height: 62vh; display: grid; align-items: end; grid-template-columns: minmax(0, 1fr); overflow: hidden; isolation: isolate; }
.subhero-bg { position: absolute; inset: 0; z-index: -2; }
.subhero-bg img { width: 100%; height: 116%; object-fit: cover; object-position: center 28%; }
.subhero-bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, hsl(0 40% 4% / 0.6) 0%, hsl(0 38% 6% / 0.3) 40%, hsl(0 40% 4% / 0.85) 82%, var(--ink) 100%); }
.subhero .wrap { position: relative; z-index: 1; padding-bottom: clamp(2.4rem, 6vh, 4rem); padding-top: 8rem; }
.subhero h1 { font-family: var(--font-black); font-weight: 400; font-size: clamp(3.4rem, 11vw, 8rem); line-height: 0.9; margin: 0.1em 0 0; color: var(--cream); }
.subhero h1 .em { color: var(--gold-lite); text-shadow: 0 0 40px hsl(43 84% 52% / 0.4); }
.subhero .lede { margin-top: 1rem; }

/* full character profile (characters page) */
.profiles { background: var(--ink); }
.profile {
	display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(1.6rem, 4vw, 3.4rem); align-items: center;
	padding: clamp(2.4rem, 6vh, 4.6rem) 0;
	border-bottom: 1px solid hsl(43 50% 50% / 0.12);
}
.profile:nth-child(even) { grid-template-columns: 1.1fr 0.9fr; }
.profile:nth-child(even) .profile-media { order: 2; }
.profile-media { position: relative; border-radius: 3px; overflow: hidden; border: 1px solid hsl(43 56% 50% / 0.28); aspect-ratio: 16 / 11; box-shadow: 0 30px 70px hsl(0 0% 0% / 0.5); }
.profile-media img { width: 100%; height: 100%; object-fit: cover; }
.profile-media .frame, .lore-media .frame { position: absolute; inset: 10px; border: 1px solid hsl(43 70% 60% / 0.25); border-radius: 2px; pointer-events: none; }
.profile-alias { font-family: var(--font-cholo); font-size: clamp(1.4rem, 2.4vw, 2rem); color: var(--gold-lite); line-height: 1; text-shadow: 0 0 20px hsl(43 80% 50% / 0.4); }
.profile h2 { font-family: var(--font-black); font-weight: 400; font-size: clamp(2.2rem, 4.2vw, 3.4rem); line-height: 1; margin: 0.2em 0 0.6em; color: var(--cream); }
.profile .meta { display: flex; flex-wrap: wrap; gap: 0.5rem 0.5rem; margin-bottom: 1.2rem; }
.profile .meta span { font-family: var(--font-ui); text-transform: uppercase; letter-spacing: 0.12em; font-size: 0.72rem; color: var(--gold); border: 1px solid hsl(43 56% 50% / 0.3); padding: 0.32rem 0.7rem; border-radius: 100px; }
/* citizenship / papers — reads like a gang patch stamped onto the roster card */
.profile .meta .citizenship {
	display: inline-flex; align-items: center; gap: 0.4em;
	color: var(--cream); font-weight: 600;
	background: linear-gradient(135deg, hsl(353 55% 22%), hsl(353 50% 15%));
	border-color: hsl(43 70% 55% / 0.6);
	box-shadow: inset 0 0 0 1px hsl(0 0% 0% / 0.25);
}
.profile .meta .citizenship::before { content: "\2726"; color: var(--gold-lite); font-size: 0.95em; line-height: 1; }
.profile-more {
	display: inline-block; margin-top: 0.9rem;
	font-family: var(--font-ui); text-transform: uppercase; letter-spacing: 0.14em; font-size: 0.78rem;
	color: var(--gold); text-decoration: none; border-bottom: 1px solid hsl(43 56% 50% / 0.4); padding-bottom: 2px;
	transition: color 0.2s, border-color 0.2s;
}
.profile-more:hover, .profile-more:focus-visible { color: var(--gold-lite); border-color: var(--gold-lite); }
.profile-more::after { content: " \2192"; }
.profile p { color: var(--haze); font-size: 1.12rem; }
.profile .bq { font-family: var(--font-black); font-weight: 400; font-size: clamp(1.3rem, 2.2vw, 1.7rem); color: var(--gold-lite); line-height: 1.2; margin: 1.2rem 0 0; padding-left: 1.2rem; border-left: 2px solid var(--gold); font-style: normal; }
.tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1.1rem; }
.tags b { font-family: var(--font-ui); text-transform: uppercase; letter-spacing: 0.12em; font-size: 0.72rem; font-weight: 600; color: var(--cream); background: hsl(353 60% 24% / 0.6); border: 1px solid hsl(353 60% 44% / 0.4); padding: 0.3rem 0.7rem; border-radius: 2px; }

/* ============================================================
   DOSSIER (single character / faction full-bio pages)
   ============================================================ */
.dossier-back {
	display: inline-block; margin-bottom: 1.4rem;
	font-family: var(--font-ui); text-transform: uppercase; letter-spacing: 0.14em; font-size: 0.8rem;
	color: var(--gold); text-decoration: none; border-bottom: 1px solid transparent;
	transition: color 0.2s, border-color 0.2s;
}
.dossier-back:hover, .dossier-back:focus-visible { color: var(--gold-lite); border-color: currentColor; }
.dossier-back::before { content: "\2190 "; }

.dossier { background: var(--ink); }
.dossier-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; padding: clamp(2.4rem, 6vh, 4.6rem) 0; }

.dossier-media.profile-media { aspect-ratio: 3 / 4; }
.dossier-media.lore-media { aspect-ratio: 4 / 3; }

/* citizenship stamp — rubber-stamped over the portrait, the page's signature mark */
.dossier-stamp {
	position: absolute; top: 16px; left: 16px; z-index: 4; pointer-events: none;
	transform: rotate(-8deg);
	font-family: var(--font-ui); text-transform: uppercase; letter-spacing: 0.1em; font-size: 0.7rem; font-weight: 700;
	color: hsl(353 90% 62% / 0.92);
	border: 3px double hsl(353 82% 55% / 0.8);
	border-radius: 4px;
	padding: 0.35rem 0.6rem;
	max-width: 150px; text-align: center; line-height: 1.15;
	mix-blend-mode: screen;
	filter: drop-shadow(0 0 6px hsl(353 90% 50% / 0.35));
}

.dossier-facts { display: grid; margin: 0 0 2rem; border-top: 1px solid hsl(43 50% 50% / 0.18); }
.dossier-facts .fact { display: grid; grid-template-columns: 9rem 1fr; gap: 1rem; padding: 0.7rem 0; border-bottom: 1px solid hsl(43 50% 50% / 0.18); }
.dossier-facts dt { font-family: var(--font-ui); text-transform: uppercase; letter-spacing: 0.14em; font-size: 0.7rem; color: var(--gold); }
.dossier-facts dd { margin: 0; font-family: var(--font-ui); font-size: 1rem; color: var(--cream); }
.dossier-facts .fact-citizenship dd { color: var(--gold-lite); font-weight: 600; }

.dossier-bio p { font-family: var(--font-body); font-size: clamp(1.1rem, 1.6vw, 1.28rem); line-height: 1.7; color: var(--cream); margin: 0 0 1.2rem; }

.dossier-quote { margin: 2rem 0 0; padding-left: 1.3rem; border-left: 2px solid var(--gold); }
.dossier-quote p { font-family: var(--font-black); font-weight: 400; font-size: clamp(1.5rem, 2.6vw, 2.1rem); color: var(--gold-lite); line-height: 1.22; margin: 0; font-style: normal; }

/* faction / gang rows on their pages reuse .gang; faction long body */
.lore-block { background: var(--ink); }
.lore-item { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: clamp(1.6rem, 4vw, 3.2rem); align-items: center; padding: clamp(2.2rem, 5vh, 4rem) 0; border-bottom: 1px solid hsl(43 50% 50% / 0.12); }
.lore-item:nth-child(even) { grid-template-columns: 1.2fr 0.8fr; }
.lore-item:nth-child(even) .lore-media { order: 2; }
.lore-media { position: relative; border-radius: 3px; overflow: hidden; border: 1px solid hsl(43 56% 50% / 0.26); aspect-ratio: 4 / 3; box-shadow: 0 26px 60px hsl(0 0% 0% / 0.5); background: var(--ink-2); }
.lore-media img, .lore-media video { width: 100%; height: 100%; object-fit: cover; }
.lore-item h3 { font-family: var(--font-black); font-weight: 400; font-size: clamp(2rem, 3.6vw, 3rem); line-height: 1; margin: 0.1em 0 0.5em; color: var(--cream); }
.lore-item .tag { font-family: var(--font-cholo); font-size: 1.2rem; color: var(--gold-lite); }
.lore-item p { color: var(--haze); font-size: 1.08rem; }
.memberbar { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-top: 1rem; }
.memberbar span { font-family: var(--font-ui); letter-spacing: 0.08em; font-size: 0.74rem; color: var(--gold); border: 1px solid hsl(43 56% 50% / 0.28); padding: 0.28rem 0.6rem; border-radius: 2px; }

/* placeholder media (when no image) */
.ph {
	width: 100%; height: 100%; display: grid; place-content: center; gap: 0.5rem; text-align: center;
	background:
		repeating-linear-gradient(135deg, hsl(0 28% 9%) 0 14px, hsl(0 26% 11%) 14px 28px);
	color: hsl(40 16% 50%); font-family: var(--font-ui); text-transform: uppercase; letter-spacing: 0.2em; font-size: 0.74rem;
}
.ph .ico { font-family: var(--font-black); font-size: 2.4rem; color: hsl(43 40% 40%); }

/* ============================================================
   DYNAMIC SECTIONS — DA810-authored child-page content blocks
   (wp-admin block editor output; styles the common Gutenberg core
   blocks — paragraph, heading, list, quote, image, button)
   ============================================================ */
.dynamic-section-body { max-width: 74ch; }
.dynamic-section-body p, .dynamic-section-body li { font-family: var(--font-body); font-size: clamp(1.1rem, 1.6vw, 1.28rem); line-height: 1.7; color: var(--cream); margin: 0 0 1.2rem; }
.dynamic-section-body h2, .dynamic-section-body h3, .dynamic-section-body h4 { font-family: var(--font-black); font-weight: 400; color: var(--gold-lite); line-height: 1.15; margin: 1.6rem 0 0.8rem; }
.dynamic-section-body h2 { font-size: clamp(1.8rem, 3.2vw, 2.6rem); }
.dynamic-section-body h3 { font-size: clamp(1.5rem, 2.6vw, 2rem); }
.dynamic-section-body h4 { font-size: clamp(1.2rem, 2vw, 1.5rem); }
.dynamic-section-body a { color: var(--gold); text-decoration: underline; text-decoration-color: hsl(43 56% 50% / 0.4); transition: color 0.2s; }
.dynamic-section-body a:hover, .dynamic-section-body a:focus-visible { color: var(--gold-lite); }
.dynamic-section-body ul, .dynamic-section-body ol { margin: 0 0 1.2rem; padding-left: 1.4em; }
.dynamic-section-body ul { list-style: disc; }
.dynamic-section-body ol { list-style: decimal; }
.dynamic-section-body blockquote { margin: 1.6rem 0; padding-left: 1.3rem; border-left: 2px solid var(--gold); }
.dynamic-section-body blockquote p { font-family: var(--font-black); font-size: clamp(1.3rem, 2.2vw, 1.7rem); color: var(--gold-lite); line-height: 1.22; }
.dynamic-section-body figure { margin: 1.6rem 0; }
.dynamic-section-body img { border-radius: 3px; border: 1px solid hsl(43 56% 50% / 0.28); box-shadow: 0 20px 50px hsl(0 0% 0% / 0.4); }
.dynamic-section-body figcaption { margin-top: 0.6rem; font-family: var(--font-ui); font-size: 0.82rem; color: var(--haze); }
.dynamic-section-body .wp-block-button__link { display: inline-block; margin-top: 0.4rem; padding: 0.85rem 1.8rem; font-family: var(--font-ui); text-transform: uppercase; letter-spacing: 0.12em; font-size: 0.82rem; color: var(--gold-lite); background: hsl(0 30% 8% / 0.4); border: 1px solid hsl(43 56% 50% / 0.4); border-radius: 2px; transition: border-color 0.2s, color 0.2s, transform 0.2s; text-decoration: none; }
.dynamic-section-body .wp-block-button__link:hover { border-color: var(--gold-lite); color: var(--gold-hi); transform: translateY(-2px); }

/* ============================================================
   SCROLLBARS
   ============================================================ */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--red); }
::-webkit-scrollbar-thumb { background: var(--gold); }
::-webkit-scrollbar-thumb:hover { background: var(--gold-hi); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (width >= 1148px) {
	.disclaimer { margin: 0 0 0 auto; }
}
@media (max-width: 980px) {
	.story-grid { grid-template-columns: 1fr; }
	.profile, .profile:nth-child(even) { grid-template-columns: 1fr; }
	.profile:nth-child(even) .profile-media { order: 0; }
	.lore-item, .lore-item:nth-child(even) { grid-template-columns: 1fr; }
	.lore-item:nth-child(even) .lore-media { order: 0; }
	.dossier-grid { grid-template-columns: 1fr; }
	.dossier-media.profile-media, .dossier-media.lore-media { aspect-ratio: 16 / 11; }
	.stats { grid-template-columns: repeat(2, 1fr); }
	.disclaimer { margin: 0 auto auto 0; }
}
@media (max-width: 760px) {
	body { font-size: 18px; }
	.nav-links { position: fixed; inset: 0 0 auto 0; top: 0; flex-direction: column; align-items: stretch; gap: 0;
		background: var(--ink-glass); backdrop-filter: blur(18px); padding: 5rem 1.4rem 1.6rem; transform: translateY(-110%); transition: transform 0.4s var(--ease); border-bottom: 1px solid hsl(43 60% 50% / 0.2); }
	.nav-links.open { transform: none; }
	.nav-links a { padding: 0.9rem 0.4rem; font-size: 1rem; border-bottom: 1px solid hsl(43 50% 50% / 0.1); }
	.nav-links a::after { display: none; }
	.nav-toggle { display: inline-flex; z-index: 70; }
	.nav-yt .txt { display: none; }
	.hero-switch { flex-wrap: wrap; justify-content: center; max-width: min(92vw, 360px); }
	.hero-switch .lbl { width: 100%; text-align: center; padding-bottom: 0.2rem; }
}
@media (max-width: 540px) {
	.char-grid { grid-template-columns: repeat(2, 1fr); }
	.stats { grid-template-columns: repeat(2, 1fr); }
	.hero .titleword { font-size: clamp(6rem, 42vw, 12rem); }
}
