@charset "utf-8";
/* EDIL GARDEN SRLS — site styles */

:root {
	--gold-primary: #B8860B;
	--gold-light: #D4A84B;
	--gold-dark: #8B6914;
	--gold-accent: #C9A227;
	--bg-dark: #0F0E0C;
	--bg-card: #1A1815;
	--bg-card-hover: #252119;
	--text-primary: #F5F0E8;
	--text-secondary: #A69F94;
	--text-muted: #6B6560;
	--border-color: #2A2622;
	--success: #4A7C59;
	--danger: #8B3A3A;
}

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

html {
	scroll-behavior: smooth;
}

body {
	font-family: 'Libre Franklin', sans-serif;
	background-color: var(--bg-dark);
	color: var(--text-primary);
	line-height: 1.7;
	font-weight: 300;
	overflow-x: hidden;
}

/* Noise texture overlay */
body::before {
	content: '';
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
	opacity: 0.03;
	z-index: 9999;
	background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: 'Cormorant Garamond', serif;
	font-weight: 500;
	line-height: 1.2;
	letter-spacing: 0.02em;
}

a {
	color: inherit;
	text-decoration: none;
	transition: color 0.3s ease;
}

img {
	max-width: 100%;
	height: auto;
}

.container {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 24px;
}

/* Navigation */
.nav {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	padding: 20px 0;
	transition: all 0.4s ease;
}

.nav.scrolled {
	background: rgba(15, 14, 12, 0.95);
	backdrop-filter: blur(20px);
	padding: 14px 0;
	border-bottom: 1px solid var(--border-color);
}

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

.logo {
	font-family: 'Cormorant Garamond', serif;
	font-size: 28px;
	font-weight: 600;
	color: var(--gold-light);
	letter-spacing: 0.15em;
	text-transform: uppercase;
}

.logo span {
	color: var(--text-primary);
	font-weight: 400;
}

.logo:has(img) {
	font-size: 0;
	line-height: 0;
}

.logo img {
	display: block;
	height: 72px;
	width: auto;
}

/* Navbar logo hover animation */
.nav .logo:has(img) {
	display: inline-block;
	vertical-align: middle;
}

.nav .logo:has(img) img {
	transform: scale(1) translateY(0);
	transform-origin: center center;
	transition:
		transform 0.55s cubic-bezier(0.34, 1.45, 0.64, 1),
		filter 0.5s ease;
}

.nav .logo:has(img):hover img {
	transform: scale(1.07) translateY(-3px);
	filter:
		drop-shadow(0 8px 22px rgba(212, 168, 75, 0.48))
		drop-shadow(0 2px 8px rgba(212, 168, 75, 0.25))
		brightness(1.08);
}

.nav .logo:has(img):active img {
	transform: scale(1.03) translateY(-1px);
	transition-duration: 0.15s;
}

.nav-links-plaque {
	--nav-pill-border: rgba(212, 168, 75, 0.18);
	display: flex;
	align-items: center;
	position: relative;
	padding: 5px 6px;
	border-radius: 999px;
	border: 1px solid var(--nav-pill-border);
	background: linear-gradient(
		165deg,
		rgba(38, 34, 30, 0.88) 0%,
		rgba(20, 18, 16, 0.94) 45%,
		rgba(14, 13, 11, 0.97) 100%
	);
	box-shadow:
		0 8px 32px rgba(0, 0, 0, 0.5),
		0 2px 8px rgba(0, 0, 0, 0.35),
		inset 0 1px 0 rgba(255, 255, 255, 0.06),
		inset 0 -1px 0 rgba(0, 0, 0, 0.4);
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
}

.nav-links-plaque::before {
	content: '';
	position: absolute;
	top: 0;
	left: 10%;
	right: 10%;
	height: 1px;
	border-radius: 1px;
	background: linear-gradient(
		90deg,
		transparent,
		rgba(212, 168, 75, 0.35),
		transparent
	);
	pointer-events: none;
}

.nav.scrolled .nav-links-plaque {
	--nav-pill-border: rgba(212, 168, 75, 0.14);
	background: linear-gradient(
		165deg,
		rgba(32, 29, 26, 0.94) 0%,
		rgba(18, 16, 14, 0.98) 100%
	);
	box-shadow:
		0 10px 36px rgba(0, 0, 0, 0.55),
		inset 0 1px 0 rgba(255, 255, 255, 0.05),
		inset 0 -1px 0 rgba(0, 0, 0, 0.45);
}

.nav-links {
	display: flex;
	align-items: center;
	gap: 2px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.nav-links li {
	display: flex;
	align-items: center;
}

.nav-links a {
	font-family: 'Cormorant Garamond', serif;
	font-size: 13px;
	font-weight: 500;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: rgba(245, 240, 232, 0.72);
	position: relative;
	padding: 10px 18px;
	border-radius: 999px;
	transition:
		color 0.35s ease,
		background 0.35s ease,
		box-shadow 0.35s ease,
		text-shadow 0.35s ease;
	white-space: nowrap;
	-webkit-font-smoothing: antialiased;
}

.nav-links a::before {
	display: none;
}

.nav-links a::after {
	content: '';
	position: absolute;
	left: 50%;
	bottom: 7px;
	width: calc(100% - 28px);
	height: 1px;
	transform: translateX(-50%) scaleX(0);
	transform-origin: center;
	background: linear-gradient(
		90deg,
		transparent,
		rgba(212, 168, 75, 0.85),
		transparent
	);
	opacity: 0;
	transition: transform 0.4s cubic-bezier(0.34, 1.1, 0.64, 1), opacity 0.3s ease;
	pointer-events: none;
}

.nav-links a:hover {
	color: var(--gold-light);
	background: rgba(212, 168, 75, 0.07);
	box-shadow:
		inset 0 0 0 1px rgba(212, 168, 75, 0.12),
		0 0 24px rgba(212, 168, 75, 0.08);
	text-shadow: 0 0 28px rgba(212, 168, 75, 0.2);
}

.nav-links a:hover::after {
	transform: translateX(-50%) scaleX(1);
	opacity: 1;
}

.nav-links a.active {
	color: var(--gold-light);
	background: rgba(212, 168, 75, 0.1);
	box-shadow:
		inset 0 0 0 1px rgba(212, 168, 75, 0.2),
		0 0 20px rgba(212, 168, 75, 0.06);
	text-shadow: 0 0 20px rgba(212, 168, 75, 0.15);
}

.nav-links a.active::after {
	transform: translateX(-50%) scaleX(1);
	opacity: 1;
}

.nav-cta {
	display: flex;
	align-items: center;
	gap: 16px;
}

@media (prefers-reduced-motion: reduce) {
	.nav-links a::after {
		transition: none;
	}

	.btn {
		transition: color 0.35s ease, background 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
	}

	.btn-outline:hover,
	.btn-primary:hover {
		transform: none;
	}
}

/* Mobile Menu Styles */
.mobile-menu {
	position: fixed;
	top: 0;
	right: -100%;
	width: 100%;
	max-width: 400px;
	height: 100vh;
	background: var(--bg-card);
	z-index: 2000;
	padding: 100px 40px 40px;
	transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	border-left: 1px solid var(--border-color);
	overflow-y: auto;
}

.mobile-menu.open {
	right: 0;
}

.mobile-menu-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.7);
	z-index: 1999;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.4s ease, visibility 0.4s ease;
}

.mobile-menu-overlay.open {
	opacity: 1;
	visibility: visible;
}

.mobile-menu-close {
	position: absolute;
	top: 24px;
	right: 24px;
	width: 48px;
	height: 48px;
	background: none;
	border: 1px solid var(--border-color);
	color: var(--text-secondary);
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
}

.mobile-menu-close:hover {
	border-color: var(--gold-primary);
	color: var(--gold-light);
}

.mobile-nav-links {
	list-style: none;
	margin-bottom: 40px;
}

