/* ==========================================================================
   Kapila Jewels — design CSS ported from the approved homepage HTML
   ========================================================================== */

:root,
[data-theme="light"] {
	--forest-deep: #3F4E40;
	--forest-mid: #4a5e4b;
	--forest-line: #5c6e5d;
	--cream: #f3e9d1;
	--cream-soft: #faf5e8;
	--cream-dim: #e9dcbb;
	--gold: #c69a55;
	--gold-light: #e2c087;
	--gold-deep: #a67d3d;
	--ink: #1a201a;
	--ink-soft: #4a5a4c;
	--parchment: #ede1c3;
	--parchment-dim: #c9bd9e;
	--shadow: 0 30px 60px -25px rgba(6, 15, 10, 0.45);
}

[data-theme="dark"] {
	--cream: #1a201a;
	--cream-soft: #202820;
	--cream-dim: #263026;
	--ink: #f0e5d3;
	--ink-soft: #b0c4b0;
	--parchment: #d4c5a8;
	--parchment-dim: #a89b82;
	--shadow: 0 30px 60px -25px rgba(0, 0, 0, 0.55);
}

* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: 'Jost', sans-serif;
	background: var(--cream);
	color: var(--ink);
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}

img {
	max-width: 100%;
	display: block;
}

a {
	color: inherit;
	text-decoration: none;
}

ul {
	list-style: none;
}

.wrap {
	max-width: 1240px;
	margin: 0 auto;
	padding: 0 40px;
}

.eyebrow {
	font-family: 'Jost', sans-serif;
	font-size: 12px;
	letter-spacing: 4px;
	text-transform: uppercase;
	font-weight: 500;
}

.display {
	font-family: 'Playfair Display', serif;
}

.script {
	font-family: 'Cormorant Garamond', serif;
	font-style: italic;
}

.flourish {
	color: var(--gold);
	font-size: 14px;
	letter-spacing: 2px;
}

.btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-family: 'Jost', sans-serif;
	font-size: 12px;
	letter-spacing: 3px;
	text-transform: uppercase;
	padding: 16px 34px;
	border: 1px solid currentColor;
	font-weight: 500;
	transition: all .35s ease;
	cursor: pointer;
	background: none;
}

.btn-gold {
	color: var(--forest-deep);
	background: var(--gold);
	border-color: var(--gold);
}

.btn-gold:hover {
	background: var(--gold-light);
	border-color: var(--gold-light);
}

.btn-outline-light {
	color: var(--parchment);
	border-color: rgba(237, 225, 195, 0.5);
}

.btn-outline-light:hover {
	border-color: var(--gold);
	color: var(--gold-light);
}

.btn-outline-dark {
	color: var(--ink);
	border-color: var(--ink);
}

.btn-outline-dark:hover {
	border-color: var(--gold-deep);
	color: var(--gold-deep);
}

.theme-toggle {
	background: none;
	border: none;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	padding: 4px;
	color: inherit;
	transition: .3s;
}

.theme-toggle:hover {
	color: var(--gold-light);
}

.icon-deer {
	width: 100%;
	height: 100%;
	color: var(--gold);
}

.icon-deer path,
.icon-deer circle {
	stroke: currentColor;
}

/* ===== NAV ===== */
.nav {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	z-index: 50;
	padding: 30px 0 0 0;
}

.nav-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	position: relative;
}

.nav-links {
	display: flex;
	gap: 34px;
	flex: 0 0 auto;
	justify-content: center;
}

.nav-links li {
	line-height: 1;
	list-style-type: none;
}

.nav-links a {
	font-size: 11px;
	letter-spacing: 2.5px;
	text-transform: uppercase;
	color: var(--parchment);
	padding-bottom: 6px;
	border-bottom: 1px solid transparent;
	transition: .3s;
}

.nav-links a:hover {
	border-color: var(--gold);
	color: var(--gold-light);
}

/* dropdown submenus */
.nav-links li {
	position: relative;
}

.nav-links li.menu-item-has-children > a::after {
	content: "";
	display: inline-block;
	width: 5px;
	height: 5px;
	margin-left: 8px;
	border-right: 1px solid currentColor;
	border-bottom: 1px solid currentColor;
	transform: rotate(45deg) translateY(-2px);
	opacity: .7;
}

