/*
 * Station Four — Front-end styles
 * The block theme handles the design tokens via theme.json; this stylesheet
 * carries the bespoke pieces (neon glow, header glass, ticker animation,
 * mobile overlay) that aren't expressible in tokens alone.
 */

:root {
	--ink:          var(--wp--preset--color--ink);
	--ink-2:        var(--wp--preset--color--ink-2);
	--bone:         var(--wp--preset--color--bone);
	--bone-dim:     var(--wp--preset--color--bone-dim);
	--bone-faint:   rgba(245, 239, 226, 0.14);
	--red:          var(--wp--preset--color--neon-red);
	--magenta:      var(--wp--preset--color--neon-magenta);
	--cyan:         var(--wp--preset--color--neon-cyan);
	--orange:       var(--wp--preset--color--neon-orange);
	--acid:         var(--wp--preset--color--neon-acid);
	--blood:        var(--wp--preset--color--blood);
	--hair:         rgba(245, 239, 226, 0.08);
	--hair-strong:  rgba(245, 239, 226, 0.18);
}

html { scroll-behavior: smooth; }
html, body { background: var(--ink); color: var(--bone); -webkit-font-smoothing: antialiased; }
body { overflow-x: hidden; position: relative; }

/* Any anchored section sits below the fixed header instead of behind it. */
[id="rooms"], [id="events"], [id="visit"], [id="tickets"], section[id] {
	scroll-margin-top: calc(var(--s4-header-h, 114px) + 12px);
}

@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
}

/* film grain + scanlines */
body::after {
	content: '';
	position: fixed; inset: 0; pointer-events: none; z-index: 1000;
	background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' /%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.55'/%3E%3C/svg%3E");
	opacity: 0.08; mix-blend-mode: overlay;
}
body::before {
	content: '';
	position: fixed; inset: 0; pointer-events: none; z-index: 999;
	background: repeating-linear-gradient(180deg, transparent 0, transparent 2px, rgba(0,0,0,.35) 3px, transparent 4px);
	opacity: 0.18; mix-blend-mode: multiply;
}

/* ─────────── PREMIUM HEADER ─────────── */
.site-header {
	position: fixed; top: 0; left: 0; right: 0; z-index: 90;
}
.util-strip {
	height: 38px;
	background: rgba(5, 3, 9, 0.78);
	backdrop-filter: blur(16px) saturate(160%);
	-webkit-backdrop-filter: blur(16px) saturate(160%);
	border-bottom: 1px solid var(--hair);
	transition: height 0.4s ease, opacity 0.4s ease;
	overflow: hidden;
}
.util-inner {
	height: 100%;
	max-width: 1600px; margin: 0 auto;
	padding: 0 32px;
	display: flex; align-items: center; justify-content: space-between; gap: 26px;
	font-family: 'JetBrains Mono', monospace;
	font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
	color: var(--bone-dim);
}
.util-status { display: flex; align-items: center; gap: 12px; white-space: nowrap; flex-shrink: 0; }
.util-status .dot {
	width: 7px; height: 7px; border-radius: 50%;
	background: #444; transition: 0.4s;
}
.util-status.is-open .dot { background: var(--red); box-shadow: 0 0 10px var(--red), 0 0 18px rgba(255,34,51,.6); animation: s4-pulse 1.6s ease-in-out infinite; }
.util-status.is-open { color: var(--bone); }
@keyframes s4-pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.45; } }
.util-meta { display: flex; align-items: center; gap: 26px; min-width: 0; }
.util-meta .util-link { white-space: nowrap; }
.util-meta .sep { width: 1px; height: 14px; background: var(--hair-strong); }
.util-meta a { color: var(--bone-dim); text-decoration: none; transition: 0.2s; }
.util-meta a:hover { color: var(--bone); }
/* Single ticker pill: one message at a time, fading between event /
   afters / age texts. When a message is wider than the pill, the text
   marquee-scrolls (JS sets --ticker-shift/--ticker-dur and .is-scrolling). */
.util-pill {
	display: inline-flex; align-items: center;
	border: 1px solid var(--hair-strong);
	background: rgba(255, 255, 255, 0.03);
	padding: 4px 11px;
	font-size: 9.5px; letter-spacing: 0.28em;
	max-width: 420px;
	min-width: 0;
	overflow: hidden;
	text-decoration: none;
}
.ticker-text {
	display: block;
	white-space: nowrap;
	max-width: 100%;
	overflow: hidden;
	text-overflow: ellipsis;
	transition: opacity 0.25s ease;
}
.ticker-text.is-swapping { opacity: 0; }
.ticker-text.is-scrolling {
	overflow: visible;
	text-overflow: clip;
	max-width: none;
	animation: s4-ticker var(--ticker-dur, 8s) linear 1.5s infinite alternate;
}
@keyframes s4-ticker {
	from { transform: translateX(0); }
	to { transform: translateX(var(--ticker-shift, 0px)); }
}
.util-pill.is-age, .util-pill.is-age:hover {
	color: var(--red);
	text-shadow: 0 0 8px rgba(255, 34, 51, 0.65);
}
.util-pill.is-afters, .util-pill.is-afters:hover {
	color: var(--cyan);
	text-shadow: 0 0 8px rgba(0, 232, 255, 0.65);
}
.util-pill.is-event, .util-pill.is-event:hover {
	color: var(--magenta);
	text-shadow: 0 0 8px rgba(255, 31, 156, 0.65);
}
.util-social { display: flex; gap: 14px; flex-shrink: 0; }
.util-social a { display: inline-flex; align-items: center; }
.util-social svg { width: 14px; height: 14px; display: block; }
.util-social a:hover { filter: drop-shadow(0 0 6px rgba(0, 232, 255, 0.6)); color: var(--cyan); }

.main-nav {
	background: rgba(5, 3, 9, 0.42);
	backdrop-filter: blur(22px) saturate(150%);
	-webkit-backdrop-filter: blur(22px) saturate(150%);
	border-bottom: 1px solid var(--hair);
	transition: background 0.4s ease, box-shadow 0.4s ease, border-bottom-color 0.4s ease;
}
.nav-inner {
	height: 76px;
	max-width: 1600px; margin: 0 auto;
	padding: 0 32px;
	display: flex; align-items: center; justify-content: space-between; gap: 32px;
}
.brand-lockup {
	display: flex; align-items: center; gap: 14px;
	text-decoration: none; color: var(--bone);
}
.brand-mark {
	width: 36px; height: 36px;
	--s4-mark-glow: var(--red);
	filter: drop-shadow(0 0 12px var(--s4-mark-glow));
	transition: transform 0.3s ease;
	animation: s4-mark-cycle 18s linear infinite;
}
.brand-lockup:hover .brand-mark { transform: rotate(-4deg); filter: drop-shadow(0 0 20px var(--s4-mark-glow)); }
.brand-word { display: flex; flex-direction: column; line-height: 1; }
.brand-word .main { font-family: 'Anton', sans-serif; font-size: 19px; letter-spacing: 0.34em; text-transform: uppercase; color: var(--bone); }
.brand-word .sub  { margin-top: 5px; font-family: 'JetBrains Mono', monospace; font-size: 9px; letter-spacing: 0.4em; text-transform: uppercase; color: var(--bone-dim); }

