/* ============================================
   RITZ STEEL DOOR - PREMIUM ROYAL DESIGN V2
   Duroguard-style full-screen banner
   Core: #1d533f | Accent: Gold | Luxury Feel
   ============================================ */

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

:root {
	--g: #0e2a1f;
	--g2: #143b2d;
	--gl: #246b52;
	--g-darker: #081710;
	--gold: #c9a84c;
	--gl2: #dfc373;
	--gd2: #a78a34;
	--cream: #faf8f4;
	--dk: #0a1a12;
	--f1: 'Cormorant Garamond', Georgia, serif;
	--f2: 'Outfit', sans-serif;
}

html,
body {
	height: 100%
}

html {
	scroll-behavior: smooth
}

body {
	font-family: var(--f2);
	background: #081710;
	color: var(--cream);
	overflow-x: hidden;
	cursor: none;
	position: relative;
}

body::before {
	content: "";
	position: fixed;
	inset: 0;
	z-index: -1;
	pointer-events: none;
	background:
		radial-gradient(ellipse 80% 50% at 50% 0%, rgba(36, 107, 82, .35) 0%, transparent 60%),
		radial-gradient(ellipse 60% 40% at 100% 50%, rgba(20, 59, 45, .4) 0%, transparent 60%),
		radial-gradient(ellipse 60% 40% at 0% 80%, rgba(20, 59, 45, .35) 0%, transparent 60%),
		linear-gradient(180deg, #0a1a12 0%, #081710 50%, #050d09 100%);
}

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

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

/* ===== Custom Cursor ===== */
.cursor-dot,
.cursor-ring {
	position: fixed;
	top: 0;
	left: 0;
	pointer-events: none;
	z-index: 9999;
	border-radius: 50%;
	mix-blend-mode: screen;
	will-change: transform
}

.cursor-dot {
	width: 8px;
	height: 8px;
	background: var(--gold);
	box-shadow: 0 0 12px var(--gold);
	margin: -4px 0 0 -4px
}

.cursor-ring {
	width: 38px;
	height: 38px;
	border: 1.5px solid var(--gold);
	margin: -19px 0 0 -19px;
	transition: width .22s ease, height .22s ease, margin .22s ease, background .22s ease, border-color .22s ease
}

.cursor-ring.hover {
	width: 60px;
	height: 60px;
	margin: -30px 0 0 -30px;
	background: rgba(201, 168, 76, .15)
}

.spark {
	position: fixed;
	width: 4px;
	height: 4px;
	border-radius: 50%;
	background: var(--gl2);
	pointer-events: none;
	z-index: 9998;
	box-shadow: 0 0 8px var(--gold);
	margin: -2px 0 0 -2px
}

@media(hover:none),
(max-width:900px) {

	.cursor-dot,
	.cursor-ring,
	.spark {
		display: none !important
	}

	body,
	a,
	button,
	.door,
	.prod-card,
	.gal-card,
	.dot,
	.nav-arrow,
	.modal-close,
	.modal-cta,
	.send-btn,
	.gal-inside .btn,
	.cat-btn {
		cursor: auto !important
	}
}

/* ===== Header ===== */
header {
	position: fixed;
	inset: 0 0 auto 0;
	z-index: 100;
	backdrop-filter: blur(18px);
	background: rgba(8, 23, 16, .78);
	border-bottom: 1px solid rgba(201, 168, 76, .18)
}

.nav {
	max-width: 1280px;
	margin: 0 auto;
	padding: 18px 32px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px
}

.brand {
	display: flex;
	align-items: center;
	gap: 14px
}

.brand-mark {
	width: 42px;
	height: 42px;
	border-radius: 50%;
	border: 1px solid rgba(201, 168, 76, .35);
	background: rgba(201, 168, 76, .1);
	display: grid;
	place-items: center;
	color: var(--gl2);
	font-size: 18px
}

.brand-text p:first-child {
	font-size: 13px;
	font-weight: 800;
	letter-spacing: .25em;
	color: #fff
}

.brand-text p:last-child {
	font-size: 9px;
	letter-spacing: .25em;
	color: var(--gold);
	margin-top: 2px
}

nav.links {
	display: flex;
	gap: 4px;
	align-items: center
}

nav.links>a,
nav.links .nav-drop>.nav-link {
	position: relative;
	padding: 8px 14px;
	font-size: 13px;
	font-weight: 500;
	color: rgba(255, 255, 255, .78);
	transition: color .25s;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	cursor: none
}

nav.links>a:hover,
nav.links .nav-drop>.nav-link:hover {
	color: #fff
}

nav.links>a::after,
nav.links .nav-drop>.nav-link::after {
	content: "";
	position: absolute;
	left: 14px;
	right: 14px;
	bottom: 6px;
	height: 1px;
	background: var(--gold);
	transform: scaleX(0);
	transition: transform .3s
}

nav.links>a:hover::after,
nav.links .nav-drop:hover>.nav-link::after {
	transform: scaleX(1)
}

/* Dropdown */
.nav-drop {
	position: relative
}

.nav-drop>.nav-link i {
	font-size: 9px;
	transition: transform .3s;
	opacity: .7
}

.nav-drop:hover>.nav-link i {
	transform: rotate(180deg)
}

.drop-menu {
	position: absolute;
	top: 100%;
	left: 50%;
	transform: translateX(-50%) translateY(8px);
	min-width: 240px;
	background: linear-gradient(180deg, #143b2d 0%, #0a1a12 100%);
	border: 1px solid rgba(201, 168, 76, .3);
	border-radius: 10px;
	padding: 8px;
	display: flex;
	flex-direction: column;
	gap: 2px;
	opacity: 0;
	visibility: hidden;
	transition: .3s cubic-bezier(.4, 0, .2, 1);
	box-shadow: 0 20px 60px -10px rgba(0, 0, 0, .6), 0 0 30px rgba(201, 168, 76, .08);
	z-index: 50;
}

.nav-drop:hover .drop-menu {
	opacity: 1;
	visibility: visible;
	transform: translateX(-50%) translateY(0)
}

.drop-menu::before {
	content: "";
	position: absolute;
	top: -6px;
	left: 50%;
	transform: translateX(-50%) rotate(45deg);
	width: 12px;
	height: 12px;
	background: #143b2d;
	border-left: 1px solid rgba(201, 168, 76, .3);
	border-top: 1px solid rgba(201, 168, 76, .3)
}

.drop-menu a {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 10px 14px;
	font-size: 13px;
	color: rgba(255, 255, 255, .85);
	border-radius: 6px;
	transition: .2s;
	cursor: none
}

.drop-menu a:hover {
	background: rgba(201, 168, 76, .12);
	color: var(--gold);
	padding-left: 18px
}

.drop-menu a i {
	font-size: 10px;
	color: var(--gold);
	width: 14px
}

.drop-menu .drop-divider {
	height: 1px;
	background: rgba(201, 168, 76, .15);
	margin: 6px 8px
}

.drop-menu .drop-all {
	color: var(--gold);
	font-weight: 700;
	letter-spacing: .1em;
	text-transform: uppercase;
	font-size: 11px
}

.cta-quote {
	background: var(--gold);
	color: #08160e;
	padding: 10px 18px;
	border-radius: 6px;
	font-size: 11px;
	font-weight: 800;
	letter-spacing: .12em;
	text-transform: uppercase;
	transition: .25s
}

.cta-quote:hover {
	background: var(--gl2);
	transform: scale(1.05)
}

.mnu-btn {
	display: none;
	background: rgba(201, 168, 76, .1);
	border: 1px solid rgba(201, 168, 76, .3);
	color: var(--gold);
	width: 40px;
	height: 40px;
	border-radius: 50%;
	font-size: 15px;
	align-items: center;
	justify-content: center;
	cursor: pointer
}

@media(max-width:980px) {
	nav.links {
		display: none
	}

	.mnu-btn {
		display: flex
	}

	.nav {
		padding: 14px 20px;
		gap: 12px
	}

	.brand-text p:first-child {
		font-size: 11px;
		letter-spacing: .2em
	}

	.brand-text p:last-child {
		font-size: 8px
	}

	.brand-mark {
		width: 36px;
		height: 36px;
		font-size: 14px
	}

	.cta-quote {
		padding: 8px 12px;
		font-size: 10px;
		letter-spacing: .08em
	}
}

#mob-mnu {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	width: min(320px, 85vw);
	background: linear-gradient(180deg, #0e2a1f, #050d09);
	border-left: 1px solid rgba(201, 168, 76, .2);
	z-index: 300;
	transform: translateX(100%);
	transition: transform .4s cubic-bezier(.4, 0, .2, 1);
	padding: 80px 28px 28px;
	display: flex;
	flex-direction: column;
	gap: 2px;
	box-shadow: -20px 0 60px rgba(0, 0, 0, .5);
	overflow-y: auto
}

#mob-mnu.on {
	transform: translateX(0)
}

#mob-mnu a {
	padding: 13px 16px;
	font-size: 14px;
	color: rgba(255, 255, 255, .85);
	border-radius: 8px;
	font-weight: 500;
	letter-spacing: .02em;
	transition: .2s;
	display: flex;
	align-items: center;
	gap: 10px
}

