:root {
	--gold: #c9963a;
	--gold-light: #e8bc6a;
	--gold-pale: #f5e6c8;
	--honey: #d4782a;
	--honey-dark: #a0501a;
	--forest: #1a2e1a;
	--forest-mid: #2c4a2c;
	--cream: #faf6ee;
	--cream-dark: #f0e8d4;
	--white: #ffffff;
	--red-label: #c0392b;
	--text-dark: #1a1a1a;
	--text-mid: #3a3a3a;
	--shadow-deep: 0 40px 120px rgba(8, 12, 10, 0.55);
	--shadow-soft: 0 12px 40px rgba(8, 12, 10, 0.25);
	--glow-gold: rgba(232, 188, 106, 0.5);
	--glow-amber: rgba(212, 120, 42, 0.45);
	--glass: rgba(14, 22, 14, 0.35);
}

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

html {
	scroll-behavior: smooth;
}

body {
	font-family: "Nunito Sans", sans-serif;
	background: var(--cream);
	color: var(--text-dark);
	overflow-x: hidden;
	position: relative;
	isolation: isolate;
}

body::before {
	content: "";
	position: fixed;
	inset: -20%;
	background:
		radial-gradient(
			1200px 800px at 8% -10%,
			rgba(232, 188, 106, 0.18),
			transparent 60%
		),
		radial-gradient(
			900px 700px at 110% 20%,
			rgba(212, 120, 42, 0.16),
			transparent 55%
		),
		radial-gradient(
			800px 600px at 30% 120%,
			rgba(26, 46, 26, 0.25),
			transparent 60%
		);
	opacity: 0.7;
	z-index: -2;
	pointer-events: none;
}

body::after {
	content: "";
	position: fixed;
	inset: 0;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Ccircle cx='8' cy='16' r='1' fill='%23000000' fill-opacity='0.18'/%3E%3Ccircle cx='36' cy='48' r='1' fill='%23000000' fill-opacity='0.12'/%3E%3Ccircle cx='64' cy='22' r='1' fill='%23000000' fill-opacity='0.12'/%3E%3Ccircle cx='92' cy='76' r='1' fill='%23000000' fill-opacity='0.14'/%3E%3Ccircle cx='120' cy='34' r='1' fill='%23000000' fill-opacity='0.1'/%3E%3C/svg%3E");
	opacity: 0.05;
	mix-blend-mode: multiply;
	z-index: -1;
	pointer-events: none;
}

body > * {
	position: relative;
	z-index: 1;
}

main {
	padding-top: 80px;
}

/* Home page hero doesn't need top padding as it handles its own layout */
.hero {
	margin-top: -80px;
}

/* ─── HERO ─── */
.hero {
	position: relative;
	min-height: 100svh;
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: center;
	overflow: hidden;
	background: linear-gradient(
		135deg,
		#0f1b12 0%,
		#1e3b23 45%,
		#2f5b37 70%,
		#1f3b2a 100%
	);
	perspective: 1600px;
}

.hero-bg {
	position: absolute;
	inset: 0;
	background:
		radial-gradient(
			ellipse 60% 80% at 20% 50%,
			rgba(201, 150, 58, 0.18) 0%,
			transparent 70%
		),
		radial-gradient(
			ellipse 50% 60% at 80% 30%,
			rgba(212, 120, 42, 0.12) 0%,
			transparent 60%
		),
		radial-gradient(
			ellipse 80% 40% at 50% 100%,
			rgba(26, 46, 26, 0.9) 0%,
			transparent 60%
		),
		conic-gradient(
			from 120deg at 70% 35%,
			rgba(232, 188, 106, 0.12),
			transparent 45%
		);
	z-index: 1;
	mix-blend-mode: screen;
	opacity: 0.95;
}

.hero::after {
	content: "";
	position: absolute;
	inset: -20% -10% 20% -10%;
	background: radial-gradient(
		circle at 20% 20%,
		rgba(232, 188, 106, 0.18),
		transparent 55%
	);
	z-index: 1;
	opacity: 0.6;
	pointer-events: none;
}

/* Animated bokeh dots */
.bokeh {
	position: absolute;
	inset: 0;
	z-index: 1;
	pointer-events: none;
	overflow: hidden;
}
.bokeh span {
	position: absolute;
	border-radius: 50%;
	background: radial-gradient(
		circle,
		rgba(201, 150, 58, 0.35) 0%,
		transparent 70%
	);
	animation: float var(--dur, 8s) ease-in-out infinite var(--delay, 0s);
}
.bokeh span:nth-child(1) {
	width: 180px;
	height: 180px;
	top: 10%;
	left: 5%;
	--dur: 9s;
	--delay: -2s;
}
.bokeh span:nth-child(2) {
	width: 100px;
	height: 100px;
	top: 60%;
	left: 15%;
	--dur: 7s;
	--delay: -5s;
}
.bokeh span:nth-child(3) {
	width: 140px;
	height: 140px;
	top: 30%;
	left: 70%;
	--dur: 11s;
	--delay: -1s;
}
.bokeh span:nth-child(4) {
	width: 80px;
	height: 80px;
	top: 75%;
	left: 80%;
	--dur: 6s;
	--delay: -3s;
}
.bokeh span:nth-child(5) {
	width: 220px;
	height: 220px;
	top: 5%;
	left: 55%;
	--dur: 13s;
	--delay: -7s;
	opacity: 0.5;
}

