:root{
	--navy:#0B0F17CC;
	--navy-2:#1f2637;
	--navy-3:#2a3145;
	--gold:#c9a04f;
	--gold-deep:#a67c2e;
	--gold-light:#e8cd91;
	--cream:#f7f4ec;
	--card:#ffffff;
	--ink:#1c2130;
	--muted:#6b7280;
	--line:#e7e2d6;
}

* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

h1, h2, h3, h4, .brand, .nav a, .btn {
	font-family: 'Outfit', sans-serif;
}

a {
	text-decoration: none;
	color: inherit;
}

img {
	display: block;
	max-width: 100%;
}

.wrap {
	max-width: 1400px;
	margin: 2rem auto;
	padding: 0 24px;
}

.ticker {
	background: var(--navy);
	color: #cfd3dc;
	font-size: 12.5px;
	padding: 7px 0;
	border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.ticker .wrap {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 6px;
}

.ticker .prices {
	display: flex;
	gap: 22px;
}

.ticker .dot {
	color: var(--gold);
	margin-right: 5px;
}

.brand {
	color: #fff;
	font-weight: 600;
	font-size: 19px;
	display: flex;
	align-items: center;
	gap: 8px;
}

.brand span {
	color: var(--gold);
}

nav.main {
	display: flex;
	gap: 30px;
}

nav.main a {
	color: #d8dbe4;
	font-size: 14.5px;
	font-weight: 500;
	transition: color .15s;
}

nav.main a:hover, nav.main a.active {
	color: var(--gold);
}

.get-started {
	background: var(--gold);
	color: var(--navy);
	font-weight: 600;
	font-size: 14px;
	padding: 10px 22px;
	border-radius: 24px;
}

/* hero */
.hero {
	background: var(--navy);
	padding: 64px 0 88px;
	position: relative;
	overflow: hidden;
}

.hero:after {
	content: "";
	position: absolute;
	right: -120px;
	top: -80px;
	width: 420px;
	height: 420px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(201, 160, 79, .14), transparent 70%);
}

.eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: var(--gold);
	background: rgba(201, 160, 79, .1);
	border: 1px solid rgba(201, 160, 79, .35);
	padding: 6px 14px;
	border-radius: 20px;
	font-size: 12px;
	letter-spacing: .06em;
	font-weight: 600;
	text-transform: uppercase;
}

.hero h1 {
	color: #fff;
	font-size: 44px;
	line-height: 1.15;
	font-weight: 600;
	margin: 20px 0 14px;
	max-width: 640px;
}

.hero h1 em {
	font-style: normal;
	color: var(--gold);
}

.hero p {
	color: #aeb3c1;
	font-size: 16px;
	max-width: 560px;
	line-height: 1.6;
	margin-bottom: 30px;
}

.search-bar {
	display: flex;
	max-width: 520px;
	background: var(--navy-2);
	border: 1px solid rgba(255, 255, 255, .1);
	border-radius: 12px;
	padding: 6px;
	gap: 6px;
}

.search-bar input {
	flex: 1;
	background: transparent;
	border: none;
	outline: none;
	color: #fff;
	font-size: 14.5px;
	padding: 10px 14px;
	font-family: 'Inter', sans-serif;
}

.search-bar input::placeholder {
	color: #7c8298;
}

.search-bar button {
	background: var(--gold);
	color: var(--navy);
	border: none;
	font-weight: 600;
	font-size: 14px;
	padding: 0 22px;
	border-radius: 8px;
	cursor: pointer;
	font-family: 'Poppins', sans-serif;
}

/* purity legend */
.legend {
	display: flex;
	gap: 22px;
	margin-top: 34px;
	flex-wrap: wrap;
}

.legend .item {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 12.5px;
	color: #8f95a8;
}

.legend .swatch {
	width: 9px;
	height: 9px;
	border-radius: 50%;
}

section {
	padding: 60px 0;
}

.section-head {
	text-align: center;
	margin-bottom: 38px;
}

.section-head .eyebrow-dark {
	color: var(--gold-deep);
	font-size: 12px;
	letter-spacing: .08em;
	font-weight: 600;
	text-transform: uppercase;
}

.section-head h2 {
	font-size: 30px;
	font-weight: 600;
	margin-top: 10px;
	color: var(--navy);
}

.section-head .rule {
	width: 56px;
	height: 3px;
	background: var(--gold);
	margin: 16px auto 0;
	border-radius: 2px;
}

/* category pills */
.pills {
	display: flex;
	gap: 10px;
	justify-content: center;
	flex-wrap: wrap;
	margin-bottom: 44px;
}

