:root {
	--color-dark: #071523;
	--color-dark-soft: #0c2032;
	--color-light: #f5f6f8;
	--color-white: #ffffff;
	--color-text: #111827;
	--color-muted: #687383;
	--color-red: #e1141d;
	--color-red-dark: #b90710;
	--color-line: #dfe4ea;
	--font-body: "Inter", sans-serif;
	--font-display: "Barlow Condensed", sans-serif;
	--shadow-sm: 0 12px 30px rgba(7, 21, 35, 0.08);
	--shadow-lg: 0 28px 70px rgba(7, 21, 35, 0.16);
	--radius: 14px;
	--transition: 0.28s ease;
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	font-family: var(--font-body);
	font-size: 16px;
	line-height: 1.6;
	color: var(--color-text);
	background: var(--color-light);
	-webkit-font-smoothing: antialiased;
}

body.nav-open {
	overflow: hidden;
}

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

button,
a {
	-webkit-tap-highlight-color: transparent;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0;
	font-family: var(--font-display);
	font-weight: 800;
	line-height: 0.95;
	text-transform: uppercase;
}

p {
	margin: 0;
}

.container-xxl {
	max-width: 1560px;
}

.section {
	position: relative;
	padding: 82px 0;
}

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

.section-red {
	color: var(--color-white);
	background: linear-gradient(110deg, #9e0610 0%, #e1141d 55%, #8d030c 100%);
}

.section-heading {
	margin-bottom: 34px;
}

.section-heading.compact {
	margin-top: 58px;
}

.section-kicker,
.eyebrow {
	display: block;
	margin-bottom: 8px;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.16em;
	color: var(--color-red);
	text-transform: uppercase;
}

.section-kicker.light {
	color: rgba(255, 255, 255, 0.78);
}

.section-heading h2,
.homebase-copy h2,
.testing-copy h2,
.alumni-section h2 {
	font-size: clamp(36px, 4vw, 64px);
}

.section-link {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-family: var(--font-display);
	font-size: 17px;
	font-weight: 700;
	text-transform: uppercase;
	transition: color var(--transition), gap var(--transition);
}

.section-link:hover {
	gap: 15px;
	color: var(--color-red);
}

.section-link.light:hover {
	color: var(--color-white);
}

.btn {
	min-height: 48px;
	padding: 12px 24px;
	border-radius: 3px;
	font-family: var(--font-display);
	font-size: 16px;
	font-weight: 700;
	letter-spacing: 0.02em;
	text-transform: uppercase;
	transition: transform var(--transition), box-shadow var(--transition), background var(--transition), border-color var(--transition);
}

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

.btn-primary {
	border-color: var(--color-red);
	background: var(--color-red);
	box-shadow: 0 12px 30px rgba(225, 20, 29, 0.24);
}

.btn-primary:hover,
.btn-primary:focus {
	border-color: var(--color-red-dark);
	background: var(--color-red-dark);
	box-shadow: 0 16px 36px rgba(225, 20, 29, 0.32);
}

.header {
	z-index: 1000;
	height: 92px;
	border-bottom: 1px solid transparent;
	background: transparent;
	box-shadow: none;
	transition: height var(--transition), border-color var(--transition), background var(--transition), box-shadow var(--transition), backdrop-filter var(--transition);
}

.header.header-scrolled {
	height: 76px;
	border-color: rgba(255, 255, 255, 0.08);
	background: rgba(4, 13, 22, 0.94);
	box-shadow: 0 12px 36px rgba(0, 0, 0, 0.22);
	backdrop-filter: blur(14px);
}

.header-inner {
	display: flex;
	align-items: center;
	gap: 0;
	height: 100%;
}

.brand {
	display: inline-flex;
	align-items: center;
	justify-content: flex-start;
	width: 118px;
	height: 82px;
}

.brand img {
	display: block;
	width: 100%;
	max-height: 78px;
	object-fit: contain;
	filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.28));
	transition: width var(--transition), max-height var(--transition), transform var(--transition);
}

.header.header-scrolled .brand img {
	max-height: 64px;
}

.brand:hover img {
	transform: translateY(-2px);
}

.navbar {
	margin-right: auto;
	margin-left: 40px;
	padding: 0;
}

.navbar ul {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: clamp(24px, 2.5vw, 48px);
	margin: 0;
	padding: 0;
	list-style: none;
}

.navbar a {
	position: relative;
	display: block;
	padding: 32px 0 30px;
	font-family: var(--font-display);
	font-size: 15px;
	font-weight: 700;
	color: rgba(255, 255, 255, 0.84);
	text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
	text-transform: uppercase;
	transition: color var(--transition);
}

.header.header-scrolled .navbar a {
	padding-top: 24px;
	padding-bottom: 23px;
}

.navbar a::after {
	content: "";
	position: absolute;
	left: 50%;
	bottom: 20px;
	width: 0;
	height: 2px;
	background: var(--color-red);
	transform: translateX(-50%);
	transition: width var(--transition);
}

.header.header-scrolled .navbar a::after {
	bottom: 15px;
}

.navbar a:hover,
.navbar a.active {
	color: var(--color-white);
}

.navbar a:hover::after,
.navbar a.active::after {
	width: 100%;
}

.header-actions {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 13px;
	margin-left: 32px;
	white-space: nowrap;
}