#mob-mnu a:hover {
	background: rgba(201, 168, 76, .08);
	color: var(--gold)
}

#mob-mnu a i {
	color: var(--gold);
	font-size: 11px;
	width: 16px
}

#mob-mnu .m-section-label {
	padding: 14px 16px 6px;
	font-size: 10px;
	color: var(--gold);
	letter-spacing: .25em;
	font-weight: 800;
	text-transform: uppercase;
	opacity: .8
}

#mob-mnu .m-sub {
	padding-left: 32px;
	font-size: 13px;
	color: rgba(255, 255, 255, .7)
}

#mob-mnu .m-close {
	position: absolute;
	top: 22px;
	right: 22px;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: rgba(255, 255, 255, .08);
	border: none;
	color: #fff;
	font-size: 14px;
	cursor: pointer
}

#mob-mnu .m-cta {
	margin-top: auto;
	background: var(--gold);
	color: #08160e;
	padding: 14px;
	border-radius: 8px;
	font-weight: 800;
	letter-spacing: .15em;
	text-transform: uppercase;
	font-size: 12px;
	text-align: center;
	justify-content: center
}

#mob-mnu .m-cta:hover {
	background: var(--gl2);
	color: #08160e
}

#mob-bg {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, .55);
	backdrop-filter: blur(4px);
	z-index: 299;
	opacity: 0;
	visibility: hidden;
	transition: .3s
}

#mob-bg.on {
	opacity: 1;
	visibility: visible
}

/* ===== Embers ===== */
.embers {
	position: absolute;
	inset: 0;
	pointer-events: none;
	overflow: hidden;
	z-index: 1
}

.ember {
	position: absolute;
	bottom: -20px;
	width: 3px;
	height: 3px;
	border-radius: 50%;
	background: var(--gold);
	box-shadow: 0 0 10px var(--gold);
	opacity: 0;
	animation: ember linear infinite
}

@keyframes ember {
	0% {
		transform: translateY(0) translateX(0) scale(1);
		opacity: 0
	}

	10% {
		opacity: 1
	}

	100% {
		transform: translateY(-100vh) translateX(var(--drift, 30px)) scale(.3);
		opacity: 0
	}
}

/* ===== Section base ===== */
section {
	position: relative;
	padding: 120px 32px;
	overflow: hidden;
	background: transparent
}

.container {
	max-width: 1280px;
	margin: 0 auto;
	position: relative;
	z-index: 2
}

@media(max-width:768px) {
	section {
		padding: 72px 20px
	}
}

@media(max-width:480px) {
	section {
		padding: 56px 16px
	}
}

.eyebrow {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 14px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .4em;
	color: var(--gold);
	margin-bottom: 14px
}

.eyebrow::before,
.eyebrow::after {
	content: "";
	height: 1px;
	width: 40px;
	background: var(--gold)
}

h1,
h2,
h3,
h4 {
	font-family: var(--f1);
	letter-spacing: -.01em;
	color: #fff
}

.h-title {
	text-align: center;
	font-size: clamp(28px, 5.5vw, 56px);
	font-weight: 700;
	line-height: 1.1;
	padding: 0 8px
}