.mobile-nav-links li {
	border-bottom: 1px solid var(--border-color);
}

.mobile-nav-links a {
	display: block;
	padding: 20px 0;
	font-family: 'Cormorant Garamond', serif;
	font-size: 24px;
	color: var(--text-secondary);
	transition: all 0.3s ease;
	position: relative;
}

.mobile-nav-links a::after {
	content: '→';
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%) translateX(-10px);
	opacity: 0;
	color: var(--gold-primary);
	transition: all 0.3s ease;
}

.mobile-nav-links a:hover,
.mobile-nav-links a.active {
	color: var(--gold-light);
	padding-left: 12px;
}

.mobile-nav-links a:hover::after,
.mobile-nav-links a.active::after {
	opacity: 1;
	transform: translateY(-50%) translateX(0);
}

.mobile-menu-cta {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.mobile-menu-cta .btn {
	width: 100%;
	text-align: center;
}

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 12px 28px;
	font-size: 11px;
	font-weight: 500;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	border: none;
	cursor: pointer;
	font-family: 'Libre Franklin', sans-serif;
	-webkit-font-smoothing: antialiased;
	border-radius: 999px;
	position: relative;
	overflow: hidden;
	transition:
		color 0.35s ease,
		background 0.35s ease,
		border-color 0.35s ease,
		box-shadow 0.35s ease,
		transform 0.3s cubic-bezier(0.34, 1.15, 0.64, 1);
}

.btn:focus-visible {
	outline: 2px solid var(--gold-light);
	outline-offset: 3px;
}

.btn-outline {
	background: rgba(18, 16, 14, 0.65);
	color: rgba(245, 240, 232, 0.92);
	border: 1px solid rgba(212, 168, 75, 0.42);
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.06),
		inset 0 -1px 0 rgba(0, 0, 0, 0.35),
		0 4px 18px rgba(0, 0, 0, 0.35);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
}

.btn-outline:hover {
	background: rgba(212, 168, 75, 0.12);
	color: var(--gold-light);
	border-color: rgba(212, 168, 75, 0.75);
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.08),
		0 6px 24px rgba(212, 168, 75, 0.14),
		0 0 0 1px rgba(212, 168, 75, 0.12);
	transform: translateY(-2px);
}

.btn-outline:active {
	transform: translateY(0);
	transition-duration: 0.12s;
}

.btn-primary {
	background: linear-gradient(
		168deg,
		#E4BC5A 0%,
		#D4A84B 22%,
		#B8860B 55%,
		#8B6914 100%
	);
	color: #0F0E0C;
	border: 1px solid rgba(255, 235, 180, 0.45);
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.35),
		inset 0 -1px 0 rgba(0, 0, 0, 0.2),
		0 6px 22px rgba(184, 134, 11, 0.45);
}

.btn-primary:hover {
	background: linear-gradient(
		168deg,
		#F0C86A 0%,
		#E0B85C 28%,
		#C9A227 58%,
		#B8860B 100%
	);
	transform: translateY(-2px);
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.4),
		0 10px 32px rgba(212, 168, 75, 0.45),
		0 0 48px rgba(212, 168, 75, 0.18);
}

.btn-primary:active {
	transform: translateY(0);
	transition-duration: 0.12s;
}

.mobile-menu-btn {
	display: none;
	flex-direction: column;
	gap: 6px;
	background: none;
	border: 1px solid var(--border-color);
	cursor: pointer;
	padding: 12px;
	transition: all 0.3s ease;
}

.mobile-menu-btn:hover {
	border-color: var(--gold-primary);
}

.mobile-menu-btn span {
	width: 20px;
	height: 1.5px;
	background: var(--gold-light);
	transition: all 0.3s ease;
	transform-origin: center;
}

.mobile-menu-btn.active span:nth-child(1) {
	transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
	opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
	transform: rotate(-45deg) translate(5px, -5px);
}

/* Hide body scroll when menu open */
body.menu-open {
	overflow: hidden;
}

/* Hero Section */
.hero {
	min-height: 100vh;
	display: flex;
	align-items: center;
	position: relative;
	padding: 120px 0 80px;
	overflow: hidden;
}

.hero::before {
	content: '';
	position: absolute;
	top: -50%;
	right: -20%;
	width: 80%;
	height: 150%;
	background: radial-gradient(ellipse at center, rgba(184, 134, 11, 0.08) 0%, transparent 60%);
	pointer-events: none;
	z-index: 0;
}

/* Feather bottom — soft transition into next section */
.hero::after {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: clamp(72px, 12vw, 140px);
	background: linear-gradient(
		to top,
		rgba(15, 14, 12, 0.78) 0%,
		rgba(12, 11, 9, 0.35) 55%,
		transparent 100%
	);
	pointer-events: none;
	z-index: 1;
}

.hero-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 80px;
	align-items: center;
}

.hero-content {
	position: relative;
	z-index: 2;
}

.hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 10px 20px;
	background: var(--bg-card);
	border: 1px solid var(--border-color);
	margin-bottom: 32px;
	font-size: 12px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--text-secondary);
}

.hero-badge .dot {
	width: 8px;
	height: 8px;
	background: var(--success);
	border-radius: 50%;
	animation: pulse 2s infinite;
}

@keyframes pulse {

	0%,
	100% {
		opacity: 1;
	}

	50% {
		opacity: 0.5;
	}
}

.hero-title {
	font-size: clamp(48px, 6vw, 80px);
	color: var(--text-primary);
	margin-bottom: 24px;
	font-weight: 400;
}

.hero-title .gold {
	color: var(--gold-light);
	font-style: italic;
}

.hero-desc {
	font-size: 18px;
	color: var(--text-secondary);
	max-width: 480px;
	margin-bottom: 40px;
	line-height: 1.8;
}

.hero-actions {
	display: flex;
	gap: 16px;
	margin-bottom: 60px;
}

/* Price Card */
.hero-visual {
	position: relative;
}

.price-card {
	background: var(--bg-card);
	border: 1px solid var(--border-color);
	padding: 40px;
	position: relative;
}

.price-card::before {
	content: '';
	position: absolute;
	top: -1px;
	left: 40px;
	right: 40px;
	height: 2px;
	background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
}

.price-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 32px;
}

.price-label {
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 0.15em;
	color: var(--text-muted);
}

.price-live {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 11px;
	color: var(--success);
	text-transform: uppercase;
	letter-spacing: 0.1em;
}

.price-live::before {
	content: '';
	width: 6px;
	height: 6px;
	background: var(--success);
	border-radius: 50%;
	animation: pulse 1.5s infinite;
}

.price-main {
	margin-bottom: 32px;
}

.price-value {
	font-family: 'Cormorant Garamond', serif;
	font-size: 64px;
	color: var(--text-primary);
	line-height: 1;
	margin-bottom: 8px;
}

.price-value .currency {
	font-size: 32px;
	color: var(--gold-light);
	vertical-align: top;
}

.price-change {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 6px 12px;
	background: rgba(74, 124, 89, 0.15);
	color: var(--success);
	font-size: 14px;
	font-weight: 500;
}

.price-change.down {
	background: rgba(139, 58, 58, 0.15);
	color: var(--danger);
}

.price-metals {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 16px;
	padding-top: 32px;
	border-top: 1px solid var(--border-color);
}

.metal-item {
	padding: 20px;
	background: var(--bg-dark);
	border: 1px solid var(--border-color);
	transition: all 0.3s ease;
}

.metal-item:hover {
	border-color: var(--gold-primary);
}

.metal-name {
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--text-muted);
	margin-bottom: 8px;
}

.metal-price {
	font-family: 'Cormorant Garamond', serif;
	font-size: 24px;
	color: var(--text-primary);
}

.metal-change {
	font-size: 12px;
	color: var(--success);
	margin-top: 4px;
}

.metal-change.down {
	color: var(--danger);
}