.primary-nav ul { list-style: none; display: flex; align-items: center; gap: 6px; margin: 0; padding: 0; }
.primary-nav a {
	color: var(--bone);
	text-decoration: none;
	font-family: 'JetBrains Mono', monospace;
	font-size: 11px; font-weight: 500;
	letter-spacing: 0.32em; text-transform: uppercase;
	padding: 12px 18px;
	position: relative;
	transition: color 0.25s ease;
}
.primary-nav a::after {
	content: '';
	position: absolute; left: 18px; right: 18px; bottom: 6px;
	height: 1px;
	background: var(--red);
	box-shadow: 0 0 8px var(--red);
	transform-origin: left;
	transform: scaleX(0);
	transition: transform 0.35s cubic-bezier(.6,0,.2,1);
}
.primary-nav a:hover::after { transform: scaleX(1); }

.nav-actions { display: flex; align-items: center; gap: 18px; }
.nav-divider { width: 1px; height: 24px; background: var(--hair-strong); }
.ghost-cta {
	font-family: 'JetBrains Mono', monospace;
	font-size: 11px; font-weight: 700;
	letter-spacing: 0.28em; text-transform: uppercase;
	color: var(--bone); text-decoration: none;
	padding: 12px 22px;
	border: 1px solid rgba(245, 239, 226, 0.35);
	background: transparent;
	transition: 0.3s ease;
	display: inline-flex; align-items: center; gap: 8px;
}
.ghost-cta .arrow { font-family: 'Bricolage Grotesque', sans-serif; font-weight: 300; font-size: 14px; transition: transform 0.3s ease; }
.ghost-cta:hover { border-color: var(--red); background: rgba(255, 34, 51, 0.08); box-shadow: 0 0 22px rgba(255, 34, 51, 0.4), inset 0 0 14px rgba(255, 34, 51, 0.12); }
.ghost-cta:hover .arrow { transform: translate(3px, -3px); }

.hamburger {
	display: none;
	width: 44px; height: 44px;
	background: transparent;
	border: 1px solid var(--hair-strong);
	cursor: pointer;
	position: relative;
	padding: 0;
}
.hamburger span { position: absolute; left: 11px; right: 11px; height: 1.5px; background: var(--bone); transition: 0.3s ease; }
.hamburger span:nth-child(1) { top: 15px; }
.hamburger span:nth-child(2) { top: 21px; }
.hamburger span:nth-child(3) { top: 27px; }
.hamburger.is-open span:nth-child(1) { top: 21px; transform: rotate(45deg); background: var(--red); }
.hamburger.is-open span:nth-child(2) { opacity: 0; }
.hamburger.is-open span:nth-child(3) { top: 21px; transform: rotate(-45deg); background: var(--red); }

.site-header.scrolled .util-strip { height: 0; min-height: 0; padding: 0; opacity: 0; border-bottom-color: transparent; }
.site-header.scrolled .main-nav { background: rgba(5, 3, 9, 0.88); border-bottom-color: rgba(255, 34, 51, 0.22); box-shadow: 0 12px 36px -16px rgba(255, 34, 51, 0.35); }

.mobile-overlay {
	position: fixed; inset: 0;
	background: var(--ink);
	z-index: 89;
	display: flex; flex-direction: column;
	padding: 120px 32px 40px;
	opacity: 0; pointer-events: none;
	transition: opacity 0.4s ease;
	overflow: hidden;
}
.mobile-overlay.is-open { opacity: 1; pointer-events: auto; }
.mobile-overlay .bg-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.32; z-index: 0; }
.mobile-overlay::after { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at center, transparent 0%, var(--ink) 95%); z-index: 1; }
.overlay-nav { position: relative; z-index: 2; display: flex; flex-direction: column; gap: 22px; margin-top: 8px; }
.overlay-nav a {
	font-family: 'Monoton', cursive;
	font-size: clamp(36px, 9vw, 56px);
	line-height: 1;
	color: var(--bone);
	text-decoration: none;
	text-shadow: 0 0 14px var(--c), 0 0 32px var(--c);
	opacity: 0; transform: translateY(20px);
	transition: 0.5s ease;
}
.mobile-overlay.is-open .overlay-nav a { opacity: 1; transform: translateY(0); }
.mobile-overlay.is-open .overlay-nav a:nth-child(1) { transition-delay: 0.08s; }
.mobile-overlay.is-open .overlay-nav a:nth-child(2) { transition-delay: 0.14s; }
.mobile-overlay.is-open .overlay-nav a:nth-child(3) { transition-delay: 0.20s; }
.mobile-overlay.is-open .overlay-nav a:nth-child(4) { transition-delay: 0.26s; }
.mobile-overlay.is-open .overlay-nav a:nth-child(5) { transition-delay: 0.32s; }
.overlay-foot { margin-top: auto; position: relative; z-index: 2; font-family: 'JetBrains Mono', monospace; font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--bone-dim); line-height: 2.1; }
.overlay-foot strong { color: var(--bone); font-weight: 500; }