.nav-links .sub-menu {
	position: absolute;
	top: calc(100% + 10px);
	left: 50%;
	transform: translateX(-50%);
	min-width: 210px;
	background: var(--forest-deep);
	border: 1px solid rgba(198, 154, 85, 0.3);
	border-top: 2px solid var(--gold);
	padding: 16px 0;
	box-shadow: var(--shadow);
	text-align: center;
	opacity: 0;
	visibility: hidden;
	transition: .25s;
	z-index: 60;
}

.nav-links li:hover > .sub-menu,
.nav-links li:focus-within > .sub-menu {
	opacity: 1;
	visibility: visible;
}

.nav-links .sub-menu a {
	display: block;
	padding: 9px 28px;
	border-bottom: none;
	white-space: nowrap;
}

.nav-links .sub-menu a:hover {
	color: var(--gold-light);
}

.nav-icons {
	display: flex;
	gap: 18px;
	align-items: center;
	color: var(--parchment);
	flex: 1;
	justify-content: flex-end;
}

.nav-icons .nav-icon-link {
	font-size: 11px;
	letter-spacing: 2px;
	transition: .3s;
}

.nav-icon-link:hover {
	color: var(--gold-light);
}

.nav-logo {
	flex: 1;
}

.nav-logo .mark {
	width: 200px;
	height: auto;
}

.nav-cart {
	position: relative;
	display: inline-flex;
	align-items: center;
	padding-bottom: 0;
	border-bottom: none;
}

.nav-cart-count {
	position: absolute;
	top: -7px;
	right: -11px;
	min-width: 16px;
	height: 16px;
	padding: 0 4px;
	border-radius: 50%;
	background: var(--gold);
	color: var(--forest-deep);
	font-size: 9px;
	font-weight: 600;
	line-height: 16px;
	text-align: center;
}

.hamburger {
	display: none;
	background: none;
	border: 0;
	padding: 4px;
	cursor: pointer;
	color: var(--parchment);
}

.hamburger-box {
	display: flex;
	flex-direction: column;
	gap: 5px;
	width: 22px;
}

.hamburger-box span {
	display: block;
	height: 2px;
	background: currentColor;
}

.drawer-backdrop {
	position: fixed;
	inset: 0;
	z-index: 85;
	background: rgba(0, 0, 0, 0.5);
	opacity: 0;
	visibility: hidden;
	transition: opacity .3s, visibility .3s;
}

.drawer-backdrop.open {
	opacity: 1;
	visibility: visible;
}

.drawer {
	position: fixed;
	top: 0;
	right: 0;
	z-index: 90;
	width: min(320px, 84vw);
	height: 100vh;
	height: 100dvh;
	background: var(--forest-deep);
	transform: translateX(100%);
	transition: transform .3s;
	display: flex;
	flex-direction: column;
	box-shadow: var(--shadow);
}

.drawer.open {
	transform: none;
}

.drawer-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 26px 26px 18px;
	border-bottom: 1px solid var(--forest-line);
}

.drawer-head .mark {
	width: 140px;
	height: auto;
}

.drawer-close {
	background: none;
	border: 0;
	color: var(--parchment);
	font-size: 30px;
	line-height: 1;
	cursor: pointer;
	transition: .3s;
}

.drawer-close:hover {
	color: var(--gold-light);
}

.drawer-nav {
	overflow-y: auto;
	padding: 12px 0 40px;
}

.drawer-nav li {
	list-style-type: none;
	position: relative;
}

.drawer-nav li.menu-item-has-children > a {
	padding-right: 56px;
}

.drawer-nav a {
	display: block;
	padding: 14px 26px;
	font-size: 12px;
	letter-spacing: 2.5px;
	text-transform: uppercase;
	color: var(--parchment);
	transition: .3s;
}

.drawer-nav a:hover {
	color: var(--gold-light);
}

.drawer-sub-toggle {
	position: absolute;
	top: 0;
	right: 0;
	width: 52px;
	height: 100%;
	background: none;
	border: 0;
	cursor: pointer;
	color: var(--parchment);
}

.drawer-sub-toggle::after {
	content: "";
	display: block;
	margin: 0 auto;
	width: 8px;
	height: 8px;
	border-right: 1px solid currentColor;
	border-bottom: 1px solid currentColor;
	transform: rotate(45deg);
	transition: transform .3s;
}

.drawer-nav li.open > .drawer-sub-toggle::after {
	transform: rotate(225deg);
}

.drawer-nav .sub-menu {
	max-height: 0;
	overflow: hidden;
	transition: max-height .3s ease;
	background: rgba(0, 0, 0, 0.18);
}

