/* ==========================================================================
   Homepage Hero
   ========================================================================== */

.flamtees-hero {
	width: 100%;
	background: var(--flamtees-color-background);
}

.flamtees-hero__media {
	position: relative;
	width: 100%;
	height: clamp(540px, 68vh, 680px);
	overflow: hidden;
	background: var(--flamtees-color-surface);
}

.flamtees-hero__video,
.flamtees-hero__image {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.flamtees-hero__placeholder {
	display: grid;
	width: 100%;
	height: 100%;
	min-height: 620px;
	place-items: center;
	padding: 24px;
	text-align: center;
	color: var(--flamtees-color-muted);
}

.flamtees-hero__overlay {
	position: absolute;
	inset: 0;
	z-index: 1;
	background:
		linear-gradient(
			90deg,
			rgba(0, 0, 0, 0.72) 0%,
			rgba(0, 0, 0, 0.42) 42%,
			rgba(0, 0, 0, 0.08) 100%
		);
}

.flamtees-hero__content {
	position: absolute;
	top: auto;
	bottom: clamp(28px, 5vh, 48px);
	left: 50%;
	z-index: 2;
	width: min(100% - 96px, var(--flamtees-container-width));
	padding-left: 48px;
	padding-right: 48px;
	transform: translateX(-50%);
	color: #ffffff;
}

.flamtees-hero__title {
	width: min(680px, 100%);
	max-width: 680px;
	margin: 0 0 18px;
	font-size: clamp(2.5rem, 6vw, 5.8rem);
	font-weight: 800;
	line-height: 0.95;
	letter-spacing: -0.04em;
	text-align: center;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.50);
}

@media (min-width: 769px) {
	.flamtees-hero__title {
		margin-left: -60px;
	}
}

.flamtees-hero__description {
	width: min(560px, 100%);
	max-width: 560px;
	margin: 0 0 28px;
	padding: 0;
	font-size: clamp(1rem, 1.6vw, 1.25rem);
	line-height: 1.65;
	text-align: center;
	color: rgba(255, 255, 255, 0.50);
}

.flamtees-hero__buttons {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 12px;
	width: min(560px, 100%);
}

.flamtees-hero__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	padding: 13px 24px;
	border: 1px solid #ffffff;
	font-size: 0.88rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	transition:
		background-color var(--flamtees-transition-fast),
		color var(--flamtees-transition-fast),
		transform var(--flamtees-transition-fast);
}

.flamtees-hero__button:hover {
	transform: translateY(-2px);
}

.flamtees-hero__button--primary {
	background: transparent;
	color: #ffffff;
}

.flamtees-hero__button--primary:hover {
	background: #ffffff;
	color: #111111;
}

.flamtees-hero__button--secondary {
	background: transparent;
	color: #ffffff;
}

.flamtees-hero__button--secondary:hover {
	background: #ffffff;
	color: #111111;
}

/* ==========================================================================
   Category Circles
   ========================================================================== */

.flamtees-category-circles {
	padding: 30px 0;
	background: var(--flamtees-color-background);
}

.flamtees-category-circles__title {
	margin: 0 0 22px;
	text-align: center;
	font-size: clamp(1.5rem, 3vw, 2.2rem);
	font-weight: 700;
}

.flamtees-category-circles__grid {
	display: flex;
	justify-content: center;
	align-items: flex-start;
	flex-wrap: wrap;
	gap: 22px;
}

.flamtees-category-circle {
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 100px;
	text-align: center;
}

.flamtees-category-circle__media {
	display: block;
	width: 80px;
	height: 80px;
	overflow: hidden;
	border: 1px solid var(--flamtees-color-border);
	border-radius: 50%;
	background: var(--flamtees-color-surface);
	transition:
		transform var(--flamtees-transition-fast),
		box-shadow var(--flamtees-transition-fast);
}

.flamtees-category-circle:hover .flamtees-category-circle__media {
	transform: translateY(-3px);
	box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
}

.flamtees-category-circle__image {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.flamtees-category-circle__placeholder {
	display: block;
	width: 100%;
	height: 100%;
	background: var(--flamtees-color-surface);
}

.flamtees-category-circle__title {
	margin-top: 8px;
	font-size: 0.78rem;
	font-weight: 600;
	line-height: 1.3;
}

/* ==========================================================================
   Tablet
   ========================================================================== */

@media (max-width: 1024px) {
	.flamtees-hero__content {
		width: calc(100% - 64px);
		padding-left: 32px;
		padding-right: 32px;
	}

	.flamtees-category-circles {
		padding: 28px 0;
	}

	.flamtees-category-circles__grid {
		gap: 20px;
	}
}

/* ==========================================================================
   Mobile
   ========================================================================== */

@media (max-width: 768px) {
	.flamtees-hero__media {
		height: auto;
		aspect-ratio: 16 / 9;
	}

	.flamtees-hero__video {
		object-fit: contain;
	}

	.flamtees-hero__overlay {
		background:
			linear-gradient(
				180deg,
				rgba(0, 0, 0, 0.12) 0%,
				rgba(0, 0, 0, 0.76) 75%,
				rgba(0, 0, 0, 0.9) 100%
			);
	}

	.flamtees-hero__content {
		top: auto;
		bottom: 18px;
		left: 50%;
		width: calc(100% - 16px);
		padding-left: 0;
		padding-right: 0;
		transform: translateX(-50%);
	}

	.flamtees-hero__title {
		max-width: 100%;
		margin-bottom: 8px;
		font-size: clamp(1rem, 5vw, 1.25rem);
		line-height: 0.92;
		letter-spacing: -0.035em;
		white-space: nowrap;
	}

	.flamtees-hero__description {
		display: block;
		max-width: 100%;
		margin-bottom: 12px;
		overflow: visible;
		font-size: 0.56rem;
		line-height: 1.35;
		letter-spacing: -0.015em;
		-webkit-line-clamp: unset;
	}

	.flamtees-hero__buttons {
		flex-direction: row;
		align-items: center;
		gap: 8px;
	}

	.flamtees-hero__button {
		flex: 1;
		width: auto;
		min-height: 38px;
		padding: 9px 8px;
		font-size: 0.68rem;
	}

	.flamtees-category-circles {
		padding: 24px 0;
	}

	.flamtees-category-circles__title {
		margin-bottom: 18px;
	}

	.flamtees-category-circles__grid {
		flex-wrap: nowrap;
		gap: 4px;
	}

	.flamtees-category-circle {
		flex: 1 1 0;
		width: auto;
		min-width: 0;
	}

	.flamtees-category-circle__media {
		width: clamp(48px, 14vw, 58px);
		height: clamp(48px, 14vw, 58px);
	}

	.flamtees-category-circle__title {
		width: 100%;
		margin-top: 6px;
		overflow: hidden;
		font-size: clamp(0.5rem, 2.35vw, 0.62rem);
		line-height: 1.15;
		white-space: nowrap;
		text-overflow: ellipsis;
	}
}