.h-sub {
	text-align: center;
	max-width: 640px;
	margin: 18px auto 0;
	color: rgba(255, 255, 255, .65);
	font-size: clamp(14px, 1.6vw, 16px);
	line-height: 1.65;
	padding: 0 8px
}

.gold-text {
	background: linear-gradient(135deg, var(--gl2), var(--gold), var(--gd2));
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	color: transparent
}

.divider-line {
	width: 56px;
	height: 3px;
	background: var(--gold);
	border-radius: 99px;
	margin: 18px auto 0
}

/* ===== HERO with carousel ===== */
.hero {
	padding: 110px 32px 60px;
	min-height: auto
}

.hero .eyebrow {
	margin-bottom: 10px
}

.hero .h-title {
	font-size: clamp(28px, 4.2vw, 48px)
}

.hero .h-sub {
	margin-top: 12px;
	font-size: 14px
}

@media(max-width:768px) {
	.hero {
		padding: 96px 20px 48px
	}
}

@media(max-width:480px) {
	.hero {
		padding: 84px 16px 40px
	}
}

.stage {
	position: relative;
	height: 520px;
	perspective: 1800px;
	margin-top: 28px
}

@media(max-width:768px) {
	.stage {
		height: 460px;
		margin-top: 20px
	}
}

.door {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 300px;
	height: 460px;
	transform: translate(-50%, -50%);
	transform-style: preserve-3d;
	transition: transform 1s cubic-bezier(.4, 0, .2, 1), opacity .8s, filter .8s;
	cursor: none;
}

.door.pos-left {
	transform: translate(-50%, -50%) translateX(-340px) rotateY(35deg) scale(.78);
	opacity: .55;
	filter: blur(.5px)
}

.door.pos-right {
	transform: translate(-50%, -50%) translateX(340px) rotateY(-35deg) scale(.78);
	opacity: .55;
	filter: blur(.5px)
}

.door.pos-center {
	transform: translate(-50%, -50%) rotateY(0) scale(1);
	opacity: 1;
	z-index: 5
}

@media(max-width:700px) {
	.stage {
		height: 440px;
		margin-top: 28px
	}

	.door {
		width: 210px;
		height: 340px
	}

	.door.pos-left {
		transform: translate(-50%, -50%) translateX(-150px) rotateY(40deg) scale(.6);
		opacity: .4
	}

	.door.pos-right {
		transform: translate(-50%, -50%) translateX(150px) rotateY(-40deg) scale(.6);
		opacity: .4
	}

	.nav-arrow {
		width: 42px;
		height: 42px;
		font-size: 14px
	}

	.nav-arrow.left {
		left: 8px
	}

	.nav-arrow.right {
		right: 8px
	}

	.door-inside .name {
		font-size: 22px
	}

	.door-inside .price {
		font-size: 18px
	}

	.nameplate .n {
		font-size: 15px
	}
}

@media(max-width:400px) {
	.stage {
		height: 400px
	}

	.door {
		width: 180px;
		height: 300px
	}

	.door.pos-left {
		transform: translate(-50%, -50%) translateX(-120px) rotateY(42deg) scale(.55);
		opacity: .35
	}

	.door.pos-right {
		transform: translate(-50%, -50%) translateX(120px) rotateY(-42deg) scale(.55);
		opacity: .35
	}

	.door-inside {
		padding: 20px 14px
	}

	.door-inside .name {
		font-size: 19px
	}

	.door-inside .price {
		font-size: 16px
	}
}

