:root {
	--orange: #FCB82A;
	--orange2: #ff9500;
	--black: #070707;
	--text: #171717;
	--muted: #666;
	--line: #ececec;
	--soft: #fff5e4;
	--white: #fff;
	--radius: 26px;
	--shadow: 0 18px 50px rgba(0, 0, 0, .08)
}

* {
	box-sizing: border-box
}

html {
	scroll-behavior: smooth
}

body {
	margin: 0;
	font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
	color: var(--text);
	background: #fff;
	line-height: 1.55
}

.container {
	width: min(1180px, calc(100% - 40px));
	margin: 0 auto
}

.topbar {
	position: sticky;
	top: 0;
	z-index: 50;
	background: rgba(255, 255, 255, .92);
	backdrop-filter: blur(18px);
	border-bottom: 1px solid var(--line)
}

.nav {
	height: 86px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 28px
}

.brand {
	display: flex;
	align-items: center;
	gap: 14px;
	text-decoration: none;
	color: var(--black);
	font-weight: 900;
	letter-spacing: -.04em
}

.brand img {
	width: 60px;
	height: 60px;
	object-fit: contain
}

.brand span {
	display: block;
	font-size: 27px;
	line-height: .94
}

.brand em {
	font-style: normal;
	color: var(--orange2)
}

.menu {
	display: flex;
	align-items: center;
	gap: 30px
}

.menu a {
	color: var(--black);
	text-decoration: none;
	font-size: 14px;
	font-weight: 800;
	text-transform: uppercase
}

.menu a.active,
.menu a:hover {
	color: var(--orange2)
}

.rightnav {
	display: flex;
	align-items: center;
	gap: 18px
}

.langs {
	display: flex;
	gap: 10px;
	align-items: center
}

.langs button {
	border: 0;
	background: transparent;
	padding: 4px;
	font-weight: 800;
	cursor: pointer;
	color: #777
}

.langs button.active {
	color: #000
}

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 8px;
	padding: 14px 28px;
	text-decoration: none;
	font-weight: 900;
	text-transform: uppercase;
	font-size: 14px;
	border: 2px solid transparent;
	transition: .2s
}

.btn-primary {
	background: linear-gradient(135deg, var(--orange), var(--orange2));
	color: #fff
}

.btn-primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 12px 24px rgba(252, 184, 42, .32)
}

.btn-outline {
	background: #fff;
	color: var(--orange2);
	border-color: var(--orange2)
}

.btn-dark {
	background: #080808;
	color: #fff
}

.mobile-toggle {
	display: none;
	border: 0;
	background: #fff;
	font-size: 28px
}

.hero {
	position: relative;
	overflow: hidden;
	padding: 52px 0 35px
}

.hero:before {
	content: "";
	position: absolute;
	left: -50px;
	top: 0;
	width: 190px;
	height: 310px;
	background: radial-gradient(var(--orange) 2px, transparent 3px);
	background-size: 22px 22px;
	opacity: .16
}

.hero-grid {
	display: grid;
	grid-template-columns: .9fr 1.1fr;
	gap: 36px;
	align-items: center
}

.eyebrow {
	text-transform: uppercase;
	font-weight: 900;
	letter-spacing: .04em;
	color: #111;
	margin-bottom: 18px
}

.hero h1 {
	font-size: clamp(44px, 6vw, 82px);
	line-height: .98;
	letter-spacing: -.06em;
	margin: 0 0 24px
}

.orange {
	color: var(--orange2)
}

.lead {
	font-size: 19px;
	max-width: 610px;
	color: #333;
	margin: 0 0 30px
}

.hero-actions {
	display: flex;
	gap: 22px;
	flex-wrap: wrap;
	margin-bottom: 28px
}

.hero-photo {
	min-height: 440px;
	border-radius: 170px 0 170px 170px;
	overflow: hidden;
	position: relative;
	box-shadow: var(--shadow);
	background: var(--soft)
}

.photo {
	width: 100%;
	height: 100%;
	min-height: inherit;
	background-size: cover;
	background-position: center
}

.chess-photo {
	background-image: linear-gradient(120deg, rgba(255, 255, 255, .08), rgba(252, 184, 42, .15)), url('../img/chess.svg')
}

.sports-photo {
	background-image: linear-gradient(120deg, rgba(255, 255, 255, .08), rgba(252, 184, 42, .12)), url('../img/sports.svg')
}