/* ─────────── HERO ─────────── */
.hero {
	position: relative; min-height: 100vh;
	display: grid;
	grid-template-rows: var(--s4-header-h, 114px) 1fr auto;
	align-items: stretch;
	padding: 0 24px;
	overflow: hidden;
}
.hero video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.78; z-index: 1; }
.hero::after  { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at center, transparent 45%, rgba(5,3,9,.92) 100%); z-index: 2; pointer-events: none; }
.hero::before { content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 180px; background: linear-gradient(180deg, transparent, var(--ink)); z-index: 2; pointer-events: none; }
.hero-inner {
	position: relative; z-index: 3;
	grid-row: 2;
	text-align: center;
	width: 100%; max-width: 1200px;
	margin: 0 auto;
	display: flex; flex-direction: column; align-items: center; justify-content: center;
	padding: 32px 0;
}
.hero-eyebrow { display: inline-flex; align-items: center; gap: 14px; font-family: 'JetBrains Mono', monospace; font-size: 11px; letter-spacing: 0.38em; text-transform: uppercase; color: var(--bone-dim); margin-bottom: 32px; }
.hero-eyebrow::before, .hero-eyebrow::after { content: ''; width: 28px; height: 1px; background: var(--hair-strong); }
/* Registered properties so CSS can interpolate the glow colors between keyframes. */
@property --s4-glow-1 { syntax: '<color>'; initial-value: #ff2233; inherits: true; }
@property --s4-glow-2 { syntax: '<color>'; initial-value: #ff1f9c; inherits: true; }

.neon-headline {
	font-family: 'Monoton', cursive;
	font-size: clamp(64px, 11vw, 168px);
	line-height: 0.92; letter-spacing: -0.01em;
	color: var(--bone);
	--s4-glow-1: var(--red);
	--s4-glow-2: var(--magenta);
	text-shadow:
		0 0 6px #fff,
		0 0 14px var(--s4-glow-1),
		0 0 28px var(--s4-glow-1),
		0 0 58px var(--s4-glow-2),
		0 0 100px var(--s4-glow-2);
	animation: s4-flicker 5.2s infinite, s4-glow-cycle 18s linear infinite;
	margin: 0;
}
@keyframes s4-flicker {
	0%, 18%, 22%, 25%, 53%, 57%, 100% { opacity: 1; }
	20%, 24%, 55% { opacity: 0.4; }
}
@keyframes s4-glow-cycle {
	0%   { --s4-glow-1: #ff2233; --s4-glow-2: #ff1f9c; }
	20%  { --s4-glow-1: #ff1f9c; --s4-glow-2: #00e8ff; }
	40%  { --s4-glow-1: #00e8ff; --s4-glow-2: #c8ff2e; }
	60%  { --s4-glow-1: #c8ff2e; --s4-glow-2: #ff8a1c; }
	80%  { --s4-glow-1: #ff8a1c; --s4-glow-2: #ff2233; }
	100% { --s4-glow-1: #ff2233; --s4-glow-2: #ff1f9c; }
}

/* Nav logo mark color cycle (rule definition lives further up; this just defines the property + keyframes). */
@property --s4-mark-glow { syntax: '<color>'; initial-value: #ff2233; inherits: true; }
@keyframes s4-mark-cycle {
	0%   { --s4-mark-glow: #ff2233; }
	20%  { --s4-mark-glow: #ff1f9c; }
	40%  { --s4-mark-glow: #00e8ff; }
	60%  { --s4-mark-glow: #c8ff2e; }
	80%  { --s4-mark-glow: #ff8a1c; }
	100% { --s4-mark-glow: #ff2233; }
}
.hero .tagline { margin-top: 30px; font-family: 'Anton', sans-serif; font-size: clamp(15px, 1.6vw, 22px); letter-spacing: 0.22em; text-transform: uppercase; color: var(--bone); }
.hero .tagline em { color: var(--cyan); font-style: normal; text-shadow: 0 0 14px var(--cyan); }
.hero-meta { margin-top: 56px; display: flex; justify-content: center; gap: 60px; font-family: 'JetBrains Mono', monospace; font-size: 10.5px; letter-spacing: 0.32em; text-transform: uppercase; color: var(--bone-dim); }
.hero-meta .item strong { display: block; font-family: 'Anton', sans-serif; font-size: 26px; letter-spacing: 0.04em; color: var(--bone); margin-bottom: 6px; }
.hero-cue {
	grid-row: 3;
	position: relative; z-index: 3;
	justify-self: center;
	padding-bottom: 30px;
	font-family: 'JetBrains Mono', monospace;
	font-size: 9.5px; letter-spacing: 0.36em; text-transform: uppercase;
	color: var(--bone-dim); text-align: center;
}
.hero-cue::after { content: ''; display: block; width: 1px; height: 38px; background: linear-gradient(180deg, var(--red), transparent); margin: 12px auto 0; }

/* ─────────── TICKER ─────────── */
.events-ticker {
	background: linear-gradient(90deg, var(--red), var(--magenta));
	color: #fff;
	font-family: 'JetBrains Mono', monospace;
	font-weight: 700; font-size: 13px; letter-spacing: 0.18em; text-transform: uppercase;
	padding: 13px 0;
	overflow: hidden; white-space: nowrap;
	border-block: 1px solid rgba(255, 255, 255, .22);
}
.events-ticker .track { display: inline-flex; gap: 48px; animation: s4-scroll 38s linear infinite; }
.events-ticker span { display: inline-flex; align-items: center; gap: 18px; }
.events-ticker span::after { content: '◆'; color: rgba(255,255,255,.7); }
@keyframes s4-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ─────────── SECTION COMMON ─────────── */
.s4-section { position: relative; padding: 140px 48px; }
.section-label { display: inline-flex; align-items: center; gap: 14px; font-family: 'JetBrains Mono', monospace; font-size: 11px; letter-spacing: 0.4em; text-transform: uppercase; margin-bottom: 28px; color: var(--bone); opacity: 0.75; }
.section-label::before { content: ''; width: 32px; height: 1px; background: var(--red); }
.section-title { font-family: 'Anton', sans-serif; font-size: clamp(56px, 8vw, 132px); line-height: 1; letter-spacing: -0.01em; text-transform: uppercase; max-width: 1000px; margin: 0; }
.section-title em { font-style: normal; color: var(--magenta); text-shadow: 0 0 14px var(--magenta); }
.section-title em.cy { color: var(--cyan); text-shadow: 0 0 14px var(--cyan); }
.section-title em.rd { color: var(--red); text-shadow: 0 0 14px var(--red); }
/* Events headline gets a slightly tighter max-width so it stays on 2 lines, plus extra line-height so neon glow doesn't bleed into the next line. */
.events-title { max-width: 1150px; line-height: 1.05; }

/* ─────────── ROOMS ─────────── */
.rooms-grid { margin-top: 90px; display: grid; grid-template-columns: repeat(12, 1fr); gap: 24px; }
.room { position: relative; overflow: hidden; border: 1px solid var(--hair); aspect-ratio: 4/5; cursor: pointer; transition: 0.35s; display: block; text-decoration: none; color: var(--bone); }
.room:hover { transform: translateY(-6px); border-color: var(--glow); }
.room:hover .room-img { transform: scale(1.08); filter: saturate(1.3) brightness(1.05); }
.room:hover .room-name { text-shadow: 0 0 24px var(--glow); }
.room-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: 0.5s; filter: saturate(0.9) brightness(0.7); }
.room::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 30%, rgba(5,3,9,.85) 100%); }
.room-content { position: absolute; bottom: 0; left: 0; right: 0; padding: 28px; z-index: 2; }
.room-id { font-family: 'JetBrains Mono', monospace; font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--glow); margin-bottom: 8px; opacity: 0.85; }
.room-name { font-family: 'Monoton', cursive; font-size: 38px; line-height: 1; color: var(--bone); text-shadow: 0 0 12px var(--glow); transition: 0.3s; margin: 0; }
.room-desc { margin-top: 12px; font-size: 13px; line-height: 1.5; color: var(--bone-dim); max-width: 240px; }
.room-cta { margin-top: 16px; font-family: 'JetBrains Mono', monospace; font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--glow); }
.room-rose    { --glow: var(--magenta); grid-column: span 5; }
.room-cheat   { --glow: var(--cyan);    grid-column: span 4; }
.room-granite { --glow: var(--orange);  grid-column: span 3; }
.room-main    { --glow: var(--red);     grid-column: span 7; aspect-ratio: 16/10; }
.room-horror  { --glow: var(--blood);   grid-column: span 5; aspect-ratio: 16/10; }
.floors { display: flex; gap: 8px; }
.room .floors { position: absolute; top: 28px; right: 28px; z-index: 2; }
.floor-tag { font-family: 'JetBrains Mono', monospace; font-size: 10px; letter-spacing: 0.2em; padding: 6px 10px; border: 1px solid var(--glow, var(--red)); background: color-mix(in srgb, var(--glow, var(--red)) 15%, transparent); }

/* ─────────── EVENTS (HORIZONTAL CAROUSEL WITH IMAGES) ─────────── */
.events-section { padding-bottom: 160px; }
.events-section-inner {
	max-width: 1400px;
	margin: 0 auto;
	position: relative;
}

/* Header row holding the title on the left and the arrows on the right */
.events-head {
	margin-top: 28px;
	display: flex; align-items: flex-end; justify-content: space-between; gap: 32px;
	margin-bottom: 56px;
}
.events-head .events-title { margin: 0; flex: 1; }

.events-controls { display: flex; gap: 12px; align-items: center; flex-shrink: 0; }
.events-counter {
	font-family: 'JetBrains Mono', monospace;
	font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase;
	color: var(--bone-dim);
	min-width: 64px; text-align: right;
}
.events-counter .now { color: var(--bone); }
.events-arrow {
	width: 52px; height: 52px;
	display: flex; align-items: center; justify-content: center;
	background: rgba(5,3,9,0.55);
	backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
	border: 1px solid var(--hair-strong);
	color: var(--bone);
	cursor: pointer;
	padding: 0;
	font-family: 'Bricolage Grotesque', sans-serif;
	font-size: 22px; font-weight: 300;
	transition: 0.25s ease;
}
.events-arrow:hover {
	border-color: var(--red);
	color: var(--red);
	background: rgba(255, 34, 51, 0.08);
	box-shadow: 0 0 22px rgba(255, 34, 51, 0.35), inset 0 0 14px rgba(255, 34, 51, 0.1);
}
.events-arrow:active { transform: scale(0.95); }
.events-arrow .a { display: block; line-height: 0; transform: translateY(-1px); }

/* The actual scrollable rail */
.events-rail-wrap {
	position: relative;
	margin: 0 -48px; /* extend bleed past section padding so cards can slide past the edges */
}
.events-rail {
	display: flex;
	gap: 24px;
	padding: 8px 48px 32px; /* matches section side padding so first card aligns with section start */
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	scroll-behavior: smooth;
	scrollbar-width: none;
	-ms-overflow-style: none;
	overscroll-behavior-x: contain;
}
.events-rail::-webkit-scrollbar { display: none; }

/* Fade out at left + right edges so cards bleed past */
.events-rail-wrap::before,
.events-rail-wrap::after {
	content: '';
	position: absolute; top: 0; bottom: 32px;
	width: 60px;
	pointer-events: none;
	z-index: 2;
}
.events-rail-wrap::before { left: 0;  background: linear-gradient(90deg, var(--ink-2), transparent); }
.events-rail-wrap::after  { right: 0; background: linear-gradient(270deg, var(--ink-2), transparent); }

.event-card {
	position: relative;
	display: flex; flex-direction: column;
	background: rgba(255,255,255,0.02);
	border: 1px solid var(--hair);
	color: var(--bone);
	text-decoration: none;
	overflow: hidden;
	transition: 0.3s ease;
	flex-shrink: 0;
	width: clamp(280px, 32vw, 420px);
	scroll-snap-align: start;
	scroll-snap-stop: always;
}
.event-card:hover {
	transform: translateY(-6px);
	border-color: var(--accent);
	box-shadow: 0 18px 50px -22px var(--accent), 0 0 30px -14px var(--accent);
}
.event-card:hover .event-card-media img { transform: scale(1.06); filter: saturate(1.15) brightness(1.05); }
.event-card:hover .event-card-go { color: var(--accent); text-shadow: 0 0 10px var(--accent); }

/* Room accents */
.event-card.room-rose    { --accent: var(--magenta); }
.event-card.room-cheat   { --accent: var(--cyan); }
.event-card.room-granite { --accent: var(--orange); }
.event-card.room-main    { --accent: var(--red); }
.event-card.room-horror  { --accent: var(--blood); }
.event-card.room-house   { --accent: var(--red); }

.event-card-media {
	position: relative;
	aspect-ratio: 16 / 10;
	overflow: hidden;
	background: var(--ink-2);
	border-bottom: 1px solid var(--hair);
}
.event-card-media img {
	position: absolute; inset: 0;
	width: 100%; height: 100%;
	object-fit: cover;
	transition: 0.5s ease;
	filter: saturate(0.95) brightness(0.85);
}
.event-card-media::after {
	content: '';
	position: absolute; inset: 0;
	background: linear-gradient(180deg, rgba(5,3,9,0.05) 0%, rgba(5,3,9,0.6) 100%);
	pointer-events: none;
}
.event-card-fallback {
	position: absolute; inset: 0;
	display: flex; align-items: center; justify-content: center;
	background:
		radial-gradient(circle at 30% 30%, var(--accent), transparent 55%),
		radial-gradient(circle at 70% 70%, var(--cyan), transparent 55%),
		var(--ink-2);
	opacity: 0.25;
}
.event-card-fallback-mark {
	font-family: 'Monoton', cursive;
	font-size: 120px;
	color: var(--bone);
	opacity: 0.5;
	text-shadow: 0 0 22px var(--accent);
	line-height: 1;
}

/* Date stamp (top-left) */
.event-card-date {
	position: absolute; top: 14px; left: 14px; z-index: 2;
	background: rgba(5,3,9,0.78);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	padding: 10px 14px;
	border: 1px solid var(--hair-strong);
	font-family: 'Anton', sans-serif;
	text-align: center;
	letter-spacing: 0.04em;
	line-height: 1;
	color: var(--bone);
}
.event-card-date .day { display: block; font-size: 30px; }
.event-card-date .month {
	display: block;
	margin-top: 4px;
	font-family: 'JetBrains Mono', monospace;
	font-size: 10px;
	letter-spacing: 0.3em;
	color: var(--accent);
	text-shadow: 0 0 6px var(--accent);
}

/* Room badge (top-right) */
.event-card-room {
	position: absolute; top: 14px; right: 14px; z-index: 2;
	background: rgba(5,3,9,0.78);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	padding: 7px 12px;
	border: 1px solid var(--accent);
	color: var(--accent);
	text-shadow: 0 0 6px var(--accent);
	font-family: 'JetBrains Mono', monospace;
	font-size: 10px;
	letter-spacing: 0.25em;
	text-transform: uppercase;
}

.event-card-body {
	flex: 1;
	display: flex; flex-direction: column;
	padding: 24px 26px 22px;
	gap: 18px;
}
.event-card-title {
	font-family: 'Anton', sans-serif;
	font-size: clamp(22px, 1.7vw, 28px);
	line-height: 1.12;
	letter-spacing: 0.02em;
	text-transform: uppercase;
	color: var(--bone);
	margin: 0;
	/* Clamp to ~3 lines so cards stay even-height. */
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
.event-card-meta {
	margin-top: auto;
	display: flex; justify-content: space-between; align-items: center;
	padding-top: 16px;
	border-top: 1px solid var(--hair);
	font-family: 'JetBrains Mono', monospace;
	font-size: 11px;
	letter-spacing: 0.25em;
	text-transform: uppercase;
}
.event-card-time { color: var(--bone-dim); }
.event-card-go {
	color: var(--bone);
	font-weight: 700;
	letter-spacing: 0.3em;
	transition: 0.2s ease;
}

.event-source {
	display: inline-block;
	margin-top: 50px;
	font-family: 'JetBrains Mono', monospace;
	font-size: 10px;
	letter-spacing: 0.32em;
	text-transform: uppercase;
	opacity: 0.6;
	color: var(--bone);
}
.event-source a { color: var(--cyan); text-decoration: none; }
.event-source a:hover { text-shadow: 0 0 8px var(--cyan); }

@media (max-width: 980px) {
	.events-section { padding-bottom: 100px; }
	.events-head { flex-direction: column; align-items: flex-start; gap: 22px; margin-bottom: 36px; }
	.events-rail-wrap { margin: 0 -20px; }
	.events-rail { padding: 8px 20px 28px; gap: 16px; }
	.events-rail-wrap::before, .events-rail-wrap::after { width: 28px; bottom: 28px; }
	.event-card { width: clamp(260px, 80vw, 340px); }
	.events-arrow { width: 44px; height: 44px; font-size: 18px; }
}
@media (max-width: 640px) {
	.event-card-media { aspect-ratio: 16/9; }
	.event-card-fallback-mark { font-size: 80px; }
}

/* ─────────── VISIT ─────────── */
.visit-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 80px; margin-top: 80px; align-items: center; }
.visit-info dl { display: grid; grid-template-columns: 140px 1fr; gap: 18px 32px; font-family: 'JetBrains Mono', monospace; font-size: 13px; letter-spacing: 0.05em; margin: 0; }
.visit-info dt { color: var(--red); text-shadow: 0 0 8px var(--red); text-transform: uppercase; font-size: 11px; letter-spacing: 0.25em; }
.visit-info dd { color: var(--bone); margin: 0; }
.visit-info dd strong { color: var(--bone); font-weight: 500; }
.visit-sign { aspect-ratio: 1; background-size: cover; background-position: center; border: 1px solid var(--hair-strong); position: relative; }
.visit-sign::after { content: ''; position: absolute; inset: 0; box-shadow: inset 0 0 80px rgba(255, 34, 51, .4); }

/* ─────────── FOOTER ─────────── */
.site-footer { background: #020104; padding: 80px 48px 48px; border-top: 1px solid var(--hair); color: var(--bone); }
.foot-top { display: grid; grid-template-columns: 1fr 1fr 1fr 1fr; gap: 60px; max-width: 1600px; margin: 0 auto 70px; padding-bottom: 70px; }
.foot-col h4 { font-family: 'Anton', sans-serif; font-size: 14px; letter-spacing: 0.3em; text-transform: uppercase; margin: 0 0 22px; color: var(--bone); }
.foot-col h4::before { content: '◆ '; color: var(--red); text-shadow: 0 0 8px var(--red); }
.foot-col a, .foot-col p { font-family: 'JetBrains Mono', monospace; font-size: 12px; color: var(--bone-dim); line-height: 2; text-decoration: none; display: block; }
.foot-col a:hover { color: var(--cyan); }
.foot-col a.social-link { display: flex; align-items: center; gap: 9px; }
.foot-col a.social-link svg { width: 13px; height: 13px; flex-shrink: 0; }
.foot-bottom { max-width: 1600px; margin: 0 auto; padding-top: 30px; border-top: 1px solid var(--hair); display: flex; justify-content: space-between; align-items: center; font-family: 'JetBrains Mono', monospace; font-size: 11px; letter-spacing: 0.15em; color: rgba(245, 239, 226, 0.5); }
.foot-bottom .legal a { color: rgba(245, 239, 226, 0.5); text-decoration: none; margin: 0 12px; }
.foot-bottom .legal a:hover { color: var(--cyan); }
.foot-bottom .pipe { color: rgba(245, 239, 226, 0.25); }

/* ─────────── PAGE TITLES (room / legal pages) ─────────── */
.page-hero {
	position: relative; padding: 220px 48px 110px;
	background: linear-gradient(180deg, var(--ink-2) 0%, var(--ink) 100%);
	border-bottom: 1px solid var(--hair);
}
.page-hero::before {
	content: ''; position: absolute; inset: 0;
	background: radial-gradient(ellipse at 20% 30%, rgba(255,34,51,.12), transparent 50%),
				radial-gradient(ellipse at 80% 70%, rgba(255,31,156,.12), transparent 50%);
	pointer-events: none;
}
.page-hero .inner { max-width: 1400px; margin: 0 auto; position: relative; }
.page-hero .crumb { font-family: 'JetBrains Mono', monospace; font-size: 11px; letter-spacing: 0.35em; text-transform: uppercase; color: var(--bone-dim); margin-bottom: 22px; }
.page-hero .crumb a { color: var(--bone-dim); text-decoration: none; }
.page-hero .crumb a:hover { color: var(--cyan); }
.page-hero h1 {
	font-family: 'Monoton', cursive;
	font-size: clamp(56px, 9vw, 132px);
	line-height: 0.95; letter-spacing: -0.01em;
	color: var(--bone);
	text-shadow: 0 0 6px #fff, 0 0 14px var(--accent, var(--red)), 0 0 28px var(--accent, var(--red)), 0 0 58px var(--accent, var(--red));
	margin: 0;
}
.page-content { max-width: 880px; margin: 0 auto; padding: 90px 24px 140px; font-size: 17px; line-height: 1.7; color: var(--bone); }
.page-content h2 { margin-top: 50px; }
.page-content a { color: var(--cyan); }

/* ─────────── VISIT PAGE BUILDING BLOCKS ─────────── */
.visit-page { max-width: 1400px; margin: 0 auto; padding: 90px 32px 140px; }
.visit-intro {
	max-width: 760px; margin: 0 auto 100px;
	text-align: center;
	font-family: 'Bricolage Grotesque', sans-serif;
	font-size: clamp(18px, 1.8vw, 24px); line-height: 1.55;
	color: var(--bone-dim);
}
.visit-intro strong { color: var(--bone); font-weight: 500; }

.visit-section { margin-bottom: 100px; }
.visit-section-head { display: flex; align-items: baseline; gap: 24px; margin-bottom: 50px; padding-bottom: 22px; border-bottom: 1px solid var(--hair); }
.visit-section-head .num { font-family: 'JetBrains Mono', monospace; font-size: 11px; letter-spacing: 0.4em; text-transform: uppercase; color: var(--red); text-shadow: 0 0 8px var(--red); flex-shrink: 0; }
.visit-section-head h2 { font-family: 'Anton', sans-serif; font-size: clamp(34px, 4.4vw, 60px); line-height: 1; letter-spacing: 0; text-transform: uppercase; color: var(--bone); margin: 0; }
.visit-section-head h2 em { font-style: normal; color: var(--cyan); text-shadow: 0 0 18px var(--cyan); }

/* Info card grid (How To Get Here, Hours, ID Policy) */
.info-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.info-grid.two { grid-template-columns: repeat(2, 1fr); }
.info-card {
	background: linear-gradient(180deg, rgba(255,255,255,0.025), transparent);
	border: 1px solid var(--hair);
	padding: 32px;
	transition: 0.3s ease;
}
.info-card:hover { border-color: var(--accent, var(--red)); box-shadow: 0 0 28px -10px var(--accent, var(--red)); }
.info-card.car     { --accent: var(--orange); }
.info-card.ride    { --accent: var(--cyan); }
.info-card.transit { --accent: var(--acid); }
.info-card.regular { --accent: var(--red); }
.info-card.afters  { --accent: var(--magenta); }
.info-card.private { --accent: var(--magenta); }
.info-card h3 {
	font-family: 'Monoton', cursive;
	font-size: 28px; line-height: 1;
	color: var(--bone);
	text-shadow: 0 0 10px var(--accent, var(--red));
	margin: 0 0 8px;
	letter-spacing: -0.005em;
	text-transform: none;
}
.info-card .eyebrow { font-family: 'JetBrains Mono', monospace; font-size: 10px; letter-spacing: 0.35em; text-transform: uppercase; color: var(--accent, var(--red)); margin-bottom: 16px; }
.info-card p { font-family: 'Bricolage Grotesque', sans-serif; font-size: 15px; line-height: 1.6; color: var(--bone-dim); margin: 12px 0 0; }
.info-card .stat { font-family: 'Anton', sans-serif; font-size: 48px; letter-spacing: 0.04em; color: var(--bone); margin: 12px 0 6px; line-height: 1; }
.info-card .meta { font-family: 'JetBrains Mono', monospace; font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--accent, var(--red)); }
.info-card ul { list-style: none; padding: 0; margin: 16px 0 0; }
.info-card ul li { padding: 8px 0; border-bottom: 1px solid var(--hair); font-family: 'Bricolage Grotesque', sans-serif; font-size: 14px; color: var(--bone); display: flex; justify-content: space-between; gap: 12px; }
.info-card ul li:last-child { border-bottom: 0; }
.info-card ul li .when { color: var(--bone-dim); font-family: 'JetBrains Mono', monospace; font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; }

/* ID policy callout */
.id-callout {
	background: rgba(255, 34, 51, 0.06);
	border: 1px solid rgba(255, 34, 51, 0.35);
	padding: 36px 40px;
	margin-bottom: 40px;
}
.id-callout .lead {
	font-family: 'Anton', sans-serif;
	font-size: clamp(24px, 2.4vw, 32px);
	letter-spacing: 0.04em; text-transform: uppercase;
	color: var(--bone);
	margin: 0;
}
.id-callout .lead em { font-style: normal; color: var(--red); text-shadow: 0 0 12px var(--red); }
.id-callout .body { margin-top: 18px; font-family: 'Bricolage Grotesque', sans-serif; font-size: 15px; line-height: 1.6; color: var(--bone-dim); max-width: 720px; }
.id-callout .body strong { color: var(--bone); font-weight: 500; }

.id-rules { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.id-rules .rule { border: 1px solid var(--hair); padding: 24px; }
.id-rules .rule.yes { border-color: rgba(0, 232, 255, 0.35); background: rgba(0, 232, 255, 0.04); }
.id-rules .rule.no  { border-color: rgba(255, 34, 51, 0.35); background: rgba(255, 34, 51, 0.04); }
.id-rules h4 {
	font-family: 'JetBrains Mono', monospace;
	font-size: 11px; letter-spacing: 0.35em; text-transform: uppercase;
	margin: 0 0 14px;
}
.id-rules .rule.yes h4 { color: var(--cyan); }
.id-rules .rule.no  h4 { color: var(--red); }
.id-rules ul { list-style: none; padding: 0; margin: 0; }
.id-rules ul li { padding: 6px 0; font-family: 'Bricolage Grotesque', sans-serif; font-size: 14px; color: var(--bone); position: relative; padding-left: 22px; }
.id-rules .rule.yes ul li::before { content: '✓'; position: absolute; left: 0; color: var(--cyan); font-weight: bold; }
.id-rules .rule.no  ul li::before { content: '✕'; position: absolute; left: 0; color: var(--red); font-weight: bold; }

/* FAQ accordion */
.faq-list { display: grid; gap: 14px; }
.faq {
	border: 1px solid var(--hair);
	background: rgba(255,255,255,0.02);
	transition: 0.3s ease;
}
.faq[open] { border-color: rgba(255, 34, 51, 0.35); background: rgba(255, 34, 51, 0.03); }
.faq[open] summary .marker { transform: rotate(45deg); color: var(--red); }
.faq summary {
	list-style: none;
	cursor: pointer;
	padding: 22px 28px;
	display: flex; align-items: center; justify-content: space-between;
	gap: 24px;
	font-family: 'Anton', sans-serif;
	font-size: 19px;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: var(--bone);
	transition: color 0.2s ease;
}
.faq summary:hover { color: var(--cyan); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary .marker {
	flex-shrink: 0;
	width: 28px; height: 28px;
	display: flex; align-items: center; justify-content: center;
	font-family: 'Bricolage Grotesque', sans-serif;
	font-size: 26px; font-weight: 300;
	color: var(--bone-dim);
	transition: 0.3s ease;
}
.faq .answer {
	padding: 0 28px 26px;
	font-family: 'Bricolage Grotesque', sans-serif;
	font-size: 15px;
	line-height: 1.65;
	color: var(--bone);
	max-width: 880px;
}
.faq .answer p + p { margin-top: 10px; }
.faq .answer strong { color: var(--bone); font-weight: 500; }
.faq .answer a { color: var(--cyan); }

/* Contact strip */
.contact-strip {
	display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 24px;
	padding: 40px;
	background: linear-gradient(90deg, rgba(255,34,51,0.06), rgba(255,31,156,0.06));
	border: 1px solid var(--hair);
}
.contact-strip .col h4 { font-family: 'JetBrains Mono', monospace; font-size: 10px; letter-spacing: 0.35em; text-transform: uppercase; color: var(--red); margin: 0 0 12px; text-shadow: 0 0 8px var(--red); }
.contact-strip .col p, .contact-strip .col a { font-family: 'Bricolage Grotesque', sans-serif; font-size: 16px; color: var(--bone); margin: 0; text-decoration: none; line-height: 1.5; display: block; }
.contact-strip .col a:hover { color: var(--cyan); }

/* Footer link on homepage visit section */
.visit-detail-link { display: inline-flex; align-items: center; gap: 10px; margin-top: 32px; padding: 14px 22px; border: 1px solid var(--hair-strong); color: var(--bone); text-decoration: none; font-family: 'JetBrains Mono', monospace; font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase; transition: 0.3s ease; }
.visit-detail-link:hover { border-color: var(--red); background: rgba(255, 34, 51, 0.06); box-shadow: 0 0 22px rgba(255, 34, 51, 0.3); }
.visit-detail-link .arrow { font-size: 14px; transition: transform 0.3s ease; }
.visit-detail-link:hover .arrow { transform: translate(3px, -3px); }

/* Page-hero floor tags + official-site button (room pages). */
.page-hero .floors { margin-bottom: 18px; }
.hero-site-link { display: inline-flex; align-items: center; gap: 10px; margin-top: 26px; padding: 14px 22px; border: 1px solid var(--hair-strong); color: var(--bone); text-decoration: none; font-family: 'JetBrains Mono', monospace; font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase; transition: 0.3s ease; }
.hero-site-link:hover { border-color: var(--accent, var(--red)); box-shadow: 0 0 22px color-mix(in srgb, var(--accent, var(--red)) 30%, transparent); }
.hero-site-link .arrow { font-size: 14px; transition: transform 0.3s ease; }
.hero-site-link:hover .arrow { transform: translate(3px, -3px); }

/* Patio note under the rooms grid. */
.rooms-patio-note { margin-top: 18px; font-family: 'JetBrains Mono', monospace; font-size: 11px; letter-spacing: 0.25em; text-transform: uppercase; color: var(--bone); opacity: 0.6; }

@media (max-width: 980px) {
	.visit-page { padding: 60px 20px 100px; }
	.visit-section { margin-bottom: 70px; }
	.visit-section-head { flex-direction: column; gap: 8px; align-items: flex-start; padding-bottom: 16px; margin-bottom: 32px; }
	.info-grid, .info-grid.two { grid-template-columns: 1fr; gap: 16px; }
	.info-card { padding: 24px; }
	.id-callout { padding: 24px; }
	.id-rules { grid-template-columns: 1fr; }
	.faq summary { padding: 18px 22px; font-size: 16px; }
	.faq .answer { padding: 0 22px 22px; }
	.contact-strip { grid-template-columns: 1fr; gap: 20px; padding: 28px; }
}

/* Ticker pill + address don't fit mid-size screens — the address lives in the footer/Visit anyway. */
@media (max-width: 1200px) {
	.util-meta .util-link, .util-meta .util-link + .sep { display: none; }
}

/* ─────────── RESPONSIVE ─────────── */
@media (max-width: 980px) {
	.util-strip { height: auto; min-height: 32px; padding: 4px 0; }
	.util-inner { height: auto; min-height: 24px; padding: 0 16px; font-size: 10px; letter-spacing: 0.18em; }
	.util-status { white-space: nowrap; }
	.util-meta { gap: 14px; }
	.util-meta .sep, .util-meta .util-link { display: none; }
	.util-pill { font-size: 9px; padding: 3px 8px; }
	.util-social { gap: 10px; }
	.util-social svg { width: 13px; height: 13px; }
	.nav-inner { height: 64px; padding: 0 16px; gap: 16px; }
	.brand-word .sub { display: none; }
	.brand-word .main { font-size: 16px; letter-spacing: 0.28em; }
	.brand-mark { width: 30px; height: 30px; }
	.primary-nav, .nav-divider, .ghost-cta { display: none; }
	.hamburger { display: block; }
	.hero { padding: 0 20px; grid-template-rows: var(--s4-header-h, 96px) 1fr auto; }
	.hero-meta { gap: 26px; flex-wrap: wrap; }
	.hero-meta .item strong { font-size: 22px; }
	.s4-section { padding: 80px 20px; }
	.rooms-grid { grid-template-columns: 1fr; }
	.room-rose, .room-cheat, .room-granite, .room-main, .room-horror { grid-column: span 1; aspect-ratio: 4/5; }
	.visit-grid { grid-template-columns: 1fr; gap: 50px; }
	.visit-info dl { grid-template-columns: 1fr; gap: 6px 0; }
	.visit-info dt { padding-top: 18px; }
	.foot-top { grid-template-columns: 1fr 1fr; gap: 36px; padding: 0 20px 50px; }
	.foot-bottom { padding: 30px 20px 0; flex-direction: column; gap: 18px; text-align: center; }
	.site-footer { padding: 60px 0 36px; }
	.page-hero { padding: 160px 20px 70px; }
	.page-content { padding: 60px 20px 100px; }
}

/* Small phones: the pill shrinks with the strip — overflowing text
   marquee-scrolls inside it, so everything stays on screen. */
@media (max-width: 560px) {
	.util-pill { max-width: 44vw; }
	.util-status { font-size: 9.5px; letter-spacing: 0.14em; }
}

@media (prefers-reduced-motion: reduce) {
	*, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
	.neon-headline { animation: none; }
}

/* ── Granite Bar rave page (every rule scoped under .granite-page) ─── */
.granite-page { --g-panel: #141417; --g-edge: color-mix(in srgb, var(--orange) 35%, transparent); }
.granite-page section { margin: 0 0 56px; }
.granite-page a { color: var(--orange); }

.granite-page .granite-manifesto .g-line { font-family: 'Anton', sans-serif; font-size: clamp(34px, 6vw, 64px); line-height: 1.02; text-transform: uppercase; letter-spacing: 0.01em; margin: 0; color: var(--bone); }
.granite-page .granite-manifesto .g-line.is-accent { color: var(--orange); text-shadow: 0 0 28px color-mix(in srgb, var(--orange) 55%, transparent); }
.granite-page .granite-manifesto .g-sub { font-family: 'JetBrains Mono', monospace; font-size: 13px; letter-spacing: 0.12em; margin-top: 20px; color: var(--bone); opacity: 0.72; max-width: 56ch; }

.granite-page .g-eyebrow { font-family: 'JetBrains Mono', monospace; font-size: 11px; font-weight: 500; letter-spacing: 0.4em; text-transform: uppercase; color: var(--orange); margin: 0 0 18px; }
.granite-page .sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
.granite-page .g-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.granite-page .granite-night { background: var(--g-panel); border: 1px solid var(--g-edge); padding: 22px 20px 18px; transition: border-color 0.3s ease, box-shadow 0.3s ease; }
.granite-page .granite-night:hover { border-color: var(--orange); box-shadow: 0 0 26px color-mix(in srgb, var(--orange) 25%, transparent); }
.granite-page .g-day { font-family: 'JetBrains Mono', monospace; font-size: 12px; letter-spacing: 0.35em; color: var(--bone); opacity: 0.65; margin-bottom: 10px; }
.granite-page .g-door { font-family: 'JetBrains Mono', monospace; font-size: 11px; letter-spacing: 0.2em; color: var(--bone); opacity: 0.55; margin-top: 12px; }
.granite-page .g-note { font-family: 'JetBrains Mono', monospace; font-size: 12px; letter-spacing: 0.08em; margin-top: 16px; opacity: 0.7; }

/* Genre cycler: 7 genres × 2s = 14s loop. steps(7) holds each 1.25em line
   slot for 2s; every change is a hard cut, so no wrap duplicate is needed —
   the loop's reset from genre 7 to genre 1 looks like any other step. */
.granite-page .granite-cycle { height: 1.25em; overflow: hidden; font-family: 'Anton', sans-serif; font-size: clamp(22px, 3vw, 34px); text-transform: uppercase; color: var(--orange); }
.granite-page .granite-cycle ul { list-style: none; margin: 0; padding: 0; animation: granite-cycle 14s steps(7, end) infinite; }
.granite-page .granite-cycle li { height: 1.25em; line-height: 1.25; }
.granite-page .granite-night:nth-child(2) .granite-cycle ul { animation-delay: -6.7s; }
@keyframes granite-cycle { to { transform: translateY(-8.75em); } }

.granite-page .granite-notice p { font-family: 'JetBrains Mono', monospace; font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase; margin: 0; padding: 18px 20px; border: 1px dashed var(--orange); background: color-mix(in srgb, var(--orange) 8%, transparent); color: var(--bone); }

.granite-page .granite-sound { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.granite-page .granite-sound .g-card { background: var(--g-panel); border: 1px solid var(--hair); padding: 24px 22px; }
.granite-page .granite-sound h2 { font-family: 'Anton', sans-serif; font-size: 22px; text-transform: uppercase; margin: 0 0 10px; color: var(--orange); }
.granite-page .granite-sound p { margin: 0; opacity: 0.85; }

.granite-page .granite-follow p { font-family: 'JetBrains Mono', monospace; font-size: 12px; letter-spacing: 0.08em; opacity: 0.8; }

/* Genre ticker strip: reuses the homepage s4-scroll keyframes (track is two
   identical halves, so translateX(-50%) loops seamlessly). */
.granite-page .granite-ticker { overflow: hidden; white-space: nowrap; border-top: 1px solid var(--g-edge); border-bottom: 1px solid var(--g-edge); padding: 12px 0; margin: 0 0 56px; font-family: 'Anton', sans-serif; font-size: 18px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--orange); }
.granite-page .granite-ticker .track { display: inline-flex; gap: 36px; animation: s4-scroll 26s linear infinite; }
.granite-page .granite-ticker span { display: inline-flex; align-items: center; gap: 36px; }
.granite-page .granite-ticker span::after { content: '◆'; font-size: 10px; opacity: 0.7; }

.granite-page .granite-photo { aspect-ratio: 16/9; overflow: hidden; border: 1px solid var(--hair); }
.granite-page .granite-photo img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 58%; display: block; filter: saturate(1.15) contrast(1.05); }

.granite-page .granite-arc { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.granite-page .granite-arc .g-stop { border-left: 2px solid var(--orange); padding: 4px 0 4px 16px; background: var(--g-panel); }
.granite-page .granite-arc .g-time { font-family: 'Anton', sans-serif; font-size: 28px; color: var(--orange); }
.granite-page .granite-arc .g-what { font-family: 'JetBrains Mono', monospace; font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; opacity: 0.7; margin-top: 6px; padding-right: 8px; }

@media (max-width: 760px) {
	.granite-page .g-grid, .granite-page .granite-sound, .granite-page .granite-arc { grid-template-columns: 1fr; }
}

/* Reduced motion: no animation; cycler expands into the full static genre
   list (smaller type). All info preserved. */
@media (prefers-reduced-motion: reduce) {
	.granite-page .granite-cycle { height: auto; }
	.granite-page .granite-cycle ul { animation: none; }
	.granite-page .granite-cycle li { height: auto; line-height: 1.4; font-size: 0.7em; }
	.granite-page .granite-ticker { white-space: normal; }
	.granite-page .granite-ticker .track { animation: none; flex-wrap: wrap; }
	.granite-page .granite-ticker .track span:nth-child(n+10) { display: none; } /* hide the duplicate half */
}
