@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&display=swap');

/* =============================================================
   64Minds Chess — Premium Single-Page Landing Theme
   main.css | Mobile-First | Version 1.0.0
============================================================= */

/* ============================================================
   0. CSS RESET & BASE
============================================================ */

*,
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
	-webkit-tap-highlight-color: transparent;
}

html {
	scroll-behavior: smooth;
	-webkit-text-size-adjust: 100%;
	font-size: 16px;
}

body {
	font-family: 'manrope', sans-serif;
	font-size: clamp(0.95rem, 2.4vw, 1.05rem);
	line-height: 1.7;
	color: #111111;
	background-color: #ffffff;
	overflow-x: hidden;
	-webkit-font-smoothing: antialiased;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

a {
	color: inherit;
	text-decoration: none;
}

ul,
ol {
	list-style: none;
}

button,
input,
select,
textarea {
	font-family: inherit;
	font-size: inherit;
}

/* ============================================================
   1. CSS VARIABLES
============================================================ */

:root {
	/* ---- Brand Navy (Primary) ---- */
	--black: #00002E;
	/* Primary brand dark — midnight navy */
	--charcoal: #030450;
	/* Mid-navy — section gradients     */
	--charcoal-2: #070B6A;
	/* Lighter navy — hover/card states  */

	/* ---- Gold Accent (Unchanged) ---- */
	--gold: #E86414;
	--gold-dark: #E86414;
	--gold-light: #E86414;
	--gold-glow: rgba(232, 100, 20, 0.18);

	/* ---- Light / Warm Backgrounds ---- */
	--cream: #F0F1FF;
	/* Warm ivory with navy tint        */
	--cream-2: #F6F7FF;
	/* Lightest background surface      */
	--white: #FFFFFF;

	/* ---- Text ---- */
	--text: #0A0A2E;
	/* Near-navy for body text          */
	--text-mid: #1A1A3E;
	--muted: #5A5A7A;
	/* Navy-tinted muted grey           */
	--muted-light: #9090AA;

	/* ---- Borders ---- */
	--border: #DCDDF0;
	/* Soft navy-tinted border          */
	--border-dark: rgba(255, 255, 255, 0.12);

	/* ---- Shadows (navy-based) ---- */
	--shadow-soft: 0 8px 30px rgba(0, 0, 46, 0.10);
	--shadow-card: 0 12px 40px rgba(0, 0, 46, 0.13);
	--shadow-gold: 0 8px 28px rgba(201, 151, 45, 0.28);
	--shadow-hero: 0 24px 60px rgba(0, 0, 46, 0.16);

	/* ---- Radii ---- */
	--r-sm: 10px;
	--r-md: 18px;
	--r-lg: 28px;
	--r-xl: 40px;
	--r-pill: 999px;

	--header-h: 72px;
	--section-pad: clamp(72px, 9vw, 128px);
	--container: min(1140px, calc(100% - 32px));
}

/* ============================================================
   2. TYPOGRAPHY
============================================================ */

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: 'outfit', sans-serif;
	font-weight: 800;
	line-height: 1.1;
	letter-spacing: -0.02em;
	color: var(--text);
}

h1 {
	font-size: clamp(2rem, 4vw, 4rem);
	line-height: 1.06;
}

h2 {
	font-size: clamp(1.75rem, 3.2vw, 3.25rem);
	line-height: 1.1;
}

h3 {
	font-size: clamp(1.25rem, 2vw, 1.875rem);
	line-height: 1.22;
}

h4 {
	font-size: clamp(1rem, 1.5vw, 1.375rem);
	line-height: 1.3;
}

p {
	color: var(--muted);
	font-weight: 500;
	line-height: 1.7;
}

.text-gold {
	color: var(--gold);
}

.text-white {
	color: var(--white);
}

.text-muted {
	color: var(--muted);
}

/* ============================================================
   3. LAYOUT UTILITIES
============================================================ */

.container {
	width: var(--container);
	margin-inline: auto;
}

.section-pad {
	padding-block: var(--section-pad);
}

.section-pad-sm {
	padding-block: clamp(48px, 6vw, 80px);
}

.text-center {
	text-align: center;
}

.flex {
	display: flex;
}

.grid {
	display: grid;
}

/* Section Labels */
.section-label {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 0.8rem;
	font-weight: 500;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--gold);
	margin-bottom: 14px;
}



.section-intro {
	font-size: clamp(1rem, 2.2vw, 1.1rem);
	color: var(--muted);
	max-width: 600px;
	margin: 0 auto;
	margin-top: 12px;
}

/* ============================================================
   4. BUTTONS
============================================================ */

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	font-weight: 700;
	font-size: 0.95rem;
	border-radius: var(--r-md);
	padding: 14px 28px;
	min-height: 52px;
	cursor: pointer;
	border: 2px solid transparent;
	transition: all 0.25s ease;
	text-decoration: none;
	white-space: nowrap;
	line-height: 1;
}

.btn-primary {
	background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
	color: var(--white);
	border-color: var(--gold-dark);
	box-shadow: var(--shadow-gold);
	border-radius: var(--r-sm);
}

.btn-primary:hover,
.btn-primary:focus {
	background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
	box-shadow: 0 12px 36px rgba(232, 100, 20, 0.38);
	transform: translateY(-2px);
	color: var(--white);

}

.btn-secondary {
	background: transparent;
	color: var(--text);
	border-color: var(--border);
	border-radius: var(--r-sm);
}

.btn-secondary:hover,
.btn-secondary:focus {
	background: var(--text);
	color: var(--white);
	border-color: var(--text);
	transform: translateY(-2px);
}

.btn-secondary-light {
	background: rgba(255, 255, 255, 0.1);
	color: var(--white);
	border-color: rgba(255, 255, 255, 0.28);
	backdrop-filter: blur(6px);
}

.btn-secondary-light:hover {
	background: rgba(255, 255, 255, 0.2);
	color: var(--white);
	transform: translateY(-2px);
}

.btn-whatsapp {
	background: linear-gradient(135deg, #25D366, #1aad52);
	color: #fff;
	border-color: transparent;
	box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
	border-radius: var(--r-sm);
}

.btn-whatsapp:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 28px rgba(37, 211, 102, 0.4);
	color: #fff;
}

.btn-full {
	width: 100%;
}

.btn-sm {
	padding: 10px 20px;
	font-size: 0.875rem;
	min-height: 42px;
}

.btn-icon {
	gap: 10px;
}

.btn-icon svg {
	width: 18px;
	height: 18px;
	flex-shrink: 0;
}

/* ============================================================
   5. HEADER
============================================================ */

.site-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	/* height: var(--header-h); */
	padding: 20px 0px;
	background: rgba(255, 255, 255, 0.82);
	backdrop-filter: blur(18px);
	-webkit-backdrop-filter: blur(18px);
	border-bottom: 1px solid rgba(232, 226, 216, 0.5);
	transition: box-shadow 0.3s ease, background 0.3s ease;
}

.site-header.scrolled {
	background: rgba(255, 255, 255, 0.97);
	box-shadow: 0 2px 24px rgba(11, 13, 16, 0.08);
}

@media (max-width: 1023px) {
	.site-header {
		backdrop-filter: none;
		-webkit-backdrop-filter: none;
		background: #ffffff;
		transform: translateZ(0);
		-webkit-transform: translateZ(0);
	}

	.site-header.scrolled {
		background: #ffffff;
	}
}

.header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 100%;
	gap: 24px;
}

/* Logo */
.site-logo {
	display: flex;
	align-items: center;
	gap: 10px;
	flex-shrink: 0;
	text-decoration: none;
}