.camp-photo {
	background-image: linear-gradient(120deg, rgba(255, 255, 255, .08), rgba(252, 184, 42, .12)), url('../img/camp.svg')
}

.learn-photo {
	background-image: linear-gradient(120deg, rgba(255, 255, 255, .08), rgba(252, 184, 42, .12)), url('../img/learning.svg')
}

.hero-dot {
	position: absolute;
	left: 4%;
	bottom: 26%;
	width: 42px;
	height: 42px;
	background: var(--orange2);
	border-radius: 50%
}

.facts {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 22px;
	margin-top: 20px
}

.fact {
	display: flex;
	align-items: center;
	gap: 13px;
	font-weight: 700
}

.fact b {
	display: block
}

.fact .ico {
	font-size: 32px;
	color: var(--orange2)
}

.section {
	padding: 54px 0
}

.section-title {
	text-align: center;
	margin-bottom: 34px
}

.section-title h2 {
	font-size: 34px;
	letter-spacing: -.04em;
	text-transform: uppercase;
	margin: 0
}

.mark {
	width: 52px;
	height: 3px;
	background: var(--orange2);
	margin: 12px auto 0
}

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

.card {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: 18px;
	padding: 0 0 18px;
	overflow: hidden;
	box-shadow: 0 8px 28px rgba(0, 0, 0, .04)
}

.card .thumb {
	height: 148px;
	background-color: #eee;
	background-size: cover;
	background-position: center
}

.card h3 {
	padding: 18px 18px 0;
	margin: 0;
	font-size: 18px;
	text-transform: uppercase;
	display: flex;
	align-items: center;
	gap: 10px
}

.card p {
	padding: 0 18px;
	margin: 10px 0 14px;
	color: #555
}

.more {
	padding: 0 18px;
	color: var(--orange2);
	font-weight: 900;
	text-decoration: none
}

.join-strip {
	background: linear-gradient(90deg, #fff5e5, #fff, #fff5e5);
	border-radius: 16px;
	padding: 22px 32px;
	display: grid;
	grid-template-columns: 1fr 1px 1fr;
	gap: 32px;
	align-items: center
}

.join-box {
	display: grid;
	grid-template-columns: 78px 1fr auto;
	gap: 18px;
	align-items: center
}

.round-ico {
	width: 68px;
	height: 68px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--orange), var(--orange2));
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 32px
}

.join-box h3 {
	margin: 0;
	text-transform: uppercase
}

.join-box p {
	margin: 4px 0 0;
	color: #444
}

.divider {
	height: 70px;
	background: #e5d7bf
}

.page-hero {
	padding: 55px 0;
	background: linear-gradient(120deg, #fff, #fff7ea)
}

.page-hero .container {
	display: grid;
	grid-template-columns: 1fr .7fr;
	gap: 34px;
	align-items: center
}

.page-hero h1 {
	font-size: 56px;
	line-height: 1;
	margin: 0 0 18px;
	letter-spacing: -.05em
}

.content-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 28px
}

.panel {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: 22px;
	padding: 28px;
	box-shadow: 0 8px 30px rgba(0, 0, 0, .04)
}

.panel h2,
.panel h3 {
	margin-top: 0;
	letter-spacing: -.03em
}

.list {
	padding-left: 20px
}

.study-links {
	display: grid;
	gap: 16px;
	max-width: 760px;
	margin: 0 auto
}

.study-link {
	display: grid;
	grid-template-columns: 56px 1fr auto;
	align-items: center;
	gap: 18px;
	padding: 22px 24px;
	border: 1px solid var(--line);
	border-radius: 18px;
	background: #fff;
	box-shadow: 0 8px 28px rgba(0, 0, 0, .04);
	text-decoration: none;
	color: inherit;
	transition: border-color .2s, box-shadow .2s, transform .2s
}

.study-link:hover {
	border-color: #f3d48a;
	box-shadow: 0 14px 36px rgba(252, 184, 42, .18);
	transform: translateY(-2px)
}