@keyframes float {
	0%,
	100% {
		transform: translateY(0) scale(1);
	}
	50% {
		transform: translateY(-30px) scale(1.05);
	}
}

/* Mountain silhouette SVG bottom */
.hero-mountains {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 2;
	line-height: 0;
}
.hero-mountains svg {
	width: 100%;
	height: auto;
	display: block;
}

.hero-content {
	position: relative;
	z-index: 10;
	padding: clamp(40px, 8vw, 100px) clamp(24px, 6vw, 80px);
	animation: fadeSlideUp 0.9s ease both;
	max-width: 620px;
}

@keyframes fadeSlideUp {
	from {
		opacity: 0;
		transform: translateY(40px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.brand-badge {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background: rgba(201, 150, 58, 0.15);
	border: 1px solid rgba(201, 150, 58, 0.4);
	border-radius: 50px;
	padding: 8px 18px;
	margin-bottom: 28px;
}
.brand-badge .bee-icon {
	font-size: 1.2rem;
}
.brand-badge span {
	font-family: "Cinzel", serif;
	font-size: clamp(0.65rem, 1.2vw, 0.8rem);
	letter-spacing: 0.2em;
	color: var(--gold-light);
	text-transform: uppercase;
}

.hero-eyebrow {
	font-family: "Cinzel", serif;
	font-size: clamp(0.7rem, 1.3vw, 0.9rem);
	letter-spacing: 0.35em;
	color: var(--gold);
	text-transform: uppercase;
	margin-bottom: 12px;
}

.hero-title {
	font-family: "Cormorant Garamond", serif;
	font-size: clamp(3rem, 7vw, 6.5rem);
	font-weight: 300;
	line-height: 1.02;
	color: var(--white);
	margin-bottom: 8px;
	text-shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
}
.hero-title em {
	font-style: italic;
	color: var(--gold-light);
}
.hero-title strong {
	font-family: "Cinzel", serif;
	font-weight: 600;
	display: block;
	font-size: 0.55em;
	letter-spacing: 0.15em;
	color: var(--white);
	margin-top: 4px;
}

.hero-divider {
	width: 80px;
	height: 1px;
	background: linear-gradient(90deg, transparent, var(--gold), transparent);
	margin: 24px 0;
	position: relative;
}
.hero-divider::before {
	content: "✦";
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	color: var(--gold);
	font-size: 0.6rem;
	background: transparent;
}

.hero-tagline {
	font-size: clamp(0.9rem, 1.4vw, 1.05rem);
	color: rgba(255, 255, 255, 0.75);
	font-weight: 300;
	letter-spacing: 0.05em;
	margin-bottom: 36px;
	line-height: 1.7;
	text-shadow: 0 6px 24px rgba(0, 0, 0, 0.35);
}

.hero-ctas {
	display: flex;
	gap: 16px;
	flex-wrap: wrap;
}

.btn-primary {
	font-family: "Cinzel", serif;
	font-size: 0.8rem;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	padding: 16px 36px;
	background: linear-gradient(135deg, var(--gold) 0%, var(--honey) 100%);
	color: var(--forest);
	border: none;
	cursor: pointer;
	border-radius: 3px;
	transition:
		transform 0.2s,
		box-shadow 0.2s;
	box-shadow: 0 4px 20px rgba(201, 150, 58, 0.4);
	text-decoration: none;
	display: inline-block;
	position: relative;
	overflow: hidden;
}
.btn-primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 30px rgba(201, 150, 58, 0.5);
}
.btn-primary::after {
	content: "";
	position: absolute;
	inset: -40% -20% auto -20%;
	height: 140%;
	background: linear-gradient(
		110deg,
		transparent 0%,
		rgba(255, 255, 255, 0.55) 45%,
		transparent 60%
	);
	transform: translateX(-140%) rotate(8deg);
	transition: transform 0.7s ease;
	pointer-events: none;
}
.btn-primary:hover::after {
	transform: translateX(140%) rotate(8deg);
}

.btn-ghost {
	font-family: "Cinzel", serif;
	font-size: 0.8rem;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	padding: 15px 36px;
	background: transparent;
	color: var(--gold-light);
	border: 1px solid rgba(201, 150, 58, 0.5);
	cursor: pointer;
	border-radius: 3px;
	transition:
		background 0.2s,
		border-color 0.2s;
	text-decoration: none;
	display: inline-block;
	position: relative;
	overflow: hidden;
}
.btn-ghost:hover {
	background: rgba(201, 150, 58, 0.1);
	border-color: var(--gold);
}
.btn-ghost::after {
	content: "";
	position: absolute;
	inset: 0;
	background: radial-gradient(
		circle at 30% 20%,
		rgba(232, 188, 106, 0.2),
		transparent 60%
	);
	opacity: 0;
	transition: opacity 0.3s ease;
	pointer-events: none;
}
.btn-ghost:hover::after {
	opacity: 1;
}

/* Hero Product side */
.hero-product {
	position: relative;
	z-index: 10;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: clamp(40px, 6vw, 80px) clamp(20px, 4vw, 60px);
	animation: fadeSlideUp 0.9s ease 0.2s both;
	perspective: 1400px;
}

.hero-product::before {
	content: "";
	position: absolute;
	width: clamp(260px, 32vw, 520px);
	height: clamp(260px, 32vw, 520px);
	background: radial-gradient(
		circle,
		rgba(232, 188, 106, 0.26) 0%,
		rgba(26, 46, 26, 0.1) 45%,
		transparent 70%
	);
	border-radius: 50%;
	transform: translateY(140px) scaleY(0.35);
	filter: blur(8px);
	opacity: 0.9;
	pointer-events: none;
	z-index: 0;
}

.hero-product::after {
	content: "";
	position: absolute;
	width: clamp(200px, 28vw, 420px);
	height: clamp(40px, 6vw, 80px);
	background: radial-gradient(
		circle,
		rgba(8, 12, 10, 0.55) 0%,
		transparent 70%
	);
	bottom: 30px;
	left: 50%;
	transform: translateX(-50%);
	filter: blur(18px);
	opacity: 0.8;
	pointer-events: none;
	z-index: 0;
}

.product-showcase {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 24px;
	transform-style: preserve-3d;
	z-index: 1;
}

.jar-wrapper {
	position: relative;
	width: clamp(150px, 18vw, 240px);
	max-width: 240px;
	aspect-ratio: 750 / 1024;
	transform-style: preserve-3d;
	transform: rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
	transition:
		transform 0.18s ease,
		filter 0.2s ease;
	will-change: transform;
}

.jar-wrapper::before {
	content: "";
	position: absolute;
	inset: -28% -25% -60% -25%;
	background: radial-gradient(
		circle,
		rgba(232, 188, 106, 0.2),
		transparent 70%
	);
	transform: translateZ(-120px);
	filter: blur(20px);
	opacity: 0.9;
	pointer-events: none;
}

.jar-wrapper::after {
	content: "";
	position: absolute;
	left: 10%;
	right: 10%;
	bottom: -26px;
	height: 70px;
	background: radial-gradient(
		circle,
		rgba(10, 14, 10, 0.7) 0%,
		transparent 70%
	);
	transform: translateZ(-80px);
	filter: blur(10px);
	opacity: 0.8;
	pointer-events: none;
}

.jar-glow {
	position: absolute;
	inset: -20%;
	background: radial-gradient(
		ellipse,
		rgba(201, 150, 58, 0.25) 0%,
		transparent 70%
	);
	border-radius: 50%;
	animation: pulse 3s ease-in-out infinite;
}
@keyframes pulse {
	0%,
	100% {
		transform: scale(1);
		opacity: 0.7;
	}
	50% {
		transform: scale(1.08);
		opacity: 1;
	}
}

.jar-figure {
	position: relative;
	width: 100%;
	transform-style: preserve-3d;
	transform: translateZ(60px);
	animation: float-jar 5s ease-in-out infinite;
}
.jar-figure::before {
	content: "";
	position: absolute;
	inset: 6% 8% 10% 8%;
	border-radius: 18px;
	box-shadow: inset 0 0 40px rgba(0, 0, 0, 0.25);
	pointer-events: none;
}
.jar-figure::after {
	content: "";
	position: absolute;
	inset: 4% 10% 8% 10%;
	border-radius: 18px;
	background: linear-gradient(
		120deg,
		transparent 0%,
		rgba(255, 255, 255, 0.45) 45%,
		transparent 60%
	);
	opacity: 0.6;
	filter: blur(2px);
	pointer-events: none;
}

.jar-wrapper img {
	width: 100%;
	height: 100%;
	display: block;
	position: relative;
	z-index: 2;
	border-radius: 18px;
	filter: drop-shadow(0 30px 70px rgba(0, 0, 0, 0.5));
	object-fit: contain;
}

@keyframes float-jar {
	0%,
	100% {
		transform: translateZ(60px) translateY(0);
	}
	50% {
		transform: translateZ(60px) translateY(-12px);
	}
}

.mgo-badge {
	position: absolute;
	top: 56%;
	left: 50%;
	right: auto;
	z-index: 5;
	background: linear-gradient(135deg, var(--red-label), #8b2020);
	color: white;
	border-radius: 50%;
	width: clamp(50px, 7vw, 80px);
	height: clamp(50px, 7vw, 80px);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	box-shadow: 0 6px 24px rgba(0, 0, 0, 0.4);
	border: 2px solid rgba(255, 255, 255, 0.2);
	animation: spin-badge 20s linear infinite;
}
@keyframes spin-badge {
	0% {
		transform: translate(-50%, -50%) translateZ(90px) rotate(0deg);
	}
	100% {
		transform: translate(-50%, -50%) translateZ(90px) rotate(360deg);
	}
}
.mgo-badge .num {
	font-family: "Cinzel", serif;
	font-size: clamp(0.7rem, 1.2vw, 1rem);
	font-weight: 700;
	line-height: 1;
	animation: spin-badge 20s linear infinite reverse;
}
.mgo-badge .lbl {
	font-size: clamp(0.4rem, 0.6vw, 0.5rem);
	letter-spacing: 0.1em;
	opacity: 0.85;
	animation: spin-badge 20s linear infinite reverse;
}

.product-stats {
	display: flex;
	gap: 20px;
	transform: translateZ(30px);
}
.stat-pill {
	background: rgba(14, 22, 14, 0.35);
	border: 1px solid rgba(201, 150, 58, 0.4);
	border-radius: 50px;
	padding: 10px 20px;
	text-align: center;
	box-shadow: inset 0 0 16px rgba(0, 0, 0, 0.25);
	backdrop-filter: blur(10px);
}
.stat-pill .num {
	font-family: "Cinzel", serif;
	font-size: clamp(0.9rem, 1.5vw, 1.2rem);
	color: var(--gold-light);
	display: block;
}
.stat-pill .lbl {
	font-size: clamp(0.55rem, 0.8vw, 0.7rem);
	letter-spacing: 0.12em;
	color: rgba(255, 255, 255, 0.6);
	text-transform: uppercase;
}

/* ─── TRUST BAR ─── */
.trust-bar {
	background: linear-gradient(120deg, #0f1b12 0%, #152717 45%, #0e1a12 100%);
	padding: clamp(28px, 5vw, 50px) clamp(20px, 5vw, 60px);
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1px;
	position: relative;
	z-index: 5;
	box-shadow: inset 0 1px 0 rgba(232, 188, 106, 0.12);
}
.trust-bar::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(
		90deg,
		transparent,
		var(--gold),
		var(--honey),
		var(--gold),
		transparent
	);
}

.trust-item {
	padding: clamp(20px, 3vw, 36px) clamp(16px, 2.5vw, 30px);
	text-align: center;
	border-right: 1px solid rgba(201, 150, 58, 0.15);
	position: relative;
	background: rgba(14, 22, 14, 0.35);
	backdrop-filter: blur(6px);
	box-shadow: inset 0 0 24px rgba(0, 0, 0, 0.28);
	transition:
		background 0.3s,
		transform 0.3s,
		box-shadow 0.3s;
}
.trust-item:last-child {
	border-right: none;
}
.trust-item:hover {
	background: rgba(20, 32, 20, 0.5);
	transform: translateY(-4px);
	box-shadow: 0 16px 30px rgba(0, 0, 0, 0.35);
}

.trust-icon {
	width: clamp(40px, 5vw, 60px);
	height: clamp(40px, 5vw, 60px);
	margin: 0 auto 14px;
	color: var(--gold);
}
.trust-icon svg {
	width: 100%;
	height: 100%;
}

.trust-title {
	font-family: "Cinzel", serif;
	font-size: clamp(0.65rem, 1vw, 0.8rem);
	letter-spacing: 0.18em;
	color: var(--white);
	text-transform: uppercase;
	margin-bottom: 10px;
	line-height: 1.4;
}

.trust-desc {
	font-size: clamp(0.72rem, 0.9vw, 0.85rem);
	color: rgba(255, 255, 255, 0.55);
	line-height: 1.6;
	font-weight: 300;
}

/* ─── ABOUT SECTION ─── */
.about {
	display: grid;
	grid-template-columns: 1fr 1fr;
	min-height: 60vh;
	background: var(--cream);
}

.about-visual {
	position: relative;
	background: linear-gradient(160deg, var(--forest-mid) 0%, var(--forest) 60%);
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 400px;
	box-shadow: inset 0 0 60px rgba(0, 0, 0, 0.45);
}

.about-visual::after {
	content: "";
	position: absolute;
	inset: 10% 15% 20% 15%;
	background: radial-gradient(
		circle,
		rgba(232, 188, 106, 0.18) 0%,
		transparent 65%
	);
	opacity: 0.6;
	pointer-events: none;
}

.hexagon-grid {
	position: absolute;
	inset: 0;
	opacity: 0.08;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='70'%3E%3Cpolygon points='30,2 58,17 58,52 30,68 2,52 2,17' fill='none' stroke='%23C9963A' stroke-width='1'/%3E%3C/svg%3E");
	background-size: 60px 70px;
}

.about-visual-inner {
	position: relative;
	z-index: 2;
	text-align: center;
	padding: clamp(40px, 6vw, 80px);
}

.big-number {
	font-family: "Cormorant Garamond", serif;
	font-size: clamp(5rem, 12vw, 11rem);
	font-weight: 300;
	line-height: 0.9;
	color: transparent;
	-webkit-text-stroke: 1px rgba(201, 150, 58, 0.6);
	display: block;
}
.big-number span {
	font-size: 0.35em;
	-webkit-text-stroke: 0;
	color: var(--gold);
	font-family: "Cinzel", serif;
	letter-spacing: 0.2em;
	display: block;
	margin-top: 8px;
}

.about-rings {
	position: absolute;
	width: 300px;
	height: 300px;
	border-radius: 50%;
	border: 1px solid rgba(201, 150, 58, 0.15);
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
.about-rings::before {
	content: "";
	position: absolute;
	inset: -40px;
	border-radius: 50%;
	border: 1px solid rgba(201, 150, 58, 0.08);
}
.about-rings::after {
	content: "";
	position: absolute;
	inset: -80px;
	border-radius: 50%;
	border: 1px solid rgba(201, 150, 58, 0.05);
}

.about-text {
	padding: clamp(40px, 7vw, 100px) clamp(30px, 5vw, 80px);
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.section-label {
	font-family: "Cinzel", serif;
	font-size: clamp(0.6rem, 0.9vw, 0.75rem);
	letter-spacing: 0.3em;
	color: var(--gold);
	text-transform: uppercase;
	margin-bottom: 16px;
	display: flex;
	align-items: center;
	gap: 12px;
}
.section-label::before {
	content: "";
	width: 30px;
	height: 1px;
	background: var(--gold);
}

.section-title {
	font-family: "Cormorant Garamond", serif;
	font-size: clamp(2rem, 4vw, 3.5rem);
	font-weight: 300;
	line-height: 1.15;
	color: var(--forest);
	margin-bottom: 24px;
}
.section-title em {
	font-style: italic;
	color: var(--honey);
}

.section-body {
	font-size: clamp(0.9rem, 1.1vw, 1rem);
	color: var(--text-mid);
	line-height: 1.8;
	font-weight: 300;
	margin-bottom: 32px;
}

.feature-list {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 14px;
	margin-bottom: 36px;
}
.feature-list li {
	display: flex;
	align-items: center;
	gap: 14px;
	font-size: clamp(0.85rem, 1vw, 0.95rem);
	color: var(--text-mid);
	font-weight: 300;
}
.feature-list li::before {
	content: "◆";
	color: var(--gold);
	font-size: 0.55rem;
	flex-shrink: 0;
}

/* ─── PRODUCT CARD SECTION ─── */
.products {
	background: linear-gradient(180deg, #f7f1e5 0%, #efe6d1 100%);
	padding: clamp(60px, 8vw, 120px) clamp(20px, 5vw, 80px);
	text-align: center;
	position: relative;
	overflow: hidden;
}

.products::before {
	content: "";
	position: absolute;
	inset: 0;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='70'%3E%3Cpolygon points='30,2 58,17 58,52 30,68 2,52 2,17' fill='none' stroke='%23C9963A' stroke-width='0.8'/%3E%3C/svg%3E");
	background-size: 60px 70px;
	opacity: 0.08;
	pointer-events: none;
	z-index: 0;
}

.products > * {
	position: relative;
	z-index: 1;
}

.products-header {
	margin-bottom: clamp(40px, 6vw, 70px);
}

.card-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: clamp(16px, 2.5vw, 32px);
	max-width: 1100px;
	margin: 0 auto;
	perspective: 1400px;
}

.product-card {
	--card-scale: 1;
	background: linear-gradient(180deg, #ffffff 0%, #f6efe0 100%);
	border-radius: 12px;
	overflow: hidden;
	border: 1px solid rgba(201, 150, 58, 0.25);
	box-shadow: var(--shadow-soft);
	transition:
		transform 0.2s ease,
		box-shadow 0.2s ease;
	position: relative;
	transform-style: preserve-3d;
	transform: translateY(0) scale(var(--card-scale)) rotateX(var(--tilt-x, 0deg))
		rotateY(var(--tilt-y, 0deg));
	will-change: transform;
}
.product-card:hover {
	transform: translateY(-10px) scale(var(--card-scale))
		rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
	box-shadow: var(--shadow-deep);
}
.product-card::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(
		135deg,
		rgba(255, 255, 255, 0.4),
		transparent 40%
	);
	opacity: 0.4;
	pointer-events: none;
}

.card-top {
	background: linear-gradient(160deg, var(--forest) 0%, var(--forest-mid) 100%);
	padding: clamp(24px, 3.5vw, 44px) 20px;
	position: relative;
	overflow: hidden;
	transform: translateZ(24px);
}
.card-top::before {
	content: "";
	position: absolute;
	bottom: -30px;
	left: 50%;
	transform: translateX(-50%);
	width: 120%;
	height: 60px;
	background: var(--white);
	border-radius: 50%;
}
.card-top::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(
		120deg,
		rgba(255, 255, 255, 0.1),
		transparent 45%
	);
	opacity: 0.6;
}

.card-mgo {
	display: inline-block;
	font-family: "Cinzel", serif;
	font-size: clamp(0.7rem, 1vw, 0.85rem);
	letter-spacing: 0.15em;
	color: var(--gold-light);
	background: rgba(201, 150, 58, 0.15);
	border: 1px solid rgba(201, 150, 58, 0.3);
	padding: 6px 16px;
	border-radius: 50px;
	margin-bottom: 12px;
}

.card-jar-num {
	font-family: "Cormorant Garamond", serif;
	font-size: clamp(2.5rem, 4.5vw, 4rem);
	font-weight: 300;
	color: var(--white);
	line-height: 1;
}
.card-jar-num sup {
	font-size: 0.4em;
	color: var(--gold-light);
	vertical-align: super;
}

.card-body {
	padding: clamp(28px, 3.5vw, 44px) clamp(16px, 2.5vw, 28px)
		clamp(20px, 3vw, 32px);
	position: relative;
	z-index: 1;
	transform: translateZ(16px);
}

.card-name {
	font-family: "Cinzel", serif;
	font-size: clamp(0.75rem, 1.1vw, 0.9rem);
	letter-spacing: 0.18em;
	color: var(--forest);
	text-transform: uppercase;
	margin-bottom: 8px;
}
.card-desc {
	font-size: clamp(0.78rem, 0.9vw, 0.88rem);
	color: #888;
	line-height: 1.6;
	margin-bottom: 20px;
	font-weight: 300;
}

.card-price {
	font-family: "Cormorant Garamond", serif;
	font-size: clamp(1.4rem, 2.5vw, 1.9rem);
	color: var(--forest);
	margin-bottom: 16px;
	font-weight: 400;
}
.card-price span {
	font-size: 0.55em;
	color: #999;
	font-family: "Nunito Sans", sans-serif;
	font-weight: 300;
}

.card-btn {
	width: 100%;
	font-family: "Cinzel", serif;
	font-size: clamp(0.65rem, 0.9vw, 0.78rem);
	letter-spacing: 0.15em;
	text-transform: uppercase;
	padding: 14px;
	background: linear-gradient(135deg, var(--gold), var(--honey));
	color: var(--forest);
	border: none;
	cursor: pointer;
	border-radius: 6px;
	transition:
		opacity 0.2s,
		transform 0.2s;
	font-weight: 600;
	box-shadow: 0 8px 24px rgba(212, 120, 42, 0.35);
}
.card-btn:hover {
	opacity: 0.9;
	transform: translateY(-1px);
}

.card-featured {
	border: 2px solid var(--gold);
	--card-scale: 1.03;
}
.card-badge-top {
	position: absolute;
	top: -1px;
	right: 20px;
	background: linear-gradient(135deg, var(--gold), var(--honey));
	color: var(--forest);
	font-family: "Cinzel", serif;
	font-size: 0.6rem;
	letter-spacing: 0.12em;
	padding: 6px 14px;
	font-weight: 600;
	transform: translateZ(30px);
}

/* ─── CERTIFICATIONS ─── */
.certs {
	background: var(--forest);
	padding: clamp(50px, 7vw, 90px) clamp(20px, 5vw, 80px);
	display: flex;
	align-items: center;
	justify-content: center;
	gap: clamp(30px, 5vw, 80px);
	flex-wrap: wrap;
	position: relative;
	overflow: hidden;
}
.certs::before {
	content: "";
	position: absolute;
	inset: 0;
	background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='70'%3E%3Cpolygon points='30,2 58,17 58,52 30,68 2,52 2,17' fill='none' stroke='%23C9963A' stroke-width='.5'/%3E%3C/svg%3E")
		repeat;
	opacity: 0.04;
}

.cert-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 12px;
	z-index: 1;
}
.cert-icon {
	width: clamp(48px, 6vw, 72px);
	height: clamp(48px, 6vw, 72px);
	border-radius: 50%;
	background: rgba(201, 150, 58, 0.15);
	border: 1px solid rgba(201, 150, 58, 0.3);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--gold-light);
	font-size: clamp(1.3rem, 2vw, 1.8rem);
}
.cert-label {
	font-family: "Cinzel", serif;
	font-size: clamp(0.6rem, 0.8vw, 0.72rem);
	letter-spacing: 0.18em;
	color: rgba(255, 255, 255, 0.7);
	text-align: center;
	text-transform: uppercase;
	line-height: 1.5;
}

.cert-divider {
	width: 1px;
	height: clamp(40px, 5vw, 60px);
	background: rgba(201, 150, 58, 0.2);
}

/* ─── TESTIMONIAL ─── */
.testimonial {
	background: var(--cream);
	padding: clamp(60px, 8vw, 110px) clamp(20px, 8vw, 120px);
	text-align: center;
	position: relative;
	overflow: hidden;
}
.testimonial::before {
	content: '"';
	position: absolute;
	font-family: "Cormorant Garamond", serif;
	font-size: clamp(10rem, 20vw, 22rem);
	color: rgba(201, 150, 58, 0.06);
	line-height: 1;
	top: -30px;
	left: 20px;
	pointer-events: none;
}

.testimonial-text {
	font-family: "Cormorant Garamond", serif;
	font-size: clamp(1.4rem, 2.8vw, 2.4rem);
	font-weight: 300;
	font-style: italic;
	color: var(--forest);
	line-height: 1.5;
	max-width: 820px;
	margin: 0 auto 30px;
	position: relative;
	z-index: 1;
}

.testimonial-author {
	font-family: "Cinzel", serif;
	font-size: clamp(0.65rem, 0.9vw, 0.78rem);
	letter-spacing: 0.25em;
	color: var(--gold);
	text-transform: uppercase;
}
.stars {
	color: var(--gold);
	font-size: 1.1rem;
	margin-bottom: 20px;
	letter-spacing: 0.1em;
}

/* ─── FOOTER ─── */
footer {
	background: var(--forest);
	padding: clamp(40px, 6vw, 80px) clamp(20px, 5vw, 80px) 30px;
	color: rgba(255, 255, 255, 0.6);
	position: relative;
}
footer::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(
		90deg,
		transparent,
		var(--gold),
		var(--honey),
		var(--gold),
		transparent
	);
}

.footer-inner {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1fr;
	gap: clamp(30px, 5vw, 60px);
	margin-bottom: 50px;
}

.footer-brand .logo {
	font-family: "Cinzel", serif;
	font-size: 1.1rem;
	letter-spacing: 0.15em;
	color: var(--white);
	margin-bottom: 14px;
	display: flex;
	align-items: center;
	gap: 10px;
}
.footer-brand p {
	font-size: 0.85rem;
	line-height: 1.7;
	font-weight: 300;
	max-width: 280px;
}

.footer-col h4 {
	font-family: "Cinzel", serif;
	font-size: 0.72rem;
	letter-spacing: 0.2em;
	color: var(--gold-light);
	text-transform: uppercase;
	margin-bottom: 16px;
}
.footer-col ul {
	list-style: none;
}
.footer-col ul li {
	margin-bottom: 10px;
}
.footer-col ul li a {
	font-size: 0.85rem;
	color: rgba(255, 255, 255, 0.55);
	text-decoration: none;
	transition: color 0.2s;
	font-weight: 300;
}
.footer-col ul li a:hover {
	color: var(--gold-light);
}

.footer-bottom {
	border-top: 1px solid rgba(201, 150, 58, 0.15);
	padding-top: 24px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 12px;
	font-size: 0.78rem;
	color: rgba(255, 255, 255, 0.35);
}

/* ─── NAV ─── */
nav {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 100;
	padding: 20px clamp(20px, 4vw, 60px);
	display: flex;
	align-items: center;
	justify-content: space-between;
	transition:
		background 0.4s,
		backdrop-filter 0.4s,
		padding 0.3s;
	background: linear-gradient(
		180deg,
		rgba(10, 16, 11, 0.75) 0%,
		rgba(10, 16, 11, 0) 100%
	);
	border-bottom: 1px solid rgba(201, 150, 58, 0.12);
	backdrop-filter: blur(10px) saturate(140%);
}
nav::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 1px;
	background: linear-gradient(
		90deg,
		transparent,
		rgba(232, 188, 106, 0.4),
		transparent
	);
	opacity: 0.7;
	pointer-events: none;
}
nav.scrolled {
	background: rgba(10, 16, 11, 0.9);
	backdrop-filter: blur(18px) saturate(160%);
	padding: 14px clamp(20px, 4vw, 60px);
	box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.nav-logo {
	font-family: "Cinzel", serif;
	font-size: clamp(0.85rem, 1.3vw, 1rem);
	letter-spacing: 0.15em;
	color: var(--white);
	text-transform: uppercase;
	display: flex;
	align-items: center;
	gap: 10px;
	text-decoration: none;
}
.nav-logo .bee {
	font-size: 1.4em;
}

.nav-links {
	display: flex;
	gap: clamp(20px, 3vw, 40px);
	list-style: none;
}
.nav-links a {
	font-family: "Cinzel", serif;
	font-size: clamp(0.6rem, 0.85vw, 0.75rem);
	letter-spacing: 0.18em;
	color: rgba(255, 255, 255, 0.75);
	text-decoration: none;
	text-transform: uppercase;
	transition: color 0.2s;
}
.nav-links a:hover {
	color: var(--gold-light);
}

.nav-cta {
	font-family: "Cinzel", serif;
	font-size: clamp(0.6rem, 0.85vw, 0.72rem);
	letter-spacing: 0.15em;
	padding: 10px 22px;
	background: linear-gradient(135deg, var(--gold), var(--honey));
	color: var(--forest);
	border: none;
	cursor: pointer;
	border-radius: 3px;
	transition: opacity 0.2s;
	font-weight: 600;
	text-transform: uppercase;
	text-decoration: none;
}
.nav-cta:hover {
	opacity: 0.88;
}

.nav-hamburger {
	display: none;
	flex-direction: column;
	gap: 5px;
	cursor: pointer;
	background: none;
	border: none;
	padding: 4px;
}
.nav-hamburger span {
	width: 24px;
	height: 1.5px;
	background: var(--white);
	display: block;
	transition:
		transform 0.3s,
		opacity 0.3s;
}

/* ─── SCROLL INDICATOR ─── */
.scroll-indicator {
	position: absolute;
	bottom: 30px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 10;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
	color: rgba(255, 255, 255, 0.5);
	font-family: "Cinzel", serif;
	font-size: 0.55rem;
	letter-spacing: 0.2em;
	text-transform: uppercase;
}
.scroll-indicator .line {
	width: 1px;
	height: 40px;
	background: linear-gradient(to bottom, transparent, rgba(201, 150, 58, 0.8));
	animation: line-pulse 2s ease-in-out infinite;
}
@keyframes line-pulse {
	0%,
	100% {
		opacity: 0.4;
		transform: scaleY(0.8);
	}
	50% {
		opacity: 1;
		transform: scaleY(1);
	}
}

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
	.hero {
		grid-template-columns: 1fr;
	}
	.hero-content {
		padding-top: 120px;
		text-align: center;
	}
	.hero-ctas {
		justify-content: center;
	}
	.hero-divider {
		margin: 24px auto;
	}
	.hero-product {
		padding-top: 0;
	}

	.about {
		grid-template-columns: 1fr;
	}
	.about-visual {
		min-height: 280px;
	}

	.trust-bar {
		grid-template-columns: repeat(2, 1fr);
	}
	.trust-item:nth-child(2) {
		border-right: none;
	}
	.trust-item:nth-child(3) {
		border-top: 1px solid rgba(201, 150, 58, 0.15);
	}
	.trust-item:nth-child(4) {
		border-top: 1px solid rgba(201, 150, 58, 0.15);
		border-right: none;
	}

	.card-grid {
		grid-template-columns: 1fr;
		max-width: 400px;
	}
	.card-featured {
		--card-scale: 1;
	}

	.footer-inner {
		grid-template-columns: 1fr 1fr;
	}

	.nav-links,
	.nav-cta {
		display: none;
	}
	.nav-hamburger {
		display: flex;
	}

	.cert-divider {
		display: none;
	}

	.scroll-indicator {
		display: none;
	}
}