/* Section Styles */
section {
	padding: 120px 0;
}

.section-header {
	text-align: center;
	max-width: 600px;
	margin: 0 auto 80px;
}

.section-label {
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 0.2em;
	color: var(--gold-primary);
	margin-bottom: 16px;
}

.section-title {
	font-size: clamp(36px, 4vw, 52px);
	color: var(--text-primary);
	margin-bottom: 20px;
}

.section-desc {
	font-size: 16px;
	color: var(--text-secondary);
	line-height: 1.8;
}

/* Services Section */
.services {
	position: relative;
	background-color: var(--bg-card);
	background-image: url('images/bg3.jpg');
	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;
	background-attachment: scroll;
	border-top: 1px solid rgba(42, 38, 34, 0.55);
}

.services::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(
		160deg,
		rgba(10, 9, 8, 0.9) 0%,
		rgba(15, 14, 12, 0.84) 45%,
		rgba(12, 11, 9, 0.88) 100%
	);
	z-index: 0;
	pointer-events: none;
}

/* Feather bottom — blend into Operating principles (bg1) */
.services::after {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: clamp(80px, 14vw, 160px);
	background: linear-gradient(
		to top,
		rgba(12, 11, 9, 0.9) 0%,
		rgba(15, 14, 12, 0.45) 50%,
		transparent 100%
	);
	z-index: 1;
	pointer-events: none;
}

.services > .container {
	position: relative;
	z-index: 2;
}

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

@media (max-width: 1200px) {
	.services-grid {
		grid-template-columns: repeat(2, 1fr);
	}

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

@media (max-width: 600px) {
	.services-grid {
		grid-template-columns: 1fr;
	}

	.pricing-grid {
		grid-template-columns: 1fr;
	}
}

.service-card {
	padding: 48px 32px;
	background: var(--bg-dark);
	border: 1px solid var(--border-color);
	text-align: center;
	display: flex;
	flex-direction: column;
	transition: all 0.4s ease;
	position: relative;
	overflow: hidden;
}

.service-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 2px;
	background: var(--gold-primary);
	transform: scaleX(0);
	transition: transform 0.4s ease;
}

.service-card:hover {
	transform: translateY(-8px);
	border-color: var(--gold-dark);
	background: var(--bg-card-hover);
}

.service-card:hover::before {
	transform: scaleX(1);
}

.service-icon {
	width: 64px;
	height: 64px;
	margin: 0 auto 24px;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid var(--gold-dark);
	color: var(--gold-light);
	font-size: 24px;
	transition: all 0.4s ease;
}

.service-media {
	margin: -10px -10px 22px;
	border: 1px solid rgba(212, 168, 75, 0.2);
	overflow: hidden;
}

.service-media img {
	display: block;
	width: 100%;
	height: 190px;
	object-fit: cover;
	filter: saturate(0.9) contrast(1.03);
	transition: transform 0.6s ease, filter 0.35s ease;
}

.service-card:hover .service-media img {
	transform: scale(1.05);
	filter: saturate(1) contrast(1.06);
}

/* About page unique blocks */
.about-feature {
	display: grid;
	grid-template-columns: minmax(280px, 0.9fr) 1.1fr;
	gap: 40px;
	align-items: stretch;
	background: rgba(8, 7, 6, 0.76);
	border: 1px solid var(--border-color);
	box-shadow:
		inset 0 1px 0 rgba(212, 168, 75, 0.08),
		0 14px 34px rgba(0, 0, 0, 0.36);
}

.about-feature-media {
	overflow: hidden;
}

.about-feature-media img {
	width: 100%;
	height: 100%;
	min-height: 320px;
	object-fit: cover;
	display: block;
	filter: saturate(0.92) contrast(1.04);
}

.about-feature-body {
	padding: 34px 34px 30px 0;
}

.about-feature-body h2 {
	font-size: 38px;
	margin-bottom: 16px;
}

.about-feature-body p {
	color: var(--text-secondary);
	font-size: 15px;
	line-height: 1.75;
	margin-bottom: 18px;
}

.about-feature-body ul {
	list-style: none;
	margin: 0;
}

.about-feature-body ul li {
	position: relative;
	padding-left: 22px;
	margin-bottom: 10px;
	color: var(--text-secondary);
	font-size: 14px;
}

.about-feature-body ul li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 8px;
	width: 9px;
	height: 9px;
	border-radius: 50%;
	background: var(--gold-primary);
	box-shadow: 0 0 12px rgba(212, 168, 75, 0.42);
}

.about-split {
	display: grid;
	grid-template-columns: 1.1fr minmax(280px, 0.9fr);
	gap: 34px;
	align-items: center;
}

.about-split-reverse {
	grid-template-columns: minmax(280px, 0.9fr) 1.1fr;
}

.about-split-reverse .about-split-content {
	order: 2;
}

.about-split-reverse .about-split-media {
	order: 1;
}

.about-split-content {
	background: rgba(8, 7, 6, 0.74);
	border: 1px solid var(--border-color);
	padding: 28px 30px;
}

.about-split-media {
	border: 1px solid rgba(212, 168, 75, 0.18);
	overflow: hidden;
}

.about-split-media img {
	display: block;
	width: 100%;
	height: 360px;
	object-fit: cover;
	filter: saturate(0.9) contrast(1.03);
}

.about-inline-metrics {
	margin-top: 18px;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 12px;
}

.about-inline-metrics > div {
	background: rgba(16, 14, 12, 0.85);
	border: 1px solid rgba(212, 168, 75, 0.16);
	padding: 14px 12px;
}

.metric-name {
	display: block;
	font-size: 10px;
	text-transform: uppercase;
	letter-spacing: 0.11em;
	color: var(--text-muted);
	margin-bottom: 4px;
}

.metric-value {
	display: block;
	font-size: 14px;
	color: var(--gold-light);
}

.service-card:hover .service-icon {
	background: var(--gold-primary);
	color: var(--bg-dark);
	border-color: var(--gold-primary);
}

.service-title {
	font-size: 22px;
	color: var(--text-primary);
	margin-bottom: 16px;
}

.service-desc {
	font-size: 14px;
	color: var(--text-secondary);
	line-height: 1.7;
	margin-bottom: 0;
}

.service-learn-more {
	margin-top: auto;
	padding-top: 18px;
	width: auto;
	align-self: center;
}

.pricing {
	background: var(--bg-card);
}

.pricing-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 26px;
	align-items: stretch;
}

.pricing-card {
	position: relative;
	isolation: isolate;
	background:
		linear-gradient(160deg, rgba(31, 28, 24, 0.72) 0%, rgba(15, 14, 12, 0.96) 52%, rgba(9, 8, 7, 0.96) 100%);
	border: 1px solid rgba(212, 168, 75, 0.2);
	padding: 32px 28px 26px;
	border-radius: 3px;
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.06),
		inset 0 -1px 0 rgba(0, 0, 0, 0.35),
		0 18px 40px rgba(0, 0, 0, 0.4);
	display: flex;
	flex-direction: column;
	gap: 18px;
	overflow: hidden;
	transition:
		transform 0.45s cubic-bezier(0.34, 1.35, 0.64, 1),
		border-color 0.35s ease,
		box-shadow 0.45s ease,
		background 0.35s ease,
		filter 0.35s ease;
}

.pricing-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 12%;
	right: 12%;
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(212, 168, 75, 0.55), transparent);
	opacity: 0.9;
	z-index: -1;
}

.pricing-card::after {
	content: '';
	position: absolute;
	top: -120px;
	right: -80px;
	width: 210px;
	height: 210px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(212, 168, 75, 0.13) 0%, rgba(212, 168, 75, 0) 70%);
	pointer-events: none;
	z-index: -1;
}

