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

html {
	scroll-behavior: smooth;
}

body {
	font-family: "Inter", sans-serif;
	background: #000000;
	color: #f4f4f4;
	overflow-x: hidden;
}

svg {
	fill: none;
}

.site-wrapper {
	max-width: 1440px;
	margin-inline: auto;
	background: var(--W);
	position: relative;
	box-shadow: 0 0 50px rgba(0, 0, 0, 0.05);
	min-height: 100vh;
}

:root {
	--Y: #ffd700;
	--Yd: #e5c200;
	--K: #111111;
	--W: #ffffff;
	--cream: #fffdf5;
	--gray: #555;
	--lgray: #999;
	--bebas: "Bebas Neue", Impact, sans-serif;
	--script: "Dancing Script", cursive;
	--sans: "Inter", sans-serif;
}

::-webkit-scrollbar {
	width: 5px;
}

::-webkit-scrollbar-track {
	background: var(--K);
}

::-webkit-scrollbar-thumb {
	background: var(--Y);
	border-radius: 3px;
}

/* ── NAV ── */
.nav {
	position: fixed;
	top: 0;
	width: 100%;
	max-width: 1440px;
	z-index: 1000;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	background: black;
	left: 50%;
	transform: translateX(-50%);
}

.nav.scrolled {
	box-shadow: 0 2px 24px rgba(0, 0, 0, 0.6);
}

.nav-inner {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 32px;
	height: 72px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.nav-logo {
	display: flex;
	align-items: center;
	gap: 12px;
	cursor: pointer;
	text-decoration: none;
}

.nav-links {
	display: flex;
	align-items: center;
	gap: 32px;
}

.nav-link {
	font-size: 11px;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.7);
	cursor: pointer;
	transition: color 0.2s;
	text-decoration: none;
}

.nav-link:hover,
.nav-link.active {
	color: var(--Y);
}

.nav-link.active::after {
	transform: scaleX(1);
}

.nav-cta {
	background: var(--Y);
	color: var(--K);
	padding: 10px 22px;
	font-size: 11px;
	letter-spacing: 1.5px;
	font-weight: 700;
	text-transform: uppercase;
	cursor: pointer;
	border: none;
	transition: background 0.2s;
	font-family: var(--sans);
}

.nav-cta:hover {
	background: var(--Yd);
}

.nav-hamburger {
	display: none;
	flex-direction: column;
	gap: 5px;
	cursor: pointer;
	background: none;
	border: none;
	padding: 4px;
}

.nav-hamburger span {
	display: block;
	width: 24px;
	height: 2px;
	background: var(--W);
	transition: all 0.3s;
}

.nav-hamburger.open span:nth-child(1) {
	transform: rotate(45deg) translateY(9px);
}

.nav-hamburger.open span:nth-child(2) {
	opacity: 0;
}

.nav-hamburger.open span:nth-child(3) {
	transform: rotate(-45deg) translateY(-9px);
}

.nav-mobile {
	display: none;
	background: #111;
	padding: 20px 24px;
	flex-direction: column;
	gap: 16px;
}

.nav-mobile.active {
	display: flex;
}

.nav-mobile .nav-link {
	display: block;
}

/* ── HERO ── */
.hero {
	position: relative;
	height: calc(100vh - 72px);
	min-height: 580px;
	margin-top: 72px;
	overflow: hidden;
	background: var(--K);
}

.hero-slide {
	position: absolute;
	inset: 0;
	background: var(--Y);
	opacity: 0;
	transition: opacity 0.7s ease;
	pointer-events: none;
	overflow: hidden;
}

.hero-slide.active {
	opacity: 1;
	pointer-events: auto;
	overflow: hidden;
}

/* Left yellow panel — legacy, now unused */
.hs-pattern {
	position: absolute;
	inset: 0;
	background-image: repeating-linear-gradient(
		45deg,
		rgba(0, 0, 0, 0.03) 0,
		rgba(0, 0, 0, 0.03) 1px,
		transparent 0,
		transparent 50%
	);
	background-size: 22px 22px;
	pointer-events: none;
}

.hs-geo-a {
	position: absolute;
	top: -100px;
	right: 44%;
	width: 320px;
	height: 320px;
	border-radius: 50%;
	background: rgba(0, 0, 0, 0.05);
	pointer-events: none;
}

.hs-geo-b {
	position: absolute;
	bottom: -50px;
	left: 34%;
	width: 160px;
	height: 160px;
	transform: rotate(45deg);
	background: rgba(0, 0, 0, 0.04);
	pointer-events: none;
}

.hs-geo-c {
	position: absolute;
	top: 15%;
	left: -40px;
	width: 110px;
	height: 110px;
	border-radius: 50%;
	border: 2px solid rgba(0, 0, 0, 0.07);
	pointer-events: none;
}

/* Model image — right, full height, transparent PNG blends into yellow */
.hs-model {
	position: absolute;
	right: 0;
	bottom: 0;
	height: 108%;
	width: 58%;
	display: flex;
	align-items: flex-end;
}