.door-frame {
	position: absolute;
	inset: 0;
	border-radius: 160px 160px 12px 12px;
	background: linear-gradient(180deg, #0e2a1f 0%, #081710 100%);
	border: 2px solid rgba(201, 168, 76, .4);
	box-shadow: 0 30px 80px -20px rgba(0, 0, 0, .85), inset 0 0 60px rgba(0, 0, 0, .4), 0 0 30px rgba(201, 168, 76, .08);
	overflow: hidden;
	transform-style: preserve-3d;
}

/* "INSIDE" view — what shows when door swings open */
.door-inside {
	position: absolute;
	inset: 0;
	border-radius: 160px 160px 12px 12px;
	background: radial-gradient(ellipse 80% 70% at 50% 60%, #3a2814 0%, #1a0f08 60%, #08130d 100%);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-end;
	padding: 30px 20px;
	text-align: center;
	transform: translateZ(-1px);
}

.door-inside .glow {
	position: absolute;
	inset: 0;
	background: radial-gradient(ellipse at center 70%, rgba(255, 160, 60, .5), transparent 65%);
	animation: flicker 2.4s ease-in-out infinite
}

@keyframes flicker {

	0%,
	100% {
		filter: brightness(.85)
	}

	50% {
		filter: brightness(1.15)
	}
}

.door-inside .info {
	position: relative;
	z-index: 2
}

.door-inside .tag {
	font-size: 10px;
	letter-spacing: .4em;
	color: var(--gold);
	font-weight: 700
}

.door-inside .name {
	font-family: var(--f1);
	font-size: 30px;
	color: #fff;
	margin-top: 6px;
	font-weight: 700;
	text-shadow: 0 2px 12px rgba(0, 0, 0, .6)
}

.door-inside .price {
	font-family: var(--f1);
	font-size: 24px;
	margin-top: 8px;
	background: linear-gradient(135deg, var(--gl2), var(--gold));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	font-weight: 700
}

/* "FRONT" face — REAL DOOR IMAGE */
.door-panel {
	position: absolute;
	inset: 0;
	border-radius: 160px 160px 12px 12px;
	border: 2px solid rgba(201, 168, 76, .45);
	transform-origin: left center;
	transition: transform 1.6s cubic-bezier(.77, 0, .175, 1), opacity .6s;
	backface-visibility: hidden;
	box-shadow: inset 0 0 60px rgba(0, 0, 0, .55), 0 0 30px rgba(0, 0, 0, .4);
	transform: translateZ(2px);
	overflow: hidden;
}

.door.opening .door-panel {
	transform: rotateY(-115deg)
}

.door-real-img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: inherit;
	z-index: 0;
	filter: brightness(.78) contrast(1.08) saturate(.95);
}

.door-overlay {
	position: absolute;
	inset: 0;
	border-radius: inherit;
	z-index: 1;
	pointer-events: none;
	background:
		linear-gradient(180deg, rgba(8, 23, 16, .15) 0%, rgba(8, 23, 16, .35) 50%, rgba(8, 23, 16, .85) 100%),
		radial-gradient(ellipse at 50% 35%, transparent 40%, rgba(0, 0, 0, .35) 100%);
}

/* gold inner-frame outline still visible on top of image */
.door-panel .inner-frame {
	position: absolute;
	inset: 18px;
	border: 1px solid rgba(201, 168, 76, .45);
	border-radius: 140px 140px 8px 8px;
	z-index: 2;
	pointer-events: none;
	box-shadow: inset 0 0 40px rgba(201, 168, 76, .06)
}

.door-panel .inner-frame::after {
	content: "";
	position: absolute;
	inset: 14px;
	border: 1px solid rgba(201, 168, 76, .2);
	border-radius: 130px 130px 4px 4px
}

.handle {
	position: absolute;
	right: 14px;
	top: 50%;
	transform: translateY(-50%);
	width: 11px;
	height: 60px;
	border-radius: 99px;
	background: linear-gradient(180deg, var(--gl2), var(--gold), var(--gd2));
	box-shadow: 0 4px 18px rgba(201, 168, 76, .7);
	z-index: 3
}

.hinges {
	position: absolute;
	left: -4px;
	top: 0;
	height: 100%;
	z-index: 3
}

.hinge {
	position: absolute;
	left: 0;
	width: 9px;
	height: 24px;
	border-radius: 3px;
	background: linear-gradient(180deg, var(--gl2), var(--gd2));
	box-shadow: 0 2px 8px rgba(201, 168, 76, .5)
}

.nameplate {
	position: absolute;
	left: 50%;
	bottom: 46px;
	transform: translateX(-50%);
	text-align: center;
	width: 90%;
	z-index: 3;
	background: rgba(8, 23, 16, .55);
	backdrop-filter: blur(6px);
	border: 1px solid rgba(201, 168, 76, .35);
	border-radius: 8px;
	padding: 8px 14px
}

.nameplate .t {
	font-size: 9px;
	letter-spacing: .4em;
	color: rgba(201, 168, 76, 1)
}

.nameplate .n {
	font-family: var(--f1);
	font-size: 18px;
	color: #fff;
	margin-top: 3px;
	font-weight: 700
}

.clickhint {
	position: absolute;
	left: 50%;
	bottom: 14px;
	transform: translateX(-50%);
	background: rgba(201, 168, 76, .92);
	border: 1px solid rgba(201, 168, 76, .6);
	color: #08160e;
	font-size: 9px;
	font-weight: 800;
	letter-spacing: .3em;
	padding: 6px 14px;
	border-radius: 99px;
	opacity: 0;
	transition: opacity .3s;
	z-index: 4;
	box-shadow: 0 4px 18px rgba(201, 168, 76, .5)
}

.door.pos-center .clickhint {
	opacity: 1
}

/* nav arrows + dots */
.nav-arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 50px;
	height: 50px;
	border-radius: 50%;
	border: 1px solid rgba(201, 168, 76, .4);
	background: rgba(0, 0, 0, .4);
	backdrop-filter: blur(8px);
	color: var(--gold);
	font-size: 18px;
	display: grid;
	place-items: center;
	cursor: none;
	z-index: 10;
	transition: .25s
}

.nav-arrow:hover {
	background: var(--gold);
	color: #0a1a12;
	transform: translateY(-50%) scale(1.1)
}

.nav-arrow.left {
	left: 24px
}

.nav-arrow.right {
	right: 24px
}

.dots {
	display: flex;
	justify-content: center;
	gap: 10px;
	margin-top: 32px
}

.dot {
	width: 10px;
	height: 10px;
	border-radius: 99px;
	background: rgba(201, 168, 76, .3);
	cursor: none;
	transition: .25s;
	border: none
}

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

/* ===== Modal ===== */
.modal-overlay {
	position: fixed;
	inset: 0;
	background: rgba(5, 13, 9, .85);
	backdrop-filter: blur(8px);
	z-index: 200;
	display: none;
	align-items: center;
	justify-content: center;
	padding: 24px;
	opacity: 0;
	transition: opacity .35s
}

.modal-overlay.show {
	display: flex;
	opacity: 1
}

.modal {
	position: relative;
	max-width: 980px;
	width: 100%;
	max-height: 90vh;
	overflow: auto;
	background: linear-gradient(180deg, #143b2d 0%, #0a1a12 100%);
	border: 1px solid rgba(201, 168, 76, .35);
	border-radius: 18px;
	box-shadow: 0 40px 100px -20px rgba(0, 0, 0, .9), 0 0 60px rgba(201, 168, 76, .15);
	transform: scale(.92) translateY(20px);
	transition: transform .4s cubic-bezier(.4, 0, .2, 1)
}

.modal-overlay.show .modal {
	transform: scale(1) translateY(0)
}

.modal-close {
	position: absolute;
	top: 16px;
	right: 16px;
	width: 38px;
	height: 38px;
	border-radius: 50%;
	border: 1px solid rgba(201, 168, 76, .4);
	background: rgba(0, 0, 0, .5);
	color: var(--gold);
	cursor: none;
	display: grid;
	place-items: center;
	font-size: 14px;
	z-index: 5;
	transition: .25s
}

.modal-close:hover {
	background: var(--gold);
	color: #0a1a12;
	transform: rotate(90deg)
}

/* FIX: align-items:stretch so columns share height; image cell follows body cell height */
.modal-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0;
	align-items: stretch
}

@media(max-width:780px) {
	.modal-grid {
		grid-template-columns: 1fr
	}
}

/* FIX: image cell has min-height + max-height so it never stretches the modal */
.modal-img {
	position: relative;
	min-height: 380px;
	border-radius: 18px 0 0 18px;
	overflow: hidden;
	background: #08130d
}

@media(max-width:780px) {
	.modal-img {
		border-radius: 18px 18px 0 0;
		min-height: 280px;
		height: 340px
	}
}

