:root{
	--primary-color: #B77466;
	--secondary-brand-color: #957C62;
	--accent-color: #FFE1AF;
	--bg-color: #FAF2EA;
	--text-color: #656562;
	--white-color: #FFFFFF;
	--accent-font: "Sora", sans-serif;
}

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

html,
body{
	width: 100%;
	overflow-x: clip;
}

body{
	font-family: var(--accent-font);
	font-size: 17px;
	font-weight: 400;
	line-height: 1.6em;
	color: var(--text-color);
	background: var(--bg-color);
	min-height: 100vh;
}

/* Language Switcher */
.lang-switcher{
	position: fixed;
	top: 24px;
	right: 24px;
	display: flex;
	gap: 8px;
	z-index: 100;
}

.lang-btn{
	display: flex;
	align-items: center;
	gap: 8px;
	font-family: var(--accent-font);
	font-size: 14px;
	font-weight: 600;
	color: var(--white-color);
	background: rgba(62, 43, 38, 0.55);
	backdrop-filter: blur(6px);
	-webkit-backdrop-filter: blur(6px);
	border: 1px solid transparent;
	border-radius: 100px;
	padding: 10px 16px;
	cursor: pointer;
	transition: all 0.3s ease-in-out;
}

.lang-btn img{
	width: 18px;
	height: 18px;
	border-radius: 50%;
	object-fit: cover;
}

.lang-btn:hover{
	background: rgba(62, 43, 38, 0.75);
}

.lang-btn.active{
	border-color: var(--accent-color);
	background: var(--primary-color);
}

/* Layout */
.coming-soon{
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	min-height: 100vh;
	padding: 40px 20px 20px;
}

.cs-card{
	position: relative;
	display: grid;
	grid-template-columns: 1.15fr 0.85fr;
	max-width: 1140px;
	width: 100%;
	background: linear-gradient(135deg, var(--primary-color) 0%, #a3625a 60%, #8f544e 100%);
	border-radius: 28px;
	overflow: hidden;
	box-shadow: 0 30px 80px rgba(62, 43, 38, 0.25);
}

.cs-content{
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	padding: 64px 56px;
}

.cs-logo{
	max-height: 84px;
	width: auto;
	margin-bottom: 36px;
}

.cs-badge{
	display: inline-block;
	font-size: 14px;
	font-weight: 500;
	color: var(--accent-color);
	border: 1px solid rgba(255, 225, 175, 0.5);
	border-radius: 100px;
	padding: 9px 18px;
	margin-bottom: 24px;
}

.cs-content h1{
	font-size: 46px;
	font-weight: 700;
	line-height: 1.15em;
	color: var(--white-color);
	margin-bottom: 20px;
}

.cs-content p{
	color: rgba(255, 255, 255, 0.9);
	margin-bottom: 28px;
	max-width: 52ch;
}

.cs-services{
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 32px;
}

.cs-services li{
	font-size: 14px;
	font-weight: 600;
	color: var(--primary-color);
	background: var(--accent-color);
	border-radius: 100px;
	padding: 9px 18px;
}

.cs-contact{
	font-size: 16px;
	font-weight: 600;
	color: var(--white-color);
	text-decoration: none;
	background: rgba(62, 43, 38, 0.35);
	border: 1px solid rgba(255, 225, 175, 0.5);
	border-radius: 100px;
	padding: 14px 24px;
	transition: all 0.3s ease-in-out;
}

.cs-contact:hover{
	color: var(--primary-color);
	background: var(--accent-color);
}

/* Photo */
.cs-photo{
	position: relative;
	min-height: 420px;
}

.cs-photo img{
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: top;
}

.cs-photo::after{
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, #a3625a 0%, transparent 22%);
}

.cs-photo-caption{
	position: absolute;
	left: 24px;
	right: 24px;
	bottom: 24px;
	display: flex;
	flex-direction: column;
	gap: 2px;
	color: var(--white-color);
	background: rgba(62, 43, 38, 0.55);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	border-radius: 16px;
	padding: 14px 20px;
	z-index: 2;
}

.cs-photo-caption strong{
	font-size: 17px;
	font-weight: 700;
}

.cs-photo-caption span{
	font-size: 13px;
	color: var(--accent-color);
}

/* Footer */
.cs-footer{
	margin-top: 28px;
	font-size: 14px;
	text-align: center;
}

.cs-footer a{
	color: var(--primary-color);
	font-weight: 600;
	text-decoration: none;
}

.cs-footer a:hover{
	color: var(--secondary-brand-color);
}

/* Responsive */
@media only screen and (max-width: 991px){
	.cs-card{
		grid-template-columns: 1fr;
	}

	.cs-content{
		padding: 48px 32px;
		align-items: center;
		text-align: center;
	}

	.cs-content h1{
		font-size: 34px;
	}

	.cs-services{
		justify-content: center;
	}

	.cs-photo{
		order: -1;
		min-height: 380px;
	}

	.cs-photo::after{
		background: linear-gradient(180deg, transparent 60%, #a3625a 100%);
	}

	.cs-logo{
		max-height: 64px;
	}

	.lang-switcher{
		top: 16px;
		right: 16px;
	}
}