.pricing-card-featured {
	background:
		linear-gradient(158deg, rgba(40, 34, 26, 0.88) 0%, rgba(21, 18, 14, 0.97) 48%, rgba(11, 10, 8, 0.98) 100%);
	border-color: rgba(212, 168, 75, 0.52);
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.08),
		inset 0 -1px 0 rgba(0, 0, 0, 0.45),
		0 20px 46px rgba(0, 0, 0, 0.5),
		0 0 36px rgba(212, 168, 75, 0.14);
}

.pricing-badge {
	font-size: 10px;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--bg-dark);
	background: linear-gradient(135deg, var(--gold-light), var(--gold-primary));
	padding: 6px 10px;
	border-radius: 999px;
	width: fit-content;
	font-weight: 600;
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.3),
		0 8px 22px rgba(212, 168, 75, 0.28);
}

.pricing-name {
	font-family: 'Cormorant Garamond', serif;
	font-size: 38px;
	font-weight: 500;
	line-height: 1.1;
	color: var(--text-primary);
	letter-spacing: 0.01em;
}

.pricing-price {
	font-size: 38px;
	color: var(--gold-light);
	font-weight: 500;
	line-height: 1;
	display: flex;
	align-items: baseline;
	gap: 8px;
}

.pricing-price .currency {
	font-size: 12px;
	letter-spacing: 0.13em;
	text-transform: uppercase;
	color: var(--text-secondary);
}

.pricing-price .period {
	font-size: 14px;
	font-weight: 300;
	color: var(--text-secondary);
	margin-left: 2px;
}

.pricing-features {
	list-style: none;
	margin: 6px 0 8px;
	padding-top: 2px;
	border-top: 1px solid rgba(212, 168, 75, 0.12);
}

.pricing-features li {
	position: relative;
	padding-left: 22px;
	margin-bottom: 11px;
	color: var(--text-secondary);
	font-size: 14px;
	line-height: 1.58;
}

.pricing-features li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 10px;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--gold-primary);
	box-shadow: 0 0 14px rgba(212, 168, 75, 0.45);
}

.pricing-card .btn {
	margin-top: auto;
	width: 100%;
}

.pricing-card:hover {
	transform: translateY(-11px) scale(1.01);
	border-color: rgba(212, 168, 75, 0.56);
	background:
		linear-gradient(160deg, rgba(36, 31, 25, 0.84) 0%, rgba(19, 17, 14, 0.98) 55%, rgba(11, 10, 8, 0.98) 100%);
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.1),
		inset 0 -1px 0 rgba(0, 0, 0, 0.48),
		0 24px 50px rgba(0, 0, 0, 0.56),
		0 0 42px rgba(212, 168, 75, 0.2);
}

.pricing-card:hover .pricing-price {
	text-shadow: 0 0 28px rgba(212, 168, 75, 0.32);
}

.pricing-card:hover .pricing-name {
	color: #fff6e7;
}

.pricing-card:hover .pricing-features li::before {
	box-shadow: 0 0 18px rgba(212, 168, 75, 0.6);
}

.pricing-card-featured:hover .pricing-badge {
	box-shadow: 0 0 22px rgba(212, 168, 75, 0.45);
}

@media (prefers-reduced-motion: reduce) {
	.pricing-card {
		transition: border-color 0.35s ease, box-shadow 0.35s ease, background 0.35s ease;
	}

	.pricing-card:hover {
		transform: none;
	}
}

@media (max-width: 768px) {
	.pricing-card {
		padding: 28px 20px 22px;
	}

	.pricing-name {
		font-size: 34px;
	}

	.pricing-price {
		font-size: 34px;
	}

	.pricing-grid {
		grid-template-columns: 1fr;
		gap: 16px;
	}

	.pricing-features li {
		font-size: 13px;
		line-height: 1.5;
	}

	.pricing-card .btn {
		min-height: 44px;
		padding: 12px 16px;
		letter-spacing: 0.14em;
	}

	.about-feature,
	.about-split,
	.about-split-reverse {
		grid-template-columns: 1fr;
		gap: 0;
	}

	.about-feature-body {
		padding: 24px 20px 24px;
	}

	.about-feature-body h2 {
		font-size: 32px;
	}

	.about-split-content {
		padding: 24px 20px;
	}

	.about-split-reverse .about-split-content,
	.about-split-reverse .about-split-media {
		order: initial;
	}

	.about-feature-media img,
	.about-split-media img {
		min-height: 0;
		height: 260px;
	}

	.about-inline-metrics {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 992px) {
	.pricing-grid {
		grid-template-columns: 1fr;
	}
}

/* Why Gold Section */
.why-gold {
	position: relative;
	background-color: var(--bg-dark);
	background-image: url('images/bg1.jpg');
	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;
	background-attachment: scroll;
}

.why-gold::before {
	content: '';
	position: absolute;
	inset: 0;
	/* Top feather + main scrim — soft edge after Services (bg3) */
	background-image:
		linear-gradient(
			to bottom,
			rgba(11, 10, 9, 0.82) 0%,
			rgba(15, 14, 12, 0.42) 48%,
			transparent 100%
		),
		linear-gradient(
			95deg,
			rgba(8, 7, 6, 0.94) 0%,
			rgba(10, 9, 8, 0.88) 42%,
			rgba(12, 11, 9, 0.72) 72%,
			rgba(10, 9, 8, 0.82) 100%
		);
	background-size:
		100% clamp(80px, 14vw, 160px),
		100% 100%;
	background-position:
		top center,
		center;
	background-repeat: no-repeat, no-repeat;
	z-index: 0;
	pointer-events: none;
}

/* Feather bottom edge into next section — softens seam between bg1 and bg2 */
.why-gold::after {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: clamp(80px, 14vw, 160px);
	background: linear-gradient(
		to top,
		rgba(12, 11, 9, 0.92) 0%,
		rgba(15, 14, 12, 0.55) 45%,
		transparent 100%
	);
	z-index: 1;
	pointer-events: none;
}

.why-gold > .container {
	position: relative;
	z-index: 2;
}

.why-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 80px;
	align-items: center;
}

.why-content {
	padding: 36px 40px 40px 36px;
	margin-right: 0;
	max-width: 100%;
	background: rgba(6, 5, 4, 0.72);
	backdrop-filter: blur(18px);
	-webkit-backdrop-filter: blur(18px);
	border-radius: 4px;
	border: 1px solid rgba(212, 168, 75, 0.18);
	box-shadow:
		0 4px 0 rgba(212, 168, 75, 0.06) inset,
		0 32px 64px rgba(0, 0, 0, 0.45);
}

.why-gold .why-content .section-label {
	color: var(--gold-light);
	text-shadow: 0 1px 2px rgba(0, 0, 0, 0.45);
}

.why-gold .why-content .section-title {
	color: var(--text-primary);
	text-shadow: 0 2px 8px rgba(0, 0, 0, 0.55);
}

.why-gold .why-text h4 {
	color: #f7f3ec;
	text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.why-gold .why-text p {
	color: #e3ddd0;
}

.why-gold .why-number {
	text-shadow: 0 1px 3px rgba(0, 0, 0, 0.45);
}

.why-content .section-label {
	text-align: left;
}

.why-content .section-title {
	text-align: left;
}

.why-list {
	list-style: none;
	margin-top: 40px;
}

.why-item {
	display: flex;
	gap: 20px;
	padding: 24px 0;
	border-bottom: 1px solid var(--border-color);
}

.why-item:last-child {
	border-bottom: none;
}

.why-number {
	font-family: 'Cormorant Garamond', serif;
	font-size: 32px;
	color: var(--gold-dark);
	line-height: 1;
	min-width: 40px;
}

.why-text h4 {
	font-size: 20px;
	color: var(--text-primary);
	margin-bottom: 8px;
	font-weight: 500;
}

.why-text p {
	font-size: 14px;
	color: var(--text-secondary);
	line-height: 1.7;
}

.why-visual {
	position: relative;
}

.why-image-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-template-rows: repeat(2, 1fr);
	gap: 12px;
}

