/* =====================
	 Variables & Base
	 ===================== */
:root {
	--bg: #ffffff;
	--text: #222;
	--muted: #8b8b8b;
	--accent: #111;
	--max-width: 1100px;
}

* {
	box-sizing: border-box;
}

html,
body {
	height: 100%;
}

body {
	margin: 0;
	font-family: Montserrat, "Helvetica Neue", Arial, sans-serif;
	color: var(--text);
	background: var(--bg);
	-webkit-font-smoothing: antialiased;
}

/* =====================
	 Typography & Links
	 ===================== */
a {
	color: #2e7cf6;
	text-decoration: none;
	transition: color 0.2s, box-shadow 0.2s;
}

a:hover,
a:focus {
	color: #174ea6;
	box-shadow: 0 2px 0 0 #2e7cf6;
}

.brand {
	letter-spacing: 6px;
	font-weight: 300;
	color: var(--muted);
}

.site-title {
	font-weight: 300;
	font-size: clamp(32px, 8vw, 120px);
	letter-spacing: 0.5em;
	line-height: 0.9;
	margin: 0 auto;
	transform: translateY(-6%);
	max-width: 90%;
	text-align: center;
}

.site-sub {
	font-weight: 300;
	color: rgba(255, 255, 255, 0.9);
	font-size: 14px;
	letter-spacing: 0.08em;
	margin-top: 8px;
	margin-right: 10px;
}

/* =====================
	 Layout
	 ===================== */
header.site-header {
	max-width: var(--max-width);
	margin: 28px auto 14px;
	padding: 0 20px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.menu {
	width: 32px;
	height: 22px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.menu span {
	display: block;
	height: 3px;
	background: #eee;
	border-radius: 2px;
}

main {
	max-width: var(--max-width);
	margin: 24px auto;
	padding: 0 20px;
}

.split {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0px;
	align-items: start;
}

footer {
	max-width: var(--max-width);
	padding: 0 20px;
	height: 10px;
}

/* =====================
	 Hero Section
	 ===================== */
.hero {
	max-width: var(--max-width);
	margin: 0 auto;
	padding: 0 20px 18px;
}

.hero-inner {
	position: relative;
	background: #fff;
	overflow: hidden;
}

.hero-inner img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	display: block;
	filter: contrast(0.95) brightness(0.9);
	transition: transform 0.2s linear;
}

.hero-overlay {
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		width: 100%;
		height: 100%;
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		pointer-events: none;
		color: rgba(255, 255, 255, 0.95);
		text-align: center;
		margin: 0;
		padding: 0;
}

/* =====================
	 Content Sections
	 ===================== */
.left-title {
	font-size: 44px;
	font-weight: 200;
	line-height: 1.05;
	margin: 8px 0 0;
	color: var(--accent);
}

.right-copy {
	color: #444;
	font-size: 14px;
	line-height: 1.6;
}

hr.rule {
	border: none;
	border-top: 1px solid #ddd;
	margin: 28px 0;
}

.contact {
	display: flex;
	gap: 28px;
	align-items: flex-start;
}

.contact h3 {
	font-weight: 200;
	font-size: 32px;
	margin: 0 0 8px;
}

.contact p {
	margin: 0;
	color: #444;
	font-size: 14px;
}

/* =====================
	 Miscellaneous
	 ===================== */
a.fireitapp {
	font-family: 'Orbitron', sans-serif;
	letter-spacing: 0.04em;
}

/* =====================
	 Responsive
	 ===================== */
@media (max-width: 900px) {
	.site-title {
		font-size: 10vw;
		letter-spacing: 0.6em;
	}

	.split {
		grid-template-columns: 1fr;
	}

	.left-title {
		font-size: 32px;
	}

	.hero {
		margin-bottom: 8px;
	}
}

@media (max-width: 600px) {
	.site-title {
		font-size: 8vw;
		letter-spacing: 0.2em;
		max-width: 100%;
		white-space: normal;
	}
}

@media (max-width: 480px) {
	header.site-header {
		margin: 18px auto;
	}

	.site-title {
		letter-spacing: 0.35em;
	}
}