.hs-model img {
	height: 100%;
	width: 100%;
	object-fit: contain;
	object-position: right bottom;
	display: block;
}

.hs-model-fade {
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 300px;
	background: linear-gradient(
		to right,
		var(--Y) 15%,
		rgba(255, 215, 0, 0.6) 65%,
		transparent 100%
	);
	pointer-events: none;
}

/* Text content */
.hs-content {
	position: relative;
	z-index: 3;
	padding: 44px 32px 44px 80px;
	width: 50%;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.hs-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: var(--K);
	color: var(--Y);
	font-size: 9px;
	letter-spacing: 2.5px;
	text-transform: uppercase;
	padding: 5px 14px;
	font-weight: 700;
	margin-bottom: 16px;
	width: fit-content;
	font-family: var(--sans);
}

.hs-eyebrow {
	font-size: 11px;
	letter-spacing: 3.5px;
	color: rgba(0, 0, 0, 0.5);
	text-transform: uppercase;
	font-weight: 700;
	margin-bottom: 4px;
	font-family: var(--sans);
}

.hs-title-bold {
	font-family: var(--bebas);
	font-size: clamp(64px, 8vw, 118px);
	color: var(--K);
	line-height: 0.88;
	letter-spacing: 2px;
}

.hs-title-script {
	font-family: var(--script);
	font-size: clamp(44px, 5.5vw, 80px);
	color: var(--K);
	line-height: 1.1;
	margin-bottom: 18px;
}

/* Location — impossible to miss */
.hs-loc {
	margin-bottom: 18px;
}

.hs-loc-city {
	font-family: var(--bebas);
	font-size: clamp(48px, 6.5vw, 90px);
	color: var(--K);
	letter-spacing: 3px;
	line-height: 0.9;
	display: flex;
	align-items: center;
}

.hs-loc-bar {
	display: inline-block;
	width: 8px;
	height: 0.85em;
	background: var(--K);
	margin-right: 14px;
	flex-shrink: 0;
}

.hs-loc-row2 {
	display: flex;
	align-items: center;
	gap: 10px;
	padding-left: 22px;
	margin-top: 6px;
}

.hs-loc-venue {
	font-size: 14px;
	font-weight: 700;
	color: var(--K);
	letter-spacing: 0.3px;
}

.hs-loc-sep {
	width: 5px;
	height: 5px;
	background: var(--K);
	border-radius: 50%;
	flex-shrink: 0;
}

.hs-loc-date {
	font-family: var(--bebas);
	font-size: 22px;
	color: var(--K);
	letter-spacing: 1.5px;
}

/* Hand-drawn underline under city */
.hs-underline {
	margin-left: 22px;
	margin-top: 4px;
	margin-bottom: 14px;
	opacity: 0.3;
}

.hs-tagline {
	font-family: var(--script);
	font-size: clamp(15px, 1.8vw, 21px);
	color: rgba(0, 0, 0, 0.65);
	margin-bottom: 24px;
	line-height: 1.4;
}

.hs-btns {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
}

.hs-btn-stall {
	background: var(--K);
	color: var(--Y);
	padding: 14px 28px;
	font-size: 11px;
	letter-spacing: 2px;
	font-weight: 700;
	text-transform: uppercase;
	border: none;
	cursor: pointer;
	font-family: var(--sans);
	transition: background 0.2s;
}

.hs-btn-stall:hover {
	background: #222;
}

.hs-btn-pass {
	background: transparent;
	color: var(--K);
	padding: 14px 28px;
	font-size: 11px;
	letter-spacing: 2px;
	font-weight: 700;
	text-transform: uppercase;
	border: 2.5px solid var(--K);
	cursor: pointer;
	font-family: var(--sans);
	transition: background 0.2s;
}

.hs-btn-pass:hover {
	background: rgba(0, 0, 0, 0.08);
}

/* Arrows */
.hero-arr {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 48px;
	height: 48px;
	background: rgba(0, 0, 0, 0.7);
	border: none;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 10;
	transition: background 0.2s;
	color: var(--Y);
}

.hero-arr:hover {
	background: var(--K);
}

.hero-arr-prev {
	left: 16px;
}

.hero-arr-next {
	right: 16px;
}

/* Dots */
.hero-dots {
	position: absolute;
	bottom: 20px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 8px;
	z-index: 10;
}

.hero-dot-btn {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: rgba(0, 0, 0, 0.25);
	border: none;
	cursor: pointer;
	transition: all 0.35s;
	padding: 0;
}

.hero-dot-btn.on {
	background: var(--K);
	width: 28px;
	border-radius: 4px;
}

/* Slide counter */
.hero-counter {
	position: absolute;
	top: 20px;
	right: 72px;
	font-family: var(--bebas);
	font-size: 14px;
	color: rgba(0, 0, 0, 0.35);
	letter-spacing: 2px;
	z-index: 10;
}