.drawer-nav li.open > .sub-menu {
	max-height: 500px;
}

.drawer-nav .sub-menu a {
	padding: 12px 26px 12px 44px;
	font-size: 11px;
	font-weight: 300;
}

body.drawer-open {
	overflow: hidden;
}

/* ===== HERO ===== */
.hero {
	position: relative;
	min-height: 100vh;
	background:
		radial-gradient(ellipse 900px 500px at 50% -10%, rgba(198, 154, 85, 0.18), transparent 60%),
		radial-gradient(ellipse 1200px 800px at 80% 110%, rgba(92, 110, 93, 0.5), transparent 60%),
		linear-gradient(180deg, var(--forest-deep) 0%, #1a251a 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 160px 40px 100px;
	overflow: hidden;
}

.hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background-image: radial-gradient(rgba(243, 233, 209, 0.035) 1px, transparent 1px);
	background-size: 3px 3px;
	pointer-events: none;
}

.hero-watermark {
	position: absolute;
	right: -120px;
	top: 50%;
	transform: translateY(-50%);
	width: 640px;
	height: 640px;
	opacity: 0.05;
	color: var(--gold);
}

.hero-content {
	position: relative;
	text-align: center;
	max-width: 760px;
	z-index: 2;
}

.hero-mark {
	width: 54px;
	height: 54px;
	margin: 0 auto 26px;
}

.hero .eyebrow {
	color: var(--gold-light);
	margin-bottom: 22px;
}

.hero h1 {
	font-size: clamp(40px, 6vw, 74px);
	line-height: 1.1;
	color: var(--parchment);
	font-weight: 500;
	margin-bottom: 22px;
	letter-spacing: 0.5px;
}

.hero h1 em {
	font-family: 'Cormorant Garamond', serif;
	font-style: italic;
	color: var(--gold-light);
	font-weight: 500;
}

.hero p {
	font-size: 16px;
	line-height: 1.9;
	color: var(--parchment-dim);
	max-width: 520px;
	margin: 0 auto 42px;
	font-weight: 300;
}

.hero-ctas {
	display: flex;
	gap: 18px;
	justify-content: center;
	flex-wrap: wrap;
}

.scroll-cue {
	position: absolute;
	bottom: 36px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
	color: var(--parchment-dim);
	font-size: 10px;
	letter-spacing: 3px;
	text-transform: uppercase;
}

.scroll-cue .line {
	width: 1px;
	height: 40px;
	background: linear-gradient(var(--gold), transparent);
}

/* ===== MARQUEE ===== */
.marquee {
	background: var(--forest-mid);
	border-top: 1px solid var(--forest-line);
	border-bottom: 1px solid var(--forest-line);
	padding: 16px 0;
	overflow: hidden;
	white-space: nowrap;
}

.marquee-track {
	display: inline-flex;
	gap: 50px;
	animation: scroll 32s linear infinite;
}

.marquee span {
	font-family: 'Cormorant Garamond', serif;
	font-style: italic;
	font-size: 17px;
	color: var(--parchment-dim);
	display: inline-flex;
	align-items: center;
	gap: 50px;
}

.marquee span i {
	color: var(--gold);
	font-style: normal;
	font-size: 10px;
}

@keyframes scroll {
	from {
		transform: translateX(0);
	}

	to {
		transform: translateX(-50%);
	}
}

/* ===== SECTION HEADERS ===== */
.section {
	padding: 130px 0;
}

.section-cream {
	background: var(--cream);
}

.section-forest {
	background: var(--forest-deep);
	color: var(--parchment);
	position: relative;
}

.section-forest.textured::before {
	content: "";
	position: absolute;
	inset: 0;
	background-image: radial-gradient(rgba(243, 233, 209, 0.03) 1px, transparent 1px);
	background-size: 3px 3px;
	pointer-events: none;
}

.section-forest.textured > * {
	position: relative;
	z-index: 1;
}

.head-center {
	text-align: center;
	max-width: 640px;
	margin: 0 auto 70px;
}

.head-center .eyebrow {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 14px;
	margin-bottom: 18px;
	color: var(--gold-deep);
}

.section-forest .head-center .eyebrow {
	color: var(--gold-light);
}

.head-center .eyebrow::before,
.head-center .eyebrow::after {
	content: "";
	width: 34px;
	height: 1px;
	background: currentColor;
	opacity: .5;
}