.language-switcher,
.currency-switcher {
	display: flex;
	align-items: center;
	gap: 5px;
	font-size: 12px;
	font-weight: 700;
	color: rgba(255, 255, 255, 0.38);
}

.language-btn,
.currency-btn {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 0;
	border: 0;
	color: rgba(255, 255, 255, 0.64);
	background: transparent;
	font-size: 12px;
	font-weight: 700;
	transition: color var(--transition), opacity var(--transition);
}

.language-btn img {
	display: block;
	width: 20px;
	height: 14px;
	border-radius: 1px;
	box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.14);
	object-fit: cover;
}

.language-btn.active,
.language-btn:hover,
.currency-btn.active,
.currency-btn:hover {
	color: var(--color-white);
}

.language-btn:not(.active),
.currency-btn:not(.active) {
	opacity: 0.72;
}

.header-icon {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	padding: 0;
	border: 0;
	color: var(--color-white);
	background: transparent;
	font-size: 20px;
	text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
}

.cart-link span {
	position: absolute;
	top: 1px;
	right: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 16px;
	height: 16px;
	border-radius: 50%;
	color: var(--color-white);
	background: var(--color-red);
	font-size: 9px;
	font-weight: 700;
}

.header-cta {
	min-height: 42px;
	padding: 9px 18px;
}

.mobile-nav-toggle {
	display: none;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	padding: 0;
	border: 0;
	color: var(--color-white);
	background: transparent;
	font-size: 30px;
}

.hero {
	position: relative;
	display: flex;
	align-items: center;
	min-height: max(760px, 100svh);
	overflow: hidden;
	background: #04101c;
}

.hero::before {
	content: "";
	position: absolute;
	z-index: 1;
	inset: 0;
	background: linear-gradient(90deg, rgba(2, 9, 16, 0.98) 0%, rgba(2, 9, 16, 0.93) 26%, rgba(2, 9, 16, 0.72) 44%, rgba(2, 9, 16, 0.2) 68%, rgba(2, 9, 16, 0.08) 100%), linear-gradient(180deg, rgba(2, 9, 16, 0.32) 0%, transparent 23%, transparent 70%, rgba(2, 9, 16, 0.72) 100%);
	pointer-events: none;
}

.hero::after {
	content: "";
	position: absolute;
	z-index: 1;
	inset: 0;
	background: radial-gradient(circle at 66% 70%, rgba(225, 20, 29, 0.2) 0%, rgba(225, 20, 29, 0.07) 20%, transparent 42%), linear-gradient(180deg, transparent 78%, rgba(3, 10, 17, 0.58) 100%);
	pointer-events: none;
}

.hero-background {
	position: absolute;
	z-index: 0;
	inset: 0;
	background-color: #071523;
	background-image: url("../img/hero-bg.webp");
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	transform: scale(1.01);
}

.hero-container {
	position: relative;
	z-index: 2;
	display: flex;
	align-items: center;
	min-height: max(760px, 100svh);
	padding-top: 110px;
	padding-bottom: 110px;
}

.hero-copy {
	position: relative;
	width: min(650px, 48vw);
}

.hero-copy::before {
	content: "";
	position: absolute;
	z-index: -1;
	top: 50%;
	left: -12%;
	width: 125%;
	height: 132%;
	background: radial-gradient(ellipse at 42% 50%, rgba(3, 11, 19, 0.78) 0%, rgba(3, 11, 19, 0.48) 42%, transparent 76%);
	filter: blur(18px);
	transform: translateY(-50%);
	pointer-events: none;
}

.hero h1 {
	max-width: 650px;
	font-size: clamp(78px, 7.5vw, 132px);
	letter-spacing: -0.035em;
	text-shadow: 0 5px 34px rgba(0, 0, 0, 0.42);
}

.hero h1 span,
.hero h1 em {
	display: block;
	font-style: normal;
}

.hero h1 span {
	color: var(--color-white);
}

.hero h1 em {
	color: var(--color-red);
	text-shadow: 0 8px 38px rgba(225, 20, 29, 0.24);
}

.hero-copy > p {
	margin-top: 24px;
	font-family: var(--font-display);
	font-size: 29px;
	font-weight: 600;
	line-height: 1.1;
	color: rgba(255, 255, 255, 0.9);
	text-shadow: 0 3px 18px rgba(0, 0, 0, 0.48);
}

.hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	margin-top: 34px;
}

.hero-scroll {
	position: absolute;
	z-index: 3;
	left: 50%;
	bottom: 28px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 6px;
	color: rgba(255, 255, 255, 0.78);
	font-family: var(--font-display);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-shadow: 0 2px 12px rgba(0, 0, 0, 0.45);
	text-transform: uppercase;
	transform: translateX(-50%);
}

.hero-scroll:hover,
.hero-scroll:focus {
	color: var(--color-red);
}

.hero-scroll::before {
	content: "";
	display: block;
	width: 1px;
	height: 28px;
	margin-bottom: 2px;
	background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.74));
	transition: background var(--transition);
}

.hero-scroll:hover::before,
.hero-scroll:focus::before {
	background: linear-gradient(180deg, transparent, var(--color-red));
}

.hero-scroll i {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 30px;
	height: 30px;
	border: 1px solid rgba(255, 255, 255, 0.42);
	border-radius: 50%;
	font-size: 14px;
	animation: heroScroll 2s ease-in-out infinite;
	transition: border-color var(--transition), color var(--transition);
}