/* ── STATS ── */
.stats {
	background: var(--K);
}

.stats-inner {
	max-width: 1280px;
	margin: 0 auto;
	padding: 64px 32px;
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 0;
}

.stat-item {
	text-align: center;
	padding: 0 16px;
	position: relative;
}

.stat-item:not(:last-child)::after {
	content: "";
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 1px;
	height: 52px;
	background: rgba(255, 215, 0, 0.2);
}

.stat-num {
	font-family: var(--bebas);
	font-size: clamp(40px, 5vw, 64px);
	color: var(--Y);
	line-height: 1;
	letter-spacing: 2px;
}

.stat-label {
	font-size: 10px;
	color: rgba(255, 255, 255, 0.45);
	letter-spacing: 2.5px;
	text-transform: uppercase;
	margin-top: 8px;
}

.stat-sub {
	font-size: 10px;
	color: rgba(255, 255, 255, 0.22);
	margin-top: 3px;
}

/* ── SECTION HEADER ── */
.sh {
	text-align: center;
	margin-bottom: 52px;
}

.sh-eye {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	margin-bottom: 10px;
}

.sh-eye-line {
	width: 32px;
	height: 2px;
	background: var(--Y);
}

.sh-eye-txt {
	font-size: 10px;
	letter-spacing: 4px;
	color: var(--Y);
	text-transform: uppercase;
	font-weight: 700;
}

.sh-title {
	font-family: var(--bebas);
	font-size: clamp(36px, 5vw, 68px);
	color: var(--K);
	letter-spacing: 2px;
	line-height: 1;
}

.sh-title.light {
	color: var(--W);
}

.sh-title.dark-bg {
	color: var(--K);
}

.sh-sub {
	font-size: 14px;
	color: var(--gray);
	margin-top: 10px;
	font-style: italic;
}

.sh-sub.light {
	color: rgba(255, 255, 255, 0.45);
}

/* ── EVENTS ── */
.events {
	padding: 96px 32px;
	background: var(--cream);
}

.events-inner {
	max-width: 1280px;
	margin: 0 auto;
}

.events-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

.ev-card {
	background: var(--W);
	overflow: hidden;
	transition:
		transform 0.3s,
		box-shadow 0.3s;
	cursor: pointer;
}

.ev-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 20px 48px rgba(0, 0, 0, 0.12);
}

.ev-card-img {
	aspect-ratio: 4 / 3;
	position: relative;
	overflow: hidden;
	background: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
}

.ev-card-img img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	display: block;
	transition: transform 0.4s;
}

.ev-card:hover .ev-card-img img {
	transform: scale(1.04);
}

.ev-card-tag {
	position: absolute;
	top: 0;
	left: 0;
	background: var(--Y);
	color: var(--K);
	font-family: var(--bebas);
	font-size: 15px;
	letter-spacing: 1.5px;
	padding: 5px 16px;
}

.ev-card-body {
	padding: 28px 24px;
}

.ev-card-title {
	font-family: var(--bebas);
	font-size: 26px;
	color: var(--K);
	letter-spacing: 1px;
	margin-bottom: 8px;
	line-height: 1.05;
}

.ev-card-desc {
	font-size: 13px;
	color: var(--gray);
	line-height: 1.65;
	margin-bottom: 18px;
}

.ev-card-meta {
	display: flex;
	gap: 16px;
	margin-bottom: 22px;
	flex-wrap: wrap;
}

.ev-card-meta-item {
	font-size: 11px;
	color: var(--lgray);
	display: flex;
	align-items: center;
	gap: 5px;
}

/* ── BUTTONS ── */
.btn-Y {
	background: var(--Y);
	color: var(--K);
	padding: 12px 26px;
	font-size: 11px;
	letter-spacing: 2px;
	font-weight: 700;
	text-transform: uppercase;
	border: none;
	cursor: pointer;
	transition: background 0.2s;
	font-family: var(--sans);
}

.btn-Y:hover {
	background: var(--Yd);
}

.btn-K {
	background: var(--K);
	color: var(--W);
	padding: 12px 26px;
	font-size: 11px;
	letter-spacing: 2px;
	font-weight: 700;
	text-transform: uppercase;
	border: none;
	cursor: pointer;
	transition: background 0.2s;
	font-family: var(--sans);
}

.btn-K:hover {
	background: #222;
}

.btn-ok {
	background: transparent;
	color: var(--K);
	padding: 12px 26px;
	font-size: 11px;
	letter-spacing: 2px;
	font-weight: 700;
	text-transform: uppercase;
	border: 2px solid var(--K);
	cursor: pointer;
	transition: all 0.2s;
	font-family: var(--sans);
}

.btn-ok:hover {
	background: var(--K);
	color: var(--W);
}

/* ── WHY ── */
.why {
	padding: 96px 32px;
	background: var(--W);
}

