/* ── TOKENS ─────────────────────────────────────── */
:root {
	--white: #FFFFFF;
	--ivory: #EEF4F0;
	--gold: #2E7D32;
	--gold-lt: #66BB6A;
	--brown: #1A3A6B;
	--brown-m: #4A7AB5;
	--brown-lt: #A0632D;
	--text: #2A1505;
	--muted: #5A7A6A;
	--border: #C5D8CC;
	--serif: 'Cormorant Garant', Georgia, serif;
	--sans: 'DM Sans', system-ui, sans-serif;
	--ease: cubic-bezier(.25, .46, .45, .94);
}

/* ── RESET ──────────────────────────────────────── */
*,
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: var(--sans);
	color: var(--text);
	background: var(--white);
	overflow-x: hidden;
}

img {
	display: block;
	max-width: 100%;
}

a {
	text-decoration: none;
	color: inherit;
}

ul {
	list-style: none;
}

button {
	cursor: pointer;
	border: none;
	background: none;
	font-family: var(--sans);
}

/* ── UTILITY ────────────────────────────────────── */
.container {
	width: min(1200px, 92%);
	margin-inline: auto;
}

.gold-rule {
	display: block;
	width: 60px;
	height: 2px;
	background: linear-gradient(90deg, transparent, var(--gold), transparent);
	margin-inline: auto;
	margin-block: 1.5rem;
}

.eyebrow {
	font-family: var(--sans);
	font-size: .72rem;
	font-weight: 500;
	letter-spacing: .18em;
	text-transform: uppercase;
	color: var(--gold);
}

/* ── NAV ────────────────────────────────────────── */
#nav {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 100;
	padding: 1.1rem 0;
	transition: background .35s var(--ease), box-shadow .35s var(--ease);
}

#nav.scrolled {
	background: rgba(255, 255, 255, .96);
	box-shadow: 0 1px 0 var(--border);
	-webkit-backdrop-filter: blur(8px);
	backdrop-filter: blur(8px);
}

.nav-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.nav-logo {
	font-family: var(--serif);
	display: flex;
	align-items: center;
	font-size: 1.5rem;
	font-weight: 600;
	color: var(--brown);
	letter-spacing: .03em;
}

.nav-logo span {
	color: var(--gold);
}

.nav-links {
	display: flex;
	gap: 2.2rem;
	align-items: center;
}

.nav-links a {
	font-size: .82rem;
	letter-spacing: .06em;
	text-transform: uppercase;
	color: var(--brown);
	font-weight: 400;
	position: relative;
	padding-bottom: 2px;
}

.nav-links a::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 1px;
	background: var(--gold);
	transition: width .3s var(--ease);
}

.nav-links a:hover::after {
	width: 100%;
}

.nav-cta {
	font-size: .78rem;
	letter-spacing: .1em;
	text-transform: uppercase;
	font-weight: 500;
	color: #fff !important;
	background: var(--brown);
	padding: .55rem 1.4rem;
	border-radius: 2px;
	transition: background .25s;
}

.nav-cta:hover {
	background: var(--gold);
}

.hamburger {
	display: none;
	flex-direction: column;
	gap: 5px;
	padding: 4px;
}

.hamburger span {
	display: block;
	width: 24px;
	height: 1.5px;
	background: var(--brown);
	transition: transform .3s, opacity .3s;
}

.hamburger.open span:nth-child(1) {
	transform: translateY(6.5px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
	opacity: 0;
}

.hamburger.open span:nth-child(3) {
	transform: translateY(-6.5px) rotate(-45deg);
}

#mobile-menu {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: var(--white);
	z-index: 99;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 2.5rem;
}

#mobile-menu.open {
	display: flex;
}

#mobile-menu a {
	font-family: var(--serif);
	font-size: 2rem;
	font-weight: 300;
	color: var(--brown);
}

#mobile-menu .m-cta {
	font-family: var(--sans);
	font-size: .85rem;
	letter-spacing: .12em;
	text-transform: uppercase;
	font-weight: 500;
	background: var(--brown);
	color: var(--white);
	padding: .8rem 2.5rem;
	border-radius: 2px;
}

/* ── HERO ────────────────────────────────────────── */
#hero {
	min-height: 100svh;
	background: var(--ivory);
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: center;
	justify-content: center;
	padding-top: 5rem;
	position: relative;
	overflow: hidden;
}