.hero-scroll:hover i,
.hero-scroll:focus i {
	border-color: var(--color-red);
	color: var(--color-red);
}

@keyframes heroScroll {
	0%, 100% {
		opacity: 0.62;
		transform: translateY(0);
	}
	50% {
		opacity: 1;
		transform: translateY(6px);
	}
}

.section-camps {
	background: linear-gradient(180deg, #ffffff 0%, #f4f6f8 100%);
}

.section-camps .section-heading {
	padding-right: 8px;
	padding-left: 8px;
}

.slider-shell {
	position: relative;
	width: 100%;
	max-width: 100%;
	margin: 0;
	padding: 0;
}

.nearest-camps-slider {
	position: relative;
}

.nearest-camps-slider .slick-list {
	overflow: hidden;
	margin: -8px 0;
	padding: 8px 0;
}

.nearest-camps-slider .slick-track {
	display: flex;
}

.nearest-camps-slider .slick-slide {
	height: auto;
	margin: 0 8px;
}

.nearest-camps-slider .slick-slide > div {
	height: 100%;
}

.camp-card {
	position: relative;
	display: grid !important;
	grid-template-columns: 42% 58%;
	min-height: 192px;
	height: 100%;
	overflow: hidden;
	border: 1px solid rgba(7, 21, 35, 0.08);
	border-radius: 8px;
	background: var(--color-white);
	box-shadow: 0 3px 10px rgba(7, 21, 35, 0.07);
	color: var(--color-dark);
	text-decoration: none;
	transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.camp-card:hover {
	transform: translateY(-2px);
	border-color: rgba(234, 20, 33, 0.18);
	box-shadow: 0 5px 14px rgba(7, 21, 35, 0.1);
	color: var(--color-dark);
}

.placeholder-media {
	position: relative;
	overflow: hidden;
	background: linear-gradient(135deg, #dfe4ea 0%, #eef1f4 48%, #cdd4dc 100%);
}

.placeholder-media::before {
	content: "";
	position: absolute;
	inset: -25%;
	background: linear-gradient(110deg, transparent 35%, rgba(255, 255, 255, 0.55) 50%, transparent 65%);
	transform: translateX(-60%);
	animation: placeholderShine 5s ease-in-out infinite;
}

.placeholder-media span {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 16px;
	font-family: var(--font-display);
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.08em;
	color: rgba(7, 21, 35, 0.42);
	text-align: center;
	text-transform: uppercase;
}

.camp-card-media {
	min-height: 100%;
	overflow: hidden;
}

.camp-card-media img,
.recommended-media img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.55s ease;
}

.camp-card:hover .camp-card-media img,
.recommended-card:hover .recommended-media img {
	transform: scale(1.045);
}

.camp-card-date {
	position: absolute;
	top: 12px;
	left: 12px;
	z-index: 2;
	height: auto !important;
	padding: 7px 10px;
	border-radius: 3px;
	background: rgba(255, 255, 255, 0.94);
	box-shadow: 0 7px 18px rgba(7, 21, 35, 0.1);
	font-size: 11px;
	font-weight: 700;
}

.camp-card-body {
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	padding: 22px 20px;
}

.camp-card h3 {
	font-size: 27px;
	line-height: 0.95;
}

.camp-card p {
	margin-top: 14px;
	font-size: 12px;
	color: var(--color-muted);
}

.camp-card-footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: 16px;
}

.price {
	font-family: var(--font-display);
	font-size: 23px;
	font-weight: 800;
}

.camp-card-footer > i {
	color: var(--color-red);
	font-size: 22px;
	transition: transform var(--transition);
}

.camp-card:hover .camp-card-footer > i {
	transform: translateX(5px);
}

.nearest-camps-slider .slick-arrow {
	position: absolute;
	top: 50%;
	z-index: 6;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	padding: 0;
	border: 1px solid rgba(7, 21, 35, 0.1);
	border-radius: 50%;
	background: var(--color-white);
	box-shadow: var(--shadow-sm);
	color: var(--color-dark);
	font-size: 18px;
	transform: translateY(-50%);
	transition: background var(--transition), color var(--transition), opacity var(--transition), visibility var(--transition);
}

.nearest-camps-slider .slick-prev {
	left: -8px;
}

.nearest-camps-slider .slick-next {
	right: -8px;
}

.nearest-camps-slider .slick-arrow:hover {
	color: var(--color-white);
	background: var(--color-red);
}

.nearest-camps-slider .slick-arrow.slick-disabled {
	opacity: 0.28;
	cursor: default;
	pointer-events: none;
}

.recommended-slider-shell {
	position: relative;
	width: 100%;
	max-width: 100%;
	margin: 0;
	padding: 0;
}

.recommended-grid {
	position: relative;
}

.recommended-grid .slick-list {
	overflow: hidden;
	margin: -8px 0;
	padding: 8px 0;
}

.recommended-grid .slick-track {
	display: flex;
}

.recommended-grid .slick-slide {
	height: auto;
	margin: 0 8px;
}

.recommended-grid .slick-slide > div {
	height: 100%;
}

.recommended-card {
	position: relative;
	display: block;
	min-height: 330px;
	height: 100%;
	overflow: hidden;
	border-radius: 8px;
	color: var(--color-white);
	background: var(--color-dark);
	box-shadow: none;
	transition: transform var(--transition);
}

.recommended-card:hover {
	transform: translateY(-2px);
	color: var(--color-white);
	box-shadow: none;
}

.recommended-media,
.recommended-overlay {
	position: absolute;
	inset: 0;
}

.recommended-overlay {
	background: linear-gradient(180deg, rgba(3, 12, 20, 0.15) 0%, rgba(3, 12, 20, 0.92) 85%);
}

.recommended-content {
	position: absolute;
	z-index: 2;
	left: 0;
	right: 0;
	bottom: 0;
	padding: 28px;
	color: var(--color-white);
}

.recommended-grid .slick-arrow {
	position: absolute;
	top: 50%;
	z-index: 6;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	padding: 0;
	border: 1px solid rgba(7, 21, 35, 0.1);
	border-radius: 50%;
	color: var(--color-dark);
	background: var(--color-white);
	box-shadow: var(--shadow-sm);
	font-size: 18px;
	transform: translateY(-50%);
	transition: background var(--transition), color var(--transition), opacity var(--transition);
}

.recommended-grid .slick-prev {
	left: -8px;
}

.recommended-grid .slick-next {
	right: -8px;
}

.recommended-grid .slick-arrow:hover {
	color: var(--color-white);
	background: var(--color-red);
}

.recommended-grid .slick-arrow.slick-disabled {
	opacity: 0.28;
	cursor: default;
	pointer-events: none;
}

.recommended-content > span {
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.08em;
}

.recommended-content h3 {
	margin-top: 10px;
	font-size: 35px;
}

.rating {
	display: flex;
	gap: 4px;
	margin-top: 13px;
	color: var(--color-red);
}

.recommended-content p {
	margin: 16px 0;
	font-size: 13px;
	color: rgba(255, 255, 255, 0.72);
}

.stats-section {
	padding: 34px 0;
	background: var(--color-white);
}

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

.stat-item {
	position: relative;
	display: grid;
	grid-template-columns: 48px auto;
	grid-template-rows: auto auto;
	column-gap: 14px;
	padding: 18px 28px;
}

.stat-item:not(:last-child)::after {
	content: "";
	position: absolute;
	top: 22%;
	right: 0;
	bottom: 22%;
	width: 1px;
	background: var(--color-line);
}

.stat-item > i {
	grid-row: 1 / 3;
	align-self: center;
	color: var(--color-red);
	font-size: 38px;
}

.stat-item strong {
	font-family: var(--font-display);
	font-size: 44px;
	font-weight: 800;
	line-height: 1;
}

.stat-item p {
	font-size: 11px;
	color: var(--color-muted);
}

.alumni-section {
	padding: 56px 0;
	overflow: hidden;
	background:
		radial-gradient(circle at 72% 42%, rgba(255, 82, 92, 0.34) 0%, rgba(255, 42, 54, 0.13) 22%, transparent 42%),
		radial-gradient(circle at 14% 88%, rgba(68, 0, 8, 0.52) 0%, transparent 40%),
		linear-gradient(115deg, #76050d 0%, #ae0712 25%, #dc101c 52%, #f01824 70%, #82050e 100%);
}

.alumni-section::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		linear-gradient(118deg, rgba(255, 255, 255, 0.06) 0%, transparent 22%, transparent 58%, rgba(255, 255, 255, 0.045) 72%, transparent 100%),
		linear-gradient(180deg, rgba(46, 0, 6, 0.18) 0%, transparent 28%, transparent 68%, rgba(46, 0, 6, 0.34) 100%);
	pointer-events: none;
}

.alumni-section::after {
	content: "";
	position: absolute;
	top: -38%;
	right: 4%;
	width: 56%;
	height: 176%;
	background:
		linear-gradient(108deg, transparent 28%, rgba(255, 255, 255, 0.08) 44%, transparent 58%),
		radial-gradient(ellipse at center, rgba(255, 74, 84, 0.2) 0%, transparent 66%);
	filter: blur(28px);
	transform: rotate(-7deg);
	pointer-events: none;
}

.alumni-section .container-fluid {
	position: relative;
	z-index: 1;
}

.alumni-section p {
	margin: 18px 0 28px;
	color: rgba(255, 255, 255, 0.78);
}

.alumni-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 10px;
}

