:root {
	--charcoal: #0B0F17CC;
	--cream: #f7f4ec;
	--cream-2: #efe8d6;
	--gold: #b98a3f;
	--gold-deep: #8f6a2c;
	--gold-light: #e6c789;
	--ink: #211d15;
	--ink-soft: #615a49;
	--line: #ded5bd;
}

* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

body {
	font-family: 'Outfit', sans-serif;
	background: var(--cream);
	color: var(--ink);
	-webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
	font-family: 'Outfit', sans-serif;
	font-weight: 500;
}

.eyebrow {
	font-size: 12px;
	letter-spacing: 3px;
	text-transform: uppercase;
	font-weight: 600;
	color: var(--gold-deep);
}

section {
	padding: 86px 8vw;
}

@media (max-width: 820px) {
	section {
		padding: 54px 6vw;
	}
}

.wrap {
	max-width: 1180px;
	margin: 0 auto;
}

/* ---------- HERO (full-bleed banner + floating stats) ---------- */
.hero {
	background: radial-gradient(680px 420px at 82% 20%, rgba(185, 138, 63, 0.18), transparent 60%),
	linear-gradient(180deg, var(--charcoal) 0%, var(--charcoal) 82%, var(--cream) 82%);
	padding-top: 96px;
	padding-bottom: 0;
}

.hero-grid {
	max-width: 1180px;
	margin: 0 auto;
	display: grid;
	grid-template-columns:1.05fr .95fr;
	gap: 56px;
	align-items: center;
	padding-bottom: 110px;
}

@media (max-width: 900px) {
	.hero-grid {
		grid-template-columns:1fr;
		text-align: center;
	}

	.hero-visual {
		justify-content: center;
	}
}

.hero-copy h1 {
	font-size: clamp(28px, 3.6vw, 42px);
	line-height: 1.22;
	margin: 16px 0 22px;
	color: #faf6ea;
}

.hero-copy h1 span {
	color: var(--gold-light);
}

.hero-copy p {
	font-size: 14.5px;
	line-height: 1.85;
	color: #c9c3b1;
	max-width: 480px;
}

@media (max-width: 900px) {
	.hero-copy p {
		margin: 0 auto;
	}
}

.hero-copy p b {
	color: #efe9d8;
}

.hero .eyebrow {
	color: var(--gold-light);
}

.hero-visual {
	display: flex;
	align-items: center;
	justify-content: center;
}

.stats {
	max-width: 1000px;
	margin: 0 auto;
	transform: translateY(-46%);
	background: var(--cream);
	border: 1px solid var(--line);
	display: grid;
	grid-template-columns:repeat(4, 1fr);
	box-shadow: 0 18px 40px rgba(18, 21, 29, 0.18);
	border-radius: 10px;
}

@media (max-width: 820px) {
	.stats {
		grid-template-columns:repeat(2, 1fr);
		transform: translateY(-30%);
	}
}

.stat {
	text-align: center;
	padding: 30px 18px;
	border-right: 1px solid var(--line);
}

.stat:last-child {
	border-right: none;
}

@media (max-width: 820px) {
	.stat:nth-child(2n) {
		border-right: none;
	}

	.stat {
		border-bottom: 1px solid var(--line);
	}
}

.stat .num {
	font-family: 'Outfit';
	font-size: 30px;
	color: var(--gold-deep);
	font-weight: 600;
}

.stat .lbl {
	font-size: 10.5px;
	letter-spacing: 1.3px;
	text-transform: uppercase;
	color: var(--ink-soft);
	margin-top: 6px;
}

/* ---------- WHAT WE OFFER ---------- */
.offer {
	padding-top: 0;
	margin-top: -60px;
}

.offer-head {
	text-align: center;
	max-width: 640px;
	margin: 46px auto 46px;
}

.offer-head h2 {
	font-size: clamp(24px, 2.8vw, 32px);
	margin-top: 12px;
}

.offer-grid {
	max-width: 900px;
	margin: 0 auto;
	display: grid;
	grid-template-columns:1fr 1fr;
	gap: 26px;
}

@media (max-width: 700px) {
	.offer-grid {
		grid-template-columns:1fr;
	}
}

.offer-card {
	background: #fff;
	border: 1px solid var(--line);
	padding: 38px 34px;
	text-align: center;
}

.offer-medal {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	border: 1px solid var(--gold);
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 22px;
}

.offer-card h3 {
	font-size: 24px;
	margin-bottom: 12px;
}

.offer-card p {
	font-size: 15px;
	color: var(--ink-soft);
	line-height: 1.75;
}

/* ---------- WHY CHOOSE ---------- */
.why {
	background: var(--charcoal);
	color: #e9e3d2;
}

.why .wrap {
	text-align: center;
}

.why .eyebrow {
	color: var(--gold-light);
}

.why h2 {
	font-size: clamp(24px, 2.8vw, 32px);
	color: #faf6ea;
	margin: 12px 0 44px;
}

.why-grid {
	max-width: 900px;
	margin: 0 auto;
	display: grid;
	grid-template-columns:1fr 1fr;
	gap: 1px;
	background: rgba(230, 199, 137, 0.18);
	text-align: left;
}

@media (max-width: 700px) {
	.why-grid {
		grid-template-columns:1fr;
	}
}

.why-item {
	background: var(--charcoal);
	padding: 26px 30px;
	display: flex;
	gap: 16px;
	align-items: flex-start;
}

.why-item .tick {
	width: 26px;
	height: 26px;
	border-radius: 50%;
	border: 1px solid var(--gold-light);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	margin-top: 2px;
}

.why-item p {
	font-size: 15px;
	color: #d9d3c0;
	line-height: 1.6;
}

/* ---------- TRUST STRIP ---------- */
.trust {
	max-width: 900px;
	margin: 0 auto;
	text-align: center;
}

.trust p {
	font-size: 16px;
	color: var(--ink-soft);
	line-height: 1.9;
	margin-bottom: 20px;
}

.trust p b {
	color: var(--ink);
}

/* ---------- CLOSING BANNER ---------- */
.closer {
	background: linear-gradient(120deg, #8a6a25, #e8c987 45%, #8a6a25);
	text-align: center;
	padding: 60px 8vw;
}

.closer h2 {
	font-size: clamp(24px, 2.8vw, 32px);
	color: #241a08;
}

.closer p {
	font-size: 16px;
	color: #3a2a08;
	margin-top: 10px;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
	line-height: 1.7;
}