.hero-bg-text {
	position: absolute;
	bottom: -0.1em;
	left: -0.02em;
	font-family: var(--serif);
	font-size: clamp(7rem, 18vw, 20rem);
	font-weight: 300;
	color: transparent;
	-webkit-text-stroke: 1px rgba(201, 151, 58, .13);
	line-height: 1;
	pointer-events: none;
	user-select: none;
	white-space: nowrap;
}

.hero-left {
	padding: 4rem 5rem 4rem 5rem;
	position: relative;
	z-index: 1;
}

.hero-left .eyebrow {
	margin-bottom: 1.2rem;
}

.hero-title {
	font-family: var(--serif);
	font-size: clamp(3rem, 6vw, 5.5rem);
	font-weight: 300;
	line-height: 1.05;
	color: var(--brown);
	margin-bottom: 1.4rem;
}

.hero-title em {
	font-style: italic;
	color: var(--gold);
}

.hero-sub {
	font-size: 1rem;
	font-weight: 300;
	line-height: 1.75;
	color: var(--muted);
	max-width: 42ch;
	margin-bottom: 2.4rem;
}

.hero-actions {
	display: flex;
	gap: 1rem;
	align-items: center;
	flex-wrap: wrap;
}

.btn-primary {
	font-size: .8rem;
	letter-spacing: .12em;
	text-transform: uppercase;
	font-weight: 500;
	color: var(--white);
	background: var(--brown);
	padding: .85rem 2.2rem;
	border-radius: 2px;
	transition: background .25s, transform .2s;
}

.btn-primary:hover {
	background: var(--gold);
	transform: translateY(-1px);
}

.btn-ghost {
	font-size: .8rem;
	letter-spacing: .1em;
	text-transform: uppercase;
	font-weight: 500;
	color: var(--brown);
	border-bottom: 1px solid var(--gold);
	padding-bottom: 2px;
	transition: color .25s;
}

.btn-ghost:hover {
	color: var(--gold);
}

.hero-stats {
	display: flex;
	gap: 2.5rem;
	margin-top: 3rem;
	padding-top: 2rem;
	border-top: 1px solid var(--border);
}

.stat-num {
	font-family: var(--serif);
	font-size: 2rem;
	font-weight: 600;
	color: var(--brown);
}

.stat-label {
	font-size: .72rem;
	color: var(--muted);
	letter-spacing: .06em;
	text-transform: uppercase;
	margin-top: .2rem;
}

.hero-right {
	position: relative;
	height: 100%;
	min-height: 600px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.hero-img-wrap {
	width: 100%;
	max-width: 520px;
	aspect-ratio: 4/5;
	background: linear-gradient(145deg, #e8d4b0 0%, #c9973a22 60%, #f0e6d3 100%);
	border-radius: 2px;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	overflow: hidden;
}
.hero-img {
	width: 100%;
	height: 90vh;
	object-fit: cover;
	object-position: center;
}

.hero-placeholder {
	font-family: var(--serif);
	font-size: 5rem;
	font-weight: 300;
	color: rgba(61, 31, 13, .18);
	letter-spacing: -.02em;
	text-align: center;
	line-height: 1;
}

.hero-badge {
	position: absolute;
	bottom: 2rem;
	left: -1rem;
	background: var(--white);
	padding: 1rem 1.4rem;
	box-shadow: 0 8px 32px rgba(61, 31, 13, .12);
	border-left: 3px solid var(--gold);
}

.hero-badge p {
	font-size: .7rem;
	letter-spacing: .1em;
	text-transform: uppercase;
	color: var(--muted);
}

.hero-badge strong {
	font-family: var(--serif);
	font-size: 1.1rem;
	color: var(--brown);
	display: block;
	margin-top: .2rem;
}

.hero-tag {
	position: absolute;
	top: 2rem;
	right: -1rem;
	background: var(--gold);
	color: var(--white);
	font-size: .68rem;
	letter-spacing: .1em;
	text-transform: uppercase;
	font-weight: 500;
	padding: .5rem 1rem;
	writing-mode: vertical-lr;
	transform: rotate(180deg);
}

/* ── DIVIDER ─────────────────────────────────────── */
.section-divider {
	padding: 3rem 0;
	display: flex;
	align-items: center;
	gap: 2rem;
	overflow: hidden;
}

.ticker {
	display: flex;
	gap: 3rem;
	animation: ticker 20s linear infinite;
	white-space: nowrap;
	flex-shrink: 0;
}

.ticker span {
	font-family: var(--serif);
	font-size: 1.1rem;
	font-weight: 300;
	color: var(--border);
	letter-spacing: .04em;
}

.ticker span.accent {
	color: var(--gold);
	font-style: italic;
}

@keyframes ticker {
	0% {
		transform: translateX(0);
	}

	100% {
		transform: translateX(-50%);
	}
}

/* ── ABOUT ───────────────────────────────────────── */
#about {
	padding: 7rem 0;
	background: var(--white);
}

.about-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 6rem;
	align-items: center;
}

