/* =========================================================
   CALIMA Sunset Club - Editorial sunset experience
   The sky is the hero. Content floats above it.
   ========================================================= */

/* ---------- Variables ---------- */
:root {
	--bg-fallback: #0d0a1a;
	--text-light: #f7f3ec;
	--text-warm: #f3e6d2;
	--text-muted: rgba(247, 243, 236, 0.6);
	--text-dim: rgba(247, 243, 236, 0.4);

	--sunset-orange: #ff7a3c;
	--sunset-peach: #f7c59f;
	--sunset-pink: #e8799a;
	--sunset-purple: #7b2c8a;
	--gold: #f2cf9a;

	--font-display: 'Bebas Neue', sans-serif;
	--font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

	--nav-h: 76px;
	--ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset / base ---------- */
* { box-sizing: border-box; }

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

body {
	margin: 0;
	font-family: var(--font-body);
	background: var(--bg-fallback);
	color: var(--text-light);
	line-height: 1.6;
	overflow-x: hidden;
	-webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
	font-family: var(--font-display);
	font-weight: 400;
	margin: 0;
	letter-spacing: 0.02em;
}

p { margin: 0; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

::selection { background: rgba(255, 122, 60, 0.35); color: #fff; }

/* ---------- Sky background (fixed, full-viewport) ---------- */
.sky {
	position: fixed;
	inset: 0;
	z-index: -3;
	background: linear-gradient(to bottom, #5f9fd4 0%, #a7cbe6 52%, #e6e3cf 100%);
	will-change: background;
}

/* Sun */
.sun {
	position: fixed;
	left: 50%;
	top: 30%;
	width: clamp(90px, 12vw, 150px);
	height: clamp(90px, 12vw, 150px);
	margin-left: calc(clamp(90px, 12vw, 150px) / -2);
	border-radius: 50%;
	background: radial-gradient(circle, #fff4d6 0%, #ffd98a 38%, rgba(255, 180, 90, 0.35) 62%, transparent 75%);
	box-shadow: 0 0 70px 40px rgba(255, 160, 80, 0.35);
	z-index: -2;
	will-change: top, opacity, background;
	pointer-events: none;
}

/* Stars */
.stars {
	position: fixed;
	inset: 0;
	z-index: -1;
	opacity: 0;
	pointer-events: none;
	will-change: opacity;
}

.star {
	position: absolute;
	background: #fff;
	border-radius: 50%;
	opacity: var(--tw, 0.6);
	animation: twinkle 3s ease-in-out infinite;
}

@keyframes twinkle {
	0%, 100% { opacity: calc(var(--tw, 0.6) * 0.4); }
	50% { opacity: var(--tw, 0.6); }
}

/* Haze near horizon */
.haze {
	position: fixed;
	left: 0;
	right: 0;
	bottom: 8%;
	height: 30vh;
	z-index: -1;
	background: radial-gradient(ellipse at 50% 100%, rgba(255, 200, 150, 0.4) 0%, transparent 70%);
	filter: blur(20px);
	opacity: 0;
	pointer-events: none;
	will-change: opacity;
}

/* Grain / noise overlay */
.grain {
	position: fixed;
	inset: 0;
	z-index: 50;
	pointer-events: none;
	opacity: 0.04;
	mix-blend-mode: overlay;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
	background-size: 120px 120px;
}

/* ---------- Layout helpers ---------- */
.container {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 clamp(1.25rem, 5vw, 3rem);
}

.section {
	position: relative;
	min-height: 100vh;
	display: flex;
	align-items: center;
	padding: clamp(4rem, 10vh, 8rem) 0;
}

.section--tall { min-height: 120vh; }
.section--short { min-height: auto; padding: clamp(3rem, 8vh, 6rem) 0; }

/* ---------- Typography scale ---------- */
.display-xl {
	font-size: clamp(3.5rem, 14vw, 11rem);
	line-height: 0.9;
	letter-spacing: 0.04em;
}

.display-lg {
	font-size: clamp(2.5rem, 8vw, 6rem);
	line-height: 0.95;
}

.display-md {
	font-size: clamp(2rem, 5vw, 3.5rem);
	line-height: 1;
}

.eyebrow {
	font-family: var(--font-body);
	font-size: 0.78rem;
	font-weight: 600;
	letter-spacing: 0.4em;
	text-transform: uppercase;
	color: var(--text-muted);
	margin-bottom: 1.5rem;
	display: block;
}

.body-lg {
	font-size: clamp(1.1rem, 2vw, 1.4rem);
	font-weight: 300;
	color: var(--text-warm);
	max-width: 34ch;
}

.body-sm {
	font-size: 0.95rem;
	font-weight: 300;
	color: var(--text-muted);
}

/* ---------- Custom cursor ---------- */
.cursor-dot, .cursor-ring {
	position: fixed;
	top: 0; left: 0;
	pointer-events: none;
	z-index: 100;
	opacity: 0;
	transition: opacity 0.3s ease;
}

body.has-cursor .cursor-dot,
body.has-cursor .cursor-ring { opacity: 1; }

.cursor-dot {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--text-light);
	transition: width 0.3s var(--ease), height 0.3s var(--ease), background 0.3s;
}

.cursor-ring {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	border: 1px solid rgba(247, 243, 236, 0.5);
	transition: width 0.4s var(--ease), height 0.4s var(--ease), border-color 0.3s, background 0.3s;
}

.cursor-dot--hover { width: 10px; height: 10px; background: var(--sunset-orange); }
.cursor-ring--hover { width: 60px; height: 60px; border-color: rgba(255, 122, 60, 0.7); background: rgba(255, 122, 60, 0.08); }

@media (hover: none), (pointer: coarse) {
	.cursor-dot, .cursor-ring { display: none; }
}

body.has-cursor { cursor: none; }
body.has-cursor a, body.has-cursor button { cursor: none; }

/* ---------- Navigation ---------- */
.navbar-custom {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	padding: 1.25rem 0;
	transition: background 0.6s ease, padding 0.4s ease, box-shadow 0.6s ease;
}

.navbar-custom.nav-scrolled {
	padding: 0.75rem 0;
	background: rgba(13, 10, 26, 0.55);
	backdrop-filter: blur(14px);
	box-shadow: 0 1px 0 rgba(255, 255, 255, 0.06);
}

.navbar-custom.nav-night {
	background: rgba(7, 9, 26, 0.7);
	backdrop-filter: blur(18px);
}

.brand {
	display: flex;
	align-items: baseline;
	gap: 0.6rem;
}

.brand-logo {
	font-family: var(--font-display);
	font-size: 1.9rem;
	letter-spacing: 0.12em;
	background: linear-gradient(135deg, #fff 0%, var(--gold) 60%, var(--sunset-peach) 100%);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	color: transparent;
}

.brand-sub {
	font-family: var(--font-body);
	font-size: 0.6rem;
	font-weight: 600;
	letter-spacing: 0.35em;
	text-transform: uppercase;
	color: var(--text-muted);
}

.nav-links {
	display: flex;
	align-items: center;
	gap: clamp(1rem, 2.5vw, 2.2rem);
	list-style: none;
	margin: 0;
	padding: 0;
}

.nav-links a {
	font-size: 0.8rem;
	font-weight: 500;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--text-light);
	position: relative;
	padding: 0.4rem 0;
	transition: color 0.3s;
}

.nav-links a::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 0;
	height: 1px;
	background: var(--text-light);
	transition: width 0.4s var(--ease);
}

.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
	font-size: 0.78rem !important;
	font-weight: 600 !important;
	letter-spacing: 0.1em !important;
	padding: 0.6rem 1.4rem !important;
	border: 1px solid rgba(247, 243, 236, 0.4);
	border-radius: 50px;
	color: var(--text-light) !important;
	transition: background 0.4s, border-color 0.4s !important;
}

.nav-cta::after { display: none; }
.nav-cta:hover { background: rgba(247, 243, 236, 0.12); border-color: var(--text-light); color: #fff !important; }

/* Mobile nav */
.nav-toggle {
	display: none;
	background: none;
	border: none;
	color: var(--text-light);
	font-size: 1.5rem;
	cursor: pointer;
	padding: 0.3rem;
}

@media (max-width: 900px) {
	.nav-toggle { display: block; }
	.nav-menu {
		position: fixed;
		inset: 0;
		background: rgba(7, 9, 26, 0.92);
		backdrop-filter: blur(20px);
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		gap: 2rem;
		opacity: 0;
		pointer-events: none;
		transition: opacity 0.5s ease;
	}

	.nav-menu.open {
		opacity: 1;
		pointer-events: auto;
	}

	.nav-links {
		flex-direction: column;
		gap: 1.75rem;
	}

	.nav-links a { font-size: 1.1rem; }
}

/* ---------- Buttons ---------- */
.btn-sunset {
	display: inline-flex;
	align-items: center;
	gap: 0.6rem;
	font-family: var(--font-body);
	font-size: 0.85rem;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--text-light);
	background: linear-gradient(135deg, var(--sunset-orange), var(--sunset-pink));
	border: none;
	padding: 1rem 2.2rem;
	border-radius: 50px;
	cursor: pointer;
	transition: transform 0.4s var(--ease), box-shadow 0.4s ease;
	box-shadow: 0 8px 30px rgba(255, 122, 60, 0.25);
}

.btn-sunset:hover {
	transform: translateY(-3px);
	box-shadow: 0 14px 40px rgba(255, 122, 60, 0.4);
}

.btn-sunset .arrow { transition: transform 0.4s var(--ease); }
.btn-sunset:hover .arrow { transform: translateX(4px); }

.btn-ghost {
	display: inline-flex;
	align-items: center;
	gap: 0.6rem;
	font-family: var(--font-body);
	font-size: 0.85rem;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--text-light);
	background: transparent;
	border: 1px solid rgba(247, 243, 236, 0.35);
	padding: 1rem 2.2rem;
	border-radius: 50px;
	cursor: pointer;
	transition: background 0.4s, border-color 0.4s;
}

.btn-ghost:hover { background: rgba(247, 243, 236, 0.1); border-color: var(--text-light); }

/* ---------- Hero ---------- */
.hero {
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	padding-top: var(--nav-h);
	position: relative;
}

.hero h1 {
	font-size: clamp(4rem, 18vw, 15rem);
	line-height: 0.85;
	letter-spacing: 0.06em;
	background: linear-gradient(180deg, #fff 30%, var(--gold) 70%, var(--sunset-orange) 100%);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	color: transparent;
	filter: drop-shadow(0 4px 30px rgba(255, 180, 90, 0.3));
}

.hero-sub {
	font-family: var(--font-display);
	font-size: clamp(1rem, 3vw, 1.6rem);
	letter-spacing: 0.7em;
	text-transform: uppercase;
	color: var(--text-warm);
	margin-top: 0.5rem;
	margin-left: 0.7em;
}

.hero-kicker {
	display: block;
	font-family: var(--font-body);
	font-size: 0.78rem;
	font-weight: 600;
	letter-spacing: 0.45em;
	text-transform: uppercase;
	color: var(--gold);
	margin-bottom: 1.5rem;
}

.hero-poem {
	margin-top: clamp(2rem, 6vh, 4rem);
	font-family: var(--font-display);
	font-size: clamp(1.4rem, 4vw, 2.4rem);
	line-height: 1.35;
	color: var(--text-light);
	letter-spacing: 0.04em;
}

.hero-poem .line { display: block; opacity: 0.95; }
.hero-poem .accent { color: var(--gold); }

.hero-desc {
	margin: clamp(1.5rem, 4vh, 2.5rem) auto 0;
	max-width: 56ch;
	font-size: clamp(1rem, 2vw, 1.2rem);
	font-weight: 300;
	color: var(--text-warm);
}

.hero-cta { margin-top: clamp(2rem, 5vh, 3.5rem); }

.scroll-hint {
	position: absolute;
	bottom: 2.5rem;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.75rem;
	font-size: 0.7rem;
	letter-spacing: 0.3em;
	text-transform: uppercase;
	color: var(--text-muted);
}

.scroll-hint .line {
	width: 1px;
	height: 48px;
	background: linear-gradient(var(--text-muted), transparent);
	animation: hint-pulse 2s ease-in-out infinite;
}

@keyframes hint-pulse {
	0%, 100% { opacity: 0.4; transform: scaleY(0.7); }
	50% { opacity: 1; transform: scaleY(1); }
}

/* ---------- Chapter labels ---------- */
.chapter {
	position: absolute;
	top: clamp(6rem, 12vh, 9rem);
	left: clamp(1.25rem, 5vw, 3rem);
	font-family: var(--font-display);
	font-size: clamp(1.2rem, 3vw, 2rem);
	letter-spacing: 0.3em;
	text-transform: uppercase;
	color: var(--text-dim);
	z-index: 2;
	opacity: 0.3;
}

.chapter .num {
	display: block;
	font-family: var(--font-body);
	font-size: 0.7rem;
	letter-spacing: 0.4em;
	color: var(--text-dim);
	margin-bottom: 0.5rem;
}

/* ---------- Content blocks ---------- */
.content-block { position: relative; z-index: 2; }

.text-col { max-width: 560px; }

.text-col h2 { margin-bottom: 1.5rem; }
.text-col .body-lg { margin-bottom: 2rem; }

/* Music genres inline list */
.genre-list {
	list-style: none;
	margin: 2.5rem 0 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem 1.5rem;
}

.genre-list li {
	font-family: var(--font-display);
	font-size: clamp(1.3rem, 3vw, 2rem);
	letter-spacing: 0.08em;
	color: var(--text-warm);
	display: flex;
	align-items: center;
	gap: 0.75rem;
}

.genre-list li::before {
	content: '';
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--sunset-orange), var(--sunset-pink));
	box-shadow: 0 0 12px rgba(255, 122, 60, 0.6);
}

