* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html,
body {
	width: 100%;
	min-height: 100%;
}

body {
	display: grid;
	place-items: center;
	min-height: 100dvh;
	min-height: 100svh;
	min-height: 100vh;
	overflow: hidden;
	background-image: url("lucento_comingsoon.jpg");
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	color: #f5ecdc;
}

.hero {
	width: min(92vw, 1400px);
	padding: 16px;
	text-align: center;
}

.coming-soon {
	font-family: "Cinzel", Georgia, "Times New Roman", serif;
	font-size: clamp(2.8rem, 11vw, 10rem);
	font-weight: 500;
	letter-spacing: clamp(0.08em, 0.9vw, 0.28em);
	line-height: 1;
	padding-top: 120px;
	color: #f7ead5;
	text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
	text-wrap: balance;
}

@media (max-width: 640px) {
	.coming-soon {
		letter-spacing: 0.08em;
	}
}
