/* =========================================================================
   Home page sections
   ========================================================================= */

/* ---------- hero ---------- */

.vm-hero {
	position: relative;
	overflow: hidden;
	background:
		radial-gradient(120% 90% at 82% 8%, #fdf7ec 0%, rgba(253, 247, 236, 0) 58%),
		linear-gradient(180deg, var(--paper) 0%, var(--canvas) 100%);
	padding: clamp(36px, 6vw, 80px) 0 clamp(44px, 7vw, 96px);
}

.vm-hero__glow {
	position: absolute;
	width: 620px; height: 620px;
	right: -180px; top: -220px;
	background: radial-gradient(circle, rgba(201, 164, 92, .22), transparent 62%);
	filter: blur(10px);
	pointer-events: none;
}

.vm-hero__inner {
	position: relative;
	display: grid;
	gap: clamp(36px, 5vw, 64px);
	align-items: center;
}
@media (min-width: 960px) {
	.vm-hero__inner { grid-template-columns: 1fr 1fr; gap: 56px; }
}

.vm-hero__title {
	font-family: var(--font-display);
	font-weight: 400;
	font-size: clamp(38px, 7.2vw, 74px);
	line-height: 1.02;
	letter-spacing: -.028em;
	margin-bottom: 20px;
}
.vm-hero__title em {
	font-style: italic;
	color: var(--gold);
	position: relative;
	white-space: nowrap;
}

.vm-hero__lead {
	font-size: clamp(15.5px, 1.5vw, 17.5px);
	color: var(--muted);
	max-width: 46ch;
	line-height: 1.65;
}

.vm-hero__cta { display: flex; flex-wrap: wrap; gap: 12px; margin: 28px 0 24px; }

.vm-hero__points { display: flex; flex-wrap: wrap; gap: 8px 22px; }
.vm-hero__points li {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	font-size: 13.5px;
	color: var(--ink-2);
}
.vm-hero__points .vm-icon { color: var(--green); }

/* stage */

.vm-hero__stage { position: relative; }

.vm-hero__main {
	display: block;
	position: relative;
	border-radius: var(--r-xl);
	overflow: hidden;
	background: var(--sand);
	box-shadow: var(--sh-3);
	aspect-ratio: 4 / 5;
}
@media (min-width: 960px) { .vm-hero__main { aspect-ratio: 1; } }
.vm-hero__main img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--ease); }
.vm-hero__main:hover img { transform: scale(1.04); }

.vm-hero__off {
	position: absolute;
	top: 18px; left: 18px;
	display: grid;
	place-items: center;
	width: 62px; height: 62px;
	border-radius: 50%;
	background: var(--sale);
	color: #fff;
	font-size: 16px;
	font-weight: 700;
	box-shadow: 0 10px 24px rgba(163, 35, 31, .3);
}

.vm-hero__chip {
	position: absolute;
	left: -8px;
	bottom: 46px;
	display: grid;
	gap: 2px;
	background: rgba(255, 255, 255, .9);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	border: 1px solid rgba(255, 255, 255, .7);
	border-radius: var(--r-md);
	padding: 14px 18px;
	box-shadow: var(--sh-2);
	max-width: 240px;
	transition: transform var(--t);
}
.vm-hero__chip:hover { transform: translateY(-3px); }
.vm-hero__chip-label { font-size: 10.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); font-weight: 700; }
.vm-hero__chip-name { font-size: 14px; font-weight: 500; line-height: 1.3; }
.vm-hero__chip-price { font-size: 15px; font-weight: 700; }
.vm-hero__chip-price del { display: none; }
@media (max-width: 520px) { .vm-hero__chip { left: 10px; bottom: 12px; padding: 11px 14px; max-width: 200px; } }

.vm-hero__thumbs {
	position: absolute;
	right: -10px;
	bottom: -18px;
	display: flex;
	gap: 10px;
}
.vm-hero__thumb {
	width: 84px; height: 84px;
	border-radius: var(--r-md);
	overflow: hidden;
	border: 3px solid var(--paper);
	box-shadow: var(--sh-2);
	background: var(--sand);
	transition: transform var(--t);
}
.vm-hero__thumb:hover { transform: translateY(-5px); }
.vm-hero__thumb img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 720px) { .vm-hero__thumbs { display: none; } }

/* ---------- usps ---------- */

.vm-usps { padding: clamp(28px, 4vw, 44px) 0; background: var(--paper); border-bottom: 1px solid var(--line); }
.vm-usps__grid { display: grid; gap: 20px 30px; grid-template-columns: repeat(2, 1fr); }
@media (min-width: 900px) { .vm-usps__grid { grid-template-columns: repeat(4, 1fr); } }

.vm-usp { display: flex; gap: 13px; align-items: flex-start; }
.vm-usp__icon {
	flex: none;
	width: 42px; height: 42px;
	display: grid; place-items: center;
	border-radius: var(--r-sm);
	background: var(--gold-wash);
	color: var(--gold);
}
.vm-usp__title { font-size: 14.5px; font-weight: 600; margin-bottom: 3px; }
.vm-usp__text { font-size: 13px; color: var(--muted); line-height: 1.55; }

/* ---------- categories ---------- */