.head-center h2 {
	font-size: clamp(32px, 4vw, 48px);
	font-weight: 500;
	line-height: 1.2;
}

/* ===== BRAND STORY ===== */
.story {
	display: grid;
	grid-template-columns: 0.9fr 1.1fr;
	gap: 90px;
	align-items: center;
}

.story-visual {
	position: relative;
}

.story-frame {
	aspect-ratio: 3/4;
	border-radius: 50% 50% 6px 6px / 34% 34% 6px 6px;
	background:
		radial-gradient(circle at 30% 20%, rgba(198, 154, 85, 0.35), transparent 55%),
		linear-gradient(160deg, #3a4a3b, #3F4E40 70%);
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: var(--shadow);
	position: relative;
	overflow: hidden;
	border: 1px solid rgba(198, 154, 85, 0.3);
}

.story-frame .icon-deer {
	width: 38%;
	height: 38%;
	opacity: 0.9;
}

.story-badge {
	position: absolute;
	bottom: -30px;
	right: -30px;
	width: 150px;
	height: 150px;
	border-radius: 50%;
	background: var(--gold);
	color: var(--forest-deep);
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	box-shadow: var(--shadow);
	border: 6px solid var(--cream);
}

.story-badge span {
	font-family: 'Playfair Display', serif;
	font-size: 13px;
	line-height: 1.5;
	letter-spacing: 1px;
	padding: 0 18px;
}

.story-text .eyebrow {
	color: var(--gold-deep);
	margin-bottom: 20px;
	display: flex;
	align-items: center;
	gap: 12px;
}

.story-text .eyebrow::before {
	content: "";
	width: 34px;
	height: 1px;
	background: currentColor;
}

.story-text h2 {
	font-size: clamp(30px, 3.6vw, 44px);
	font-weight: 500;
	line-height: 1.25;
	margin-bottom: 26px;
}

.story-text p {
	font-size: 15.5px;
	line-height: 1.95;
	color: var(--ink-soft);
	font-weight: 300;
	margin-bottom: 20px;
	max-width: 480px;
}

.story-sig {
	margin-top: 36px;
	display: flex;
	align-items: center;
	gap: 16px;
}

.story-sig .name {
	font-family: 'Cormorant Garamond', serif;
	font-style: italic;
	font-size: 22px;
}

.story-sig .role {
	font-size: 10px;
	letter-spacing: 2.5px;
	text-transform: uppercase;
	color: var(--ink-soft);
}

/* ===== CATEGORY ARCHES ===== */
.cat-grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 26px;
}

.cat-card {
	text-align: center;
}

.cat-arch {
	aspect-ratio: 3/3.9;
	border-radius: 50% 50% 6px 6px / 32% 32% 6px 6px;
	background: linear-gradient(155deg, #3b4b3c 0%, #3F4E40 75%);
	border: 1px solid rgba(198, 154, 85, 0.28);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 22px;
	position: relative;
	overflow: hidden;
	transition: transform .45s ease, border-color .45s ease;
}

.cat-card:hover .cat-arch {
	transform: translateY(-8px);
	border-color: var(--gold);
}

.cat-arch::after {
	content: "";
	position: absolute;
	inset: 0;
	background: radial-gradient(circle at 50% 20%, rgba(198, 154, 85, 0.22), transparent 60%);
}

.cat-arch svg {
	width: 36%;
	height: 36%;
	color: var(--gold-light);
	position: relative;
	z-index: 2;
}

.cat-card h3 {
	font-family: 'Playfair Display', serif;
	font-size: 16px;
	font-weight: 500;
	letter-spacing: 0.5px;
	margin-bottom: 6px;
}

.cat-card p {
	font-size: 11px;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	color: var(--gold-light);
	opacity: .75;
}

/* ===== PRODUCTS ===== */
.filter-row {
	display: flex;
	justify-content: center;
	gap: 34px;
	margin-bottom: 56px;
	flex-wrap: wrap;
}

.filter-row a {
	font-size: 11px;
	letter-spacing: 2.5px;
	text-transform: uppercase;
	padding-bottom: 8px;
	border-bottom: 1px solid transparent;
	color: var(--ink-soft);
	transition: .3s;
}

.filter-row a.active,
.filter-row a:hover {
	color: var(--ink);
	border-color: var(--gold);
}

.child-row {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 10px;
	margin: -28px 0 40px;
}

.child-chip {
	font-family: 'Jost', sans-serif;
	font-size: 12px;
	letter-spacing: 1.2px;
	text-transform: uppercase;
	padding: 8px 18px;
	border: 1px solid var(--gold);
	border-radius: 999px;
	color: var(--ink-soft);
	transition: .3s;
}

.child-chip:hover {
	background: var(--gold);
	color: var(--cream);
}

.product-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 34px;
}