.study-link-ico {
	width: 56px;
	height: 56px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 28px;
	background: linear-gradient(135deg, var(--soft), #fff);
	border: 1px solid #f3e0b8
}

.study-link-body {
	display: flex;
	flex-direction: column;
	gap: 4px;
	min-width: 0
}

.study-link-body strong {
	font-size: 18px;
	letter-spacing: -.02em
}

.study-link-body span {
	font-size: 14px;
	color: var(--muted);
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap
}

.study-link-arrow {
	font-size: 22px;
	font-weight: 900;
	color: var(--orange2);
	transition: transform .2s
}

.study-link:hover .study-link-arrow {
	transform: translateX(4px)
}

.gallery {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 12px
}

.gallery div {
	height: 160px;
	border-radius: 16px;
	background-size: cover;
	background-position: center
}

.gallery div:nth-child(1),
.gallery div:nth-child(4) {
	grid-column: span 2
}

.gallery div:nth-child(2) {
	grid-column: span 3
}

.gallery div:nth-child(3) {
	grid-column: span 1
}

.gallery div:nth-child(5) {
	grid-column: span 3
}

.gallery div:nth-child(6) {
	grid-column: span 3
}

.gallery-photos {
	grid-template-columns: repeat(4, 1fr)
}

.gallery-photos a {
	display: block;
	height: 180px;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 4px 16px rgba(0, 0, 0, .06)
}

.gallery-photos img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform .25s
}

.gallery-photos a:hover img {
	transform: scale(1.04)
}

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

.file {
	padding: 20px;
	border: 1px dashed #d9c295;
	border-radius: 16px;
	background: #fffdf8
}

.footer {
	margin-top: 40px;
	background: #0a0a0a;
	color: #fff;
	padding: 48px 0 26px
}

.footer-grid {
	display: grid;
	grid-template-columns: 1.2fr 1fr 1fr;
	gap: 28px
}

.footer a {
	color: #fff;
	text-decoration: none
}

.footer .muted {
	color: #bdbdbd
}

.footer-bottom {
	border-top: 1px solid #292929;
	margin-top: 32px;
	padding-top: 20px;
	color: #aaa;
	font-size: 14px
}

.sponsor-footer {
	background: #151515;
	border: 1px solid #333;
	border-radius: 18px;
	padding: 24px;
	display: flex;
	gap: 18px;
	align-items: center;
	justify-content: space-between
}

.sponsor-footer p {
	margin: 0;
	color: #d7d7d7
}

.hide {
	display: none !important
}

@media(max-width:960px) {
	.nav {
		height: auto;
		padding: 14px 0;
		align-items: flex-start
	}

	.mobile-toggle {
		display: block
	}

	.menu {
		display: none;
		position: absolute;
		left: 0;
		right: 0;
		top: 86px;
		background: #fff;
		border-bottom: 1px solid var(--line);
		padding: 20px;
		flex-direction: column;
		align-items: flex-start
	}

	.menu.open {
		display: flex
	}

	.rightnav {
		gap: 10px
	}

	.rightnav .btn {
		display: none
	}

	.hero-grid,
	.page-hero .container,
	.content-grid {
		grid-template-columns: 1fr
	}

	.hero-photo {
		min-height: 320px;
		border-radius: 80px 0 80px 80px
	}

	.facts,
	.cards,
	.files {
		grid-template-columns: 1fr 1fr
	}

	.join-strip {
		grid-template-columns: 1fr
	}

	.divider {
		display: none
	}

	.join-box {
		grid-template-columns: 58px 1fr
	}

	.join-box .btn {
		grid-column: 1/-1
	}

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

	.gallery {
		grid-template-columns: 1fr 1fr
	}

	.gallery div {
		grid-column: span 1 !important
	}

	.gallery-photos {
		grid-template-columns: repeat(2, 1fr)
	}
}

@media(max-width:620px) {
	.container {
		width: min(100% - 24px, 1180px)
	}

	.brand span {
		font-size: 20px
	}

	.brand img {
		width: 48px;
		height: 48px
	}

	.langs {
		font-size: 13px
	}

	.hero h1 {
		font-size: 42px
	}

	.page-hero h1 {
		font-size: 40px
	}

	.facts,
	.cards,
	.files {
		grid-template-columns: 1fr
	}

	.hero {
		padding-top: 30px
	}

	.footer {
		padding-bottom: 110px
	}

	.sponsor-footer {
		flex-direction: column;
		align-items: flex-start
	}

	.gallery {
		grid-template-columns: 1fr
	}

	.btn {
		width: 100%
	}

	.hero-actions {
		gap: 12px
	}
}