.vm-cats__grid {
	display: grid;
	gap: clamp(12px, 1.6vw, 20px);
	grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 900px) { .vm-cats__grid { grid-template-columns: repeat(4, 1fr); } }

.vm-cat {
	position: relative;
	display: block;
	border-radius: var(--r-lg);
	overflow: hidden;
	background: var(--sand);
	aspect-ratio: 3 / 4;
	isolation: isolate;
}
.vm-cat__media { position: absolute; inset: 0; }
.vm-cat__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .9s var(--ease); }
.vm-cat:hover .vm-cat__media img { transform: scale(1.07); }
.vm-cat::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(20, 17, 15, 0) 18%, rgba(20, 17, 15, .5) 52%, rgba(20, 17, 15, .9) 100%);
	z-index: 1;
}
.vm-cat__body {
	position: absolute;
	inset: auto 0 0 0;
	z-index: 2;
	padding: 20px;
	display: grid;
	gap: 3px;
	color: #fff;
}
.vm-cat__count { font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--gold-2); font-weight: 600; }
.vm-cat__name { font-family: var(--font-display); font-size: clamp(20px, 2.4vw, 27px); line-height: 1.1; }
.vm-cat__blurb {
	font-size: 13px;
	color: rgba(255, 255, 255, .72);
	line-height: 1.45;
	max-height: 0;
	opacity: 0;
	overflow: hidden;
	transition: max-height var(--t), opacity var(--t), margin var(--t);
}
.vm-cat:hover .vm-cat__blurb { max-height: 60px; opacity: 1; margin-top: 4px; }
.vm-cat__go {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 13px;
	font-weight: 600;
	margin-top: 10px;
}
.vm-cat__go .vm-icon { transition: transform var(--t-fast); }
.vm-cat:hover .vm-cat__go .vm-icon { transform: translateX(4px); }
@media (max-width: 640px) {
	.vm-cat__blurb { display: none; }
	.vm-cat__body { padding: 14px; }
}

/* ---------- promo band ---------- */

.vm-band {
	background: linear-gradient(135deg, #1a1611 0%, #2a2118 60%, #3a2c1c 100%);
	color: #f4efe7;
	overflow: hidden;
}
.vm-band__inner {
	display: grid;
	gap: 30px;
	align-items: center;
	padding-block: clamp(44px, 6vw, 76px);
}
@media (min-width: 860px) { .vm-band__inner { grid-template-columns: 1.05fr .95fr; gap: 56px; } }

.vm-band__title {
	font-family: var(--font-display);
	font-weight: 400;
	font-size: clamp(30px, 5.4vw, 54px);
	line-height: 1.05;
	margin-bottom: 14px;
}
.vm-band__text { color: #b3a89b; font-size: 15.5px; max-width: 46ch; margin-bottom: 26px; line-height: 1.65; }

.vm-band__media {
	display: block;
	border-radius: var(--r-lg);
	overflow: hidden;
	box-shadow: var(--sh-3);
	aspect-ratio: 16 / 12;
	background: #241d16;
}
.vm-band__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.vm-band__media:hover img { transform: scale(1.05); }

/* ---------- story ---------- */

.vm-story { background: var(--paper); }
.vm-story__inner { display: grid; gap: clamp(32px, 5vw, 64px); align-items: center; }
@media (min-width: 900px) { .vm-story__inner { grid-template-columns: .9fr 1.1fr; } }

.vm-story__media { position: relative; border-radius: var(--r-lg); overflow: hidden; background: var(--sand); }
.vm-story__media img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; }
.vm-story__stat {
	position: absolute;
	right: 18px; bottom: 18px;
	background: rgba(255, 255, 255, .93);
	backdrop-filter: blur(10px);
	border-radius: var(--r-md);
	padding: 14px 18px;
	text-align: center;
	box-shadow: var(--sh-2);
}
.vm-story__stat strong { display: block; font-family: var(--font-display); font-size: 30px; line-height: 1; color: var(--gold); }
.vm-story__stat span { font-size: 11.5px; color: var(--muted); }

.vm-story__title {
	font-family: var(--font-display);
	font-weight: 400;
	font-size: clamp(26px, 4vw, 42px);
	line-height: 1.1;
	margin-bottom: 28px;
}

.vm-steps { display: grid; gap: 22px; }
.vm-step { display: flex; gap: 18px; }
.vm-step__n {
	flex: none;
	font-family: var(--font-display);
	font-size: 22px;
	color: var(--gold-2);
	line-height: 1.2;
	width: 38px;
}
.vm-step h3 { font-size: 17px; margin-bottom: 5px; }
.vm-step p { color: var(--muted); font-size: 14.5px; line-height: 1.6; }

/* ---------- faq ---------- */

.vm-faq { background: var(--canvas); }
.vm-faq__inner { display: grid; gap: clamp(28px, 4vw, 60px); align-items: start; }
@media (min-width: 900px) { .vm-faq__inner { grid-template-columns: .85fr 1.15fr; } }

.vm-faq__title {
	font-family: var(--font-display);
	font-weight: 400;
	font-size: clamp(26px, 4vw, 40px);
	line-height: 1.1;
	margin-bottom: 12px;
}
.vm-faq__text { color: var(--muted); font-size: 15px; margin-bottom: 22px; max-width: 34ch; }
