:root {
	--navy-dark: #0B0F17CC;
	--navy: #171A24;
	--navy-2: #20242F;
	--gold: #D6A431;
	--gold-light: #EAC873;
	--cream: #F5F1E6;
	--card-bg: #F5F1E6;
	--text-dark: #1B1B17;
	--text-muted: #6E6C62;
	--border: #E4DFCE;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: 'Outfit', sans-serif;
	background: var(--cream);
	color: var(--text-dark);
}

h1, h2, .headline {
	font-family: 'Outfit', sans-serif;
}

a {
	text-decoration: none;
}

/* ================= HERO ================= */
.hero {
	background: linear-gradient(120deg, var(--navy-dark), var(--navy) 55%, #26293a);
	text-align: center;
	padding: 80px 24px 0;
}

.eyebrow {
	color: var(--gold);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	margin-bottom: 16px;
}

.hero h1 {
	color: #fff;
	font-size: 38px;
	font-weight: 500;
	line-height: 1.35;
	max-width: 760px;
	margin: 0 auto 14px;
}

.hero h1 span {
	color: var(--gold-light);
}

.hero p {
	color: #B8BAC6;
	font-size: 16px;
	line-height: 1.75;
	max-width: 520px;
	margin: 0 auto;
}

.stat-row {
	max-width: 1080px;
	margin: 44px auto 0;
	display: grid;
	grid-template-columns:repeat(4, 1fr);
	background: var(--card-bg);
	box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
	transform: translateY(60px);
	border-radius: 10px;
}

.stat-cell {
	padding: 30px 20px;
	text-align: center;
	border-right: 1px solid var(--border);
}

.stat-cell:last-child {
	border-right: none;
}

.stat-cell .num {
	font-family: 'Outfit', sans-serif;
	font-size: 24px;
	font-weight: 700;
	color: var(--gold);
	margin-bottom: 6px;
}

.stat-cell .label {
	font-size: 11px;
	letter-spacing: 0.06em;
	color: var(--text-muted);
	text-transform: uppercase;
	font-weight: 600;
}

.hero-spacer {
	height: 130px;
	background: var(--cream);
}

/* ================= CONTACT SECTION ================= */
.section {
	max-width: 1080px;
	margin: 0 auto;
	padding: 20px 24px 90px;
}

.section-head {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 40px;
	margin-bottom: 54px;
	padding-bottom: 26px;
	border-bottom: 1px solid var(--border);
}

.section-head .eyebrow {
	color: var(--gold);
	display: flex;
	align-items: center;
	gap: 12px;
}

.section-head .eyebrow::before {
	content: "";
	width: 30px;
	height: 2px;
	background: var(--gold);
	display: inline-block;
}

.section-head h2 {
	font-size: 32px;
	font-weight: 600;
	color: var(--text-dark);
	line-height: 1.3;
}

.section-head h2 span {
	color: var(--gold);
}

.section-head p {
	max-width: 420px;
	font-size: 14.5px;
	color: var(--text-muted);
	line-height: 1.7;
	margin-bottom: 4px;
}

.contact-grid {
	display: grid;
	grid-template-columns:0.9fr 1.1fr;
	gap: 44px;
}

/* info list */
.info-list {
	display: flex;
	flex-direction: column;
	gap: 26px;
}

.info-item {
	display: flex;
	gap: 16px;
	align-items: flex-start;
}

.badge {
	width: 52px;
	height: 52px;
	border-radius: 50%;
	background: var(--navy-dark);
	border: 1px solid var(--gold);
	color: var(--gold-light);
	font-size: 18px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.info-item h3 {
	font-family: 'Outfit', sans-serif;
	font-size: 18px;
	font-weight: 500;
	margin-bottom: 5px;
	color: var(--text-dark);
}

.info-item p {
	font-size: 13.5px;
	color: var(--text-muted);
	line-height: 1.7;
}

/* form */
.form-card {
	background: #fff;
	border: 1px solid var(--border);
	border-radius: 6px;
	padding: 36px;
}

.form-row {
	display: grid;
	grid-template-columns:1fr 1fr;
	gap: 18px;
	margin-bottom: 18px;
}

.field {
	display: flex;
	flex-direction: column;
	gap: 7px;
}

.field.full {
	grid-column: 1/-1;
}

.field label {
	font-size: 14px;
	font-weight: 500;
	color: var(--text-dark);
}

.field input, .field select, .field textarea {
	font-family: 'Outfit', sans-serif;
	font-size: 14px;
	padding: 11px 13px;
	border: 1px solid var(--border);
	border-radius: 4px;
	background: var(--cream);
	outline: none;
	color: var(--text-dark);
}

.field input:focus, .field select:focus, .field textarea:focus {
	border-color: var(--gold);
}

.field textarea {
	min-height: 110px;
	resize: vertical;
}

.submit-btn {
	margin-top: 6px;
	background: var(--navy-dark);
	color: var(--gold-light);
	border: 1px solid var(--gold);
	font-size: 16px;
	font-weight: 500;
	padding: 13px 32px;
	border-radius: 4px;
	cursor: pointer;
}

.submit-btn:hover {
	background: var(--navy);
}

.map-strip {
	max-width: 1080px;
	margin: 0 auto 90px;
	height: 260px;
	border-radius: 6px;
	background: repeating-linear-gradient(135deg, #EFEAD9, #EFEAD9 14px, #E7E1CC 14px, #E7E1CC 28px);
	border: 1px solid var(--border);
	position: relative;
	overflow: hidden;
}

.map-pin {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
}

.map-pin .dot {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: var(--navy-dark);
	border: 2px solid var(--gold);
	color: var(--gold-light);
	font-size: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.map-pin .label {
	background: #fff;
	border: 1px solid var(--border);
	border-radius: 999px;
	padding: 6px 16px;
	font-size: 12.5px;
	font-weight: 600;
	color: var(--text-dark);
}

@media (max-width: 860px) {
	.section-head {
		flex-direction: column;
		align-items: flex-start;
		gap: 14px;
	}

	.section-head p {
		max-width: none;
	}

	.contact-grid {
		grid-template-columns:1fr;
	}

	.stat-row {
		grid-template-columns:1fr 1fr;
	}

	.form-row {
		grid-template-columns:1fr;
	}
}