/* ---------- Photo / editorial image ---------- */
.photo {
	position: relative;
	overflow: hidden;
	border-radius: 4px;
	width: 100%;
	aspect-ratio: 4 / 5;
	background: linear-gradient(135deg, rgba(255, 122, 60, 0.15), rgba(123, 44, 138, 0.2));
}

.photo--wide { aspect-ratio: 16 / 9; }

.photo-img {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	will-change: transform;
	filter: saturate(1.05) contrast(1.02);
}

/* Gradient placeholder when no real photo */
.photo-ph {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	gap: 1rem;
	background:
		radial-gradient(ellipse at 50% 80%, rgba(255, 122, 60, 0.35) 0%, transparent 60%),
		linear-gradient(160deg, rgba(42, 48, 90, 0.5) 0%, rgba(75, 35, 60, 0.5) 100%);
}

.photo-ph .ph-icon { font-size: 2.5rem; opacity: 0.5; }
.photo-ph .ph-label { font-family: var(--font-display); letter-spacing: 0.2em; font-size: 1.2rem; color: var(--text-warm); }

.photo::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, transparent 55%, rgba(7, 9, 26, 0.45) 100%);
	pointer-events: none;
}

/* ---------- Pure-CSS sunset scenes (no external photos) ---------- */
.scene {
	position: absolute;
	inset: 0;
	overflow: hidden;
	will-change: transform;
}

