:root {
	--kayss-yellow: #ffd000;
	--kayss-yellow-deep: #e6bb00;
	--kayss-black: #0a0a0a;
	--kayss-gray: #9a9a9a;
	--kayss-gray-dark: #1a1a1a;
	--kayss-white: #f4f4f4;
	--kayss-header-h: 88px;
}

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

html,
body {
	margin: 0;
	padding: 0;
	min-height: 100%;
	background: var(--kayss-black);
	color: var(--kayss-white);
	font-family: Manrope, system-ui, sans-serif;
}

body {
	-webkit-font-smoothing: antialiased;
}

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

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

.site-header {
	position: relative;
	z-index: 20;
	background: var(--kayss-black);
	border-bottom: 1px solid rgba(255, 208, 0, 0.18);
}

.site-header--overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0) 100%);
	border-bottom: 0;
}

.site-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: var(--kayss-header-h);
	padding: 0 7vw;
	gap: 24px;
	max-width: 100%;
}

.site-logo {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	min-width: 0;
}

.site-logo__mark {
	display: grid;
	place-items: center;
	width: 40px;
	height: 40px;
	background: var(--kayss-yellow);
	color: var(--kayss-black);
	font-family: Oswald, sans-serif;
	font-weight: 700;
	font-size: 1.35rem;
	letter-spacing: 0.02em;
}

.site-logo__text {
	font-family: Oswald, sans-serif;
	font-size: clamp(1rem, 2.4vw, 1.35rem);
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--kayss-white);
	white-space: nowrap;
}

.site-logo .custom-logo {
	height: 44px;
	width: auto;
	max-width: 180px;
	object-fit: contain;
}

.site-menu-toggle {
	display: none;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 44px;
	height: 44px;
	margin-left: auto;
	padding: 0;
	border: 1px solid rgba(255, 208, 0, 0.35);
	background: rgba(10, 10, 10, 0.55);
	color: var(--kayss-white);
	cursor: pointer;
	z-index: 40;
}

.site-menu-toggle__bars {
	position: relative;
	display: block;
	width: 22px;
	height: 2px;
	background: var(--kayss-yellow);
	transition: background 0.2s ease;
}

.site-menu-toggle__bars::before,
.site-menu-toggle__bars::after {
	content: "";
	position: absolute;
	left: 0;
	width: 22px;
	height: 2px;
	background: var(--kayss-yellow);
	transition: transform 0.2s ease, top 0.2s ease;
}

.site-menu-toggle__bars::before {
	top: -7px;
}

.site-menu-toggle__bars::after {
	top: 7px;
}

.site-menu-toggle__label {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

body.is-menu-open .site-menu-toggle__bars {
	background: transparent;
}

body.is-menu-open .site-menu-toggle__bars::before {
	top: 0;
	transform: rotate(45deg);
}

body.is-menu-open .site-menu-toggle__bars::after {
	top: 0;
	transform: rotate(-45deg);
}

body.is-menu-open .site-header,
body.is-menu-open .site-header--overlay {
	position: fixed;
	inset: 0;
	z-index: 50;
	height: 100%;
	min-height: 100dvh;
	background: var(--kayss-black);
	border-bottom: 0;
}

body.is-menu-open {
	overflow: hidden;
}

.site-nav {
	display: flex;
	gap: 28px;
	font-size: 0.82rem;
	font-weight: 600;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--kayss-gray);
}

.site-nav a:hover,
.site-nav a:focus-visible {
	color: var(--kayss-yellow);
}

.hero {
	position: relative;
	min-height: 100vh;
	min-height: 100dvh;
	overflow: hidden;
	display: flex;
	align-items: center;
}

.hero__slides,
.hero__slide,
.hero__overlay {
	position: absolute;
	inset: 0;
}

.hero__slide {
	background-position: center;
	background-size: cover;
	opacity: 0;
	transform: scale(1.08);
	transition: opacity 1.1s ease, transform 8s ease-out;
}

.hero__slide.is-active {
	opacity: 1;
	transform: scale(1);
	z-index: 1;
}

.hero__overlay {
	z-index: 2;
	background:
		linear-gradient(90deg, rgba(10, 10, 10, 0.82) 0%, rgba(10, 10, 10, 0.5) 48%, rgba(10, 10, 10, 0.28) 100%),
		linear-gradient(180deg, rgba(10, 10, 10, 0.25) 0%, rgba(10, 10, 10, 0.55) 100%);
}

.hero__content {
	position: relative;
	z-index: 3;
	width: min(760px, 100%);
	padding: 40px 7vw 96px;
}

.hero__brand {
	margin: 0 0 10px;
	font-family: Oswald, sans-serif;
	font-size: clamp(1.6rem, 3.6vw, 2.4rem);
	font-weight: 700;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--kayss-white);
	text-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.hero__eyebrow {
	margin: 0 0 18px;
	color: var(--kayss-yellow);
	font-size: 0.8rem;
	font-weight: 700;
	letter-spacing: 0.28em;
	text-transform: uppercase;
}

.hero__title {
	margin: 0 0 18px;
	font-family: Oswald, sans-serif;
	font-size: clamp(2.6rem, 6.4vw, 5.2rem);
	font-weight: 700;
	line-height: 0.95;
	letter-spacing: 0.02em;
	text-transform: uppercase;
	text-shadow: 0 10px 40px rgba(0, 0, 0, 0.45);
	overflow-wrap: break-word;
}

.hero__lead {
	margin: 0 0 36px;
	max-width: 34rem;
	color: #d0d0d0;
	font-size: clamp(1rem, 1.6vw, 1.2rem);
	line-height: 1.6;
}

.hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
}

