footer {
	width: 100%;
	height: 60vh;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	background-color: var(--black);
	color: var(--base-color-light);
}

.contact {
	width: 100%;
	height: 90%;
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: center;
	justify-items: center;
}

.contact .cta {
	width: 50%;
	display: flex;
	flex-direction: column;
}

.contact .cta .header {
	display: flex;
	flex-direction: column;
}

.contact .cta .header .title {
	font-size: 5rem;
	color: var(--base-color-light);
	margin: 0 0 1rem 0;
	font-family: Cormorant Garamond, system-ui;
}

.contact .cta .header .index {
	font-size: 2rem;
	font-weight: 400;
	color: var(--brown);
	margin: 0 0 3rem 0;
	text-transform: uppercase;
}

.contact .cta .description {
	font-size: 1.8rem;
	font-weight: 300;
	color: var(--base-color-light);
	margin: 2rem 0 2rem 0;
}

.contact .cta .email {
	font-size: 1.8rem;
	font-weight: 300;
	color: var(--base-color-light);
}

.contact .links {
	width: 50%;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	color: var(--base-color-light);
}

.contact .links a {
	color: var(--base-color-light);
	margin: 0 0 2rem 0;
	padding: 2rem;
	text-decoration: none;
	outline: 0.15rem solid var(--base-color-mid);
}

.contact .links a:hover {
	outline-width: 0.3rem;
}

.contact .links a div {
	display: flex;
	justify-content: space-between;
}

.contact .links a div .social {
	font-size: 1.5rem;
}

.contact .links a div .handle {
	font-size: 1.2rem;
	color: var(--base-color-mid);
}

.contact .links .cta-btn {
	width: 100%;
	margin: 2rem 0 0 0;
	font-size: 1.5rem;
	text-transform: uppercase;
	text-align: center;
	outline-color: var(--brown);
}

.info {
	width: 100%;
	height: 10%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.info p {
	font-size: 1.3rem;
	color: var(--base-color-light);
}

@media (orientation: portrait) {
	.info {
		height: 8rem;
		flex-direction: column;
		justify-content: center;
		align-items: center;
	}

	.contact {
		height: 50rem;
		display: flex;
		flex-direction: column;
	}

	.contact .links {
		width: 80%;
	}

	.contact .links a {
		margin: 2rem auto 2rem auto;
	}
}

.gold {
	color: var(--brown);
	font-style: italic;
}