/* FIX: img is now position:absolute inset:0 — won't push column tall based on natural aspect ratio */
.modal-img img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	animation: zoomSlow 14s ease-in-out infinite alternate
}

@keyframes zoomSlow {
	from {
		transform: scale(1)
	}

	to {
		transform: scale(1.06)
	}
}

.modal-img .firefx {
	position: absolute;
	inset: 0;
	background: radial-gradient(ellipse at center bottom, rgba(255, 160, 60, .35), transparent 60%);
	pointer-events: none;
	z-index: 1
}

/* FIX: z-index so badge stays above abs-positioned image */
.modal-img .modal-tag {
	position: absolute;
	top: 18px;
	left: 18px;
	background: rgba(0, 0, 0, .65);
	border: 1px solid rgba(201, 168, 76, .4);
	color: var(--gold);
	font-size: 10px;
	letter-spacing: .35em;
	padding: 6px 14px;
	border-radius: 99px;
	backdrop-filter: blur(6px);
	z-index: 2
}

.modal-body {
	padding: 36px
}

@media(max-width:480px) {
	.modal-body {
		padding: 24px 20px
	}
}

.modal-body h2 {
	font-family: var(--f1);
	font-size: clamp(26px, 6vw, 36px);
	font-weight: 700;
	color: #fff;
	margin-bottom: 6px
}

.modal-body .tagline {
	color: var(--gold);
	font-size: 12px;
	letter-spacing: .25em;
	text-transform: uppercase
}

.modal-body .desc {
	margin-top: 18px;
	color: rgba(255, 255, 255, .78);
	line-height: 1.7;
	font-size: 15px
}

.modal-body .price-block {
	margin: 22px 0;
	padding: 14px 0;
	border-top: 1px solid rgba(201, 168, 76, .2);
	border-bottom: 1px solid rgba(201, 168, 76, .2)
}

.modal-body .price-block .lbl {
	font-size: 10px;
	letter-spacing: .3em;
	color: rgba(255, 255, 255, .5)
}

.modal-body .price-block .val {
	font-family: var(--f1);
	font-size: 30px;
	background: linear-gradient(135deg, var(--gl2), var(--gold));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	font-weight: 700;
	margin-top: 4px
}

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

.feat-list li {
	display: flex;
	gap: 10px;
	align-items: flex-start;
	padding: 8px 0;
	font-size: 14px;
	color: rgba(255, 255, 255, .85)
}

.feat-list i {
	color: var(--gold);
	margin-top: 3px;
	font-size: 12px
}

.modal-cta {
	margin-top: 24px;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background: var(--gold);
	color: #08160e;
	padding: 14px 26px;
	border-radius: 8px;
	font-size: 12px;
	font-weight: 800;
	letter-spacing: .18em;
	text-transform: uppercase;
	transition: .25s;
	cursor: none
}

.modal-cta:hover {
	background: var(--gl2);
	transform: translateY(-2px)
}

/* ===== About ===== */
.about-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 64px;
	align-items: center;
	margin-top: 60px
}

@media(max-width:880px) {
	.about-grid {
		grid-template-columns: 1fr;
		gap: 40px;
		margin-top: 40px
	}
}

.about-door {
	position: relative;
	width: min(280px, 80vw);
	height: min(400px, 114vw);
	margin: 0 auto;
	border-radius: 140px 140px 8px 8px;
	border: 2px solid rgba(201, 168, 76, .4);
	background: #081710;
	box-shadow: 0 30px 80px -20px rgba(0, 0, 0, .6);
	overflow: hidden
}

.about-door img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: brightness(.85) contrast(1.05)
}

.about-door::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, transparent 50%, rgba(8, 23, 16, .7));
	pointer-events: none
}

.about-door::after {
	content: "";
	position: absolute;
	inset: 14px;
	border: 1px solid rgba(201, 168, 76, .35);
	border-radius: 130px 130px 4px 4px;
	pointer-events: none
}

.about-door .emblem {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 90px;
	height: 90px;
	border-radius: 50%;
	border: 2px solid rgba(201, 168, 76, .7);
	background: rgba(8, 23, 16, .7);
	backdrop-filter: blur(6px);
	display: grid;
	place-items: center;
	color: var(--gl2);
	font-size: 38px;
	animation: pulseRing 3s ease-in-out infinite
}

@keyframes pulseRing {

	0%,
	100% {
		transform: translate(-50%, -50%) scale(1);
		box-shadow: 0 0 0 0 rgba(201, 168, 76, .4)
	}

	50% {
		transform: translate(-50%, -50%) scale(1.05);
		box-shadow: 0 0 0 12px rgba(201, 168, 76, 0)
	}
}

.about-door .a-handle {
	position: absolute;
	right: -8px;
	top: 50%;
	transform: translateY(-50%);
	width: 11px;
	height: 80px;
	border-radius: 99px;
	background: linear-gradient(180deg, var(--gl2), var(--gold), var(--gd2));
	box-shadow: 0 0 20px rgba(201, 168, 76, .5);
	z-index: 2
}

.about-door .a-hinge {
	position: absolute;
	left: -7px;
	width: 11px;
	height: 26px;
	border-radius: 3px;
	background: linear-gradient(180deg, var(--gl2), var(--gd2));
	z-index: 2
}

.about h3 {
	font-family: var(--f1);
	font-size: clamp(24px, 4.2vw, 34px);
	font-weight: 700;
	color: #fff;
	line-height: 1.2
}

.about p.lead {
	margin-top: 18px;
	color: rgba(255, 255, 255, .7);
	font-size: 15px;
	line-height: 1.7
}

.about-feats {
	margin-top: 28px;
	list-style: none;
	padding: 0
}

.about-feats li {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 8px 0;
	font-size: 14px;
	color: rgba(255, 255, 255, .8)
}

.about-feats .ico {
	width: 26px;
	height: 26px;
	border-radius: 50%;
	background: rgba(201, 168, 76, .15);
	color: var(--gold);
	display: grid;
	place-items: center;
	font-size: 11px;
	flex-shrink: 0
}

