@font-face {
	font-family: "OpenSans";
	src: url("assets/OpenSans.ttf") format("truetype");
	font-weight: 100 900;
	font-style: normal;
}
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: "OpenSans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
:root {
	--shine: #dedede;
	--silver-light: #d4d4d4;
	--silver: #b9b9b9;
	--silver-mid: #969696;
	--silver-dark: #686868;
	--gunmetal: #343434;
	--gunmetal-dark: #1f1f1f;
	--black: #090909;
	--gold: #c29b2e;
	--bronze: #8c562c;
}
html {
	scroll-behavior: smooth;
}
body {
	min-height: 100vh;
	background:
		radial-gradient(circle at 18% 12%, rgba(222,222,222,0.11), transparent 26%),
		radial-gradient(circle at 80% 18%, rgba(194,155,46,0.08), transparent 28%),
		radial-gradient(circle at 50% 112%, rgba(0,0,0,0.62), transparent 42%),
		linear-gradient(135deg, #6b6b6b 0%, #464646 34%, #242424 68%, #0b0b0b 100%);
	color: var(--silver-light);
	overflow-x: hidden;
}
.ambient {
	position: fixed;
	inset: 0;
	z-index: 0;
	background:
		linear-gradient(120deg, rgba(222,222,222,0.09), transparent 22%, rgba(222,222,222,0.03) 48%, transparent 78%),
		linear-gradient(rgba(222,222,222,0.018) 1px, transparent 1px),
		linear-gradient(90deg, rgba(222,222,222,0.018) 1px, transparent 1px);
	background-size: 100% 100%, 42px 42px, 42px 42px;
	mask-image: radial-gradient(circle at center, black, transparent 82%);
	pointer-events: none;
}
.site-header {
	position: sticky;
	top: 0;
	z-index: 10;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 14px clamp(16px, 5vw, 70px);
	background:
		linear-gradient(135deg, #232323 0%, #2A4E2B 80%, #232323 100%);
	border-bottom: 1px solid rgba(222,222,222,0.32);
	box-shadow:
		0 14px 34px rgba(0,0,0,0.34),
		inset 0 1px 0 rgba(222,222,222,0.5),
		inset 0 -1px 0 rgba(0,0,0,0.3);
	backdrop-filter: blur(14px);
}
.brand-lockup {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 2px;
	text-decoration: none;
}
.brand {
	letter-spacing: 2.4px;
	font-size: clamp(13px, 1.8vw, 17px);
	font-weight: 900;
	color: var(--shine);
	text-shadow:
		0 1px 0 rgba(255,255,255,0.18),
		0 2px 6px rgba(0,0,0,0.36);
}
.motto {
	color: var(--silver-light);
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.8px;
	text-shadow: 0 2px 5px rgba(0,0,0,0.28);
	opacity: 0.9;
}
.site-nav {
	display: flex;
	gap: 16px;
}
a {
	color: var(--shine);
	text-decoration: none;
	font-weight: 850;
	transition: color 0.18s ease, text-shadow 0.18s ease, opacity 0.18s ease;
}
a:hover {
	color: var(--silver-light);
	text-shadow: 0 0 14px rgba(222,222,222,0.22);
	opacity: 0.82;
}
.site-main {
	position: relative;
	z-index: 2;
	width: min(1040px, 88vw);
	min-height: calc(100vh - 68px);
	margin: 0 auto;
	display: grid;
	place-items: center;
	padding: clamp(46px, 7vw, 82px) 0;
}
.hero {
	width: min(800px, 100%);
	text-align: center;
	padding: clamp(30px, 5vw, 62px);
	border: 1px solid rgba(222,222,222,0.18);
	border-top-color: rgba(222,222,222,0.42);
	border-left-color: rgba(194,155,46,0.24);
	border-right-color: rgba(140,86,44,0.22);
	border-radius: clamp(22px, 3.4vw, 36px);
	background:
		linear-gradient(145deg, rgba(50,70,50,0.94) 0%, rgba(120,120,120,0.92) 33%, rgba(127,127,127,0.9) 66%, rgba(50,70,50,0.94) 100%),
		linear-gradient(315deg, rgba(100,100,100,0.08), rgba(140,86,44,0.07));
	box-shadow:
		0 28px 72px rgba(0,0,0,0.42),
		inset 0 2px 0 rgba(150,150,150,0.28),
		inset 0 -2px 0 rgba(0,0,0,0.28);
	backdrop-filter: blur(12px);
}
.eyebrow {
	color: var(--silver-light);
	text-transform: uppercase;
	letter-spacing: 2.6px;
	font-size: clamp(10px, 1.7vw, 12px);
	font-weight: 900;
	margin-bottom: 14px;
	opacity: 0.82;
	text-shadow: 0 2px 6px rgba(0,0,0,0.28);
}
h1 {
	font-size: clamp(40px, 9vw, 92px);
	line-height: 0.92;
	letter-spacing: -3px;
	color: var(--shine);
	text-shadow:
		0 1px 0 rgba(255,255,255,0.22),
		0 2px 0 rgba(0,0,0,0.24),
		0 18px 34px rgba(0,0,0,0.36);
}
p {
	color: var(--silver-light);
	line-height: 1.6;
}
.lead {
	max-width: 580px;
	margin: 22px auto 0;
	font-size: clamp(15px, 2.1vw, 18px);
	font-weight: 650;
	opacity: 0.9;
}
.hero-actions {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 12px;
	margin-top: 30px;
	flex-wrap: wrap;
}
button,
.primary-btn {
	border: 1px solid rgba(222,222,222,0.22);
	border-top-color: rgba(222,222,222,0.44);
	background:
		linear-gradient(135deg, #b0b0b0 0%, #838383 46%, #555555 100%);
	color: var(--shine);
	padding: 12px 21px;
	border-radius: 999px;
	cursor: pointer;
	font-size: 14px;
	font-weight: 900;
	box-shadow:
		0 12px 28px rgba(0,0,0,0.34),
		inset 0 1px 0 rgba(222,222,222,0.26),
		inset 0 -1px 0 rgba(0,0,0,0.22);
	transition: transform 0.18s ease, box-shadow 0.18s ease, opacity 0.18s ease;
}
button:hover,
.primary-btn:hover {
	transform: translateY(-2px);
	opacity: 0.9;
	box-shadow:
		0 18px 38px rgba(0,0,0,0.42),
		0 0 18px rgba(222,222,222,0.1),
		inset 0 1px 0 rgba(222,222,222,0.34);
}

button[type="submit"] {
	border: 1px solid rgba(220,220,220,0.24);
	border-top-color: rgba(245,245,245,0.42);
	background:
		linear-gradient(135deg, #bcbcbc 0%, #8c8c8c 52%, #5f5f5f 100%);
	color: #f3f3f3;
	padding: 12px 21px;
	border-radius: 999px;
	cursor: pointer;
	font-size: 14px;
	font-weight: 900;
	letter-spacing: 0.4px;
	box-shadow:
		0 12px 28px rgba(0,0,0,0.34),
		inset 0 1px 0 rgba(255,255,255,0.18),
		inset 0 -1px 0 rgba(0,0,0,0.24);
	transition:
		transform 0.18s ease,
		box-shadow 0.18s ease,
		filter 0.18s ease,
		border-color 0.18s ease,
		background 0.22s ease;
}
button[type="submit"]:hover {
	transform: translateY(-2px);
	border-color: rgba(255,215,110,0.82);
	box-shadow:
		0 18px 38px rgba(0,0,0,0.42),
		0 0 24px rgba(255,191,0,0.34),
		0 0 10px rgba(255,215,110,0.42),
		inset 0 1px 0 rgba(255,255,255,0.24);
}
button[type="submit"]:active {
	background:
		linear-gradient(135deg, #ffd86b 0%, #ffbf00 52%, #c78a00 100%);
	border-color: rgba(255,225,140,0.92);
	color: #fff8e7;
	box-shadow:
		0 18px 40px rgba(0,0,0,0.42),
		0 0 30px rgba(255,191,0,0.42),
		inset 0 1px 0 rgba(255,245,200,0.42);
}
button[type="submit"].sent {
	background:
		linear-gradient(135deg, #d8ffe0 0%, #9fe0ad 52%, #6db87d 100%);
	border-color: rgba(210,255,220,0.82);
	color: #103318;
	box-shadow:
		0 18px 40px rgba(0,0,0,0.34),
		0 0 26px rgba(170,255,190,0.32),
		inset 0 1px 0 rgba(255,255,255,0.38);
}


#particles {
	position: fixed;
	inset: 0;
	z-index: 1;
	pointer-events: none;
}
.particle {
	position: fixed;
	width: 4px;
	height: 4px;
	border-radius: 50%;
	background: rgba(222,222,222,0.68);
	box-shadow: 0 0 12px rgba(222,222,222,0.28);
}
.hero-shine {
	animation: heroShine 0.7s ease;
}
@keyframes heroShine {
	0% { filter: brightness(1); }
	50% { filter: brightness(1.08); }
	100% { filter: brightness(1); }
}
.contact-form {
	width: min(560px, 100%);
	display: grid;
	gap: 12px;
	margin: 30px auto 0;
}
.form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px;
}
input,
textarea {
	width: 100%;
	border: 1px solid rgba(222,222,222,0.18);
	border-top-color: rgba(222,222,222,0.34);
	background: linear-gradient(135deg, #9d9d9d, #686868 52%, #424242);
	color: var(--shine);
	padding: 12px 14px;
	border-radius: 15px;
	font-size: 14px;
	font-weight: 700;
	outline: none;
	box-shadow:
		inset 0 1px 0 rgba(222,222,222,0.18),
		0 9px 20px rgba(0,0,0,0.22);
}
input::placeholder,
textarea::placeholder {
	color: rgba(222,222,222,0.68);
}
textarea {
	min-height: 120px;
	resize: vertical;
}
input:focus,
textarea:focus {
	border-color: rgba(222,222,222,0.48);
	box-shadow:
		0 0 0 3px rgba(222,222,222,0.08),
		0 12px 26px rgba(0,0,0,0.27),
		inset 0 1px 0 rgba(222,222,222,0.24);
}
.comments-label {
	text-align: left;
	color: var(--silver-light);
	font-size: 13px;
	font-weight: 900;
}
.comments-label span {
	color: var(--silver);
	font-size: 11px;
	font-weight: 700;
	opacity: 0.72;
}




@media (max-width: 760px) {
	.site-header {
		position: relative;
		align-items: flex-start;
		flex-direction: column;
		gap: 10px;
		padding: 14px 18px;
	}
	.site-nav {
		width: 100%;
		justify-content: flex-start;
	}
	.site-main {
		width: min(100% - 28px, 1040px);
		min-height: auto;
		padding: 42px 0;
	}
	.hero {
		padding: 30px 18px;
	}
	h1 {
		letter-spacing: -2px;
	}
	.hero-actions {
		flex-direction: column;
		align-items: stretch;
	}
	button,
	.primary-btn {
		width: 100%;
		text-align: center;
	}
	.form-row {
		grid-template-columns: 1fr;
	}
}