.why-inner {
	max-width: 1280px;
	margin: 0 auto;
}

.why-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 2px;
}

.why-col {
	background: var(--cream);
	padding: 44px 32px;
	transition: all 0.3s;
	cursor: default;
}

.why-col:hover {
	background: var(--K);
}

.why-icon {
	width: 48px;
	height: 48px;
	border: 1.5px solid rgba(0, 0, 0, 0.15);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 24px;
	color: var(--K);
	transition: all 0.3s;
}

.why-col:hover .why-icon {
	border-color: rgba(255, 215, 0, 0.3);
	color: var(--Y);
}

.why-col-title {
	font-family: var(--bebas);
	font-size: 22px;
	letter-spacing: 1px;
	color: var(--K);
	margin-bottom: 12px;
	transition: color 0.3s;
}

.why-col:hover .why-col-title {
	color: var(--Y);
}

.why-col-text {
	font-size: 13px;
	color: var(--gray);
	line-height: 1.75;
	transition: color 0.3s;
}

.why-col:hover .why-col-text {
	color: rgba(255, 255, 255, 0.5);
}

/* ── AUDIENCE ── */
.audience {
	display: grid;
	grid-template-columns: 1fr 1px 1fr;
	background: var(--K);
}

.aud-divider {
	background: linear-gradient(
		to bottom,
		transparent 8%,
		var(--Y) 30%,
		var(--Y) 70%,
		transparent 92%
	);
	align-self: stretch;
}

.aud-col {
	padding: 88px 72px;
	background: var(--K);
}

.aud-eyebrow {
	font-size: 10px;
	letter-spacing: 4px;
	text-transform: uppercase;
	font-weight: 700;
	margin-bottom: 14px;
	font-family: var(--sans);
	color: var(--Y);
}

.aud-title {
	font-family: var(--bebas);
	font-size: clamp(30px, 3.5vw, 50px);
	letter-spacing: 1px;
	margin-bottom: 28px;
	line-height: 1.05;
	color: var(--W);
}

.aud-list {
	list-style: none;
	margin-bottom: 32px;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.aud-list li {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	font-size: 14px;
	line-height: 1.5;
	color: rgba(255, 255, 255, 0.6);
}

.aud-list li::before {
	content: "→";
	font-size: 12px;
	flex-shrink: 0;
	margin-top: 2px;
	font-weight: 700;
	color: var(--Y);
}

/* ── SCHEDULE ── */
.schedule {
	padding: 88px 32px;
	background: var(--Y);
}

.schedule-inner {
	max-width: 1280px;
	margin: 0 auto;
}

.sch-container {
	border: 2px solid var(--K);
	padding: 40px;
}

.sch-header {
	margin-bottom: 30px;
}

.sch-month {
	font-family: var(--bebas);
	font-size: 32px;
	color: var(--K);
	letter-spacing: 2px;
	margin-bottom: 15px;
}

.sch-h-line {
	height: 2px;
	background-color: var(--K);
	width: 100%;
}

.sch-dual-grid {
	display: flex;
	gap: 40px;
	position: relative;
}

.sch-group {
	flex: 1;
}

.sch-group-title {
	font-family: var(--bebas);
	font-size: 18px;
	color: var(--K);
	letter-spacing: 1.5px;
	margin-bottom: 25px;
	background: var(--K);
	color: var(--Y);
	display: inline-block;
	padding: 4px 12px;
	border-radius: 20px;
}

.sch-items-list {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px 40px;
}

.sch-item {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
	padding-bottom: 8px;
}

.sch-date {
	font-family: var(--sans);
	font-weight: 700;
	font-size: 13px;
	color: var(--K);
	min-width: 40px;
	margin-top: 3px;
}

.sch-city {
	font-family: var(--sans);
	font-weight: 700;
	font-size: 15px;
	color: var(--K);
	text-transform: uppercase;
	line-height: 1.2;
}

.sch-venue {
	font-family: var(--sans);
	font-size: 11px;
	color: rgba(0, 0, 0, 0.6);
	font-style: italic;
	margin-top: 2px;
}

.sch-v-sep {
	width: 2px;
	background: linear-gradient(to bottom, transparent, var(--K) 20%, var(--K) 80%, transparent);
	opacity: 0.5;
}

@media (max-width: 992px) {
	.sch-dual-grid {
		flex-direction: column;
		gap: 50px;
	}
	.sch-v-sep {
		width: 100%;
		height: 2px;
		background: linear-gradient(to right, transparent, var(--K) 20%, var(--K) 80%, transparent);
	}
}

@media (max-width: 600px) {
	.sch-items-list {
		grid-template-columns: 1fr;
	}
	.sch-container {
		padding: 25px;
	}
}

.sch-more {
	font-size: 11px;
	color: rgba(0, 0, 0, 0.5);
	font-style: italic;
	padding-top: 8px;
}

/* ── GALLERY ── */
.gallery {
	padding: 96px 32px;
	background: var(--K);
}

.gallery-inner {
	max-width: 1280px;
	margin: 0 auto;
}

.gal-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-template-rows: 240px 240px;
	gap: 6px;
	margin-bottom: 40px;
}

