.skip-link {
	position: absolute;
	top: -100%;
	left: 0;
	z-index: 100;
	padding: 8px 16px;
	background: #CC0000;
	color: #ffffff;
	font-family: 'Spartan', sans-serif;
	font-size: 14px;
	text-decoration: none;
}

.skip-link:focus {
	top: 0;
}

html {
	height: 100%;
	margin: 0;
	padding: 0;
	overflow: hidden;
	color-scheme: dark;
}

body {
	margin: 0;
	padding: 0;
	height: 100vh;
	overflow-x: hidden;
	overflow-y: auto;
	background: #1C1C1C;
	scroll-behavior: smooth;
	color: #d0d0d4;
	font-family: 'Nunito Sans', sans-serif;
}

header {
	background: rgba(28, 28, 28, 0.95);
	border-bottom: 1px solid rgba(160, 0, 0, 0.15);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	position: sticky;
	top: 0;
	height: 99px;
	width: 100%;
	z-index: 20;
}

header.header-hidden {
	transform: translateY(-100%);
	margin-top: -100px;
	visibility: hidden;
	pointer-events: none;
}

div#navHolder {
	height: 100px;
	width: 100%;
	position: absolute;
	top: calc(100vh - 100px);
}

nav {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 99px;
	margin: 0 auto;
}

	nav a {
		display: block;
		color: #FFFFFF;
		font-family: 'Spartan', sans-serif;
		font-size: 16px;
		font-weight: 500;
		text-decoration: none;
		text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
		letter-spacing: .15em;
		text-transform: uppercase;
		margin: 0 20px;
		padding-bottom: 4px;
		border-bottom: 2px solid transparent;
		transition: color 0.3s ease, text-shadow 0.3s ease, border-bottom-color 0.3s ease;
	}

nav a:hover {
		opacity: 1;
		color: #CC0000;
		text-shadow: 0 0 10px rgba(204, 0, 0, 0.5), 0 0 25px rgba(204, 0, 0, 0.2);
		border-bottom-color: #CC0000;
		padding-top: 0;
	}

nav a:focus-visible {
		color: #CC0000;
		text-shadow: 0 0 10px rgba(204, 0, 0, 0.5), 0 0 25px rgba(204, 0, 0, 0.2);
		border-bottom-color: #CC0000;
		outline: 2px solid #CC0000;
		outline-offset: 4px;
	}

.contact-btn:focus-visible {
	outline: 2px solid #CC0000;
	outline-offset: 4px;
}

button.contact-copy:focus-visible {
	outline: 2px solid #CC0000;
	outline-offset: 4px;
	color: #ffffff;
	border-color: rgba(200, 0, 0, 0.5);
}

#home {
	background: #1C1C1C;
	position: relative;
	height: calc(100vh - 1px);
	z-index: 5;
	border-bottom: 1px solid rgba(180, 0, 0, 0.2);
}

	#home div.logo {
		background: url(img/logo.png);
		background-repeat: no-repeat;
		background-size: contain;
		background-position: center;
		position: absolute;
		height: calc(100vh - 10%);
		width: 44vh;
		top: 5%;
		right: 3%;
	}

	#home h1 {
		color: #FFFFFF;
		font-family: 'Spartan', sans-serif;
		font-size: 100px;
		font-weight: 300;
		text-transform: uppercase;
		text-shadow: 0 0 15px rgba(255, 255, 255, 0.4), 0 0 40px rgba(255, 255, 255, 0.15);
		letter-spacing: .1em;
		position: absolute;
		top: 30%;
		right: calc(44vh + 6% + 200px);
		margin: 0;
		padding: 0;
	}

	#home p {
		color: rgba(210, 205, 205, 0.85);
		font-family: 'Spartan', sans-serif;
		font-size: 18px;
		font-weight: 300;
		letter-spacing: .15em;
		position: absolute;
		width: 900px;
		max-width: calc(100vw - 44vh - 10%);
		top: calc(30% + 150px);
		right: calc(44vh + 6%);
		margin: 0;
	}

#home, #services {
	border-bottom: 1px solid rgba(160, 0, 0, 0.08);
}

#about, #contact {
	border-bottom: 1px solid rgba(160, 0, 0, 0.08);
	position: relative;
	z-index: 2;
}

.section {
	position: relative;
	padding: 80px 10%;
	min-height: calc(100vh - 100px);
	display: flex;
	flex-direction: column;
	justify-content: center;
	box-sizing: border-box;
}

	.section::before {
		content: "";
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		z-index: -1;
	}

	#about::before {
		background: #272727;
	}

	#services::before {
		background: #1C1C1C;
	}

	#contact::before {
		background: #272727;
	}

	.section h2 {
		color: #ffffff;
		font-family: 'Rokkitt', serif;
		font-size: 40px;
		font-weight: 500;
		letter-spacing: 0.03em;
		text-align: center;
		text-shadow: 0 0 30px rgba(160, 0, 0, 0.12);
		margin: 0 0 12px 0;
		padding: 0;
	}

	.section h2::after {
		content: "";
		display: block;
		width: 50px;
		height: 3px;
		background: linear-gradient(90deg, #990000, #CC0000, #990000);
		margin: 14px auto 40px auto;
		border-radius: 2px;
	}

#about p {
	color: rgba(205, 200, 200, 0.88);
	font-family: 'Nunito Sans', sans-serif;
	font-size: 16px;
	font-weight: 300;
	line-height: 1.85;
	max-width: 780px;
	width: auto;
	margin: 0 auto 28px auto;
	text-shadow: none;
}

	.section div.sub {
		background: linear-gradient(135deg, rgba(255, 255, 255, 0.02), rgba(140, 0, 0, 0.03));
		border: 1px solid rgba(160, 0, 0, 0.12);
		border-radius: 12px;
		padding: 32px 40px;
		margin: 0 auto 24px auto;
		max-width: 780px;
	}

	.section div.sub h3 {
		color: #CC0000;
		font-family: 'Rokkitt', serif;
		font-size: 26px;
		font-weight: 500;
		letter-spacing: 0.02em;
		margin: 0 0 14px 0;
		text-shadow: 0 0 20px rgba(160, 0, 0, 0.1);
	}

	.section div.sub p {
		color: rgba(205, 200, 200, 0.85);
		font-family: 'Nunito Sans', sans-serif;
		font-size: 15px;
		font-weight: 300;
		line-height: 1.75;
		width: auto;
		margin: 0 0 12px 0;
		text-shadow: none;
	}

