:root {
	--grenden-black: #050505;
	--grenden-white: #ffffff;
	--grenden-line: #9b9b9b;
	--grenden-green: #34ff26;
	--grenden-glow: #f4fff0;
}

html {
	background: var(--grenden-white);
}

body.grenden-coming-soon-page {
	margin: 0;
	background: var(--grenden-white);
	color: var(--grenden-black);
	font-family: 'Manrope', Helvetica, Arial, sans-serif;
}

.grenden-coming-soon-page * {
	box-sizing: border-box;
}

.grenden-coming-soon-page ::selection {
	background: var(--grenden-black);
	color: var(--grenden-white);
}

.grenden-coming-soon-page .screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(1px, 1px, 1px, 1px);
	white-space: nowrap;
}

.coming-soon-shell {
	width: min(100%, 1488px);
	min-height: 100vh;
	margin: 0 auto;
	padding: 32px 44px 86px;
	background:
		radial-gradient(circle at 72% 93%, rgba(211, 255, 201, 0.78) 0, rgba(224, 255, 217, 0.46) 18rem, rgba(244, 255, 240, 0) 34rem),
		var(--grenden-white);
}

.coming-soon-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	margin-bottom: 30px;
	padding: 0 12px;
}

.coming-soon-logo {
	display: inline-flex;
	align-items: center;
	width: clamp(150px, 14.2vw, 182px);
	text-decoration: none;
}

.coming-soon-logo img {
	display: block;
	width: 100%;
	height: auto;
}

.coming-soon-header p {
	margin: 0;
	color: #555555;
	font-family: 'Domine', Georgia, 'Times New Roman', serif;
	font-size: 0.95rem;
	line-height: 1.2;
	white-space: nowrap;
}

.coming-soon-carousel {
	position: relative;
	overflow: clip;
	width: 100%;
	aspect-ratio: 1400 / 721;
	border-radius: 10px;
	background: #e8e8e8;
	touch-action: pan-y;
}

.coming-soon-slides,
.coming-soon-slide {
	position: absolute;
	inset: 0;
	margin: 0;
}

.coming-soon-slide {
	opacity: 0;
	transition: opacity 900ms ease;
}

.coming-soon-slide.is-active {
	opacity: 1;
	z-index: 1;
}

.coming-soon-slide img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.coming-soon-slide::after {
	content: "";
	position: absolute;
	inset: auto 0 0;
	height: 34%;
	background: linear-gradient(0deg, rgba(0, 0, 0, 0.42), rgba(0, 0, 0, 0));
	pointer-events: none;
}

.coming-soon-carousel-meta {
	position: absolute;
	left: clamp(22px, 3.8vw, 52px);
	bottom: clamp(22px, 3.5vw, 45px);
	right: clamp(22px, 3.8vw, 52px);
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	pointer-events: none;
}

.coming-soon-carousel-captions {
	min-width: 0;
}

.coming-soon-slide-caption {
	display: none;
	align-items: center;
	gap: 18px;
	color: var(--grenden-white);
	text-shadow: 0 1px 16px rgba(0, 0, 0, 0.24);
}

.coming-soon-slide-caption.is-active {
	display: flex;
}

.coming-soon-slide-caption strong {
	font-size: clamp(1.05rem, 1.65vw, 1.7rem);
	line-height: 1;
}

.coming-soon-slide-caption span {
	display: flex;
	align-items: center;
	gap: 18px;
	font-size: clamp(0.82rem, 1vw, 1rem);
	line-height: 1;
}

.coming-soon-slide-caption span::before {
	content: "";
	width: 1px;
	height: 35px;
	background: currentColor;
	opacity: 0.9;
}

.coming-soon-carousel-dots {
	display: flex;
	flex: 0 0 auto;
	align-items: center;
	gap: 10px;
	padding: 8px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.14);
	backdrop-filter: blur(14px);
	pointer-events: auto;
}

.coming-soon-carousel-dot {
	position: relative;
	width: 8px;
	height: 8px;
	padding: 0;
	border: 0;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.58);
	cursor: pointer;
	transition: background-color 180ms ease, transform 180ms ease, width 180ms ease;
}

.coming-soon-carousel-dot.is-active {
	width: 22px;
	background: var(--grenden-white);
}

.coming-soon-carousel-dot:hover,
.coming-soon-carousel-dot:focus-visible {
	background: var(--grenden-white);
	transform: scale(1.08);
	outline: none;
}