.custom-logo-img {
	height: 38px;
	width: auto;
	display: block;
	border-radius: 6px;
}

@media (min-width: 1024px) {
	.custom-logo-img {
		height: 48px;
	}
}

/* Desktop Nav */
.primary-nav {
	display: none;
}

.primary-nav ul {
	display: flex;
	align-items: center;
	gap: 6px;
}

.primary-nav a {
	display: block;
	padding: 8px 14px;
	font-size: 0.875rem;
	font-weight: 600;
	color: var(--text-mid);
	border-radius: var(--r-sm);
	transition: color 0.2s, background 0.2s;
	white-space: nowrap;
}

.primary-nav a:hover,
.primary-nav a.active {
	color: var(--gold);
	background: var(--gold-glow);
}

/* Header CTA */
.header-cta {
	display: none;
}

/* Hamburger */
.menu-toggle {
	display: flex;
	flex-direction: column;
	gap: 5px;
	background: none;
	border: none;
	cursor: pointer;
	padding: 8px;
	border-radius: var(--r-sm);
	transition: background 0.2s;
	flex-shrink: 0;
}

.menu-toggle:hover {
	background: var(--cream);
}

.menu-toggle span {
	display: block;
	width: 22px;
	height: 2px;
	background: var(--text);
	border-radius: 2px;
	transition: all 0.3s ease;
	transform-origin: center;
}

.menu-toggle.open span:nth-child(1) {
	transform: translateY(7px) rotate(45deg);
}

.menu-toggle.open span:nth-child(2) {
	opacity: 0;
	transform: scaleX(0);
}

.menu-toggle.open span:nth-child(3) {
	transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Menu */
.mobile-menu {
	position: fixed;
	top: var(--header-h);
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(255, 255, 255, 0.98);
	backdrop-filter: blur(20px);
	z-index: 999;
	padding: 32px 24px 120px;
	overflow-y: auto;
	transform: translateX(100%);
	transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
	display: flex;
	flex-direction: column;
	gap: 0;
}

.mobile-menu.open {
	transform: translateX(0);
}

.mobile-menu ul {
	display: flex;
	flex-direction: column;
	gap: 4px;
	flex: 1;
}

.mobile-menu a {
	display: flex;
	align-items: center;
	padding: 16px 18px;
	font-size: 1.05rem;
	font-weight: 700;
	color: var(--text);
	border-radius: var(--r-md);
	transition: background 0.2s, color 0.2s;
}

.mobile-menu a:hover {
	background: var(--cream);
	color: var(--gold);
}

.mobile-menu-cta {
	margin-top: 24px;
	padding-top: 24px;
	border-top: 1px solid var(--border);
}

/* Desktop overrides */
@media (min-width: 1024px) {
	.primary-nav {
		display: flex;
		align-items: center;
		flex: 1;
		justify-content: center;
	}

	.header-cta {
		display: block;
	}

	.menu-toggle {
		display: none;
	}

	.mobile-menu {
		display: none !important;
	}
}

/* ============================================================
   6. HERO SECTION
============================================================ */

#home {
	background: var(--cream-2);
	position: relative;
	overflow: hidden;
	padding-top: var(--header-h);
}

/* Subtle chess board texture on cream */
.hero-bg {
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(rgba(246, 247, 255, 0.96) 0%, rgba(240, 241, 255, 0.94) 100%),
		url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80'%3E%3Crect width='40' height='40' fill='rgba(0,0,46,0.025)'/%3E%3Crect x='40' y='40' width='40' height='40' fill='rgba(0,0,46,0.025)'/%3E%3C/svg%3E");
	background-size: auto, 80px 80px;
	pointer-events: none;
	z-index: 0;
}

/* ── Full-bleed two-column grid (NOT inside .container) ── */
.hero-inner {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: 1fr;
	align-items: stretch;
	min-height: calc(100dvh - var(--header-h));
}

/* Left side: give container-equivalent left padding */
.hero-content-side {
	display: flex;
	align-items: center;
	padding: clamp(56px, 7vw, 96px) clamp(16px, 4vw, 60px) clamp(56px, 7vw, 96px) max(16px, calc((100vw - 1140px) / 2 + 16px));
	min-width: 0;
}

@media (max-width: 768px) {
	.hero-content-side {
		order: 2 !important;
	}

	#home {
		padding-top: 120px;
	}
}

.hero-content {
	max-width: 540px;
	width: 100%;
}

/* ── "Hi," ── */
.hero-hi {
	font-size: 1.1rem;
	font-weight: 700;
	color: var(--gold);
	margin-bottom: 8px;
	letter-spacing: 0.01em;
}

/* ── "I'm|Harshavardhan." ── */
.hero-name {
	font-size: clamp(2rem, 4vw, 4rem);
	line-height: 1.06;
	letter-spacing: -0.03em;
	color: var(--text);
	margin-bottom: 16px;
	white-space: nowrap;
}

/* Blinking cursor */
.hero-cursor {
	display: inline-block;
	width: 2px;
	height: 0.85em;
	background: var(--text);
	overflow: hidden;
	vertical-align: middle;
	border-radius: 2px;
	margin: 0 2px 0 6px;
	animation: cursorBlink 1s step-end infinite;
}

@keyframes cursorBlink {
	0% {
		opacity: 1;
	}

	15% {
		opacity: 0;
	}

	30% {
		opacity: 1;
	}

	45% {
		opacity: 0;
	}

	60% {
		opacity: 1;
	}

	100% {
		opacity: 1;
	}
}

/* ── Tagline ── */
.hero-tagline {
	font-size: clamp(1.1rem, 2vw, 1.4rem);
	font-weight: 600;
	color: var(--text);
	line-height: 1.45;
	margin-bottom: 10px;
	display: block;
}

.hero-gold-text {
	color: var(--gold);
	font-weight: 700;
}

/* ── Founder line ── */
.hero-founder-line {
	font-size: 0.9rem;
	font-weight: 600;
	color: var(--muted);
	margin-bottom: 22px;
}

.hero-founder-line .hero-gold-text {
	color: var(--gold);
}

/* ── Icon list ── */
.hero-icon-list {
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin-bottom: 32px;
}

.hero-icon-list li {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 0.9rem;
	font-weight: 600;
	color: var(--text-mid);
}

.hero-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	background: rgba(201, 151, 45, 0.1);
	border-radius: 50%;
	color: var(--gold);
	flex-shrink: 0;
}

.hero-icon svg {
	width: 14px;
	height: 14px;
}

/* ── CTA Buttons ── */
.hero-ctas {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	align-items: center;
}

/* "Watch Journey" button — outlined dark */
.btn-hero-watch {
	background: transparent;
	color: var(--text);
	border: 1.5px solid rgba(0, 0, 46, 0.22);
	border-radius: var(--r-sm);
	padding: 13px 24px;
	font-weight: 700;
	font-size: 0.9rem;
	transition: all 0.22s ease;
	min-height: 52px;
}

.btn-hero-watch:hover {
	background: var(--text);
	color: var(--white);
	border-color: var(--text);
	transform: translateY(-2px);
}

.play-icon {
	font-size: 0.7rem;
	opacity: 0.7;
}

/* ── RIGHT: Visual side ── */
.hero-visual-side {
	position: relative;
	display: flex;
	align-items: flex-end;
	justify-content: center;
	overflow: hidden;
	min-height: 420px;
}

@media (max-width: 768px) {
	.hero-visual-side {
		order: 1 !important;
		width: min(480px, 100%);
		aspect-ratio: 1;
		min-height: auto;
		margin: 0 0 32px 0;
		padding: 0px 20px;
		overflow: visible;
	}

	.hero-content-side {
		order: 2;
	}

	.hero-gold-ring {
		display: none;
	}

	.hero-coach-photo {
		object-fit: cover;
		border-radius: 50%;
		border: 2px solid rgba(201, 151, 45, 0.5);
	}
}