.alumni-card {
	position: relative;
	min-height: 270px;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 6px;
	background: var(--color-dark);
	box-shadow: 0 12px 30px rgba(63, 0, 7, 0.2);
}

.alumni-photo {
	position: absolute;
	inset: 0;
	overflow: hidden;
}

.alumni-photo::after {
	content: "";
	position: absolute;
	z-index: 1;
	inset: -30%;
	background: linear-gradient(110deg, transparent 36%, rgba(255, 255, 255, 0.16) 50%, transparent 64%);
	transform: translateX(-75%);
	animation: alumniShine 6s ease-in-out infinite;
	pointer-events: none;
}

.alumni-photo img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center top;
	transition: transform 0.5s ease;
}

.alumni-card::after {
	content: "";
	position: absolute;
	z-index: 1;
	inset: 0;
	background: linear-gradient(180deg, rgba(4, 12, 20, 0.02) 28%, rgba(4, 12, 20, 0.34) 58%, rgba(4, 12, 20, 0.98) 100%);
	pointer-events: none;
}

.alumni-card:hover .alumni-photo img {
	transform: scale(1.035);
}

.alumni-content {
	position: absolute;
	z-index: 3;
	left: 18px;
	right: 18px;
	bottom: 16px;
}

.alumni-card h3 {
	font-size: 27px;
	text-shadow: 0 2px 12px rgba(0, 0, 0, 0.72);
}

