h1, h2, h3, h4 {
	font-family: "Cormorant Garamond", serif;
	font-weight: 600;
	line-height: 1.15;
	color: #222;
}
body {
	font-family: "Inter", sans-serif;
	font-size: 18px;
	line-height: 1.75;
	color: #555;
	background: #fff;
}
.fade-up {
	opacity: 0;
	transform: translateY(60px);
	transition: .6s;
}
.fade-up.active {
	opacity: 1;
	transform: none;
}
.container {
	max-width: 1320px;
	margin: auto;
	padding: 0 40px;
}
.btn-primary {
	background: var(--primary);
	color: #fff;
	padding: 18px 34px;
	border-radius: 12px;
	font-weight: 600;
	transition: .3s;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 10px;
}
.btn-outline {
	border: 2px solid var(--primary);
	color: var(--primary);
	padding: 18px 34px;
	border-radius: 12px;
	text-decoration: none;
}