/* ===== Category Filter Tabs ===== */
.cat-filters {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 8px;
	margin: 36px auto 0;
	max-width: 1000px;
	padding: 0 8px
}

.cat-btn {
	background: rgba(20, 59, 45, .5);
	border: 1px solid rgba(201, 168, 76, .25);
	color: rgba(255, 255, 255, .78);
	padding: 11px 22px;
	border-radius: 99px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .16em;
	text-transform: uppercase;
	cursor: none;
	transition: .3s cubic-bezier(.4, 0, .2, 1);
	font-family: var(--f2);
	backdrop-filter: blur(6px);
}

.cat-btn:hover {
	border-color: rgba(201, 168, 76, .55);
	color: #fff;
	transform: translateY(-2px)
}

.cat-btn.active {
	background: var(--gold);
	border-color: var(--gold);
	color: #08160e;
	box-shadow: 0 6px 20px rgba(201, 168, 76, .35)
}

@media(max-width:600px) {
	.cat-btn {
		padding: 9px 16px;
		font-size: 10px;
		letter-spacing: .12em
	}
}

/* ===== Products with REAL DOOR IMAGES ===== */
.prod-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 28px;
	margin-top: 36px
}

.prod-card {
	position: relative;
	border: 1px solid rgba(201, 168, 76, .18);
	background: linear-gradient(180deg, rgba(20, 59, 45, .5), rgba(8, 23, 16, .5));
	backdrop-filter: blur(8px);
	border-radius: 14px;
	padding: 24px;
	box-shadow: 0 20px 60px -30px rgba(0, 0, 0, .8);
	transition: .4s;
	cursor: none;
}

.prod-card:hover {
	border-color: rgba(201, 168, 76, .55);
	transform: translateY(-6px);
	box-shadow: 0 30px 80px -20px rgba(201, 168, 76, .2)
}

.prod-tag {
	position: absolute;
	top: 18px;
	right: 18px;
	border: 1px solid rgba(201, 168, 76, .4);
	background: rgba(8, 23, 16, .7);
	backdrop-filter: blur(6px);
	color: var(--gold);
	padding: 5px 12px;
	border-radius: 99px;
	font-size: 9px;
	font-weight: 700;
	letter-spacing: .2em;
	text-transform: uppercase;
	z-index: 5
}

/* the small "real-image" door inside each product card */
.mini-door {
	position: relative;
	width: 140px;
	height: 210px;
	margin: 14px auto 18px;
	perspective: 700px;
	transform-style: preserve-3d;
}

.mini-door-frame {
	position: absolute;
	inset: 0;
	border: 2px solid rgba(201, 168, 76, .4);
	border-radius: 64px 64px 6px 6px;
	overflow: hidden;
	transform-style: preserve-3d;
	background: radial-gradient(ellipse at center 65%, rgba(255, 170, 60, .35), #0a1a12 75%);
	box-shadow: 0 16px 40px -10px rgba(0, 0, 0, .6), inset 0 0 30px rgba(0, 0, 0, .4);
}

.mini-door-inside {
	position: absolute;
	inset: 0;
	display: grid;
	place-items: center;
	color: var(--gold);
	font-size: 30px;
	background: radial-gradient(ellipse at center, rgba(255, 170, 60, .35), #0a1a12 70%);
}

.mini-door-inside i {
	filter: drop-shadow(0 0 14px rgba(255, 170, 60, .7));
	animation: flicker 2.4s ease-in-out infinite
}

.mini-door-panel {
	position: absolute;
	inset: 0;
	border-radius: inherit;
	transform-origin: left center;
	transition: transform 1.2s cubic-bezier(.77, 0, .175, 1);
	backface-visibility: hidden;
	overflow: hidden;
	box-shadow: inset 0 0 40px rgba(0, 0, 0, .5);
}

.prod-card.opening .mini-door-panel {
	transform: rotateY(-110deg)
}

.mini-door-panel img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: brightness(.85) contrast(1.05);
	transition: transform .5s;
}

.prod-card:hover .mini-door-panel img {
	transform: scale(1.04)
}

.mini-door-panel .ov {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(0, 0, 0, .05) 0%, rgba(8, 23, 16, .55) 100%);
	pointer-events: none;
}

.mini-door-panel .lock {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 36px;
	height: 36px;
	border-radius: 50%;
	border: 1px solid rgba(201, 168, 76, .7);
	background: rgba(8, 23, 16, .65);
	backdrop-filter: blur(4px);
	display: grid;
	place-items: center;
	color: var(--gold);
	font-size: 13px;
	transition: transform .5s, background .3s;
	z-index: 2;
	box-shadow: 0 0 14px rgba(201, 168, 76, .3);
}

.prod-card:hover .mini-door-panel .lock {
	transform: translate(-50%, -50%) scale(1.18);
	background: var(--gold);
	color: #0a1a12
}

.mini-door-panel .h {
	position: absolute;
	right: 6px;
	top: 50%;
	transform: translateY(-50%);
	width: 5px;
	height: 42px;
	border-radius: 99px;
	background: linear-gradient(180deg, var(--gl2), var(--gd2));
	z-index: 2;
	box-shadow: 0 0 8px rgba(201, 168, 76, .5)
}

.mini-door-panel .hi1,
.mini-door-panel .hi2 {
	position: absolute;
	left: -2px;
	width: 4px;
	height: 12px;
	border-radius: 2px;
	background: var(--gold);
	z-index: 2
}

.mini-door-panel .hi1 {
	top: 22%
}

.mini-door-panel .hi2 {
	top: 75%
}

.prod-card h3 {
	font-family: var(--f1);
	font-size: 24px;
	color: #fff;
	font-weight: 700
}

.prod-card .desc {
	margin-top: 6px;
	font-size: 13px;
	color: rgba(255, 255, 255, .6);
	min-height: 36px
}

.prod-foot {
	margin-top: 18px;
	padding-top: 16px;
	border-top: 1px solid rgba(201, 168, 76, .15);
	display: flex;
	align-items: center;
	justify-content: space-between
}

.prod-foot .from {
	font-size: 9px;
	letter-spacing: .2em;
	color: rgba(255, 255, 255, .4);
	text-transform: uppercase
}

