/* Basic page reset */
	@font-face {
		font-family: 'Proxima Nova Black';
		src: url('send/font/Proxima Nova Black.otf') format('opentype');
		font-weight: 800;
		font-style: normal;
		font-display: swap;
	}

	@font-face {
		font-family: 'Proxima Nova Regular';
		src: url('send/font/ProximaNova-Regular.otf') format('opentype');
		font-weight: 400;
		font-style: normal;
		font-display: swap;
	}


body {
	margin: 0;
	font-family: -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial,
		sans-serif;
	color: #fff;
}

/* Hero / background */
.hero {
	position: relative;
	width: 100%;
	height: 100vh;
	background-image: url('send/station.jpg');
	background-size: cover;
	background-position: right center; /* keep canopy visible on wide screens */
	display: flex;
	align-items: flex-start;
	overflow: hidden;
}

/* Left overlay to improve legibility for logo + headline */
.hero__overlay {
	position: absolute;
	left: 0;
	top: 0;
	width: 100vw;
	height: 100vh;
	/* Use the sample Background image with a dark tint for legibility. */
	background: url('send/station.jpg');
	background-size: cover;
	background-position: center;
	display: flex;
	flex-direction: column;
	padding: 0 0 0 20vw;
	box-sizing: border-box;
}

.logo-block {
	width: 20vw;
	height: auto;
	background: #ffffff;
	padding: 2em 0;
	box-sizing: border-box;
	margin-bottom: 0.25em;
	display: flex;
	align-items: center;
	justify-content: center;
}

.logo-block img {
	width: 82%;
	max-width: 100%;
	height: auto;
	display: block;
}

.headline-box {
	padding-left: 1em;
}

.headline {
	margin-top: 20px;
	padding-left: 0;
	margin-left: 0;
	color: #ffffff;
	font-family: 'Proxima Nova Black', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif;
	font-weight: 800;
	letter-spacing: 0.5px;
	text-transform: uppercase;
	font-size: clamp(22px, 4vw, 44px);
	line-height: 1.02; /* stacked lines close together */
}

.site-url {
	margin-top: 0.25em;
	padding-left: 0;
	font-family: 'Proxima Nova Black', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif;
	font-size: 1.2em;
	font-weight: 800;
	color: rgba(255,255,255,0.95);
	letter-spacing: 0.4px;
	text-transform: none;
}

.contact {
	position: absolute;
	left: 20vw;
	bottom: 0;
	background: rgba(255, 255, 255, 0.95);
	padding: 2em 2em;
	border-radius: 0;
	font-size: 1em;
	color: #222;
	text-align: left;
	font-family: 'Helvetica Neue';
	font-weight: 100;
}

.contact a,
.contact-location {
	font-family: 'Proxima Nova Regular', 'Helvetica Neue', Arial, sans-serif;
	font-weight: 400;
}

.contact a {
	color: inherit;
	text-decoration: none;
	/* ensure the email sits immediately after the phone line */
	display: block;
	margin: 0;
	padding: 0;
}

.contact-location {
		margin-top: 2em;
		font-size: 0.95rem;
		color: #4585B0;
	}

.contact-phone {
	font-size: 1em;
	color: #222;
	margin: 0 0 0.0em 0; /* remove default bottom margin */
	font-family: 'Proxima Nova Regular', 'Helvetica Neue', Arial, sans-serif;
}

/* Responsive adjustments */
/* @media (max-width: 960px) {
	.hero__overlay {
		padding: 36px 22px;
	}
	.logo-block {
		width: 110px;
		height: 110px;
		margin-bottom: 0.25em;
	}
} */

@media (max-width: 720px) {
	.hero__overlay {
		width: 100%;
		position: relative;
		padding: 24px;
	}
	.logo-block {
		width: 18vw;
		max-width: 110px;
		height: auto;
		margin-bottom: 0.25em;
	}

	.headline {
		font-size: clamp(18px, 6vw, 28px);
		margin-top: 12px;
		padding-left: 0;
		margin-left: 0;
	}
	.contact {
		left: 14px;
		bottom: 12px;
		font-size: 11px;
		text-align: left;
	}
	.site-url {
		font-size: 1em;
		padding-left: 0;
		margin-left: 0;
	}
	.headline-box {
		padding-left: 0.5em;
	}
}