.product-card {
	position: relative;
}

.product-image {
	aspect-ratio: 3/3.6;
	background: linear-gradient(150deg, var(--cream-soft), var(--cream-dim));
	border-radius: 50% 50% 4px 4px / 26% 26% 4px 4px;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	margin-bottom: 22px;
	overflow: hidden;
	border: 1px solid rgba(166, 125, 61, 0.18);
	transition: box-shadow .4s ease;
}

.product-card:hover .product-image {
	box-shadow: 0 26px 44px -22px rgba(20, 38, 26, 0.35);
}

.product-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.product-image svg {
	width: 40%;
	height: 40%;
	color: var(--gold-deep);
}

.product-tag {
	position: absolute;
	bottom: 16px;
	left: 16px;
	background: var(--forest-deep);
	color: var(--gold-light);
	font-size: 9.5px;
	letter-spacing: 2px;
	text-transform: uppercase;
	padding: 6px 12px;
	z-index: 2;
}

.product-info {
	text-align: center;
}

.product-info .cat {
	font-size: 10px;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: var(--gold-deep);
	margin-bottom: 8px;
	display: block;
}

.product-info h3 {
	font-family: 'Playfair Display', serif;
	font-size: 17px;
	font-weight: 500;
	margin-bottom: 8px;
}

.product-info h3 a {
	transition: .3s;
}

.product-info h3 a:hover {
	color: var(--gold-deep);
}

.product-price {
	font-size: 14px;
	color: var(--ink-soft);
	font-weight: 400;
}

.product-price .old {
	text-decoration: line-through;
	opacity: .5;
	margin-right: 8px;
	font-size: 13px;
}

.view-all {
	text-align: center;
	margin-top: 66px;
}

/* ===== EDITORIAL BANNER ===== */
.editorial {
	position: relative;
	min-height: 70vh;
	display: flex;
	align-items: center;
	justify-content: center;
	background:
		radial-gradient(ellipse 800px 500px at 15% 30%, rgba(198, 154, 85, 0.14), transparent 60%),
		linear-gradient(120deg, #1a251a, #253025 60%, #1a251a);
	text-align: center;
	overflow: hidden;
	padding: 110px 40px;
}

.editorial-mark {
	width: 46px;
	height: 46px;
	margin: 0 auto 30px;
	opacity: .9;
	display: block;
}

.editorial blockquote {
	font-family: 'Cormorant Garamond', serif;
	font-style: italic;
	font-weight: 500;
	font-size: clamp(26px, 3.6vw, 42px);
	color: var(--parchment);
	max-width: 820px;
	margin: 0 auto 28px;
	line-height: 1.5;
}

.editorial cite {
	font-size: 11px;
	letter-spacing: 3px;
	text-transform: uppercase;
	color: var(--gold-light);
	font-style: normal;
}

/* ===== TESTIMONIALS / PRESS ===== */
.testi-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 44px;
	margin-bottom: 90px;
}

.testi-card {
	text-align: center;
	padding: 0 20px;
}

.testi-stars {
	color: var(--gold);
	letter-spacing: 4px;
	margin-bottom: 20px;
	font-size: 13px;
}

.testi-card p {
	font-family: 'Cormorant Garamond', serif;
	font-size: 19px;
	font-style: italic;
	line-height: 1.7;
	color: var(--ink);
	margin-bottom: 22px;
}

.testi-name {
	font-size: 11px;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: var(--ink-soft);
}

.press-row {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 70px;
	flex-wrap: wrap;
	padding-top: 56px;
	border-top: 1px solid rgba(166, 125, 61, 0.25);
}

.press-row span {
	font-family: 'Playfair Display', serif;
	font-size: 20px;
	letter-spacing: 2px;
	color: var(--ink-soft);
	opacity: .55;
}

.press-label {
	text-align: center;
	font-size: 10px;
	letter-spacing: 3px;
	text-transform: uppercase;
	color: var(--gold-deep);
	margin-bottom: 26px;
}