/* Late afternoon — warm clear sky */
.scene--afternoon {
	background: linear-gradient(180deg, #6aa8d8 0%, #a7cbe6 40%, #f2d9b0 75%, #e8c896 100%);
}

.scene-sun {
	position: absolute;
	border-radius: 50%;
	background: radial-gradient(circle, #fff6dd 0%, #ffe2a0 45%, rgba(255, 210, 130, 0.4) 70%, transparent 80%);
}

.scene--afternoon .scene-sun {
	width: 26%;
	aspect-ratio: 1;
	top: 22%;
	left: 58%;
	box-shadow: 0 0 60px 20px rgba(255, 220, 150, 0.5);
}

.scene-hills {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 34%;
}

/* Golden hour — warm gold/peach */
.scene--golden {
	background: linear-gradient(180deg, #5a7fb0 0%, #d99a6a 35%, #f2b878 60%, #e89a5c 100%);
}

.scene--golden .scene-sun {
	width: 34%;
	aspect-ratio: 1;
	top: 48%;
	left: 40%;
	box-shadow: 0 0 90px 35px rgba(255, 170, 90, 0.55);
	background: radial-gradient(circle, #fff0c8 0%, #ffcf8a 45%, rgba(255, 160, 80, 0.4) 70%, transparent 80%);
}

.scene--golden .scene-hills { height: 30%; }

/* SVG silhouettes for depth */
.scene-silhouette {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 40%;
	display: block;
}

.scene--afternoon .scene-silhouette { fill: #2a3a52; opacity: 0.85; }
.scene--golden .scene-silhouette { fill: #3a2a3e; opacity: 0.9; }

/* Subtle cloud wisps */
.scene-cloud {
	position: absolute;
	border-radius: 50%;
	filter: blur(14px);
	opacity: 0.5;
}

.scene--afternoon .scene-cloud.c1 { width: 30%; height: 6%; top: 18%; left: 12%; background: rgba(255, 250, 240, 0.7); }
.scene--afternoon .scene-cloud.c2 { width: 22%; height: 5%; top: 30%; left: 60%; background: rgba(255, 240, 220, 0.6); }
.scene--golden .scene-cloud.c1 { width: 34%; height: 7%; top: 22%; left: 8%; background: rgba(255, 220, 180, 0.6); }
.scene--golden .scene-cloud.c2 { width: 26%; height: 5%; top: 36%; left: 55%; background: rgba(255, 200, 150, 0.5); }

/* Reflection strip (water) for golden hour */
.scene-reflect {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 18%;
	background: linear-gradient(180deg, rgba(255, 180, 110, 0.35) 0%, rgba(60, 40, 70, 0.5) 100%);
}

.scene--golden .scene-reflect { opacity: 0.7; }

.photo-caption {
	position: absolute;
	bottom: 1.5rem;
	left: 1.5rem;
	z-index: 2;
	font-size: 0.75rem;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--text-muted);
}

/* Two column layout */
.split {
	display: grid;
	grid-template-columns: 1fr;
	gap: clamp(2rem, 6vw, 5rem);
	align-items: center;
}

@media (min-width: 900px) {
	.split--left .photo { order: -1; }
	.split { grid-template-columns: 1fr 1fr; }
}

/* ---------- Event badge ---------- */
.event-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
	margin-top: 2rem;
	padding: 0.8rem 1.6rem;
	border: 1px solid rgba(242, 207, 154, 0.35);
	border-radius: 50px;
	background: rgba(242, 207, 154, 0.06);
	backdrop-filter: blur(6px);
	font-size: 0.78rem;
	font-weight: 600;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--gold);
}

.event-badge .dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--sunset-orange);
	box-shadow: 0 0 12px rgba(255, 122, 60, 0.8);
	animation: badge-pulse 1.8s ease-in-out infinite;
}

@keyframes badge-pulse {
	0%, 100% { opacity: 1; }
	50% { opacity: 0.35; }
}

/* ---------- Stats ---------- */
.stats {
	display: flex;
	flex-wrap: wrap;
	gap: clamp(2rem, 6vw, 5rem);
	margin-top: 3rem;
}

.stat { display: flex; flex-direction: column; gap: 0.5rem; }

.stat-num {
	font-family: var(--font-display);
	font-size: clamp(3rem, 8vw, 5rem);
	line-height: 1;
	background: linear-gradient(135deg, var(--gold), var(--sunset-orange));
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	color: transparent;
}

.stat-label {
	font-size: 0.8rem;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--text-muted);
}