.why-thumb {
	aspect-ratio: 1;
	background: var(--bg-card);
	border: 1px solid var(--border-color);
	overflow: hidden;
	position: relative;
	transition: all 0.4s ease;
}

.why-thumb::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(135deg, rgba(184, 134, 11, 0.1) 0%, transparent 60%);
	z-index: 1;
	opacity: 0;
	transition: opacity 0.4s ease;
}

.why-thumb:hover {
	border-color: var(--gold-dark);
	transform: scale(1.02);
	z-index: 2;
}

.why-thumb:hover::before {
	opacity: 1;
}

.why-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.6s ease;
}

.why-thumb:hover img {
	transform: scale(1.08);
}

/* First image spans 2x2 on desktop and tablet */
.why-thumb:nth-child(1) {
	grid-column: span 2;
	grid-row: span 2;
}

/* Mobile - 2 column layout */
@media (max-width: 600px) {
	.why-image-grid {
		grid-template-columns: repeat(2, 1fr);
		grid-template-rows: auto;
		gap: 8px;
	}

	.why-thumb:nth-child(1) {
		grid-column: span 2;
		grid-row: span 2;
	}

	.why-thumb:nth-child(2),
	.why-thumb:nth-child(3),
	.why-thumb:nth-child(4),
	.why-thumb:nth-child(5) {
		aspect-ratio: 1;
	}
}

/* Products Section */
.products {
	background: var(--bg-card);
}

.products.process-work {
	position: relative;
	background-color: var(--bg-card);
	background-image: url('images/bg2.jpg');
	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;
	background-attachment: scroll;
}

.products.process-work::before {
	content: '';
	position: absolute;
	inset: 0;
	/* Full scrim + top feather in one layer */
	background-image:
		linear-gradient(
			to bottom,
			rgba(11, 10, 9, 0.88) 0%,
			rgba(15, 14, 12, 0.42) 50%,
			transparent 100%
		),
		linear-gradient(
			165deg,
			rgba(10, 9, 8, 0.91) 0%,
			rgba(15, 14, 12, 0.85) 40%,
			rgba(12, 11, 9, 0.88) 100%
		);
	background-size:
		100% clamp(80px, 14vw, 160px),
		100% 100%;
	background-position:
		top center,
		center;
	background-repeat: no-repeat, no-repeat;
	z-index: 0;
	pointer-events: none;
}

/* Feather bottom — blend into Perspectives */
.products.process-work::after {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: clamp(80px, 14vw, 160px);
	background: linear-gradient(
		to top,
		rgba(12, 11, 9, 0.92) 0%,
		rgba(15, 14, 12, 0.48) 52%,
		transparent 100%
	);
	z-index: 1;
	pointer-events: none;
}

.products.process-work > .container {
	position: relative;
	z-index: 2;
}

.products-tabs {
	display: flex;
	justify-content: center;
	gap: 8px;
	margin-bottom: 60px;
}

.tab-btn {
	padding: 14px 32px;
	background: transparent;
	border: 1px solid var(--border-color);
	color: var(--text-secondary);
	font-family: 'Libre Franklin', sans-serif;
	font-size: 12px;
	font-weight: 500;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	cursor: pointer;
	transition: all 0.3s ease;
}

.tab-btn:hover {
	border-color: var(--gold-dark);
	color: var(--text-primary);
}

.tab-btn.active {
	background: var(--gold-primary);
	border-color: var(--gold-primary);
	color: var(--bg-dark);
}

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

/* Products Tab Content */
.products-tab-content {

	display: none;
}

.products-tab-content.active {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
}

/* Interactive working process */
.process-tab-panel {
	display: none;
}

.process-tab-panel.active {
	display: block;
	animation: processFadeIn 0.45s ease forwards;
}

@keyframes processFadeIn {
	from {
		opacity: 0;
		transform: translateY(10px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.process-panel-inner {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1.08fr);
	gap: 0;
	align-items: stretch;
	background: var(--bg-dark);
	border: 1px solid var(--border-color);
	overflow: hidden;
}

.process-panel-visual {
	position: relative;
	min-height: 340px;
	background: var(--bg-card);
}

.process-panel-visual img {
	width: 100%;
	height: 100%;
	min-height: 340px;
	object-fit: cover;
	display: block;
}

.process-panel-body {
	padding: 44px 48px 44px 44px;
}

.process-phase {
	display: inline-block;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--gold-primary);
	margin-bottom: 12px;
}

.process-work .process-title {
	font-family: 'Cormorant Garamond', serif;
	font-size: clamp(26px, 3vw, 36px);
	font-weight: 600;
	color: var(--text-primary);
	margin-bottom: 16px;
	line-height: 1.2;
}

.process-lead {
	font-size: 15px;
	color: var(--text-secondary);
	line-height: 1.75;
	margin-bottom: 24px;
}

.process-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.process-list li {
	position: relative;
	padding-left: 22px;
	margin-bottom: 14px;
	font-size: 14px;
	color: var(--text-secondary);
	line-height: 1.65;
}

.process-list li:last-child {
	margin-bottom: 0;
}

.process-list li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0.55em;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--gold-primary);
	opacity: 0.85;
}

.process-controls {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 28px;
	margin-top: 40px;
	flex-wrap: wrap;
}

.process-hint {
	font-size: 12px;
	color: var(--text-muted);
	letter-spacing: 0.04em;
	margin: 0;
	max-width: 280px;
	line-height: 1.5;
	text-align: center;
}

.process-arrow {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 12px 22px;
	background: transparent;
	border: 1px solid var(--border-color);
	color: var(--text-secondary);
	font-family: inherit;
	font-size: 11px;
	font-weight: 500;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	cursor: pointer;
	transition: border-color 0.3s ease, color 0.3s ease, background 0.3s ease;
}

.process-arrow:hover {
	border-color: var(--gold-primary);
	color: var(--gold-light);
	background: rgba(184, 134, 11, 0.06);
}

.process-arrow svg {
	flex-shrink: 0;
}

@media (max-width: 992px) {
	.process-panel-inner {
		grid-template-columns: 1fr;
	}

	.process-panel-visual {
		min-height: 240px;
	}

	.process-panel-visual img {
		min-height: 240px;
	}

	.process-panel-body {
		padding: 32px 24px 36px;
	}

	.process-controls {
		flex-direction: column;
		gap: 16px;
	}

	.process-hint {
		order: -1;
		max-width: none;
	}
}

@media (max-width: 1200px) {

	.products-tab-content.active,
	.products-grid {
		grid-template-columns: repeat(3, 1fr);
		gap: 20px;
	}
}

@media (max-width: 900px) {

	.products-tab-content.active,
	.products-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 16px;
	}
}

@media (max-width: 480px) {

	.products-tab-content.active,
	.products-grid {
		grid-template-columns: 1fr;
		gap: 16px;
	}

	.product-info {
		padding: 20px;
	}

	.product-name {
		font-size: 18px;
	}

	.product-weight {
		font-size: 11px;
		margin-bottom: 12px;
	}

	.product-price {
		font-size: 22px;
	}

	.product-btn {
		width: 36px;
		height: 36px;
		font-size: 18px;
	}
}

.product-card {
	background: var(--bg-dark);
	border: 1px solid var(--border-color);
	overflow: hidden;
	transition: all 0.4s ease;
}

.product-card:hover {
	border-color: var(--gold-dark);
	transform: translateY(-4px);
}

.product-image {
	aspect-ratio: 1;
	background: linear-gradient(180deg, #1F1D1A 0%, #151412 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	overflow: hidden;
}

.product-image::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: radial-gradient(circle at 30% 30%, rgba(184, 134, 11, 0.08) 0%, transparent 60%);
	pointer-events: none;
}

.product-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
	transform: scale(1.05);
}

.product-info {
	padding: 24px;
}

