/**
 * Homepage â€” hero.
 */

 .utf-hero {
	position: relative;
	height: 100vh;
	height: 100dvh;
	min-height: 100vh;
	overflow: hidden;
}

.utf-hero__banner {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.utf-hero__content {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	height: 100%;
	padding-block: calc(var(--header-height) + 1rem) var(--utf-section-spacing-sm);
	padding-inline: var(--utf-content-padding);
	width: 100%;
	max-width: var(--utf-site-max);
	margin-inline: auto;
	box-sizing: border-box;
}

.admin-bar.utf-is-home .utf-hero__content {
	padding-top: calc(var(--header-height) + 32px + 1rem);
}

@media (max-width: 782px) {
	.admin-bar.utf-is-home .utf-hero__content {
		padding-top: calc(var(--header-height) + 46px + 1rem);
	}
}

.utf-hero__title {
	display: flex;
	flex-direction: column;
	margin: 0 0 1.25rem;
	color: var(--utf-accent);
	line-height: 1;
	font-weight: 300;
}

.utf-hero__title-main,
.utf-hero__title-drawn {
	font-size: clamp(3.25rem, calc(6vw + 1.5rem), 6.5rem);
	letter-spacing: -0.03em;
}

.utf-hero__lead {
	display: flex;
	flex-direction: column;
	gap: 0;
	margin: 0 0 2rem;
	font-size: clamp(1rem, 2vw, 1.2rem);
	line-height: 1.35;
	color: rgba(255, 255, 255, 0.88);
}

.utf-hero__lead-line {
	display: block;
	margin: 0;
}

.utf-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
}

.utf-hero__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 52px;
	padding: 0.7rem 1.75rem;
	border: 1px solid var(--utf-accent);
	border-radius: 12px;
	background: transparent;
	color: #fff;
	font-size: clamp(1rem, 1.5vw, 1.15rem);
	font-weight: 500;
	text-decoration: none;
	transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.utf-hero__btn:hover {
	background: #cb9d76;
}

.utf-hero__btn--contact {
	border: none;
	border-radius: 12px;
	padding: 0.85rem 2.25rem;
	background: rgb(255 255 255 / 13%);
	color: var(--utf-accent);
	backdrop-filter: blur(6px);
}

.utf-hero__btn--contact:hover {
	background: rgb(255 255 255 / 40%);
	color: var(--utf-accent);
}