#contact > p {
	color: rgba(205, 200, 200, 0.85);
	font-family: 'Nunito Sans', sans-serif;
	font-size: 16px;
	font-weight: 300;
	line-height: 1.75;
	max-width: 680px;
	width: auto;
	margin: 0 auto 40px auto;
	text-align: center;
	text-shadow: none;
}

.contact-card {
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.02), rgba(140, 0, 0, 0.03));
	border: 1px solid rgba(160, 0, 0, 0.12);
	border-radius: 12px;
	padding: 48px 40px;
	max-width: 480px;
	margin: 0 auto;
	text-align: center;
}

.contact-email {
	display: block;
	color: #CC0000;
	font-family: 'Rokkitt', serif;
	font-size: 26px;
	font-weight: 500;
	letter-spacing: 0.02em;
	text-shadow: 0 0 20px rgba(160, 0, 0, 0.1);
	margin-bottom: 32px;
}

.contact-actions {
	display: flex;
	gap: 16px;
	justify-content: center;
}

.contact-btn {
	display: inline-block;
	font-family: 'Spartan', sans-serif;
	font-size: 14px;
	font-weight: 500;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	text-decoration: none;
	padding: 12px 32px;
	border-radius: 6px;
	cursor: pointer;
	transition: color 0.3s ease, background 0.3s ease, border-color 0.3s ease, box-shadow 0.25s ease;
}

a.contact-btn {
	background: #CC0000;
	color: #ffffff;
	border: 1px solid #CC0000;
}

a.contact-btn:hover {
	background: #EE0000;
	border-color: #EE0000;
	box-shadow: 0 0 20px rgba(200, 0, 0, 0.3);
}

button.contact-copy {
	background: transparent;
	color: rgba(205, 200, 200, 0.85);
	border: 1px solid rgba(160, 0, 0, 0.25);
}

button.contact-copy:hover {
	color: #ffffff;
	border-color: rgba(200, 0, 0, 0.5);
	box-shadow: 0 0 15px rgba(140, 0, 0, 0.1);
}

@media (max-width: 1024px) {
	#home h1 {
		font-size: 72px;
		left: 4%;
		right: calc(36vh + 4%);
	}

	#home p {
		font-size: 16px;
		right: calc(36vh + 4%);
		left: 4%;
	}

	#home div.logo {
		width: 36vh;
	}
}

@media (max-width: 768px) {
	header {
		height: 60px;
	}

	nav {
		height: 60px;
		flex-wrap: wrap;
	}

	nav a {
		font-size: 13px;
		margin: 0 10px;
		letter-spacing: 0.1em;
		padding: 10px 0 6px;
	}

	#home {
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		padding: 40px 6%;
	}

	#home div.logo {
		position: static;
		height: 180px;
		width: 135px;
		margin-bottom: 24px;
		background-image: url(img/logo-mobile.png);
		background-position: center;
	}

	#home h1 {
		position: static;
		font-size: 42px;
		text-align: center;
		margin-bottom: 16px;
	}

	#home p {
		position: static;
		max-width: 100%;
		text-align: center;
		font-size: 15px;
		letter-spacing: 0.1em;
		margin-bottom: 0;
	}

	div#navHolder {
		position: static;
		width: auto;
		height: auto;
		margin-top: auto;
	}

	div#navHolder nav {
		flex-wrap: wrap;
		gap: 4px 0;
		height: auto;
		padding: 20px 0;
	}

	.section {
		padding: 60px 6%;
		min-height: auto;
	}

	.section h2 {
		font-size: 30px;
	}

	.section h2::after {
		margin: 12px auto 28px auto;
	}

	#about p {
		font-size: 15px;
		line-height: 1.75;
	}

	.section div.sub {
		padding: 24px 20px;
	}

	.section div.sub h3 {
		font-size: 22px;
	}

	.contact-card {
		padding: 32px 20px;
	}

	.contact-email {
		font-size: 20px;
		margin-bottom: 24px;
	}

	.contact-btn {
		padding: 12px 24px;
		font-size: 13px;
	}

}

@media (max-width: 400px) {
	#home h1 {
		font-size: 32px;
	}

	#home p {
		font-size: 14px;
	}

	nav a {
		font-size: 12px;
		margin: 0 8px;
	}

	.section h2 {
		font-size: 26px;
	}

	.contact-email {
		font-size: 18px;
	}

	.contact-actions {
		flex-direction: column;
		gap: 12px;
	}

	.contact-btn {
		width: 100%;
		text-align: center;
		box-sizing: border-box;
	}
}

footer {
	background: #1C1C1C;
	border-top: 1px solid rgba(160, 0, 0, 0.08);
	padding: 24px 10%;
	text-align: center;
}

footer p {
	color: rgba(205, 200, 200, 0.5);
	font-family: 'Spartan', sans-serif;
	font-size: 13px;
	font-weight: 300;
	letter-spacing: 0.05em;
	margin: 0;
}

@media (prefers-reduced-motion: reduce) {
	body {
		scroll-behavior: auto;
	}
}