.prod-foot .pr {
	font-family: var(--f1);
	font-size: 20px;
	background: linear-gradient(135deg, var(--gl2), var(--gold));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	font-weight: 700
}

.prod-foot .arr {
	width: 38px;
	height: 38px;
	border-radius: 50%;
	border: 1px solid rgba(201, 168, 76, .3);
	color: var(--gold);
	display: grid;
	place-items: center;
	transition: .25s
}

.prod-card:hover .prod-foot .arr {
	background: var(--gold);
	color: #0a1a12
}

/* empty filter state */
.prod-empty {
	grid-column: 1/-1;
	text-align: center;
	padding: 40px;
	color: rgba(255, 255, 255, .5);
	font-size: 14px;
	font-style: italic
}

/* ===== Features ===== */
.feat-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 24px;
	margin-top: 60px
}

.feat-card {
	position: relative;
	padding: 28px;
	border-radius: 14px;
	border: 1px solid rgba(201, 168, 76, .15);
	background: rgba(20, 59, 45, .35);
	backdrop-filter: blur(8px);
	transition: .4s;
	overflow: hidden
}

.feat-card:hover {
	border-color: rgba(201, 168, 76, .5);
	transform: translateY(-4px)
}

.feat-card .glow-spot {
	position: absolute;
	top: -40px;
	right: -40px;
	width: 130px;
	height: 130px;
	border-radius: 50%;
	background: rgba(201, 168, 76, 0);
	filter: blur(40px);
	transition: .5s
}

.feat-card:hover .glow-spot {
	background: rgba(201, 168, 76, .35)
}

.feat-card .ico-big {
	position: relative;
	width: 54px;
	height: 54px;
	border-radius: 50%;
	border: 1px solid rgba(201, 168, 76, .4);
	background: rgba(201, 168, 76, .1);
	display: grid;
	place-items: center;
	color: var(--gold);
	font-size: 20px;
	margin-bottom: 18px;
	transition: .5s
}

.feat-card:hover .ico-big {
	transform: scale(1.1) rotate(6deg)
}

.feat-card h3 {
	font-family: var(--f1);
	font-size: 22px;
	color: #fff;
	font-weight: 700
}

.feat-card p {
	margin-top: 8px;
	font-size: 13px;
	color: rgba(255, 255, 255, .65);
	line-height: 1.6
}

/* ===== Gallery ===== */
.gal-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 20px;
	margin-top: 60px
}

.gal-card {
	position: relative;
	height: 340px;
	border-radius: 14px;
	overflow: hidden;
	border: 1px solid rgba(201, 168, 76, .15);
	background: #08130d;
	cursor: none
}

.gal-card .gal-bg {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	filter: brightness(.85);
	transition: transform .8s
}

.gal-card:hover .gal-bg {
	transform: scale(1.06)
}

.gal-card .gal-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(8, 23, 16, .2), rgba(8, 23, 16, .85))
}

.gal-card .doors {
	position: absolute;
	inset: 0;
	z-index: 3;
	display: flex
}

.gal-card .half {
	position: relative;
	width: 50%;
	height: 100%;
	background: linear-gradient(135deg, #246b52, #081710);
	transition: transform .8s cubic-bezier(.4, 0, .2, 1)
}

.gal-card .half.l {
	transform-origin: left;
	border-right: 1px solid rgba(201, 168, 76, .4)
}

.gal-card .half.r {
	transform-origin: right;
	background: linear-gradient(225deg, #246b52, #081710)
}

.gal-card .half::before {
	content: "";
	position: absolute;
	inset: 12px;
	border: 1px solid rgba(201, 168, 76, .25);
	border-radius: 3px
}

.gal-card .half.l::after {
	content: "";
	position: absolute;
	right: -3px;
	top: 50%;
	transform: translateY(-50%);
	width: 6px;
	height: 48px;
	border-radius: 99px;
	background: var(--gold)
}

.gal-card .half.r::after {
	content: "";
	position: absolute;
	left: -3px;
	top: 50%;
	transform: translateY(-50%);
	width: 6px;
	height: 48px;
	border-radius: 99px;
	background: var(--gold)
}

.gal-card:hover .half.l {
	transform: perspective(800px) rotateY(-95deg)
}

.gal-card:hover .half.r {
	transform: perspective(800px) rotateY(95deg)
}

.gal-inside {
	position: absolute;
	inset: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 24px;
	z-index: 2
}

.gal-inside .eye {
	font-size: 28px;
	color: var(--gold);
	margin-bottom: 12px;
	text-shadow: 0 0 14px rgba(201, 168, 76, .4)
}

.gal-inside .style {
	font-size: 11px;
	letter-spacing: .3em;
	color: var(--gold);
	text-transform: uppercase
}

.gal-inside .nm {
	font-family: var(--f1);
	font-size: 24px;
	font-weight: 700;
	color: #fff;
	margin-top: 8px;
	text-shadow: 0 2px 12px rgba(0, 0, 0, .6)
}

.gal-inside .btn {
	margin-top: 18px;
	border: 1px solid rgba(201, 168, 76, .6);
	color: var(--gold);
	background: rgba(8, 23, 16, .5);
	backdrop-filter: blur(6px);
	padding: 9px 22px;
	border-radius: 99px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .18em;
	text-transform: uppercase;
	cursor: none;
	transition: .25s
}

.gal-inside .btn:hover {
	background: var(--gold);
	color: #0a1a12
}

/* ===== Testimonials ===== */
.test-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 24px;
	margin-top: 60px
}

.test-card {
	position: relative;
	padding: 32px;
	border-radius: 14px;
	border: 1px solid rgba(201, 168, 76, .15);
	background: rgba(20, 59, 45, .35);
	backdrop-filter: blur(8px);
	transition: .3s
}

.test-card:hover {
	border-color: rgba(201, 168, 76, .45)
}

.test-card .quote {
	position: absolute;
	top: 20px;
	right: 24px;
	font-size: 42px;
	color: rgba(201, 168, 76, .15)
}

.stars {
	display: flex;
	gap: 4px;
	margin-bottom: 16px;
	color: var(--gold)
}

.test-card p {
	font-family: var(--f1);
	font-size: 18px;
	font-style: italic;
	line-height: 1.6;
	color: rgba(255, 255, 255, .85)
}

.test-card .meta {
	margin-top: 22px;
	padding-top: 16px;
	border-top: 1px solid rgba(201, 168, 76, .15)
}

.test-card .meta .nm {
	color: #fff;
	font-weight: 700
}

.test-card .meta .role {
	margin-top: 3px;
	font-size: 11px;
	letter-spacing: .2em;
	color: var(--gold);
	text-transform: uppercase
}

/* ===== Contact ===== */
.contact-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 32px;
	margin-top: 60px
}