.gal-item {
	overflow: hidden;
	cursor: pointer;
	position: relative;
}

.gal-item.tall {
	grid-row: span 2;
}

.gal-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.4s;
	min-height: 240px;
}

.gal-item.tall img {
	min-height: 480px;
}

.gal-item:hover img {
	transform: scale(1.05);
}

.gal-ovl {
	position: absolute;
	inset: 0;
	background: rgba(255, 215, 0, 0.25);
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: opacity 0.3s;
}

.gal-item:hover .gal-ovl {
	opacity: 1;
}

.gal-ovl-icon {
	width: 40px;
	height: 40px;
	background: var(--Y);
	display: flex;
	align-items: center;
	justify-content: center;
}

/* ── TESTIMONIALS ── */
.testimonials {
	padding: 96px 32px;
	background: var(--cream);
}

.testimonials-inner {
	max-width: 1280px;
	margin: 0 auto;
}

.tes-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 24px;
}

.tes-card {
	background: var(--W);
	padding: 44px 40px;
	border-top: 4px solid var(--Y);
	position: relative;
}

.tes-big-q {
	font-family: var(--bebas);
	font-size: 100px;
	color: var(--Y);
	opacity: 0.12;
	position: absolute;
	top: 10px;
	left: 28px;
	line-height: 1;
	pointer-events: none;
}

.tes-stars {
	color: var(--Y);
	font-size: 16px;
	letter-spacing: 2px;
	margin-bottom: 18px;
}

.tes-text {
	font-size: 15px;
	color: var(--K);
	line-height: 1.8;
	margin-bottom: 28px;
	font-style: italic;
	position: relative;
	z-index: 1;
}

.tes-author {
	display: flex;
	align-items: center;
	gap: 14px;
}

.tes-avatar {
	width: 44px;
	height: 44px;
	background: var(--Y);
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: var(--bebas);
	font-size: 22px;
	color: var(--K);
	flex-shrink: 0;
}

.tes-name {
	font-weight: 700;
	font-size: 12px;
	color: var(--K);
	letter-spacing: 1.5px;
	text-transform: uppercase;
}

.tes-city {
	font-size: 11px;
	color: var(--lgray);
	margin-top: 2px;
}

/* ── FINAL CTA ── */
.final-cta {
	padding: 96px 32px;
	background: var(--K);
	position: relative;
	overflow: hidden;
}

.final-cta-bg {
	position: absolute;
	inset: 0;
	font-family: var(--bebas);
	font-size: clamp(80px, 12vw, 160px);
	color: rgba(255, 215, 0, 0.04);
	display: flex;
	align-items: flex-end;
	justify-content: center;
	letter-spacing: 4px;
	white-space: nowrap;
	overflow: hidden;
	pointer-events: none;
	line-height: 1;
}

.final-cta-inner {
	max-width: 1280px;
	margin: 0 auto;
	text-align: center;
	position: relative;
	z-index: 1;
}

.final-cta-script {
	font-family: var(--script);
	font-size: 36px;
	color: var(--Y);
	margin-bottom: 2px;
}

.final-cta-big {
	font-family: var(--bebas);
	font-size: clamp(52px, 7vw, 96px);
	color: var(--W);
	letter-spacing: 3px;
	line-height: 1;
	margin-bottom: 6px;
}

.final-cta-big span {
	color: var(--Y);
}

.final-cta-sub {
	font-size: 14px;
	color: rgba(255, 255, 255, 0.45);
	margin-bottom: 48px;
}

.cta-btns {
	display: flex;
	justify-content: center;
	gap: 14px;
	flex-wrap: wrap;
}

/* ── FOOTER ── */
.footer {
	background: #0a0a0a;
	padding: 64px 32px 28px;
}

.footer-inner {
	max-width: 1280px;
	margin: 0 auto;
}

.footer-top {
	display: grid;
	grid-template-columns: 2fr 1.2fr 1.8fr;
	gap: 56px;
	padding-bottom: 48px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.07);
	margin-bottom: 28px;
}

.footer-logo-row {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 4px;
}

.footer-brand-name {
	font-family: var(--bebas);
	font-size: 26px;
	color: var(--W);
	letter-spacing: 3px;
}

.footer-brand-tag {
	font-size: 9px;
	color: var(--Y);
	letter-spacing: 3px;
	text-transform: uppercase;
	margin-bottom: 16px;
}

.footer-brand-desc {
	font-size: 13px;
	color: rgba(255, 255, 255, 0.32);
	line-height: 1.75;
	max-width: 280px;
	margin-bottom: 24px;
}

.footer-social {
	display: flex;
	gap: 8px;
}