.coming-soon-carousel-dot::after {
	content: attr(data-tooltip);
	position: absolute;
	right: 0;
	bottom: calc(100% + 12px);
	width: max-content;
	max-width: 240px;
	padding: 7px 10px;
	border-radius: 999px;
	background: rgba(5, 5, 5, 0.84);
	color: var(--grenden-white);
	font-size: 0.72rem;
	font-weight: 600;
	line-height: 1.2;
	opacity: 0;
	pointer-events: none;
	transform: translateY(4px);
	transition: opacity 160ms ease, transform 160ms ease;
	white-space: nowrap;
}

.coming-soon-carousel-dot:hover::after,
.coming-soon-carousel-dot:focus-visible::after {
	opacity: 1;
	transform: translateY(0);
}

.coming-soon-tagline {
	display: grid;
	place-items: center;
	min-height: clamp(220px, 22vw, 292px);
	padding: 54px 24px 62px;
	border-bottom: 1px solid var(--grenden-line);
}

.coming-soon-tagline h1 {
	max-width: 1160px;
	margin: 0;
	font-family: 'Domine', Georgia, 'Times New Roman', serif;
	font-size: clamp(2.05rem, 3vw, 3.35rem);
	font-weight: 400;
	line-height: 1.02;
	text-align: center;
	letter-spacing: 0;
}

.coming-soon-contact {
	display: grid;
	grid-template-columns: 1fr 1.35fr;
	gap: clamp(36px, 9vw, 140px);
	padding: 66px 44px 16px;
}

.coming-soon-contact h2 {
	margin: 0;
	font-size: clamp(1.9rem, 2.4vw, 2.55rem);
	font-weight: 800;
	line-height: 1;
	letter-spacing: 0;
}

.coming-soon-contact-list {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: clamp(42px, 7vw, 92px);
}

.coming-soon-contact article {
	min-width: 0;
}

.coming-soon-contact h3,
.coming-soon-contact p,
.coming-soon-contact a {
	margin: 0;
	color: var(--grenden-black);
	font-size: 0.95rem;
	line-height: 1.45;
	letter-spacing: 0;
}

.coming-soon-contact h3 {
	margin-bottom: 14px;
	font-size: 1.12rem;
	font-weight: 800;
	line-height: 1.15;
}

.coming-soon-contact a {
	display: block;
	text-decoration: none;
}

.coming-soon-contact a:hover,
.coming-soon-contact a:focus-visible {
	text-decoration: underline;
	text-underline-offset: 0.18em;
}

@media (max-width: 760px) {
	.coming-soon-shell {
		width: 100%;
		padding: 32px 20px 54px;
	}

	.coming-soon-header {
		margin-bottom: 32px;
		gap: 16px;
		padding: 0 11px;
	}

	.coming-soon-logo {
		width: 165px;
	}

	.coming-soon-header p {
		color: #555555;
		font-size: 0.64rem;
	}

	.coming-soon-carousel {
		aspect-ratio: 336 / 430;
	}

	.coming-soon-slide img {
		object-position: 50% 50%;
	}

	.coming-soon-slide-caption,
	.coming-soon-slide-caption.is-active {
		display: block;
	}

	.coming-soon-slide-caption:not(.is-active) {
		display: none;
	}

	.coming-soon-slide-caption strong {
		display: block;
		margin-bottom: 4px;
		font-size: 1.18rem;
		line-height: 1.15;
	}

	.coming-soon-slide-caption span {
		display: block;
		font-size: 0.82rem;
		line-height: 1.28;
	}

	.coming-soon-slide-caption span::before {
		display: none;
	}

	.coming-soon-carousel-meta {
		left: 16px;
		right: 16px;
		bottom: 28px;
		align-items: flex-end;
		gap: 14px;
	}

	.coming-soon-carousel-dots {
		gap: 7px;
		padding: 7px;
	}

	.coming-soon-carousel-dot {
		width: 6px;
		height: 6px;
	}

	.coming-soon-carousel-dot.is-active {
		width: 16px;
	}

	.coming-soon-carousel-dot::after {
		display: none;
	}

	.coming-soon-tagline {
		min-height: 390px;
		padding: 52px 4px 48px;
	}

	.coming-soon-tagline h1 {
		font-size: 2.2rem;
		line-height: 0.97;
	}

	.coming-soon-contact {
		display: block;
		padding: 40px 42px 8px;
	}

	.coming-soon-contact h2 {
		margin-bottom: 42px;
		font-size: 2rem;
	}

	.coming-soon-contact-list {
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 22px;
	}

	.coming-soon-contact h3 {
		font-size: 1rem;
	}

	.coming-soon-contact h3,
	.coming-soon-contact p,
	.coming-soon-contact a {
		font-size: 0.82rem;
	}
}

@media (max-width: 380px) {
	.coming-soon-contact-list {
		grid-template-columns: 1fr;
		gap: 52px;
	}
}