.alumni-card p {
	margin: 4px 0 0;
	font-size: 10px;
	color: rgba(255, 255, 255, 0.72);
}

.homebase-section {
	padding: 0;
	overflow: hidden;
	background: var(--color-white);
}

.homebase-grid {
	display: grid;
	grid-template-columns: 0.85fr 1fr 2.2fr;
	min-height: 330px;
}

.homebase-copy {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 44px 38px;
}

.homebase-copy h2 {
	color: var(--color-red);
}

.homebase-copy p {
	margin: 20px 0;
	color: var(--color-muted);
}

.homebase-copy .btn {
	align-self: flex-start;
}

.homebase-map,
.homebase-photo {
	position: relative;
	min-height: 330px;
	overflow: hidden;
}

.homebase-map {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 34px;
	background: var(--color-white);
}

.homebase-map img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.homebase-photo {
	width: calc(100% + max(12px, calc((100vw - 1560px) / 2 + 12px)));
}

.homebase-photo::before {
	content: "";
	position: absolute;
	z-index: 1;
	inset: -10% auto -10% -70px;
	width: clamp(100px, 36vw, 220px);
	background:
		radial-gradient(ellipse at 0% 50%, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.99) 28%, rgba(255, 255, 255, 0.93) 46%, rgba(255, 255, 255, 0.68) 63%, rgba(255, 255, 255, 0.28) 78%, transparent 100%),
		linear-gradient(90deg, #ffffff 0%, rgba(255, 255, 255, 0.98) 36%, rgba(255, 255, 255, 0.72) 62%, transparent 100%);
	filter: blur(18px);
	transform: scaleY(1.18);
	pointer-events: none;
}

.homebase-photo img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.testing-section {
	padding: 0;
}

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