.about-img-wrap {
	aspect-ratio: 3/4;
	max-width: 460px;
	background: linear-gradient(160deg, var(--ivory) 0%, #e2c99522 100%);
	border: 1px solid var(--border);
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
}

.about-img-wrap::after {
	content: '';
	position: absolute;
	top: 1.5rem;
	left: 1.5rem;
	right: -1.5rem;
	bottom: -1.5rem;
	border: 1px solid var(--border);
	z-index: -1;
}

.about-img-placeholder {
	font-family: var(--serif);
	font-size: 6rem;
	font-weight: 300;
	color: rgba(201, 151, 58, .22);
	line-height: 1;
}
.about-img {
	width: 100%;
	height: 82vh;
	object-position: center;
}

.about-text .eyebrow {
	margin-bottom: 1rem;
}

.about-heading {
	font-family: var(--serif);
	font-size: clamp(2rem, 3.5vw, 3rem);
	font-weight: 300;
	line-height: 1.2;
	color: var(--brown);
	margin-bottom: 1.5rem;
}

.about-heading em {
	font-style: italic;
	color: var(--gold);
}

.about-body {
	font-size: .95rem;
	line-height: 1.85;
	color: var(--muted);
	margin-bottom: 1.8rem;
}

.about-pillars {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.pillar {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
	padding: 1.2rem;
	border: 1px solid var(--border);
	transition: border-color .25s, box-shadow .25s;
}

.pillar:hover {
	border-color: var(--gold-lt);
	box-shadow: 0 4px 16px rgba(201, 151, 58, .08);
}

.pillar-icon {
	font-size: 1.4rem;
	flex-shrink: 0;
	margin-top: .1rem;
}

.pillar-title {
	font-weight: 500;
	font-size: .88rem;
	color: var(--brown);
	margin-bottom: .3rem;
}

.pillar-desc {
	font-size: .82rem;
	color: var(--muted);
	line-height: 1.6;
}

/* ── SERVICES / WHY US ───────────────────────────── */
#services {
	padding: 7rem 0;
	background: var(--ivory);
}

.section-head {
	text-align: center;
	margin-bottom: 4rem;
}

.section-head h2 {
	font-family: var(--serif);
	font-size: clamp(2rem, 4vw, 3.2rem);
	font-weight: 300;
	color: var(--brown);
	line-height: 1.2;
}

.section-head h2 em {
	font-style: italic;
	color: var(--gold);
}

.section-head p {
	font-size: .95rem;
	color: var(--muted);
	line-height: 1.75;
	max-width: 50ch;
	margin-inline: auto;
	margin-top: .8rem;
}

.services-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
}

.service-card {
	background: var(--white);
	padding: 2.2rem 1.8rem;
	border: 1px solid var(--border);
	transition: transform .3s var(--ease), box-shadow .3s var(--ease);
	position: relative;
	overflow: hidden;
}

.service-card::before {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 2px;
	background: linear-gradient(90deg, var(--gold), var(--brown));
	transform: scaleX(0);
	transform-origin: left;
	transition: transform .35s var(--ease);
}

.service-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 40px rgba(61, 31, 13, .1);
}

.service-card:hover::before {
	transform: scaleX(1);
}

.service-num {
	font-family: var(--serif);
	font-size: 3rem;
	font-weight: 300;
	color: var(--border);
	line-height: 1;
	margin-bottom: 1.2rem;
}

.service-title {
	font-family: var(--serif);
	font-size: 1.25rem;
	font-weight: 400;
	color: var(--brown);
	margin-bottom: .7rem;
}

.service-desc {
	font-size: .85rem;
	color: var(--muted);
	line-height: 1.7;
}

/* ── COLLECTIONS ─────────────────────────────────── */
#collections {
	padding: 7rem 0;
	background: var(--white);
}

.collections-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
	margin-top: 3rem;
}

.product-card {
	border: 1px solid var(--border);
	overflow: hidden;
	cursor: pointer;
	transition: box-shadow .3s var(--ease);
}

.product-card:hover {
	box-shadow: 0 16px 48px rgba(61, 31, 13, .12);
}