@media(max-width:880px) {
	.contact-grid {
		grid-template-columns: 1fr;
		gap: 20px;
		margin-top: 40px
	}
}

.contact-card {
	padding: 36px;
	border-radius: 14px;
	border: 1px solid rgba(201, 168, 76, .2);
	background: rgba(20, 59, 45, .3);
	backdrop-filter: blur(8px)
}

@media(max-width:480px) {
	.contact-card {
		padding: 24px 20px
	}
}

.contact-card h3 {
	font-family: var(--f1);
	font-size: clamp(22px, 5vw, 28px);
	color: #fff;
	font-weight: 700
}

.contact-card .sub {
	margin-top: 8px;
	color: rgba(255, 255, 255, .7);
	font-size: 14px
}

.info-row {
	display: flex;
	gap: 16px;
	margin-top: 22px;
	align-items: flex-start
}

.info-row .ico {
	flex-shrink: 0;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	border: 1px solid rgba(201, 168, 76, .3);
	background: rgba(201, 168, 76, .1);
	color: var(--gold);
	display: grid;
	place-items: center;
	font-size: 16px
}

.info-row .lbl {
	font-size: 10px;
	letter-spacing: .25em;
	color: var(--gold);
	text-transform: uppercase
}

.info-row .val {
	color: #fff;
	font-size: 15px;
	margin-top: 3px
}

.field {
	margin-bottom: 14px
}

.field label {
	display: block;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .18em;
	color: var(--gold);
	text-transform: uppercase;
	margin-bottom: 6px
}

.field input,
.field textarea {
	width: 100%;
	background: rgba(8, 23, 16, .6);
	border: 1px solid rgba(201, 168, 76, .2);
	border-radius: 6px;
	padding: 12px 14px;
	color: #fff;
	font-size: 14px;
	font-family: inherit;
	transition: .25s
}

.field input:focus,
.field textarea:focus {
	outline: none;
	border-color: var(--gold)
}

.field textarea {
	resize: vertical;
	min-height: 100px
}

.send-btn {
	width: 100%;
	background: var(--gold);
	color: #08160e;
	padding: 14px;
	border: none;
	border-radius: 8px;
	font-size: 13px;
	font-weight: 800;
	letter-spacing: .15em;
	text-transform: uppercase;
	cursor: none;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	transition: .25s;
	margin-top: 8px
}

.send-btn:hover {
	background: var(--gl2);
	transform: translateY(-2px)
}

/* ===== Footer ===== */
footer.foot {
	padding: 36px 32px;
	border-top: 1px solid rgba(201, 168, 76, .15);
	background: #081710
}

.foot-in {
	max-width: 1280px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 16px;
	flex-wrap: wrap
}

.foot-in .copy {
	font-size: 12px;
	color: rgba(255, 255, 255, .5)
}

@media(max-width:480px) {
	footer.foot {
		padding: 28px 20px
	}

	.foot-in {
		justify-content: center;
		text-align: center;
		flex-direction: column;
		gap: 14px
	}
}

@keyframes fadeUp {
	from {
		opacity: 0;
		transform: translateY(30px)
	}

	to {
		opacity: 1;
		transform: none
	}
}

.reveal {
	opacity: 0;
	transform: translateY(40px);
	transition: opacity .9s ease, transform .9s ease
}

.reveal.in {
	opacity: 1;
	transform: none
}

/* ===== Mini features bar ===== */
.mini-bar {
	padding: 48px 32px;
	border-top: 1px solid rgba(201, 168, 76, .12);
	border-bottom: 1px solid rgba(201, 168, 76, .12);
	background: linear-gradient(180deg, rgba(8, 23, 16, .5), rgba(14, 42, 31, .4))
}

.mini-bar-in {
	max-width: 1280px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 28px
}

@media(max-width:780px) {
	.mini-bar {
		padding: 32px 20px
	}

	.mini-bar-in {
		grid-template-columns: 1fr;
		gap: 18px
	}
}

.mini-item {
	display: flex;
	align-items: center;
	gap: 18px
}

.mini-item .mi-ic {
	width: 54px;
	height: 54px;
	border-radius: 50%;
	border: 1px solid rgba(201, 168, 76, .35);
	background: rgba(201, 168, 76, .08);
	color: var(--gold);
	display: grid;
	place-items: center;
	font-size: 20px;
	flex-shrink: 0
}

.mini-item .mi-t {
	font-family: var(--f1);
	font-size: 20px;
	color: #fff;
	font-weight: 700
}

.mini-item .mi-d {
	font-size: 12px;
	color: rgba(255, 255, 255, .6);
	margin-top: 2px;
	letter-spacing: .04em
}

/* ===== WhatsApp floating ===== */
.wa-float {
	position: fixed;
	right: 22px;
	bottom: 22px;
	z-index: 90;
	width: 58px;
	height: 58px;
	border-radius: 50%;
	background: #25D366;
	color: #fff;
	display: grid;
	place-items: center;
	font-size: 26px;
	box-shadow: 0 14px 34px rgba(37, 211, 102, .5);
	transition: .25s;
	cursor: none
}

.wa-float:hover {
	transform: scale(1.08) rotate(-6deg);
	color: #fff
}

.wa-float::before {
	content: "";
	position: absolute;
	inset: -6px;
	border-radius: 50%;
	border: 2px solid rgba(37, 211, 102, .5);
	animation: waPulse 2s ease-out infinite
}

@keyframes waPulse {
	0% {
		transform: scale(1);
		opacity: .7
	}

	100% {
		transform: scale(1.4);
		opacity: 0
	}
}