/* INTRODUCTION / HERO */
.hero {
	min-height: 80vh;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 4rem 2.5rem 3rem;
	border-bottom: 0.5px solid var(--border);
	position: relative;
	overflow: hidden;
}

.hero::before {
	content: '';
	position: absolute;
	inset: 0;
	background: radial-gradient(ellipse 70% 55% at 50% 55%,
			rgba(37, 99, 235, 0.07) 0%,
			rgba(140, 34, 50, 0.05) 50%,
			transparent 75%);
	pointer-events: none;
	animation: pulse 4s ease-in-out infinite;
	z-index: 0;
}

.hero-tag {
	font-size: 12px;
	font-weight: 500;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	margin-bottom: 1.5rem;
	background: linear-gradient(90deg, #b8924a, #d4a96a, #b8924a);
	background-size: 200% auto;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	animation: shimmer 3s linear infinite;
	display: inline-block;
	position: relative;
	z-index: 1;
	transition: all 0.5s ease;
}

.hero-tag:hover {
	transform: scale(1.05);
	filter: brightness(1.1);
}

.hero h1 {
	font-family: var(--serif);
	font-size: clamp(2.8rem, 6vw, 5rem);
	line-height: 1.08;
	letter-spacing: -0.025em;
	margin-bottom: 1.5rem;
	max-width: 780px;
	animation: fadeUp 0.8s ease 0.2s both;
	position: relative;
	z-index: 1;
	transition: all 0.3s ease;
}

.hero h1 em {
	font-style: italic;
	background: linear-gradient(135deg, var(--ss), var(--nb), var(--rose), var(--purple), var(--auto));
	background-size: 200% 200%;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	animation: rotateGradient 8s ease infinite;
}

.hero-sub {
	font-size: 1.1rem;
	color: var(--mute);
	max-width: 580px;
	margin: 0 auto 2.25rem;
	line-height: 1.8;
	animation: fadeUp 0.8s ease 0.4s both;
	position: relative;
	z-index: 1;
}

.hero-services {
	position: relative;
	z-index: 1;
}

.hero-svc-card {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.35rem;
	padding: 1rem 1.5rem;
	border-radius: var(--radius-lg);
	border: 1px solid;
	text-decoration: none;
	transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
	min-width: 170px;
	text-align: center;
	position: relative;
	overflow: hidden;
}

.hero-svc-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
	transition: left 0.5s ease;
	z-index: 1;
}

.hero-svc-card:hover::before {
	left: 100%;
}

.hero-svc-card:hover {
	transform: translateY(-12px) scale(1.05);
	box-shadow: 0 16px 35px rgba(0, 0, 0, 0.12);
}

.hero-svc-label {
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 0.02em;
}

.hero-svc-sub {
	font-size: 11px;
	color: var(--mute);
	line-height: 1.4;
}

@media (max-width: 600px) {
	.hero {
		min-height: 70vh;
		padding: 3rem 1.25rem 2.5rem;
	}
}

@media (max-width: 480px) {
	.hero {
		padding: 2.5rem 1rem;
	}
}