.pill {
	padding: 9px 18px;
	border-radius: 22px;
	font-size: 13.5px;
	font-weight: 500;
	border: 1px solid var(--line);
	background: #fff;
	color: var(--muted);
	cursor: pointer;
	transition: all .15s;
}

.pill.active {
	background: var(--navy);
	border-color: var(--navy);
	color: var(--gold-light);
}

.pill:hover:not(.active) {
	border-color: var(--gold);
	color: var(--gold-deep);
}

/* featured */
.featured {
	display: grid;
	grid-template-columns:1.1fr 1fr;
	gap: 0;
	background: var(--navy);
	border-radius: 18px;
	overflow: hidden;
	margin-bottom: 56px;
}

.featured .img {
	background: linear-gradient(135deg, #2a3145, #161b28);
	position: relative;
	min-height: 340px;
	display: flex;
	align-items: flex-end;
	padding: 24px;
}

.featured .img .badge {
	background: rgba(201, 160, 79, .15);
	border: 1px solid var(--gold);
	color: var(--gold-light);
	font-size: 11.5px;
	font-weight: 600;
	padding: 6px 12px;
	border-radius: 16px;
	letter-spacing: .04em;
}

.featured .body {
	padding: 40px 40px 40px 36px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.featured .tag {
	color: var(--gold);
	font-size: 12px;
	font-weight: 600;
	letter-spacing: .06em;
	text-transform: uppercase;
	margin-bottom: 12px;
}

.featured h3 {
	color: #fff;
	font-size: 25px;
	font-weight: 600;
	line-height: 1.35;
	margin-bottom: 14px;
}

.featured p {
	color: #aeb3c1;
	font-size: 14.5px;
	line-height: 1.7;
	margin-bottom: 22px;
}

.featured .meta {
	display: flex;
	align-items: center;
	gap: 16px;
	color: #8f95a8;
	font-size: 12.5px;
}

.featured .meta span {
	display: flex;
	align-items: center;
	gap: 6px;
}

.featured .read-more {
	margin-top: 22px;
	color: var(--gold);
	font-weight: 600;
	font-size: 14px;
	display: inline-flex;
	align-items: center;
	gap: 6px;
}

/* content layout */
.layout {
	display: grid;
	grid-template-columns:1fr 320px;
	gap: 40px;
	align-items: start;
}

.main-col {
	min-width: 0;
}

/* sidebar */
.sidebar {
	display: flex;
	flex-direction: column;
	gap: 24px;
	position: sticky;
	top: 88px;
}

.side-card {
	background: var(--card);
	border: 1px solid var(--line);
	border-radius: 16px;
	padding: 24px;
}

.side-card h5 {
	font-size: 12px;
	font-weight: 600;
	letter-spacing: .06em;
	text-transform: uppercase;
	color: var(--gold-deep);
	margin-bottom: 18px;
}

.cat-list {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.cat-list li a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 10px 4px;
	font-size: 14px;
	color: var(--ink);
	border-bottom: 1px solid var(--line);
	transition: color .15s;
}

.cat-list li:last-child a {
	border-bottom: none;
}

.cat-list li a:hover {
	color: var(--gold-deep);
}

.cat-list .count {
	background: var(--cream);
	color: var(--muted);
	font-size: 11.5px;
	font-weight: 600;
	padding: 3px 9px;
	border-radius: 10px;
}

.recent-list {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.recent-item {
	display: flex;
	gap: 12px;
}

.recent-thumb {
	width: 60px;
	height: 60px;
	border-radius: 10px;
	flex: 0 0 60px;
}

.recent-item h6 {
	font-size: 13.5px;
	font-weight: 600;
	line-height: 1.4;
	color: var(--navy);
	margin-bottom: 5px;
}

.recent-item .r-meta {
	font-size: 11.5px;
	color: var(--muted);
}

.side-cta {
	background: var(--navy);
	border-radius: 16px;
	padding: 26px 22px;
	color: #fff;
}

.side-cta h5 {
	color: var(--gold-light);
}

.side-cta p {
	font-size: 13px;
	color: #aeb3c1;
	line-height: 1.6;
	margin-bottom: 16px;
}

.side-cta a.btn-side {
	display: block;
	text-align: center;
	background: var(--gold);
	color: var(--navy);
	font-weight: 600;
	font-size: 13.5px;
	padding: 11px;
	border-radius: 22px;
	font-family: 'Outfit', sans-serif;
}

/* grid */
.grid {
	display: grid;
	grid-template-columns:repeat(2, 1fr);
	gap: 26px;
}

.card {
	background: var(--card);
	border: 1px solid var(--line);
	border-radius: 16px;
	overflow: hidden;
	transition: transform .18s, box-shadow .18s;
}

.card:hover {
	transform: translateY(-4px);
	box-shadow: 0 14px 30px rgba(22, 27, 40, .08);
}

.card .thumb {
	height: 160px;
	position: relative;
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	padding: 14px;
}

.thumb.t1 {
	background: url('../../assets/img.png') no-repeat center center;
	background-size: cover;
	/*background: linear-gradient(135deg, #e8cd91, #c9a04f);*/
}

.thumb.t2 {
	background: linear-gradient(135deg, #3a4358, #161b28);
}

.thumb.t3 {
	background: linear-gradient(135deg, #d9c69a, #a67c2e);
}

.thumb.t4 {
	background: linear-gradient(135deg, #232a3c, #161b28);
}

.thumb.t5 {
	background: linear-gradient(135deg, #e2c987, #b98d3a);
}

.thumb.t6 {
	background: linear-gradient(135deg, #2e3648, #1a2033);
}

.cat-tag {
	background: rgba(255, 255, 255, .9);
	color: var(--navy);
	font-size: 10.5px;
	font-weight: 600;
	padding: 5px 10px;
	border-radius: 12px;
	letter-spacing: .03em;
}

.purity {
	font-size: 10.5px;
	font-weight: 700;
	padding: 5px 9px;
	border-radius: 12px;
	color: #fff;
}

.purity.p24 {
	background: #a67c2e;
}

.purity.p18 {
	background: #6b7280;
}

.purity.p14 {
	background: #8a8f9c;
}

.card .body {
	padding: 20px 20px 22px;
}

.card h4 {
	font-size: 16.5px;
	font-weight: 600;
	line-height: 1.4;
	margin-bottom: 10px;
	color: var(--navy);
}

.card p {
	font-size: 13.5px;
	color: var(--muted);
	line-height: 1.65;
	margin-bottom: 16px;
}

.card .meta {
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 12px;
	color: #98937f;
	border-top: 1px solid var(--line);
	padding-top: 14px;
}

.card .meta .author {
	display: flex;
	align-items: center;
	gap: 7px;
}

.author .dot-av {
	width: 22px;
	height: 22px;
	border-radius: 50%;
	background: var(--navy);
	color: var(--gold-light);
	font-size: 9.5px;
	font-weight: 700;
	display: flex;
	align-items: center;
	justify-content: center;
}

.load-more {
	display: block;
	margin: 44px auto 0;
	background: var(--navy);
	color: var(--gold-light);
	font-weight: 600;
	font-size: 14px;
	padding: 13px 34px;
	border-radius: 26px;
	border: none;
	cursor: pointer;
}

/* newsletter, matching site card style */
.newsletter {
	background: var(--card);
	border: 1px solid var(--line);
	border-radius: 18px;
	padding: 40px 46px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 30px;
	flex-wrap: wrap;
}

.newsletter h3 {
	font-size: 22px;
	color: var(--navy);
	font-weight: 600;
	margin-bottom: 6px;
}

.newsletter p {
	color: var(--muted);
	font-size: 14px;
}

.newsletter form {
	display: flex;
	gap: 10px;
	flex: 0 0 auto;
}

.newsletter input {
	border: 1px solid var(--line);
	border-radius: 10px;
	padding: 12px 16px;
	font-size: 14px;
	width: 260px;
	font-family: 'Inter', sans-serif;
	outline: none;
}

.newsletter input:focus {
	border-color: var(--gold);
}

.newsletter button {
	background: var(--navy);
	color: var(--gold-light);
	border: none;
	border-radius: 10px;
	padding: 0 24px;
	font-weight: 600;
	font-size: 14px;
	cursor: pointer;
	font-family: 'Outfit', sans-serif;
}

@media (max-width: 960px) {
	nav.main {
		display: none;
	}

	.featured {
		grid-template-columns:1fr;
	}

	.layout {
		grid-template-columns:1fr;
	}

	.sidebar {
		position: static;
		flex-direction: row;
		flex-wrap: wrap;
	}

	.sidebar .side-card, .sidebar .side-cta {
		flex: 1 1 260px;
	}

	.hero h1 {
		font-size: 32px;
	}
}

@media (max-width: 600px) {
	.grid {
		grid-template-columns:1fr;
	}

	.sidebar {
		flex-direction: column;
	}

	.newsletter {
		flex-direction: column;
		align-items: flex-start;
	}

	.newsletter form {
		width: 100%;
	}

	.newsletter input {
		width: 100%;
	}
}