/* Gold circle ring behind coach */
.hero-gold-ring {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: min(480px, 90%);
	aspect-ratio: 1;
	border: 2px solid rgba(201, 151, 45, 0.5);
	border-radius: 50%;
	pointer-events: none;
	z-index: 1;
}

/* Chess pieces SVG fallback — faded right side */
.hero-chess-pieces-fallback {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 0;
	z-index: 0;
	pointer-events: none;
	overflow: hidden;
}

.chess-piece-bg {
	position: absolute;
	font-size: clamp(6rem, 12vw, 11rem);
	opacity: 0.08;
	color: #00002E;
	line-height: 1;
	user-select: none;
}

.chess-piece-knight {
	right: 0;
	bottom: 0;
}

.chess-piece-rook {
	right: 100px;
	bottom: 10px;
	opacity: 0.05;
}

.chess-piece-king {
	right: 60px;
	top: 20px;
	opacity: 0.04;
}

/* Uploaded chess pieces bg image */
.hero-chess-bg-img {
	position: absolute;
	bottom: 0;
	right: 0;
	height: 100%;
	width: auto;
	object-fit: contain;
	object-position: bottom right;
	opacity: 0.25;
	z-index: 0;
	pointer-events: none;
}

/* Coach photo — natural, full height */
.hero-coach-photo {
	position: relative;
	z-index: 2;
	display: block;
	height: 100%;
	width: 100%;
	max-height: calc(100dvh - var(--header-h) - 40px);
	object-fit: contain;
	object-position: bottom center;
	filter: drop-shadow(0 12px 40px rgba(0, 0, 46, 0.14));
}

/* Placeholder */
.hero-coach-placeholder {
	position: relative;
	z-index: 2;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 12px;
	width: 100%;
	height: 100%;
	min-height: 340px;
	color: rgba(0, 0, 46, 0.3);
	text-align: center;
}

.hero-coach-placeholder span {
	font-size: 6rem;
	opacity: 0.4;
}

.hero-coach-placeholder p {
	font-size: 1rem;
	font-weight: 700;
	color: rgba(0, 0, 46, 0.5);
}

.hero-coach-placeholder small {
	font-size: 0.75rem;
	color: rgba(0, 0, 46, 0.35);
	padding: 0 24px;
	display: block;
}

/* ── DESKTOP (≥900px): true two-column ── */
@media (min-width: 900px) {
	.hero-inner {
		grid-template-columns: 1fr 1fr;
	}

	.hero-visual-side {
		align-items: flex-end;
		min-height: calc(100dvh - var(--header-h));
	}

	.hero-content-side {
		padding-right: 40px;
	}
}

/* ── TABLET (≥640px < 900px) ── */
@media (min-width: 640px) and (max-width: 899px) {
	.hero-inner {
		grid-template-columns: 1fr 1fr;
		min-height: auto;
	}

	.hero-content-side {
		padding: clamp(48px, 6vw, 72px) 24px clamp(48px, 6vw, 72px) 24px;
	}

	.hero-name {
		white-space: normal;
	}

	.hero-visual-side {
		min-height: 380px;
	}
}

/* ── MOBILE (<640px): stack, left-aligned ── */
@media (max-width: 639px) {
	.hero-inner {
		grid-template-columns: 1fr;
	}

	.hero-content-side {
		padding: 20px 20px 40px;
		order: 1;
	}

	.hero-content {
		max-width: 100%;
	}

	.hero-name {
		white-space: normal;
		word-break: break-word;
	}

	.hero-visual-side {
		order: 2;
		min-height: 300px;
		max-height: 380px;
	}

	.hero-coach-photo {
		max-height: 380px;
	}

	.hero-ctas {
		flex-direction: column;
		align-items: flex-start;
	}

	.hero-ctas .btn,
	.hero-ctas .btn-hero-watch {
		width: 100%;
		justify-content: center;
	}

	.chess-piece-bg {
		opacity: 0.05;
	}
}



/* ============================================================
   7. STATS BAR
============================================================ */

.stats-section {
	padding-block: 0;
	padding-bottom: 50px;
	margin-bottom: -200px !important;
	background: rgba(240, 241, 255, 1);
}

.stats-card {
	background: var(--white);
	border-radius: var(--r-lg);
	box-shadow: 0 16px 56px rgba(11, 13, 16, 0.12);
	border: 1px solid var(--border);
	position: relative;
	z-index: 10;
	overflow: hidden;
	transform: translateY(-80px) !important;
}

@media (max-width:768px) {
	.stats-section {
		display: none;
	}
}

.stats-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 0;
}

.stat-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 6px;
	padding: 24px 16px;
	position: relative;
	transition: background 0.2s;
	text-align: center;
}

/* Border separators */
.stat-item::after {
	content: '';
	position: absolute;
	right: 0;
	top: 20%;
	bottom: 20%;
	width: 1px;
	background: var(--border);
}

.stat-item:nth-child(2n)::after {
	display: none;
}

.stat-item:hover {
	background: var(--cream-2);
}

.stat-icon {
	color: var(--text-mid);
	margin-bottom: 6px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.stat-value {
	font-size: clamp(1.2rem, 3vw, 1.4rem);
	font-weight: 800;
	color: var(--text);
	line-height: 1.1;
}

.stat-label {
	font-size: clamp(0.75rem, 2vw, 0.85rem);
	color: var(--muted);
	font-weight: 500;
	line-height: 1.3;
}

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

	.stat-item:nth-child(2n)::after {
		display: block;
	}

	.stat-item:nth-child(3n)::after {
		display: none;
	}
}

@media (min-width: 900px) {
	.stats-grid {
		grid-template-columns: repeat(5, 1fr);
	}

	.stat-item {
		padding: 32px 20px;
	}

	.stat-item:nth-child(2n)::after {
		display: block;
	}

	.stat-item:nth-child(3n)::after {
		display: block;
	}

	.stat-item:nth-child(5n)::after {
		display: none;
	}
}

/* ============================================================
   8. STORY SECTION
============================================================ */

#story {
	background: linear-gradient(135deg, var(--charcoal) 0%, var(--black) 100%);
	position: relative;
	overflow: hidden;
}

.story-bg {
	position: absolute;
	inset: 0;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80'%3E%3Crect width='40' height='40' fill='rgba(255,255,255,0.018)'/%3E%3Crect x='40' y='40' width='40' height='40' fill='rgba(255,255,255,0.018)'/%3E%3C/svg%3E");
	background-size: 80px 80px;
	opacity: 0.6;
}

.story-glow {
	position: absolute;
	bottom: -200px;
	left: -100px;
	width: 500px;
	height: 500px;
	background: radial-gradient(ellipse at center, rgba(201, 151, 45, 0.07) 0%, transparent 65%);
	pointer-events: none;
}


.story-inner {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: 1fr;
	gap: 60px;
	align-items: center;
}

.story-content {
	margin: 0px 20px;
}

.story-content .section-label {
	margin-bottom: 18px;
}

.story-heading {
	color: var(--white);
	margin-bottom: 28px;
}