@media (max-width: 600px) {
	.trust-bar {
		grid-template-columns: 1fr 1fr;
	}
	.footer-inner {
		grid-template-columns: 1fr;
	}
	.footer-bottom {
		flex-direction: column;
		text-align: center;
	}
	.hero-title {
		font-size: clamp(2.4rem, 11vw, 4rem);
	}
	.hero-tagline {
		font-size: 0.9rem;
	}
}

/* fade-in on scroll */
.reveal {
	opacity: 0;
	transform: translateY(28px);
	transition:
		opacity 0.7s ease,
		transform 0.7s ease;
}
.reveal.visible {
	opacity: 1;
	transform: none;
}
.reveal-delay-1 {
	transition-delay: 0.1s;
}
.reveal-delay-2 {
	transition-delay: 0.2s;
}
.reveal-delay-3 {
	transition-delay: 0.3s;
}

@media (hover: none) {
	.jar-wrapper,
	.product-card {
		transform: none !important;
	}
	.jar-figure {
		animation: none;
	}
}

@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
	}
}

/* ─── TAILWIND OVERRIDES ─── */
.text-indigo-600, .text-indigo-700, .text-indigo-800 {
	color: var(--gold) !important;
}
.bg-indigo-600, .bg-indigo-700, .bg-indigo-800 {
	background: linear-gradient(135deg, var(--gold), var(--honey)) !important;
}
.border-indigo-600, .border-indigo-700 {
	border-color: var(--gold) !important;
}
.bg-gray-50, .bg-gray-100 {
	background: var(--cream) !important;
}
.rounded-xl, .rounded-2xl, .rounded-3xl {
	border-radius: 16px !important;
}