.product-name {
	font-family: 'Cormorant Garamond', serif;
	font-size: 20px;
	color: var(--text-primary);
	margin-bottom: 4px;
}

.product-weight {
	font-size: 12px;
	color: var(--text-muted);
	text-transform: uppercase;
	letter-spacing: 0.1em;
	margin-bottom: 16px;
}

.product-footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.product-price {
	font-family: 'Cormorant Garamond', serif;
	font-size: 24px;
	color: var(--gold-light);
}

.product-btn {
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: transparent;
	border: 1px solid var(--border-color);
	color: var(--text-secondary);
	font-size: 20px;
	cursor: pointer;
	transition: all 0.3s ease;
}

.product-btn:hover {
	background: var(--gold-primary);
	border-color: var(--gold-primary);
	color: var(--bg-dark);
}

/* Video testimonial */
.video-testimonial {
	position: relative;
	background-color: var(--bg-dark);
	overflow: hidden;
}

.video-testimonial::before {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	height: clamp(72px, 12vw, 140px);
	background: linear-gradient(
		to bottom,
		rgba(15, 14, 12, 0.88) 0%,
		rgba(12, 11, 9, 0.35) 70%,
		transparent 100%
	);
	pointer-events: none;
	z-index: 0;
}

.video-testimonial::after {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: clamp(72px, 12vw, 140px);
	background: linear-gradient(
		to top,
		rgba(15, 14, 12, 0.9) 0%,
		rgba(12, 11, 9, 0.4) 55%,
		transparent 100%
	);
	pointer-events: none;
	z-index: 0;
}

.video-testimonial > .container {
	position: relative;
	z-index: 1;
}

.video-testimonial-frame {
	max-width: 920px;
	margin: 0 auto;
	padding: 3px;
	background: linear-gradient(
		135deg,
		rgba(212, 168, 75, 0.22) 0%,
		rgba(42, 38, 34, 0.95) 45%,
		rgba(26, 24, 21, 0.98) 100%
	);
	border-radius: 2px;
	box-shadow:
		0 32px 64px rgba(0, 0, 0, 0.45),
		inset 0 1px 0 rgba(212, 168, 75, 0.12);
}

.video-testimonial-frame video {
	width: 100%;
	height: auto;
	display: block;
	background: #000;
	border-radius: 1px;
}

@media (max-width: 768px) {
	.video-testimonial-frame {
		margin-left: 0;
		margin-right: 0;
	}
}

/* Testimonials */
.testimonials {
	position: relative;
	overflow: hidden;
	background-color: var(--bg-dark);
	background-image: linear-gradient(
		to bottom,
		rgba(15, 14, 12, 0.88) 0%,
		rgba(15, 14, 12, 0.35) min(160px, 22vw),
		transparent min(200px, 28vw)
	);
	background-repeat: no-repeat;
}

.testimonials::before {
	content: '"';
	position: absolute;
	top: 80px;
	left: 10%;
	font-family: 'Cormorant Garamond', serif;
	font-size: 400px;
	color: var(--gold-dark);
	opacity: 0.05;
	line-height: 1;
	pointer-events: none;
	z-index: 0;
}

/* Feather bottom — blend into CTA */
.testimonials::after {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: clamp(72px, 12vw, 140px);
	background: linear-gradient(
		to top,
		rgba(15, 14, 12, 0.92) 0%,
		rgba(12, 11, 9, 0.4) 50%,
		transparent 100%
	);
	pointer-events: none;
	z-index: 0;
}

.testimonials > .container {
	position: relative;
	z-index: 1;
}

.testimonials-wrapper {
	position: relative;
	max-width: 900px;
	margin: 0 auto;
}

.testimonials-slider {
	text-align: center;
	overflow: hidden;
}

.testimonials-track {
	display: flex;
	transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-item {
	min-width: 100%;
	padding: 0 60px;
}

.testimonial-text {
	font-family: 'Cormorant Garamond', serif;
	font-size: clamp(24px, 3vw, 36px);
	font-style: italic;
	color: var(--text-primary);
	line-height: 1.6;
	margin-bottom: 40px;
}

.testimonial-author {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
}

.author-name {
	font-size: 16px;
	font-weight: 500;
	color: var(--text-primary);
	letter-spacing: 0.05em;
}

.author-title {
	font-size: 13px;
	color: var(--text-muted);
	text-transform: uppercase;
	letter-spacing: 0.1em;
}

/* Testimonial Navigation Arrows */
.testimonial-nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 100%;
	display: flex;
	justify-content: space-between;
	pointer-events: none;
	padding: 0 0;
}

.testimonial-arrow {
	width: 56px;
	height: 56px;
	background: transparent;
	border: 1px solid var(--border-color);
	color: var(--text-muted);
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	pointer-events: auto;
	transition: all 0.3s ease;
	opacity: 0.5;
}

.testimonial-arrow:hover {
	opacity: 1;
	border-color: var(--gold-primary);
	color: var(--gold-light);
	background: rgba(184, 134, 11, 0.1);
}

.testimonial-arrow svg {
	width: 20px;
	height: 20px;
}

.testimonial-arrow.prev {
	margin-left: -80px;
}

.testimonial-arrow.next {
	margin-right: -80px;
}

.testimonial-dots {
	display: flex;
	justify-content: center;
	gap: 12px;
	margin-top: 48px;
}

.dot {
	width: 8px;
	height: 8px;
	background: var(--border-color);
	cursor: pointer;
	transition: all 0.3s ease;
}

.dot:hover {
	background: var(--text-muted);
}

.dot.active {
	background: var(--gold-primary);
	width: 32px;
}

/* Trust Section */
.trust {
	background: var(--bg-card);
	padding: 80px 0;
}

.trust-grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 40px;
	align-items: center;
}

.trust-item {
	text-align: center;
	opacity: 0.5;
	transition: opacity 0.3s ease;
}

.trust-item:hover {
	opacity: 1;
}

.trust-logo {
	font-family: 'Cormorant Garamond', serif;
	font-size: 18px;
	color: var(--text-secondary);
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

/* CTA Section */
.cta {
	position: relative;
	background: linear-gradient(135deg, rgba(184, 134, 11, 0.1) 0%, transparent 50%);
}

.cta::before {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	height: clamp(72px, 12vw, 140px);
	background: linear-gradient(
		to bottom,
		rgba(15, 14, 12, 0.82) 0%,
		transparent 100%
	);
	pointer-events: none;
	z-index: 0;
}

.cta::after {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: clamp(72px, 12vw, 140px);
	background: linear-gradient(
		to top,
		rgba(10, 9, 8, 0.94) 0%,
		rgba(15, 14, 12, 0.45) 55%,
		transparent 100%
	);
	pointer-events: none;
	z-index: 0;
}

.cta-inner {
	position: relative;
	z-index: 1;
	text-align: center;
	max-width: 700px;
	margin: 0 auto;
}

.cta-title {
	font-size: clamp(36px, 4vw, 56px);
	color: var(--text-primary);
	margin-bottom: 24px;
}

.cta-title .gold {
	color: var(--gold-light);
}

.cta-desc {
	font-size: 18px;
	color: var(--text-secondary);
	margin-bottom: 40px;
	line-height: 1.8;
}

.cta-actions {
	display: flex;
	justify-content: center;
	gap: 16px;
}

/* Contact Section */
.contact {
	background: var(--bg-card);
}

.contact-grid {
	display: grid;
	grid-template-columns: 1fr 1.2fr;
	gap: 80px;
}

.contact-info h3 {
	font-size: 32px;
	color: var(--text-primary);
	margin-bottom: 24px;
}

.contact-info p {
	font-size: 16px;
	color: var(--text-secondary);
	margin-bottom: 40px;
	line-height: 1.8;
}

.contact-details {
	list-style: none;
}

.contact-details li {
	display: flex;
	align-items: flex-start;
	gap: 16px;
	padding: 20px 0;
	border-bottom: 1px solid var(--border-color);
}

.contact-details li:last-child {
	border-bottom: none;
}

.contact-icon {
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--bg-dark);
	border: 1px solid var(--border-color);
	color: var(--gold-light);
	font-size: 16px;
	flex-shrink: 0;
}