.story-text {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.story-text p {
	color: rgba(255, 255, 255, 0.65);
	font-size: clamp(0.95rem, 2vw, 1.05rem);
}

.story-text .story-highlight {
	color: rgba(255, 255, 255, 0.9);
	font-weight: 600;
}

.story-accent-line {
	width: 60px;
	height: 3px;
	background: var(--gold);
	border-radius: 2px;
	margin: 12px 0;
}

.story-cta {
	margin-top: 36px;
}

.story-image {
	position: relative;
	order: 2;
}

@media (max-width: 767px) {
	.story-image {
		order: 1;
	}

	.story-content {
		order: 2;
		display: flex;
		flex-direction: column;
		align-items: center;
		text-align: center;
	}
}

@media (min-width:768px) {
	.story-image {
		order: 1;
	}

	.story-content {
		order: 2;
	}
}


.story-img-wrap {
	border-radius: var(--r-lg);
	overflow: hidden;
	box-shadow: 0 24px 64px rgba(0, 0, 0, 0.4);
	aspect-ratio: 4/3;
	background: var(--charcoal-2);
}

.story-img-wrap img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: top;
}

.story-img-placeholder {
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 16px;
	font-size: 4rem;
	color: rgba(255, 255, 255, 0.2);
}

.story-img-placeholder p {
	font-size: 0.9rem;
	color: rgba(255, 255, 255, 0.3);
	font-weight: 600;
}

.story-img-badge {
	position: absolute;
	bottom: -16px;
	left: -12px;
	background: linear-gradient(135deg, var(--gold), var(--gold-dark));
	border-radius: var(--r-md);
	padding: 14px 20px;
	color: white;
	box-shadow: var(--shadow-gold);
}

.story-img-badge strong {
	display: block;
	font-size: 1.5rem;
	font-weight: 800;
	line-height: 1;
}

.story-img-badge span {
	font-size: 0.7rem;
	opacity: 0.88;
	font-weight: 600;
}

@media (min-width: 900px) {
	.story-inner {
		grid-template-columns: 1fr 1fr;
	}
}



/* ============================================================
   10. PROGRAMS SECTION
============================================================ */

.programs-section {
	background: var(--white);
}

.programs-carousel-wrap {
	margin-top: 48px;
}

.programs-grid {
	display: flex;
	gap: 20px;
	overflow-x: auto;
	scroll-behavior: smooth;
	scrollbar-width: none;
	padding-bottom: 20px;
}

.programs-grid::-webkit-scrollbar {
	display: none;
}

/* Carousel Controls */
.programs-carousel-controls {
	position: absolute;
	top: 50%;
	left: -15px;
	right: -15px;
	display: flex;
	justify-content: space-between;
	transform: translateY(-50%);
	pointer-events: none;
	z-index: 10;
}

.pc-btn {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background-color: var(--white);
	border: 1px solid var(--border);
	color: var(--charcoal);
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	pointer-events: auto;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
}

.program-card {
	flex: 0 0 85%;
	scroll-snap-align: center;
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: var(--r-md);
	padding: 32px;
	display: flex;
	flex-direction: column;
	gap: 0;
	transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
	position: relative;
	overflow: hidden;
}

.program-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, var(--charcoal), var(--charcoal-2));
	opacity: 0;
	transition: opacity 0.3s ease;
}

.program-card:hover {
	transform: translateY(-8px);
	box-shadow: var(--shadow-card);
	border-color: rgba(7, 11, 106, 0.3);
}

.program-card:hover::before {
	opacity: 1;
}

.program-icon-wrap {
	width: 52px;
	height: 52px;
	border-radius: 14px;
	background: linear-gradient(rgba(246, 247, 255, 0.96) 0%, rgba(240, 241, 255, 0.94) 100%);
	border: 1px solid rgba(3, 4, 80, 0.2);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.4rem;
	margin-bottom: 20px;
}

.program-title {
	font-size: 1.2rem;
	font-weight: 800;
	color: var(--text);
	margin-bottom: 12px;
}

.program-desc {
	font-size: 0.9rem;
	color: var(--muted);
	line-height: 1.65;
	margin-bottom: 16px;
	flex: 1;
}

.program-best-for {
	font-size: 0.75rem;
	font-weight: 700;
	color: var(--text);
	background: linear-gradient(rgba(246, 247, 255, 0.96) 0%, rgba(240, 241, 255, 0.94) 100%);
	border-radius: var(--r-sm);
	padding: 5px 12px;
	display: inline-block;
	margin-bottom: 20px;
}

.program-cta {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 0.85rem;
	font-weight: 700;
	color: var(--text);
	transition: gap 0.2s;
}

.program-cta:hover {
	gap: 10px;
}

.program-cta svg {
	width: 14px;
	height: 14px;
}

@media (min-width: 640px) {
	.programs-grid {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		overflow: visible;
		padding-bottom: 0;
	}

	.programs-carousel-controls {
		display: none;
	}

	.program-card {
		flex: auto;
	}
}

@media (min-width: 1024px) {
	.programs-grid {
		grid-template-columns: repeat(4, 1fr);
	}
}

/* ============================================================
   11. PROCESS SECTION
============================================================ */

@media (max-width: 640px) {
	.process-section-container {
		margin: 0px 20px;
	}
}

.process-section {
	background: var(--cream-2);
	overflow: hidden;
}

/* Mobile: vertical */
.process-steps {
	display: flex;
	flex-direction: column;
	gap: 0;
	margin-top: 48px;
	position: relative;
}

.process-steps::before {
	content: '';
	position: absolute;
	left: 27px;
	top: 0;
	bottom: 0;
	width: 2px;
	background: linear-gradient(to bottom, var(--gold), rgba(201, 151, 45, 0.1));
}

.process-step {
	display: flex;
	gap: 20px;
	padding-bottom: 36px;
	position: relative;
}

.process-step:last-child {
	padding-bottom: 0;
}

.step-num-wrap {
	position: relative;
	flex-shrink: 0;
}

.step-num {
	width: 56px;
	height: 56px;
	border-radius: 50%;
	background: white;
	border: 2px solid var(--border);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.2rem;
	font-weight: 800;
	color: var(--muted);
	transition: all 0.3s ease;
	position: relative;
	z-index: 2;
}

.process-step.active .step-num,
.process-step:hover .step-num {
	background: linear-gradient(135deg, var(--gold), var(--gold-dark));
	color: white;
	border-color: var(--gold-dark);
	box-shadow: var(--shadow-gold);
}

.step-content {
	padding-top: 12px;
}

.step-title {
	font-size: 1.05rem;
	font-weight: 800;
	color: var(--text);
	margin-bottom: 6px;
}

.step-desc {
	font-size: 0.88rem;
	color: var(--muted);
	line-height: 1.55;
}

/* Desktop: horizontal */
@media (min-width: 900px) {
	.process-steps {
		flex-direction: row;
		align-items: flex-start;
		gap: 0;
	}

	.process-steps::before {
		top: 28px;
		left: 0;
		right: 0;
		bottom: auto;
		width: auto;
		height: 2px;
		background: linear-gradient(to right, var(--gold), rgba(201, 151, 45, 0.15));
	}

	.process-step {
		flex: 1;
		flex-direction: column;
		align-items: center;
		text-align: center;
		padding-bottom: 0;
		padding-inline: 8px;
	}

	.step-content {
		padding-top: 16px;
	}
}


/* ============================================================
   13. IMPACT SECTION
============================================================ */

#results {
	background: linear-gradient(135deg, var(--black) 0%, var(--charcoal) 100%);
	position: relative;
	overflow: hidden;
	padding: 60px 0px;
}

.impact-bg {
	position: absolute;
	inset: 0;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80'%3E%3Crect width='40' height='40' fill='rgba(255,255,255,0.025)'/%3E%3Crect x='40' y='40' width='40' height='40' fill='rgba(255,255,255,0.025)'/%3E%3C/svg%3E");
	background-size: 80px 80px;
}

.impact-glow {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 600px;
	height: 400px;
	background: radial-gradient(ellipse, rgba(201, 151, 45, 0.06) 0%, transparent 70%);
	pointer-events: none;
}

