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

body{
	font-family:'Montserrat',sans-serif;
	color:#444;
	line-height:1.6;
	background:#fffaf8;
}

.container{
	width:90%;
	max-width:1200px;
	margin:auto;
}

header{
	height:100vh;
	background:linear-gradient(rgba(0,0,0,.45),rgba(0,0,0,.45)),
	url('https://caramel-decor.ru/0.jpg') center/cover;
	display:flex;
	justify-content:center;
	align-items:center;
	text-align:center;
	color:white;
}

header h1{
	font-size:72px;
	font-family:'Cormorant Garamond',serif;
	margin-bottom:20px;
}

header p{
	font-size:22px;
	margin-bottom:40px;
}

.btn{
	display:inline-block;
	padding:18px 40px;
	background:#d4af7f;
	color:white;
	text-decoration:none;
	border-radius:40px;
	transition:.3s;
	font-weight:600;
}

.btn:hover{
	background:#be9764;
}

section{
	padding:90px 0;
}

.title{
	text-align:center;
	margin-bottom:60px;
}

.title h2{
	font-size:42px;
	font-family:'Cormorant Garamond',serif;
	color:#8b6d4a;
}

.services{
	display:grid;
	grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
	gap:30px;
}

.card{
	background:white;
	padding:35px;
	border-radius:15px;
	box-shadow:0 15px 35px rgba(0,0,0,.08);
	transition:.3s;
}

.card:hover{
	transform:translateY(-10px);
}

.card h3{
	margin-bottom:15px;
	color:#8b6d4a;
}

.gallery{
	display:grid;
	grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
	gap:20px;
}

.gallery img{
	width:100%;
	height:320px;
	object-fit:cover;
	border-radius:15px;
}

.about{
	display:grid;
	grid-template-columns:1fr 1fr;
	gap:60px;
	align-items:center;
}

.about img{
	width:100%;
	border-radius:20px;
}

.stats{
	display:flex;
	justify-content:space-around;
	flex-wrap:wrap;
	text-align:center;
	margin-top:60px;
}

.stat{
	margin:20px;
}

.stat h3{
	font-size:48px;
	color:#c59b6c;
}

.contact{
	background:#f8f1eb;
	text-align:center;
}

form{
	max-width:600px;
	margin:auto;
}

input,textarea{
	width:100%;
	padding:18px;
	margin:12px 0;
	border:none;
	border-radius:10px;
}

button{
	width:100%;
	padding:18px;
	background:#d4af7f;
	color:white;
	border:none;
	border-radius:10px;
	font-size:18px;
	cursor:pointer;
}

button:hover{
	background:#be9764;
}

footer{
	background:#2b2b2b;
	color:white;
	text-align:center;
	padding:30px;
}


@media(max-width:900px){
.about{
grid-template-columns:1fr;
}

header h1{
font-size:52px;
}

header p{
font-size:18px;
}
}