.contact-text {
	padding-top: 4px;
}

.contact-label {
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--text-muted);
	margin-bottom: 4px;
}

.contact-value {
	font-size: 16px;
	color: var(--text-primary);
}

/* Contact Form */
.contact-form {
	background: var(--bg-dark);
	border: 1px solid var(--border-color);
	padding: 48px;
}

.form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 24px;
	margin-bottom: 24px;
}

.form-group {
	margin-bottom: 24px;
}

.form-group:last-of-type {
	margin-bottom: 32px;
}

.form-label {
	display: block;
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--text-muted);
	margin-bottom: 10px;
}

.form-input,
.form-select,
.form-textarea {
	width: 100%;
	padding: 16px 20px;
	background: var(--bg-card);
	border: 1px solid var(--border-color);
	color: var(--text-primary);
	font-family: 'Libre Franklin', sans-serif;
	font-size: 15px;
	transition: all 0.3s ease;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
	outline: none;
	border-color: var(--gold-primary);
	background: var(--bg-card-hover);
}

.form-input.is-invalid,
.form-select.is-invalid,
.form-textarea.is-invalid {
	border-color: rgba(205, 78, 78, 0.85);
	box-shadow: inset 0 0 0 1px rgba(205, 78, 78, 0.25);
}

.form-input::placeholder,
.form-textarea::placeholder {
	color: var(--text-muted);
}

.form-select {
	appearance: none;
	cursor: pointer;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23A69F94' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 16px center;
}

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

.form-submit {
	width: 100%;
}

.contact-map-block {
	margin-top: 72px;
}

.contact-map-frame {
	background: var(--bg-dark);
	border: 1px solid var(--border-color);
	box-shadow:
		inset 0 1px 0 rgba(212, 168, 75, 0.06),
		0 8px 28px rgba(0, 0, 0, 0.35);
	overflow: hidden;
}

.contact-map-frame iframe {
	display: block;
	width: 100%;
	height: 420px;
	border: 0;
	filter: saturate(0.92) contrast(1.03);
}

/* Contact form feedback modal */
.site-modal {
	position: fixed;
	inset: 0;
	z-index: 2147482500;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
	background: rgba(5, 5, 5, 0.72);
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: opacity 0.3s ease, visibility 0.3s ease;
}

.site-modal.is-open {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}

.site-modal-panel {
	width: min(560px, 100%);
	background: linear-gradient(165deg, rgba(26, 24, 21, 0.98), rgba(15, 14, 12, 0.98));
	border: 1px solid rgba(212, 168, 75, 0.3);
	box-shadow:
		0 22px 60px rgba(0, 0, 0, 0.55),
		inset 0 1px 0 rgba(255, 255, 255, 0.06);
	padding: 30px 28px 26px;
	position: relative;
}

.site-modal-title {
	font-family: 'Cormorant Garamond', serif;
	font-size: 34px;
	line-height: 1.1;
	color: var(--text-primary);
	margin: 0 0 14px;
}

.site-modal-body {
	color: var(--text-secondary);
	font-size: 15px;
	line-height: 1.7;
	margin: 0;
}

.site-modal-errors {
	margin: 14px 0 0 16px;
	color: var(--text-primary);
}

.site-modal-errors li {
	margin-bottom: 6px;
}

.site-modal-close {
	position: absolute;
	top: 12px;
	right: 12px;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	border: 1px solid var(--border-color);
	background: rgba(15, 14, 12, 0.8);
	color: var(--text-secondary);
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	transition: all 0.25s ease;
}

.site-modal-close:hover {
	color: var(--gold-light);
	border-color: var(--gold-primary);
}

.site-modal-actions {
	margin-top: 22px;
	display: flex;
	justify-content: flex-end;
}

.site-modal-actions.dual {
	gap: 10px;
}

.site-modal-form {
	margin-top: 14px;
}

.site-modal-form .form-label {
	margin-bottom: 8px;
}

.site-modal-form .form-input {
	background: rgba(26, 24, 21, 0.88);
}

.site-modal.success .site-modal-title {
	color: #d8f3d4;
}

.site-modal.error .site-modal-title {
	color: #ffd6d6;
}

/* Footer */
.footer {
	background: var(--bg-dark);
	padding: 80px 0 40px;
	border-top: 1px solid var(--border-color);
}

.footer-grid {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1fr;
	gap: 60px;
	margin-bottom: 60px;
}

.footer-brand .logo {
	margin-bottom: 20px;
}

/* Footer logo hover (same motion as navbar) */
.footer-brand .logo:has(img) {
	display: inline-block;
	vertical-align: middle;
}

.footer-brand .logo:has(img) img {
	transform: scale(1) translateY(0);
	transform-origin: center center;
	transition:
		transform 0.55s cubic-bezier(0.34, 1.45, 0.64, 1),
		filter 0.5s ease;
}

.footer-brand .logo:has(img):hover img {
	transform: scale(1.07) translateY(-3px);
	filter:
		drop-shadow(0 8px 22px rgba(212, 168, 75, 0.48))
		drop-shadow(0 2px 8px rgba(212, 168, 75, 0.25))
		brightness(1.08);
}

.footer-brand .logo:has(img):active img {
	transform: scale(1.03) translateY(-1px);
	transition-duration: 0.15s;
}

.footer-brand p {
	font-size: 14px;
	color: var(--text-secondary);
	line-height: 1.8;
	max-width: 360px;
}

.footer-title {
	font-family: 'Cormorant Garamond', serif;
	font-size: 18px;
	color: var(--text-primary);
	margin-bottom: 24px;
}

.footer-links {
	list-style: none;
}

.footer-links li {
	margin-bottom: 12px;
}

.footer-links a {
	font-size: 14px;
	color: var(--text-secondary);
	transition: all 0.3s ease;
}

.footer-links a:hover {
	color: var(--gold-light);
	padding-left: 8px;
}

.footer-hours li {
	font-size: 14px;
	color: var(--text-secondary);
	line-height: 1.65;
}

.footer-bottom {
	display: flex;
	align-items: center;
	justify-content: center;
	padding-top: 40px;
	border-top: 1px solid var(--border-color);
}

.footer-copy-wrap {
	text-align: center;
	max-width: 720px;
	margin: 0 auto;
}

.footer-copy {
	font-size: 13px;
	color: var(--text-muted);
	margin: 0 0 12px;
}

.footer-copy-links {
	font-size: 12px;
	margin: 0;
	letter-spacing: 0.04em;
}

.footer-copy-links a {
	color: var(--text-secondary);
	text-decoration: none;
	transition: color 0.25s ease;
}

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

.footer-copy-sep {
	display: inline-block;
	margin: 0 10px;
	color: var(--text-muted);
	opacity: 0.7;
}

.footer-address {
	font-size: 14px;
	color: var(--text-secondary);
	line-height: 1.7;
	padding-top: 4px;
}