.impact-heading {
	color: var(--white);
}

.impact-stats {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 0;
	margin-top: 56px;
	position: relative;
	z-index: 2;
}

.impact-stat {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 36px 24px;
	text-align: center;
	position: relative;
}

.impact-stat:not(:last-child)::after {
	content: '';
	position: absolute;
	right: 0;
	top: 20%;
	bottom: 20%;
	width: 1px;
	background: rgba(255, 255, 255, 0.08);
}

/* Remove after for middle items in 2-col */
.impact-stat:nth-child(2)::after {
	display: none;
}

.impact-stat:nth-child(4)::after {
	display: none;
}

.impact-number {
	font-size: clamp(2.4rem, 6vw, 4rem);
	font-weight: 800;
	color: var(--gold);
	line-height: 1;
	margin-bottom: 8px;
}

.impact-label {
	font-size: 0.8rem;
	color: rgba(255, 255, 255, 0.55);
	font-weight: 600;
	line-height: 1.4;
}

@media (min-width: 768px) {
	.impact-stats {
		grid-template-columns: repeat(5, 1fr);
	}

	.impact-stat:nth-child(2)::after {
		display: block;
	}

	.impact-stat:nth-child(4)::after {
		display: block;
	}

	.impact-stat:last-child::after {
		display: none;
	}
}

/* ============================================================
   13.5 FOUNDER SECTION
============================================================ */

.founder-section {
	background: var(--cream);
	position: relative;
	overflow: hidden;
}

.founder-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 40px;
	align-items: center;
	justify-content: center;
}