/* ---------- Collaboration cards ---------- */
.collab-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.5rem;
	margin-top: 3rem;
}

@media (min-width: 800px) { .collab-grid { grid-template-columns: repeat(3, 1fr); } }

.collab-card {
	padding: 2.5rem 2rem;
	border: 1px solid rgba(247, 243, 236, 0.12);
	border-radius: 8px;
	background: rgba(247, 243, 236, 0.03);
	backdrop-filter: blur(6px);
	transition: border-color 0.5s ease, background 0.5s ease, transform 0.5s var(--ease);
}

.collab-card:hover {
	border-color: rgba(255, 122, 60, 0.4);
	background: rgba(255, 122, 60, 0.05);
	transform: translateY(-6px);
}

.collab-num {
	font-family: var(--font-display);
	font-size: 2rem;
	color: var(--sunset-orange);
	margin-bottom: 1rem;
	opacity: 0.7;
}

.collab-card h3 { font-size: 1.6rem; margin-bottom: 0.75rem; }
.collab-card p { color: var(--text-muted); font-weight: 300; font-size: 0.95rem; }

/* ---------- Final CTA (night) ---------- */
.final-cta {
	text-align: center;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	position: relative;
}

.final-cta h2 {
	font-size: clamp(3rem, 12vw, 9rem);
	line-height: 0.9;
	background: linear-gradient(180deg, #fff 20%, var(--sunset-pink) 60%, var(--sunset-purple) 100%);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	color: transparent;
	filter: drop-shadow(0 0 40px rgba(232, 121, 154, 0.3));
}

.final-cta .sub {
	margin-top: 1.5rem;
	font-family: var(--font-display);
	font-size: clamp(1.2rem, 3vw, 2rem);
	letter-spacing: 0.2em;
	color: var(--text-warm);
}

.final-cta .cta-actions {
	margin-top: 3rem;
	display: flex;
	gap: 1.25rem;
	flex-wrap: wrap;
	justify-content: center;
}

/* Club glow (subtle music/event lights at night) */
.club-glow {
	position: absolute;
	bottom: -10vh;
	left: 50%;
	transform: translateX(-50%);
	width: 80vw;
	height: 40vh;
	background: radial-gradient(ellipse at center, rgba(232, 121, 154, 0.18) 0%, rgba(123, 44, 138, 0.12) 40%, transparent 70%);
	filter: blur(30px);
	pointer-events: none;
	opacity: 0;
}

/* ---------- Contact section ---------- */
.contact-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2rem;
	margin-top: 3rem;
}