.hero__address {
	margin: 22px 0 0;
	max-width: 34rem;
	font-size: 0.95rem;
	line-height: 1.5;
}

.hero__address .kayss-maps-link {
	color: var(--kayss-yellow, #ffd000);
	text-decoration: none;
	text-underline-offset: 3px;
}

.hero__address .kayss-maps-link:hover,
.hero__address .kayss-maps-link:focus-visible {
	text-decoration: underline;
}

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 200px;
	padding: 16px 28px;
	border: 2px solid transparent;
	font-family: Oswald, sans-serif;
	font-size: 1.05rem;
	font-weight: 600;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.btn--primary {
	background: var(--kayss-yellow);
	color: var(--kayss-black);
	box-shadow: 0 10px 30px rgba(255, 208, 0, 0.22);
}

.btn--primary:hover,
.btn--primary:focus-visible {
	background: var(--kayss-yellow-deep);
	transform: translateY(-2px);
}

.btn--ghost {
	background: transparent;
	border-color: var(--kayss-yellow);
	color: var(--kayss-yellow);
}

.btn--ghost:hover,
.btn--ghost:focus-visible {
	background: var(--kayss-yellow);
	color: var(--kayss-black);
	transform: translateY(-2px);
}

.hero__controls {
	position: absolute;
	z-index: 4;
	left: 7vw;
	right: 7vw;
	bottom: 28px;
	display: flex;
	align-items: center;
	gap: 18px;
}

.hero__dots {
	display: flex;
	gap: 10px;
}

.hero__dot {
	width: 42px;
	height: 3px;
	padding: 0;
	border: 0;
	background: rgba(154, 154, 154, 0.7);
	cursor: pointer;
}

.hero__dot.is-active {
	background: var(--kayss-yellow);
}

.hero__arrow {
	display: grid;
	place-items: center;
	width: 42px;
	height: 42px;
	border: 1px solid rgba(154, 154, 154, 0.55);
	background: rgba(10, 10, 10, 0.45);
	color: var(--kayss-white);
	font-size: 1.6rem;
	line-height: 1;
	cursor: pointer;
}

.hero__arrow:hover,
.hero__arrow:focus-visible {
	border-color: var(--kayss-yellow);
	color: var(--kayss-yellow);
}

.page-shell {
	min-height: calc(100vh - 160px);
	padding: 72px 7vw;
	background:
		radial-gradient(circle at top left, rgba(255, 208, 0, 0.08), transparent 36%),
		var(--kayss-black);
}

.page-card {
	max-width: 720px;
}

.page-card--wide {
	max-width: 820px;
}

.page-card--shop {
	max-width: 1100px;
}

.page-card__eyebrow {
	margin: 0 0 12px;
	color: var(--kayss-yellow);
	letter-spacing: 0.22em;
	text-transform: uppercase;
	font-size: 0.78rem;
	font-weight: 700;
}

.page-card h1 {
	margin: 0 0 20px;
	font-family: Oswald, sans-serif;
	font-size: clamp(2.2rem, 5vw, 3.6rem);
	text-transform: uppercase;
}

.page-card__content {
	color: var(--kayss-gray);
	font-size: 1.05rem;
	line-height: 1.7;
	margin-bottom: 32px;
	overflow-wrap: break-word;
}

.page-card__content p {
	margin: 0 0 1em;
}

.about-facts {
	list-style: none;
	margin: 0 0 32px;
	padding: 0;
	border: 1px solid rgba(255, 208, 0, 0.22);
	background: rgba(255, 255, 255, 0.03);
}

.about-facts li {
	display: grid;
	gap: 4px;
	padding: 14px 18px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.06);
	color: var(--kayss-white);
}

.about-facts li:last-child {
	border-bottom: 0;
}

.about-facts strong {
	color: var(--kayss-yellow);
	font-size: 0.72rem;
	letter-spacing: 0.18em;
	text-transform: uppercase;
}

.about-facts a {
	color: var(--kayss-white);
}

.site-footer {
	padding: 24px 7vw 32px;
	border-top: 1px solid #222;
	color: var(--kayss-gray);
	font-size: 0.88rem;
}

@media (max-width: 900px) {
	.site-menu-toggle {
		display: inline-flex;
	}

	.site-nav {
		position: absolute;
		top: var(--kayss-header-h);
		right: 0;
		bottom: 0;
		left: 0;
		z-index: 30;
		display: none;
		flex-direction: column;
		justify-content: flex-start;
		align-items: stretch;
		gap: 0;
		width: auto;
		max-width: none;
		min-width: 0;
		margin: 0;
		padding: 8px 22px 32px;
		background: var(--kayss-black);
		font-size: 1.05rem;
		letter-spacing: 0.12em;
	}

	.site-nav a {
		display: block;
		width: 100%;
		padding: 14px 0;
		border-bottom: 1px solid rgba(255, 255, 255, 0.08);
		color: var(--kayss-white);
	}

	body.is-menu-open .site-nav {
		display: flex;
	}
}

@media (max-width: 720px) {
	.site-header__inner {
		padding: 0 22px;
	}

	.site-logo__text {
		font-size: 1.05rem;
		letter-spacing: 0.06em;
	}

	.hero__content {
		padding: 32px 22px 110px;
	}

	.hero__title {
		font-size: clamp(2.05rem, 8.2vw, 2.55rem);
		letter-spacing: 0;
		line-height: 1.04;
	}

	.hero__actions {
		flex-direction: column;
		align-items: stretch;
	}

	.btn {
		width: 100%;
		min-width: 0;
		flex: none;
	}

	.page-shell {
		padding: 48px 22px;
	}
}


@media (prefers-reduced-motion: reduce) {
	.hero__slide {
		transition: opacity 0.4s ease;
		transform: none;
	}
}