.product-img-placeholder {
	aspect-ratio: 3/4;
	background: linear-gradient(145deg, var(--ivory), #e2c99533);
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	overflow: hidden;
}
.product-img {
	width: 100%;
	height: 70vh;
	object-position: center;
}

.product-img-label {
	font-family: var(--serif);
	font-size: 3.5rem;
	font-weight: 300;
	color: rgba(201, 151, 58, .3);
	line-height: 1;
}

.product-badge-new {
	position: absolute;
	top: 1rem;
	left: 1rem;
	background: var(--brown);
	color: var(--white);
	font-size: .65rem;
	letter-spacing: .1em;
	text-transform: uppercase;
	font-weight: 500;
	padding: .3rem .7rem;
}

.product-badge-best {
	position: absolute;
	top: 1rem;
	left: 1rem;
	background: var(--gold);
	color: var(--white);
	font-size: .65rem;
	letter-spacing: .1em;
	text-transform: uppercase;
	font-weight: 500;
	padding: .3rem .7rem;
}

.product-overlay {
	position: absolute;
	inset: 0;
	background: rgba(61, 31, 13, .7);
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: opacity .3s;
}

.product-card:hover .product-overlay {
	opacity: 1;
}

.overlay-btn {
	font-size: .75rem;
	letter-spacing: .12em;
	text-transform: uppercase;
	font-weight: 500;
	color: var(--white);
	border: 1px solid rgba(255, 255, 255, .7);
	padding: .7rem 1.6rem;
	transition: background .2s, border-color .2s;
}

.overlay-btn:hover {
	background: var(--gold);
	border-color: var(--gold);
}

.product-info {
	padding: 1.3rem 1.4rem;
}

.product-name {
	font-family: var(--serif);
	font-size: 1.1rem;
	font-weight: 400;
	color: var(--brown);
	margin-bottom: .3rem;
}

.product-type {
	font-size: .75rem;
	color: var(--muted);
	letter-spacing: .06em;
	text-transform: uppercase;
	margin-bottom: .6rem;
}

.product-footer {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-top: .8rem;
}

.product-price {
	font-family: var(--serif);
	font-size: 1.2rem;
	font-weight: 600;
	color: var(--gold);
}
.product-price-old {
	font-size: .9rem;
	color: var(--muted);
	text-decoration: line-through;
}
.product-discount {
	font-size: 0.65rem;
    font-weight: 700;
    color: red !important;
    letter-spacing: 0.05em;
}

.add-btn {
	font-size: .72rem;
	letter-spacing: .1em;
	text-transform: uppercase;
	font-weight: 500;
	color: var(--brown);
	border-bottom: 1px solid var(--gold);
	padding-bottom: 1px;
	transition: color .2s;
}

.add-btn:hover {
	color: var(--gold);
}

/* ── TESTIMONIALS ────────────────────────────────── */
#testimonials {
	padding: 7rem 0;
	background: var(--brown);
}

#testimonials .section-head h2 {
	color: var(--white);
}

#testimonials .section-head p {
	color: rgba(255, 255, 255, .55);
}

.carousel-wrap {
	position: relative;
	overflow: hidden;
	margin-top: 3.5rem;
}

.carousel-track {
	display: flex;
	gap: 1.5rem;
	transition: transform .5s var(--ease);
}

.testi-card {
	flex: 0 0 calc(33.333% - 1rem);
	background: rgba(255, 255, 255, .06);
	border: 1px solid rgba(255, 255, 255, .1);
	padding: 2.2rem;
	position: relative;
}

.testi-quote {
	font-family: var(--serif);
	font-size: 3rem;
	font-weight: 300;
	color: var(--gold);
	line-height: .8;
	margin-bottom: .6rem;
}

.testi-text {
	font-family: var(--serif);
	font-size: 1.05rem;
	font-style: italic;
	font-weight: 300;
	color: rgba(255, 255, 255, .85);
	line-height: 1.7;
	margin-bottom: 1.6rem;
}

.testi-author {
	display: flex;
	align-items: center;
	gap: .9rem;
}

.testi-avatar {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--gold-lt), var(--brown-m));
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: var(--serif);
	font-size: 1.1rem;
	color: var(--white);
	font-weight: 400;
}

.testi-name {
	font-size: .88rem;
	font-weight: 500;
	color: var(--white);
}

.testi-location {
	font-size: .72rem;
	color: rgba(255, 255, 255, .45);
	margin-top: .1rem;
}