@media (min-width: 700px) { .contact-grid { grid-template-columns: repeat(3, 1fr); } }

.contact-card {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 1rem;
	padding: 2rem;
	border: 1px solid rgba(247, 243, 236, 0.12);
	border-radius: 8px;
	background: rgba(247, 243, 236, 0.03);
	transition: border-color 0.5s, background 0.5s, transform 0.5s var(--ease);
}

.contact-card:hover {
	border-color: rgba(255, 122, 60, 0.4);
	background: rgba(255, 122, 60, 0.05);
	transform: translateY(-6px);
}

.contact-icon {
	width: 52px;
	height: 52px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--sunset-orange), var(--sunset-pink));
	font-size: 1.4rem;
	color: #fff;
}

.contact-card h3 { font-size: 1.4rem; }
.contact-card p { color: var(--text-muted); font-weight: 300; word-break: break-all; }

/* ---------- Footer ---------- */
.footer {
	position: relative;
	z-index: 2;
	padding: clamp(3rem, 8vh, 5rem) 0 2.5rem;
	border-top: 1px solid rgba(247, 243, 236, 0.08);
	text-align: center;
}

.footer-logo {
	font-family: var(--font-display);
	font-size: 2.5rem;
	letter-spacing: 0.15em;
	background: linear-gradient(135deg, #fff, var(--gold));
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	color: transparent;
}

.footer-tag { margin-top: 0.75rem; font-size: 0.85rem; letter-spacing: 0.15em; color: var(--text-muted); }

.footer-links {
	display: flex;
	gap: 1.25rem;
	justify-content: center;
	margin: 2rem 0;
}

.footer-links a {
	width: 48px;
	height: 48px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	border: 1px solid rgba(247, 243, 236, 0.2);
	font-size: 1.2rem;
	color: var(--text-warm);
	transition: all 0.4s var(--ease);
}

.footer-links a:hover {
	background: linear-gradient(135deg, var(--sunset-orange), var(--sunset-pink));
	border-color: transparent;
	color: #fff;
	transform: translateY(-4px);
	box-shadow: 0 8px 24px rgba(255, 122, 60, 0.3);
}

.footer-copy { font-size: 0.8rem; color: var(--text-dim); }

/* ---------- Reveal (fallback when no GSAP) ---------- */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 1s ease, transform 1s var(--ease); }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* When GSAP is active it takes over; ensure no double-hidden */
html.gsap-active .reveal { opacity: 1; transform: none; transition: none; }

