
: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 (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;
	text-align: center;
}

.hero .eyebrow {
	color: var(--gold-light);
}

.hero h1 {
	font-size: clamp(26px, 4.2vw, 42px);
	line-height: 1.2;
	margin: 16px auto 20px;
	color: #faf6ea;
	max-width: 760px;
}

.hero h1 span {
	color: var(--gold-light);
}

.hero p {
	font-size: 15.5px;
	line-height: 1.85;
	color: #c9c3b1;
	max-width: 560px;
	margin: 0 auto;
	padding-bottom: 110px;
}

.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', sans-serif;
	font-size: 26px;
	color: var(--gold-deep);
	font-weight: 600;
}

.stat .lbl {
	font-size: 10px;
	letter-spacing: 1.1px;
	text-transform: uppercase;
	color: var(--ink-soft);
	margin-top: 6px;
}

/* ---------- FEATURES (certification seal wall) ---------- */
.features {
	padding-top: 0;
}

.features-head {
	text-align: center;
	max-width: 600px;
	margin: 0 auto 54px;
}

.features-head h2 {
	font-size: clamp(26px, 3vw, 36px);
	margin-top: 12px;
}

.feature-grid {
	max-width: 1080px;
	margin: 0 auto;
	display: grid;
	grid-template-columns:repeat(4, 1fr);
}

@media (max-width: 900px) {
	.feature-grid {
		grid-template-columns:repeat(2, 1fr);
		row-gap: 44px;
	}
}

@media (max-width: 520px) {
	.feature-grid {
		grid-template-columns:1fr;
	}
}

.feature-card {
	text-align: center;
	padding: 0 24px;
	border-left: 1px solid var(--line);
}

.feature-card:first-child {
	border-left: none;
}

@media (max-width: 900px) {
	.feature-card {
		border-left: none;
	}

	.feature-card:nth-child(2n+1) {
		border-right: 1px solid var(--line);
	}
}

@media (max-width: 520px) {
	.feature-card:nth-child(2n+1) {
		border-right: none;
	}
}

.feature-seal {
	width: 88px;
	height: 88px;
	margin: 0 auto 22px;
	position: relative;
}

.feature-card .idx {
	font-family:  'Outfit', sans-serif;
	font-size: 12px;
	color: var(--gold-deep);
	font-weight: 600;
	letter-spacing: 2px;
	display: block;
	margin-bottom: 10px;
}

.feature-card h3 {
	font-size: 18.5px;
	margin-bottom: 10px;
}

.feature-card p {
	font-size: 14px;
	color: var(--ink-soft);
	line-height: 1.65;
	max-width: 210px;
	margin: 0 auto;
}

/* ---------- CLOSING ---------- */
.closer {
	background: var(--charcoal);
	color: #e9e3d2;
	text-align: center;
}

.closer h2 {
	font-size: clamp(24px, 2.8vw, 32px);
	color: #faf6ea;
}

.closer p {
	font-size: 16px;
	color: #a79f8a;
	max-width: 520px;
	margin: 14px auto 0;
	line-height: 1.75;
}