/* Responsive */
@media (max-width: 1200px) {
	.footer-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 992px) {

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

	.mobile-menu-btn {
		display: flex;
	}

	.hero-grid,
	.why-grid,
	.contact-grid {
		grid-template-columns: 1fr;
		gap: 60px;
	}

	.hero-content {
		text-align: center;
	}

	.hero-desc {
		margin-left: auto;
		margin-right: auto;
	}

	.hero-actions {
		justify-content: center;
	}

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

@media (max-width: 768px) {
	section {
		padding: 80px 0;
	}

	.contact-map-block {
		margin-top: 48px;
	}

	.contact-map-frame iframe {
		height: 320px;
	}

	.site-modal-panel {
		padding: 26px 18px 20px;
	}

	.site-modal-title {
		font-size: 30px;
	}

	.why-content {
		padding: 24px 20px 28px;
	}

	.hero {
		padding: 100px 0 60px;
	}

	.form-row {
		grid-template-columns: 1fr;
	}

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

	.footer-brand,
	.footer-col {
		text-align: center;
	}

	.footer-brand .logo {
		display: inline-block;
	}

	.footer-brand p {
		margin-left: auto;
		margin-right: auto;
	}

	.footer-links a:hover {
		padding-left: 0;
	}

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

	.hero-actions,
	.cta-actions {
		flex-direction: column;
	}

	.btn {
		width: 100%;
	}

	.products-tabs {
		flex-wrap: wrap;
	}

	.testimonial-nav {
		display: none;
	}

	.testimonial-item {
		padding: 0 20px;
	}
}

@media (min-width: 769px) and (max-width: 1100px) {
	.testimonial-arrow.prev {
		margin-left: -20px;
	}

	.testimonial-arrow.next {
		margin-right: -20px;
	}
}

/* Animations */
@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.fade-in-up {
	animation: fadeInUp 0.8s ease forwards;
}

.delay-1 {
	animation-delay: 0.1s;
}

.delay-2 {
	animation-delay: 0.2s;
}

.delay-3 {
	animation-delay: 0.3s;
}

.delay-4 {
	animation-delay: 0.4s;
}

/* Page preloader */
body.preloader-active {
	overflow: hidden;
}

.page-preloader {
	position: fixed;
	inset: 0;
	z-index: 2147483000;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--bg-dark);
	transition:
		opacity 0.55s ease,
		visibility 0.55s ease;
}

.page-preloader::before {
	content: '';
	position: absolute;
	inset: 0;
	pointer-events: none;
	opacity: 0.04;
	background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.page-preloader.is-hidden {
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
}

.page-preloader-inner {
	position: relative;
	z-index: 1;
	text-align: center;
	padding: 24px;
}

.page-preloader-logo {
	display: block;
	height: auto;
	width: min(220px, 52vw);
	margin: 0 auto 36px;
	object-fit: contain;
	filter: drop-shadow(0 8px 28px rgba(212, 168, 75, 0.12));
	animation: preloaderLogo 2s ease-in-out infinite;
}

.page-preloader-track {
	width: min(240px, 70vw);
	height: 3px;
	margin: 0 auto;
	border-radius: 2px;
	background: rgba(42, 38, 34, 0.95);
	overflow: hidden;
	box-shadow: inset 0 1px 0 rgba(0, 0, 0, 0.35);
}

.page-preloader-progress {
	display: block;
	height: 100%;
	width: 35%;
	border-radius: 2px;
	background: linear-gradient(90deg, var(--gold-dark), var(--gold-light), var(--gold-primary));
	box-shadow: 0 0 16px rgba(212, 168, 75, 0.35);
	animation: preloaderSweep 1.15s ease-in-out infinite;
}

@keyframes preloaderLogo {

	0%,
	100% {
		opacity: 0.88;
		transform: scale(1);
	}

	50% {
		opacity: 1;
		transform: scale(1.04);
	}
}

@keyframes preloaderSweep {
	0% {
		transform: translateX(-120%);
	}

	100% {
		transform: translateX(320%);
	}
}

@media (prefers-reduced-motion: reduce) {

	.page-preloader-logo,
	.page-preloader-progress {
		animation: none;
	}

	.page-preloader-progress {
		width: 100%;
		transform: none;
	}

	.scroll-top {
		transition: none;
	}
}

/* Scroll to top */
.scroll-top {
	position: fixed;
	right: max(16px, env(safe-area-inset-right, 0px));
	bottom: max(20px, env(safe-area-inset-bottom, 0px));
	z-index: 2147481000;
	width: 48px;
	height: 48px;
	padding: 0;
	border: 1px solid var(--gold-primary);
	background: rgba(15, 14, 12, 0.92);
	color: var(--gold-light);
	border-radius: 50%;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
	opacity: 0;
	visibility: hidden;
	transform: translateY(12px);
	pointer-events: none;
	transition:
		opacity 0.35s ease,
		visibility 0.35s ease,
		transform 0.35s ease,
		background 0.25s ease,
		border-color 0.25s ease,
		color 0.25s ease;
}

.scroll-top.is-visible {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
	pointer-events: auto;
}

.scroll-top:hover {
	background: var(--gold-primary);
	color: var(--bg-dark);
	border-color: var(--gold-primary);
}

.scroll-top:focus-visible {
	outline: 2px solid var(--gold-light);
	outline-offset: 3px;
}

.scroll-top svg {
	display: block;
}

body.has-cookie-banner .scroll-top {
	bottom: max(120px, calc(env(safe-area-inset-bottom, 0px) + 96px));
}

@media (max-width: 768px) {
	.scroll-top {
		width: 44px;
		height: 44px;
	}
}

/* Cookie consent banner */
.cookie-banner {
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 2147482000;
	padding: 20px 0 calc(20px + env(safe-area-inset-bottom, 0));
	background: rgba(15, 14, 12, 0.97);
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
	border-top: 1px solid var(--border-color);
	box-shadow:
		0 -8px 40px rgba(0, 0, 0, 0.45),
		inset 0 1px 0 rgba(212, 168, 75, 0.1);
	transform: translateY(110%);
	visibility: hidden;
	transition:
		transform 0.45s cubic-bezier(0.4, 0, 0.2, 1),
		visibility 0.45s;
}

.cookie-banner.is-visible {
	transform: translateY(0);
	visibility: visible;
}

.cookie-banner-inner {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 20px 32px;
}

.cookie-banner-copy {
	flex: 1 1 280px;
	max-width: 720px;
}

.cookie-banner-title {
	font-family: 'Cormorant Garamond', serif;
	font-size: 20px;
	font-weight: 600;
	color: var(--gold-light);
	letter-spacing: 0.06em;
	text-transform: uppercase;
	margin-bottom: 8px;
}

.cookie-banner-desc {
	font-size: 13px;
	color: var(--text-secondary);
	line-height: 1.65;
	margin: 0;
}

.cookie-banner-actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 12px;
	flex-shrink: 0;
}

.cookie-banner-link.btn {
	padding: 12px 22px;
	font-size: 11px;
}

.cookie-banner .btn-primary {
	padding: 12px 28px;
	font-size: 11px;
}

body.has-cookie-banner {
	padding-bottom: env(safe-area-inset-bottom, 0);
}

@media (max-width: 768px) {
	.cookie-banner {
		padding: 10px 0 max(16px, env(safe-area-inset-bottom, 16px));
		box-sizing: border-box;
	}

	.cookie-banner .container {
		padding-left: max(16px, env(safe-area-inset-left, 0px));
		padding-right: max(16px, env(safe-area-inset-right, 0px));
		width: 100%;
		max-width: 100%;
		box-sizing: border-box;
	}

	.cookie-banner-inner {
		flex-direction: column;
		align-items: stretch;
		gap: 10px;
	}

	.cookie-banner-copy {
		flex: 1 1 auto;
		max-width: none;
	}

	.cookie-banner-title {
		font-size: 16px;
		margin-bottom: 6px;
		letter-spacing: 0.05em;
	}

	.cookie-banner-desc {
		font-size: 12px;
		line-height: 1.55;
	}

	.cookie-banner-actions {
		display: flex;
		flex-direction: column;
		align-items: stretch;
		gap: 10px;
		width: 100%;
		flex-shrink: 0;
		padding-top: 2px;
	}

	.cookie-banner-actions .btn {
		flex: 0 0 auto;
		width: 100%;
		min-height: 46px;
		padding: 13px 18px;
		font-size: 11px;
		box-sizing: border-box;
		justify-content: center;
		text-align: center;
	}

	.cookie-banner .btn-primary {
		padding: 13px 18px;
	}
}