.testi-stars {
	color: var(--gold);
	font-size: .85rem;
	margin-bottom: .8rem;
	letter-spacing: .1em;
}

.carousel-controls {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 1.2rem;
	margin-top: 2.5rem;
}

.carousel-btn {
	width: 44px;
	height: 44px;
	border: 1px solid rgba(255, 255, 255, .25);
	color: var(--white);
	font-size: 1.1rem;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background .25s, border-color .25s;
}

.carousel-btn:hover {
	background: var(--gold);
	border-color: var(--gold);
}

.carousel-dots {
	display: flex;
	gap: .5rem;
}

.carousel-dot {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: rgba(255, 255, 255, .25);
	transition: background .25s, transform .25s;
}

.carousel-dot.active {
	background: var(--gold);
	transform: scale(1.3);
}

/* ── FAQ ─────────────────────────────────────────── */
#faq {
	padding: 7rem 0;
	background: var(--ivory);
}

.faq-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 3rem 5rem;
}

.faq-col h3 {
	font-family: var(--serif);
	font-size: 1.8rem;
	font-weight: 300;
	color: var(--brown);
	margin-bottom: 2rem;
	line-height: 1.3;
}

.faq-item {
	border-bottom: 1px solid var(--border);
}

.faq-q {
	width: 100%;
	text-align: left;
	padding: 1.2rem 0;
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: .92rem;
	font-weight: 500;
	color: var(--brown);
	gap: 1rem;
}

.faq-icon {
	width: 20px;
	height: 20px;
	flex-shrink: 0;
	border: 1px solid var(--border);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: .7rem;
	color: var(--gold);
	transition: transform .3s, background .25s;
}

.faq-item.open .faq-icon {
	transform: rotate(45deg);
	background: var(--gold);
	color: var(--white);
	border-color: var(--gold);
}

.faq-a {
	font-size: .87rem;
	color: var(--muted);
	line-height: 1.75;
	max-height: 0;
	overflow: hidden;
	transition: max-height .4s var(--ease), padding .3s;
}

.faq-item.open .faq-a {
	max-height: 300px;
	padding-bottom: 1.2rem;
}

/* ── ORDER / CONTACT ─────────────────────────────── */
#order {
	padding: 7rem 0;
	background: var(--white);
}

.order-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 5rem;
	align-items: start;
}

.order-left .eyebrow {
	margin-bottom: 1rem;
}

.order-left h2 {
	font-family: var(--serif);
	font-size: clamp(2rem, 3.5vw, 3rem);
	font-weight: 300;
	color: var(--brown);
	line-height: 1.2;
	margin-bottom: 1.2rem;
}

.order-left h2 em {
	font-style: italic;
	color: var(--gold);
}

.order-left p {
	font-size: .93rem;
	color: var(--muted);
	line-height: 1.8;
	margin-bottom: 2rem;
}

.contact-methods {
	display: flex;
	flex-direction: column;
	gap: .9rem;
	margin-bottom: 2rem;
}

.contact-row {
	display: flex;
	align-items: center;
	gap: .9rem;
	font-size: .88rem;
	color: var(--muted);
}

.contact-row strong {
	color: var(--brown);
	font-weight: 500;
}

.contact-icon {
	font-size: 1.1rem;
	flex-shrink: 0;
}

.form-wrap {
	background: var(--ivory);
	padding: 2.5rem;
	border: 1px solid var(--border);
}

.form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1rem;
}

.form-group {
	margin-bottom: 1.2rem;
}

.form-group label {
	display: block;
	font-size: .72rem;
	letter-spacing: .1em;
	text-transform: uppercase;
	color: var(--muted);
	margin-bottom: .5rem;
	font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
	width: 100%;
	padding: .8rem 1rem;
	border: 1px solid var(--border);
	background: var(--white);
	font-family: var(--sans);
	font-size: .9rem;
	color: var(--text);
	outline: none;
	border-radius: 0;
	transition: border-color .25s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
	border-color: var(--gold);
}

.form-group textarea {
	resize: vertical;
	min-height: 100px;
}

.form-submit {
	width: 100%;
	padding: 1rem;
	background: var(--brown);
	color: var(--white);
	font-family: var(--sans);
	font-size: .8rem;
	letter-spacing: .12em;
	text-transform: uppercase;
	font-weight: 500;
	transition: background .25s;
}

.form-submit:hover {
	background: var(--gold);
}