.testing-card {
	position: relative;
	display: grid;
	grid-template-columns: 0.9fr 0.7fr 1.2fr;
	min-height: 410px;
	padding: 48px;
	border-right: 1px solid rgba(255, 255, 255, 0.12);
	background: radial-gradient(circle at 70% 40%, rgba(30, 64, 96, 0.42), transparent 45%), linear-gradient(135deg, #06111e 0%, #0b1e30 100%);
}

.testing-card:last-child {
	grid-template-columns: 0.85fr 1.35fr;
	border-right: 0;
}

.testing-copy {
	position: relative;
	z-index: 2;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.testing-copy h2 {
	font-size: clamp(36px, 2.7vw, 56px);
}

.testing-copy p {
	margin: 20px 0 26px;
	color: rgba(255, 255, 255, 0.7);
}

.testing-copy .btn {
	align-self: flex-start;
}

.analysis-visual {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 300px;
	align-self: center;
	overflow: hidden;
	background: radial-gradient(circle at center, rgba(57, 110, 154, 0.3), rgba(6, 17, 30, 0.08) 50%, transparent 20%);
}

.analysis-visual img {
	display: block;
	width: 100%;
	max-width: 250px;
	height: 300px;
	object-fit: contain;
}

.analysis-values {
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 22px;
	padding-left: 22px;
}

.analysis-values div {
	position: relative;
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 12px;
	padding-bottom: 12px;
	font-size: 12px;
	text-transform: uppercase;
}

.analysis-values i {
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 2px;
	background: rgba(255, 255, 255, 0.14);
}

.analysis-values i::after {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: var(--value);
	height: 100%;
	background: var(--color-red);
}

.radar-wrap {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 320px;
}

.radar-chart {
	width: min(100%, 520px);
	overflow: visible;
}

.radar-grid polygon,
.radar-grid line {
	fill: none;
	stroke: rgba(255, 255, 255, 0.22);
	stroke-width: 1.2;
}

.radar-polygon {
	fill: rgba(225, 20, 29, 0.26);
	stroke: var(--color-red);
	stroke-width: 3;
	filter: drop-shadow(0 0 10px rgba(225, 20, 29, 0.2));
}

.radar-points circle {
	fill: var(--color-red);
	stroke: var(--color-white);
	stroke-width: 2;
	filter: drop-shadow(0 0 6px rgba(225, 20, 29, 0.55));
}

.radar-labels text {
	fill: rgba(255, 255, 255, 0.88);
	font-family: var(--font-display);
	font-size: 17px;
	font-weight: 700;
	text-transform: uppercase;
}

.link-panels-section {
	padding: 0;
	background: var(--color-dark);
}

.link-panels-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.link-panel {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	min-height: 245px;
	overflow: hidden;
	padding: 28px;
	border-right: 1px solid rgba(255, 255, 255, 0.16);
	color: var(--color-white);
	background: var(--color-dark-soft);
	transition: transform var(--transition);
}

.link-panel::before,
.link-panel::after {
	content: "";
	position: absolute;
	inset: 0;
	pointer-events: none;
}

.link-panel::before {
	z-index: 0;
	background-image: var(--panel-image);
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	transform: scale(1.01);
	transition: transform 0.55s ease;
}

.link-panel::after {
	z-index: 1;
	background: linear-gradient(180deg, rgba(3, 12, 20, 0.12) 0%, rgba(3, 12, 20, 0.48) 42%, rgba(3, 12, 20, 0.94) 100%);
	transition: background var(--transition);
}

.link-panel:hover {
	z-index: 2;
	transform: translateY(-5px);
}

.link-panel:hover::before {
	transform: scale(1.06);
}

.link-panel:hover::after {
	background: linear-gradient(180deg, rgba(225, 20, 29, 0.08) 0%, rgba(115, 5, 13, 0.42) 48%, rgba(3, 12, 20, 0.96) 100%);
}

.link-panel span,
.link-panel small,
.link-panel > i {
	position: relative;
	z-index: 2;
}

.link-panel span {
	font-family: var(--font-display);
	font-size: clamp(22px, 1.65vw, 28px);
	font-weight: 800;
	line-height: 0.95;
	text-transform: uppercase;
	transition: color var(--transition);
}

.link-panel:hover span,
.link-panel:hover > i {
	color: var(--color-red);
}

.link-panel small {
	max-width: 220px;
	margin-top: 12px;
	color: rgba(255, 255, 255, 0.78);
}

.link-panel > i {
	margin-top: 20px;
	font-size: 24px;
	transition: color var(--transition), transform var(--transition);
}

.link-panel:hover > i {
	transform: translateX(6px);
}

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

.contact-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.contact-item {
	display: grid;
	grid-template-columns: 68px auto;
	align-items: center;
	padding: 22px 36px;
	border-right: 1px solid var(--color-line);
	transition: color var(--transition), transform var(--transition);
}

.contact-item:last-child {
	border-right: 0;
}

.contact-item:hover {
	color: var(--color-red);
	transform: translateY(-3px);
}

.contact-item > i {
	color: var(--color-red);
	font-size: 42px;
}

.contact-item span {
	display: flex;
	flex-direction: column;
	color: var(--color-text);
}

.contact-item strong {
	font-family: var(--font-display);
	font-size: 18px;
	text-transform: uppercase;
}

.footer {
	padding: 64px 0 24px;
	background: linear-gradient(180deg, #071523 0%, #040c14 100%);
}

.footer-grid {
	display: grid;
	grid-template-columns: 1.35fr repeat(4, 1fr);
	gap: 48px;
}

.footer .brand {
	margin-bottom: 24px;
}

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

.footer h3 {
	margin-bottom: 18px;
	font-size: 21px;
}

.footer-grid > div:not(.footer-brand) {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.footer-grid a {
	font-size: 12px;
	color: rgba(255, 255, 255, 0.62);
	transition: color var(--transition);
}

.footer-grid a:hover {
	color: var(--color-white);
}

.social-links {
	display: flex;
	gap: 10px;
	margin-top: 20px;
}

.social-links a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 50%;
}

.payment-image {
	display: block;
	width: min(100%, 240px);
	height: auto;
	margin-bottom: 4px;
	object-fit: contain;
	object-position: left center;
}

.footer-bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	margin-top: 54px;
	padding-top: 22px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	font-size: 11px;
	color: rgba(255, 255, 255, 0.45);
}

.footer-bottom div {
	display: flex;
	gap: 24px;
}

.footer-bottom a:hover {
	color: var(--color-white);
}

.footer-bottom i {
	color: var(--color-red);
}

.back-to-top {
	position: fixed;
	right: 20px;
	bottom: 20px;
	z-index: 900;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 46px;
	height: 46px;
	border-radius: 4px;
	color: var(--color-white);
	background: var(--color-dark);
	box-shadow: var(--shadow-sm);
	opacity: 0;
	visibility: hidden;
	transform: translateY(10px);
	transition: opacity var(--transition), visibility var(--transition), transform var(--transition);
}

.back-to-top:hover,
.back-to-top:focus {
	color: var(--color-white);
	background: var(--color-red);
}

.back-to-top.active {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.reveal-up,
.reveal-scale {
	opacity: 0;
	transition: opacity 0.75s ease, transform 0.75s ease;
}

.reveal-up {
	transform: translateY(28px);
}

.reveal-scale {
	transform: scale(0.96);
}

.reveal-up.visible,
.reveal-scale.visible {
	opacity: 1;
	transform: none;
}

@keyframes alumniShine {
	0%, 34% { transform: translateX(-75%); }
	66%, 100% { transform: translateX(75%); }
}

@keyframes placeholderShine {
	0%, 30% { transform: translateX(-70%); }
	70%, 100% { transform: translateX(70%); }
}

@keyframes barPulse {
	0% { opacity: 0.78; transform: scaleX(0.94); transform-origin: left center; }
	100% { opacity: 1; transform: scaleX(1); transform-origin: left center; }
}


@media (min-width: 1200px) and (max-width: 1599px) {
	.hero-container {
		padding-right: clamp(32px, 3vw, 48px);
		padding-left: clamp(32px, 3vw, 48px);
	}
}

@media (max-width: 1399px) {
	.header-actions {
		margin-left: 22px;
	}

	.brand {
		width: 102px;
	}

	.navbar ul {
		gap: 22px;
	}

	.header-actions {
		gap: 9px;
	}

	.header-cta {
		padding-right: 14px;
		padding-left: 14px;
	}

	.slider-prev {
		left: -20px;
	}

	.slider-next {
		right: -20px;
	}

	.testing-card {
		padding: 38px;
	}
}

@media (min-width: 768px) and (max-width: 1199px) {
	.hero-container {
		padding-right: clamp(30px, 4vw, 52px);
		padding-left: clamp(30px, 4vw, 52px);
	}
}

@media (max-width: 1199px) {
	.homebase-photo::before {
		display: none;
	}

	.header {
		height: 76px;
	}

	.header.header-scrolled {
		height: 70px;
	}

	.header-inner {
		justify-content: space-between;
		gap: 18px;
	}

	.brand,
	.header-actions {
		position: relative;
		z-index: 1003;
	}

	.brand {
		width: 92px;
		height: 70px;
	}

	.brand img,
	.header.header-scrolled .brand img {
		max-height: 66px;
	}

	.navbar {
		position: fixed;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		z-index: 1002;
		display: none;
		height: 100dvh;
		min-height: 100dvh;
		overflow-x: hidden;
		overflow-y: auto;
		overscroll-behavior: contain;
		-webkit-overflow-scrolling: touch;
		align-items: center;
		justify-content: center;
		margin-left: 0;
		padding: 110px 24px 40px;
		border: 0;
		border-radius: 0;
		background: rgba(3, 11, 19, 0.985);
		box-shadow: none;
		backdrop-filter: blur(16px);
	}

	.navbar.navbar-mobile {
		display: flex;
	}

	.navbar ul {
		width: min(100%, 420px);
		margin: auto 0;
		flex: 0 0 auto;
		flex-direction: column;
		align-items: center;
		gap: 8px;
	}

	.navbar a,
	.header.header-scrolled .navbar a {
		display: block;
		padding: 13px 20px;
		font-size: clamp(28px, 6vw, 44px);
		text-align: center;
	}

	.navbar a::after {
		display: none;
	}

	.mobile-nav-toggle {
		position: relative;
		z-index: 1004;
		display: flex;
	}

	.hero,
	.hero-container {
		min-height: 760px;
	}

	.hero-copy {
		width: min(610px, 56vw);
	}

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

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

	.stat-item:nth-child(n+4) {
		margin-top: 18px;
	}

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

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

	.homebase-photo {
		grid-column: 1 / 3;
	}

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

	.testing-card {
		border-right: 0;
		border-bottom: 1px solid rgba(255, 255, 255, 0.12);
	}

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

@media (max-width: 991px) {
	.header-cta {
		display: none;
	}

	.hero,
	.hero-container {
		min-height: 820px;
	}

	.hero-background {
		background-position: 64% center;
	}

	.hero::before {
		background: linear-gradient(90deg, rgba(2, 9, 16, 0.98) 0%, rgba(2, 9, 16, 0.9) 42%, rgba(2, 9, 16, 0.44) 68%, rgba(2, 9, 16, 0.15) 100%), linear-gradient(180deg, rgba(2, 9, 16, 0.26) 0%, transparent 58%, rgba(2, 9, 16, 0.72) 100%);
	}

	.hero-copy {
		width: min(570px, 68vw);
	}

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

	.recommended-card {
		min-height: 300px;
	}

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

	.contact-item {
		border-right: 0;
		border-bottom: 1px solid var(--color-line);
	}

	.contact-item:last-child {
		border-bottom: 0;
	}
}

@media (min-width: 500px) and (max-width: 768px) {
	.alumni-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.alumni-card {
		min-height: 340px;
	}
}

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

	.homebase-photo {
		grid-column: auto;
		width: calc(100% + 24px);
		margin-right: -12px;
		margin-left: -12px;
	}

	.homebase-photo::before {
		width: clamp(130px, 38vw, 260px);
	}
}

@media (max-width: 767px) {
	.section {
		padding: 58px 0;
	}

	.header-actions {
		gap: 7px;
	}

	.language-btn span {
		display: none;
	}

	.language-switcher {
		gap: 8px;
	}

	.language-btn img {
		width: 20px;
		height: 14px;
	}

	.hero,
	.hero-container {
		min-height: 780px;
	}

	.hero-container {
		align-items: flex-end;
		padding-top: 130px;
		padding-bottom: 118px;
	}

	.hero-background {
		background-position: 67% center;
	}

	.hero::before {
		background: linear-gradient(180deg, rgba(2, 9, 16, 0.28) 0%, rgba(2, 9, 16, 0.18) 26%, rgba(2, 9, 16, 0.72) 57%, rgba(2, 9, 16, 0.98) 100%);
	}

	.hero-copy {
		width: 100%;
	}

	.hero h1 {
		font-size: clamp(62px, 20vw, 94px);
	}

	.hero-copy > p {
		font-size: 24px;
	}

	.hero-actions .btn {
		flex: 1 1 170px;
	}

	.hero-scroll {
		bottom: 18px;
	}

	.section-heading {
		align-items: flex-start !important;
		flex-direction: column;
	}


	.camp-card {
		grid-template-columns: 1fr;
		min-height: 340px;
	}

	.camp-card-media {
		min-height: 165px;
	}


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

	.stat-item {
		grid-template-columns: 40px auto;
		padding: 18px 14px;
	}

	.stat-item::after {
		display: none;
	}

	.stat-item:nth-child(n+3) {
		margin-top: 0;
	}

	.stat-item strong {
		font-size: 36px;
	}

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

	.alumni-card {
		min-height: 210px;
	}

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

	.homebase-photo {
		grid-column: auto;
	}

	.homebase-map,
	.homebase-photo {
		min-height: 230px;
	}

	.testing-card,
	.testing-card:last-child {
		grid-template-columns: 1fr;
		padding: 34px 22px;
	}

	.analysis-visual {
		min-height: 240px;
		margin-top: 28px;
	}

	.analysis-values {
		padding: 22px 0 0;
	}

	.radar-wrap {
		margin-top: 28px;
		overflow: hidden;
	}

	.radar-labels text {
		font-size: 13px;
	}

	.link-panels-grid {
		grid-template-columns: 1fr 1fr;
	}

	.link-panel {
		min-height: 200px;
	}

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

	.footer-brand {
		grid-column: 1 / 3;
	}

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

@media (max-width: 575px) {
	.container-fluid {
		padding-left: 18px;
		padding-right: 18px;
	}

	.brand {
		width: 76px;
	}

	.header-icon {
		width: 30px;
	}

	.header-actions {
		gap: 5px;
		margin-left: auto;
	}

	.language-switcher,
	.currency-switcher {
		gap: 3px;
		font-size: 10px;
	}

	.language-btn img {
		width: 20px;
		height: 14px;
	}

	.currency-btn {
		font-size: 10px;
	}


	.hero,
	.hero-container {
		min-height: 740px;
	}

	.hero-container {
		padding-top: 112px;
		padding-bottom: 110px;
	}

	.hero h1 {
		font-size: clamp(58px, 18vw, 82px);
	}

	.link-panels-grid {
		grid-template-columns: 1fr;
	}

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

	.footer-brand {
		grid-column: auto;
	}

	.footer-bottom div {
		flex-wrap: wrap;
		gap: 12px 20px;
	}
}


@media (min-width: 500px) and (max-width: 768px) {
	.alumni-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.alumni-card {
		min-height: 340px;
	}
}

@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		scroll-behavior: auto !important;
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
	}
}

.link-panel {
	display: grid;
	grid-template-columns: minmax(0, 80%) minmax(44px, 20%);
	grid-template-rows: auto auto;
	align-content: end;
	column-gap: 12px;
	min-height: 250px;
	padding: 30px 28px 24px;
	border-top: 1px solid rgba(255, 255, 255, 0.72);
	border-bottom: 1px solid rgba(255, 255, 255, 0.72);
	transform: none;
}

.link-panel::before {
	transform: scale(1.01);
	filter: saturate(0.9) contrast(1.03);
}

.link-panel::after {
	background:
		linear-gradient(110deg, transparent 34%, rgba(255, 255, 255, 0.14) 48%, transparent 62%) -180% 0 / 220% 100% no-repeat,
		linear-gradient(90deg, rgba(3, 12, 20, 0.82) 0%, rgba(3, 12, 20, 0.48) 52%, rgba(3, 12, 20, 0.18) 100%),
		linear-gradient(180deg, rgba(3, 12, 20, 0.18) 0%, rgba(3, 12, 20, 0.3) 44%, rgba(3, 12, 20, 0.9) 100%);
	animation: link-panel-shimmer 6s ease-in-out infinite;
}

.link-panel:hover {
	transform: none;
}

.link-panel:hover::before {
	transform: scale(1.045);
	filter: saturate(1) contrast(1.06);
}

.link-panel:hover::after {
	background:
		linear-gradient(110deg, transparent 34%, rgba(255, 255, 255, 0.18) 48%, transparent 62%) -180% 0 / 220% 100% no-repeat,
		radial-gradient(circle at 18% 22%, rgba(225, 20, 29, 0.2), transparent 38%),
		linear-gradient(90deg, rgba(3, 12, 20, 0.78) 0%, rgba(3, 12, 20, 0.44) 52%, rgba(3, 12, 20, 0.16) 100%),
		linear-gradient(180deg, rgba(3, 12, 20, 0.15) 0%, rgba(3, 12, 20, 0.28) 44%, rgba(3, 12, 20, 0.88) 100%);
}

.link-panel span {
	grid-column: 1;
	grid-row: 1;
	max-width: 100%;
	font-size: clamp(24px, 1.45vw, 30px);
	line-height: 1;
}

.link-panel small {
	grid-column: 1;
	grid-row: 2;
	max-width: 100%;
	margin-top: 10px;
	font-size: 15px;
	line-height: 1.45;
	color: rgba(255, 255, 255, 0.88);
}

.link-panel > i {
	grid-column: 2;
	grid-row: 1 / 3;
	align-self: end;
	justify-self: end;
	margin: 0;
	padding: 0 0 2px;
	font-size: 26px;
}

@keyframes link-panel-shimmer {
	0%, 34% {
		background-position: 180% 0, 0 0, 0 0;
	}

	66%, 100% {
		background-position: -180% 0, 0 0, 0 0;
	}
}

@media (max-width: 991px) {
	.link-panel {
		min-height: 220px;
	}
}

@media (max-width: 575px) {
	.link-panel {
		min-height: 210px;
		padding: 26px 24px 22px;
	}
}

@media (max-width: 768px) {
	.testing-section {
		padding-bottom: 0;
	}

	.link-panels-section {
		padding: 0;
	}
}