.founder-content {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

.founder-title {
	font-size: clamp(2rem, 5vw, 2.5rem);
	line-height: 1.2;
	margin-bottom: 24px;
	color: var(--black);
}

.founder-desc p {
	font-size: 1rem;
	color: var(--muted);
	margin-bottom: 16px;
	line-height: 1.6;
}

.founder-signature-box {
	margin-top: 24px;
	margin-bottom: 32px;
}

.founder-signature-text {
	font-family: 'Brush Script MT', cursive, sans-serif;
	font-size: 2rem;
	color: var(--text, #333);
	margin-bottom: 8px;
	line-height: 1;
	transform: rotate(-4deg);
	display: inline-block;
	text-align: center;
	position: absolute;
	left: 15%;
	bottom: -7%;
}

.founder-role {
	font-size: 0.9rem;
	color: var(--text);
	line-height: 1.4;
}

.founder-role strong {
	color: var(--black);
}

.founder-image-col {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
}

.founder-image-wrap {
	position: relative;
	width: 100%;
	max-width: 600px;
	background-color: var(--light-bg, #f5f5f5);
	border-radius: 24px;
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: hidden;
}

.founder-img {
	position: relative;
	z-index: 2;
	width: 600px;
	height: 100%;
	object-fit: cover;
	display: block;
}

/* Stats */
.founder-stats-col {
	display: flex;
	justify-content: center;
}

.founder-stats {
	display: flex;
	flex-direction: column;
	gap: 16px;
	width: 100%;
}

.founder-stat-item {
	display: flex;
	align-items: center;
	gap: 16px;
	background: var(--white);
	border: 1px solid var(--border);
	padding: 16px 20px;
	border-radius: var(--r-md);
	transition: transform 0.2s, box-shadow 0.2s;
}

.founder-stat-item:hover {
	transform: translateX(4px);
	box-shadow: var(--shadow-sm);
	border-color: rgba(201, 151, 45, 0.3);
}

.fs-icon {
	color: var(--text);
	background: linear-gradient(135deg, rgba(201, 151, 45, 0.1), transparent);
	width: 48px;
	height: 48px;
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid rgba(201, 151, 45, 0.2);
}

.fs-text {
	display: flex;
	flex-direction: column;
}

.fs-num {
	font-weight: 800;
	font-size: 1.15rem;
	color: var(--gold);
	line-height: 1.2;
}

.fs-label {
	font-size: 0.85rem;
	color: var(--text);
	font-weight: 500;
}

@media (max-width: 767px) {

	.founder-content,
	.moments-header {
		align-items: center;
		text-align: center;
	}
	.founder-content{
		padding: 0px 10px;
	}
}

@media (min-width: 768px) {
	.founder-grid {
		grid-template-columns: 1fr 1fr;
		align-items: center;
		justify-content: center;
	}

	.founder-left-col {
		order: -1;
	}
}

@media (min-width: 1024px) {
	.founder-grid {
		grid-template-columns: 1fr 1fr;
		gap: 60px;
		align-items: center;
		justify-content: center;
	}

	.founder-left-col {
		order: 0;
	}
}

/* ============================================================
   13.75 TOURNAMENTS SECTION
============================================================ */

.tournaments-section {
	background-color: var(--black);
	position: relative;
	background-image: linear-gradient(90deg, rgba(14, 14, 14, 0.1) 0%, rgba(14, 14, 14, 0.9) 40%, rgba(14, 14, 14, 1) 100%), url('../images/Firefly (2) 1.webp');
	background-size: cover;
	background-position: left center;
	background-repeat: no-repeat;
	position: relative;
	overflow: hidden;
	padding: 60px 0px;
}

.tournaments-grid {
	display: flex;
	flex-direction: column;
}

.tournaments-spacer {
	display: none;
}

.tournaments-body {
	display: flex;
	flex-direction: column;
	gap: 40px;
	background: rgba(14, 14, 14, 0.7);
	padding: 32px 24px;
	border-radius: var(--r-md);
	backdrop-filter: blur(5px);
}

.text-white {
	color: var(--white);
}

.text-white-70 {
	color: rgba(255, 255, 255, 0.7);
	font-size: 0.95rem;
	line-height: 1.6;
}

.t-feature-items {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.t-feature-items li {
	display: flex;
	align-items: flex-start;
	gap: 16px;
	transition: transform 0.2s;
}

.t-feature-items li:hover {
	transform: translateX(4px);
}

.t-feature-items li:hover .t-icon {
	background: rgba(201, 151, 45, 0.2);
}

.t-icon {
	width: 40px;
	height: 40px;
	border-radius: 12px;
	background: rgba(232, 100, 20, 0.08);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	border: 1px solid rgba(232, 100, 20, 0.2);
	transition: background 0.2s;
}

.t-text strong {
	display: block;
	color: var(--white);
	font-size: 1rem;
	font-weight: 700;
	margin-bottom: 4px;
}

.t-text span {
	display: block;
	color: rgba(255, 255, 255, 0.6);
	font-size: 0.85rem;
}

.tournaments-btn {
	border-color: var(--gold);
	color: var(--gold);
	transition: all 0.3s;
	border-radius: var(--r-sm);
}

.tournaments-btn:hover {
	background: var(--gold);
	color: var(--black);
}

.tournaments-text {
	text-align: center;
}

@media (max-width: 767px) {
	.tournaments-section {
		background-image: linear-gradient(180deg, rgba(14, 14, 14, 0.2) 0%, rgba(14, 14, 14, 0.85) 60%, rgba(14, 14, 14, 1) 100%), url('../images/Firefly (2) 1.webp');
		background-position: left center;
	}
	.tournaments-body {
		background: rgba(14, 14, 14, 0.25);
		backdrop-filter: blur(2px);
	}
}

@media (min-width: 768px) {
	.tournaments-body {
		flex-direction: row;
		align-items: center;
		background: transparent;
		backdrop-filter: none;
		padding: 0;
	}

	.tournaments-text {
		flex: 1;
		padding-right: 40px;
		border-right: 1px solid rgba(255, 255, 255, 0.1);
		text-align: left;
	}

	.tournaments-list {
		flex: 1;
		padding-left: 40px;
	}
}

@media (min-width: 1024px) {
	.tournaments-grid {
		flex-direction: row;
	}

	.tournaments-spacer {
		display: block;
		width: 35%;
	}

	.tournaments-body {
		width: 65%;
	}

	.tournaments-section {
		background-image: linear-gradient(90deg, rgba(14, 14, 14, 0) 0%, rgba(14, 14, 14, 0.9) 35%, rgba(14, 14, 14, 1) 100%), url('../images/Firefly (2) 1.webp');
	}
}

/* ============================================================
   14. TESTIMONIALS
============================================================ */

/* #testimonials {
	background: var(--cream-2);
} */

.testimonials-carousel-wrap {
	margin-top: 48px;
}

.testimonials-grid {
	display: flex;
	gap: 20px;
	overflow-x: auto;
	scroll-behavior: smooth;
	scrollbar-width: none;
	padding-bottom: 20px;
}

.testimonials-grid::-webkit-scrollbar {
	display: none;
}

.testimonial-card {
	flex: 0 0 85%;
	scroll-snap-align: center;
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: var(--r-md);
	padding: 32px;
	display: flex;
	flex-direction: column;
	gap: 20px;
	transition: all 0.28s ease;
	box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.testimonial-card:hover {
	transform: translateY(-6px);
}

.testimonial-stars {
	display: flex;
	gap: 3px;
	color: var(--gold);
	font-size: 0.9rem;
}

.testimonial-text {
	font-size: 0.95rem;
	color: var(--text-mid);
	line-height: 1.7;
	font-weight: 500;
	font-style: italic;
	flex: 1;
}

.testimonial-author {
	display: flex;
	align-items: center;
	gap: 12px;
	padding-top: 16px;
	border-top: 1px solid var(--border);
}

.author-avatar {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--gold), var(--gold-dark));
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1rem;
	font-weight: 800;
	color: white;
	flex-shrink: 0;
}

.author-info strong {
	display: block;
	font-size: 0.875rem;
	font-weight: 800;
	color: var(--text);
}

.author-info span {
	font-size: 0.75rem;
	color: var(--muted);
	font-weight: 500;
}

/* Carousel Controls */
.testimonials-carousel-controls {
	position: absolute;
	top: 50%;
	left: -15px;
	right: -15px;
	display: flex;
	justify-content: space-between;
	transform: translateY(-50%);
	pointer-events: none;
	z-index: 10;
}

.tc-btn {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background-color: var(--white);
	border: 1px solid var(--border);
	color: var(--charcoal);
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	pointer-events: auto;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
}

/* .tc-btn:hover {
	background-color: var(--gold);
	color: var(--white);
	border-color: var(--gold);
} */

@media (min-width: 640px) {
	.testimonial-card {
		flex: 0 0 calc(50% - 10px);
	}
}

@media (min-width: 1024px) {
	.testimonial-card {
		flex: 0 0 calc(33.333% - 14px);
	}

	.testimonials-carousel-controls {
		left: -40px;
		right: -40px;
	}

	/* Hide arrows on desktop if 4 or fewer testimonials */
	.testimonials-carousel-wrap:not(:has(.testimonial-card:nth-child(5))) .testimonials-carousel-controls {
		display: none;
	}
}

/* ============================================================
   15. FAQ
============================================================ */

.faq-section {
	background: var(--white);
}

.faq-list {
	display: flex;
	flex-direction: column;
	gap: 8px;
	margin-top: 48px;
	max-width: 780px;
	margin-inline: auto;
}

.faq-item {
	border: 1px solid var(--border);
	border-radius: var(--r-md);
	overflow: hidden;
	transition: border-color 0.2s, box-shadow 0.2s;
}

.faq-item.open {
	border-color: rgba(232, 100, 20, 0.4);
	box-shadow: 0 4px 20px rgba(232, 100, 20, 0.08);
}

.faq-question {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 20px 24px;
	cursor: pointer;
	background: none;
	border: none;
	width: 100%;
	text-align: left;
	font-size: 0.95rem;
	font-weight: 700;
	color: var(--text);
	transition: color 0.2s;
}

.faq-question:hover,
.faq-item.open .faq-question {
	color: var(--gold);
}

.faq-icon {
	width: 28px;
	height: 28px;
	border-radius: 50%;
	background: var(--cream);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	transition: background 0.2s, transform 0.3s;
}

.faq-item.open .faq-icon {
	background: var(--gold);
	transform: rotate(45deg);
}

.faq-icon svg {
	width: 14px;
	height: 14px;
	color: var(--muted);
	transition: color 0.2s;
}

.faq-item.open .faq-icon svg {
	color: white;
}

.faq-answer {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.38s cubic-bezier(0.22, 1, 0.36, 1), padding 0.3s ease;
}

.faq-item.open .faq-answer {
	max-height: 400px;
}

.faq-answer-inner {
	padding: 0 24px 20px;
	font-size: 0.9rem;
	color: var(--muted);
	line-height: 1.7;
}

/* ============================================================
   16. STUDENT RESULTS SECTION
============================================================ */

.student-results-section {
	background-color: var(--charcoal);
	position: relative;
	overflow: hidden;
	padding: 60px 0px;
}

.results-container {
	display: flex;
	flex-direction: column;
	gap: 32px;
}

.results-header {
	display: flex;
	flex-direction: column;
}

.results-title {
	font-size: clamp(2rem, 5vw, 2.5rem);
	line-height: 1.2;
	color: var(--cream);
}

.results-header .header-line {
	width: 60px;
	height: 3px;
	background-color: var(--gold);
	margin-top: 24px;
}

.results-carousel-wrap {
	width: 100%;
	position: relative;
}

.results-carousel-controls {
	position: absolute;
	top: 50%;
	left: -15px;
	right: -15px;
	display: flex;
	justify-content: space-between;
	transform: translateY(-50%);
	pointer-events: none;
	z-index: 10;
}

.rc-btn {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background-color: var(--charcoal);
	border: 1px solid rgba(255, 255, 255, 0.15);
	color: var(--white);
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	pointer-events: auto;
	transition: background-color 0.3s, border-color 0.3s;
}

.rc-btn:hover {
	background-color: rgba(201, 151, 45, 0.2);
	border-color: var(--gold);
	color: var(--gold);
}

.results-grid {
	display: flex;
	gap: 20px;
	overflow-x: auto;
	padding-bottom: 24px;
	scrollbar-width: none;
	/* Firefox */
	scroll-behavior: smooth;
}

.results-grid::-webkit-scrollbar {
	display: none;
	/* Chrome/Safari */
}

/* Mobile-only Carousel Snapping & Centering Offset */
@media (max-width: 1023px) {

	.programs-grid,
	.testimonials-grid {
		scroll-snap-type: x mandatory;
		padding-inline: max(8px, calc((100% - 1200px) / 2));
		padding-block: 12px;
		touch-action: pan-y;
	}

	.results-grid {
		scroll-snap-type: x mandatory;
		padding-inline: max(20px, calc(50% - 140px));
		padding-block: 12px;
		touch-action: pan-y;
	}

	.moments-grid {
		scroll-snap-type: x mandatory;
		padding-inline: max(8px, calc((100% - 1200px) / 2));
		padding-block: 12px;
		touch-action: pan-y;
	}

	.moment-item {
		scroll-snap-align: center;
	}
}

.result-card {
	flex: 0 0 280px;
	scroll-snap-align: center;
	background: rgba(255, 255, 255, 0.04);
	border-radius: var(--r-md);
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.06);
	display: flex;
	flex-direction: column;
	transition: transform 0.3s, border-color 0.3s;
}

.result-card:hover {
	border-color: rgba(201, 151, 45, 0.3);
}

.rc-image-wrap {
	width: 100%;
	height: 160px;
}

.rc-image-wrap img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.rc-content {
	padding: 24px 20px;
	text-align: center;
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.rc-content h3 {
	color: var(--white);
	font-size: 1.2rem;
	font-weight: 700;
	margin: 0;
}

.rc-level {
	color: rgba(255, 255, 255, 0.6);
	font-size: 0.85rem;
	margin-top: -12px;
	margin-bottom: 0;
}

.rc-stats {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 20px;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	padding: 16px 0;
}

.rc-stat {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.rc-stat span {
	font-size: 0.75rem;
	color: rgba(255, 255, 255, 0.5);
	margin-bottom: 6px;
}

.rc-stat strong {
	font-size: 1.35rem;
	font-weight: 800;
	line-height: 1;
}

.rc-stat.before strong {
	color: var(--white);
}

.rc-stat.after strong {
	color: #10b981;
}

.rc-arrow {
	color: #10b981;
	display: flex;
	align-items: center;
	transform: rotate(-40deg);
}

.rc-footer {
	font-size: 0.85rem;
	color: rgba(255, 255, 255, 0.7);
}

@media (min-width: 1024px) {
	.results-container {
		flex-direction: row;
		align-items: center;
		gap: 60px;
	}

	.results-header {
		flex: 0 0 250px;
	}

	.results-carousel-wrap {
		flex: 1;
		min-width: 0;
	}

	.results-carousel-controls {
		left: -24px;
		right: -24px;
	}
}

/* ============================================================
   17. CONTACT SECTION
============================================================ */

/* #contact {
	background: var(--cream-2);
} */

.contact-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 48px;
	margin-top: 48px;
}

.contact-info {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.contact-info-heading {
	font-size: clamp(1.3rem, 3vw, 2rem);
	color: var(--text);
	margin-bottom: 8px;
}

.contact-info-sub {
	font-size: 0.9rem;
	color: var(--muted);
}

.contact-detail {
	display: flex;
	align-items: flex-start;
	gap: 14px;
}

.contact-detail-icon {
	width: 42px;
	height: 42px;
	background: linear-gradient(135deg, rgba(201, 151, 45, 0.14), rgba(201, 151, 45, 0.05));
	border: 1px solid rgba(201, 151, 45, 0.2);
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.1rem;
	flex-shrink: 0;
}

.contact-detail-text strong {
	display: block;
	font-size: 0.8rem;
	font-weight: 800;
	color: var(--muted);
	text-transform: uppercase;
	letter-spacing: 0.08em;
	margin-bottom: 2px;
}

.contact-detail-text span {
	font-size: 0.95rem;
	font-weight: 600;
	color: var(--text);
}

.contact-whatsapp-btn {
	margin-top: 8px;
}

/* Contact Form */
.contact-form-wrap {
	background: var(--white);
	border-radius: var(--r-md);
	padding: clamp(28px, 5vw, 48px);
	border: 1px solid var(--border);
	box-shadow: var(--shadow-card);
}


.contact-form-title {
	font-size: 1.3rem;
	color: var(--text);
	margin-bottom: 6px;
}

.contact-form-sub {
	font-size: 0.85rem;
	color: var(--muted);
	margin-bottom: 28px;
}

.form-row {
	display: grid;
	grid-template-columns: 1fr;
	gap: 16px;
	margin-bottom: 16px;
}

.form-group {
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.form-group label {
	font-size: 0.8rem;
	font-weight: 700;
	color: var(--text-mid);
}

.form-group input,
.form-group select,
.form-group textarea {
	width: 100%;
	padding: 13px 16px;
	border: 1.5px solid var(--border);
	border-radius: var(--r-sm);
	background: var(--cream-2);
	font-size: 0.9rem;
	color: var(--text);
	font-weight: 500;
	transition: border-color 0.2s, box-shadow 0.2s;
	outline: none;
	-webkit-appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
	border-color: var(--gold);
	box-shadow: 0 0 0 3px rgba(201, 151, 45, 0.1);
	background: white;
}

.form-group select {
	cursor: pointer;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' viewBox='0 0 12 7'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236B6B6B' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 14px center;
	padding-right: 36px;
}

.form-group textarea {
	resize: vertical;
	min-height: 100px;
}

.form-submit-btn {
	width: 100%;
	margin-top: 8px;
}

.form-success {
	display: none;
	background: rgba(34, 197, 94, 0.1);
	border: 1px solid rgba(34, 197, 94, 0.25);
	border-radius: var(--r-md);
	padding: 18px 20px;
	text-align: center;
	font-weight: 700;
	color: #166534;
	font-size: 0.9rem;
	margin-top: 16px;
}

.form-error {
	display: none;
	background: rgba(239, 68, 68, 0.1);
	border: 1px solid rgba(239, 68, 68, 0.25);
	border-radius: var(--r-md);
	padding: 14px 20px;
	font-weight: 700;
	color: #991b1b;
	font-size: 0.875rem;
	margin-top: 12px;
}

/* Step Transitions */
.form-step {
	display: none;
	animation: fadeIn 0.4s ease forwards;
}

.form-step.active-step {
	display: block;
}

@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(10px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Slot Selection Grid */
.slot-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 12px;
}

@media (min-width: 480px) {
	.slot-grid.date-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.slot-grid.time-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

.slot-radio {
	position: relative;
	cursor: pointer;
}

.slot-radio input {
	position: absolute;
	opacity: 0;
	cursor: pointer;
	height: 0;
	width: 0;
}

.slot-label {
	display: block;
	padding: 14px 10px;
	background: var(--cream-2);
	border: 1.5px solid var(--border);
	border-radius: var(--r-sm);
	text-align: center;
	font-size: 0.85rem;
	font-weight: 700;
	color: var(--text-mid);
	transition: all 0.2s ease;
	user-select: none;
}

.slot-radio input:checked~.slot-label {
	background: var(--gold);
	border-color: var(--gold);
	color: var(--white);
	box-shadow: 0 4px 12px rgba(201, 151, 45, 0.25);
}

.slot-radio:hover input:not(:checked):not(:disabled)~.slot-label {
	border-color: var(--gold);
	background: white;
}

/* Disabled (Full) Slot */
.slot-radio input:disabled~.slot-label {
	opacity: 0.5;
	background: #f1f1f1;
	color: #999;
	cursor: not-allowed;
	text-decoration: line-through;
	border-color: var(--border);
}

@media (min-width: 640px) {
	.form-row {
		grid-template-columns: repeat(2, 1fr);
	}

}

@media (min-width: 1024px) {
	.contact-grid {
		grid-template-columns: 1fr 1.4fr;
		gap: 64px;
	}
}

/* ============================================================
   18. FOOTER
============================================================ */

.site-footer {
	background: var(--black);
	color: rgba(255, 255, 255, 0.62);
	padding-top: 60px;
	padding-bottom: 24px;
}

.footer-top {
	display: grid;
	grid-template-columns: 1fr;
	gap: 0px 0px;
	padding-bottom: 48px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand {
	grid-column: 1 / -1;
	margin-bottom: 30px;
}

.footer-col:last-child {
	grid-column: 1 / -1;
}

.footer-brand .site-logo .logo-text {
	color: white;
}

.footer-brand .site-logo .logo-text span {
	color: rgba(255, 255, 255, 0.45);
}

.footer-desc {
	margin-top: 16px;
	font-size: 0.875rem;
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.5);
	max-width: 280px;
}

.footer-socials {
	display: flex;
	gap: 10px;
	margin-top: 24px;
}

.social-link {
	width: 38px;
	height: 38px;
	background: rgba(255, 255, 255, 0.07);
	border-radius: 9px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: rgba(255, 255, 255, 0.6);
	font-size: 0.9rem;
	transition: background 0.2s, color 0.2s;
}

.social-link:hover {
	background: var(--gold);
	color: white;
}

.footer-col h5 {
	font-size: 0.75rem;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.9);
	margin-bottom: 20px;
}

/* Footer Accordion (Mobile Only) */
@media (max-width: 1023px) {
	.footer-col.footer-accordion h5 {
		margin-bottom: 0;
	}

	.footer-accordion-toggle {
		display: flex;
		justify-content: space-between;
		align-items: center;
		cursor: pointer;
		padding: 16px 0;
		border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	}

	.footer-accordion-icon {
		transition: transform 0.3s ease, color 0.3s;
		color: rgba(255, 255, 255, 0.5);
	}

	.footer-accordion.open .footer-accordion-icon {
		transform: rotate(180deg);
		color: var(--gold);
	}

	.footer-accordion-content {
		display: grid;
		grid-template-rows: 0fr;
		transition: grid-template-rows 0.3s ease;
		overflow: hidden;
	}

	.footer-accordion.open .footer-accordion-content {
		grid-template-rows: 1fr;
	}

	.footer-accordion-inner {
		min-height: 0;
		padding-top: 16px;
	}
}

@media (min-width: 1024px) {
	.footer-accordion-toggle {
		cursor: default;
		pointer-events: none;
	}

	.footer-accordion-icon {
		display: none;
	}

	.footer-accordion-content {
		display: block !important;
	}
}

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

.footer-links a {
	font-size: 0.875rem;
	color: rgba(255, 255, 255, 0.5);
	font-weight: 500;
	transition: color 0.2s;
}

.footer-links a:hover {
	color: var(--gold-light);
}

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

.footer-contact-icon {
	font-size: 0.9rem;
	margin-top: 2px;
	flex-shrink: 0;
}

.footer-contact-text {
	font-size: 0.875rem;
	color: rgba(255, 255, 255, 0.55);
}

.footer-contact-text strong {
	display: block;
	color: rgba(255, 255, 255, 0.85);
	font-weight: 600;
}

.footer-bottom {
	margin-top: 28px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
	text-align: center;
}

.footer-copy {
	font-size: 0.78rem;
	color: rgba(255, 255, 255, 0.28);
}

@media (min-width: 640px) {
	.footer-top {
		grid-template-columns: repeat(2, 1fr);
		gap: 48px;
	}

	.footer-brand,
	.footer-col:last-child {
		grid-column: auto;
	}
}

@media (min-width: 1024px) {
	.footer-top {
		grid-template-columns: 2fr 1fr 1fr 1.5fr;
	}

	.footer-bottom {
		flex-direction: row;
		justify-content: space-between;
		text-align: left;
	}
}

/* ============================================================
   19. STICKY MOBILE CTA
============================================================ */

.sticky-mobile-cta {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 900;
	background: rgba(255, 255, 255, 0.97);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	border-top: 1px solid var(--border);
	padding: 12px 16px;
	display: flex;
	gap: 10px;
	box-shadow: 0 -4px 20px rgba(11, 13, 16, 0.10);
	transform: translateY(0);
	transition: transform 0.3s ease;
}

.sticky-mobile-cta .btn {
	flex: 1;
	font-size: 0.85rem;
	padding: 13px 12px;
	min-height: 48px;
}

/* Hide on desktop */
@media (min-width: 900px) {
	.sticky-mobile-cta {
		display: none;
	}
}

/* Body bottom padding for mobile CTA */
@media (max-width: 899px) {
	body {
		padding-bottom: 76px;
	}
}

/* ============================================================
   20. ANIMATIONS & SCROLL REVEAL
============================================================ */

[data-reveal] {
	opacity: 0;
	transform: translateY(28px);
	transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
		transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

[data-reveal].revealed {
	opacity: 1;
	transform: translateY(0);
}

[data-reveal-delay="1"] {
	transition-delay: 0.08s;
}

[data-reveal-delay="2"] {
	transition-delay: 0.16s;
}

[data-reveal-delay="3"] {
	transition-delay: 0.24s;
}

[data-reveal-delay="4"] {
	transition-delay: 0.32s;
}

[data-reveal-delay="5"] {
	transition-delay: 0.40s;
}

[data-reveal-delay="6"] {
	transition-delay: 0.48s;
}

[data-reveal-delay="7"] {
	transition-delay: 0.56s;
}

/* Pulse animation for CTA badge */
@keyframes pulse-gold {

	0%,
	100% {
		box-shadow: 0 0 0 0 rgba(201, 151, 45, 0.4);
	}

	50% {
		box-shadow: 0 0 0 8px rgba(201, 151, 45, 0);
	}
}

.btn-primary-pulse {
	animation: pulse-gold 2.5s ease-in-out infinite;
	border-radius: var(--r-sm);
}

/* ============================================================
   21. ACCESSIBILITY
============================================================ */

:focus-visible {
	outline: 2px solid var(--gold);
	outline-offset: 3px;
	border-radius: 4px;
}

.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;
}

/* Skip to content */
.skip-to-content {
	position: absolute;
	top: -100%;
	left: 16px;
	background: var(--gold);
	color: white;
	padding: 10px 18px;
	border-radius: var(--r-sm);
	font-weight: 700;
	font-size: 0.875rem;
	z-index: 9999;
	transition: top 0.2s;
}

.skip-to-content:focus {
	top: 16px;
}

/* ============================================================
   22. MISC UTILITIES
============================================================ */

.mt-0 {
	margin-top: 0;
}

.mt-4 {
	margin-top: 16px;
}

.mt-6 {
	margin-top: 24px;
}

.mt-8 {
	margin-top: 32px;
}

.mt-12 {
	margin-top: 48px;
}

.mb-0 {
	margin-bottom: 0;
}

.mb-4 {
	margin-bottom: 16px;
}

.mb-6 {
	margin-bottom: 24px;
}

.divider {
	border: none;
	border-top: 1px solid var(--border);
	margin-block: 0;
}

/* No horizontal overflow anywhere */
section,
div,
header,
footer {
	max-width: 100vw;
}

/* ============================================================
   22. BOOKING MODAL
============================================================ */
.chess64-modal {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 9999;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s, visibility 0.3s;
}

.chess64-modal[aria-hidden="false"] {
	opacity: 1;
	visibility: visible;
}

.chess64-modal-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.6);
	backdrop-filter: blur(4px);
}

.chess64-modal-container {
	position: relative;
	width: 100%;
	max-width: 600px;
	max-height: 90vh;
	overflow-y: auto;
	transform: translateY(20px) scale(0.95);
	transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	margin: 20px;
	border-radius: var(--r-xl);
}

.chess64-modal[aria-hidden="false"] .chess64-modal-container {
	transform: translateY(0) scale(1);
}

.chess64-modal-close {
	position: absolute;
	top: 16px;
	right: 16px;
	background: rgba(0, 0, 0, 0.05);
	border: none;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	font-size: 24px;
	line-height: 1;
	cursor: pointer;
	color: var(--text);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 10;
	transition: background 0.2s, color 0.2s;
}

.chess64-modal-close:hover {
	background: rgba(0, 0, 0, 0.1);
	color: var(--danger, #dc3545);
}

.chess64-modal-content {
	padding: 0;
}

/* Ensure the form inside modal looks identical to the screenshot */
.chess64-modal .contact-form-wrap {
	margin: 0;
}