.form-notice {
	font-size: .75rem;
	color: var(--muted);
	margin-top: .8rem;
	text-align: center;
}

#form-success {
	display: none;
	text-align: center;
	padding: 2rem;
	font-family: var(--serif);
	font-size: 1.3rem;
	color: var(--brown);
}

/* ── FOOTER ──────────────────────────────────────── */
footer {
	background: var(--brown);
	color: rgba(255, 255, 255, .6);
	padding: 4rem 0 2rem;
}

.footer-grid {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1fr;
	gap: 3rem;
	margin-bottom: 3rem;
}

.footer-brand .nav-logo {
	color: var(--white);
	font-size: 1.6rem;
	margin-bottom: 1rem;
}

.footer-brand p {
	font-size: .83rem;
	line-height: 1.7;
	max-width: 28ch;
}

.footer-col h4 {
	font-size: .72rem;
	letter-spacing: .14em;
	text-transform: uppercase;
	color: var(--white);
	font-weight: 500;
	margin-bottom: 1.2rem;
}

.footer-col ul {
	display: flex;
	flex-direction: column;
	gap: .6rem;
}

.footer-col a {
	font-size: .83rem;
	transition: color .2s;
}

.footer-col a:hover {
	color: var(--gold-lt);
}

.footer-bottom {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-top: 2rem;
	border-top: 1px solid rgba(255, 255, 255, .1);
	font-size: .78rem;
}

.social-links {
	display: flex;
	gap: 1rem;
}

.social-link {
	width: 36px;
	height: 36px;
	border: 1px solid rgba(255, 255, 255, .2);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: .85rem;
	color: rgba(255, 255, 255, .6);
	transition: background .25s, color .25s, border-color .25s;
}

.social-link:hover {
	background: var(--gold);
	color: var(--white);
	border-color: var(--gold);
}

/* ── SCROLL TO TOP ───────────────────────────────── */
#scroll-top {
	position: fixed;
	bottom: 2rem;
	right: 2rem;
	z-index: 50;
	width: 44px;
	height: 44px;
	background: var(--brown);
	color: var(--white);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1rem;
	opacity: 0;
	pointer-events: none;
	transition: opacity .3s, background .25s;
}

#scroll-top.visible {
	opacity: 1;
	pointer-events: auto;
}

#scroll-top:hover {
	background: var(--gold);
}

/* ── RESPONSIVE ──────────────────────────────────── */
@media (max-width: 1024px) {
	.services-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.collections-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.footer-grid {
		grid-template-columns: 1fr 1fr;
		gap: 2rem;
	}
}

@media (max-width: 768px) {
	.nav-links {
		display: none;
	}

	.hamburger {
		display: flex;
	}

	#hero {
		grid-template-columns: 1fr;
		padding-top: 4.5rem;
	}

	.hero-left {
		padding: 3rem 0 2rem;
	}

	.hero-right {
		display: none;
	}

	.hero-bg-text {
		font-size: 30vw;
	}

	.about-grid {
		grid-template-columns: 1fr;
		gap: 3rem;
	}

	.about-img-wrap {
		display: none;
	}

	.services-grid {
		grid-template-columns: 1fr;
	}

	.collections-grid {
		grid-template-columns: 1fr;
		max-width: 400px;
		margin-inline: auto;
	}

	.testi-card {
		flex: 0 0 100%;
	}

	.faq-grid {
		grid-template-columns: 1fr;
		gap: 0;
	}

	.order-grid {
		grid-template-columns: 1fr;
		gap: 2.5rem;
	}

	.form-row {
		grid-template-columns: 1fr;
	}

	.footer-grid {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.footer-bottom {
		flex-direction: column;
		gap: 1rem;
		text-align: center;
	}
}

@media (max-width: 480px) {
	.hero-stats {
		flex-direction: column;
		gap: 1.2rem;
	}

	.hero-actions {
		flex-direction: column;
		align-items: flex-start;
	}
}

/* ── SCROLL REVEAL ───────────────────────────────── */
.reveal {
	opacity: 0;
	transform: translateY(28px);
	transition: opacity .65s var(--ease), transform .65s var(--ease);
}

.reveal.visible {
	opacity: 1;
	transform: none;
}

.reveal-delay-1 {
	transition-delay: .1s;
}

.reveal-delay-2 {
	transition-delay: .2s;
}

.reveal-delay-3 {
	transition-delay: .3s;
}

@media (prefers-reduced-motion: reduce) {
	.reveal {
		opacity: 1;
		transform: none;
		transition: none;
	}
}