.footer-sb {
	width: 34px;
	height: 34px;
	border: 1px solid rgba(255, 255, 255, 0.12);
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 0.2s;
	color: rgba(255, 255, 255, 0.4);
}

.footer-sb:hover {
	border-color: var(--Y);
	color: var(--Y);
}

.footer-col-title {
	font-family: var(--bebas);
	font-size: 18px;
	letter-spacing: 2px;
	color: var(--Y);
	margin-bottom: 20px;
}

.footer-links {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.footer-links li a {
	font-size: 13px;
	color: rgba(255, 255, 255, 0.38);
	text-decoration: none;
	transition: color 0.2s;
}

.footer-links li a:hover {
	color: var(--Y);
}

.fci {
	display: flex;
	gap: 10px;
	margin-bottom: 12px;
	align-items: flex-start;
}

.fci-icon {
	color: var(--Y);
	flex-shrink: 0;
	margin-top: 2px;
}

.fci-text {
	font-size: 13px;
	color: rgba(255, 255, 255, 0.38);
	line-height: 1.6;
}

.fci-text a {
	color: rgba(255, 255, 255, 0.38);
	text-decoration: none;
}

.fci-text a:hover {
	color: var(--Y);
}

.footer-bottom {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 12px;
}

.footer-copy {
	font-size: 12px;
	color: rgba(255, 255, 255, 0.2);
}

.footer-btm-links {
	display: flex;
	gap: 20px;
}

.footer-btm-links a {
	font-size: 12px;
	color: rgba(255, 255, 255, 0.2);
	text-decoration: none;
}

.footer-btm-links a:hover {
	color: var(--Y);
}

/* ── TWEAKS PANEL ── */
.tweaks-panel {
	position: fixed;
	bottom: 24px;
	right: 24px;
	background: var(--W);
	border: 1px solid rgba(0, 0, 0, 0.1);
	box-shadow: 0 8px 40px rgba(0, 0, 0, 0.2);
	width: 280px;
	z-index: 9999;
	display: none;
}

.tweaks-panel.visible {
	display: block;
}

.tweaks-header {
	background: var(--K);
	padding: 12px 16px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.tweaks-title-bar {
	font-family: var(--bebas);
	font-size: 17px;
	letter-spacing: 2px;
	color: var(--Y);
}

.tweaks-close {
	background: none;
	border: none;
	color: rgba(255, 255, 255, 0.5);
	cursor: pointer;
	font-size: 20px;
	line-height: 1;
}

.tweaks-body {
	padding: 16px;
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.twk-row {
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.twk-label {
	font-size: 10px;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	color: var(--gray);
}

.twk-opts {
	display: flex;
	gap: 6px;
	flex-wrap: wrap;
}

.twk-opt {
	padding: 5px 10px;
	font-size: 11px;
	border: 1px solid rgba(0, 0, 0, 0.12);
	cursor: pointer;
	background: var(--W);
	transition: all 0.15s;
	font-family: var(--sans);
}

.twk-opt.on {
	background: var(--Y);
	border-color: var(--Y);
	font-weight: 700;
}

.twk-color {
	width: 26px;
	height: 26px;
	border: 2.5px solid transparent;
	cursor: pointer;
	transition: border 0.15s;
}

.twk-color.on {
	border-color: var(--K);
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
	.stats-inner {
		grid-template-columns: repeat(3, 1fr);
	}

	.events-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.why-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.sch-grid {
		width: 100%;
	}

	.sch-col {
		border-right: none;
		border-bottom: 2.5px solid var(--K);
	}

	.sch-col:last-child {
		border-bottom: none;
	}

	.footer-top {
		grid-template-columns: 1fr 1fr;
	}

	.footer-top > *:last-child {
		grid-column: 1/-1;
	}
}

@media (max-width: 768px) {
	.nav-links,
	.nav-cta {
		display: none;
	}

	.nav-hamburger {
		display: flex;
	}

	.hero-slide {
		display: block;
	}

	.hs-content {
		width: 100%;
		padding: 36px 24px 120px 32px;
	}

	.hs-model {
		width: 100%;
		height: 55%;
		position: absolute;
		bottom: 0;
		right: 0;
		opacity: 0.35;
	}

	.hs-title-bold {
		font-size: 52px;
	}

	.hs-loc-city {
		font-size: 40px;
	}

	.stats-inner {
		grid-template-columns: repeat(2, 1fr);
		padding: 48px 20px;
	}

	.events {
		padding: 64px 20px;
	}

	.events-grid {
		grid-template-columns: 1fr;
	}

	.why {
		padding: 64px 20px;
	}

	.why-grid {
		grid-template-columns: 1fr 1fr;
	}

	.audience {
		grid-template-columns: 1fr;
	}

	.aud-col {
		padding: 56px 24px;
	}

	.schedule {
		padding: 64px 20px;
	}

	.gallery {
		padding: 64px 20px;
	}

	.gal-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.gal-item.tall {
		grid-row: span 1;
	}

	.testimonials {
		padding: 64px 20px;
	}

	.tes-grid {
		grid-template-columns: 1fr;
	}

	.final-cta {
		padding: 72px 20px;
	}

	.footer {
		padding: 48px 20px 24px;
	}

	.footer-top {
		grid-template-columns: 1fr;
		gap: 36px;
	}

	.footer-top > *:last-child {
		grid-column: auto;
	}

	.footer-bottom {
		flex-direction: column;
		text-align: center;
	}
}

@media (max-width: 480px) {
	.hs-title-bold {
		font-size: 42px;
	}
	.hs-loc-city {
		font-size: 32px;
	}
	.hs-loc-row2 {
		flex-direction: column;
		align-items: flex-start;
		gap: 6px;
	}
	.hs-loc-sep {
		display: none;
	}
	.stats-inner {
		grid-template-columns: 1fr;
	}

	.why-grid {
		grid-template-columns: 1fr;
	}

	.hs-btns {
		flex-direction: column;
	}

	.cta-btns {
		flex-direction: column;
		align-items: center;
	}
}
/* ── LIGHTBOX ── */
.lightbox {
	display: none;
	position: fixed;
	z-index: 2000;
	inset: 0;
	background: rgba(0, 0, 0, 0.9);
	align-items: center;
	justify-content: center;
	padding: 40px;
	backdrop-filter: blur(8px);
}

.lightbox.active {
	display: flex;
}

.lightbox-img {
	max-width: 100%;
	max-height: 100%;
	box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
	transform: scale(0.9);
	transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	border: 2px solid rgba(255, 255, 255, 0.1);
}

.lightbox.active .lightbox-img {
	transform: scale(1);
}

.lightbox-close {
	position: absolute;
	top: 30px;
	right: 40px;
	color: white;
	font-size: 50px;
	cursor: pointer;
	transition: all 0.2s;
	line-height: 1;
	font-weight: 300;
	user-select: none;
}

.lightbox-close:hover {
	color: var(--Y);
	transform: scale(1.1);
}

@media (max-width: 768px) {
	.lightbox {
		padding: 20px;
	}
	.lightbox-close {
		top: 20px;
		right: 20px;
	}
}

/* ── ANIMATED HOVER LINKS ── */
.hover-link {
	position: relative;
	display: inline-block;
	text-decoration: none;
	padding-bottom: 2px;
}

.hover-link::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 1.5px;
	background: currentColor;
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.hover-link:hover::after {
	transform: scaleX(1);
}

.hover-link.is-leaving::after {
	transform-origin: right;
	transform: scaleX(0);
}

/* Footer Link Base Styles */
.footer-links {
	list-style: none;
	padding: 0;
}

.footer-links a,
.footer-btm-links a,
.fci-text a {
	color: rgba(255, 255, 255, 0.6);
	font-size: 14px;
	transition: color 0.2s;
}

.footer-links a:hover,
.footer-btm-links a:hover,
.fci-text a:hover {
	color: var(--W);
}

/* ── BUTTON ANIMATION ── */
.btn-animate {
	position: relative;
	overflow: hidden;
	transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
	z-index: 1;
}

.btn-animate:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.btn-animate:active {
	transform: translateY(-2px);
}

/* The Glossy Sweep */
.btn-animate::before {
	content: "";
	position: absolute;
	top: 0;
	left: -150%;
	width: 150%;
	height: 100%;
	background: linear-gradient(
		90deg,
		transparent,
		rgba(255, 255, 255, 0.4),
		transparent
	);
	transform: skewX(-25deg);
	transition: 0.75s;
	z-index: -1;
}

.btn-animate:hover::before {
	left: 150%;
}

/* ── UTILITY CLASSES FOR INLINE STYLE REMOVAL ── */

.nav-logo img {
	height: 50px;
	width: auto;
}

.hero-arrow {
	width: 22px;
	height: 22px;
	stroke: currentColor;
	display: block;
}

.hs-underline svg {
	width: 140px;
	height: 12px;
}

.sh-schedule {
	margin-bottom: 40px;
}

.sh-eye-line.dark {
	background: #111;
}

.sh-eye-txt.dark {
	color: #111;
}

.sh-sub.dark {
	color: rgba(0, 0, 0, 0.6);
}

.gal-ovl-icon svg {
	width: 18px;
	height: 18px;
}

.cta-btn-y {
	display: flex !important;
	align-items: center;
	gap: 10px;
	background: var(--Y) !important;
	color: var(--K) !important;
	padding: 15px 30px !important;
	font-weight: 700;
	font-size: 13px;
	text-decoration: none;
	letter-spacing: 0.5px;
}

.cta-btn-outline {
	display: flex !important;
	align-items: center;
	gap: 10px;
	background: transparent !important;
	color: var(--W) !important;
	padding: 15px 30px !important;
	font-weight: 700;
	font-size: 13px;
	border: 1.5px solid rgba(255, 255, 255, 0.2) !important;
	text-decoration: none;
	letter-spacing: 0.5px;
}

.footer-icon {
	width: 15px;
	height: 15px;
	opacity: 0.6;
}

.footer-logo-img {
	height: 60px;
	width: auto;
	margin-bottom: 15px;
}

.fci-icon-small {
	font-size: 12px;
}

/* ── ADDITIONAL FIXES ── */

.ev-meta-icon {
	width: 15px;
	height: 15px;
	opacity: 0.5;
}

.why-icon-svg {
	width: 18px;
	height: 18px;
}

.hero-arrow {
	width: 20px;
	height: 20px;
}

.gal-icon {
	width: 18px;
	height: 18px;
}

.sch-btn-wrap,
.gal-btn-wrap {
	text-align: center;
	margin-top: 32px;
}

/* ── MODALS ── */
.fm-modal {
	display: none;
	position: fixed;
	z-index: 10000;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.85);
	backdrop-filter: blur(5px);
	overflow-y: auto;
	padding: 20px 0;
}

.fm-modal.active {
	display: block;
	animation: fadeIn 0.3s;
}

@keyframes fadeIn {
	from { opacity: 0; }
	to { opacity: 1; }
}

.fm-modal-content {
	background-color: var(--W);
	margin: auto;
	padding: 40px;
	border: 1px solid #888;
	width: 90%;
	max-width: 550px;
	position: relative;
	border-top: 5px solid var(--Y);
}

.fm-modal-close {
	position: absolute;
	right: 20px;
	top: 15px;
	color: var(--K);
	font-size: 28px;
	font-weight: bold;
	cursor: pointer;
	transition: color 0.2s;
}

.fm-modal-close:hover {
	color: var(--Y);
}

.fm-modal-header {
	text-align: center;
	margin-bottom: 30px;
}

.fm-modal-header h3 {
	font-family: var(--bebas);
	font-size: 32px;
	letter-spacing: 2px;
	color: var(--K);
	margin-bottom: 5px;
}

.fm-modal-header p {
	font-size: 13px;
	color: var(--gray);
	font-style: italic;
}

.fm-form-group {
	margin-bottom: 20px;
}

.fm-form-group label {
	display: block;
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: var(--K);
	margin-bottom: 8px;
}

.fm-form-group input,
.fm-form-group select,
.fm-form-group textarea {
	width: 100%;
	padding: 12px 15px;
	border: 1px solid rgba(0, 0, 0, 0.1);
	font-family: var(--sans);
	font-size: 14px;
	transition: border-color 0.2s;
}

.fm-form-group input:focus,
.fm-form-group select:focus {
	border-color: var(--Y);
	outline: none;
}

.fm-form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
}

.fm-checkbox-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px;
	padding-top: 10px;
}

.fm-checkbox-grid label,
.fm-radio-group label {
	font-size: 14px;
	color: var(--K);
	display: flex;
	align-items: center;
	gap: 10px;
	cursor: pointer;
	font-weight: 400;
	text-transform: none;
	letter-spacing: 0;
	position: relative;
	padding: 5px 0;
}

/* Custom Checkbox Styling */
.fm-checkbox-grid input[type="checkbox"],
.fm-radio-group input[type="radio"] {
	appearance: none;
	-webkit-appearance: none;
	width: 18px;
	height: 18px;
	border: 2px solid #ddd;
	background-color: #fff;
	cursor: pointer;
	position: relative;
	transition: all 0.2s ease;
	flex-shrink: 0;
}

.fm-checkbox-grid input[type="checkbox"]:checked {
	background-color: var(--Y);
	border-color: var(--Y);
}

.fm-checkbox-grid input[type="checkbox"]:checked::after {
	content: "✓";
	position: absolute;
	color: var(--K);
	font-size: 14px;
	font-weight: bold;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
}

.fm-radio-group input[type="radio"] {
	border-radius: 50%;
}

.fm-radio-group input[type="radio"]:checked {
	border-color: var(--Y);
}

.fm-radio-group input[type="radio"]:checked::after {
	content: "";
	position: absolute;
	width: 8px;
	height: 8px;
	background-color: var(--Y);
	border-radius: 50%;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
}

.fm-checkbox-grid label:hover input,
.fm-radio-group label:hover input {
	border-color: var(--Y);
}

.form-status {
	margin-top: 15px;
	font-size: 13px;
	text-align: center;
	font-weight: 600;
	padding: 10px;
	border-radius: 4px;
	display: none;
}

.form-status.success {
	display: block;
	color: #155724;
	background-color: #d4edda;
}

.form-status.error {
	display: block;
	color: #721c24;
	background-color: #f8d7da;
}

.w-100 {
	width: 100%;
}

@media (max-width: 600px) {
	.fm-form-row,
	.fm-checkbox-grid {
		grid-template-columns: 1fr;
	}
	.fm-modal-content {
		padding: 30px 20px;
		width: 95%;
	}
}