/* ---------- Modal (Bootstrap) ---------- */
.sunset-modal {
	background: #14102a;
	border: 1px solid rgba(255, 122, 60, 0.3);
	border-radius: 16px;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
	color: var(--text-light);
}

.sunset-modal .modal-title { font-family: var(--font-display); font-size: 1.6rem; letter-spacing: 0.05em; }
.sunset-modal .btn-close { filter: invert(1) brightness(2); }
.sunset-modal .form-label { color: var(--text-light); font-weight: 500; }

.sunset-modal .form-control {
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 122, 60, 0.25);
	color: var(--text-light);
	padding: 0.8rem 1rem;
	border-radius: 10px;
}

.sunset-modal .form-control:focus {
	background: rgba(255, 255, 255, 0.08);
	border-color: var(--sunset-orange);
	box-shadow: 0 0 0 3px rgba(255, 122, 60, 0.2);
	color: var(--text-light);
}

.sunset-modal .form-control::placeholder { color: var(--text-dim); }
.sunset-modal .form-text { color: var(--text-muted); }
.sunset-modal .form-text a { color: var(--sunset-peach); }

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
	* { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
	html { scroll-behavior: auto; }
	.reveal { opacity: 1; transform: none; }
}

/* ---------- Mobile tuning ---------- */
@media (max-width: 768px) {
	.chapter { position: static; margin-bottom: 2rem; opacity: 0.5; }
	.section { min-height: auto; padding: clamp(4rem, 12vh, 7rem) 0; }
	.hero { min-height: 92vh; }
}