/* ===== INSTAGRAM ===== */
.insta-head {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	margin-bottom: 44px;
	flex-wrap: wrap;
	gap: 20px;
}

.insta-head h2 {
	font-family: 'Playfair Display', serif;
	font-size: 30px;
	font-weight: 500;
}

.insta-head .handle {
	color: var(--gold-light);
	font-size: 13px;
	letter-spacing: 1.5px;
}

.insta-grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 18px;
}

.insta-tile {
	aspect-ratio: 1/1;
	background: linear-gradient(155deg, #3b4b3c, #3F4E40);
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	overflow: hidden;
	border: 1px solid rgba(198, 154, 85, 0.2);
}

.insta-tile:nth-child(2n) {
	background: linear-gradient(155deg, #273027, #1a251a);
}

.insta-tile svg {
	width: 28%;
	height: 28%;
	color: var(--gold);
	opacity: .75;
}

.insta-tile::after {
	content: "♡";
	position: absolute;
	bottom: 12px;
	right: 14px;
	color: var(--parchment-dim);
	font-size: 13px;
	opacity: .6;
}

/* ===== NEWSLETTER ===== */
.newsletter {
	background: linear-gradient(120deg, var(--cream-dim), var(--cream-soft));
	padding: 100px 40px;
	text-align: center;
	position: relative;
	border-top: 1px solid rgba(166, 125, 61, 0.25);
	border-bottom: 1px solid rgba(166, 125, 61, 0.25);
}

.newsletter .icon-deer {
	width: 40px;
	height: 40px;
	margin: 0 auto 24px;
	color: var(--gold-deep);
	display: block;
}

.newsletter h2 {
	font-family: 'Playfair Display', serif;
	font-size: clamp(26px, 3.4vw, 38px);
	font-weight: 500;
	margin-bottom: 16px;
}

.newsletter p {
	font-size: 14.5px;
	color: var(--ink-soft);
	max-width: 440px;
	margin: 0 auto 34px;
	font-weight: 300;
}

.news-form {
	display: flex;
	max-width: 440px;
	margin: 0 auto;
	border-bottom: 1px solid var(--ink);
	padding-bottom: 14px;
	gap: 14px;
}

.news-form input {
	flex: 1;
	background: none;
	border: none;
	font-family: 'Jost', sans-serif;
	font-size: 13px;
	letter-spacing: 1px;
	color: var(--ink);
	outline: none;
}

.news-form input::placeholder {
	color: var(--ink-soft);
}

.news-form button {
	background: none;
	border: none;
	font-size: 11px;
	letter-spacing: 2.5px;
	text-transform: uppercase;
	color: var(--gold-deep);
	cursor: pointer;
	font-family: 'Jost', sans-serif;
	font-weight: 500;
}

/* ===== FOOTER ===== */
.footer {
	background: var(--forest-deep);
	color: var(--parchment-dim);
	padding: 100px 0 0;
}

.footer-top {
	display: grid;
	grid-template-columns: 1.4fr 1fr 1fr 1fr;
	gap: 60px;
	padding-bottom: 80px;
	border-bottom: 1px solid var(--forest-line);
}

.footer-brand .icon-deer {
	width: 36px;
	height: 36px;
	margin-bottom: 18px;
}

.footer-brand .word {
	font-family: 'Playfair Display', serif;
	font-size: 20px;
	letter-spacing: 4px;
	color: var(--parchment);
	margin-bottom: 14px;
}

.footer-brand p {
	font-size: 13.5px;
	line-height: 1.9;
	max-width: 280px;
	font-weight: 300;
	margin-bottom: 22px;
}

.footer-social {
	display: flex;
	gap: 14px;
}

.footer-social a {
	width: 36px;
	height: 36px;
	border: 1px solid var(--forest-line);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 12px;
	transition: .3s;
}

.footer-social a:hover {
	border-color: var(--gold);
	color: var(--gold-light);
}

.footer-col h4 {
	font-size: 11px;
	letter-spacing: 2.5px;
	text-transform: uppercase;
	color: var(--parchment);
	margin-bottom: 24px;
}

.footer-col ul {
	margin: 0;
	padding: 0;
}

.footer-col a {
	display: block;
	font-size: 13.5px;
	margin-bottom: 14px;
	color: var(--parchment-dim);
	transition: .3s;
	font-weight: 300;
}

.footer-col a:hover {
	color: var(--gold-light);
}

.footer-bottom {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 30px 0;
	flex-wrap: wrap;
	gap: 14px;
	font-size: 11.5px;
	color: var(--parchment-dim);
	opacity: .7;
}

.footer-bottom .flourish-line {
	display: flex;
	gap: 20px;
}

/* ===== BLOG / PAGES ===== */
.blog-header {
	padding: 190px 0 60px;
	background:
		radial-gradient(ellipse 900px 500px at 50% -10%, rgba(198, 154, 85, 0.18), transparent 60%),
		linear-gradient(180deg, var(--forest-deep) 0%, #1a251a 100%);
	color: var(--parchment);
	position: relative;
}

.blog-header .head-center {
	margin-bottom: 0;
}

.blog-header .head-center h2 {
	color: var(--parchment);
}

.post-list {
	max-width: 820px;
	margin: 0 auto;
	display: grid;
	gap: 70px;
}

.post-card {
	text-align: center;
}

.post-card .post-thumb {
	margin-bottom: 30px;
}

.post-card .post-thumb img {
	border-radius: 50% 50% 4px 4px / 26% 26% 4px 4px;
	aspect-ratio: 3/2;
	object-fit: cover;
}

.post-card .post-meta {
	font-size: 10px;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: var(--gold-deep);
	margin-bottom: 14px;
}

.post-card h2 {
	font-family: 'Playfair Display', serif;
	font-size: clamp(24px, 3vw, 34px);
	font-weight: 500;
	margin-bottom: 14px;
	line-height: 1.25;
}

.post-card h2 a {
	transition: .3s;
}

.post-card h2 a:hover {
	color: var(--gold-deep);
}

.post-card .excerpt {
	font-size: 15px;
	line-height: 1.9;
	color: var(--ink-soft);
	font-weight: 300;
	max-width: 560px;
	margin: 0 auto 22px;
}

.post-card .btn {
	padding: 12px 26px;
}

.post-nav {
	display: flex;
	justify-content: space-between;
	margin-top: 80px;
	gap: 20px;
	flex-wrap: wrap;
	font-size: 11px;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: var(--gold-deep);
}

.post-nav a:hover {
	color: var(--gold);
}

/* single */
.single-header {
	padding: 190px 0 60px;
	background:
		radial-gradient(ellipse 900px 500px at 50% -10%, rgba(198, 154, 85, 0.18), transparent 60%),
		linear-gradient(180deg, var(--forest-deep) 0%, #1a251a 100%);
	color: var(--parchment);
	text-align: center;
}

.single-header h1 {
	font-family: 'Playfair Display', serif;
	font-size: clamp(30px, 4vw, 48px);
	font-weight: 500;
	line-height: 1.2;
	max-width: 820px;
	margin: 0 auto 16px;
}

.single-header .post-meta {
	font-size: 10px;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: var(--gold-light);
}

.single-content {
	max-width: 780px;
	margin: 0 auto;
}

.single-body {
	padding: 90px 0;
}

.single-body .entry {
	font-size: 16px;
	line-height: 1.95;
	color: var(--ink-soft);
	font-weight: 300;
}

.single-body .entry p {
	margin-bottom: 24px;
}

.single-body .entry h2,
.single-body .entry h3 {
	font-family: 'Playfair Display', serif;
	color: var(--ink);
	font-weight: 500;
	margin: 40px 0 18px;
	line-height: 1.3;
}

.single-body .entry a {
	color: var(--gold-deep);
	text-decoration: underline;
}

.single-body .entry img {
	border-radius: 50% 50% 4px 4px / 26% 26% 4px 4px;
	margin: 30px auto;
}

.single-body .entry blockquote {
	font-family: 'Cormorant Garamond', serif;
	font-style: italic;
	font-size: 24px;
	line-height: 1.5;
	color: var(--ink);
	border-left: 2px solid var(--gold);
	padding-left: 24px;
	margin: 36px 0;
}

.single-body .entry ul,
.single-body .entry ol {
	margin: 0 0 24px 24px;
}

.single-body .entry li {
	margin-bottom: 10px;
}

.single-feature img {
	width: 100%;
	object-fit: cover;
}

.comments {
	max-width: 780px;
	margin: 0 auto;
	padding-bottom: 90px;
}

.comments h3,
.comments h2.comments-title {
	font-family: 'Playfair Display', serif;
	font-weight: 500;
	font-size: 26px;
	margin-bottom: 30px;
}

.comment-list {
	margin-bottom: 40px;
}

.comment-list li {
	padding: 22px 0;
	border-bottom: 1px solid rgba(166, 125, 61, 0.25);
}

.comment-list .comment-author {
	font-size: 11px;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: var(--gold-deep);
	margin-bottom: 8px;
}

.comment-list .comment-metadata {
	font-size: 11px;
	color: var(--ink-soft);
	margin-bottom: 10px;
}

.comment-list .comment-content {
	font-size: 15px;
	line-height: 1.8;
	color: var(--ink-soft);
	font-weight: 300;
}

.comment-list .comment-body .reply {
	margin-top: 10px;
	font-size: 10px;
	letter-spacing: 2px;
	text-transform: uppercase;
}

.comment-list .comment-body .reply a {
	color: var(--gold-deep);
}

.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
	width: 100%;
	background: var(--cream-soft);
	border: 1px solid rgba(166, 125, 61, 0.3);
	padding: 14px 16px;
	font-family: 'Jost', sans-serif;
	font-size: 13.5px;
	letter-spacing: 1px;
	color: var(--ink);
	margin-bottom: 16px;
}

.comment-form textarea {
	min-height: 140px;
}

.comment-form label {
	display: block;
	font-size: 10px;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: var(--ink-soft);
	margin-bottom: 8px;
}

.comment-form .submit {
	margin-top: 10px;
}

/* pages */
.page-body {
	padding: 190px 0 130px;
}

.page-body .entry {
	max-width: 780px;
	margin: 0 auto;
	font-size: 16px;
	line-height: 1.95;
	color: var(--ink-soft);
	font-weight: 300;
}

.page-body .entry p {
	margin-bottom: 24px;
}

.page-body .entry h2,
.page-body .entry h3 {
	font-family: 'Playfair Display', serif;
	color: var(--ink);
	font-weight: 500;
	margin: 40px 0 18px;
}

/* 404 */
.error-wrap {
	padding: 230px 0 150px;
	text-align: center;
}

.error-wrap .code {
	font-family: 'Cormorant Garamond', serif;
	font-style: italic;
	font-size: clamp(80px, 12vw, 140px);
	color: var(--gold);
	line-height: 1;
	margin-bottom: 20px;
}

.error-wrap h1 {
	font-family: 'Playfair Display', serif;
	font-weight: 500;
	font-size: clamp(26px, 3vw, 36px);
	margin-bottom: 16px;
}

.error-wrap p {
	color: var(--ink-soft);
	margin-bottom: 36px;
	font-weight: 300;
}

/* search */
.searchform {
	display: flex;
	max-width: 480px;
	margin: 0 auto 70px;
	border-bottom: 1px solid var(--ink);
	padding-bottom: 14px;
	gap: 14px;
}

.searchform input[type="search"] {
	flex: 1;
	background: none;
	border: none;
	font-family: 'Jost', sans-serif;
	font-size: 13px;
	letter-spacing: 1px;
	color: var(--ink);
	outline: none;
}

.searchform button {
	background: none;
	border: none;
	font-size: 11px;
	letter-spacing: 2.5px;
	text-transform: uppercase;
	color: var(--gold-deep);
	cursor: pointer;
	font-family: 'Jost', sans-serif;
	font-weight: 500;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
	.nav-links {
		gap: 22px;
	}

	.nav-logo .mark {
		width: 160px;
	}

	.story {
		grid-template-columns: 1fr;
		gap: 60px;
	}

	.cat-grid {
		grid-template-columns: repeat(3, 1fr);
	}

	.product-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.testi-grid {
		grid-template-columns: 1fr;
		gap: 50px;
	}

	.footer-top {
		grid-template-columns: 1fr 1fr;
		gap: 44px;
	}

	.insta-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

@media (max-width: 720px) {
	.wrap {
		padding: 0 22px;
	}

	.nav-links {
		display: none;
	}

	.nav-icons {
		gap: 12px;
	}

	.hamburger {
		display: flex;
		align-items: center;
	}

	.section {
		padding: 90px 0;
	}

	.cat-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.press-row {
		gap: 36px;
	}

	.footer-top {
		grid-template-columns: 1fr;
		gap: 44px;
	}

	.insta-grid {
		grid-template-columns: repeat(3, 1fr);
	}

	.news-form {
		flex-direction: column;
		gap: 16px;
		align-items: stretch;
	}

	.hero {
		padding: 140px 22px 90px;
	}
}
