: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: 90px 8vw;
}

@media (max-width: 820px) {
	section {
		padding: 56px 6vw;
	}
}

.wrap {
	max-width: 1180px;
	margin: 0 auto;
}

/* ---------- HERO ---------- */
.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);
}

/* ---------- STATS ---------- */
.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;
}

.best{
	padding-top: 0;
}
/* ---------- WHAT WE DO BEST (bento: featured + stack) ---------- */
.best-head {
	text-align: center;
	max-width: 600px;
	margin: 0 auto 50px;
}

.best-head h2 {
	font-size: clamp(28px, 3.2vw, 40px);
	margin-top: 12px;
}

.best-bento {
	max-width: 1160px;
	margin: 0 auto;
	display: grid;
	grid-template-columns:1.05fr 1fr;
	gap: 24px;
}

@media (max-width: 860px) {
	.best-bento {
		grid-template-columns:1fr;
	}
}

.best-feature {
	background: var(--charcoal);
	color: #e9e3d2;
	padding: 46px 42px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	box-shadow: 0 24px 50px rgba(18, 21, 29, 0.16);
}

.best-feature .best-icon {
	background: rgba(230, 199, 137, 0.12);
}

.best-feature .index {
	color: var(--gold-light);
}

.best-feature .big-stat {
	font-family: 'Outfit', sans-serif;
	font-size: 60px;
	font-weight: 600;
	color: var(--gold-light);
	line-height: 1;
	margin: 6px 0 4px;
}

.best-feature h3 {
	color: #faf6ea;
	font-size: 23px;
	margin-bottom: 16px;
	line-height: 1.3;
}

.best-feature ul li {
	font-size: 15px;
	color: #c9c3b1;
}

.best-feature ul li::before {
	background: var(--gold-light);
}

.best-stack {
	display: flex;
	flex-direction: column;
	gap: 22px;
}

.best-mini {
	background: #fff;
	border: 1px solid var(--line);
	padding: 28px 30px;
	flex: 1;
	display: grid;
	grid-template-columns:54px 1fr;
	gap: 22px;
	box-shadow: 0 10px 26px rgba(18, 21, 29, 0.05);
}

@media (max-width: 480px) {
	.best-mini {
		grid-template-columns:1fr;
	}
}

.best-mini .best-icon {
	margin-bottom: 0;
}

.best-icon {
	width: 54px;
	height: 54px;
	border-radius: 50%;
	background: var(--charcoal);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	margin-bottom: 18px;
}

.index {
	font-family: 'Outfit', sans-serif;
	font-size: 13px;
	color: var(--gold-deep);
	font-weight: 600;
	letter-spacing: 1.5px;
	display: block;
	margin-bottom: 6px;
}

.best-feature h3, .best-mini h3 {
	font-size: 20px;
	line-height: 1.3;
	margin-bottom: 12px;
}

.best-feature ul, .best-mini ul {
	list-style: none;
}

.best-feature li, .best-mini li {
	display: flex;
	gap: 9px;
	font-size: 15px;
	color: var(--ink-soft);
	line-height: 1.65;
	margin-bottom: 8px;
}

.best-feature li::before, .best-mini li::before {
	content: '';
	width: 5px;
	height: 5px;
	margin-top: 6px;
	background: var(--gold);
	border-radius: 50%;
	flex-shrink: 0;
}

/* ---------- WHAT SETS US APART ---------- */
.apart {
	background: var(--charcoal);
	color: #e9e3d2;
}

.apart .section-head {
	text-align: center;
	max-width: 600px;
	margin: 0 auto 48px;
}

.apart .eyebrow {
	color: var(--gold-light);
}

.apart h2 {
	font-size: clamp(28px, 3.2vw, 38px);
	color: #faf6ea;
	margin-top: 12px;
}

.apart-grid {
	max-width: 1000px;
	margin: 0 auto;
	display: grid;
	grid-template-columns:repeat(3, 1fr);
	gap: 2px;
	background: rgba(230, 199, 137, 0.15);
}

@media (max-width: 760px) {
	.apart-grid {
		grid-template-columns:1fr;
	}
}

.apart-item {
	background: var(--charcoal);
	padding: 32px 26px;
	text-align: center;
}

.apart-item svg {
	margin-bottom: 16px;
}

.apart-item p {
	font-size: 16px;
	color: #d9d3c0;
	line-height: 1.6;
}

/* ---------- SIGNOFF ---------- */
.signoff {
	text-align: center;
	padding: 70px 8vw;
}

.signoff .brand {
	font-family: 'Outfit', sans-serif;
	font-size: 26px;
	font-weight: 500;
	color: var(--ink);
	margin-bottom: 10px;
}

.signoff .tag {
	font-size: 16px;
	color: var(--gold-deep);
	letter-spacing: .5px;
	font-weight: 500;
}
